diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..1a71cb0776ca1e4c312bf3287e5b925ef4942c2c Binary files /dev/null and b/.DS_Store differ diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..4c49bd78f1d08f2bc09fa0bd8191ed38b7dce5e3 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.env diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..13566b81b018ad684f3a35fee301741b2734c8f4 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/.idea/PythonProject.iml b/.idea/PythonProject.iml new file mode 100644 index 0000000000000000000000000000000000000000..d837de400a951b139c3797d201f7240dabf5d56e --- /dev/null +++ b/.idea/PythonProject.iml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/inspectionProfiles/profiles_settings.xml b/.idea/inspectionProfiles/profiles_settings.xml new file mode 100644 index 0000000000000000000000000000000000000000..105ce2da2d6447d11dfe32bfb846c3d5b199fc99 --- /dev/null +++ b/.idea/inspectionProfiles/profiles_settings.xml @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000000000000000000000000000000000000..ba49dd32fc1c53139191f5cf9e256c258d2fd6fb --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000000000000000000000000000000000000..5f4323085d7cc941759b7afa0b6af11d1aeaa1d7 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000000000000000000000000000000000000..94a25f7f4cb416c083d265558da75d457237d671 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/__pycache__/config.cpython-312.pyc b/__pycache__/config.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..79459f5d001ecaa692fcb234e8dff02490260710 Binary files /dev/null and b/__pycache__/config.cpython-312.pyc differ diff --git a/agents/__pycache__/agent_decision.cpython-312.pyc b/agents/__pycache__/agent_decision.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b713d0f79f64521fb79b317810159f0461cfdb42 Binary files /dev/null and b/agents/__pycache__/agent_decision.cpython-312.pyc differ diff --git a/agents/agent_decision.py b/agents/agent_decision.py new file mode 100644 index 0000000000000000000000000000000000000000..ab8c935375341bf9c5ca2924dd424805eacb9b58 --- /dev/null +++ b/agents/agent_decision.py @@ -0,0 +1,216 @@ +import os +from typing import Dict, Optional, Union, List, TypedDict, Any, Literal +from dotenv import load_dotenv +from langchain_core.messages import HumanMessage, AIMessage, SystemMessage, BaseMessage +from langchain_core.prompts import ChatPromptTemplate +from langchain_core.output_parsers import JsonOutputParser +from langgraph.graph import MessagesState, StateGraph, END +import json +from config import Config +from agents.rag_agent import ResearchAssistantRAG +from langgraph.checkpoint.memory import MemorySaver + +load_dotenv() + +config = Config() + +memory = MemorySaver() + +thread_config = {"configurable": {"thread_id": "1"}} + +class AgentConfig: + DECISION_MODEL = "gpt-4o" + CONFIDENCE_THRESHOLD = 0.85 + + DECISION_SYSTEM_PROMPT = """ + Du bist ein intelligentes akademisches Routingsystem, das Benutzeranfragen an den jeweils passenden spezialisierten Agenten weiterleitet. + Deine Aufgabe ist es, die Anfrage des Benutzers zu analysieren und zu bestimmen, welcher Agent am besten geeignet ist – + basierend auf dem Inhalt der Anfrage und dem Gesprächskontext. + + Verfügbare Agenten: + 1. CONVERSATION_AGENT – Für allgemeine Konversation, Begrüßungen oder nicht-akademische Fragen. + 2. KEYWORD_SEARCH_AGENT – Für gezielte Stichwortsuchen innerhalb der Dokumentensammlung. + 3. RAG_AGENT – Für Fragen zu spezifischen akademischen Inhalten, die aus den bereitgestellten Dokumenten beantwortet werden können. + 4. SUMMARIZATION_AGENT – Für Zusammenfassungen von Dokumenten oder bestimmten Abschnitten. + 5. CLASSIFICATION_AGENT – Für die Erkennung des Dokumententyps (z. B. Bachelorarbeit, Artikel) und der Hauptthemen (z. B. Informatik, Medizin). + 6. USER_MEMORY_AGENT – Interner Agent zur Verwaltung von Benutzerhistorie und Personalisierung. + + Triff deine Entscheidung anhand der folgenden Richtlinien: + - Wenn die Anfrage eine Begrüßung, allgemeine Frage oder unklare Formulierung enthält → wähle CONVERSATION_AGENT. + - Wenn die Anfrage eine gezielte Suche nach einem Begriff oder Schlüsselwort ist → wähle KEYWORD_SEARCH_AGENT. + - Wenn der Benutzer eine inhaltliche Frage zu einem Thema aus den Dokumenten stellt → wähle RAG_AGENT. + - Wenn eine Zusammenfassung eines Dokuments oder Abschnitts gewünscht ist → wähle SUMMARIZATION_AGENT. + - Wenn nach Art oder Thema eines Dokuments gefragt wird → wähle CLASSIFICATION_AGENT. + - Wenn die Absicht nicht eindeutig ist, wähle sicherheitshalber CONVERSATION_AGENT. + + Du musst deine Antwort im JSON-Format mit folgender Struktur liefern: + { + "agent": "AGENT_NAME", + "reasoning": "Schrittweise Begründung für die Wahl dieses Agenten", + "confidence": 0.95 // Wert zwischen 0.0 und 1.0, der das Vertrauen in die Entscheidung angibt + } + """ + +class AgentDecision(TypedDict): + agent: Literal[ + "CONVERSATION_AGENT", + "KEYWORD_SEARCH_AGENT", + "RAG_AGENT", + "SUMMARIZATION_AGENT", + "CLASSIFICATION_AGENT", + "USER_MEMORY_AGENT" + ] + reasoning: str + confidence: float + +class AgentState(MessagesState): + """State maintained across the workflow.""" + messages: List[BaseMessage] + agent_name: Optional[str] + current_input: Optional[Union[str, Dict]] + has_image: bool + image_type: Optional[str] + output: Optional[str] + needs_human_validation: bool + retrieval_confidence: float + bypass_routing: bool + insufficient_info: bool + + +# class AgentDecision(TypedDict): +# agent: str +# reasoning: str +# confidence: float + + +def create_agent_graph(): + def run_rag_agent(state: AgentState) -> AgentState: + print(f"Selected agent: RAG_AGENT") + + rag_agent = ResearchAssistantRAG(config) + + messages: List[BaseMessage] = state["messages"] + query: Union[str, Dict] = state["current_input"] + rag_context_limit: int = config.rag.context_limit + + recent_context: str = "" + for msg in messages[-rag_context_limit:]: + if isinstance(msg, HumanMessage): + # print("######### DEBUG 1:", msg) + recent_context += f"User: {msg.content}\n" + elif isinstance(msg, AIMessage): + # print("######### DEBUG 2:", msg) + recent_context += f"Assistant: {msg.content}\n" + + # Call pipeline RAG + response: Dict[str, Any] = rag_agent.process_query(query, chat_history=recent_context) + + ### CHECKPOINT + print("Final response from RAG agent:", response) + + retrieval_confidence: float = response.get("confidence", 0.0) + + print(f"Retrieval Confidence: {retrieval_confidence}") + print(f"Sources: {len(response['sources'])}") + + insufficient_info = False + response_content = response["response"] + + if hasattr(response_content, 'content'): + response_text = response_content.content + else: + response_text = response_content + + print(f"Response text type: {type(response_text)}") + print(f"Response text preview: {response_text[:100]}...") + + if isinstance(response_text, str) and ( + "I don't have enough information to answer this question based on the provided context" in response_text or + "I don't have enough information" in response_text or + "don't have enough information" in response_text.lower() or + "not enough information" in response_text.lower() or + "insufficient information" in response_text.lower() or + "cannot answer" in response_text.lower() or + "unable to answer" in response_text.lower() + ): + print("RAG response indicates insufficient information") + print(f"Response text that triggered insufficient_info: {response_text[:100]}...") + insufficient_info = True + + print(f"Insufficient info flag set to: {insufficient_info}") + + # Store RAG output ONLY if confidence is high + if retrieval_confidence >= config.rag.min_retrieval_confidence: + temp_output = response["response"] + else: + temp_output = response["response"] + + return { + **state, + "output": temp_output, + "needs_human_validation": False, + "retrieval_confidence": retrieval_confidence, + "agent_name": "RAG_AGENT", + "insufficient_info": insufficient_info + } + + graph = StateGraph(AgentState) + + graph.add_node("RAG_AGENT", run_rag_agent) + + graph.set_entry_point("RAG_AGENT") + + graph.add_edge("RAG_AGENT", END) + + return graph.compile(checkpointer=memory) + + +def init_agent_state() -> AgentState: + """Initialize the agent state with default values.""" + return { + "messages": [], + "agent_name": None, + "current_input": None, + "has_image": False, + "image_type": None, + "output": None, + "needs_human_validation": False, + "retrieval_confidence": 0.0, + "bypass_routing": True, + "insufficient_info": False + } + + +def process_query(query: Union[str, Dict], conversation_history: List[BaseMessage] = None) -> Dict[str, Any]: + graph = create_agent_graph() + + state = init_agent_state() + # if conversation_history: + # state["messages"] = conversation_history + + input_text = query if isinstance(query, str) else query.get("text", "") + + state["current_input"] = query + state["messages"] = [HumanMessage(content=input_text)] + + # result = graph.invoke(state, thread_config) + state = graph.invoke(state, thread_config) + + output = state.get("output") + if hasattr(output, "content"): + response_text = output.content + else: + response_text = str(output) + # # Keep history to reasonable size (ANOTHER OPTION: summarize and store before truncating history) + # if len(result["messages"]) > config.max_conversation_history: # Keep last config.max_conversation_history messages + # result["messages"] = result["messages"][-config.max_conversation_history:] + # + # # visualize conversation history in console + # for m in result["messages"]: + # m.pretty_print() + + return { + "response": response_text, + "agent_name": state.get("agent_name"), + "messages": state.get("messages", []) + } \ No newline at end of file diff --git a/agents/rag_agent/__init__.py b/agents/rag_agent/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..ec35751418437493de0f097a7e42abd7338a06a5 --- /dev/null +++ b/agents/rag_agent/__init__.py @@ -0,0 +1,243 @@ +import logging +import time +from typing import List, Dict, Any, Optional +import uuid +from pathlib import Path +import json +from .vector_store import QdrantRetriever +from .document_processor import DocumentProcessor +from .query_processor import QueryProcessor +from .response_generator import ResponseGenerator +from .data_ingestion import DataIngestion + +class ResearchAssistantRAG: + + def __init__(self, config): + self.config = config + self._initialize() + + + def _initialize(self): + try: + self.logger = logging.getLogger(f"{self.__module__}") + self.logger.info("Initializing Research Assistant RAG system") + + self.llm = self.config.rag.llm + self.logger.info(f"Using LLM: {type(self.llm).__name__}") + + self.embedding_model = self.config.rag.embedding_model + self.logger.info(f"Using embedding model: {type(self.embedding_model).__name__}") + + self.query_processor = QueryProcessor(self.config, self.embedding_model) + + self.document_processor = DocumentProcessor(self.config, self.embedding_model) + + self.retriever = QdrantRetriever(self.config) + + self.response_generator = ResponseGenerator(self.config, self.llm) + + total_docs = self.retriever.count_documents() + self.logger.info(f"Vector store contains {total_docs} documents") + if total_docs == 0: + self.logger.warning("No documents in vector store. Results may be limited.") + + self.top_k = getattr(self.config.rag, "top_k", 5) + self.similarity_threshold = getattr(self.config.rag, "similarity_threshold", 0.0) + + self.data_ingestion = DataIngestion() + + self.logger.info("Research Assistant RAG system successfully initialized") + + except Exception as e: + self.logger.error(f"Initialization error: {e}") + import traceback + self.logger.error(traceback.format_exc()) + raise + + + def process_query(self, query: str, chat_history: Optional[List[Dict[str, str]]] = None) -> Dict[str, Any]: + self.logger.info(f"RAG Agent processing query: {query}") + + result = self.query(query, chat_history) + + return result + + + def ingest_documents(self, documents: List[Dict[str, Any]]) -> Dict[str, Any]: + self.logger.info(f"Ingesting {len(documents)} documents") + start_time = time.time() + + print(f"documents: {documents}") + + try: + processed_dir = Path("data/processed") + processed_dir.mkdir(exist_ok=True, parents=True) + all_chunks: List[Dict[str, Any]] = [] + chunk_ids: List[str] = [] + + for document in documents: + content = document.get("content", "") + metadata = document.get("metadata", {}) + + if "id" not in metadata: + metadata["id"] = str(uuid.uuid4()) + + chunks_from_file = self.document_processor.process_document(content, metadata) + + if chunks_from_file: + all_chunks.extend(chunks_from_file) + + for chunk in chunks_from_file: + chunk_ids.append(chunk["id"]) + doc_path = processed_dir / f"{chunk['id']}.json" + with open(doc_path, 'w', encoding='utf-8') as f: + json_safe_chunk = self._ensure_json_serializable(chunk) + json.dump(json_safe_chunk, f, indent=2) + + if not all_chunks: + return { + "success": False, + "error": "No documents were successfully processed", + "processing_time": time.time() - start_time + } + + # Here don’t recompute the embedding again, simply take it from all_chunks + upsert_batch: List[Dict[str, Any]] = [] + for chunk in all_chunks: + chunk_record = { + "id": chunk["id"], + "content": chunk["content"], + "embedding": chunk["embedding"], + "metadata": chunk["metadata"] + } + upsert_batch.append(chunk_record) + + self.retriever.upsert_chunks(upsert_batch) + + return { + "success": True, + "documents_ingested": len(documents), + "chunks_processed": len(all_chunks), + # todo: change to "chunk_ids": chunk_ids + "document_ids": chunk_ids, + "processing_time": time.time() - start_time + } + + except Exception as e: + self.logger.error(f"Error ingesting documents: {e}") + import traceback + self.logger.error(traceback.format_exc()) + + return { + "success": False, + "error": str(e), + "documents_processed": 0, + "chunks_created": 0, + "chunks_inserted": 0, + "processing_time": time.time() - start_time + } + + def _ensure_json_serializable(self, obj): + if isinstance(obj, dict): + return {k: self._ensure_json_serializable(v) for k, v in obj.items()} + elif isinstance(obj, list): + return [self._ensure_json_serializable(item) for item in obj] + elif isinstance(obj, (str, int, float, bool, type(None))): + return obj + else: + return str(obj) + + + def ingest_file(self, file_path: str) -> Dict[str, Any]: + start_time = time.time() + self.logger.info(f"Ingesting file: {file_path}") + + try: + ingestion_result = self.data_ingestion.ingest_file(file_path) + + if not ingestion_result["success"]: + return { + "success": False, + "error": ingestion_result.get("error", "Unknown error during file ingestion"), + "processing_time": time.time() - start_time + } + + documents = [] + if "document" in ingestion_result: + documents = [ingestion_result["document"]] + elif "documents" in ingestion_result: + documents = ingestion_result["documents"] + + if documents: + return self.ingest_documents(documents) + else: + return { + "success": False, + "error": "No valid documents found in file", + "processing_time": time.time() - start_time + } + + except Exception as e: + self.logger.error(f"Error ingesting file: {e}") + return { + "success": False, + "error": str(e), + "processing_time": time.time() - start_time + } + + + def ingest_directory(self, directory_path: str, file_extension: Optional[str] = None) -> Dict[str, Any]: + pass + + + def _retrieve_documents(self, query_embedding: List[float], filters: Dict[str, Any], query: str): + self.logger.info(f"Retrieving documents with filters: {filters}") + + retrieved_docs = self.retriever.retrieve( + query_vector=query_embedding, + filters=filters, + query_text=query + ) + + self.logger.info(f"Retrieved {len(retrieved_docs)} documents") + return retrieved_docs + + + def query(self, query: str, chat_history: Optional[List[Dict[str, str]]] = None) -> Dict[str, Any]: + self.logger.info(f"Processing query: {query}") + start_time = time.time() + + try: + query_embedding, filters = self.query_processor.process_query(query) + + # TODO: Enhance retrieval by incorporating chat history context into the query embedding or retrieval strategy + retrieved_docs = self._retrieve_documents(query_embedding, filters, query) + + if self.similarity_threshold > 0: + retrieved_docs = [doc for doc in retrieved_docs if doc.get('score', 0) >= self.similarity_threshold] + self.logger.info(f"After similarity threshold: {len(retrieved_docs)} documents") + + ###CHECKPOINT 1c. + + response = self.response_generator.generate_response( + query=query, + retrieved_docs=retrieved_docs, + chat_history=chat_history + ) + + processing_time = time.time() - start_time + response["processing_time"] = processing_time + + return response + + except Exception as e: + self.logger.error(f"Error processing query: {e}") + import traceback + self.logger.error(traceback.format_exc()) + + return { + "response": f"I encountered an error while processing your query: {str(e)}", + "sources": [], + "confidence": 0.0, + "processing_time": time.time() - start_time + } \ No newline at end of file diff --git a/agents/rag_agent/__pycache__/__init__.cpython-312.pyc b/agents/rag_agent/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d7f251bb5924409defb2cc767f789a38b71514ac Binary files /dev/null and b/agents/rag_agent/__pycache__/__init__.cpython-312.pyc differ diff --git a/agents/rag_agent/__pycache__/data_ingestion.cpython-312.pyc b/agents/rag_agent/__pycache__/data_ingestion.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..90d0c7c1c7c1125faff586f47b6fb6979751bdf5 Binary files /dev/null and b/agents/rag_agent/__pycache__/data_ingestion.cpython-312.pyc differ diff --git a/agents/rag_agent/__pycache__/document_processor.cpython-312.pyc b/agents/rag_agent/__pycache__/document_processor.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..135c561c30e4ce34ec9aafed2710d9aac98c0ade Binary files /dev/null and b/agents/rag_agent/__pycache__/document_processor.cpython-312.pyc differ diff --git a/agents/rag_agent/__pycache__/query_processor.cpython-312.pyc b/agents/rag_agent/__pycache__/query_processor.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e08ba2a9e73357e516af570308d8ec7ea06a66d9 Binary files /dev/null and b/agents/rag_agent/__pycache__/query_processor.cpython-312.pyc differ diff --git a/agents/rag_agent/__pycache__/response_generator.cpython-312.pyc b/agents/rag_agent/__pycache__/response_generator.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ddf3985d88b8d5ef18952969366c69202c0564b4 Binary files /dev/null and b/agents/rag_agent/__pycache__/response_generator.cpython-312.pyc differ diff --git a/agents/rag_agent/__pycache__/vector_store.cpython-312.pyc b/agents/rag_agent/__pycache__/vector_store.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9fa0f1d655f51bb0a73a08d1891d047c62ed786a Binary files /dev/null and b/agents/rag_agent/__pycache__/vector_store.cpython-312.pyc differ diff --git a/agents/rag_agent/data_ingestion.py b/agents/rag_agent/data_ingestion.py new file mode 100644 index 0000000000000000000000000000000000000000..4e3a453af0a23bcf85658f9590e9237daeae911b --- /dev/null +++ b/agents/rag_agent/data_ingestion.py @@ -0,0 +1,253 @@ +import os +import json +import logging +from pathlib import Path +import pandas as pd +from typing import List, Dict, Any, Optional, Union +import os +os.environ["PATH"] += os.pathsep + "/opt/homebrew/bin" +from unstructured.partition.pdf import partition_pdf +from unstructured.chunking.title import chunk_by_title +import json + +logging.basicConfig(level=logging.INFO, format='%(asctime)s - %(name)s - %(levelname)s - %(message)s') +logger = logging.getLogger(__name__) + +class DataIngestion: + + def __init__(self): + + self.stats = { + "files_processed": 0, + "documents_ingested": 0, + "errors": 0 + } + + logger.info("DataIngestion initialized") + + def ingest_directory(self, directory_path: str, file_extension: Optional[str] = None) -> Dict[str, Any]: + + logger.info(f"Processing directory: {directory_path}") + + try: + directory = Path(directory_path) + if not directory.exists() or not directory.is_dir(): + raise ValueError(f"Directory does not exist: {directory_path}") + + if file_extension: + files = list(directory.glob(f"*{file_extension}")) + else: + files = [f for f in directory.iterdir() if f.is_file()] + + logger.info(f"Found {len(files)} files to process") + + for file_path in files: + try: + self.ingest_file(str(file_path)) + self.stats["files_processed"] += 1 + except Exception as e: + logger.error(f"Error processing file {file_path}: {e}") + self.stats["errors"] += 1 + + return self.stats + + except Exception as e: + logger.error(f"Error processing directory: {e}") + return self.stats + + def ingest_file(self, file_path: str) -> Dict[str, Any]: + print(f"Processing file (file_path): {file_path}") + logger.info(f"Processing file: {file_path}") + + file_path = Path(file_path) + if not file_path.exists(): + raise FileNotFoundError(f"File not found: {file_path}") + + if file_path.suffix.lower() == '.txt': + return self._ingest_text_file(file_path) + elif file_path.suffix.lower() == '.pdf': + return self._ingest_pdf_file(file_path) + else: + logger.warning(f"Unsupported file format: {file_path.suffix}") + return {"success": False, "error": "Unsupported file format"} + + def _ingest_text_file(self, file_path: Path) -> Dict[str, Any]: + + try: + with open(file_path, 'r', encoding='utf-8') as f: + content = f.read() + + metadata = { + "source": file_path.name, + "file_type": "txt" + } + + document = { + "content": content, + "metadata": metadata + } + + logger.info(f"Successfully ingested text file: {file_path}") + self.stats["documents_ingested"] += 1 + + return {"success": True, "document": document} + + except Exception as e: + logger.error(f"Error ingesting text file: {e}") + return {"success": False, "error": str(e)} + + + def _ingest_pdf_file(self, file_path: Path) -> Dict[str, Any]: + + logger.info(f"Processing PDF with: {file_path}") + + try: + elements = partition_pdf( + file_path, + extract_images_in_pdf=False, + extract_tables=True, + infer_table_structure=True, + languages=["de"], + ocr_languages = "deu" + # chunking_strategy="by_title" + ) + + ## + with open("debug_elements.txt", "w", encoding="utf-8") as f: + for i, element in enumerate(elements): + f.write(f"\n=== Element {i} ===\n") + f.write(f"Category: {getattr(element, 'category', 'N/A')}\n") + f.write(f"Text: {str(element)}\n") + f.write(f"Metadata: {getattr(element, 'metadata', {})}\n") + ## + + content_parts = [] + tables = [] + images = [] + metadata_parts = {} + + for element in elements: + if hasattr(element, "category"): + element_text = str(element) + print(f"Element text: {element_text}") + element_category = element.category + print(f"Element category: {element_category}") + + if element_category == "Title": + content_parts.append(f"\n## {element_text}\n") + elif element_category == "NarrativeText": + content_parts.append(element_text) + elif element_category == "ListItem": + content_parts.append(f"- {element_text}") + elif element_category == "Table": + formatted_table_text = self._format_table_as_markdown(element_text) + content_parts.append(f"\n{formatted_table_text}\n") + + if hasattr(element, "metadata") and element.metadata: + table_metadata = element.metadata.__dict__ if hasattr(element.metadata, + "__dict__") else element.metadata + tables.append({ + "text": formatted_table_text, + "raw_text": element_text, + "metadata": table_metadata + }) + elif element_category == "Image": + content_parts.append(f"\n[IMAGE: {element_text}]\n") + if hasattr(element, "metadata") and element.metadata: + images.append({ + "text": element_text, + "metadata": element.metadata.__dict__ if hasattr(element.metadata, + "__dict__") else element.metadata + }) + else: + content_parts.append(element_text) + + if hasattr(element, "metadata") and element.metadata: + metadata = element.metadata.__dict__ if hasattr(element.metadata, + "__dict__") else element.metadata + for key, value in metadata.items(): + if key not in metadata_parts: + metadata_parts[key] = value + + content = "\n".join(content_parts) + + metadata = { + "source": file_path.name, + "file_type": "pdf", + "has_tables": len(tables) > 0, + "table_count": len(tables), + "has_images": len(images) > 0, + "image_count": len(images) + } + + metadata.update(metadata_parts) + + document = { + "content": content, + "metadata": metadata, + "tables": tables, + "images": images, + "elements": [{"category": getattr(e, "category", "Unknown"), "text": str(e)} for e in elements] + } + + logger.info(f"Successfully ingested PDF file using unstructured.io: {file_path}") + self.stats["documents_ingested"] += 1 + + return {"success": True, "document": document} + + except Exception as e: + logger.error(f"Error ingesting PDF file with unstructured.io: {e}") + return {"success": False, "error": str(e)} + + def _format_table_as_markdown(self, table_text: str) -> str: + try: + lines = table_text.strip().split('\n') + if not lines: + return table_text + + if '|' in table_text: + rows = [line.strip() for line in lines] + + if not rows[0].startswith('|'): + rows[0] = '| ' + rows[0] + ' |' + + if len(rows) > 1 and not rows[1].startswith('|---'): + cols = rows[0].count('|') - 1 + separator = '|' + '|'.join(['---' for _ in range(cols)]) + '|' + rows.insert(1, separator) + + for i in range(len(rows)): + if i > 1 and not rows[i].startswith('|'): + rows[i] = '| ' + rows[i] + ' |' + + return '\n'.join(rows) + else: + rows = [] + for line in lines: + if line.strip(): + rows.append(line.split()) + + if not rows: + return table_text + + num_cols = len(rows[0]) if rows else 0 + if num_cols == 0: + return table_text + + for i in range(len(rows)): + while len(rows[i]) < num_cols: + rows[i].append('') + rows[i] = rows[i][:num_cols] + + header = '| ' + ' | '.join(rows[0]) + ' |' + separator = '|' + '|'.join(['---' for _ in range(num_cols)]) + '|' + + formatted_rows = [header, separator] + for row in rows[1:]: + formatted_rows.append('| ' + ' | '.join(row) + ' |') + + return '\n'.join(formatted_rows) + except Exception as e: + logger.warning(f"Error formatting table as markdown: {e}") + return f"Table:\n{table_text}" + diff --git a/agents/rag_agent/document_processor.py b/agents/rag_agent/document_processor.py new file mode 100644 index 0000000000000000000000000000000000000000..43aad36b4a64cf9a0b1973f6702e580bb4850d44 --- /dev/null +++ b/agents/rag_agent/document_processor.py @@ -0,0 +1,134 @@ +import re +import uuid +import logging +from typing import List, Dict, Any, Optional, Tuple, Union +import os +from pathlib import Path +import hashlib +from datetime import datetime +import nltk +from nltk.tokenize import sent_tokenize +import json + +try: + nltk.data.find('tokenizers/punkt') +except LookupError: + nltk.download('punkt', quiet=True) + + +def make_serializable(metadata: Dict[str, Any]) -> Dict[str, Any]: + serializable_metadata = {} + for key, value in metadata.items(): + try: + json.dumps(value) # Test if value is serializable + serializable_metadata[key] = value + except TypeError: + # Handle non-serializable objects + if isinstance(value, Header): + serializable_metadata[key] = str(value) # Convert Header to string + else: + serializable_metadata[key] = str(value) # Convert other non-serializable objects to string + return serializable_metadata + + +class DocumentProcessor: + def __init__(self, config, embedding_model): + self.logger = logging.getLogger(__name__) + self.embedding_model = embedding_model + self.chunk_size = config.rag.chunk_size + self.chunk_overlap = config.rag.chunk_overlap + self.processed_docs_dir = Path(config.rag.processed_docs_dir) + self.processed_docs_dir.mkdir(parents=True, exist_ok=True) + self.chunking_strategy = getattr(config.rag, "chunking_strategy", "sliding_window") + + def process_document(self, content: str, metadata: Dict[str, Any]) -> List[Dict[str, Any]]: + try: + doc_id_base = hashlib.md5(content.encode()).hexdigest() + doc_id = str(uuid.UUID(doc_id_base[:32])) + + enhanced_metadata = metadata.copy() + enhanced_metadata['processing_timestamp'] = datetime.now().isoformat() + + if self.chunking_strategy == "semantic": + chunks = self._create_semantic_chunks(content) + else: + chunks = self._create_sliding_window_chunks(content) + + processed_chunks = [] + for i, chunk_data in enumerate(chunks): + if isinstance(chunk_data, tuple): + chunk_text = chunk_data[0] + else: + chunk_text = chunk_data + + chunk_id = str(uuid.UUID(doc_id_base[:24] + f"{i:08}")) + embedding = self.embedding_model.embed_documents([chunk_text])[0] + + chunk_metadata = enhanced_metadata.copy() + chunk_metadata["chunk_number"] = i + chunk_metadata["total_chunks"] = len(chunks) + chunk_metadata["chunking_strategy"] = self.chunking_strategy + chunk_metadata["word_count"] = len(chunk_text.split()) + + processed_chunks.append({ + "id": chunk_id, + "content": chunk_text, + "embedding": embedding, + "metadata": make_serializable(chunk_metadata) + }) + + return processed_chunks + + except Exception as e: + self.logger.error(f"Error processing document: {e}") + raise + + def _create_semantic_chunks(self, text: str) -> List[str]: + paragraphs = re.split(r'\n\s*\n', text) + chunks = [] + + for para in paragraphs: + if not para.strip(): + continue + if len(para.split()) > self.chunk_size: + sentences = sent_tokenize(para) + current_chunk = [] + current_length = 0 + for sentence in sentences: + length = len(sentence.split()) + if current_length + length > self.chunk_size and current_chunk: + chunks.append(" ".join(current_chunk)) + current_chunk = [] + current_length = 0 + current_chunk.append(sentence) + current_length += length + if current_chunk: + chunks.append(" ".join(current_chunk)) + else: + chunks.append(para.strip()) + + return chunks + + def _create_sliding_window_chunks(self, text: str) -> List[str]: + sentences = sent_tokenize(text) + chunks = [] + + if len(sentences) <= 3: + return [text] + + stride = max(1, (self.chunk_size - self.chunk_overlap) // 20) # Approximate 20 words/sentence + + for i in range(0, len(sentences), stride): + window_size = min(i + max(3, self.chunk_size // 20), len(sentences)) + window_text = " ".join(sentences[i:window_size]) + chunks.append(window_text) + + return chunks + + +class Header: + def __init__(self, text): + self.text = text + + def __str__(self): + return self.text \ No newline at end of file diff --git a/agents/rag_agent/query_processor.py b/agents/rag_agent/query_processor.py new file mode 100644 index 0000000000000000000000000000000000000000..cc5e8c647e6888b76bee672c3fdbb1aa911bedad --- /dev/null +++ b/agents/rag_agent/query_processor.py @@ -0,0 +1,81 @@ +import logging +import re +import uuid +from typing import List, Dict, Any, Optional, Tuple, Union +from datetime import datetime + +class QueryProcessor: + def __init__(self, config, embedding_model): + self.logger = logging.getLogger(__name__) + self.embedding_model = embedding_model + + self.synonyms = { + "zusammenfassung": ["summary", "zusammenfassen", "kurzfassung"], + "artikel": ["article", "studie", "paper"], + "projekt": ["project", "forschung", "studie"], + "aktuellen": ["aktuellen", "neuesten", "recent", "latest"], + } + + self.intent_patterns = { + "summary": re.compile(r"\b(zusammenfassung|summary)\b", re.IGNORECASE), + "project_search": re.compile(r"\b(projekt|forschung|study|project)\b", re.IGNORECASE), + "article_navigation": re.compile(r"\b(link|artikel|paper|artikel)\b", re.IGNORECASE), + } + + def process_query(self, query: str) -> Tuple[List[float], Dict[str, Any]]: + try: + query_id = str(uuid.uuid4()) + + expanded_query = self._expand_query(query) + + query_intent = self._detect_query_intent(query) + + query_embedding = self.embedding_model.embed_query(expanded_query) + if query_embedding is None: + raise ValueError("Embedding model returned None for query.") + + query_embedding = query_embedding.tolist() if hasattr(query_embedding, "tolist") else query_embedding + + filters: Dict[str, Any] = { + "query_id": query_id, + "timestamp": datetime.now().isoformat(), + "query_intent": query_intent, + } + + filters = {k: v for k, v in filters.items() if v is not None} + + self.logger.info(f"Processed query with filters: {filters}") + + return query_embedding, filters + + except Exception as e: + self.logger.error(f"Error processing query: {e}") + + fallback_embedding = self.embedding_model.embed_query(query) + if fallback_embedding is None: + fallback_embedding = [] + + fallback_embedding = fallback_embedding.tolist() if hasattr(fallback_embedding, + "tolist") else fallback_embedding + + fallback_filters = { + "query_id": str(uuid.uuid4()), + "timestamp": datetime.now().isoformat(), + "is_fallback": True + } + + return fallback_embedding, fallback_filters + + def _expand_query(self, query: str) -> str: + parts = [query] + low = query.lower() + for key, syns in self.synonyms.items(): + if key in low: + parts.extend(syns) + return " ".join(dict.fromkeys(parts)) + + def _detect_query_intent(self, query: str) -> str: + for intent, pattern in self.intent_patterns.items(): + if pattern.search(query): + return intent + return "general_information" diff --git a/agents/rag_agent/response_generator.py b/agents/rag_agent/response_generator.py new file mode 100644 index 0000000000000000000000000000000000000000..61ec82430d5d9b758156e076fc647084d4e0910d --- /dev/null +++ b/agents/rag_agent/response_generator.py @@ -0,0 +1,264 @@ +import logging +from typing import List, Dict, Any, Optional +import re + +class ResponseGenerator: + + def __init__(self, config, llm): + self.logger = logging.getLogger(__name__) + self.llm = llm + self.max_context_length = config.rag.max_context_length + + default_instructions = """ + Bei der Formatierung der Antwort: + 1. Verwenden Sie bei Bedarf klare Abschnitte mit Überschriften + 2. Stellen Sie tabellarische Daten in korrektem Markdown-Tabellenformat dar: + | Kopf1 | Kopf2 | Kopf3 | + |-------|-------|-------| + | Daten1| Daten2| Daten3| + 3. Für geordnete Listen verwenden Sie nummerierte Punkte + 4. Für ungeordnete Listen verwenden Sie Aufzählungszeichen + 5. Zitieren Sie Ihre Quellen, wenn Sie spezifische Informationen bereitstellen + 6. Verwenden Sie präzise, wissenschaftliche Sprache + 7. Antworten Sie auf Deutsch + """ + + self.response_format_instructions = getattr(config.rag, "response_format_instructions", default_instructions) + self.include_sources = getattr(config.rag, "include_sources", True) + + def generate_response(self, query: str, retrieved_docs: List[Dict[str, Any]], + chat_history: Optional[List[Dict[str, str]]] = None) -> Dict[str, Any]: + + try: + if not retrieved_docs: + return self._generate_no_documents_response(query) + + formatted_context = self._format_context(retrieved_docs) + + prompt = self._build_prompt(query, formatted_context, chat_history) + + response = self.llm.invoke(prompt) + + sources = self._extract_sources(retrieved_docs) if self.include_sources else [] + + result = { + "response": response, + "sources": sources, + "confidence": self._calculate_confidence(retrieved_docs) + } + + return result + + except Exception as e: + self.logger.error(f"Error generating response: {e}") + return { + "response": "Entschuldigung, es ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut.", + "sources": [], + "confidence": 0.0 + } + + def _format_context(self, documents: List[Dict[str, Any]]) -> str: + context_parts = [] + total_length = 0 + + for i, doc in enumerate(documents): + doc_text = doc.get("content", "").strip() + metadata = doc.get("metadata", {}) + + if not metadata and isinstance(doc, dict): + metadata = doc + + source = metadata.get("source", "Unknown Source") + + is_table = metadata.get("is_table", False) + content_type = metadata.get("content_type", "") + table_index = metadata.get("table_index", None) + + if is_table or content_type == "table": + clean_table_text = self._ensure_markdown_table_format(doc_text) + table_name = f"Table {table_index}" if table_index is not None else "Table" + + formatted_doc = ( + f"[Dokument {i + 1} - TABELLE] Folgende Informationen aus {table_name}:\n\n" + f"{clean_table_text}\n\n" + f"(Quelle: {source})" + ) + else: + formatted_doc = f"[Dokument {i + 1}] {doc_text} (Quelle: {source})" + + if total_length + len(formatted_doc) > self.max_context_length: + break + + context_parts.append(formatted_doc) + total_length += len(formatted_doc) + + return "\n\n".join(context_parts) + + def _ensure_markdown_table_format(self, table_text: str) -> str: + if "|" in table_text: + lines = table_text.strip().split("\n") + + has_separator = False + for i, line in enumerate(lines): + if i > 0 and re.match(r"^\s*\|[\s\-\|]+\|\s*$", line): + has_separator = True + break + + if not has_separator and len(lines) > 1: + first_row = lines[0] + col_count = first_row.count("|") - 1 + if col_count <= 0: + col_count = first_row.count("\t") + 1 # Try tab count + + separator = "|" + "|".join(["---"] * col_count) + "|" + + lines.insert(1, separator) + + for i in range(len(lines)): + if not lines[i].startswith("|"): + lines[i] = "| " + lines[i] + if not lines[i].endswith("|"): + lines[i] = lines[i] + " |" + + return "\n".join(lines) + + return table_text + + lines = table_text.strip().split("\n") + if not lines: + return table_text + + rows = [] + for line in lines: + if line.strip(): + if "\t" in line: + rows.append(line.split("\t")) + else: + rows.append(re.split(r"\s{2,}", line.strip())) + + if not rows: + return table_text + + max_cols = max(len(row) for row in rows) + for row in rows: + while len(row) < max_cols: + row.append("") + + md_table_lines = [] + + md_table_lines.append("| " + " | ".join(rows[0]) + " |") + + md_table_lines.append("| " + " | ".join(["---"] * max_cols) + " |") + + for row in rows[1:]: + md_table_lines.append("| " + " | ".join(row) + " |") + + return "\n".join(md_table_lines) + + def _build_prompt(self, query: str, context: str, + chat_history: Optional[List[Dict[str, str]]] = None) -> str: + + project_instructions = """ + Du bist ein wissenschaftlicher Chatbot, der folgende Aufgaben erfüllt: + - Zusammenfassung wissenschaftlicher Artikel + - Suche nach aktuellen und vergangenen Forschungsprojekten + - Navigation zu Artikeln: Bereitstellung von Links zu Veröffentlichungen, Anzeige meistzitierter oder neuester Artikel + Antworte auf Deutsch. + """ + + table_instructions = "" + if "TABELLE" in context: + table_instructions = """ + Einige Informationen liegen in Tabellenformat vor. Verwende: + 1. Markdown-Tabellen mit Kopfzeilen + 2. Erhalten Sie die Struktur bei der Darstellung + 3. Interpretieren und referenzieren Sie die Tabellen deutlich + """ + + prompt = f""" + {project_instructions} + + Bisherige Konversation: + {chat_history} + + Benutzeranfrage: + {query} + + Verfügbare Informationen: + {context} + + {table_instructions} + + {self.response_format_instructions} + + Wissenschaftliche Chatbot-Antwort:""" + + return prompt + + def _extract_sources(self, documents: List[Dict[str, Any]]) -> List[Dict[str, str]]: + + sources = [] + seen_sources = set() + + for doc in documents: + metadata = doc.get("metadata", {}) + if not metadata and isinstance(doc, dict): + metadata = doc + + source = metadata.get("source", "Unknown Source") + + is_table = metadata.get("is_table", False) + content_type = metadata.get("content_type", "") + table_index = metadata.get("table_index", None) + + source_key = f"{source}_{is_table}_{table_index}" if (is_table or content_type == "table") else source + + if source_key in seen_sources: + continue + + source_info = { + "title": source, + "section": metadata.get("section", ""), + "publication_date": metadata.get("publication_date", "") + } + + if is_table or content_type == "table": + table_descriptor = f"Table {table_index}" if table_index is not None else "Table" + source_info["title"] = f"{source} ({table_descriptor})" + source_info["content_type"] = "table" + + sources.append(source_info) + seen_sources.add(source_key) + + if len(sources) >= 5: + break + + return sources + + def _generate_no_documents_response(self, query: str) -> Dict[str, Any]: + prompt = f""" + Du bist ein wissenschaftlicher Chatbot. Der Benutzer fragt: + \"{query}\" + + Leider liegen keine relevanten Dokumente vor. Bitte gib eine allgemeine Antwort und schlage gegebenenfalls Suchstrategien vor. + Wissenschaftliche Chatbot-Antwort:""" + + response = self.llm.invoke(prompt) + + return { + "response": response, + "sources": [], + "confidence": 0.0 + } + + def _calculate_confidence(self, documents: List[Dict[str, Any]]) -> float: + + if not documents: + return 0.0 + + if "combined_score" in documents[0]: + scores = [doc.get("combined_score", 0) for doc in documents[:3]] + else: + scores = [doc.get("score", 0) for doc in documents[:3]] + + return sum(scores) / len(scores) if scores else 0.0 diff --git a/agents/rag_agent/vector_store.py b/agents/rag_agent/vector_store.py new file mode 100644 index 0000000000000000000000000000000000000000..d1ee31af9591927168c9fb49bc371de3a3967a05 --- /dev/null +++ b/agents/rag_agent/vector_store.py @@ -0,0 +1,223 @@ +from typing import List, Dict, Any, Optional, Union +import logging +from qdrant_client import QdrantClient +from qdrant_client.http import models as qdrant_models +from qdrant_client.http.models import ContextQuery, ContextPair, SearchParams +from qdrant_client.http.exceptions import UnexpectedResponse +from qdrant_client.http.models import Distance, VectorParams, PointStruct, Prefetch, FusionQuery, Fusion +from sklearn.feature_extraction.text import TfidfVectorizer + +class QdrantClientManager: + _instance = None + _client = None + + @classmethod + def get_client(cls, config): + if cls._client is None: + if config.rag.use_local: + logging.info(f"Connecting to local Qdrant at: {config.rag.url}") + cls._client = QdrantClient(url=config.rag.url) # Dùng URL, không phải path + else: + logging.info(f"Connecting to remote Qdrant at: {config.rag.url}") + cls._client = QdrantClient(url=config.rag.url, api_key=config.rag.api_key) + + logging.info("Initialized Qdrant client singleton") + + return cls._client + + +class QdrantRetriever: + + def __init__(self, config): + self.logger = logging.getLogger(__name__) + self.collection_name = config.rag.collection_name + self.embedding_dim = config.rag.embedding_dim + self.distance_metric = config.rag.distance_metric + self.tfidf_vectorizer = TfidfVectorizer() + self.sparse_vocab = {} + self.is_fitted = False + + self.client = QdrantClientManager.get_client(config) + + self._ensure_collection() + + def _ensure_collection(self): + collection_info = self.client.get_collections() + print(f"Collection info: {collection_info}") + collection_names = [collection.name for collection in collection_info.collections] + print("Collection names:", collection_names) + + if self.collection_name not in collection_names: + self.logger.info(f"Creating new collection {self.collection_name}") + try: + self.client.create_collection( + collection_name=self.collection_name, + vectors_config=VectorParams( + size=self.embedding_dim, + distance=Distance.COSINE + ), + optimizers_config=qdrant_models.OptimizersConfigDiff( + indexing_threshold=10000, + ), + ) + self.logger.info(f"Collection {self.collection_name} created") + except Exception as e: + self.logger.error(f"Error creating collection: {e}") + raise e + else: + self.logger.info(f"Collection {self.collection_name} already exists") + + def upsert_chunks(self, chunks: List[Dict[str, Any]]): + try: + points: List[PointStruct] = [] + + for chunk in chunks: + payload = chunk["metadata"].copy() + + payload["content"] = chunk["content"] + + points.append( + qdrant_models.PointStruct( + id=chunk["id"], + vector=chunk["embedding"], + payload=payload + ) + ) + + batch_size = 100 + for i in range(0, len(points), batch_size): + batch = points[i:i + batch_size] + self.client.upsert( + collection_name=self.collection_name, + points=batch, + wait=True + ) + self.logger.info(f"Successfully upserted {len(chunks)} chunks into '{self.collection_name}'") + except Exception as e: + self.logger.error(f"Error upserting documents: {e}") + raise + + + def count_documents(self) -> int: + try: + collection_info = self.client.get_collection(self.collection_name) + count = collection_info.vectors_count + self.logger.info(f"Collection {self.collection_name} has {count} documents") + return count + except Exception as e: + self.logger.error(f"Error getting collection info: {str(e)}") + return 0 + + + def fit_sparse_vectorizer(self, corpus: List[str]): + try: + if not self.is_fitted: + self.tfidf_vectorizer.fit(corpus) + self.is_fitted = True + self.logger.info("TF-IDF Vectorizer fitted successfully") + else: + self.logger.info("TF-IDF Vectorizer is already fitted") + except Exception as e: + self.logger.error(f"Error fitting TF-IDF Vectorizer: {e}") + + + def text_to_sparse_vector(self, query_text: str) -> Dict[str, List]: + if not self.is_fitted: + self.logger.warning("TF-IDF Vectorizer is not fitted yet. Skipping transformation") + return {} + + vec = self.tfidf_vectorizer.transform([query_text]) + indices = vec.indices.tolist() + values = vec.data.tolist() + return { + "indices": indices, + "values": values + } + + from qdrant_client.http import models as qdrant_models + from qdrant_client import QdrantClient + from qdrant_client.http.models import SearchParams, ContextPair, ContextQuery, FusionQuery, Fusion, Prefetch + + def retrieve( + self, + query_vector: List[float], + filters: Optional[Dict] = None, + top_k: int = 5, + include_metadata: bool = True, + query_text: Optional[str] = None, + use_sparse: bool = False + ) -> List[Dict]: + # 1. Log params + self.logger.info(f""" + [RETRIEVE PARAMS] + query_vector dim={len(query_vector)}, filters={filters}, + top_k={top_k}, include_metadata={include_metadata}, + query_text={query_text[:50] if query_text else None}, + use_sparse={use_sparse} + """) + + sparse_vector = {} + if use_sparse and query_text: + self.logger.info("Creating sparse vector from query_text.") + sparse_vector = self.text_to_sparse_vector(query_text) + self.logger.debug(f"Sparse vector: {sparse_vector}") + + filter_obj = None + if filters: + try: + conditions = [] + for key, value in filters.items(): + filter_obj = qdrant_models.Filter(should=conditions) + except Exception: + self.logger.error("Error creating filter", exc_info=True) + + if not sparse_vector.get("indices"): + self.logger.info("Dense-only fallback: using client.search()") + try: + hits = self.client.search( + collection_name=self.collection_name, + query_vector=query_vector, + limit=top_k, + with_payload=include_metadata, + query_filter=filter_obj, + ) + results = [ + {**(hit.payload or {}), "score": hit.score} + for hit in hits + ] + self.logger.info(f"Found {len(results)} docs (dense-only)") + return results + except Exception as e: + self.logger.error(f"Error in dense-only search: {e}", exc_info=True) + return [] + + self.logger.info("Using hybrid search with query_points()") + prefetch = [ + Prefetch(query=query_vector, using="dense", limit=top_k), + Prefetch( + query=qdrant_models.SparseVector( + indices=sparse_vector["indices"], + values=sparse_vector["values"], + ), + using="sparse", + limit=top_k, + ), + ] + try: + hits = self.client.query_points( + collection_name=self.collection_name, + prefetch=prefetch, + query=FusionQuery(fusion=Fusion.RRF), + with_payload=include_metadata, + query_filter=filter_obj, + ) + results = [ + {**(hit.payload or {}), "score": hit.score} + for hit in hits + ] + self.logger.info(f"Found {len(results)} docs (hybrid)") + return results + except Exception as e: + self.logger.error(f"Error querying points: {e}", exc_info=True) + return [] + diff --git a/api/__init__.py b/api/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/api/__pycache__/__init__.cpython-312.pyc b/api/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b82646e71b24ec9d76061c2a52c5f15093e21fe2 Binary files /dev/null and b/api/__pycache__/__init__.cpython-312.pyc differ diff --git a/api/__pycache__/fastapi_server.cpython-312.pyc b/api/__pycache__/fastapi_server.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..daeea9e712c977812664f2d8492e8464fe75cd51 Binary files /dev/null and b/api/__pycache__/fastapi_server.cpython-312.pyc differ diff --git a/api/fastapi_server.py b/api/fastapi_server.py new file mode 100644 index 0000000000000000000000000000000000000000..8025c7e412f4a0228d3fba837f40cdfc402ab770 --- /dev/null +++ b/api/fastapi_server.py @@ -0,0 +1,83 @@ +import os +import uuid +from fastapi import FastAPI, UploadFile, File, Form, HTTPException, Request, Response +from fastapi.staticfiles import StaticFiles +from pydantic import BaseModel +import uvicorn +from agents.agent_decision import process_query + +UPLOAD_FOLDER = "uploads/backend" +os.makedirs(UPLOAD_FOLDER, exist_ok=True) + +app = FastAPI(title="Transfer-Bot", version="1.0") + +app.mount("/uploads", StaticFiles(directory="uploads"), name="uploads") + +class QueryRequest(BaseModel): + query: str + +@app.post("/chat") +def chat(request: QueryRequest, + response: Response, + request_obj: Request + ): + + session_id = request_obj.cookies.get("session_id", str(uuid.uuid4())) + + try: + response_data = process_query(request.query) + + response_text = response_data['response'] + + response.set_cookie(key="session_id", value=session_id) + + result = { + "response": response_text, + "agent": response_data.get("agent_name", "default_agent") + } + + if "result_file" in response_data: + result["result_file_url"] = f"/uploads/{response_data['result_file']}" + + return result + except Exception as e: + raise HTTPException(status_code=500, detail=str(e)) + +@app.post("/upload") +async def upload_file(response: Response, request_obj: Request, file: UploadFile = File(...), text: str = Form("")): + + file_path = os.path.join(UPLOAD_FOLDER, file.filename) + with open(file_path, "wb") as f: + f.write(await file.read()) + + session_id = request_obj.cookies.get("session_id", str(uuid.uuid4())) + + try: + query = {"text": text, "file_path": file_path} + response_data = process_query(query) + response_text = response_data['messages'][-1].content + + response.set_cookie(key="session_id", value=session_id) + + result = { + "response": response_text, + "agent": response_data.get("agent_name", "default_agent") + } + + if "result_file" in response_data: + result["result_file_url"] = f"/uploads/{response_data['result_file']}" + + try: + os.remove(file_path) + except Exception as e: + print(f"Failed to delete temp file: {str(e)}") + + return result + except Exception as e: + raise HTTPException(status_code=500, detail=str(e)) + + +if __name__ == "__main__": + uvicorn.run(app, host="0.0.0.0", port=8000, log_config="logging_config.yaml" +) + diff --git a/chat_gui.py b/chat_gui.py new file mode 100644 index 0000000000000000000000000000000000000000..6559ddcc6975dfd34bcae9a9f1884430e95d0600 --- /dev/null +++ b/chat_gui.py @@ -0,0 +1,83 @@ +import streamlit as st +import requests + +API_URL = "http://localhost:8000" + +st.set_page_config(page_title="Transfer-Bot") +st.title("Transfer-Bot Frontend") + +if "chat_history" not in st.session_state: + st.session_state.chat_history = [] + +tab1, tab2 = st.tabs(["Chat", "Upload mit Text"]) + +with tab1: + st.subheader("Chat mit dem Bot") + + for role, msg in st.session_state.chat_history: + if role == "user": + st.markdown( + f""" +
+
+ {msg} +
+
+ """, + unsafe_allow_html=True + ) + else: + st.markdown( + f""" +
+
+ {msg} +
+
+ """, + unsafe_allow_html=True + ) + + user_query = st.chat_input("Stell mir deine Frage...") + + + + if user_query: + st.session_state.chat_history.append(("user", user_query)) + st.session_state.pending_query = user_query + st.rerun() + + if "pending_query" in st.session_state: + with st.spinner("Wird verarbeitet..."): + try: + response = requests.post(f"{API_URL}/chat", json={"query": st.session_state.pending_query}) + data = response.json() + bot_reply = data["response"] + except Exception as e: + bot_reply = f"Error: {str(e)}" + + st.session_state.chat_history.append(("bot", bot_reply)) + del st.session_state.pending_query + st.rerun() + +with tab2: + st.subheader("Lade eine Datei und Text hoch") + upload_file = st.file_uploader("Such dir eine Datei aus") + upload_text = st.text_area("Schreib einen Text dazu") + + if st.button("Senden", key="upload_button") and upload_file: + with st.spinner("Wird gesendet..."): + try: + files = {"file": (upload_file.name, upload_file.getvalue())} + data = {"text": upload_text} + response = requests.post(f"{API_URL}/upload", data=data, files=files) + data = response.json() + st.success("Antwort:") + st.markdown(data["response"]) + st.caption(f"Agent: {data.get('agent', 'unknown')}") + + if "result_file_url" in data: + st.markdown(f"[Ergebnisdatei anzeigen]({API_URL}{data['result_file_url']})", + unsafe_allow_html=True) + except Exception as e: + st.error(f"Error: {str(e)}") diff --git a/config.py b/config.py new file mode 100644 index 0000000000000000000000000000000000000000..7ecfcb0af235e66cf0824a1f32796bec84aa6867 --- /dev/null +++ b/config.py @@ -0,0 +1,87 @@ +import os +from dotenv import load_dotenv +from langchain_openai import ChatOpenAI, OpenAIEmbeddings +from openai import OpenAI + +load_dotenv() + +# class AgentDecisoinConfig: +# # def __init__(self): +# # self.llm = AzureChatOpenAI( +# # deployment_name=os.getenv("deployment_name"), +# # model_name=os.getenv("model_name"), +# # azure_endpoint=os.getenv("azure_endpoint"), +# # openai_api_key=os.getenv("openai_api_key"), +# # openai_api_version=os.getenv("openai_api_version"), +# # temperature=0.1 +# # ) +# def __init__(self): +# self.client = OpenAI(api_key=os.getenv("openai_api_key")) +# +# self.llm = self.get_openai_llm() +# +# def get_openai_llm(self): +# return self.client.chat.completions.create( +# model="gpt-3.5-turbo", +# messages=[{"role": "user", "content": "Hello"}], +# temperature=0.1 +# ) + +class RAGConfig: + def __init__(self): + self.vector_db_type = "qdrant" + self.embedding_dim = 1536 + self.distance_metric = "Cosine" + self.use_local = True + self.local_path = "./data/qdrant_db" + self.url = os.getenv("QDRANT_URL") + self.api_key = os.getenv("QDRANT_API_KEY") + self.collection_name = "transfer_rag" + self.chunk_size = 512 + self.chunk_overlap = 50 + self.processed_docs_dir = "./data/processed" + + self.embedding_model = OpenAIEmbeddings( + model=os.getenv("embedding_model_name"), + api_key=os.getenv("openai_api_key") + ) + + self.llm = ChatOpenAI( + model=os.getenv("model_name"), + api_key=os.getenv("openai_api_key"), + temperature=0.3 + ) + + self.top_k = 5 + self.similarity_threshold = 0.75 + self.huggingface_token = os.getenv("HUGGINGFACE_TOKEN") + self.chunking_strategy = "hybrid" + self.max_context_length = 8192 + + self.response_format_instructions = """Instructions: + 1. Answer the query based ONLY on the information provided in the context. + 2. If the context doesn't contain relevant information to answer the query, state: "I don't have enough information to answer this question based on the provided context." + 3. Do not use prior knowledge not contained in the context. + 5. Be concise and accurate. + 6. Provide a well-structured response based on retrieved knowledge.""" + self.include_sources = True + self.metrics_save_path = "./logs/rag_metrics.json" + self.min_retrieval_confidence = 0.8 + self.context_limit = 20 + +class APIConfig: + def __init__(self): + self.host = "0.0.0.0" + self.port = 8000 + self.debug = True + self.rate_limit = 10 + self.max_image_upload_size = 5 + +class Config: + def __init__(self): + # self.agent_decision = AgentDecisoinConfig() + self.rag = RAGConfig() + self.api = APIConfig() + self.max_conversation_history = 40 + +# config = Config() \ No newline at end of file diff --git a/data/.DS_Store b/data/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..3ae943bda36a13ef51a0dfb5be243f87f417f9ff Binary files /dev/null and b/data/.DS_Store differ diff --git a/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000000.json b/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000000.json new file mode 100644 index 0000000000000000000000000000000000000000..35e622e361944c0cb20a26784763d3a5ee9b70e9 --- /dev/null +++ b/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000000.json @@ -0,0 +1,1570 @@ +{ + "id": "2b86db2d-408b-1992-e1b5-8a9f00000000", + "content": "\n[IMAGE: ]\n\nSchlussbericht zum Vorhaben\n\n[IMAGE: INSPIRER Forschungsprogramm zur Mensch-Technik-Interaktion: \u201eTechnik zum Menschen bringen\u201c Das Projekt \u201eINSPIRER\u201c wurde vom Bundesministerium f\u00fcr Bildung und Forschung (BMBF) in der F\u00f6rderma\u00dfnahme \u201eForschungsprogramm zur Mensch-Technik- Interaktion: Technik zum Menschen bringen\u201c unter dem F\u00f6rderkennzeichen 16SV8744 gef\u00f6rdert und vom Projekttr\u00e4ger VDI Technologiezentrum GmbH f\u00fcr das BMBF betreut. Stuttgart, April 2025 ]\n\n\n## INSPIRER Forschungsprogramm zur Mensch-Technik-Interaktion: \u201eTechnik zum Menschen bringen\u201c\n\nDas Projekt \u201eINSPIRER\u201c wurde vom Bundesministerium f\u00fcr Bildung und Forschung (BMBF) in der F\u00f6rderma\u00dfnahme \u201eForschungsprogramm zur Mensch-Technik- Interaktion: Technik zum Menschen bringen\u201c unter dem F\u00f6rderkennzeichen 16SV8744 gef\u00f6rdert und vom Projekttr\u00e4ger VDI Technologiezentrum GmbH f\u00fcr das BMBF betreut. [IMAGE: Ein Projekt der GEF\u00d6RDERT VOM FR | Bundesministerium f\u00fcr Bildung und Forschung]\n\n\n## Beteiligte\n\n\n## Hochschule f\u00fcr Technik Stuttgart\n\nAlfakhori, Muhammad Coors, Volker Schneider, Sven\n\n[IMAGE: ]\n\n\n## Kooperationspartnerinnen\n\nHochschule f\u00fcr Technik und Wirtschaft Berlin Hochschule f\u00fcr Wirtschaft und Recht Berlin Berliner Hochschule f\u00fcr Technik Virtual Dimension Center Point Cloud Technology FrauenComputerZentrumBerlin e.V. [IMAGE: erf\u00e4ller: INSPIRE]\n\n\n## Schlussbericht - Kurzbericht\n\n\n## INSPIRER\n\nForschungsprogramm zur Mensch-Technik-Interaktion: \u201eTechnik zum Menschen bringen\u201c\n\n| Projektlaufzeit | 01.08.2021 | - | 31.07.2024 | (verl\u00e4ngert | bis | 31.10.2024) | F\u00f6rderkennzeichen | 16SV8744 | Stichworte | Stadtentwicklung, | Digitale | B\u00fcrgerbeteiligung, | Partizipation | und | Akzeptanz, | Augmented | Reality, | Extended | Reality | (XR), | AR-Tracking, | Point | Cloud | Matching | Projektleitung | Prof. | Dr.-Ing. | Volker | Coors | Beteiligte | Professoren | Prof. | Dr.-Ing. | Volker | Coors | Gef\u00f6rderte | Ma\u00dfnahme | Forschungsprogramm | zur | Mensch-Technik-Interaktion | F\u00f6rderbereich | Technik | zum | Mensch | bringen | Fachhochschule | Hochschule | f\u00fcr | Technik | Stuttgart | (HFT | Stuttgart), | Schellingstra\u00dfe | 24, | 70174 | Stuttgart |\n|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|\n\nDas Projekt \u201eINSPIRER\u201c wurde vom Bundesministerium f\u00fcr Bildung und Forschung (BMBF) in der F\u00f6rderma\u00dfnahme \u201eForschungsprogramm zur Mensch-Technik-Interaktion: Technik zum Menschen bringen\u201c unter dem F\u00f6rderkennzeichen 16SV8744 gef\u00f6rdert und vom Projekttr\u00e4ger VDI Technologiezentrum GmbH f\u00fcr das BMBF betreut. Hochschule f\u00fcr Technik Stuttgart, April 2025\n\n[IMAGE: ]\n\n\n## I. Kurzdarstellungen\n\nDas Projekt INSPIRER zielte darauf ab, Augmented Reality (AR) zur interaktiven B\u00fcrgerbeteiligung in der Stadtplanung einzusetzen. Durch eine standortbezogene Visualisierung von Planungsentw\u00fcrfen konnten B\u00fcrger*innen geplante Ver\u00e4nderungen direkt vor Ort erleben. Der entwickelte AR-Client mit einem innovativen Point Cloud Matching-Tracking-System erm\u00f6glichte eine pr\u00e4zise Platzierung und Stabilisierung virtueller Inhalte ohne GPS. Im Rahmen des Projekts wurde ein 3D-Stadtmodell-Server entwickelt, der Bestands- und Entwurfsdaten verwaltet. Dies erlaubte die nahtlose Integration von Stadtplanungsmodellen in AR-Anwendungen. Ein zentraler Anwendungsfall war die Visualisierung eines geplanten Kreisverkehrs in Fellbach, wobei die AR-App es erm\u00f6glichte, das 3D-Design des neuen Stadtbereichs direkt vor Ort zu erleben. Die Forschungsergebnisse wurden evaluiert und zeigen, dass AR-basierte Beteiligungsformate das Verst\u00e4ndnis und die Akzeptanz von Stadtplanungsprozessen erheblich verbessern k\u00f6nnen. Die entwickelte Technologie wurde ver\u00f6ffentlicht und als Open Access zug\u00e4nglich gemacht, um zuk\u00fcnftige Entwicklungen in der digitalen B\u00fcrgerbeteiligung zu unterst\u00fctzen. ## Aufgabenstellung\n\nDas Projekt verfolgte das Ziel, B\u00fcrgerbeteiligung durch immersive AR-Visualisierungen zu verbessern. Herk\u00f6mmliche Beteiligungsverfahren sind oft schwer zug\u00e4nglich und nicht f\u00fcr alle Bev\u00f6lkerungsgruppen verst\u00e4ndlich. Durch AR-Technologie wurde eine interaktive M\u00f6glichkeit geschaffen, um B\u00fcrger*innen aktiv in Planungsprozesse einzubinden. Die Herausforderung bestand darin, ein stabil arbeitendes, genaues AR-Tracking-System zu entwickeln, das ohne GPS funktioniert und eine realistische Darstellung geplanter Ver\u00e4nderungen erm\u00f6glicht. [IMAGE: l.2]\n\n\n## Voraussetzungen, unter denen das Vorhaben durchgef\u00fchrt wurde\n\nDas Vorhaben wurde interdisziplin\u00e4r an der Hochschule f\u00fcr Technik Stuttgart (HFT) mit Unterst\u00fctzung der Stadt Fellbach und weiteren Partnern durchgef\u00fchrt. Die technische Umsetzung erforderte die Kombination von 3D-Stadtmodellen, Punktwolken-Tracking und AR-Visualisierung. Zus\u00e4tzlich wurden Nutzertests in Workshops durchgef\u00fchrt, um die Benutzerfreundlichkeit und Effektivit\u00e4t der Anwendung zu evaluieren. ## Planung und Ablauf des Vorhabens\n\nDas Projekt wurde wie geplant durchgef\u00fchrt. Es wurde ein iterativer Entwicklungsansatz verfolgt, der eine kontinuierliche Anpassung des AR-Systems anhand von Tests und Nutzerr\u00fcckmeldungen erm\u00f6glichte. - 1. Entwicklung des AR-Tracking-Systems (AP6): Implementierung eines Point Cloud Matching-Verfahrens zur stabilen Platzierung virtueller Inhalte.", + "embedding": [ + -0.004790324717760086, + -0.0030699963681399822, + -0.006735043600201607, + -0.016980553045868874, + 0.010145781561732292, + 0.02566364035010338, + -0.023748841136693954, + -0.019905943423509598, + -0.005146025214344263, + -0.019360756501555443, + -0.012998035177588463, + 0.008736275136470795, + -0.01450727041810751, + -0.01736617274582386, + -0.0043282462283968925, + 0.001956353895366192, + 0.030929340049624443, + 0.0007957557099871337, + -0.008829356171190739, + -0.00859665498137474, + -0.01515883393585682, + 0.006947799120098352, + 0.023496193811297417, + 0.01282517146319151, + -0.017685307189822197, + 0.006698476150631905, + 0.020477723330259323, + -0.03467915952205658, + 0.009853241965174675, + -0.004993107169866562, + 0.012845117598772049, + -0.009135192260146141, + -0.0010870479745790362, + -0.004251786973327398, + -0.03622163459658623, + -0.010544697754085064, + -0.021661177277565002, + 0.0019247730961069465, + 0.037710923701524734, + 0.006429207511246204, + 0.034040890634059906, + -0.002393500180914998, + -0.0010114200413227081, + -0.011163018643856049, + -0.012752036564052105, + 0.016847582533955574, + -1.9945835447288118e-05, + -0.010750805027782917, + -0.003839573124423623, + 0.02422754094004631, + 0.013669545762240887, + 0.024653051048517227, + -0.0035004939418286085, + -0.009554054588079453, + -0.0091484896838665, + -0.025224832817912102, + -0.014600350521504879, + 0.034120675176382065, + -0.01094361487776041, + -0.017884764820337296, + -0.014693431556224823, + 0.006216451991349459, + -0.028509246185421944, + 0.013642950914800167, + -0.03220587596297264, + -0.0005979595007374883, + -0.04382764548063278, + 0.020078806206583977, + -0.006974393501877785, + 0.010784047655761242, + 0.05068901553750038, + 0.024533376097679138, + 0.019267676398158073, + -0.00691455602645874, + 0.03151441738009453, + 0.004271733108907938, + 0.017605522647500038, + -0.0035304126795381308, + 0.0066253412514925, + 0.010784047655761242, + 0.0048568109050393105, + -0.019347459077835083, + -0.021807445213198662, + 0.019320864230394363, + 0.004544326104223728, + 0.020331453531980515, + -0.006143317092210054, + -0.0020627316553145647, + 0.005584833677858114, + -0.0021907174959778786, + 0.007931793108582497, + 0.036460984498262405, + -0.004268408752977848, + 0.015305103734135628, + 0.012452849186956882, + 0.0020195157267153263, + 0.0024599863681942225, + 0.0032262387685477734, + -0.014334406703710556, + -0.020225076004862785, + -0.017804982140660286, + -0.011528692208230495, + -0.015105645172297955, + -0.00345727801322937, + -0.028456056490540504, + -0.00011385747347958386, + 0.0036600606981664896, + 0.008204386569559574, + 0.028668813407421112, + 0.002371892100200057, + -0.008849302306771278, + 0.024134458974003792, + -0.014640242792665958, + -0.002513175131753087, + -0.0063726939260959625, + -0.041115012019872665, + 0.014188136905431747, + -0.008643195033073425, + 0.006223100237548351, + -0.00013328388740774244, + 0.04076928645372391, + 0.025796612724661827, + -0.00815119780600071, + -0.00027799507370218635, + 0.03313668072223663, + 0.018097519874572754, + -0.023855218663811684, + -0.00011811673903139308, + -0.00634609954431653, + -0.0278443843126297, + -0.013749328441917896, + -0.013609707355499268, + 0.022339334711432457, + -0.002534783212468028, + 0.00814454909414053, + -0.002501540118828416, + -0.012605767697095871, + -0.017645414918661118, + -0.03494510054588318, + -0.04404040426015854, + 0.010072646662592888, + 0.01149544958025217, + -0.022552089765667915, + -0.012279985472559929, + -0.020225076004862785, + 0.004384759347885847, + 0.00030832935590296984, + -0.0029835645109415054, + 0.01844324916601181, + 0.02313716895878315, + -0.00879611261188984, + -0.04757746309041977, + 0.005036323331296444, + -0.024546673521399498, + 0.001062115654349327, + 0.01452056784182787, + -0.009620540775358677, + 0.017100227996706963, + -0.009175083599984646, + 0.0012416281970217824, + 0.014706728979945183, + -0.005588158033788204, + 0.0008252589032053947, + 0.006947799120098352, + 0.03938637301325798, + 0.018243789672851562, + -0.005222484469413757, + -0.004467866849154234, + -0.0030118210706859827, + -0.005604779347777367, + 0.008915788494050503, + 0.03340262547135353, + -0.03821621835231781, + 0.00868308637291193, + -0.007433147635310888, + -0.00915513839572668, + -0.00039621570613235235, + 0.006196505855768919, + -0.021740959957242012, + -0.008510222658514977, + -0.006040263455361128, + -0.003168063471093774, + 0.03146123141050339, + -0.005023025907576084, + -0.013696139678359032, + -0.014347704127430916, + 0.019480431452393532, + 0.024493485689163208, + 0.0024333917535841465, + -0.012406309135258198, + 0.014294514432549477, + 0.011881068348884583, + 0.0032711168751120567, + -0.01751244254410267, + -0.6323095560073853, + -0.012193553149700165, + 0.009846593253314495, + -0.016834285110235214, + 0.005165971349924803, + 0.007007636595517397, + -0.0047304872423410416, + 0.009394488297402859, + 0.02537110075354576, + 0.05893329158425331, + 0.003686655079945922, + 0.013124358840286732, + 0.009507514536380768, + -0.029493240639567375, + -0.024786023423075676, + -0.017804982140660286, + -0.0006482396274805069, + -0.013543222099542618, + 0.01150874700397253, + 0.022804737091064453, + -0.020185183733701706, + 0.02209998480975628, + 0.008177791722118855, + -0.007918496616184711, + -0.0005746893584728241, + 0.008476980030536652, + 0.006233073305338621, + -0.008550113998353481, + 0.004979810211807489, + 0.005907291546463966, + -0.011176316067576408, + 0.02077026292681694, + 0.010318645276129246, + 0.004142085090279579, + 0.05066242069005966, + 0.017672009766101837, + -0.014241325668990612, + 0.019413946196436882, + 0.006572152487933636, + 0.013017981313169003, + 0.0014178163837641478, + 0.003699952270835638, + 0.013237386010587215, + 0.014214731752872467, + 0.018868759274482727, + 0.011222856119275093, + 0.02563704550266266, + -0.007273580878973007, + 0.01831027679145336, + -0.023469598963856697, + 0.009201678447425365, + 0.020185183733701706, + 0.00551834749057889, + 0.004251786973327398, + 0.023589273914694786, + 0.011522043496370316, + 0.010631130076944828, + -0.00635274825617671, + 0.007213743403553963, + 0.005401996895670891, + -0.011282693594694138, + 0.00026137352688238025, + -0.006429207511246204, + -0.02416105382144451, + -0.016794392839074135, + 0.03664714843034744, + -0.007067474070936441, + -0.001653011073358357, + -0.00802487414330244, + -0.03154101222753525, + 0.00816449522972107, + 0.035397209227085114, + -0.01603645086288452, + -0.015464670024812222, + 0.010511455126106739, + 0.01381581462919712, + 0.015943370759487152, + 0.0076326061971485615, + 0.005834156647324562, + 0.010823939926922321, + 0.016634825617074966, + -0.006508990656584501, + -0.008357305079698563, + -0.001119459979236126, + 0.008756221272051334, + -0.021435122936964035, + -0.02073037065565586, + -0.03026448003947735, + -0.01507905125617981, + 0.0018931921804323792, + 0.009986214339733124, + -0.004118815064430237, + -0.029413457959890366, + 0.003916032146662474, + 0.01623590849339962, + 0.03795027360320091, + 0.0027126334607601166, + 0.02763162925839424, + 0.013516627252101898, + -0.0345727801322937, + -0.005761021748185158, + -0.004604163579642773, + 0.021248962730169296, + 0.010105889290571213, + 0.03146123141050339, + -0.007712389342486858, + -0.04981139674782753, + 0.00923492107540369, + 0.04478504881262779, + -0.05231127515435219, + -0.008942382410168648, + -0.010105889290571213, + 0.006572152487933636, + -0.003959248308092356, + 0.011395719833672047, + -0.02671412192285061, + 0.027086444199085236, + -0.01962670125067234, + 0.01618272066116333, + -0.008636546321213245, + 0.018097519874572754, + -0.02297760173678398, + 0.009480919688940048, + 0.005152673926204443, + 0.0030650098342448473, + 0.027152929455041885, + 0.012452849186956882, + -0.004421326797455549, + -0.036460984498262405, + 0.014148245565593243, + 0.007167203351855278, + -0.005987074691802263, + 0.021248962730169296, + 0.0006706786807626486, + 0.022844629362225533, + 0.006848069839179516, + 0.012658956460654736, + -0.01338365487754345, + -0.004344867542386055, + -0.013117710128426552, + -0.030370857566595078, + 0.011887717060744762, + 0.012492741458117962, + -0.0062596676871180534, + -0.02090323530137539, + -0.04858805239200592, + -0.006518963724374771, + 0.01438759546726942, + 0.013656248338520527, + 0.006203154567629099, + -0.03598228469491005, + -0.007333418354392052, + -0.0036068717017769814, + 0.035370614379644394, + 0.01950702629983425, + -0.019134704023599625, + -0.022512199357151985, + -0.028083734214305878, + -0.0025962828658521175, + -0.022272849455475807, + 0.02554396539926529, + 0.025131750851869583, + -0.030955934897065163, + -0.025012075901031494, + -0.005940534174442291, + 0.00010404038039268926, + 0.01515883393585682, + 0.04302981495857239, + -0.030610207468271255, + -0.04489142447710037, + 0.024028081446886063, + -0.01606304571032524, + -0.0160763431340456, + 0.02787097916007042, + -0.01269219908863306, + 0.011156369931995869, + -0.022618576884269714, + -0.015251914970576763, + -0.0036500876303762197, + -0.005997047759592533, + -0.005066242069005966, + 0.028535841032862663, + -0.008237630128860474, + -0.005013053305447102, + -0.013117710128426552, + 0.020065508782863617, + 0.0052457544952631, + 0.025105157867074013, + -0.0036135204136371613, + 0.00872297864407301, + 0.00916178710758686, + 0.02417435124516487, + 0.015185428783297539, + 0.019201189279556274, + -0.014799809083342552, + -0.000920832681003958, + -0.01551785971969366, + -0.023655759170651436, + -0.007572768721729517, + -0.001126108574680984, + 0.04390743002295494, + 0.01958680897951126, + 0.02765822410583496, + 0.021089395508170128, + 6.596669118152931e-05, + -0.030663397163152695, + -0.005761021748185158, + -0.010717561468482018, + 0.03731200844049454, + -0.01271879393607378, + 0.01561093982309103, + -0.013157602399587631, + -0.016594935208559036, + -0.0012200202327221632, + 0.00010211851622443646, + -0.012492741458117962, + 0.00813790038228035, + 0.00468062236905098, + -0.018164006993174553, + 0.003969220910221338, + -0.017578929662704468, + -0.0017352876020595431, + 0.017804982140660286, + -0.019972428679466248, + 0.02414775639772415, + 0.017100227996706963, + 0.010105889290571213, + 0.02305738441646099, + 0.017751792445778847, + -0.004172003827989101, + 0.012399660423398018, + 0.014587054029107094, + -0.0021840687841176987, + 0.006595422513782978, + 0.014095056802034378, + 0.006399288773536682, + 0.010458266362547874, + -0.015105645172297955, + 0.04159371554851532, + 0.01965329609811306, + 0.017778387293219566, + 0.016515150666236877, + -0.0067018005065619946, + -0.005149349570274353, + 0.012612416408956051, + -0.01273874007165432, + 0.015145537443459034, + 0.02194041758775711, + -0.007320121396332979, + 0.025916287675499916, + -0.023895109072327614, + 0.006166587118059397, + -0.010597886517643929, + 0.013988678343594074, + 0.004600839223712683, + -0.009647135622799397, + 0.018017737194895744, + -0.012432903982698917, + 0.024706240743398666, + 0.02888156846165657, + 0.005647995509207249, + 0.02565034292638302, + 0.037684328854084015, + -0.0066585843451321125, + -0.0054518613032996655, + 0.02523813024163246, + -0.03433343023061752, + -0.02092982828617096, + -0.012964792549610138, + -0.021581392735242844, + 0.029147513210773468, + -0.009447677060961723, + -0.0010546359699219465, + -0.018031034618616104, + 0.01866930164396763, + 0.006887961644679308, + 0.026394987478852272, + 0.01448067557066679, + 0.02874859608709812, + 0.03207290172576904, + -0.024905698373913765, + -0.025703532621264458, + -0.00578761612996459, + 0.02426743134856224, + -0.004693919792771339, + -0.0162758007645607, + -0.02999853529036045, + 0.012226796709001064, + -0.016874175518751144, + -0.015677426010370255, + -0.02321695163846016, + -0.00524907885119319, + -0.014560459181666374, + -0.013722734525799751, + -0.0009956295834854245, + -0.007984982803463936, + 0.02331003174185753, + -0.017658712342381477, + 0.002130880020558834, + -0.0018084223847836256, + -0.008968977257609367, + -0.01393548958003521, + -0.00926816463470459, + -0.023908406496047974, + 0.037498168647289276, + -0.04289684072136879, + 0.016555042937397957, + -0.015836993232369423, + 0.0017967872554436326, + -0.03736519813537598, + 0.010657723993062973, + -0.003809654386714101, + 0.0034173864405602217, + 0.02554396539926529, + -0.0037531412672251463, + 0.01739276759326458, + -0.007147257216274738, + -0.018802274018526077, + 0.03377494588494301, + 0.0005501725827343762, + -0.020171888172626495, + -0.04864124208688736, + 0.0021375284995883703, + 0.010026106610894203, + 0.04127458110451698, + 0.020371345803141594, + -0.008935733698308468, + 0.01752573996782303, + -0.005119430832564831, + 0.0104915089905262, + -0.017073635011911392, + -0.06223100423812866, + -0.011787988245487213, + -0.003156428225338459, + -0.0005534969386644661, + -0.01631569303572178, + 0.03348240628838539, + -0.02075696550309658, + 0.010704264976084232, + -0.00550837442278862, + 0.004740459844470024, + -0.000594219658523798, + 0.009101949632167816, + -0.006385991349816322, + -0.002923727035522461, + -0.011362477205693722, + 0.00042800436494871974, + 0.04063631221652031, + 0.023615868762135506, + -0.03010491281747818, + 0.02433391846716404, + 0.021129287779331207, + 9.86903251032345e-05, + -0.023509491235017776, + 0.01841665431857109, + 0.024613160640001297, + 0.015172131359577179, + 0.01336370874196291, + -0.0037730869371443987, + -0.015650831162929535, + -0.007818766869604588, + 0.006967744790017605, + 0.016701312735676765, + -0.00692120473831892, + 0.02312387153506279, + 0.01559764239937067, + 0.0038528703153133392, + -0.018296979367733, + 0.00044670357601717114, + -0.009328002110123634, + -0.011728150770068169, + 0.01842995174229145, + -0.00019831561075989157, + -0.016501853242516518, + 0.0010887101525440812, + -0.007133960258215666, + -0.027139632031321526, + -0.011555287055671215, + -0.026355095207691193, + 0.008078062906861305, + 0.003576952964067459, + -0.01732628233730793, + -8.435425843345001e-05, + -0.037737518548965454, + -0.022724954411387444, + -0.03829600289463997, + 0.007625957485288382, + -0.005076214671134949, + -0.00814454909414053, + -0.036328013986349106, + -0.01158188097178936, + 0.0008493601344525814, + 0.000988149899058044, + 0.009507514536380768, + 0.007406553253531456, + -0.007506282534450293, + -0.03486531972885132, + 0.001653011073358357, + 0.00691455602645874, + 0.004876756574958563, + -0.005225808825343847, + -0.010099240578711033, + -0.012552578933537006, + 0.013563167303800583, + -0.0006249694852158427, + -0.01091037131845951, + 0.02651466242969036, + -0.026966769248247147, + -0.003709925338625908, + 0.002287122420966625, + -0.013696139678359032, + -0.011960851959884167, + -0.005042972043156624, + 0.011163018643856049, + -0.007639254443347454, + 0.0005094498628750443, + 0.01748584769666195, + 0.00023187033366411924, + -0.00027176199364475906, + 0.012924901209771633, + -0.004088895861059427, + 0.007147257216274738, + 0.010976857505738735, + -0.024613160640001297, + 0.02178085222840309, + -0.023376518860459328, + -0.012033986859023571, + 0.011901014484465122, + 0.008576708845794201, + 0.009746864438056946, + -0.0025763369631022215, + 0.002887159585952759, + -0.02328343689441681, + -0.004235165659338236, + 0.01050480641424656, + 0.007413201965391636, + 0.002238919958472252, + -0.014733322896063328, + 0.007938441820442677, + -0.02104950323700905, + -0.006003696005791426, + 0.013642950914800167, + 0.026315204799175262, + -0.023496193811297417, + -0.018110817298293114, + -0.028429463505744934, + 0.05680573731660843, + 0.03146123141050339, + 0.006482396274805069, + 0.01261906512081623, + 0.01728639006614685, + 0.007207094691693783, + -0.014095056802034378, + -0.004893377888947725, + -0.00523245707154274, + -0.002624539425596595, + -0.005298943258821964, + -0.011974149383604527, + -0.0289879459887743, + -0.02890816330909729, + -0.01039842888712883, + 0.005126079544425011, + 0.010897073894739151, + -0.014467379078269005, + -0.030344262719154358, + -0.005069566424936056, + -0.002358594909310341, + 0.001119459979236126, + 0.005977101624011993, + -0.02296430431306362, + 0.00033887141034938395, + 0.0242807287722826, + -0.04151393100619316, + 0.02317705936729908, + -0.019905943423509598, + 0.030769774690270424, + -0.013323817402124405, + 0.010006160475313663, + -0.008942382410168648, + -0.02075696550309658, + -0.02445359341800213, + -0.024001488462090492, + 0.022751549258828163, + 0.027950763702392578, + 0.018243789672851562, + -0.0014876268105581403, + 0.018097519874572754, + 0.01105664111673832, + -0.009008868597447872, + -0.000633695803117007, + -0.004876756574958563, + -0.00016403371409978718, + -0.038748107850551605, + 0.015371589921414852, + -0.001858286908827722, + 0.019985726103186607, + 0.014108353294432163, + -0.026142340153455734, + -0.013071170076727867, + 0.012353120371699333, + -0.040051236748695374, + -0.0029420105274766684, + -0.0008767856634221971, + -0.029812373220920563, + -0.01616942323744297, + -0.0038960862439125776, + 0.011874420568346977, + 0.0068281241692602634, + -0.03465256467461586, + -0.0008842653478495777, + 0.02670082449913025, + -0.008317412808537483, + 0.021342042833566666, + 0.011242802254855633, + 0.0056147524155676365, + -0.031993117183446884, + 0.020185183733701706, + 0.02651466242969036, + 0.002396824536845088, + -0.002531458856537938, + 0.003982518333941698, + -0.03239203616976738, + 0.01147550344467163, + 0.03789708390831947, + -0.0015682412777096033, + -0.005282321944832802, + 0.012545930221676826, + -0.0004184469871688634, + -0.0052557275630533695, + 0.019387351348996162, + 0.03159420192241669, + -0.0055382936261594296, + -0.005957155954092741, + -0.01950702629983425, + -0.002408459549769759, + -0.02874859608709812, + -0.011342531070113182, + -0.0066552599892020226, + 0.017951251938939095, + 0.006861367262899876, + -0.0024516754783689976, + 0.028589028865098953, + 0.0110300462692976, + -0.00046332512283697724, + -0.00607350654900074, + -0.011807934381067753, + 0.04260430112481117, + 0.008284170180559158, + 0.053827159106731415, + 0.016727905720472336, + -0.033083491027355194, + -0.007599363103508949, + -0.04021080210804939, + 0.004896702244877815, + 0.0026112422347068787, + 0.02660774253308773, + -0.0024217567406594753, + 0.0006428376073017716, + -0.010305347852408886, + 0.02091653272509575, + 0.011714853346347809, + -0.0415671207010746, + -0.021142585203051567, + 0.02906773053109646, + 0.004248462617397308, + 0.009540757164359093, + -0.019959131255745888, + -0.0034805480390787125, + -0.01854962669312954, + -0.0024300676304847, + -0.03196652606129646, + 0.016581637784838676, + -0.00817114394158125, + -0.0005198383005335927, + 0.0010936965700238943, + 0.015172131359577179, + 0.011967500671744347, + -0.0020544209983199835, + 0.005568212363868952, + -0.047763627022504807, + -0.01381581462919712, + -0.013044576160609722, + 0.0010870479745790362, + -0.0017469227313995361, + -0.0018915300024673343, + 0.014214731752872467, + 0.001649686717428267, + 0.01974637620151043, + 0.01611623354256153, + 0.005219160113483667, + -0.01831027679145336, + -0.006319505162537098, + 0.015358292497694492, + 0.02440040372312069, + -0.01561093982309103, + -0.012419606558978558, + -0.021169178187847137, + -0.021115990355610847, + 0.020424535498023033, + -0.008915788494050503, + 0.0018034358508884907, + -0.014799809083342552, + -0.01102339755743742, + 0.009221624583005905, + 0.003859519027173519, + -0.007606011815369129, + -0.01832357421517372, + -0.005175943952053785, + -0.0036268176045268774, + -0.009347948245704174, + 0.002290446776896715, + 0.017073635011911392, + 0.0014793160371482372, + -0.032870735973119736, + -0.025809910148382187, + 0.016661420464515686, + -0.0054950774647295475, + 0.012871711514890194, + 0.006000372115522623, + 0.013357060961425304, + -0.00304007763043046, + 0.02207338996231556, + -0.04185965657234192, + -0.007333418354392052, + 0.018948541954159737, + -0.018004439771175385, + -0.021807445213198662, + 0.002149163745343685, + 0.006100100930780172, + -0.01616942323744297, + 0.02885497361421585, + -0.017007147893309593, + -0.011648367159068584, + -0.005229133181273937, + 0.006718421820551157, + 0.012665605172514915, + 0.007951739244163036, + 0.005957155954092741, + 0.02081015333533287, + -0.009966269135475159, + 0.006209803279489279, + -0.004846837837249041, + 0.006379342637956142, + -0.012904955074191093, + 0.01035188790410757, + -0.0017535713268443942, + 0.008317412808537483, + -0.022871224209666252, + 0.01860281452536583, + -0.004996431525796652, + 0.011389071121811867, + 0.007306823972612619, + -0.049146536737680435, + -0.01721990294754505, + 0.00663198996335268, + 0.021209070459008217, + -0.02446689084172249, + -0.0027508630882948637, + -0.018921948969364166, + -0.0033874674700200558, + -0.023389816284179688, + -0.0018898678245022893, + 0.016807690262794495, + 0.01624920591711998, + 0.0018665976822376251, + 0.001508403685875237, + -0.009480919688940048, + 0.006475747562944889, + 0.007253635209053755, + 0.011947554536163807, + -0.0005385375116020441, + -0.004351516254246235, + -0.02312387153506279, + 0.0004720514116343111, + -0.0077522811479866505, + 0.029626213014125824, + 0.013869003392755985, + -0.039865076541900635, + -0.006040263455361128, + 0.0029719292651861906, + -0.057337626814842224, + -0.010212267749011517, + -0.0322856567800045, + 0.014228028245270252, + 0.008496925234794617, + 0.0070608253590762615, + -0.013882300816476345, + 0.02066388539969921, + 0.008816058747470379, + 0.02092982828617096, + 0.0006627834518440068, + -0.03103571943938732, + 0.021461717784404755, + -0.006748340558260679, + 0.007905199192464352, + 0.008244277909398079, + -0.05345483496785164, + -0.014626945368945599, + 0.032870735973119736, + 0.0031298338435590267, + -0.007526228204369545, + 0.029227295890450478, + -0.0002871369069907814, + 0.0024317295756191015, + 0.03568974509835243, + 0.01628909818828106, + -0.003962572664022446, + -0.009567352011799812, + 0.04983799159526825, + -0.019161298871040344, + -0.005295618902891874, + -0.0026644309982657433, + -0.0097202705219388, + -0.014281217940151691, + 6.830409347458044e-06, + 0.016634825617074966, + -0.007260283920913935, + -0.011395719833672047, + 0.015305103734135628, + -0.013217439875006676, + -0.011375774629414082, + 0.00023498685914091766, + 0.014254623092710972, + -0.013642950914800167, + -0.003212941577658057, + 0.0014444108819589019, + 0.013104413636028767, + -0.003719898173585534, + -0.027099739760160446, + 0.029386863112449646, + -0.024533376097679138, + -0.0021774203050881624, + 0.011641718447208405, + -0.0194405410438776, + 0.006269640754908323, + -0.028535841032862663, + 0.008749572560191154, + -0.010265456512570381, + 0.010790696367621422, + -0.0012632361613214016, + -0.0060602095909416676, + -0.006326153874397278, + 0.03374835103750229, + 0.0069411504082381725, + 0.007818766869604588, + 0.009992863051593304, + 0.00035840171040035784, + -0.01618272066116333, + -0.024945590645074844, + -0.002519823843613267, + 0.007546173874288797, + -0.011701555922627449, + 0.01973307877779007, + 0.0032195900566875935, + -0.016435367986559868, + 0.013988678343594074, + -0.00869638379663229, + 0.015637533739209175, + -0.01729968748986721, + 0.00802487414330244, + 0.20679841935634613, + -0.022884521633386612, + -0.0025879719760268927, + 0.02660774253308773, + -0.03441321477293968, + 0.015797100961208344, + 0.017113525420427322, + 0.00467729801312089, + 0.0007126480340957642, + 0.008570060133934021, + -0.02067718096077442, + 0.003912707790732384, + -0.017831576988101006, + 0.0020560831762850285, + 0.026288609951734543, + -0.001572396606206894, + -0.018336869776248932, + -0.010518103837966919, + -0.006615368649363518, + 0.0024649726692587137, + 0.03598228469491005, + -0.019453836604952812, + -0.011635069735348225, + -0.025703532621264458, + 0.013669545762240887, + 0.009308055974543095, + -0.022645171731710434, + -0.00401576142758131, + 0.03459937497973442, + 0.002513175131753087, + -0.022844629362225533, + 0.004251786973327398, + 0.012665605172514915, + 0.008895842358469963, + 0.0019247730961069465, + 0.006043587811291218, + 0.0031265094876289368, + 0.018044332042336464, + 0.02792416885495186, + 0.03693968430161476, + -0.012286634184420109, + -0.004906675312668085, + -0.00928146205842495, + -0.02421424351632595, + 0.019905943423509598, + 0.020304858684539795, + -0.0005863244296051562, + 0.005465158727020025, + 0.02077026292681694, + -0.007213743403553963, + -0.020477723330259323, + -0.008742923848330975, + 0.028429463505744934, + 0.03691308945417404, + -0.005844129715114832, + 0.023469598963856697, + 0.02674071490764618, + 0.013749328441917896, + 0.011462206020951271, + 0.01865600422024727, + -0.016555042937397957, + 0.0030866179149597883, + 0.006947799120098352, + 0.011947554536163807, + -0.03898745775222778, + 0.020424535498023033, + 0.00691455602645874, + 0.004188625141978264, + -0.0012117094593122602, + -0.01225339062511921, + -0.007559471298009157, + -0.029652807861566544, + -0.024852510541677475, + 0.007725686766207218, + -0.012545930221676826, + -0.02311057411134243, + 0.01602315343916416, + -0.003922680858522654, + 0.02991875261068344, + 0.02295100688934326, + -0.002370229922235012, + 0.016448665410280228, + 0.014134948141872883, + -0.029227295890450478, + -0.019174596294760704, + -0.03864172846078873, + 0.02430732361972332, + 0.006758313626050949, + -0.009959620423614979, + -0.0042118956334888935, + -0.015438076108694077, + -0.009593946859240532, + -0.005747724790126085, + -0.025756720453500748, + 0.013124358840286732, + -0.013463438488543034, + 0.020384643226861954, + 0.003216265933588147, + -0.005149349570274353, + 0.014081759378314018, + -0.01954691857099533, + 0.05521006882190704, + 0.008304115384817123, + -0.01832357421517372, + -0.021794147789478302, + 0.02760503441095352, + 0.006691827438771725, + 0.021288855001330376, + 0.0063560726121068, + 0.0024350539315491915, + -0.010132484138011932, + -0.028030546382069588, + 0.00993302557617426, + 0.00663531431928277, + 0.0044080293737351894, + 0.047896597534418106, + 0.00013785480405203998, + -0.0008107150788418949, + -0.004142085090279579, + -0.007612660061568022, + -0.029307080432772636, + 0.0072270408272743225, + -0.01336370874196291, + 0.014361000619828701, + 0.006874664220958948, + -0.03834919258952141, + -0.009082003496587276, + -0.015251914970576763, + -0.01846984215080738, + -0.0004379772872198373, + 0.0037764112930744886, + -0.010026106610894203, + 0.015544453635811806, + -0.01718001253902912, + -0.007665849290788174, + -0.004670649766921997, + 0.02328343689441681, + -0.02077026292681694, + 0.014081759378314018, + 0.001501755090430379, + 0.011535340920090675, + -0.00495986407622695, + -0.0009598932811059058, + 0.009620540775358677, + -0.007778875529766083, + -0.014095056802034378, + 0.0019995698239654303, + 0.015331698581576347, + -0.003284414066001773, + -0.019015029072761536, + -0.0052557275630533695, + -0.0017984494334086776, + 0.010198970325291157, + -0.01619601808488369, + 0.026860389858484268, + -0.004993107169866562, + -0.02779119648039341, + -0.02196701243519783, + 0.0014385933754965663, + -0.006432531867176294, + -0.015105645172297955, + 0.0001355693384539336, + 0.003919356502592564, + -0.013450141064822674, + -0.03563655912876129, + -0.0016812676331028342, + -0.16903430223464966, + 0.017924657091498375, + 0.03143463656306267, + -0.03212609142065048, + 0.029626213014125824, + -0.01448067557066679, + -0.011967500671744347, + -0.0003509220259729773, + -0.003789708483964205, + 0.007080771494656801, + 0.005990399047732353, + -0.0006407599430531263, + -0.019121406599879265, + -0.006565503776073456, + 0.01551785971969366, + 0.008836004883050919, + -0.02328343689441681, + 0.014852997846901417, + 0.03717903420329094, + 0.008942382410168648, + 0.0055150231346488, + -0.021514907479286194, + 0.016422070562839508, + 0.0027109712827950716, + -0.012193553149700165, + 0.005784292239695787, + -0.010996803641319275, + 0.012353120371699333, + 0.004444596823304892, + -0.025969477370381355, + -0.00817114394158125, + 0.0003424034803174436, + 0.04853486269712448, + -0.006169911473989487, + -0.0006951954565010965, + -0.016767797991633415, + 0.003686655079945922, + -0.013470087200403214, + -0.007074122782796621, + 0.04172668606042862, + 0.030849557369947433, + 0.023881813511252403, + -0.003189671318978071, + 0.011881068348884583, + -0.03127506747841835, + 0.010637778788805008, + 0.011887717060744762, + -0.006861367262899876, + -0.01978626847267151, + -0.009434379637241364, + 0.021581392735242844, + -0.02789757400751114, + -0.012605767697095871, + 0.02316376194357872, + 0.015876883640885353, + 0.017153417691588402, + 0.022299442440271378, + -0.012313228100538254, + 0.007832064293324947, + 0.005578184965997934, + -0.012592470273375511, + -0.00023311693803407252, + 0.020158590748906136, + -0.019427243620157242, + -0.0006395133095793426, + -0.02537110075354576, + -0.0008368939743377268, + 0.010877128690481186, + -0.012286634184420109, + 0.0032345494255423546, + -0.025131750851869583, + 0.011754745617508888, + -0.0037531412672251463, + 0.015836993232369423, + -0.018257087096571922, + 0.0026976740919053555, + -0.010644427500665188, + 0.02324354648590088, + 0.008862598799169064, + -0.0031265094876289368, + -0.01732628233730793, + 0.04132777079939842, + -0.012313228100538254, + -0.014148245565593243, + -0.03813643753528595, + -0.023868516087532043, + -0.011854474432766438, + 0.012346471659839153, + 0.008563411422073841, + 0.001057129236869514, + 0.016581637784838676, + -0.04380105435848236, + -0.024879103526473045, + 0.021408529952168465, + 0.019280973821878433, + 0.0036467635072767735, + -0.022685062140226364, + -0.0075860656797885895, + -0.010012809187173843, + -0.017033742740750313, + 0.03433343023061752, + -0.0061333440244197845, + -0.003570304485037923, + 0.012745387852191925, + 0.0013155939523130655, + 0.005913939792662859, + -0.03614185377955437, + 0.02776460163295269, + 0.036381203681230545, + -0.006462450604885817, + -0.022419117391109467, + -0.008377250283956528, + 0.009972916916012764, + 0.029705995693802834, + -0.004830216057598591, + 0.014892890118062496, + -0.0018998407758772373, + -0.01452056784182787, + 0.00813125167042017, + 0.003573628608137369, + 0.06116722524166107, + 0.002912091789767146, + -0.04419996961951256, + 0.02090323530137539, + -0.029705995693802834, + -0.04986458644270897, + -0.06925193965435028, + -0.023762136697769165, + 0.02776460163295269, + 0.010617832653224468, + 0.009766810573637486, + 0.015464670024812222, + -0.014121650718152523, + 0.0017469227313995361, + -0.019121406599879265, + 0.027259306982159615, + -0.010185672901570797, + -0.04366808012127876, + -0.004723838530480862, + -0.006209803279489279, + 0.016408773139119148, + -0.011462206020951271, + -0.010305347852408886, + -0.01269884780049324, + -0.008450385183095932, + 0.022312739863991737, + 0.016754500567913055, + 0.006173235829919577, + 0.0028356327675282955, + 0.001851638313382864, + -0.006981042213737965, + 0.0060602095909416676, + -0.037498168647289276, + 0.01854962669312954, + 0.00606685783714056, + 0.016767797991633415, + 0.006209803279489279, + -0.011315937153995037, + 0.014680134132504463, + -0.026860389858484268, + -0.01047821156680584, + -0.004627433605492115, + -0.03374835103750229, + -0.01858951710164547, + 0.011362477205693722, + -0.031700581312179565, + 0.026062557473778725, + 0.004341543186455965, + 0.006033614743500948, + -0.039811886847019196, + -0.01744595728814602, + 0.001050480641424656, + -0.008370601572096348, + -0.008410493843257427, + -0.0034971695858985186, + -0.011276044882833958, + -0.01615612581372261, + -0.019241081550717354, + 0.0001406596857123077, + 0.011681610718369484, + 0.02412116341292858, + -0.010624481365084648, + -0.0041620307601988316, + -0.03154101222753525, + -0.015916775912046432, + -0.00804482027888298, + -0.0027076471596956253, + -0.011954203248023987, + -0.00429500313475728, + 0.019081514328718185, + -0.008423791266977787, + -0.0080381715670228, + -0.018788976594805717, + 0.002094312570989132, + 0.01384240947663784, + -0.0003033429093193263, + -0.01324403379112482, + -0.00013079064956400543, + -0.01515883393585682, + 0.01282517146319151, + -0.01093031745404005, + -0.010125835426151752, + -0.029519835487008095, + -0.014972672797739506, + 0.02667422965168953, + -0.005265700165182352, + -0.012625712901353836, + -0.03015810251235962, + 0.02410786598920822, + -0.0163422878831625, + 0.006758313626050949, + 0.000799495552200824, + 0.005182592663913965, + -0.01626250334084034, + 0.009308055974543095, + -0.014281217940151691, + 0.010897073894739151, + 0.012073878198862076, + 0.019081514328718185, + -0.0023336627054959536, + -0.003124847309663892, + -0.014267920516431332, + 0.006475747562944889, + -0.002076028846204281, + -0.02091653272509575, + 0.0067051248624920845, + -0.012525984086096287, + -0.008430439047515392, + -0.07020933926105499, + 0.015836993232369423, + 0.017977844923734665, + -0.014095056802034378, + -0.01558434497565031, + 0.007366661448031664, + 0.009846593253314495, + 0.02678060717880726, + -0.005963804665952921, + -0.01840335689485073, + -0.011442260816693306, + -0.008995571173727512, + 0.0009316366631537676, + 0.013064521364867687, + -0.008403845131397247, + -0.0080381715670228, + 0.017964547500014305, + -0.009075354784727097, + -0.009015517309308052, + -0.004198598209768534, + 0.0062530189752578735, + 0.01619601808488369, + 0.014985970221459866, + 0.013908895663917065, + -0.03446640074253082, + 0.002930375514551997, + -0.003932653926312923, + 0.013975381851196289, + 0.00815119780600071, + -0.02792416885495186, + 0.0039060593117028475, + 0.01558434497565031, + -0.01954691857099533, + 0.017738495022058487, + -0.012752036564052105, + -0.03015810251235962, + 0.012007392011582851, + 0.04999755695462227, + -0.0017901386599987745, + 0.04478504881262779, + -0.017020445317029953, + -0.04287024587392807, + 0.007313472684472799, + -0.010757453739643097, + 0.009494217112660408, + -0.0006665232940576971, + 0.02550407312810421, + -0.001397039508447051, + 0.007991631515324116, + -0.011143072508275509, + 0.00579758919775486, + 0.010990154929459095, + -0.02315046451985836, + -0.01094361487776041, + 0.01745925471186638, + -0.014214731752872467, + 0.00916178710758686, + -0.0069876909255981445, + -0.007526228204369545, + -0.020291563123464584, + 0.04619455337524414, + -0.0004936594050377607, + 0.0011668313527479768, + 0.0064225587993860245, + 0.024014784023165703, + -0.000533551094122231, + -0.035264234989881516, + 0.00017972028581425548, + 0.027126334607601166, + 0.010564643889665604, + -0.022818034514784813, + -0.02760503441095352, + -0.00429832749068737, + 0.03917361795902252, + 0.012120419181883335, + -0.007433147635310888, + 0.014254623092710972, + -0.00318468501791358, + 0.007506282534450293, + 0.02885497361421585, + 0.023456301540136337, + 0.00044296373380348086, + -0.0010912034194916487, + 0.0045709204860031605, + 0.03337603062391281, + 0.022472307085990906, + -0.026262015104293823, + 0.00868973508477211, + -0.007838713005185127, + 0.012944846414029598, + 0.008995571173727512, + 0.006489044986665249, + 0.004278381355106831, + 0.004637406673282385, + 0.007233689539134502, + -0.00775892985984683, + -0.0016837609000504017, + -0.014334406703710556, + 0.01603645086288452, + 0.016501853242516518, + 0.012306580320000648, + 0.0011560273123905063, + 0.009992863051593304, + -0.031913336366415024, + -0.0369928739964962, + 0.00036484256270341575, + 0.004903350956737995, + -0.020092103630304337, + -0.008968977257609367, + 0.010292050428688526, + -0.0013139318907633424, + 0.014640242792665958, + -0.015477967448532581, + 0.002498215762898326, + -0.022818034514784813, + 0.050290096551179886, + 0.005667941179126501, + -0.014201434329152107, + -0.028269896283745766, + 0.028429463505744934, + 0.01853632926940918, + 0.011076587252318859, + 0.006007020361721516, + 0.016408773139119148, + 0.011748096905648708, + 0.023629166185855865, + 0.011349179781973362, + -0.018044332042336464, + -0.0023054061457514763, + -0.01723320037126541, + -0.006868015509098768, + 0.010518103837966919, + -0.010750805027782917, + -0.0006935332785360515, + -0.018044332042336464, + -0.008357305079698563, + 0.008949031122028828, + -0.013988678343594074, + 0.007838713005185127, + 0.10297369211912155, + 0.006602071225643158, + 0.003935977816581726, + 0.009088652208447456, + -0.014267920516431332, + -0.003709925338625908, + -0.009853241965174675, + 0.009460974484682083, + -0.04417337477207184, + -0.023575976490974426, + 0.007559471298009157, + -0.01975967362523079, + 0.006568828132003546, + -0.01854962669312954, + -0.020238373428583145, + 0.009647135622799397, + -0.015717318281531334, + 0.02765822410583496, + -0.005079539027065039, + 0.007566120009869337, + 0.018004439771175385, + -0.011781339533627033, + 0.00815784651786089, + 0.03571633994579315, + -0.010305347852408886, + -0.0060635339468717575, + 0.037604548037052155, + 0.002125893486663699, + -0.007213743403553963, + -0.017007147893309593, + 0.00019810785306617618, + 0.022778142243623734, + -0.0719645693898201, + -0.023429706692695618, + 0.021342042833566666, + -0.014759917743504047, + -0.01551785971969366, + -0.0099197281524539, + 0.005880696699023247, + -0.004919972736388445, + 0.012924901209771633, + 0.009633838199079037, + -0.014254623092710972, + -0.024480188265442848, + 0.003045064164325595, + -0.0196399986743927, + -0.016887472942471504, + -0.003982518333941698, + -0.019241081550717354 + ], + "metadata": { + "source": "INSPIRER_Schlussbericht.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 5, + "has_images": true, + "image_count": 29, + "detection_class_prob": 0.6591171622276306, + "coordinates": "CoordinatesMetadata(points=((1122.828857421875, 155.53517150878906), (1122.828857421875, 361.06524658203125), (1358.3359375, 361.06524658203125), (1358.3359375, 155.53517150878906)), system=)", + "links": [], + "last_modified": "2025-05-05T22:58:03", + "_known_field_names": "frozenset({'page_number', 'text_as_html', 'emphasized_text_contents', 'subject', 'data_source', 'links', 'coordinates', 'image_path', 'is_continuation', 'header_footer_type', 'sent_from', 'url', 'parent_id', 'detection_class_prob', 'emphasized_text_tags', 'last_modified', 'category_depth', 'page_name', 'attached_to_filename', 'bcc_recipient', 'orig_elements', 'languages', 'filetype', 'link_texts', 'file_directory', 'sent_to', 'key_value_pairs', 'image_base64', 'cc_recipient', 'link_urls', 'signature', 'image_mime_type', 'filename', 'detection_origin', 'table_as_cells', 'email_message_id', 'link_start_indexes'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "INSPIRER_Schlussbericht.pdf", + "parent_id": "1c51aaba3295e535d31a83c2392f0391", + "text_as_html": "
Projektlaufzeit01.08.2021 - 31.07.2024 (verl\u00e4ngert bis 31.10.2024)
F\u00f6rderkennzeichen165V8744
StichworteStadtentwicklung, Digitale B\u00fcrgerbeteiligung, Partizipation
und Akzeptanz, Augmented Reality, Extended Reality (XR),
AR-Tracking, Point Cloud Matching
ProjektleitungProf. Dr.-Ing. Volker Coors
Beteiligte ProfessorenProf. Dr.-Ing. Volker Coors
Gef\u00f6rderte Ma\u00dfnahmeForschungsprogramm zur Mensch-Technik-nteraktion
F\u00f6rderbereichTechnik zum Mensch bringen
FachhochschuleHochschule f\u00fcr Technik Stuttgart (HFT Stuttgart),
", + "id": "351a57f5-fe09-4ea6-8750-b2c5267a9700", + "processing_timestamp": "2025-05-05T23:07:23.860264", + "chunk_number": 0, + "total_chunks": 19, + "chunking_strategy": "hybrid", + "word_count": 632 + } +} \ No newline at end of file diff --git a/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000001.json b/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000001.json new file mode 100644 index 0000000000000000000000000000000000000000..2db331b843c0bef6f41148d4106b5c5056759999 --- /dev/null +++ b/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000001.json @@ -0,0 +1,1570 @@ +{ + "id": "2b86db2d-408b-1992-e1b5-8a9f00000001", + "content": "- 1. Entwicklung des AR-Tracking-Systems (AP6): Implementierung eines Point Cloud Matching-Verfahrens zur stabilen Platzierung virtueller Inhalte. - 2. Erstellung eines Stadtmodell-Servers (AP8): Verwaltung und Bereitstellung von 3D- Daten f\u00fcr AR-Anwendungen. - 3. Integration in ein reales Stadtplanungsszenario (AP4): Test in Fellbach, bei dem die AR-App f\u00fcr die Visualisierung eines Kreisverkehrs genutzt wurde. - 4. Evaluation und B\u00fcrgerbeteiligung (AP9): Durchf\u00fchrung von Workshops, um Feedback zur Anwendung zu sammeln. [IMAGE: ]\n\n\n## 1.4 Wissenschaftlicher und technischer Stand, an den angekn\u00fcpft wurde\n\nDie Nutzung von Augmented Reality (AR) f\u00fcr die Stadtplanung hat sich als vielversprechender Ansatz erwiesen, um B\u00fcrgerbeteiligung zu verbessern und Planungsprozesse interaktiver zu gestalten. Allerdings bestehen weiterhin technologische Herausforderungen, insbesondere bei der genauen Verankerung virtueller Inhalte im Au\u00dfenbereich, der effizienten Verarbeitung gro\u00dfer 3D-Datenmengen und der intuitiven Nutzung durch B\u00fcrger*innen. Bisherige AR-Anwendungen basieren h\u00e4ufig auf GPS-Tracking oder Markern, die jedoch in dichten st\u00e4dtischen Umgebungen ungenau oder fehleranf\u00e4llig sind. Das Projekt INSPIRER setzte daher auf ein Punktwolken-basiertes Matching-Verfahren, das eine pr\u00e4zisere Positionierung virtueller Inhalte erm\u00f6glicht. Dabei wurden moderne Algorithmen wie Fast Global Registration (FGR) f\u00fcr eine grobe Vorregistrierung und Generalized ICP (GICP) f\u00fcr eine exakte Feinanpassung der Punktwolken eingesetzt. Zus\u00e4tzlich wurde ein 3D-Stadtmodell-Server entwickelt, um Bestands- und Entwurfsdaten effizient f\u00fcr AR-Anwendungen bereitzustellen. Dabei wurden etablierte Formate wie 3D- Tiles genutzt, um eine optimierte Darstellung auf mobilen Endger\u00e4ten zu erm\u00f6glichen. Die Kombination aus pr\u00e4zisem AR-Tracking, effizienter 3D-Datenverarbeitung und interaktiver Visualisierung erweitert bestehende Stadtplanungstechnologien und zeigt das Potenzial immersiver L\u00f6sungen zur Verbesserung der B\u00fcrgerbeteiligung auf. - Angabe bekannter Konstruktionen, Verfahren und Schutzrechte, die f\u00fcr die Durchf\u00fchrung des Vorhabens benutzt wurden\n- \u2022 AR-Technologien: Unity Game Engine, MRTK SDK, XCode\n- \u2022 Punktwolkenverarbeitung: Open3D Library, Fast Global Registration (FGR), Generalized ICP (GICP)\n- \u2022 Hardware: Microsoft HoloLens 2, iPhone 12 Pro\n- \u2022 3D-Datenverarbeitung: 3D-Tiles, MeshLab, Blender\n\n## Angaben der verwendeten Fachliteratur sowie der benutzten Informations- und Dokumentationsdienste\n\n\n[IMAGE: ]\n\nEine Auflistung der verwendeten Fachliteratur, Informations- und Datenquellen befindet sich in Anhang 1. [IMAGE: 1.7_]\n\n\n## Zusammenarbeit mit anderen Stellen\n\nStadt Fellbach: Bereitstellung von Stadtplanungsdaten, Nutzung der AR-App zur B\u00fcrgerbeteiligung. Ver\u00f6ffentlichung und Open Access: Ergebnisse wurden auf Konferenzen pr\u00e4sentiert (z. B. SDSC, XRWeek, INTERGEO) und \u00f6ffentlich zug\u00e4nglich gemacht. ## Inhaltsverzeichnis\n\nInhaltsverzeichnis .............................................................................................................................................. 1\n\n| Verwendung | der | Zuwendung | und | des | erzielten | Ergebnisses | im | Einzelnen, | mit | II.1.1 | II.1.2 | II.1.3 | II.1.4 | II.1.5 | II.1.6 | II.1.7 | II.1.8 |\n|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|\n\nAbbildungsverzeichnis....................................................................................................................................... 1\nII. Eingehende Darstellungen ....................................................................................................................... 2\n\n[IMAGE: ]\n\nGegen\u00fcberstellung der vorgegebenen Ziele ............................................................................................ 2\n\n## Arbeitspaket 1: Entwurf Gesamtkonzept, Techn. Integration, Entw. des Demonstrators . 2\n\n\n## Arbeitspaket 2: Partizipative Softwaregestaltung und partizipative Evaluation ................ 2\n\nArbeitspaket 4: Transfer zur Stadtplanung ......................................................................... 2\nArbeitspaket 5: Pointcloud-Server ....................................................................................... 3\nArbeitspaket 6: AR-App ........................................................................................................ 4\nArbeitspaket 8: Stadtmodell-Server ..................................................................................... 7\nArbeitspaket 9: ELSI in der App-basierten Stadtplanung .................................................... 8\nArbeitspaket 11: Projektmanagement ................................................................................. 9\nWichtige Positionen des zahlenm\u00e4\u00dfigen Nachweises ................................................................ 9\n\n[IMAGE: 11.2]\n\nNotwendigkeit und Angemessenheit der geleisteten Arbeit ....................................................... 9\n\n[IMAGE: ]\n\nVoraussichtlicher Nutzen, insb.", + "embedding": [ + 0.019104288890957832, + 0.016223378479480743, + 0.013913339003920555, + -0.00856307614594698, + -9.277703065890819e-05, + 0.015174567699432373, + -0.027322188019752502, + -0.003597819712013006, + 0.012466246262192726, + -0.04043896123766899, + 0.003687433199957013, + 0.00889497809112072, + -0.01663493737578392, + 0.0031580491922795773, + -0.012970737181603909, + 0.0023498674854636192, + 0.039536189287900925, + -0.01084656361490488, + -0.010215949267148972, + -0.0009957065340131521, + -0.018307724967598915, + 0.020723972469568253, + 0.025795437395572662, + -0.004454127047210932, + -0.01586492359638214, + 0.02199847623705864, + 0.024122649803757668, + -0.02610078640282154, + 0.013136688619852066, + -0.0031829418148845434, + 0.007640388328582048, + -0.016688041388988495, + -0.00793910026550293, + 0.004165372345596552, + -0.024932492524385452, + -0.002112557413056493, + -0.01247288379818201, + -0.009731371887028217, + 0.011324502527713776, + 0.009266708977520466, + 0.02016637660562992, + -0.008582990616559982, + -0.0020428579300642014, + -0.01267202477902174, + 0.0029024844989180565, + 0.01210115384310484, + -0.024799730628728867, + 0.01301056519150734, + -0.013110135681927204, + 0.0007936611073091626, + 0.015599402599036694, + 0.028809109702706337, + -0.025742333382368088, + -0.010893029160797596, + -0.013003927655518055, + -0.01386023499071598, + -0.03704028204083443, + 0.03717304393649101, + -0.008934807032346725, + -0.01578526757657528, + -0.006545111071318388, + 0.012406503781676292, + -0.022330379113554955, + 0.010428366251289845, + -0.03260606899857521, + -0.003491610987111926, + -0.036774761974811554, + 0.013846958987414837, + -0.007162448950111866, + -0.009479125961661339, + 0.056556131690740585, + 0.018400656059384346, + 0.026140615344047546, + -0.031517431139945984, + 0.03403988853096962, + -0.00264360080473125, + 0.034863006323575974, + -0.026844248175621033, + -0.0061202761717140675, + 0.011284674517810345, + -0.008835235610604286, + -0.014895769767463207, + -0.004065801855176687, + 0.03162363916635513, + 0.016688041388988495, + 0.022423312067985535, + 0.005390091333538294, + 0.014616971835494041, + 0.005735269747674465, + 6.316513463389128e-05, + -0.0074545228853821754, + 0.0350223183631897, + -0.0009807709138840437, + 0.008503333665430546, + -0.011317864060401917, + 0.015254223719239235, + 0.0015665782848373055, + 0.017099600285291672, + -0.011357692070305347, + -0.018413932994008064, + -0.012486159801483154, + -0.0025921559426933527, + -0.023777471855282784, + -0.009260070510208607, + -0.019276877865195274, + -0.01701994426548481, + -0.0016868928214535117, + 0.011955116875469685, + 0.019489295780658722, + -0.007494351360946894, + -0.028570139780640602, + 0.017458055168390274, + -0.008310830220580101, + 0.0030734140891581774, + -0.001487751491367817, + -0.03863341361284256, + 0.02132139541208744, + -0.008310830220580101, + -0.01386023499071598, + -0.010521299205720425, + 0.03488955646753311, + 0.02132139541208744, + 0.009266708977520466, + -0.002134131034836173, + 0.026140615344047546, + 0.007129258941859007, + -0.007348314393311739, + -0.009386193938553333, + -0.00822453573346138, + -0.03749167174100876, + -0.009120672009885311, + -0.012366674840450287, + 0.01970171369612217, + 0.021679850295186043, + -0.0053635393269360065, + -0.005180993117392063, + -0.012711853720247746, + -0.01338893361389637, + -0.043837640434503555, + -0.05127224698662758, + 0.004892237950116396, + 0.010202673263847828, + -0.018599798902869225, + -0.027561156079173088, + -0.007076154462993145, + 0.020219480618834496, + 0.0050581893883645535, + 0.009910599328577518, + 0.01643579639494419, + -0.007275295909494162, + -0.008403763175010681, + -0.028835661709308624, + 0.002836104016751051, + -0.0015292392345145345, + -0.005439876578748226, + -0.029393257573246956, + -0.008144879713654518, + 0.02056465856730938, + -0.000494119361974299, + -0.017829785123467445, + -0.0011882097460329533, + 0.0002089946501655504, + -0.009346364997327328, + 0.006448859348893166, + 0.027587709948420525, + 0.0071823629550635815, + -0.0024062907323241234, + 0.010063273832201958, + -0.005549404304474592, + -0.007381504401564598, + -0.006186656653881073, + 0.002114216797053814, + -0.024680245667696, + 0.018613073974847794, + -0.01577199064195156, + -0.00918705202639103, + 0.0013475228333845735, + 0.0021258334163576365, + -0.030003957450389862, + -0.030455343425273895, + 0.0007637898670509458, + -0.019436191767454147, + 0.022250721231102943, + 0.009585334919393063, + -0.010388538241386414, + 0.0021805972792208195, + 0.02437489666044712, + 0.028331169858574867, + -0.00562242278829217, + 0.0017856337362900376, + 0.02849048376083374, + 0.000734333589207381, + 0.01070716418325901, + -0.027215978130698204, + -0.6194091439247131, + -0.0026734720449894667, + 0.027375292032957077, + -0.014882493764162064, + -0.0006895267870277166, + 0.03929721936583519, + 0.012579092755913734, + -0.00032235999242402613, + -0.002527435077354312, + 0.05490989610552788, + -0.004686458967626095, + -0.008622818626463413, + -0.002475990215316415, + -0.01477628480643034, + -0.015373708680272102, + -0.026353033259510994, + 0.012579092755913734, + -0.01578526757657528, + 0.005648975260555744, + 0.02341901697218418, + -0.041182421147823334, + 0.0042549860663712025, + 0.007580645848065615, + -0.013003927655518055, + -0.012751681730151176, + 0.01837410405278206, + 0.003171325195580721, + -0.004185286350548267, + 0.0011616576230153441, + 0.013793854974210262, + -0.015652507543563843, + 0.03311056271195412, + 0.0008646051865071058, + 0.030269479379057884, + 0.04266934469342232, + 0.01740494929254055, + -0.021175358444452286, + 0.03202192112803459, + 0.008881702087819576, + 0.01759081520140171, + 0.00038521396345458925, + -0.001915075583383441, + -0.0018105263588950038, + 0.008536524139344692, + 0.012599006295204163, + 0.001830440480262041, + 0.030242927372455597, + -0.01988757774233818, + 0.0010529597057029605, + -0.027614261955022812, + 0.002497563837096095, + -0.0013375658309087157, + 0.00032733852276578546, + -0.005015041679143906, + 0.02181261032819748, + 0.013793854974210262, + 0.010348710231482983, + 0.0015541319735348225, + -0.0022519563790410757, + -0.010302243754267693, + -0.010853201150894165, + -0.018613073974847794, + -0.021666573360562325, + -0.039350323379039764, + -0.03098638728260994, + 0.04553698003292084, + -0.012791509740054607, + -0.014696628786623478, + 0.005410005338490009, + -0.026937181130051613, + 0.012917633168399334, + 0.03186260908842087, + -0.010547851212322712, + -0.022595901042222977, + 0.01310349814593792, + 0.02398988977074623, + 0.015479917638003826, + -0.017338570207357407, + -0.0004435042792465538, + 0.013408848084509373, + 0.009518954902887344, + -0.01664821244776249, + -0.0020113273058086634, + 0.020976217463612556, + 0.003690752200782299, + -0.009784475900232792, + -0.036774761974811554, + -0.021347947418689728, + 0.01481611281633377, + 0.010288967750966549, + 0.022330379113554955, + 0.0073682283982634544, + -0.03778374567627907, + -0.009133948013186455, + 0.008124965243041515, + 0.04407661035656929, + -0.012572454288601875, + 0.03759787976741791, + -0.008304192684590816, + -0.04189933091402054, + -0.01424524188041687, + -0.00016854408022481948, + 0.023578330874443054, + 0.012791509740054607, + 0.029950853437185287, + 0.009784475900232792, + -0.026326481252908707, + -0.0008546481258235872, + 0.06494662165641785, + -0.029818091541528702, + -0.023060563951730728, + -0.011205017566680908, + -0.016887182369828224, + -0.0021590236574411392, + 0.012897718697786331, + -0.022210894152522087, + 0.008974635042250156, + -0.013621265068650246, + 0.008337383158504963, + -0.0070960684679448605, + 0.015041806735098362, + -0.02121518738567829, + 0.028835661709308624, + -0.019436191767454147, + -0.020631039515137672, + 0.0048092626966536045, + -0.006657957565039396, + -0.01970171369612217, + -0.014404554851353168, + -0.011490453034639359, + 0.01786961406469345, + -0.020803628489375114, + 0.03507542237639427, + -0.0033771046437323093, + 0.045961812138557434, + -0.004819219466298819, + 0.012287018820643425, + -0.0010073231533169746, + 0.011636490002274513, + -0.029579121619462967, + -0.027587709948420525, + 0.007062878459692001, + 0.01951584778726101, + -0.023299532011151314, + -0.009844218380749226, + -0.031411223113536835, + -0.005094698630273342, + 0.01788288913667202, + 0.015148015692830086, + 0.004095673095434904, + -0.03228744491934776, + -0.019675161689519882, + 0.00937291793525219, + 0.036084406077861786, + 0.014391278848052025, + -0.0012803126592189074, + -0.017537711188197136, + -0.027800126001238823, + -0.009067567065358162, + -0.027322188019752502, + 0.013568161055445671, + 0.00851660966873169, + -0.02552991546690464, + -0.029685331508517265, + 0.015333880670368671, + -0.014019547961652279, + 0.010262415744364262, + 0.04224450886249542, + -0.020033614709973335, + -0.03411954268813133, + 0.01272512972354889, + -0.006790718529373407, + -0.014139032922685146, + 0.022529520094394684, + -0.02973843552172184, + 0.01157674752175808, + -0.03674820810556412, + -0.0185466930270195, + -0.0023448888678103685, + -0.011563471518456936, + -0.0016711275093257427, + 0.01845376193523407, + -0.0017424864927306771, + 0.0018901829607784748, + 0.005970919970422983, + 0.004172010347247124, + 0.015546297654509544, + 0.0074545228853821754, + -0.014643523842096329, + 0.0202593095600605, + 0.01529405266046524, + 0.042695894837379456, + -0.004948661662638187, + 0.023272980004549026, + -0.00975128635764122, + 0.0073682283982634544, + -0.01615699753165245, + 0.0036144147161394358, + -0.010879753157496452, + 0.02303401194512844, + 0.03470369055867195, + 0.013594713062047958, + 0.02515818551182747, + 0.011437349021434784, + 0.017935993149876595, + -0.021626746281981468, + 0.008377211168408394, + -0.011364330537617207, + 0.01940963976085186, + -0.000589541217777878, + 0.003048521466553211, + -0.011570109985768795, + -0.016980115324258804, + -0.0005613295361399651, + 0.020617762580513954, + 0.012194085866212845, + -0.0047627962194383144, + 0.010461556725203991, + -0.017338570207357407, + 0.023073839023709297, + -0.0017076367512345314, + 0.0021225144155323505, + 0.028623243793845177, + -0.008397124707698822, + -0.003166346810758114, + -0.005373496096581221, + 0.022144513204693794, + 0.02742839604616165, + 0.019622057676315308, + -0.016382692381739616, + -0.012240552343428135, + -0.0006687829154543579, + 0.0013881808845326304, + 7.244801963679492e-05, + 0.004483998287469149, + 0.015639230608940125, + 0.023365912958979607, + -0.0060439384542405605, + 0.02896842174232006, + 0.01166968047618866, + 0.013754026032984257, + 0.02716287411749363, + -0.001623831456527114, + 0.004148777108639479, + 0.012121067382395267, + -0.004795986693352461, + 0.03215468302369118, + 0.03297780081629753, + 0.0048092626966536045, + 0.014085927978157997, + -0.006661276798695326, + 0.0031696658115833998, + -0.01664821244776249, + 0.003697390202432871, + -0.0005364369135349989, + -0.005741907749325037, + 0.023087115958333015, + -0.007872719317674637, + 0.03125190734863281, + 0.0348098985850811, + 0.008264364674687386, + 0.02102932147681713, + 0.008124965243041515, + 0.006150147411972284, + -0.009333088994026184, + 0.00851660966873169, + -0.022064857184886932, + -0.03496921434998512, + -0.007952376268804073, + -0.007215553428977728, + 0.02104259841144085, + -0.027667365968227386, + 0.0035082059912383556, + -0.00807186122983694, + 0.007248743437230587, + -0.0066513195633888245, + 0.014378001913428307, + 0.004855728708207607, + 0.03385402262210846, + 0.02276849001646042, + -0.018028926104307175, + -0.029419809579849243, + -0.012572454288601875, + 0.02284814603626728, + 0.002358164871111512, + -0.002379738725721836, + -0.016847355291247368, + 0.010229225270450115, + -0.0049818516708910465, + -0.029419809579849243, + -0.024985596537590027, + -0.009811028838157654, + -0.0006297843647189438, + -0.01415230892598629, + -0.0001313087996095419, + -0.004019335377961397, + 0.0311722531914711, + -0.004557016771286726, + -0.01721908524632454, + -0.006950031500309706, + -0.0054266005754470825, + 0.0012670365395024419, + 0.0009467509808018804, + -0.026233548298478127, + 0.02554319240152836, + -0.033907126635313034, + 0.004815900698304176, + -0.02372436784207821, + 0.004357875790446997, + -0.032181236892938614, + 0.015373708680272102, + 0.010673973709344864, + 0.0012969077797606587, + 0.0220781322568655, + 0.004440851043909788, + 0.0007770659867674112, + -0.013495142571628094, + -0.010395175777375698, + 0.03836789354681969, + 0.014550591818988323, + -0.019861025735735893, + -0.02886221371591091, + -0.005147802643477917, + 0.011404158547520638, + 0.036588896065950394, + 0.023020735010504723, + 0.0008787109982222319, + 0.006319417618215084, + -0.018334276974201202, + -0.016210101544857025, + -0.017458055168390274, + -0.035048868507146835, + 0.004759477451443672, + 0.012924270704388618, + 3.5109027521684766e-05, + 0.006418988108634949, + 0.03125190734863281, + -0.028092199936509132, + 0.00927334651350975, + 0.0034551017452031374, + 0.00823117420077324, + 0.003304086159914732, + 0.005562680307775736, + 0.017073048278689384, + 0.0125193502753973, + 0.0025324136950075626, + 0.007839529775083065, + 0.0393768735229969, + 0.019077736884355545, + -0.016024237498641014, + 0.04885600134730339, + 0.008821959607303143, + -0.01644907146692276, + -0.029871195554733276, + 0.016395967453718185, + 0.008715751580893993, + 0.0026767910458147526, + 0.023857127875089645, + -0.007102706469595432, + 0.01242641732096672, + 0.013249535113573074, + -6.0260990721872076e-05, + 0.028171855956315994, + 0.002305060625076294, + 0.00995042733848095, + 0.018865318968892097, + 0.0008828598074615002, + -0.012446331791579723, + 0.008543161675333977, + -0.006667914800345898, + -0.009173776023089886, + 0.005552723538130522, + -0.014948873780667782, + -0.017378397285938263, + -0.01176261343061924, + -0.005038274917751551, + -0.01825461909174919, + -0.013203068636357784, + 0.0019283517030999064, + -0.0037040282040834427, + 0.014842665754258633, + -0.007341676391661167, + 0.009114033542573452, + -0.027295636013150215, + -0.033535394817590714, + -0.019568951800465584, + -0.01267202477902174, + -0.016223378479480743, + -0.02859669178724289, + -0.026153892278671265, + -0.01777668111026287, + -0.00676416652277112, + -0.021958647295832634, + 0.005585913546383381, + 0.005250692367553711, + -0.012167533859610558, + -0.02687080018222332, + 0.002663515042513609, + 0.02122846245765686, + 0.005034956149756908, + 0.01940963976085186, + -0.01238658931106329, + -0.009757923893630505, + 0.003966230899095535, + -0.0014188818167895079, + -0.025397155433893204, + 0.011530281975865364, + -0.030641209334135056, + -0.010003531351685524, + -0.011351054534316063, + -0.007275295909494162, + -0.01578526757657528, + -0.012745043262839317, + 0.019183946773409843, + -0.0014802836813032627, + -0.006189975421875715, + 0.019064461812376976, + 0.009870770387351513, + -0.000492459861561656, + 0.0037305804435163736, + -0.014563867822289467, + 0.003926402889192104, + 0.012791509740054607, + -0.018798939883708954, + -0.003996102139353752, + -0.0137673020362854, + -0.012837976217269897, + 0.0005152781377546489, + 0.025383878499269485, + 0.009678267873823643, + -0.013269448652863503, + 0.0031480921898037195, + -0.016303034499287605, + 0.0013807130744680762, + 0.006312779616564512, + 0.0007028028485365212, + 0.004152096342295408, + -0.009153862483799458, + 0.022927802056074142, + 0.029287047684192657, + -0.001276163849979639, + -0.00609372416511178, + 0.053874362260103226, + -0.00697658397257328, + -0.009877408854663372, + -0.026353033259510994, + 0.04548387601971626, + 0.024321790784597397, + 0.00793246179819107, + 0.020020339637994766, + 0.018706006929278374, + 0.02878255769610405, + -0.02726908214390278, + 0.00793910026550293, + -0.024069545790553093, + 0.0041686915792524815, + -0.009007825516164303, + -0.003687433199957013, + -0.020431898534297943, + -0.003216132055968046, + -0.003217791672796011, + 0.011928563937544823, + 0.003860022407025099, + 0.0028692942578345537, + -0.014895769767463207, + 0.016621660441160202, + 0.026074234396219254, + 0.010833286680281162, + -0.002723257290199399, + -0.03260606899857521, + -0.013607989065349102, + 0.023737642914056778, + -0.03555336222052574, + 0.03393368050456047, + -0.00743460888043046, + -0.0030900093261152506, + -0.02295435406267643, + 0.006365883629769087, + -0.015001978725194931, + -0.027016837149858475, + 0.003055159468203783, + -0.019861025735735893, + 0.03417264670133591, + 0.01099923811852932, + 0.029472913593053818, + 0.011556833982467651, + 0.04216485098004341, + 0.00533034885302186, + -0.019821198657155037, + 0.0003076318243984133, + -0.008669285103678703, + -0.011676318943500519, + -0.029605673626065254, + 0.02094966545701027, + 0.010342071764171124, + 0.01769702322781086, + 0.007441246882081032, + -0.0024577355943620205, + 0.009764562360942364, + 0.023644711822271347, + -0.03496921434998512, + -0.0016960201319307089, + -0.011696232482790947, + -0.033402636647224426, + -0.025649400427937508, + 0.009206966497004032, + 0.018586521968245506, + 0.001099425950087607, + -0.03220778703689575, + 0.008682561106979847, + 0.019157392904162407, + -0.004188605584204197, + 0.004321366548538208, + -0.0070429639890789986, + 0.026339756324887276, + -0.02590164542198181, + 0.02102932147681713, + 0.01721908524632454, + 0.009930512867867947, + -0.017165981233119965, + 0.00024125140043906868, + -0.028171855956315994, + 0.013382296077907085, + 0.040784139186143875, + 0.0037338994443416595, + 0.005001765675842762, + 0.0137673020362854, + -0.004215157590806484, + -0.017537711188197136, + 0.017165981233119965, + 0.033986784517765045, + -0.030375687405467033, + 0.005071465391665697, + -0.02226399816572666, + 0.012306932359933853, + -0.021175358444452286, + -0.012930909171700478, + 0.003916445653885603, + 0.02456076070666313, + 0.010395175777375698, + 0.009684905409812927, + 0.040306199342012405, + 0.0012612282298505306, + -0.012997289188206196, + 0.022901250049471855, + -0.006123595405369997, + 0.032845038920640945, + 0.011065619066357613, + 0.02790633589029312, + 0.005884625483304262, + -0.021082425490021706, + -0.027959439903497696, + -0.062025878578424454, + 0.011583385989069939, + 0.006730976048856974, + 0.0221843421459198, + 0.01296409871429205, + -0.009552144445478916, + -0.014895769767463207, + 0.022702109068632126, + 0.009299899451434612, + -0.02870289981365204, + -0.01931670680642128, + 0.03701373189687729, + 0.021082425490021706, + 0.016369415447115898, + -0.003468377748504281, + -0.01334246713668108, + -0.02401644177734852, + 0.0063791596330702305, + -0.006983221974223852, + 0.0172987412661314, + -0.009153862483799458, + 0.005592551548033953, + -0.014789560809731483, + 0.02620699629187584, + 0.0010189396562054753, + 0.013090222142636776, + 0.019861025735735893, + -0.03244675695896149, + 0.020405346527695656, + -0.0068703750148415565, + -0.010348710231482983, + 0.01071380265057087, + 0.0032924695406109095, + 0.025091804563999176, + -0.003524801228195429, + -0.014510762877762318, + 0.00874230358749628, + -0.015639230608940125, + 0.002250296762213111, + -0.009664991870522499, + 0.013289363123476505, + 0.025025423616170883, + -0.01749788224697113, + -0.0047229682095348835, + -0.01836082898080349, + -0.02169312722980976, + 0.021878991276025772, + 0.0016047470271587372, + 0.0047860294580459595, + -0.015665782615542412, + -0.007527541369199753, + 0.0017358483746647835, + 0.01732529327273369, + -0.00420520082116127, + -0.010215949267148972, + -0.015652507543563843, + 0.007328399922698736, + -0.011862183921039104, + -0.003604457713663578, + 0.022874698042869568, + 0.018294448032975197, + -0.045855604112148285, + -0.020246032625436783, + 0.03329642489552498, + -0.016395967453718185, + 0.011609937995672226, + 0.005861392244696617, + 0.003949636127799749, + -0.01788288913667202, + 0.015825096517801285, + -0.0350223183631897, + -0.002781340153887868, + 0.04638664796948433, + -0.010461556725203991, + -0.006007429212331772, + 0.023936785757541656, + -0.006289546377956867, + -0.01959550380706787, + 0.03260606899857521, + -0.015944581478834152, + -0.03465058654546738, + -0.008642733097076416, + -0.0012031453661620617, + 0.004676501732319593, + -0.015811819583177567, + 0.009133948013186455, + 0.03172984719276428, + -0.007288571912795305, + -0.012970737181603909, + 0.007208915427327156, + -0.005715355277061462, + -0.005851435475051403, + 3.2801268389448524e-05, + -0.008961359038949013, + 0.013607989065349102, + -0.027800126001238823, + 0.024042993783950806, + 0.010461556725203991, + 0.0007223021239042282, + 0.0006667085108347237, + -0.02936670556664467, + -0.03411954268813133, + 0.0023482078686356544, + 0.004228433594107628, + -0.03234054893255234, + -0.0024361619725823402, + -0.009120672009885311, + -0.02170640230178833, + -0.015519745647907257, + 0.006890289019793272, + 0.0023233152460306883, + 0.004968575667589903, + 0.01558612659573555, + 0.002821168629452586, + -0.008105050772428513, + 0.008018756285309792, + -0.004145458340644836, + -0.010056636296212673, + 0.008994548581540585, + 0.0015383665449917316, + -0.036376480013132095, + 0.011955116875469685, + -0.013554885052144527, + 0.02599457837641239, + 0.024056270718574524, + -0.03942997753620148, + -0.010727078653872013, + -0.01655528135597706, + -0.04027964919805527, + -0.01885204389691353, + -0.028039095923304558, + -0.0012695258483290672, + 0.006040619686245918, + 0.014630247838795185, + 0.004792667459696531, + 0.027481500059366226, + 0.01778995618224144, + 0.008576352149248123, + -0.018493589013814926, + -0.018042203038930893, + 0.0007754064863547683, + -0.02984464354813099, + 0.019489295780658722, + 0.007262019440531731, + -0.05323711037635803, + -0.0051677171140909195, + 0.017365122213959694, + 0.0009085822384804487, + 0.013315915130078793, + 0.01028232928365469, + -0.007905909791588783, + -0.010607593692839146, + 0.008509972132742405, + 0.018480313941836357, + -0.014298345893621445, + 0.00169104163069278, + 0.02344556897878647, + -0.017152704298496246, + -0.009797751903533936, + 0.01577199064195156, + 0.0014611993683502078, + -0.02599457837641239, + 0.002603772561997175, + 0.012333485297858715, + -0.026246823370456696, + 0.010760268196463585, + 0.02830461785197258, + -0.02611406333744526, + -0.006100362166762352, + -0.011112084612250328, + 0.03547370433807373, + 0.002434502588585019, + -0.0045138695277273655, + 0.004152096342295408, + 0.013063670136034489, + 0.006040619686245918, + -0.0030136718414723873, + 0.01305703166872263, + -0.030667761340737343, + 0.011609937995672226, + 0.008124965243041515, + -0.009120672009885311, + 0.00823117420077324, + -0.0202593095600605, + -0.01798909716308117, + -0.011503729037940502, + 0.0024544165935367346, + 0.007301847916096449, + -0.010441642254590988, + -0.005811606999486685, + 0.014470934867858887, + 0.0011533601209521294, + 0.006936755497008562, + 0.009353003464639187, + -0.004191924352198839, + -0.014670075848698616, + -0.027189426124095917, + -0.004361194558441639, + -0.0035380772314965725, + -0.011311226524412632, + 0.004082396626472473, + -0.013621265068650246, + -0.03884582966566086, + -0.01310349814593792, + 0.012685300782322884, + -0.0040923538617789745, + 0.001968179829418659, + 0.0073682283982634544, + 0.1926625818014145, + 0.010096464306116104, + -0.01061423122882843, + 0.01558612659573555, + -0.015625953674316406, + -0.010401814244687557, + 0.018108582124114037, + 0.010348710231482983, + -0.00878877006471157, + 0.007773148827254772, + -0.008981272578239441, + 0.00520754512399435, + 0.007215553428977728, + 0.00344182550907135, + 0.019635332748293877, + -0.0069566695019602776, + -0.029791539534926414, + -0.018891872838139534, + -0.011171827092766762, + 0.025198012590408325, + 0.039244115352630615, + -0.019582228735089302, + -0.01218744833022356, + -0.022715384140610695, + 0.014789560809731483, + -0.007016411982476711, + -0.016515452414751053, + -0.014590419828891754, + 0.022635728120803833, + -0.0012828019680455327, + -0.01751115918159485, + -0.0015740460949018598, + 0.007547455374151468, + -0.001526750042103231, + -0.008928168565034866, + -0.010275691747665405, + 0.014019547961652279, + 0.012997289188206196, + 0.019582228735089302, + 0.015187843702733517, + -0.02076379954814911, + -0.02429523877799511, + 0.000900284678209573, + -0.030667761340737343, + 0.005795012228190899, + 0.022728661075234413, + -0.006896927487105131, + 0.013926615007221699, + 0.0032675769180059433, + -0.02304728701710701, + -0.026047682389616966, + -0.010946134105324745, + 0.023286256939172745, + 0.02619371935725212, + -0.015055082738399506, + 0.00903437752276659, + 0.006644681561738253, + 0.0015176227316260338, + -0.005868030712008476, + 0.019011355936527252, + -0.022821594029664993, + 0.009830942377448082, + 0.01209451537579298, + 0.024122649803757668, + -0.03664200007915497, + 0.004902195185422897, + -0.017949270084500313, + 0.00499844690784812, + 0.0019466063240543008, + -0.013833682984113693, + -0.0006434753304347396, + -0.02130812034010887, + -0.024905938655138016, + 0.01748460717499256, + -0.01751115918159485, + -0.03940342739224434, + 0.014099204912781715, + 0.02028586156666279, + 0.024919215589761734, + 0.03348229080438614, + -0.0016636596992611885, + 0.006634724326431751, + 0.019290154799818993, + -0.025583019480109215, + -0.012134343385696411, + -0.036110956221818924, + 0.0375182218849659, + -0.0065019638277590275, + -0.011258121579885483, + -0.01597113348543644, + -0.037916503846645355, + -0.020989494398236275, + 0.004012697376310825, + -0.03334953263401985, + 0.016090618446469307, + 0.0029871196020394564, + 0.03191571310162544, + -0.0009674948523752391, + -0.005011722911149263, + 0.005483023822307587, + -0.004261624068021774, + 0.060379642993211746, + 0.02830461785197258, + -0.01885204389691353, + -0.026830971240997314, + 0.00654842983931303, + -0.0027995947748422623, + 0.02849048376083374, + 0.011902011930942535, + 0.005506257060915232, + -0.0011002557585015893, + -0.040306199342012405, + 0.005200907122343779, + 0.0026817696634680033, + 0.006777442526072264, + 0.03711993992328644, + -0.0014943896094337106, + -0.009173776023089886, + 0.0014363066293299198, + -0.006989859975874424, + -0.01577199064195156, + 0.005569318775087595, + -0.011503729037940502, + 0.014802836813032627, + 0.014391278848052025, + -0.03465058654546738, + -0.015028530731797218, + -0.012778233736753464, + -0.008828598074615002, + -0.011736061424016953, + 0.014962149783968925, + -0.012831337749958038, + 0.021493984386324883, + 0.005177673883736134, + 0.0062298038974404335, + -0.006332693621516228, + 0.0070960684679448605, + -0.033243320882320404, + 0.0004854069266002625, + 0.018135134130716324, + 0.022529520094394684, + 0.011078895069658756, + 0.023193323984742165, + 0.007905909791588783, + -0.006176699418574572, + 0.007660302333533764, + -0.008417039178311825, + 0.014855941757559776, + -0.018812214955687523, + -0.007115982472896576, + 0.0013782237656414509, + -0.016688041388988495, + -0.0023614841047674417, + -0.024228859692811966, + 0.030269479379057884, + 0.005373496096581221, + -0.00654842983931303, + -0.015174567699432373, + 0.0024361619725823402, + -0.005818245001137257, + -0.025490086525678635, + -0.012778233736753464, + 0.005443195812404156, + -0.0015624294755980372, + -0.0250387005507946, + 0.00377704668790102, + -0.16802215576171875, + 0.003554672235623002, + 0.021560365334153175, + -0.04582905396819115, + 0.002049495931714773, + 0.005967601202428341, + 0.009333088994026184, + 0.001910097082145512, + -0.027295636013150215, + 0.0008961358689703047, + 0.017139429226517677, + -0.014802836813032627, + -0.01634286344051361, + -0.008629457093775272, + 0.0015118144219741225, + 0.01209451537579298, + -0.028543587774038315, + 0.026127340272068977, + 0.03058810532093048, + 0.006123595405369997, + 0.018121859058737755, + -0.02141432836651802, + 0.0006343480199575424, + 0.0005509576294571161, + -0.00823117420077324, + 0.018002374097704887, + -0.021082425490021706, + 0.015559573657810688, + -0.001203975174576044, + -0.02371109090745449, + 0.009333088994026184, + -0.011596661992371082, + 0.051298800855875015, + -0.01682080328464508, + -0.0038135559298098087, + -0.01352833304554224, + -0.00945921242237091, + 0.017099600285291672, + -0.011676318943500519, + 0.04296141862869263, + 0.02522456645965576, + 0.027879783883690834, + 0.004016016144305468, + 0.0016868928214535117, + -0.029658779501914978, + 0.03220778703689575, + 0.030641209334135056, + -0.015240947715938091, + -0.007242105435580015, + -0.013309277594089508, + 0.0012363356072455645, + -0.02420230768620968, + -0.010839925147593021, + 0.01836082898080349, + 0.000827681040391326, + 0.03080052137374878, + 0.014922321774065495, + 0.00760055985301733, + -0.0009044334292411804, + -0.0028809108771383762, + -0.01606406457722187, + 0.010069912299513817, + 0.009359641000628471, + -0.019276877865195274, + -0.012897718697786331, + -0.03080052137374878, + 0.006950031500309706, + 0.03242020308971405, + -0.010295605286955833, + 0.002766404766589403, + -0.01883876696228981, + -0.019157392904162407, + 0.003597819712013006, + -0.0017341888742521405, + -0.011390882544219494, + 0.016887182369828224, + -0.007135896943509579, + 0.019648609682917595, + 0.025861818343400955, + -0.0037704086862504482, + -0.01971498876810074, + 0.03977515548467636, + 0.00174414599314332, + -0.026552174240350723, + -0.019661884754896164, + -0.02418903075158596, + -0.017896166071295738, + 0.028357721865177155, + 0.0013981378870084882, + 0.011596661992371082, + 0.015055082738399506, + -0.03701373189687729, + -0.030428791418671608, + 0.01882549189031124, + 0.009306536987423897, + 0.019290154799818993, + -0.008589628152549267, + -0.0037637706845998764, + -0.010096464306116104, + -0.027561156079173088, + 0.03069431334733963, + -0.002243658760562539, + 0.004268262069672346, + 0.0028477206360548735, + 0.02284814603626728, + -0.008948083035647869, + 0.01205468736588955, + 0.02121518738567829, + 0.04160725697875023, + 0.0023548458702862263, + -0.0310660433024168, + -0.01634286344051361, + 0.014072651974856853, + 0.00482917670160532, + -0.01210115384310484, + 0.013793854974210262, + 0.01891842484474182, + -0.014431106857955456, + 0.0071823629550635815, + -0.0016769357025623322, + 0.05937066301703453, + -0.012738405726850033, + -0.03319021686911583, + 0.01176261343061924, + -0.01646234840154648, + -0.028994973748922348, + -0.060007914900779724, + -0.006073809694498777, + 0.019144117832183838, + 0.026512345299124718, + -0.009791114367544651, + 0.030561553314328194, + -0.000519012042786926, + 0.004460765048861504, + -0.00764702633023262, + 0.037996161729097366, + -0.022609176114201546, + -0.033615052700042725, + -0.0070562404580414295, + -0.0029638863634318113, + 0.0005468088202178478, + -0.013043755665421486, + -0.016130445525050163, + -0.016130445525050163, + -0.00394631689414382, + 0.03661544993519783, + 0.016581833362579346, + 0.0020445173140615225, + 0.012160895392298698, + -0.015307328663766384, + -0.022808317095041275, + -0.004148777108639479, + -0.03348229080438614, + 0.019476020708680153, + 0.012837976217269897, + 0.0006277100183069706, + 0.016873907297849655, + -0.007580645848065615, + 0.020989494398236275, + -0.03212812915444374, + 0.005492981057614088, + -0.012320209294557571, + -0.009094120003283024, + -0.012134343385696411, + 0.015825096517801285, + -0.029313599690794945, + 0.013302639126777649, + 0.005977558437734842, + 0.006060533691197634, + -0.04272244870662689, + -0.005658932030200958, + -0.00860290415585041, + -0.019396362826228142, + 0.015134739689528942, + -0.006107000168412924, + -0.008928168565034866, + -0.030535001307725906, + -0.02936670556664467, + 0.006448859348893166, + 0.014046099968254566, + 0.02380402386188507, + -0.0008492547203786671, + -0.002821168629452586, + -0.022224169224500656, + -0.01749788224697113, + -0.0024311833549290895, + -0.008217898197472095, + -0.0019001399632543325, + -0.013249535113573074, + 0.011570109985768795, + 0.008058585226535797, + 0.005662251263856888, + -0.01623665541410446, + -0.008782131597399712, + 0.0027962757740169764, + 0.007866081781685352, + -0.03178295120596886, + -0.00836393516510725, + -0.010979323647916317, + -0.006020705681294203, + -0.018294448032975197, + -0.009718095883727074, + -0.03661544993519783, + -0.009545506909489632, + 0.02056465856730938, + -0.015307328663766384, + -0.027879783883690834, + -0.033535394817590714, + 0.02984464354813099, + -0.009910599328577518, + 0.016767697408795357, + 0.010607593692839146, + 0.007720044814050198, + -0.0250387005507946, + 0.010295605286955833, + -0.024255411699414253, + 0.011895374394953251, + 0.010222586803138256, + 0.03003050945699215, + -0.02133467234671116, + -0.012167533859610558, + -0.007839529775083065, + 0.006302822381258011, + -0.00348829198628664, + 5.064101060270332e-05, + 0.008496696129441261, + -0.026459241285920143, + -0.005091379396617413, + -0.06611491739749908, + 0.02121518738567829, + 0.02657872624695301, + 0.0032625983003526926, + -0.019051184877753258, + 0.008967996574938297, + 0.005310434848070145, + 0.00432800455018878, + -0.0005127888871356845, + -0.02132139541208744, + -0.02522456645965576, + -0.007965652272105217, + 0.008138241246342659, + 0.00020028221479151398, + -0.013508418574929237, + -6.477278657257557e-05, + 0.01318979263305664, + 0.0011077235685661435, + 0.0030734140891581774, + -0.00504159415140748, + -0.0003787833556998521, + 0.013515057042241096, + 0.0020660911686718464, + 0.009074205532670021, + -0.020670868456363678, + -0.002779680769890547, + -0.012207361869513988, + -0.001445433939807117, + -0.0024593952111899853, + -0.0006335182697512209, + -0.0037504946812987328, + 0.012691939249634743, + -0.0199008546769619, + 0.02420230768620968, + -0.0037870039232075214, + -0.005456471815705299, + 0.01305039320141077, + 0.04750183969736099, + -0.001028896775096655, + 0.0666990652680397, + -0.04808598756790161, + -0.041846226900815964, + 0.022927802056074142, + -0.016661489382386208, + 0.006355926860123873, + -0.023180048912763596, + 0.02685752511024475, + -0.006535153836011887, + 0.02122846245765686, + -0.010196034796535969, + 0.02631320431828499, + 0.009160500019788742, + -0.02170640230178833, + -0.01893169991672039, + 0.02323315292596817, + -0.028384273871779442, + 0.01598440855741501, + 0.0016387669602409005, + -0.004377789795398712, + -0.014988702721893787, + 0.05127224698662758, + 0.0005936900270171463, + 0.008841874077916145, + -0.010116378776729107, + 0.024839559569954872, + 0.0005426600691862404, + -0.03680131211876869, + 0.0028460612520575523, + 0.017763404175639153, + 0.006528515834361315, + -0.016103893518447876, + -0.021467432379722595, + 0.02179933525621891, + 0.03741201385855675, + 0.005273925606161356, + -0.00802539475262165, + 0.013846958987414837, + 0.00999689381569624, + 0.014524038881063461, + 0.021374499425292015, + 0.023565053939819336, + 0.03488955646753311, + -0.016210101544857025, + 0.012851252220571041, + 0.022303827106952667, + 0.007952376268804073, + -0.03125190734863281, + 0.009983617812395096, + -0.023193323984742165, + 0.02045845054090023, + 0.01242641732096672, + 0.009976979345083237, + 0.0006326885195448995, + 0.006568344309926033, + -0.021640021353960037, + 0.006020705681294203, + 0.010049997828900814, + -0.008443591184914112, + 0.023750919848680496, + 0.023857127875089645, + 0.014391278848052025, + 0.007215553428977728, + 0.007959013804793358, + -0.01589147560298443, + -0.03491611033678055, + 0.015028530731797218, + -0.02677786722779274, + -0.02716287411749363, + -0.015386984683573246, + 0.011663042940199375, + -0.0038699794095009565, + 0.016980115324258804, + 0.005313754081726074, + 0.004596845246851444, + -0.015851648524403572, + 0.02341901697218418, + -0.012904356233775616, + -0.0050449129194021225, + -0.03308400884270668, + 0.018321000039577484, + 0.00797892827540636, + 0.005396729335188866, + 0.008164793252944946, + 0.0016263206489384174, + 0.01980792172253132, + 0.007839529775083065, + 0.02572905644774437, + -0.024985596537590027, + -0.002394674113020301, + -0.02495904453098774, + -0.007374866399914026, + 0.009054291062057018, + 0.004573612008243799, + -0.006797356531023979, + -0.028145303949713707, + -0.008330744691193104, + 0.010275691747665405, + -0.008881702087819576, + 0.004968575667589903, + 0.11194396764039993, + 0.018984803929924965, + 0.000422760407673195, + -0.012459607794880867, + -0.0022917846217751503, + -0.0027929567731916904, + 0.005911177955567837, + 0.0008061074186116457, + -0.0310660433024168, + -0.049015313386917114, + 0.0063791596330702305, + -0.006910203490406275, + 0.015546297654509544, + -0.009870770387351513, + -0.00937291793525219, + -0.008662646636366844, + -0.015479917638003826, + 0.01893169991672039, + -0.008058585226535797, + 0.027096493169665337, + 0.012333485297858715, + -0.007872719317674637, + 0.004553698003292084, + 0.042403820902109146, + -0.029605673626065254, + -0.002826147014275193, + 0.025410430505871773, + -0.004022654611617327, + 0.010899667628109455, + -0.01891842484474182, + 0.013581437058746815, + -0.0006696126656606793, + -0.07838201522827148, + -0.03247331082820892, + 0.01845376193523407, + -0.021865716204047203, + 0.004835814703255892, + -0.03515508025884628, + 0.015599402599036694, + -0.012638835236430168, + 0.012167533859610558, + 0.009173776023089886, + -0.008158155716955662, + -0.026950456202030182, + 0.004072439856827259, + -0.013375657610595226, + -0.013222983106970787, + -0.02209140919148922, + -0.017046496272087097 + ], + "metadata": { + "source": "INSPIRER_Schlussbericht.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 5, + "has_images": true, + "image_count": 29, + "detection_class_prob": 0.6591171622276306, + "coordinates": "CoordinatesMetadata(points=((1122.828857421875, 155.53517150878906), (1122.828857421875, 361.06524658203125), (1358.3359375, 361.06524658203125), (1358.3359375, 155.53517150878906)), system=)", + "links": [], + "last_modified": "2025-05-05T22:58:03", + "_known_field_names": "frozenset({'page_number', 'text_as_html', 'emphasized_text_contents', 'subject', 'data_source', 'links', 'coordinates', 'image_path', 'is_continuation', 'header_footer_type', 'sent_from', 'url', 'parent_id', 'detection_class_prob', 'emphasized_text_tags', 'last_modified', 'category_depth', 'page_name', 'attached_to_filename', 'bcc_recipient', 'orig_elements', 'languages', 'filetype', 'link_texts', 'file_directory', 'sent_to', 'key_value_pairs', 'image_base64', 'cc_recipient', 'link_urls', 'signature', 'image_mime_type', 'filename', 'detection_origin', 'table_as_cells', 'email_message_id', 'link_start_indexes'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "INSPIRER_Schlussbericht.pdf", + "parent_id": "1c51aaba3295e535d31a83c2392f0391", + "text_as_html": "
Projektlaufzeit01.08.2021 - 31.07.2024 (verl\u00e4ngert bis 31.10.2024)
F\u00f6rderkennzeichen165V8744
StichworteStadtentwicklung, Digitale B\u00fcrgerbeteiligung, Partizipation
und Akzeptanz, Augmented Reality, Extended Reality (XR),
AR-Tracking, Point Cloud Matching
ProjektleitungProf. Dr.-Ing. Volker Coors
Beteiligte ProfessorenProf. Dr.-Ing. Volker Coors
Gef\u00f6rderte Ma\u00dfnahmeForschungsprogramm zur Mensch-Technik-nteraktion
F\u00f6rderbereichTechnik zum Mensch bringen
FachhochschuleHochschule f\u00fcr Technik Stuttgart (HFT Stuttgart),
", + "id": "351a57f5-fe09-4ea6-8750-b2c5267a9700", + "processing_timestamp": "2025-05-05T23:07:23.860264", + "chunk_number": 1, + "total_chunks": 19, + "chunking_strategy": "hybrid", + "word_count": 490 + } +} \ No newline at end of file diff --git a/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000002.json b/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000002.json new file mode 100644 index 0000000000000000000000000000000000000000..ff448d15dd25dcea2f6b77e6711e2f8071a18edc --- /dev/null +++ b/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000002.json @@ -0,0 +1,1570 @@ +{ + "id": "2b86db2d-408b-1992-e1b5-8a9f00000002", + "content": "des Demonstrators . 2\n\n\n## Arbeitspaket 2: Partizipative Softwaregestaltung und partizipative Evaluation ................ 2\n\nArbeitspaket 4: Transfer zur Stadtplanung ......................................................................... 2\nArbeitspaket 5: Pointcloud-Server ....................................................................................... 3\nArbeitspaket 6: AR-App ........................................................................................................ 4\nArbeitspaket 8: Stadtmodell-Server ..................................................................................... 7\nArbeitspaket 9: ELSI in der App-basierten Stadtplanung .................................................... 8\nArbeitspaket 11: Projektmanagement ................................................................................. 9\nWichtige Positionen des zahlenm\u00e4\u00dfigen Nachweises ................................................................ 9\n\n[IMAGE: 11.2]\n\nNotwendigkeit und Angemessenheit der geleisteten Arbeit ....................................................... 9\n\n[IMAGE: ]\n\nVoraussichtlicher Nutzen, insb. Verwertbarkeit der Ergebnisse .............................................. 10\n\n[IMAGE: ]\n\nBekannt gewordene Fortschritte bei anderen Stellen .............................................................. 10\n\n[IMAGE: ]\n\nErfolgte Ver\u00f6ffentlichungen der Ergebnisse ............................................................................. 11\n\n[IMAGE: ]\n\n\n[IMAGE: 11.7]\n\nGeplante Ver\u00f6ffentlichungen der Ergebnisse............................................................................ 12\n\n## Anhang 1: Liste der verwendeten Fachliteratur, Informations- und Datenquellen ............................... 13\n\n\n## Abbildungsverzeichnis\n\n\n| Abbildung | 4: | Integration | des | Algorithmus | in | ein | Unity | Projekt | - | z.B. | die | AR-App. | Der | blaue | Kasten | erstellt | Abbildung | 5: | Matching | Algorithmic | Speed | Test | \u2013 | Vergleich | der | Verarbeitungszeiten | verschiedener |\n|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|\n\nAbbildung 1: Punktwolke von Fellbach. ....................................................................................................... 4\nAbbildung 2: Ablaufdiagram des PC Matching-Verfahrens. ........................................................................ 4\nAbbildung 3: Optimierung der Matching-Parameter. ................................................................................... 5\nim wesentlichen Abbildung 2 dar. ................................................................................................... 5\nMatching-Schritte f\u00fcr zwei Datens\u00e4tze.. ........................................................................................ 6\nAbbildung 6: Match-Point-Wolken ............................................................................................................... 6\n\n## Abbildung 7: Finaler Demonstrator mit vollst\u00e4ndiger AR-Integration und Echtzeit-Tracking. ................... 7\n\nAbbildung 8: 3D-Planung des Kreisels in Fellbach. ..................................................................................... 8\n\n## II. Eingehende Darstellungen\n\n- Verwendung der Zuwendung und des erzielten Ergebnisses im Einzelnen, mit Gegen\u00fcberstellung der vorgegebenen Ziele\n\n[IMAGE: ]\n\n- II.1.1 Arbeitspaket 1: Entwurf Gesamtkonzept, Techn. Integration, Entw. des Demonstrators\nZiel dieses Arbeitspakets war die Definition der technischen Anforderungen und die Konzeption der Systemarchitektur. Die Integration von Interaktionsfunktionen, AR-Tracking, Stadtmodellvisualisierung und Nutzerdatenverwaltung stand dabei im Fokus. Im ersten Projektjahr wurden in einem internen Workshop die technischen Anforderungen definiert und mit den Projektpartnern abgestimmt. Darauf basierend wurde die Systemarchitektur entworfen und Schnittstellen f\u00fcr die verschiedenen Module festgelegt. Im weiteren Verlauf erfolgte eine iterative Weiterentwicklung der Architektur unter Ber\u00fccksichtigung neuer Anforderungen. Die Systemtests und Fehleranalysen f\u00fchrten zur schrittweisen Optimierung der Demonstratoren. Durch die iterative inkrementelle Entwicklung von vier Demonstratoren (D1.2, D1.3, D1.4, D1.5) konnte das Gesamtsystem kontinuierlich evaluiert und verbessert werden. ## II.1.2 Arbeitspaket 2: Partizipative Softwaregestaltung und partizipative Evaluation\n\nDie Entwicklung des AR/VR-Demonstrators wurde in einem dreistufigen partizipativen Prozess umgesetzt, um B\u00fcrger*innen aktiv einzubeziehen. Durch eine kontinuierliche Evaluation in mehreren Iterationen sollte eine objektive R\u00fcckmeldung zu den einzelnen Entwicklungsschritten erm\u00f6glicht und die Technologie optimiert werden. Zu Beginn des Projekts wurde die Konzeption der partizipativen Softwaregestaltung ausgearbeitet und mit den Projektpartnern abgestimmt. In der ersten Evaluationsrunde entstanden Anforderungen an den Demonstrator, die im ersten Entwurf der Spezifikation dokumentiert wurden. Im weiteren Verlauf f\u00fchrten die R\u00fcckmeldungen der Beteiligten zur Entwicklung des ersten Zwischendemonstrators, der unter realen Bedingungen getestet wurde.", + "embedding": [ + 0.007744329050183296, + 0.007669273763895035, + 0.0029766198713332415, + -0.022216329351067543, + -0.021220143884420395, + 0.019186830148100853, + -0.01593898795545101, + -0.001997490879148245, + 0.006168170366436243, + -0.04647962003946304, + 0.005171983502805233, + 0.013414405286312103, + -0.011476617306470871, + 0.0005471351323649287, + -0.026446713134646416, + -0.00400862842798233, + 0.027088092640042305, + -0.014246835373342037, + 0.009879989549517632, + 0.006560503970831633, + -0.0008004463161341846, + 0.01977362483739853, + 0.01364639401435852, + -0.0009040736476890743, + -0.011080872267484665, + 0.02254384383559227, + 0.03013123944401741, + -0.03067709505558014, + 0.0012998190941289067, + -0.006888017524033785, + 0.01438329927623272, + -0.007102948147803545, + 0.005015050061047077, + -0.015079265460371971, + -0.01516114454716444, + -0.023485444486141205, + -0.011012639850378036, + 0.007969493977725506, + 0.01061689481139183, + 0.011824600398540497, + 0.008651814423501492, + -0.01061689481139183, + -0.011026286520063877, + -0.02898494154214859, + -0.005455146078020334, + 0.012063412927091122, + -0.006478625815361738, + 0.006662852130830288, + -0.01982821151614189, + 0.01877743937075138, + 0.0312502421438694, + 0.01913224533200264, + -0.024918315932154655, + -0.005683723371475935, + -0.0037561701610684395, + -0.005888419225811958, + -0.02082439698278904, + 0.02564157545566559, + -0.013578162528574467, + -0.01353722345083952, + -0.018818378448486328, + 0.02550511062145233, + -0.02538229338824749, + -0.003616294590756297, + -0.03501664847135544, + -0.012868549674749374, + -0.024850083515048027, + 0.014342360198497772, + 0.011865540407598019, + -0.001277643721550703, + 0.03861929476261139, + 0.015870757400989532, + 0.03294239565730095, + -0.020769812166690826, + 0.04503310099244118, + -0.009108968079090118, + 0.017753958702087402, + -0.032287370413541794, + -0.004858116619288921, + 0.004619304556399584, + 0.020360421389341354, + -0.008426648564636707, + -0.024577155709266663, + 0.011005816981196404, + 0.005837245378643274, + 0.015679707750678062, + -0.006686733104288578, + 0.016498491168022156, + -0.009941398166120052, + -0.00679249269887805, + -0.0035412393044680357, + 0.027019860222935677, + -0.0016034513246268034, + 0.010876175947487354, + -7.5494945122045465e-06, + 0.024195056408643723, + 0.014547056518495083, + 0.011374269612133503, + -0.020687934011220932, + -0.022939588874578476, + 0.0015070736408233643, + 0.0017518558306619525, + -0.026296602562069893, + -0.00480694230645895, + -0.027688534930348396, + -0.019268708303570747, + -0.009538829326629639, + 0.009955044835805893, + 0.005653019063174725, + 0.00559502188116312, + -0.020305834710597992, + 0.032287370413541794, + 0.001236704527400434, + -0.02528676949441433, + 0.003640175797045231, + -0.04203089326620102, + 0.027156325057148933, + 0.0028555081225931644, + -0.006540034431964159, + 0.003382599912583828, + 0.020524177700281143, + 0.020387712866067886, + 0.018067825585603714, + -0.023458151146769524, + 0.034197863191366196, + 0.028466379269957542, + -0.012029296718537807, + 0.0015531302196905017, + -0.004588600248098373, + -0.018572742119431496, + -0.0019855503924191, + 0.0006375425145961344, + 0.03146858513355255, + 0.0012708205031231046, + -0.004506721626967192, + 0.006260283291339874, + -0.023553676903247833, + -0.007689743302762508, + -0.030622508376836777, + -0.033460959792137146, + 0.010773828253149986, + 0.016334734857082367, + -0.007648804225027561, + -0.031359415501356125, + 0.0033246027305722237, + 0.021643182262778282, + -0.0022499493788927794, + 0.01597992703318596, + -0.0005121662397868931, + -0.02545052580535412, + -0.01396708469837904, + -0.027565715834498405, + 2.2082105715526268e-05, + -0.015925342217087746, + -0.004073448944836855, + -0.015311254188418388, + -0.006656028795987368, + 0.0036504105664789677, + -0.011715429835021496, + -0.009961867704987526, + 0.0033518956042826176, + -0.0019019661704078317, + -0.010453138500452042, + -0.00813325121998787, + 0.028357207775115967, + 0.014997387304902077, + 0.0036879379767924547, + 0.004615893121808767, + 0.001180413062684238, + -0.012854903936386108, + -0.020865337923169136, + 0.008931565098464489, + -0.02111097238957882, + 0.025041133165359497, + -0.0038209904450923204, + -0.004725064150989056, + -0.005216334480792284, + 0.003653822001069784, + -0.03223278373479843, + -0.01036443654447794, + -0.0076624504290521145, + -0.01479269191622734, + 0.03146858513355255, + 0.011722252704203129, + -0.020305834710597992, + -0.0049775224179029465, + 0.017098931595683098, + 0.00975717231631279, + -0.010691950097680092, + 0.007860323414206505, + 0.03659962862730026, + 0.007607864681631327, + 0.02771582640707493, + -0.0072052963078022, + -0.6314459443092346, + 0.0020947216544300318, + 0.01967810094356537, + -0.025805331766605377, + -0.004530603066086769, + 0.023103345185518265, + 0.017003407701849937, + 0.003321191295981407, + -0.007901262491941452, + 0.04964558407664299, + 0.0061852284707129, + -0.010371259413659573, + 0.0025365236215293407, + -0.011060402728617191, + -0.011251452378928661, + -0.01302548311650753, + 0.008153720758855343, + -0.02280312590301037, + 0.011490263976156712, + 0.018791085109114647, + -0.028493670746684074, + 0.007444108370691538, + 0.001932670595124364, + -0.020196663215756416, + -0.0163620263338089, + 0.01677141897380352, + -0.016689540818333626, + -0.0071438876911997795, + 0.01884566992521286, + 0.01677141897380352, + -0.0228304173797369, + 0.020592408254742622, + -0.008310654200613499, + 0.028357207775115967, + 0.03632670268416405, + 0.004015451762825251, + -0.010077862069010735, + 0.0007083331583999097, + 0.015515950508415699, + 0.022693954408168793, + -0.02194340154528618, + 0.018136058002710342, + 0.013161947019398212, + 0.0036367641296237707, + 0.01960986852645874, + -0.0034713016357272863, + 0.03919244557619095, + 0.0012008827179670334, + -0.014356006868183613, + -0.013694156892597675, + 0.012459157966077328, + 0.004312260542064905, + -0.0072462353855371475, + -0.004458959214389324, + 0.028384501114487648, + 0.013653217814862728, + 0.006478625815361738, + -0.022243622690439224, + -0.01458799559623003, + -0.0062159327790141106, + -0.024795498698949814, + -0.010637364350259304, + -0.01460164226591587, + -0.020005613565444946, + -0.02225726842880249, + 0.020292188972234726, + -0.01497009489685297, + 0.0018183820648118854, + 0.007409992162138224, + -0.02426328882575035, + -0.0022107157856225967, + 0.033406373113393784, + -0.013455345295369625, + -0.01932329498231411, + 0.02416776493191719, + 0.013496284373104572, + 0.02015572413802147, + -0.014710812829434872, + -0.01178366132080555, + 0.016539430245757103, + 0.013857913203537464, + -0.01516114454716444, + -0.002413705922663212, + 0.02554604969918728, + 0.017467385157942772, + -0.005864537786692381, + -0.013223356567323208, + -0.0028009223751723766, + -0.003974512219429016, + 0.019746333360671997, + 0.028657428920269012, + 0.024413399398326874, + -0.023035114631056786, + 0.00025352442753501236, + 0.002848684787750244, + 0.0471346452832222, + -0.0011437383946031332, + 0.03916515037417412, + -0.004690947942435741, + -0.044241610914468765, + -0.02280312590301037, + -0.0030039125122129917, + 0.028493670746684074, + 0.00359582481905818, + 0.03321532532572746, + 0.0009305135463364422, + -0.024891022592782974, + 0.01872285269200802, + 0.05193817615509033, + -0.03299698233604431, + -0.034170571714639664, + -0.010930761694908142, + -0.01495644822716713, + -0.012793494388461113, + 0.017481030896306038, + -0.03414328023791313, + 0.005298212636262178, + -0.00738952262327075, + 0.02091992273926735, + -0.01574793830513954, + 0.01184506993740797, + -0.02404494769871235, + 0.01613003760576248, + -0.02385389804840088, + -0.011135458014905453, + 0.012008827179670334, + -0.0036026481539011, + -0.016716832295060158, + -0.0115448497235775, + 0.003544650971889496, + -0.0041450923308730125, + 0.008501703850924969, + 0.02483643777668476, + 0.005936181638389826, + 0.021670473739504814, + -0.015761585906147957, + 0.016348380595445633, + -0.005499497056007385, + -0.007717036176472902, + -0.028084279969334602, + -0.022762184962630272, + -0.004987757187336683, + 0.010705596767365932, + -0.03583543002605438, + -0.011374269612133503, + -0.03878305107355118, + -0.01744009181857109, + 0.00698354234918952, + 0.008822393603622913, + 0.022011633962392807, + -0.01929600164294243, + -0.01693517528474331, + 0.0009484243928454816, + 0.03253300487995148, + 0.0182725228369236, + -0.009381895884871483, + -0.0055574942380189896, + -0.013196063227951527, + 0.009402365423738956, + -0.03635399416089058, + 0.0144105926156044, + 0.006598031613975763, + -0.024986548349261284, + -0.017098931595683098, + -0.007505516987293959, + -0.005185629706829786, + 0.015311254188418388, + 0.033024273812770844, + -0.04162150248885155, + -0.028657428920269012, + 0.00537326792255044, + 0.008474410511553288, + -0.01884566992521286, + 0.015993574634194374, + -0.01858638972043991, + 0.023922128602862358, + -0.02263936772942543, + -0.019937383010983467, + -0.006212520878762007, + -0.005287977866828442, + 0.0014183721505105495, + 0.010105155408382416, + -0.012554682791233063, + -0.0030602039769291878, + 0.017399152740836143, + 0.0020657230634242296, + 0.008569935336709023, + 0.015597828663885593, + -0.023157931864261627, + 0.012745732441544533, + 0.021534010767936707, + 0.04476017504930496, + -0.00798996351659298, + 0.01660766266286373, + -0.012336340732872486, + 0.009661647491157055, + -0.011401562951505184, + -5.442565816338174e-05, + 0.005202687811106443, + 0.017235396429896355, + 0.04683442413806915, + 0.0024546452332288027, + 0.015434072352945805, + 0.008720045909285545, + 0.023485444486141205, + -0.02786593697965145, + -1.423276262357831e-05, + -0.012063412927091122, + 0.03048604540526867, + 0.009122614748775959, + 0.014710812829434872, + -0.02879389189183712, + -0.029448918998241425, + 0.009340956807136536, + 0.005895242560654879, + 0.0120020043104887, + -0.010896645486354828, + 0.015120205469429493, + -0.017617495730519295, + 0.015502303838729858, + -0.0023676494602113962, + -0.010159740224480629, + 0.037227362394332886, + -0.013291588053107262, + 0.003776639699935913, + -0.00900662038475275, + 0.004462371114641428, + 0.04680713266134262, + 0.023608261719346046, + -0.005844068247824907, + -0.00300902989692986, + -0.005185629706829786, + 0.014301421120762825, + 0.0010848883539438248, + 0.02034677378833294, + 0.01359863206744194, + 0.027279142290353775, + -0.003698172979056835, + 0.037418413907289505, + 0.008283361792564392, + 0.00813325121998787, + 0.023335333913564682, + -0.001020920928567648, + 0.0115448497235775, + 0.010466784238815308, + -0.0163620263338089, + 0.012691146694123745, + 0.034006815403699875, + -0.009532006457448006, + 0.011462971568107605, + -0.013223356567323208, + -0.0010456549935042858, + -0.017849484458565712, + 0.008262892253696918, + -1.4406007721845526e-05, + -0.012377279810607433, + 0.025204891338944435, + -0.016348380595445633, + 0.027729474008083344, + 0.024863731116056442, + 0.021247435361146927, + 0.027279142290353775, + 0.017999595031142235, + 0.004203089512884617, + -0.019459757953882217, + -0.016157330945134163, + -0.012056589126586914, + -0.028657428920269012, + -0.020142078399658203, + -0.023963067680597305, + 0.023103345185518265, + -0.017958655953407288, + -0.0060521760024130344, + 0.0006917015998624265, + 0.0007381846662610769, + -0.010835236869752407, + 0.003868752857670188, + 0.010562309063971043, + 0.026678701862692833, + 0.010289381258189678, + -0.028657428920269012, + -0.014506117440760136, + -0.00993457529693842, + 0.0050286962650716305, + 0.0016145390691235662, + -0.0040939184837043285, + -0.024495277553796768, + 0.008358416147530079, + -0.0031386706978082657, + -0.004834235180169344, + -0.007682919967919588, + -0.003991570323705673, + 0.004936583340167999, + 0.00700742332264781, + -0.006877782754600048, + 0.004076860379427671, + 0.014151310548186302, + -0.00599417882040143, + -0.019541636109352112, + 0.01544771809130907, + -0.00719164963811636, + 0.006656028795987368, + 0.011340153403580189, + -0.029639968648552895, + 0.026774225756525993, + -0.021001800894737244, + -0.0016861825715750456, + -0.02898494154214859, + -0.008542642928659916, + -0.020333128049969673, + 0.012090705335140228, + 0.010473608039319515, + 0.0006166464299894869, + 0.015802524983882904, + -0.0028947414830327034, + -0.009811757132411003, + -0.010500900447368622, + -0.02321251668035984, + 0.046506911516189575, + 0.004305437207221985, + -0.021220143884420395, + -0.019473405554890633, + 0.011804130859673023, + 0.009354603476822376, + 0.03466184064745903, + 0.031031901016831398, + 0.005386914126574993, + 0.007130241021513939, + -0.014929155819118023, + -0.01629379577934742, + -0.032478418201208115, + -0.038400955498218536, + 0.014506117440760136, + 0.01839534007012844, + -0.009968691505491734, + -0.007212119642645121, + 0.02381295897066593, + -0.028275329619646072, + 0.009641177952289581, + 0.007485047448426485, + 0.0010473608272150159, + 0.0158844031393528, + 0.019596222788095474, + 0.007075655274093151, + -0.0072462353855371475, + -0.004841058515012264, + 0.013468991033732891, + 0.01660766266286373, + -0.001987256109714508, + -0.022680306807160378, + 0.031004607677459717, + 0.015120205469429493, + -0.0026388715486973524, + -0.0322054922580719, + 0.010459961369633675, + 0.01655307598412037, + 0.006174993701279163, + 0.03370659425854683, + -0.01479269191622734, + 0.015270315110683441, + 0.013721449300646782, + 0.021834231913089752, + 0.022680306807160378, + -0.000443081371486187, + -0.007498693652451038, + 0.004257675260305405, + 0.007976317778229713, + -0.010814767330884933, + 0.009231786243617535, + -1.3339883480512071e-05, + -0.00819465983659029, + 0.008494880981743336, + -0.014274128712713718, + -0.020974507555365562, + -0.0004985198611393571, + -0.00719847297295928, + -0.014506117440760136, + -0.002592814853414893, + -0.008986150845885277, + -0.012513743713498116, + 0.00016823445912450552, + -0.020046552643179893, + 0.0022653015330433846, + -0.028848478570580482, + -0.035125818103551865, + -0.011681313626468182, + 0.001772325485944748, + -0.01296407449990511, + -0.022107159718871117, + -0.020360421389341354, + -0.015638768672943115, + 0.008030903525650501, + -0.015051973052322865, + -0.017972301691770554, + 0.0006000149296596646, + -0.011449324898421764, + -0.020046552643179893, + -0.0006912751705385745, + 0.0029203284066170454, + 0.010098331607878208, + 0.018054179847240448, + -0.014997387304902077, + -0.01458799559623003, + -0.005741720553487539, + 0.010091508738696575, + -0.024481631815433502, + 0.02168412134051323, + -0.030349580571055412, + -0.024795498698949814, + 0.010296204127371311, + -0.02362190932035446, + -0.013284765183925629, + -0.004817177075892687, + 0.02895764820277691, + -0.004226970486342907, + -0.010923938825726509, + -0.0027446311432868242, + -0.00880192406475544, + -0.003762993263080716, + 0.01104675605893135, + 0.004537425935268402, + 0.011033110320568085, + 0.018504511564970016, + -0.01693517528474331, + 0.0043190838769078255, + -0.02340356633067131, + -0.009347780607640743, + -0.0042235590517520905, + 0.007778444793075323, + -0.0004202662967145443, + -0.011360622942447662, + -0.004121210891753435, + -0.030595216900110245, + 0.004779649432748556, + -0.016061807051301003, + 0.010923938825726509, + -0.004609069786965847, + -0.00139534380286932, + 0.026091905310750008, + 0.010146094486117363, + -0.008099135011434555, + 0.0073690530844032764, + 0.049754753708839417, + -0.005110574886202812, + 0.0036572336684912443, + -0.033815763890743256, + 0.029121406376361847, + 0.010589602403342724, + -0.008331123739480972, + 0.03127753734588623, + 0.004827411845326424, + 0.007519163191318512, + -0.013987554237246513, + 0.015952635556459427, + -0.007928554899990559, + 0.012111174874007702, + -0.0025979322381317616, + 0.0020861926022917032, + -0.015051973052322865, + 0.01141520868986845, + 0.004213324282318354, + 0.03242383152246475, + 0.0041723852045834064, + 0.00838570948690176, + -0.0018337342189624906, + -0.002108367858454585, + 0.013291588053107262, + 0.004244028590619564, + 0.007751151919364929, + -0.03427974134683609, + -0.020237602293491364, + 0.017835836857557297, + -0.04017498344182968, + 0.033433664590120316, + -0.006932368502020836, + 0.002082780934870243, + -0.015502303838729858, + -0.006703791208565235, + -0.01769937388598919, + -0.03447079285979271, + -0.005001403391361237, + -0.018668267875909805, + 0.026446713134646416, + 0.027797704562544823, + 0.040284156799316406, + 0.00776479858905077, + 0.03662692382931709, + -0.0008827511337585747, + -0.015584181994199753, + 0.009832227602601051, + -0.00782620720565319, + -0.002700280398130417, + -0.033843059092760086, + 0.020606055855751038, + 0.008822393603622913, + 0.034361619502305984, + 0.020933568477630615, + 0.006714025977998972, + 0.02461809478700161, + 0.02898494154214859, + -0.022052573040127754, + -0.010541839525103569, + -0.0018593212589621544, + -0.029121406376361847, + -0.019350586459040642, + 0.013700979761779308, + 0.009839050471782684, + 0.000968041131272912, + -0.033788472414016724, + 0.015365839935839176, + 0.02564157545566559, + 0.01161990500986576, + -0.0017825602553784847, + 0.015283961780369282, + 0.022216329351067543, + -0.004360022954642773, + 0.027975108474493027, + 0.02519124373793602, + 0.017358213663101196, + -0.01686694286763668, + 0.0013944909442216158, + -0.03406140208244324, + 0.004059802275151014, + 0.04942724108695984, + 0.01302548311650753, + 0.015993574634194374, + 0.0038619295228272676, + -0.008774631656706333, + -0.008890626020729542, + 0.019268708303570747, + -0.0009578063036315143, + -0.01855909638106823, + -0.0009253961034119129, + -0.010964877903461456, + 0.006277341395616531, + -0.008952034637331963, + -0.02025124989449978, + -0.0004823147610295564, + 0.023144284263253212, + 0.015106558799743652, + -0.009654823690652847, + 0.015051973052322865, + 0.0032990158069878817, + -0.024467986077070236, + 0.016430258750915527, + -0.006604854948818684, + 0.03318803012371063, + 0.018245229497551918, + 0.021479424089193344, + 0.02538229338824749, + -0.03575355187058449, + -0.041021060198545456, + -0.06080833449959755, + 0.012520566582679749, + -0.002389824716374278, + 0.02471362054347992, + 0.021574949845671654, + -0.0012025885516777635, + -0.021411193534731865, + 0.022107159718871117, + 0.003142082365229726, + -0.03086814470589161, + -0.020142078399658203, + 0.029858311638236046, + 0.00900662038475275, + 0.01378968171775341, + -0.012288577854633331, + -0.0011113282525911927, + -0.021547656506299973, + -0.0048547047190368176, + -0.015802524983882904, + -0.007894439622759819, + 0.012486451305449009, + 0.01098534744232893, + -0.011387916281819344, + 0.017467385157942772, + -0.0163620263338089, + 0.02879389189183712, + 0.026201076805591583, + -0.03954724967479706, + 0.007027893327176571, + -0.011790485121309757, + -0.004615893121808767, + 0.01903671957552433, + 0.006700379773974419, + 0.0204013604670763, + -0.007894439622759819, + -0.00020565542217809707, + 0.004673890303820372, + 0.0018866140162572265, + 0.004121210891753435, + 0.012718440033495426, + -0.005874773021787405, + 0.02257113717496395, + -0.004527191165834665, + -0.018436279147863388, + -0.0025314062368124723, + -0.0036367641296237707, + 0.018245229497551918, + -0.0006733642658218741, + -0.010637364350259304, + -0.03441620618104935, + -0.0044214315712451935, + 0.007041539531201124, + 0.01884566992521286, + -0.015420425683259964, + -0.0029783255886286497, + -0.0036060598213225603, + 0.008126427419483662, + -0.012199876829981804, + 0.00013454491272568703, + 0.018477218225598335, + 0.009723056107759476, + -0.03924702852964401, + -0.01782219111919403, + 0.022693954408168793, + -0.023580970242619514, + 0.023294394835829735, + 0.010343967005610466, + 0.0038346368819475174, + -0.0031727866735309362, + 0.0069084870629012585, + -0.0442689023911953, + 0.008419825695455074, + 0.026842458173632622, + -0.007123417686671019, + -0.015024680644273758, + 0.003360424656420946, + -0.0024768204893916845, + -0.016662247478961945, + 0.035917311906814575, + -0.01696246862411499, + -0.03504393994808197, + -0.018231583759188652, + -0.011019463650882244, + 0.012561505660414696, + -0.009108968079090118, + -0.002214127453044057, + 0.02681516483426094, + -0.009668470360338688, + 0.00026311955298297107, + -0.0027565716300159693, + -0.003609471255913377, + 0.01632108725607395, + 0.015734292566776276, + -0.0029783255886286497, + 0.019882796332240105, + -0.016621308401226997, + 0.028138864785432816, + 0.001206852961331606, + -0.005001403391361237, + -0.009204492904245853, + -0.030950022861361504, + -0.016471197828650475, + -0.003333131782710552, + 0.019200477749109268, + -0.027156325057148933, + -0.005608668085187674, + -0.012295401655137539, + -0.012793494388461113, + -0.020592408254742622, + 0.0008170778746716678, + 0.008010433986783028, + 0.008501703850924969, + 0.010726066306233406, + 0.01116275042295456, + -0.0228304173797369, + -0.004748945124447346, + 0.009825403802096844, + -0.012663854286074638, + -0.004148503765463829, + 0.0009740113746374846, + -0.026733286678791046, + 0.007096125278621912, + -0.011394739151000977, + 0.023867543786764145, + 0.02516395039856434, + -0.0316869281232357, + -0.015038326382637024, + -0.022461965680122375, + -0.041375868022441864, + -0.002434175694361329, + -0.0037425237242132425, + 0.005642784293740988, + 0.005202687811106443, + 0.016880590468645096, + -0.00655368110165, + 0.037036314606666565, + 0.0006609972333535552, + 0.0022243622224777937, + -0.03449808433651924, + -0.03810073435306549, + 0.01161990500986576, + -0.02974914014339447, + 0.01677141897380352, + -0.00031109515111893415, + -0.05518601834774017, + 0.0038926340639591217, + 0.01584346406161785, + 0.005745131988078356, + 0.0015505715273320675, + 0.002524582901969552, + -0.01696246862411499, + -0.016498491168022156, + 0.008344770409166813, + 0.005359621252864599, + -0.005881595890969038, + 0.0057826596312224865, + 0.011531203053891659, + -0.012793494388461113, + 0.008549465797841549, + -0.00617840513586998, + 0.0016776536358520389, + -0.021288374438881874, + -0.003520769765600562, + 0.007130241021513939, + -0.008665460161864758, + 0.006123819388449192, + 0.024959255009889603, + -0.01552959717810154, + -0.00518904160708189, + -0.0022192448377609253, + 0.022912295535206795, + 0.009484244510531425, + -0.004087095148861408, + 0.011394739151000977, + 0.017958655953407288, + 0.007457754574716091, + -0.0064410981722176075, + 0.0054107955656945705, + -0.037991560995578766, + 0.0182725228369236, + 0.007594218477606773, + -0.01533854752779007, + 0.007171180099248886, + -0.032287370413541794, + -0.0054449113085865974, + -0.012288577854633331, + 0.005383502691984177, + -0.009920928627252579, + -0.013325704261660576, + -0.007894439622759819, + 0.025778038427233696, + 0.005298212636262178, + -0.003698172979056835, + 0.01808147318661213, + -0.014246835373342037, + -0.014260482043027878, + -0.017385507002472878, + -0.008078665472567081, + 0.00857675913721323, + -0.007273528259247541, + 0.02359461598098278, + -0.01648484356701374, + -0.019664455205202103, + 0.014915509149432182, + 0.017330920323729515, + 0.0016588898142799735, + -0.004271321464329958, + 0.019200477749109268, + 0.1898486465215683, + -0.0039711007848382, + -0.001410696073435247, + 0.02323981001973152, + -0.0006938338628970087, + 0.014096725732088089, + 0.009504714049398899, + 0.0022090100683271885, + 0.005632549524307251, + 0.01817699708044529, + 0.0015795701183378696, + 0.011039933189749718, + -0.016907881945371628, + 0.002190246246755123, + 0.007485047448426485, + -0.01734456792473793, + -0.024276936426758766, + -0.0115448497235775, + -0.013700979761779308, + 0.026351187378168106, + 0.03365200757980347, + -0.040065813809633255, + -0.00700742332264781, + -0.023608261719346046, + 0.022107159718871117, + -0.012929958291351795, + -0.025395939126610756, + -0.005966885946691036, + 0.024795498698949814, + 0.009641177952289581, + -0.01439694594591856, + -0.009491067379713058, + 0.006625324487686157, + -0.0018354400526732206, + 0.0042679100297391415, + -0.011510733515024185, + -0.0005727221141569316, + 0.0016298912232741714, + 0.030813558027148247, + 0.026678701862692833, + -0.014342360198497772, + -0.02506842650473118, + -0.02994018979370594, + -0.017549263313412666, + -0.0010644188150763512, + 0.021438485011458397, + -0.019432466477155685, + 0.00636263145133853, + 0.02302146703004837, + -0.028657428920269012, + -0.016525784507393837, + -0.002688339678570628, + 0.004496486857533455, + 0.023157931864261627, + -0.014110371470451355, + 0.011715429835021496, + -0.0047352989204227924, + -0.01655307598412037, + -0.0049331714399158955, + 0.03160504996776581, + -0.019568929448723793, + 0.005352798383682966, + 0.008679106831550598, + 0.0060692341066896915, + -0.028138864785432816, + 0.0007548161665908992, + -0.022789478302001953, + 0.017753958702087402, + -0.0147790452465415, + -0.02206622064113617, + 0.010773828253149986, + -0.014342360198497772, + -0.024249643087387085, + 0.019841857254505157, + -0.0037425237242132425, + -0.033406373113393784, + 0.005823598708957434, + 0.02321251668035984, + 0.025846270844340324, + 0.03982017934322357, + -0.00801725685596466, + 0.013182416558265686, + -0.013810151256620884, + -0.0266923476010561, + -0.009259078651666641, + -0.03070438653230667, + 0.05133773759007454, + -0.0062500485219061375, + -0.00499799195677042, + -0.0069528380408883095, + -0.037582170218229294, + -0.02168412134051323, + 0.0032154317013919353, + -0.027374668046832085, + 0.016280148178339005, + -0.0010251853382214904, + 0.02369013987481594, + 0.004650008864700794, + -0.007587395142763853, + -0.0012955545680597425, + -0.011244628578424454, + 0.06768611818552017, + 0.03144129365682602, + -0.02066064067184925, + -0.022680306807160378, + 0.004912701901048422, + 0.01031667459756136, + 0.009027089923620224, + 0.017740312963724136, + -0.0021117795258760452, + -0.008290184661746025, + -0.03182339295744896, + 0.011469794437289238, + -0.008460764773190022, + -0.007921732030808926, + 0.020223956555128098, + -0.008856509812176228, + 5.714427607017569e-05, + 0.012902665883302689, + -0.006864136550575495, + -0.011886009946465492, + -0.002538229338824749, + -0.003708407748490572, + -0.002017960650846362, + -0.008665460161864758, + -0.024085886776447296, + -0.011142280884087086, + -0.016334734857082367, + -0.01544771809130907, + 0.0002684501523617655, + 0.020319480448961258, + -0.023894837126135826, + 0.03883763775229454, + 0.0006260283407755196, + 0.005011638160794973, + -0.012295401655137539, + 0.015120205469429493, + -0.02263936772942543, + -0.018422631546854973, + 0.0005688840756192803, + 0.013352996669709682, + 0.009047559462487698, + 0.005888419225811958, + 0.008331123739480972, + -0.004025686532258987, + -0.008317477069795132, + 0.0026218134444206953, + 0.01401484664529562, + -0.01619827002286911, + -0.012636560946702957, + 0.0034832421224564314, + -0.008931565098464489, + -0.0009774230420589447, + -0.04115752503275871, + 0.02822074294090271, + 0.004793296102434397, + -0.008590404875576496, + -0.009777641855180264, + 0.009497890248894691, + -0.017549263313412666, + -0.024590803310275078, + -0.01734456792473793, + 0.0015113381668925285, + -0.010473608039319515, + -0.008999797515571117, + -0.00032857959740795195, + -0.17521969974040985, + 0.007703389506787062, + 0.015297608450055122, + -0.04115752503275871, + 0.014628934673964977, + -0.01629379577934742, + 0.01299136783927679, + 0.007273528259247541, + -0.030376873910427094, + 0.0010243324795737863, + 0.03217819705605507, + -0.007225765846669674, + -0.012697969563305378, + -0.009511536918580532, + 0.021697767078876495, + 0.005547259468585253, + -0.02824803628027439, + 0.037200070917606354, + 0.03485289216041565, + 0.019951028749346733, + 0.015079265460371971, + -0.011776838451623917, + -0.0039983936585485935, + -0.004762591794133186, + -0.007102948147803545, + 0.00979128759354353, + -0.004070037044584751, + 0.032096318900585175, + -0.006270518060773611, + -0.0163620263338089, + 0.008781454525887966, + -0.003762993263080716, + 0.04686171934008598, + 0.011954241432249546, + -0.0010976818157359958, + -0.003317779628559947, + -0.006072645541280508, + 0.0016733891097828746, + -0.005615491420030594, + 0.03545333445072174, + -0.003517358098179102, + 0.024467986077070236, + -0.0025842860341072083, + -0.010678303427994251, + -0.03490747511386871, + 0.01910495199263096, + 0.02461809478700161, + -0.020892629399895668, + -0.01093758549541235, + -0.008972504176199436, + 0.016703186556696892, + -0.034170571714639664, + -0.022120805457234383, + 0.002026489470154047, + 0.006127231288701296, + 0.024959255009889603, + 0.019623514264822006, + 0.010958055034279823, + 0.006922133732587099, + 0.00975717231631279, + 0.003988158889114857, + -0.004336141981184483, + 0.011933771893382072, + 0.006748142186552286, + -0.004861528053879738, + -0.025082072243094444, + 0.011838247068226337, + 0.035507917404174805, + -0.012779848650097847, + -0.0047864727675914764, + -0.01460164226591587, + -0.015024680644273758, + -0.0005450028693303466, + -0.0067276726476848125, + 0.011503910645842552, + -9.749708988238126e-05, + -0.017003407701849937, + 0.021056385710835457, + 0.035890016704797745, + -0.022762184962630272, + -0.003844871651381254, + 0.04189443215727806, + 0.010262088850140572, + -0.02330804243683815, + 0.007546456065028906, + -0.024659033864736557, + -0.014192250557243824, + 0.033788472414016724, + 0.0022073043510317802, + 0.017972301691770554, + 0.014124018140137196, + -0.03395222872495651, + -0.020237602293491364, + 0.010357613675296307, + 0.0027326904237270355, + 0.024877376854419708, + -0.020032906904816628, + -0.0018422632711008191, + -0.017849484458565712, + -0.030267702415585518, + 0.024781852960586548, + -0.002524582901969552, + -0.009695762768387794, + 0.02461809478700161, + 0.016143685206770897, + 0.0011079167015850544, + 0.01122415903955698, + 0.020988155156373978, + 0.04421431943774223, + -0.005912300199270248, + -0.024099532514810562, + -0.00014957727398723364, + 0.007546456065028906, + 0.012063412927091122, + 0.019719040021300316, + 0.009450128301978111, + 0.017303628847002983, + -0.0037357003893703222, + 0.014451531693339348, + 9.440533176530153e-05, + 0.057860713452100754, + -0.013373466208577156, + -0.026419419795274734, + 0.00037676841020584106, + -0.008658637292683125, + -0.010773828253149986, + -0.07270798832178116, + -0.013011837378144264, + 0.02841179259121418, + 0.024249643087387085, + -0.002807745710015297, + 0.033788472414016724, + -0.0074372850358486176, + 0.01495644822716713, + -0.007703389506787062, + 0.024699974805116653, + -0.029694553464651108, + -0.010671480558812618, + -0.009784464724361897, + -0.012875373475253582, + 0.0055881985463202, + -0.01192694902420044, + -0.010958055034279823, + -0.0147790452465415, + 0.011039933189749718, + 0.03629940748214722, + -0.004609069786965847, + -0.009873166680335999, + 0.010712419636547565, + -0.016020867973566055, + -0.015898048877716064, + 0.012895843014121056, + -0.01858638972043991, + 0.014274128712713718, + 0.001206852961331606, + 0.0065877968445420265, + 0.006843667011708021, + -0.023348981514573097, + 0.01808147318661213, + -0.041949015110731125, + 0.0009185729431919754, + -0.019951028749346733, + -0.010732889175415039, + -0.03537145256996155, + 0.02046959102153778, + -0.02027854137122631, + 0.016430258750915527, + 0.0024392930790781975, + -0.0011522674467414618, + -0.036817971616983414, + -0.00623299041762948, + -0.009047559462487698, + -0.012711616232991219, + 0.005223157349973917, + -0.004148503765463829, + -0.025327708572149277, + -0.04263133555650711, + -0.027538424357771873, + -0.0014064315473660827, + 0.01533854752779007, + 0.014683520421385765, + 0.019009428098797798, + 0.011039933189749718, + -0.019650807604193687, + -0.03288780897855759, + -0.012056589126586914, + 0.0009919223375618458, + 0.020305834710597992, + -0.0068573132157325745, + 0.011572142131626606, + -0.012111174874007702, + -0.012513743713498116, + -0.028357207775115967, + -0.0041723852045834064, + -0.02142483927309513, + -0.0018849081825464964, + -0.017713019624352455, + 0.007137064356356859, + -0.01648484356701374, + -0.0030670270789414644, + -0.01122415903955698, + -0.002833332633599639, + -0.04563354328274727, + -0.012349987402558327, + 0.03425244987010956, + -0.009122614748775959, + -0.018886609002947807, + -0.030267702415585518, + 0.015966281294822693, + -0.0014942801790311933, + 0.026296602562069893, + 0.013462168164551258, + 0.01272526290267706, + -0.028166158124804497, + 0.012554682791233063, + -0.03425244987010956, + 0.013673687353730202, + 0.015829818323254585, + 0.017685726284980774, + -0.02602367475628853, + -0.01135380007326603, + -0.009265901520848274, + 0.01533854752779007, + -0.0087678087875247, + -0.006181816570460796, + -0.001169325434602797, + -0.024536216631531715, + -0.000779123802203685, + -0.07379969954490662, + 0.008747339248657227, + 0.013475814834237099, + -0.008720045909285545, + -0.01913224533200264, + 0.02369013987481594, + 0.0053664445877075195, + 0.01884566992521286, + 0.010473608039319515, + -0.01872285269200802, + -0.017849484458565712, + -0.016634954139590263, + 0.0016699775587767363, + 0.012186230160295963, + -0.021029094234108925, + -0.018136058002710342, + 0.03141399845480919, + 0.015365839935839176, + 0.021765999495983124, + 0.009409189224243164, + -0.002434175694361329, + 0.008672283962368965, + 0.011019463650882244, + 0.02755207009613514, + -0.021929755806922913, + -0.006703791208565235, + -0.024891022592782974, + -0.008058195933699608, + 0.005724662449210882, + 0.014124018140137196, + -0.0049331714399158955, + 0.006884606089442968, + -0.018040534108877182, + 0.027756765484809875, + 0.001409843098372221, + -0.005161748733371496, + 1.0941103028017096e-05, + 0.0441870242357254, + 0.0002933974901679903, + 0.06577561795711517, + -0.024604449048638344, + -0.04396868124604225, + 0.0192277692258358, + -0.04012040048837662, + -0.012268108315765858, + -0.011599435470998287, + 0.02512301132082939, + -0.0026269308291375637, + 0.00438390439376235, + -0.011879186145961285, + 0.011169574223458767, + 0.0010831825202330947, + -0.02082439698278904, + -0.023485444486141205, + 0.020237602293491364, + -0.021602243185043335, + -0.008508526720106602, + -0.0050798701122403145, + -0.0038244021125137806, + -0.028712013736367226, + 0.05223839730024338, + -0.006444509606808424, + 0.015679707750678062, + 0.011879186145961285, + -0.004148503765463829, + -0.011824600398540497, + -0.03700902312994003, + -6.247490091482177e-05, + 0.039874766021966934, + 0.009177200496196747, + -0.030185824260115623, + -0.022693954408168793, + 0.013857913203537464, + 0.03321532532572746, + 0.014683520421385765, + -0.008883803151547909, + 0.0037971092388033867, + 5.8743462432175875e-05, + 0.009204492904245853, + 0.02330804243683815, + 0.02171141281723976, + 0.02359461598098278, + -0.04072084277868271, + 0.01023479551076889, + 0.026160137727856636, + 0.013448521494865417, + -0.030213117599487305, + -0.011947418563067913, + -0.020101139321923256, + 0.011886009946465492, + 0.009177200496196747, + 0.014901862479746342, + 0.007689743302762508, + 0.0028930355329066515, + -0.009893636219203472, + -0.012745732441544533, + 0.010787474922835827, + -0.0030567923095077276, + 0.018763791769742966, + 0.03921973705291748, + 0.0050798701122403145, + 0.008713223040103912, + 0.0025842860341072083, + -0.021765999495983124, + -0.02375837229192257, + 0.0015386309241876006, + -0.010896645486354828, + -0.02480914443731308, + -0.008604051545262337, + 0.015802524983882904, + -0.006942603271454573, + 0.005932770203799009, + -0.020292188972234726, + 0.012704793363809586, + -0.014533409848809242, + 0.011967888101935387, + 0.0036742917727679014, + -0.016921529546380043, + -0.032696761190891266, + 0.02034677378833294, + 0.006717437878251076, + 0.007792090997099876, + 0.008699576370418072, + 0.009102145209908485, + 0.021834231913089752, + 0.0005322094075381756, + 0.022885004058480263, + -0.010227972641587257, + -0.0015650708228349686, + 0.00257916864939034, + -5.144051101524383e-05, + 0.015270315110683441, + 0.0035412393044680357, + -0.009702586568892002, + -0.006444509606808424, + -0.007068832404911518, + 0.004325907211750746, + -0.0013381995959207416, + 0.004970699083060026, + 0.10021912306547165, + 0.018381692469120026, + 0.017931362614035606, + 0.014642581343650818, + -0.004574953578412533, + -0.002057194011285901, + 0.017399152740836143, + 0.003943807911127806, + -0.01533854752779007, + -0.04372304677963257, + 0.017999595031142235, + -0.008297007530927658, + 0.0009381896234117448, + -0.0047591798938810825, + 0.004298614338040352, + 0.0005769866402260959, + -0.015011033974587917, + 0.033815763890743256, + -0.02318522334098816, + 0.021574949845671654, + 0.02617378532886505, + -0.008201482705771923, + 0.014301421120762825, + 0.027824997901916504, + -0.013011837378144264, + -0.018818378448486328, + 0.012452335096895695, + 0.00038465773104690015, + -0.0036742917727679014, + -0.018436279147863388, + -0.010691950097680092, + 0.0032597824465483427, + -0.08357051759958267, + -0.027975108474493027, + -0.0029783255886286497, + -0.024399753659963608, + 0.010248442180454731, + -0.010930761694908142, + 0.012056589126586914, + -0.008836040273308754, + 0.0013100538635626435, + 0.02640577405691147, + -0.002365943742915988, + -0.017358213663101196, + 0.000510886893607676, + -0.008310654200613499, + -0.021029094234108925, + -0.024781852960586548, + -0.02414047159254551 + ], + "metadata": { + "source": "INSPIRER_Schlussbericht.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 5, + "has_images": true, + "image_count": 29, + "detection_class_prob": 0.6591171622276306, + "coordinates": "CoordinatesMetadata(points=((1122.828857421875, 155.53517150878906), (1122.828857421875, 361.06524658203125), (1358.3359375, 361.06524658203125), (1358.3359375, 155.53517150878906)), system=)", + "links": [], + "last_modified": "2025-05-05T22:58:03", + "_known_field_names": "frozenset({'page_number', 'text_as_html', 'emphasized_text_contents', 'subject', 'data_source', 'links', 'coordinates', 'image_path', 'is_continuation', 'header_footer_type', 'sent_from', 'url', 'parent_id', 'detection_class_prob', 'emphasized_text_tags', 'last_modified', 'category_depth', 'page_name', 'attached_to_filename', 'bcc_recipient', 'orig_elements', 'languages', 'filetype', 'link_texts', 'file_directory', 'sent_to', 'key_value_pairs', 'image_base64', 'cc_recipient', 'link_urls', 'signature', 'image_mime_type', 'filename', 'detection_origin', 'table_as_cells', 'email_message_id', 'link_start_indexes'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "INSPIRER_Schlussbericht.pdf", + "parent_id": "1c51aaba3295e535d31a83c2392f0391", + "text_as_html": "
Projektlaufzeit01.08.2021 - 31.07.2024 (verl\u00e4ngert bis 31.10.2024)
F\u00f6rderkennzeichen165V8744
StichworteStadtentwicklung, Digitale B\u00fcrgerbeteiligung, Partizipation
und Akzeptanz, Augmented Reality, Extended Reality (XR),
AR-Tracking, Point Cloud Matching
ProjektleitungProf. Dr.-Ing. Volker Coors
Beteiligte ProfessorenProf. Dr.-Ing. Volker Coors
Gef\u00f6rderte Ma\u00dfnahmeForschungsprogramm zur Mensch-Technik-nteraktion
F\u00f6rderbereichTechnik zum Mensch bringen
FachhochschuleHochschule f\u00fcr Technik Stuttgart (HFT Stuttgart),
", + "id": "351a57f5-fe09-4ea6-8750-b2c5267a9700", + "processing_timestamp": "2025-05-05T23:07:23.860264", + "chunk_number": 2, + "total_chunks": 19, + "chunking_strategy": "hybrid", + "word_count": 465 + } +} \ No newline at end of file diff --git a/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000003.json b/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000003.json new file mode 100644 index 0000000000000000000000000000000000000000..7d14a77ab5853a4de130ca7160beeed86fcf69d5 --- /dev/null +++ b/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000003.json @@ -0,0 +1,1570 @@ +{ + "id": "2b86db2d-408b-1992-e1b5-8a9f00000003", + "content": "In der ersten Evaluationsrunde entstanden Anforderungen an den Demonstrator, die im ersten Entwurf der Spezifikation dokumentiert wurden. Im weiteren Verlauf f\u00fchrten die R\u00fcckmeldungen der Beteiligten zur Entwicklung des ersten Zwischendemonstrators, der unter realen Bedingungen getestet wurde. W\u00e4hrend der zweiten Projektphase wurde die partizipative Evaluation intensiviert. In Workshops und Anwendungsszenarien, unter anderem in Fellbach, wurde die Technologie in der Stadtplanung erprobt. Die R\u00fcckmeldungen flossen in die Weiterentwicklung des Demonstrators ein, wodurch die Benutzerfreundlichkeit und technische Umsetzung verbessert wurden. Die Evaluationsberichte (D2.1, D2.2, D2.3, D2.4) wurden vom Projektpartner Hochschule f\u00fcr Wirtschaft und Recht Berlin (HWR) erstellt. Die iterative Vorgehensweise hat sich bew\u00e4hrt und sichergestellt, dass B\u00fcrgerinnen und Stakeholder aktiv an der Gestaltung der AR/VR-Technologie mitwirken konnten. Die kontinuierliche Einbindung der Nutzerinnen hat ma\u00dfgeblich dazu beigetragen, die Akzeptanz und Praxistauglichkeit der entwickelten L\u00f6sungen zu steigern. ## II.1.3 Arbeitspaket 4: Transfer zur Stadtplanung\n\nDamit V/AR-Technologien in der Stadtplanung als Kommunikations- und Beteiligungsinstrumente etabliert werden k\u00f6nnen, war es notwendig, die Planungsprozesse besser zu verstehen und geeignete Methoden f\u00fcr deren Integration zu entwickeln. Neben der Nachfrage durch B\u00fcrger*innen (Pull-Faktoren) sollten insbesondere Stadtplanungsb\u00fcros motiviert werden, solche Technologien aktiv zu nutzen (Push-Faktoren). Zu Beginn des Projekts wurde eine umfassende Analyse \u00f6ffentlich getragener Bauvorhaben durchgef\u00fchrt, um bestehende Abl\u00e4ufe und Kommunikationsstrukturen zu erfassen (D4.1). In Workshops und Gespr\u00e4chen mit Planungsb\u00fcros sowie Stadtverwaltungen wurden zentrale Hemmnisse und Potenziale f\u00fcr den Einsatz von V/AR-Technologien identifiziert. Diese Erkenntnisse flossen in die Entwicklung einer Planungsmethodik f\u00fcr V/AR-gest\u00fctzte B\u00fcrgerbeteiligung ein (D4.2), die neben einer Prozessbeschreibung auch Argumentationshilfen f\u00fcr die Einf\u00fchrung dieser Technologien in die Planungspraktiken umfasst. Im weiteren Projektverlauf wurden zwei konkrete Bauvorhaben als Fallstudien evaluiert (D4.3). Dabei wurde in Zusammenarbeit mit der Stadt Fellbach untersucht, wie V/AR-Anwendungen den Planungsprozess und die Kommunikation zwischen B\u00fcrger*innen und Stadtverwaltungen unterst\u00fctzen k\u00f6nnen. Die dabei gewonnenen Erkenntnisse erm\u00f6glichten eine gezielte Anpassung der Methodik und lieferten wertvolle Einsichten f\u00fcr den praktischen Einsatz solcher Technologien. Um die gewonnenen Erkenntnisse nachhaltig in die Stadtplanung zu \u00fcbertragen, wurden abschlie\u00dfend Transferaktivit\u00e4ten durchgef\u00fchrt, darunter die \u00dcberarbeitung der Kommunikationspl\u00e4ne und die Dokumentation der Ergebnisse in einem \u00fcberarbeiteten Bericht (D4.4). Die Evaluation zeigte, dass eine fr\u00fchzeitige Einbindung von Stadtverwaltungen und Planungsb\u00fcros entscheidend f\u00fcr den erfolgreichen Einsatz von V/AR-Technologien in der B\u00fcrgerbeteiligung ist. ## II.1.4 Arbeitspaket 5: Pointcloud-Server\n\nF\u00fcr die Bereitstellung von 3D-Punktwolken zur Nutzung in der AR-App wurde eine Serverkomponente entwickelt, die eine r\u00e4umlich eingeschr\u00e4nkte und semantisch analysierte Teilmenge der Punktwolke extrahierte und an den AR-Client lieferte. Die Analyse der Punktwolken erfolgte unter Einsatz von Deep-Learning-Methoden zur Feature-Extraktion. In der ersten Projektphase wurde das Datenmodell f\u00fcr den 3D-Punktwolken-Service definiert und die relevanten Schnittstellen spezifiziert (D5.1). Dabei entstand eine Basisversion des Point- Cloud-Servers, die erste Testdaten aus dem HFT-Campus verarbeiten konnte. Anschlie\u00dfend wurden Methoden zur Datenaufbereitung und Analyse entwickelt (D5.2). Diese umfassten Vorverarbeitungsschritte wie Normalenberechnung, Reduktion der Punktwolkengr\u00f6\u00dfe und die Anwendung von globalen sowie lokalen Registrierungsverfahren zur verbesserten Positionierung von Objekten. Parallel dazu wurde die Serverkomponente konzipiert und implementiert, sodass eine erste Integration in den AR-Workflow erfolgte.", + "embedding": [ + 0.011751019395887852, + 0.003025098005309701, + 0.009003067389130592, + -0.014472095295786858, + -0.005677307490259409, + 0.016729580238461494, + -0.015587400645017624, + -0.01771051250398159, + -0.0005899865063838661, + -0.050202179700136185, + 0.008700725622475147, + 0.009473376907408237, + 0.0043436442501842976, + -0.0032669713255017996, + -0.025181714445352554, + -0.00928525347262621, + 0.03308291360735893, + -0.012705075554549694, + 0.017871761694550514, + -0.0007608935702592134, + -0.009150879457592964, + 0.011945861391723156, + 0.01717301644384861, + -0.001023762975819409, + -0.02004862204194069, + 0.02360953763127327, + 0.027062952518463135, + -0.03227667137980461, + -0.0022541263606399298, + -0.0015671384753659368, + 0.009480096399784088, + -0.014095847494900227, + 0.005260747857391834, + -0.011025398969650269, + -0.011764456517994404, + -0.018879568204283714, + -0.014230221509933472, + 0.003203143598511815, + 0.017280515283346176, + 0.012301952578127384, + 0.020908616483211517, + -0.016729580238461494, + 0.003414782928302884, + -0.02106986567378044, + 0.0026992405764758587, + 0.020209871232509613, + 0.003809507004916668, + 0.01569489948451519, + -0.015721775591373444, + 0.00647347467020154, + 0.017683638259768486, + 0.023999221622943878, + -0.029616061598062515, + 0.005509339738637209, + -0.0167698934674263, + 0.00848572701215744, + -0.03749038651585579, + 0.028729192912578583, + -0.005566448904573917, + -0.02481890469789505, + -0.012254921719431877, + 0.01818082109093666, + -0.00928525347262621, + 0.012469920329749584, + -0.033432286232709885, + 6.277792272157967e-05, + -0.01629958301782608, + 0.0060837892815470695, + 0.0028487318195402622, + 5.779138155048713e-05, + 0.0449615903198719, + 0.016380207613110542, + 0.03399666026234627, + -0.018812380731105804, + 0.03902225196361542, + -0.00580160366371274, + 0.031094176694750786, + -0.027734823524951935, + -0.017025204375386238, + 0.0024959996808320284, + 0.001188371330499649, + -0.008707444183528423, + -0.01749551296234131, + 0.039479125291109085, + 0.014808030799031258, + 0.0164339579641819, + -0.002386820735409856, + 0.008143072947859764, + -0.004229426383972168, + -0.000400182994781062, + -0.005620198789983988, + 0.04066161811351776, + -0.010212435387074947, + 0.016863955184817314, + -0.012967105023562908, + 0.009742125868797302, + 0.014068973250687122, + 0.012799137271940708, + -0.00993024930357933, + -0.016528019681572914, + -0.003513883799314499, + -0.00011484789865789935, + -0.03474915400147438, + -0.011798050254583359, + -0.022709229961037636, + -0.00046527048107236624, + -0.012973823584616184, + -0.00018938355788122863, + 0.011025398969650269, + -0.006560817826539278, + -0.014136159792542458, + 0.030556680634617805, + -0.02670014277100563, + -0.004316769540309906, + 0.0018778786761686206, + -0.036657266318798065, + 0.02428140863776207, + -0.005301060155034065, + -0.004686298314481974, + 0.001515068463049829, + 0.026794204488396645, + 0.01133445929735899, + 0.015090216882526875, + -0.02206423506140709, + 0.04308035224676132, + 0.01358522567898035, + -0.00727635994553566, + 0.0022826807107776403, + -0.00650370866060257, + -0.01421678438782692, + -0.015950210392475128, + 0.001668758923187852, + 0.01992768608033657, + 0.0029629499185830355, + -0.006486911792308092, + -0.00959431380033493, + -0.028326069936156273, + -0.0022205328568816185, + -0.023891722783446312, + -0.027479512616991997, + 0.0023061963729560375, + 0.008754475973546505, + -0.013961473479866982, + -0.027681073173880577, + -0.0027529902290552855, + 0.02561171166598797, + 0.007195735350251198, + 0.024160470813512802, + 0.00925837829709053, + -0.020021747797727585, + -0.014646781608462334, + -0.034372907131910324, + -0.005301060155034065, + -0.005640354938805103, + -0.017052078619599342, + -0.012093673460185528, + -0.01690426655113697, + 0.011824924498796463, + -0.019967997446656227, + -0.012678200379014015, + 0.013101479038596153, + 0.004894578363746405, + -0.012086953967809677, + 0.002375063020735979, + 0.018610818311572075, + 0.014700531028211117, + -0.0015998921589925885, + -0.0019165112171322107, + 0.003597867675125599, + -0.006869878154247999, + -0.014337721280753613, + 0.018395820632576942, + -0.03439978137612343, + 0.02072049304842949, + -0.004709813743829727, + -0.013081323355436325, + 0.00959431380033493, + -0.005294341128319502, + -0.02561171166598797, + -0.02053236961364746, + -0.00658769253641367, + -0.020156120881438255, + 0.024765154346823692, + 0.0108977435156703, + -0.022507669404149055, + -0.007800419349223375, + 0.013618819415569305, + 0.016729580238461494, + -0.012335546314716339, + 0.004441065713763237, + 0.03681851550936699, + -0.0033929471392184496, + 0.020626431331038475, + -0.01898706704378128, + -0.6222060322761536, + -0.005512699484825134, + 0.0154261514544487, + -0.006769097410142422, + 0.004273097962141037, + 0.01492896769195795, + 0.016662394627928734, + -0.0014394830213859677, + -0.01455271989107132, + 0.05353466048836708, + -0.0005929259350523353, + -0.00716214207932353, + -0.0041219270788133144, + -0.013430695980787277, + -0.009587595239281654, + -0.01227507833391428, + -0.0064969900995492935, + -0.017414888367056847, + 0.02950856275856495, + 0.02274954319000244, + -0.03950599953532219, + 0.017925510182976723, + -0.0032333778217434883, + -0.010138529352843761, + -0.016622081398963928, + 0.008418540470302105, + -0.00424286350607872, + -0.0011472192127257586, + -0.00371544505469501, + 0.008196823298931122, + 0.0009448181954212487, + 0.023125790059566498, + -0.017132703214883804, + 0.04017787054181099, + 0.038941625505685806, + 0.0025833428371697664, + -0.002428812673315406, + 0.014136159792542458, + 0.002941114129498601, + 0.01830175891518593, + -0.00544887175783515, + 0.029427938163280487, + 0.023327352479100227, + 0.017764262855052948, + 0.011885393410921097, + -0.006315584760159254, + 0.029293563216924667, + -0.007739950902760029, + -0.0171058289706707, + -0.01631302200257778, + 0.004938249941915274, + -0.00389013160020113, + -0.005542933475226164, + 0.0014126081950962543, + 0.025181714445352554, + 0.0033979862928390503, + 0.004780360031872988, + -0.010232591070234776, + -0.015842711552977562, + -0.004195832647383213, + -0.009560720063745975, + -0.007404015399515629, + -0.0029259969014674425, + -0.041548486799001694, + -0.009003067389130592, + 0.03851163014769554, + -0.010024311020970345, + -0.010790243744850159, + 0.0016486027743667364, + -0.023515475913882256, + 0.0011211843229830265, + 0.034104157239198685, + -0.01283944956958294, + -0.016259271651506424, + 0.016044272109866142, + 0.0105618080124259, + 0.013598663732409477, + -0.02542358823120594, + 0.006711988709867001, + 0.01650114543735981, + 0.0002078600082313642, + -0.016151772812008858, + -0.015587400645017624, + 0.01663551852107048, + 0.005489184055477381, + -0.012046641670167446, + -0.02614920772612095, + -0.007377140689641237, + -0.0037389604840427637, + 0.014391470700502396, + 0.016487708315253258, + 0.009359159506857395, + -0.035044778138399124, + -0.0031023630872368813, + -0.008431977592408657, + 0.049799058586359024, + 0.011079148389399052, + 0.033244162797927856, + -0.016689268872141838, + -0.04681595042347908, + -0.03512540087103844, + -0.005395121872425079, + 0.035528525710105896, + 0.00118669169023633, + 0.03281416743993759, + -0.0006735504139214754, + -0.029293563216924667, + -0.001364737399853766, + 0.05039030313491821, + -0.02609545923769474, + -0.02878294140100479, + -0.009372596628963947, + -0.011240397579967976, + -0.019538000226020813, + 0.009936967864632607, + -0.02703607827425003, + 0.016071148216724396, + -0.01486178021878004, + 0.016662394627928734, + -0.009137441404163837, + 0.008223697543144226, + -0.02702264115214348, + 0.030019184574484825, + -0.002460726536810398, + -0.011401645839214325, + 0.0031325973104685545, + 0.006050196010619402, + -0.011233678087592125, + -0.029616061598062515, + -0.003984193317592144, + 0.005139810964465141, + -0.005092780105769634, + 0.027681073173880577, + -0.00571761978790164, + 0.03434603288769722, + -0.002845372539013624, + 0.012174297124147415, + -0.003906928468495607, + -0.002682443941012025, + -0.025463899597525597, + -0.027345137670636177, + 0.013686006888747215, + 0.011092585511505604, + -0.03415790945291519, + -0.017804574221372604, + -0.0368722639977932, + -0.011515864171087742, + 0.01937675103545189, + -0.00022171734599396586, + 0.01070290058851242, + -0.025235464796423912, + -0.0201158095151186, + -0.0007554346229881048, + 0.02401266060769558, + 0.017253641039133072, + 0.006090508308261633, + 0.005932618398219347, + -0.028326069936156273, + 0.009560720063745975, + -0.03931787610054016, + 0.010313215665519238, + 0.003424861002713442, + -0.01488865539431572, + -0.026740454137325287, + 0.01461990736424923, + -0.015184278599917889, + 0.015103654004633427, + 0.03367416188120842, + -0.027210764586925507, + -0.03362040966749191, + 0.020975803956389427, + 0.007296516094356775, + -0.011677113361656666, + 0.027949823066592216, + -0.020975803956389427, + 0.027049515396356583, + -0.026122333481907845, + -0.02369016222655773, + 0.0006462556775659323, + -0.011314302682876587, + -7.4588147981558e-05, + 0.02240017056465149, + 0.007054642774164677, + -0.0027076390106230974, + -0.0036952889058738947, + 0.007390577811747789, + -0.0010934695601463318, + 0.01650114543735981, + -0.0097219692543149, + 0.008391665294766426, + 0.016756456345319748, + 0.04950343444943428, + -0.0039002096746116877, + 0.016662394627928734, + -0.014982717111706734, + -0.002202056348323822, + -0.016460832208395004, + 0.004387315828353167, + 0.0007478761253878474, + 0.01737457700073719, + 0.03735601156949997, + 0.023152664303779602, + 0.028057321906089783, + 0.013813662342727184, + 0.007632451597601175, + -0.028137946501374245, + -0.010669306851923466, + -0.007921355776488781, + 0.02152673713862896, + -0.0019249096512794495, + 0.010427433997392654, + -0.007377140689641237, + -0.025746086612343788, + -0.00046107129310257733, + 0.0035239618737250566, + 0.01992768608033657, + -0.0044242688454687595, + -0.002047525951638818, + -0.011381490156054497, + 0.012060079723596573, + -0.005878868978470564, + -0.005297700874507427, + 0.03542102500796318, + 0.0020609635394066572, + -0.007417452987283468, + -0.00045309282722882926, + 0.00306876958347857, + 0.03394290804862976, + 0.03380853310227394, + -0.01621895842254162, + -0.0027076390106230974, + 0.006174492184072733, + 0.008411821909248829, + -0.006429802626371384, + 0.013303040526807308, + 0.018691442906856537, + 0.023448288440704346, + -0.008163229562342167, + 0.02762732468545437, + 0.008270728401839733, + -0.0026925220154225826, + 0.012046641670167446, + 0.010360246524214745, + -0.012859605252742767, + 0.023327352479100227, + -0.007209172938019037, + 0.02648514322936535, + 0.029078565537929535, + -0.013464289717376232, + 0.021311739459633827, + -0.015345527790486813, + 0.009137441404163837, + -0.00778026320040226, + 0.0031930655241012573, + -0.0011085866717621684, + -0.013235853053629398, + 0.029212938621640205, + -0.01756270043551922, + 0.03305603936314583, + 0.030610430985689163, + 0.020827991887927055, + 0.023434851318597794, + 0.027143577113747597, + 0.0017082312842831016, + -0.019215501844882965, + 0.003507165238261223, + -0.023219851776957512, + -0.023219851776957512, + -0.03018043376505375, + -0.01227507833391428, + 0.02214485965669155, + -0.026673268526792526, + -0.005630276631563902, + 0.005757932085543871, + 0.002472484251484275, + -0.00744432769715786, + 0.0059998054057359695, + 0.00035252218367531896, + 0.018879568204283714, + 0.023246727883815765, + -0.02561171166598797, + -0.015869585797190666, + -0.0028084195218980312, + 0.008767913095653057, + 0.0035676334518939257, + -0.017011767253279686, + -0.011159772984683514, + 0.01137477159500122, + -0.005012155510485172, + -0.0004967644345015287, + -0.019564876332879066, + -0.01951112598180771, + -0.0018325274577364326, + -0.006513786502182484, + -0.004991999361664057, + 0.01730738952755928, + 0.02789607271552086, + -0.009742125868797302, + -0.013867411762475967, + 0.0017586216563358903, + -0.013800224289298058, + 0.014176472090184689, + -0.0035709929652512074, + -0.04592908173799515, + 0.02636420726776123, + -0.03724851459264755, + -0.0035609148908406496, + -0.02897106483578682, + -0.0076055764220654964, + -0.028621692210435867, + -5.931358828092925e-05, + -0.0033627129159867764, + 0.00363817997276783, + 0.022185171023011208, + -0.007625732570886612, + 0.006533942651003599, + -0.0007163821719586849, + 0.00028512513381429017, + 0.03829663246870041, + 0.007068079896271229, + -0.014351158402860165, + -0.021378926932811737, + 0.0016956337494775653, + 0.002334750723093748, + 0.031551048159599304, + 0.019228940829634666, + 0.0023952191695570946, + 0.007995261810719967, + -0.02932043932378292, + -0.016998330131173134, + -0.031900420784950256, + -0.04111848771572113, + 0.022252358496189117, + 0.017253641039133072, + 0.005045749247074127, + -0.02776169776916504, + 0.044235967099666595, + -0.014646781608462334, + 0.005462308879941702, + 0.009023224003612995, + 0.0020643228199332952, + 0.004934890661388636, + 0.010346809402108192, + 0.004867703188210726, + 0.007068079896271229, + 0.0005416958010755479, + 0.00892244279384613, + 0.031362924724817276, + 0.0058721499517560005, + -0.0019131519366055727, + 0.034722279757261276, + 0.0014965920709073544, + 0.006520505528897047, + -0.020572680979967117, + 0.010622275993227959, + 0.02226579561829567, + 0.00838494673371315, + 0.022574856877326965, + -0.011260553263127804, + 0.02206423506140709, + -0.0060300398617982864, + 0.01655489392578602, + 0.013813662342727184, + 0.0036919296253472567, + 0.014915529638528824, + 0.018893005326390266, + 0.009513689205050468, + -0.006312225479632616, + 0.00828416645526886, + 0.009372596628963947, + 0.016796767711639404, + 0.005966212134808302, + -0.009688375517725945, + -0.017334265634417534, + -0.008969474583864212, + -0.007753388024866581, + -0.01930956542491913, + -0.010313215665519238, + -0.01971268653869629, + -0.005983009003102779, + 0.012530389241874218, + -0.010487901978194714, + -0.0014092487981542945, + -0.01560083869844675, + -0.03797413408756256, + -0.005166685674339533, + -0.01053493283689022, + -0.01113961637020111, + -0.03165854886174202, + -0.004652704577893019, + -0.024845778942108154, + -0.0009515369310975075, + -0.002719396725296974, + -0.005929259117692709, + -0.0032787290401756763, + -0.0011329420376569033, + -0.033566661179065704, + 0.005922540556639433, + 0.005341372452676296, + 0.0010481183417141438, + 0.023246727883815765, + -0.01053493283689022, + -0.014875218272209167, + 0.011273990385234356, + -0.005962852854281664, + -0.010850712656974792, + 0.020827991887927055, + -0.02066674269735813, + -0.01984706148505211, + -0.0015629392582923174, + -0.0375710092484951, + -0.01589646190404892, + -0.003547477535903454, + 0.008982911705970764, + -0.010487901978194714, + -0.0007587940199300647, + 0.009150879457592964, + -0.006577614229172468, + -0.008882131427526474, + 0.0177776999771595, + -0.0020576040260493755, + 0.016017397865653038, + 0.012933511286973953, + -0.03816225752234459, + 0.01032665278762579, + -0.017804574221372604, + 0.0012622771319001913, + 0.0021029554773122072, + 0.014458658173680305, + 0.0023935395292937756, + -0.035044778138399124, + -0.005180123262107372, + -0.011079148389399052, + -0.0017603012965992093, + 0.0024355314671993256, + 0.0014613188104704022, + 0.009009786881506443, + -0.009520407766103745, + 0.010474464856088161, + 0.00959431380033493, + -0.005764650646597147, + 0.00015673483721911907, + 0.047864072024822235, + 0.002514476189389825, + 0.006802691146731377, + -0.027197327464818954, + 0.04660095274448395, + 0.006614567246288061, + -0.007370421662926674, + 0.03294853866100311, + 0.024778591468930244, + 0.009728687815368176, + -0.022440481930971146, + 0.006816128734499216, + -0.007182298228144646, + 0.002729474799707532, + 0.0022709229961037636, + -0.003769194707274437, + -0.021916422992944717, + -0.003725523129105568, + 0.00744432769715786, + 0.002731154439970851, + 0.01697145402431488, + 0.00127067556604743, + -0.017791137099266052, + 0.008512602187693119, + 0.012248203158378601, + -0.014109285548329353, + 0.0013731358340010047, + -0.028191694989800453, + -0.02870231680572033, + 0.02234642021358013, + -0.048535943031311035, + 0.028621692210435867, + -0.02461734414100647, + -0.005395121872425079, + -0.018476445227861404, + -0.007524952292442322, + -0.018140509724617004, + -0.031040428206324577, + 0.009910093620419502, + -0.02266891859471798, + 0.02441578172147274, + 0.022776417434215546, + 0.029884809628129005, + 0.0064130062237381935, + 0.03708726540207863, + 0.002371703740209341, + -0.018678005784749985, + -0.0008079245453700423, + -0.01697145402431488, + -0.008324477821588516, + -0.030637305229902267, + 0.02159392461180687, + 0.021217677742242813, + 0.019967997446656227, + 0.014042098075151443, + 0.005734416656196117, + 0.010689463466405869, + 0.04286535084247589, + -0.023394538089632988, + -0.005092780105769634, + -0.0027378732338547707, + -0.023985784500837326, + -0.01749551296234131, + 0.006560817826539278, + 0.019349876791238785, + 0.005220435559749603, + -0.02582671120762825, + 0.025316089391708374, + 0.017522389069199562, + -0.0006332381744869053, + 0.020102372393012047, + -0.004461221396923065, + 0.02253454364836216, + -0.009769000113010406, + 0.020908616483211517, + 0.02113705314695835, + 0.017078954726457596, + -0.02227923274040222, + -0.008022136054933071, + -0.030825428664684296, + -0.0007172219920903444, + 0.03829663246870041, + -0.0019198706140741706, + 0.008774631656706333, + 0.008868693374097347, + -0.0012387617025524378, + -0.008290885016322136, + 0.018274882808327675, + -0.0010069662239402533, + -0.023515475913882256, + -0.00035903090611100197, + -0.021217677742242813, + -0.004068177193403244, + -0.016917705535888672, + -0.012799137271940708, + 0.004054739605635405, + 0.009587595239281654, + 0.0059561338275671005, + 0.009009786881506443, + 0.03058355487883091, + -0.008532757870852947, + -0.007061361335217953, + 0.022158296778798103, + -0.008741037920117378, + 0.03918350115418434, + 0.005274184979498386, + 0.029965434223413467, + 0.008909005671739578, + -0.02515484020113945, + -0.021352050825953484, + -0.0784744992852211, + 0.010817118920385838, + -0.009910093620419502, + 0.01831519603729248, + 0.01857050694525242, + -0.006920268293470144, + -0.018933316692709923, + 0.022131422534585, + 0.010783525183796883, + -0.03138979896903038, + -0.02387828566133976, + 0.0308523029088974, + 0.01448553241789341, + 0.000887709204107523, + -0.0031880266033113003, + -0.015009592287242413, + -0.020142683759331703, + 0.013020854443311691, + -0.006433162372559309, + -0.0010766728082671762, + 0.01631302200257778, + 0.0019198706140741706, + -0.005200279410928488, + 0.030099809169769287, + -0.002329711802303791, + 0.02829919569194317, + 0.007404015399515629, + -0.020021747797727585, + 0.012113829143345356, + 0.006876596715301275, + -0.0026555689983069897, + 0.024227658286690712, + -0.0006399568519555032, + 0.01730738952755928, + -0.0014218464493751526, + -0.000667671556584537, + 0.0023179540876299143, + 0.008183385245501995, + -0.0039203655906021595, + 0.002074400894343853, + -0.00865369476377964, + 0.025383276864886284, + 0.0007835692376829684, + -0.008311040699481964, + 0.001280753524042666, + -0.00033782501122914255, + 0.019470812752842903, + 0.0006193808512762189, + -0.0037725542206317186, + -0.028675442561507225, + -0.013034292496740818, + 0.008290885016322136, + 0.018006134778261185, + -0.008203541859984398, + -0.012456483207643032, + -0.009641344659030437, + 0.009896655566990376, + -0.01570833846926689, + 0.006463396362960339, + 0.014512407593429089, + 0.00045057330862618983, + -0.03902225196361542, + -0.022453919053077698, + 0.019752999767661095, + -0.02086830511689186, + 0.0214595515280962, + -0.0013554991455748677, + 0.004232785664498806, + -0.006194647867232561, + 0.025141403079032898, + -0.042354729026556015, + 0.004803875461220741, + 0.03453415632247925, + -0.01367928832769394, + -0.015184278599917889, + 0.009036661125719547, + -0.005505980458110571, + -0.014136159792542458, + 0.034776028245687485, + -0.010736494325101376, + -0.04340285062789917, + -0.005556371062994003, + -0.0005479945684783161, + 0.009641344659030437, + -0.01724020205438137, + -0.0026555689983069897, + 0.02803044579923153, + -0.005660511087626219, + 0.005210357252508402, + 0.00046359081170521677, + 0.002546390052884817, + 0.006342459470033646, + 0.015815837308764458, + -0.011488988995552063, + 0.03184667229652405, + -0.034722279757261276, + 0.012113829143345356, + 0.014955841936171055, + 0.004313410259783268, + -0.015076778829097748, + -0.045042213052511215, + -0.006920268293470144, + -1.7269177988055162e-05, + 0.017146140336990356, + -0.032088544219732285, + -0.006960580591112375, + -0.008028855547308922, + -0.009614470414817333, + -0.012826012447476387, + 0.004370518960058689, + 0.005371606443077326, + -0.002032408956438303, + 0.012019767425954342, + 0.0007373781409114599, + -0.01924237795174122, + -0.0006151816342025995, + 0.014189910143613815, + -0.016622081398963928, + 0.00028953427681699395, + -0.014794593676924706, + -0.028084196150302887, + 0.0018510038498789072, + -0.01300741732120514, + 0.039613496512174606, + 0.03542102500796318, + -0.029427938163280487, + -0.0022658840753138065, + -0.03340541198849678, + -0.041817232966423035, + -0.007632451597601175, + -0.022897353395819664, + -0.001730067073367536, + -0.005398481152951717, + 0.004064817912876606, + 0.002469124970957637, + 0.02609545923769474, + 0.005217076279222965, + 0.014015222899615765, + -0.023932036012411118, + -0.02522202767431736, + 0.0009003067971207201, + -0.023394538089632988, + 0.02696889080107212, + 0.0016612004255875945, + -0.07261578738689423, + 0.00023032567696645856, + 0.011368053033947945, + 0.0008961075800471008, + 0.008344634436070919, + 0.015049904584884644, + -0.009742125868797302, + -0.00501551479101181, + 0.004995358642190695, + 0.019887372851371765, + -0.015479901805520058, + 0.014512407593429089, + 0.027331700548529625, + -0.0043402849696576595, + 0.013242571614682674, + -0.001817410346120596, + -0.006443240214139223, + -0.024388907477259636, + 0.002506077755242586, + 0.007968386635184288, + -0.005378325004130602, + 0.004582158289849758, + 0.022722667083144188, + -0.02139236405491829, + -0.012154141440987587, + -0.016998330131173134, + 0.014404908753931522, + 0.005344731733202934, + -0.004615752026438713, + 0.011818205937743187, + 0.00682620657607913, + 0.008767913095653057, + -0.014902092516422272, + 0.013618819415569305, + -0.026928579434752464, + 0.028272319585084915, + 0.00649027107283473, + -0.009580876678228378, + 0.013390383683145046, + -0.023300476372241974, + -0.01294022984802723, + -0.015291777439415455, + 0.015278340317308903, + -0.002679084427654743, + -0.012355702929198742, + -0.017885198816657066, + 0.015278340317308903, + 0.00633574090898037, + 0.019672375172376633, + 0.022440481930971146, + -0.008297603577375412, + -0.003591149114072323, + -0.01556052640080452, + -0.016917705535888672, + 0.007437609136104584, + 0.004021146334707737, + -0.003765835426747799, + 0.003641539253294468, + -0.0271704513579607, + 0.009439784102141857, + 0.021620800718665123, + 0.00355419609695673, + -0.00633574090898037, + 0.012154141440987587, + 0.20113122463226318, + 0.00675566028803587, + -0.011106022633612156, + 0.01099852379411459, + -0.02073393017053604, + 0.010293059051036835, + 0.013242571614682674, + 0.005902384407818317, + 0.008546195924282074, + 0.025719210505485535, + 0.002034088596701622, + 0.016124896705150604, + 0.011005242355167866, + -0.0007092435262165964, + 0.01488865539431572, + -0.015735212713479996, + -0.027210764586925507, + -0.002511116908863187, + 0.0008919083629734814, + 0.03254541754722595, + 0.029750436544418335, + -0.0342116579413414, + -0.0030015825759619474, + -0.009070254862308502, + 0.043779097497463226, + -0.010796962305903435, + -0.008727600798010826, + -0.013840536586940289, + 0.0211236160248518, + 0.0062416791915893555, + -0.010514777153730392, + -0.011522582732141018, + 0.014364596456289291, + -0.0038733347319066525, + 0.006100586149841547, + -0.021701425313949585, + 0.02019643411040306, + 0.009869781322777271, + 0.026847954839468002, + 0.009124004282057285, + -0.012758824974298477, + -0.010689463466405869, + -0.013168666511774063, + -0.028218571096658707, + -0.0011749339755624533, + 0.018194260075688362, + -0.001990417018532753, + -0.002640452003106475, + 0.016460832208395004, + -0.024066409096121788, + -0.024577030912041664, + -0.004021146334707737, + 0.013578507117927074, + 0.022359857335686684, + -0.010501339100301266, + 0.008431977592408657, + -0.005045749247074127, + 0.0002832355094142258, + -0.0023112352937459946, + 0.01878550462424755, + -0.03676476702094078, + -0.011394927278161049, + 0.0038330224342644215, + 0.011394927278161049, + -0.03348603844642639, + -0.013591945171356201, + -0.001128742820583284, + 0.004562002141028643, + 0.002302836859598756, + -0.015090216882526875, + 0.021634237840771675, + -0.008431977592408657, + -0.023125790059566498, + 0.013289603404700756, + -0.016944579780101776, + -0.030610430985689163, + 0.005929259117692709, + 0.025732649490237236, + 0.019806748256087303, + 0.03125542774796486, + -0.00543543417006731, + 0.01327616535127163, + -0.0007676123059354722, + -0.030744804069399834, + -0.013161947950720787, + -0.026001397520303726, + 0.04700407758355141, + 0.002336430363357067, + -0.012409452348947525, + -0.018127072602510452, + -0.03676476702094078, + -0.00878135021775961, + -0.007498077116906643, + -0.0298579353839159, + 0.008935880847275257, + 0.00151338882278651, + 0.030234182253479958, + 0.008532757870852947, + -0.009681656956672668, + -0.0030166995711624622, + -0.013504602015018463, + 0.057512134313583374, + 0.03609289601445198, + -0.01655489392578602, + -0.016743019223213196, + 0.021956736221909523, + 0.00388341280631721, + 0.024738280102610588, + 0.016003960743546486, + 0.004108489491045475, + -0.0036146645434200764, + -0.03453415632247925, + 0.004817313048988581, + -0.011730862781405449, + 0.012268359772861004, + 0.024805467575788498, + -0.005002077668905258, + -0.016460832208395004, + 0.0016746377805247903, + -0.0007222610292956233, + -0.01492896769195795, + 0.0014319245237857103, + -0.000202506038476713, + 0.008673851378262043, + -0.0015243067173287272, + -0.03241104260087013, + -0.01749551296234131, + -0.003416462568566203, + 0.0039170063100755215, + -0.004138723481446505, + 0.029481686651706696, + -0.025705773383378983, + 0.021956736221909523, + 0.008841819129884243, + 0.007094955071806908, + -0.004538486711680889, + 0.018476445227861404, + -0.033163540065288544, + -0.011556176468729973, + -0.008532757870852947, + 0.02455015666782856, + 0.01421678438782692, + 0.010736494325101376, + 0.015251465141773224, + -0.0023498679511249065, + 0.016151772812008858, + 0.010817118920385838, + 0.004434346687048674, + -0.023932036012411118, + -0.006735504139214754, + 0.004867703188210726, + -0.003641539253294468, + -0.0064969900995492935, + -0.031551048159599304, + 0.023636411875486374, + -0.002800021320581436, + -0.014015222899615765, + -0.005710901226848364, + 0.0045922365970909595, + -0.009459939785301685, + -0.0217954870313406, + -0.015291777439415455, + 0.008163229562342167, + -0.012826012447476387, + -0.012725231237709522, + 0.0007314992253668606, + -0.1703864187002182, + 0.019417064264416695, + 0.020008310675621033, + -0.046520330011844635, + 0.01631302200257778, + -0.002257485641166568, + 0.009816030971705914, + -0.002800021320581436, + -0.022789854556322098, + 0.013813662342727184, + 0.017078954726457596, + 0.005492543336004019, + -0.005250669550150633, + -0.014512407593429089, + 0.012624450959265232, + -0.008122917264699936, + -0.028084196150302887, + 0.01729395240545273, + 0.02964293584227562, + 0.025033902376890182, + 0.012315390631556511, + -0.01689082942903042, + -0.0028067398816347122, + 0.006298787891864777, + 0.004803875461220741, + 0.009486814960837364, + -0.025114526972174644, + 0.02690170332789421, + -0.007289797533303499, + -0.022843604907393456, + 0.006926987320184708, + -0.0064533185213804245, + 0.0422741062939167, + -0.016648955643177032, + 0.0059124622493982315, + -0.02172829955816269, + -0.0042059109546244144, + 0.0042596603743731976, + -0.006893393583595753, + 0.05111592635512352, + 0.014767718501389027, + 0.03160480037331581, + 0.005596683360636234, + 0.0020592836663126945, + -0.033701036125421524, + 0.03039543144404888, + 0.02159392461180687, + -0.017011767253279686, + -0.01796582341194153, + -0.015547088347375393, + 0.0022793214302510023, + -0.02964293584227562, + -0.005415278021246195, + 0.0014411626616492867, + -0.004031224176287651, + 0.030744804069399834, + 0.016111459583044052, + 0.002759709022939205, + -0.0008961075800471008, + -0.006648160982877016, + 0.0010078060440719128, + -0.0023532272316515446, + 0.014606469310820103, + -0.0032266592606902122, + -0.011811487376689911, + -0.029616061598062515, + 0.004924812354147434, + 0.01264460664242506, + -0.014163034968078136, + -0.007645888719707727, + -0.010837274603545666, + -0.024294845759868622, + 0.010387121699750423, + -0.001644403557293117, + 0.006171132437884808, + 0.017697075381875038, + -0.013786787167191505, + 0.019269252195954323, + 0.018758630380034447, + -0.02897106483578682, + 0.0003873754758387804, + 0.042220357805490494, + 0.0016015717992559075, + -0.018368946388363838, + -0.03192729502916336, + -0.01937675103545189, + -0.026323895901441574, + 0.03810850903391838, + -0.0015394238289445639, + 0.014969279989600182, + -0.0015881344443187118, + -0.0422741062939167, + -0.02468452975153923, + 0.0013748154742643237, + -0.0008776311296969652, + 0.023918597027659416, + 0.014875218272209167, + -0.001280753524042666, + -0.019806748256087303, + -0.0308523029088974, + 0.029562311246991158, + 0.0012219648342579603, + 0.0033627129159867764, + 0.02132517658174038, + 0.022171733900904655, + 0.016622081398963928, + 0.0006979057216085494, + 0.03367416188120842, + 0.047649070620536804, + -0.004897937644273043, + -0.033029165118932724, + -0.005475746467709541, + 0.018476445227861404, + 0.001298390212468803, + 0.012308672070503235, + 0.0110657112672925, + 0.009574158117175102, + -0.004985280800610781, + -0.0005958653637208045, + -0.0006210604915395379, + 0.05686713755130768, + -0.004347003530710936, + -0.022762980312108994, + -0.006275272462517023, + 0.0019181909738108516, + -0.02026362158358097, + -0.08535445481538773, + -0.020357683300971985, + 0.00894931796938181, + 0.0214595515280962, + 0.007296516094356775, + 0.02588045969605446, + -0.000669351196847856, + 0.015036466531455517, + -0.003675132757052779, + 0.03929100185632706, + -0.04877781495451927, + -0.02710326574742794, + -9.070254600374028e-05, + -0.017267078161239624, + 0.01897362992167473, + -0.012651326134800911, + -0.00976228155195713, + 0.006191288586705923, + -0.005922540556639433, + 0.044235967099666595, + 0.0043805972672998905, + -0.018006134778261185, + 0.010259466245770454, + -0.01871831901371479, + -0.021970173344016075, + -0.001319386181421578, + -0.015815837308764458, + 0.016514582559466362, + -0.00016124897229019552, + 0.0003558815224096179, + 0.012476639822125435, + -0.016689268872141838, + 0.039747871458530426, + -0.036066021770238876, + -0.0004606513539329171, + -0.012080235406756401, + -0.008176666684448719, + -0.022924229502677917, + 0.0060367584228515625, + -0.004101770929992199, + 0.012792418710887432, + 0.007934792898595333, + 0.005556371062994003, + -0.042354729026556015, + -0.0005584925529547036, + -0.012093673460185528, + -0.02147298865020275, + -0.005623558070510626, + -0.015023029409348965, + -0.00771307572722435, + -0.03751726076006889, + -0.011905549094080925, + 0.0029075206257402897, + 0.012174297124147415, + 0.011193366721272469, + -0.0006496150163002312, + 0.018543632701039314, + -0.023192977532744408, + -0.027466075494885445, + -0.004612392745912075, + -0.020545806735754013, + 0.012422889471054077, + -0.01160320732742548, + 0.009177753701806068, + -0.004222707357257605, + -0.0007344387122429907, + -0.010548369958996773, + -0.0028789660427719355, + -0.019403627142310143, + 0.0016091304132714868, + -0.01398834865540266, + -0.0030418946407735348, + 0.00020219109137542546, + -0.012100392021238804, + -0.006194647867232561, + -0.01924237795174122, + -0.03375478461384773, + -0.010461026802659035, + 0.02387828566133976, + -0.0009288612636737525, + -0.014754281379282475, + -0.0308523029088974, + 0.023891722783446312, + -0.019685812294483185, + 0.02381109818816185, + 0.007840731181204319, + 0.010508058592677116, + -0.03453415632247925, + 0.007813856936991215, + -0.02837982028722763, + 0.00665823882445693, + 0.0064600370824337006, + 0.013867411762475967, + -0.03187354654073715, + -0.01569489948451519, + -0.010306497104465961, + 0.009856343269348145, + 0.009097130037844181, + -0.011314302682876587, + -0.006876596715301275, + -0.026256708428263664, + 0.0021902986336499453, + -0.056114643812179565, + 0.013336634263396263, + 0.023569224402308464, + -0.013840536586940289, + -0.01971268653869629, + 0.025517649948596954, + 0.019900809973478317, + 0.016272708773612976, + 0.005166685674339533, + -0.014740843325853348, + -0.021889548748731613, + -0.017199890688061714, + 0.009352440945804119, + 0.012483358383178711, + -0.029696686193346977, + -0.018678005784749985, + 0.008526039309799671, + 0.0043369256891310215, + 0.007141985930502415, + -0.011408365331590176, + 0.010400558821856976, + 0.009365878067910671, + 0.005660511087626219, + 0.022023921832442284, + -0.03466853126883507, + -0.010749931447207928, + -0.029750436544418335, + -0.011992892250418663, + 0.004582158289849758, + 0.008431977592408657, + -0.022091109305620193, + -0.002459046896547079, + -0.009580876678228378, + 0.02475171722471714, + 0.011052273213863373, + -0.0012169257970526814, + 0.007189016789197922, + 0.050470929592847824, + 0.014834905974566936, + 0.06229585409164429, + -0.03646914288401604, + -0.04574095830321312, + 0.012698356993496418, + -0.039076000452041626, + 0.0019433860434219241, + -0.012906637042760849, + 0.011744299903512001, + -0.016071148216724396, + -0.0008751116110943258, + 0.0026673267129808664, + 0.014337721280753613, + -0.004407471977174282, + -0.011018679477274418, + -0.01388084888458252, + 0.0019736201502382755, + -0.014767718501389027, + -0.012066798284649849, + -0.008519320748746395, + -0.00814979150891304, + -0.017522389069199562, + 0.05184154585003853, + -0.0063290223479270935, + 0.017723949626088142, + -0.00319474539719522, + 0.003994271624833345, + -0.004387315828353167, + -0.018624257296323776, + -0.0029360749758780003, + 0.03703351318836212, + -0.010353527963161469, + -0.026713579893112183, + -0.014781155623495579, + 0.020156120881438255, + 0.026579206809401512, + -0.0012102071195840836, + -0.00999743677675724, + 0.009842906147241592, + -0.009009786881506443, + 0.005334653425961733, + 0.00922478549182415, + 0.02789607271552086, + 0.0194439385086298, + -0.025168277323246002, + 0.015923336148262024, + 0.041629109531641006, + 0.01367928832769394, + -0.02824544534087181, + -0.016743019223213196, + -0.00821697898209095, + 0.01492896769195795, + 0.018059885129332542, + 0.016595207154750824, + 0.013188822194933891, + 0.015063341706991196, + -0.013262728229165077, + 0.0023381102364510298, + 0.016608644276857376, + 0.006654879543930292, + 0.03345916047692299, + 0.02702264115214348, + 0.017656762152910233, + 0.021782048046588898, + 0.011233678087592125, + -0.023434851318597794, + -0.03630789369344711, + -0.01154273934662342, + -0.015936773270368576, + -0.03171229735016823, + -0.01952456310391426, + 0.0174417644739151, + -0.012389295734465122, + 0.010696182027459145, + 0.013477726839482784, + 0.003456774866208434, + -0.014297408983111382, + 0.030072933062911034, + 0.0009750524186529219, + -0.008190103806555271, + -0.02715701423585415, + 0.016084585338830948, + 0.018086759373545647, + 0.00511293625459075, + 0.001705711823888123, + 0.004484737291932106, + 0.015869585797190666, + 0.007182298228144646, + 0.007941512390971184, + -0.018033010885119438, + -0.014472095295786858, + -0.018812380731105804, + 0.0098899370059371, + -0.010541651397943497, + -0.000973372720181942, + -0.005374965723603964, + -0.010588682256639004, + -0.0008192623499780893, + 0.003906928468495607, + 0.012678200379014015, + -0.006436521653085947, + 0.10647807270288467, + 0.022830167785286903, + 0.024308282881975174, + -0.009231504052877426, + -0.001773738767951727, + 0.002682443941012025, + 0.008586508221924305, + 0.004441065713763237, + -0.0062047261744737625, + -0.04471971467137337, + 0.026592643931508064, + -0.007491358555853367, + 0.006866518873721361, + -0.013786787167191505, + -0.023313913494348526, + 0.0031779485289007425, + -0.017132703214883804, + 0.01428397186100483, + -0.010991805233061314, + 0.020438307896256447, + 0.036388520151376724, + -0.011751019395887852, + 0.012906637042760849, + 0.04364472255110741, + -0.03224979341030121, + -0.005505980458110571, + 0.007316672243177891, + 0.007390577811747789, + 0.002512796549126506, + -0.02147298865020275, + -0.012745387852191925, + 0.0005169205251149833, + -0.08288197219371796, + -0.03004605881869793, + 0.0016662393463775516, + -0.017146140336990356, + 0.0013101479271426797, + -0.029347313567996025, + 0.011536020785570145, + -0.015735212713479996, + 0.025316089391708374, + 0.02434859424829483, + -0.004363800399005413, + -0.014848343096673489, + 0.0021298301871865988, + -0.011905549094080925, + -0.004370518960058689, + -0.015130529180169106, + -0.017320826649665833 + ], + "metadata": { + "source": "INSPIRER_Schlussbericht.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 5, + "has_images": true, + "image_count": 29, + "detection_class_prob": 0.6591171622276306, + "coordinates": "CoordinatesMetadata(points=((1122.828857421875, 155.53517150878906), (1122.828857421875, 361.06524658203125), (1358.3359375, 361.06524658203125), (1358.3359375, 155.53517150878906)), system=)", + "links": [], + "last_modified": "2025-05-05T22:58:03", + "_known_field_names": "frozenset({'page_number', 'text_as_html', 'emphasized_text_contents', 'subject', 'data_source', 'links', 'coordinates', 'image_path', 'is_continuation', 'header_footer_type', 'sent_from', 'url', 'parent_id', 'detection_class_prob', 'emphasized_text_tags', 'last_modified', 'category_depth', 'page_name', 'attached_to_filename', 'bcc_recipient', 'orig_elements', 'languages', 'filetype', 'link_texts', 'file_directory', 'sent_to', 'key_value_pairs', 'image_base64', 'cc_recipient', 'link_urls', 'signature', 'image_mime_type', 'filename', 'detection_origin', 'table_as_cells', 'email_message_id', 'link_start_indexes'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "INSPIRER_Schlussbericht.pdf", + "parent_id": "1c51aaba3295e535d31a83c2392f0391", + "text_as_html": "
Projektlaufzeit01.08.2021 - 31.07.2024 (verl\u00e4ngert bis 31.10.2024)
F\u00f6rderkennzeichen165V8744
StichworteStadtentwicklung, Digitale B\u00fcrgerbeteiligung, Partizipation
und Akzeptanz, Augmented Reality, Extended Reality (XR),
AR-Tracking, Point Cloud Matching
ProjektleitungProf. Dr.-Ing. Volker Coors
Beteiligte ProfessorenProf. Dr.-Ing. Volker Coors
Gef\u00f6rderte Ma\u00dfnahmeForschungsprogramm zur Mensch-Technik-nteraktion
F\u00f6rderbereichTechnik zum Mensch bringen
FachhochschuleHochschule f\u00fcr Technik Stuttgart (HFT Stuttgart),
", + "id": "351a57f5-fe09-4ea6-8750-b2c5267a9700", + "processing_timestamp": "2025-05-05T23:07:23.860264", + "chunk_number": 3, + "total_chunks": 19, + "chunking_strategy": "hybrid", + "word_count": 479 + } +} \ No newline at end of file diff --git a/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000004.json b/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000004.json new file mode 100644 index 0000000000000000000000000000000000000000..2ce64fb0291b23dcaa310873ba13f0bcf5142778 --- /dev/null +++ b/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000004.json @@ -0,0 +1,1570 @@ +{ + "id": "2b86db2d-408b-1992-e1b5-8a9f00000004", + "content": "Diese umfassten Vorverarbeitungsschritte wie Normalenberechnung, Reduktion der Punktwolkengr\u00f6\u00dfe und die Anwendung von globalen sowie lokalen Registrierungsverfahren zur verbesserten Positionierung von Objekten. Parallel dazu wurde die Serverkomponente konzipiert und implementiert, sodass eine erste Integration in den AR-Workflow erfolgte. In Feldtests wurden Punktwolken gescannt, verarbeitet und in die AR-App integriert. Die Datenintegration erfolgte sowohl mit station\u00e4ren als auch mobilen Sensoren, unter anderem mit einem Terrestrial-Laserscanner und GPS- Referenzierung in der Fallstudie in Fellbach. In der abschlie\u00dfenden Phase wurden Last- und Integrationstests mit verschiedenen Testdatens\u00e4tzen durchgef\u00fchrt, um die Skalierbarkeit und Performance der Serverkomponente zu validieren. Die finale Version des Demonstrators (D5.3) erm\u00f6glichte eine optimierte Bereitstellung der Punktwolken f\u00fcr den AR-Client. Die geplanten Ziele wurden weitgehend erreicht. Die entwickelte Serverkomponente stellte eine robuste Grundlage f\u00fcr die Bereitstellung von Punktwolken in AR-Anwendungen dar und bietet Potenzial f\u00fcr zuk\u00fcnftige Stadtplanungsprojekte. [IMAGE: ]\n\nAbbildung 1: Punktwolke von Fellbach. ## II.1.5 Arbeitspaket 6: AR-App\n\nUm die pr\u00e4zise Platzierung und Stabilisierung virtueller Inhalte in Augmented Reality (AR) zu erm\u00f6glichen, wurde in AP6 eine innovative Tracking-Architektur entwickelt, die sich auf Point Cloud Matching st\u00fctzte. Der Fokus lag auf der exakten Erkennung der Umgebung ohne GPS, was besonders f\u00fcr urbane Szenarien von Bedeutung war. Dazu wurden neuartige Algorithmen zur Registrierung von Punktwolken eingesetzt, um eine pr\u00e4zise Lokalisierung und Orientierung zu gew\u00e4hrleisten. In der ersten Projektphase wurde die Architektur des AR-Clients und des Tracking-Systems spezifiziert (D6.1). Diese umfasste die Definition der Schnittstellen zwischen den verschiedenen Modulen und die Auswahl geeigneter Technologien. Die bestehende Hardware- und Softwarelandschaft wurde untersucht, um eine optimale Kombination aus Rechenleistung, Sensordaten und Algorithmen zu finden. Besondere Herausforderungen ergaben sich durch die Notwendigkeit, Punktwolken effizient zu verarbeiten und in Echtzeit mit AR-Inhalten zu verkn\u00fcpfen. [IMAGE: Load Target and Src point cloud \u201e\u201aheck if PO / \\ No < havesame \\ Raise exception N_ format \u201c Global Registration Appl N Store Transformation een Mat \u201d No N v Vis. &save transformed PC Local Registration Obtain Transformation Mat]\n\nAbbildung 2: Ablaufdiagram des PC Matching-Verfahrens. Ein wesentlicher Teil des Arbeitspakets war die Entwicklung des Point Cloud Matching- Algorithmus (D6.3), der eine hochpr\u00e4zise Registrierung von Punktwolken erm\u00f6glichte. Um dies zu erreichen, wurde ein hierarchischer Matching-Ansatz implementiert, der sowohl globale als auch lokale Registrierungsverfahren kombinierte. Zun\u00e4chst wurde eine grobe Vorregistrierung mit Fast Global Registration (FGR) durchgef\u00fchrt, um die Punktwolken in eine erste Ann\u00e4herung an die Zielposition zu bringen. Danach wurde eine Feinregistrierung mit Generalized ICP (GICP) angewendet, um eine exakte Ausrichtung zu erzielen. Diese Kombination bot eine robuste L\u00f6sung f\u00fcr AR-Tracking, die unabh\u00e4ngig von GPS- oder visuellen Marker-basierten Systemen arbeitete. Ein weiterer innovativer Aspekt des entwickelten Systems war die Optimierung der Tracking- Performance durch Vorverarbeitungsmethoden. Die Punktwolken wurden durch Downsampling-Techniken, Normalenberechnung und Feature-Extraktion optimiert, um die Berechnungszeit zu minimieren, ohne die Genauigkeit zu beeintr\u00e4chtigen.", + "embedding": [ + 0.001093778875656426, + 0.025592071935534477, + 0.014341776259243488, + -0.00806472823023796, + -0.0169896949082613, + 0.008837598375976086, + -0.018992435187101364, + -0.011640091426670551, + -0.0006376176024787128, + -0.05322720855474472, + 0.02533668838441372, + 0.0031721265986561775, + -0.005181588232517242, + 0.01270194724202156, + -0.009684395045042038, + 0.014960072003304958, + 0.0309416763484478, + -0.01111588440835476, + -0.003619047114625573, + -0.00013577727077063173, + -0.017809608951210976, + 0.022769417613744736, + 0.0057562002912163734, + -0.010900825262069702, + -0.021815091371536255, + 0.014180481433868408, + 0.03932899236679077, + -0.019691379740834236, + 0.017473578453063965, + -0.00787655171006918, + 0.008891363628208637, + -0.027406636625528336, + -0.004697704687714577, + 0.00976504199206829, + -0.02692275308072567, + -0.003130122786387801, + 0.00833355262875557, + -0.010470706038177013, + 0.007372505962848663, + 0.012500329874455929, + 0.02295759506523609, + -0.021223677322268486, + 0.003847547573968768, + -0.027070606127381325, + -0.0067306882701814175, + -0.0035921644885092974, + -0.002333730924874544, + 0.028925493359565735, + -0.02287694625556469, + 0.0009694476029835641, + 0.010625280439853668, + 0.016613341867923737, + -0.022997917607426643, + -0.007144005503505468, + -0.007627889048308134, + -0.0021253919694572687, + -0.022030150517821312, + 0.015900956466794014, + -0.009200511500239372, + -0.016814960166811943, + -0.01332696434110403, + 0.009455894120037556, + -0.012339035049080849, + -0.004805234260857105, + -0.019583849236369133, + -0.015726221725344658, + -0.02442268654704094, + 0.017903698608279228, + -0.010968031361699104, + -0.011868592351675034, + 0.03586116060614586, + 0.012197902426123619, + 0.013535303063690662, + -0.02693619392812252, + 0.02873731590807438, + -0.011438473127782345, + 0.03532351180911064, + -0.008898084051907063, + -0.00129791721701622, + 0.017742402851581573, + 0.004627137910574675, + -0.010920986533164978, + -0.0075674038380384445, + 0.04430224373936653, + 0.004307909402996302, + 0.011035237461328506, + -0.019731702283024788, + 0.007318741176277399, + -0.011377988383173943, + 0.008683024905622005, + -0.02100861817598343, + 0.03871069848537445, + -0.018495110794901848, + -0.004701064899563789, + -0.008595656603574753, + 0.016573017463088036, + -0.004049165640026331, + 0.024368921294808388, + -0.009953219443559647, + -0.03000079095363617, + -0.010060749016702175, + -0.003941636066883802, + -0.017769286409020424, + -0.011344385333359241, + -0.01638484001159668, + -0.0033435020595788956, + -0.00433479156345129, + 0.014274570159614086, + 0.017876815050840378, + 0.0028965817764401436, + -0.019731702283024788, + 0.022070474922657013, + -0.014973512850701809, + -0.01891178824007511, + 0.008488127030432224, + -0.0341138020157814, + 0.023643096908926964, + -0.01127045787870884, + -0.009509659372270107, + -0.01329336129128933, + 0.029301848262548447, + 0.027084046974778175, + 0.011492238380014896, + -0.008199140429496765, + 0.038199931383132935, + 0.013078302145004272, + -0.008165537379682064, + -0.0019993807654827833, + -0.0025588711723685265, + -0.02412698045372963, + -0.020941412076354027, + -0.0054336111061275005, + 0.009630629792809486, + 0.003662731032818556, + 0.0004620417603291571, + -0.00036417291266843677, + -0.011196531355381012, + -0.010121234692633152, + -0.038871992379426956, + -0.036345042288303375, + 0.008152096532285213, + 0.01797090284526348, + -0.0092744380235672, + -0.03860316798090935, + -0.00495308730751276, + 0.022809740155935287, + 0.005578103940933943, + 0.020215585827827454, + 0.01424768753349781, + -0.029785731807351112, + -0.010739530436694622, + -0.03220514953136444, + 0.01097475178539753, + -0.0032494135666638613, + -0.01582030951976776, + -0.01606225222349167, + -0.010504309087991714, + 0.018790818750858307, + -0.00991289597004652, + -0.01798434555530548, + -0.010618559084832668, + 0.014624041505157948, + -0.008777112700045109, + 0.002041384344920516, + 0.03274279832839966, + 0.005967899225652218, + -0.010968031361699104, + 0.007016313727945089, + 0.0008719987818039954, + -0.007184328977018595, + 0.017849933356046677, + 0.0014214083785191178, + -0.024946894496679306, + 0.02410009689629078, + -0.0002816354390233755, + -0.011109163984656334, + 0.007829507812857628, + 0.018172521144151688, + -0.018118757754564285, + -0.03239332512021065, + -0.005497456528246403, + -0.0014449305599555373, + 0.005316000431776047, + 0.004892602097243071, + -0.016344517469406128, + 0.001962417270988226, + 0.005453772842884064, + 0.021788207814097404, + 0.012184460647404194, + 0.002133792731910944, + 0.021143030375242233, + 0.005611706990748644, + 0.0017372770234942436, + -0.022097356617450714, + -0.6258229613304138, + -0.0065895551815629005, + 0.03164061903953552, + -0.023401154205203056, + 0.0034157487098127604, + 0.04395277053117752, + 0.020820440724492073, + -0.006404738873243332, + -0.022043591365218163, + 0.05481327325105667, + 0.002805853495374322, + 0.004133173264563084, + -0.0061930394731462, + 0.004099570214748383, + -0.009543262422084808, + -0.022809740155935287, + -0.004445681814104319, + -0.005282397381961346, + 0.01795746199786663, + 0.029812613502144814, + -0.04207099974155426, + 0.007601006887853146, + 0.016573017463088036, + -0.00043263909174129367, + 0.003162045730277896, + 0.01826661080121994, + 0.02137153036892414, + -0.003921474330127239, + -0.01039005909115076, + 0.010726089589297771, + -0.006888622418045998, + 0.019933320581912994, + -0.010860500857234001, + 0.03287721052765846, + 0.05013573169708252, + -0.00944917369633913, + -0.033844977617263794, + 0.020887646824121475, + 0.011357826180756092, + 0.011566164903342724, + -0.009630629792809486, + 0.002535348990932107, + 0.015255778096616268, + -0.001745677785947919, + 0.01502727810293436, + 0.0018263249658048153, + 0.010914266109466553, + -0.028656668961048126, + -0.010625280439853668, + -0.019866114482283592, + -0.004660740960389376, + -0.004361674189567566, + 0.007043196354061365, + 0.003024273319169879, + 0.004680903162807226, + 0.006061987951397896, + 0.012486888095736504, + 0.006213201209902763, + -0.009623909369111061, + -0.0020716271828860044, + -0.019099965691566467, + -0.015672456473112106, + -0.01362267043441534, + -0.0432807095348835, + -0.01826661080121994, + 0.03599557280540466, + -0.009408850222826004, + -0.0052151912823319435, + 0.013474817387759686, + -0.018777376040816307, + 0.01019516121596098, + 0.03061908669769764, + -0.01530954334884882, + -0.020672587677836418, + 0.006643320433795452, + 0.01919405348598957, + 0.018521994352340698, + -0.0185757577419281, + 0.005675552878528833, + 0.013548743911087513, + -0.0026916032657027245, + -0.01222478412091732, + -0.019960204139351845, + 0.004015563055872917, + 0.0031267625745385885, + 0.010800016112625599, + -0.032904092222452164, + 0.0009400449343957007, + 0.010793295688927174, + -0.00431799003854394, + 0.012144137173891068, + 0.017137547954916954, + -0.03314603492617607, + -0.03255462273955345, + -0.015726221725344658, + 0.04978625848889351, + -0.011317502707242966, + 0.018642963841557503, + 0.00403572479262948, + -0.03134491294622421, + -0.00913330540060997, + -0.006562673021107912, + 0.01791713945567608, + -0.008279788307845592, + 0.036345042288303375, + -0.0023354110307991505, + -0.026250692084431648, + 0.0002749148407019675, + 0.04419471323490143, + -0.018750494346022606, + -0.03365680202841759, + -0.01344793476164341, + -0.024893129244446754, + -0.016210105270147324, + 0.00027197456802241504, + -0.024261392652988434, + 0.007500197738409042, + -0.016895607113838196, + -0.008273067884147167, + 0.0019792187958955765, + 0.030081437900662422, + -0.021788207814097404, + 0.034167565405368805, + -0.006781092844903469, + -0.020363440737128258, + -0.008346994407474995, + 0.00393827585503459, + -0.012345755472779274, + -0.003360303584486246, + -0.005265595857053995, + 0.0023421316873282194, + -0.017567668110132217, + 0.0341138020157814, + -0.005588185042142868, + 0.03693645820021629, + -0.005934296175837517, + 0.006848298944532871, + -0.002846177201718092, + -0.017460137605667114, + -0.029651319608092308, + -0.03430197760462761, + 0.0024580620229244232, + 0.02107582427561283, + -0.019624173641204834, + -0.007285138126462698, + -0.026492632925510406, + -0.01887146569788456, + 0.028414728119969368, + 0.008743509650230408, + -0.005648670252412558, + -0.011781224049627781, + -0.03164061903953552, + -0.009462614543735981, + 0.017849933356046677, + 0.008945127949118614, + 0.00881071574985981, + 0.004072688054293394, + -0.03693645820021629, + 0.0024547018110752106, + -0.0464528389275074, + 0.01054463256150484, + 0.018118757754564285, + -0.030108319595456123, + -0.016586458310484886, + 0.009402129799127579, + -0.02231241576373577, + -0.0014936549123376608, + 0.03653322160243988, + -0.027406636625528336, + -0.021828532218933105, + 0.013286640867590904, + -0.0020497851073741913, + -0.0034779142588377, + 0.025578631088137627, + -0.02696307562291622, + 0.015188571996986866, + -0.03180191293358803, + -0.018817700445652008, + -0.0028898611199110746, + -0.022110797464847565, + 0.0034039875026792288, + 0.01440898235887289, + -0.0024849444162100554, + -0.009126584976911545, + -0.008938407525420189, + 0.012177740223705769, + 0.00883087795227766, + 0.01127045787870884, + -0.030457792803645134, + 0.016626782715320587, + 0.012540653347969055, + 0.03932899236679077, + 0.012843080796301365, + 0.02755448967218399, + -0.024503333494067192, + -0.005719236563891172, + -0.013898216187953949, + -0.005460493266582489, + -0.010074189864099026, + 0.029463142156600952, + 0.012023166753351688, + 0.004149974789470434, + 0.023428037762641907, + 0.008447803556919098, + 0.020833881571888924, + -0.032608386129140854, + 0.006996151991188526, + -0.0339793898165226, + 0.01362939178943634, + 0.008044566959142685, + -0.009623909369111061, + -0.006179598160088062, + -0.018952112644910812, + 0.005621788091957569, + 0.019019318744540215, + 0.029033023864030838, + -0.011714018881320953, + -3.586073944461532e-05, + 0.006784453056752682, + 0.009173628874123096, + -0.003921474330127239, + -0.010080911219120026, + 0.03844187408685684, + 0.007728698197752237, + -0.005867090076208115, + -0.0017305563669651747, + 0.022675327956676483, + 0.027662020176649094, + 0.016855282709002495, + -0.021237118169665337, + -0.012204622849822044, + -0.00403236411511898, + 0.011263737455010414, + 0.011062119156122208, + 0.0026596803218126297, + 0.0038643490988761187, + 0.0339525081217289, + -0.003440950997173786, + 0.024221068248152733, + 0.0016625102143734694, + 0.0012802756391465664, + 0.012621300294995308, + 0.017487019300460815, + -0.00044356007128953934, + 0.01764831505715847, + -0.006771011743694544, + 0.03379121422767639, + 0.024328598752617836, + -0.004250783938914537, + 0.018024668097496033, + -0.0154708381742239, + 0.013172389939427376, + -0.011519121006131172, + 0.018441345542669296, + 0.003222531173378229, + -0.008313391357660294, + 0.023696860298514366, + -0.023320507258176804, + 0.035081569105386734, + 0.03656010329723358, + 0.01948976144194603, + 0.02262156456708908, + 0.009187069721519947, + 0.003434230340644717, + 0.004197019152343273, + -0.004788432735949755, + -0.015618691220879555, + -0.022352740168571472, + -0.03311915323138237, + 0.003723216475918889, + 0.015887515619397163, + -0.020954852923750877, + 0.009160188026726246, + -0.010564794763922691, + 0.026774900034070015, + -0.01330680213868618, + 0.02442268654704094, + 0.00169863342307508, + 0.027057165279984474, + 0.0232264194637537, + -0.032662149518728256, + -0.026156604290008545, + -0.004217180889099836, + 0.025780249387025833, + -0.010618559084832668, + -0.014435864053666592, + -0.027433518320322037, + 0.007023034617304802, + 0.0009459254797548056, + -0.021573148667812347, + -0.00541344890370965, + -0.005504177417606115, + 0.008824157528579235, + -0.005507537629455328, + 0.0035888042766600847, + 0.009375247173011303, + 0.02447645179927349, + -0.0012928767828270793, + -0.010154837742447853, + 0.003723216475918889, + -0.016304193064570427, + 0.004922844935208559, + 0.00563858961686492, + -0.030430909246206284, + 0.02108926512300968, + -0.018145639449357986, + -0.010584956035017967, + -0.025632396340370178, + 0.0018296852940693498, + -0.016882166266441345, + -0.006199760362505913, + -0.006468584295362234, + 0.010860500857234001, + 0.03029649704694748, + -0.016452046111226082, + 0.012063490226864815, + 0.0032376525923609734, + -0.00339894718490541, + 0.04306565225124359, + 0.002742007840424776, + -0.023078564554452896, + -0.025538306683301926, + -0.01548427902162075, + -0.000400086137233302, + 0.009025775827467442, + 0.020188704133033752, + -0.002101870020851493, + 0.008326832205057144, + -0.025780249387025833, + -0.015054159797728062, + -0.022137681022286415, + -0.048737842589616776, + 0.009825527667999268, + 0.014234245754778385, + -0.010201881639659405, + 0.008105052635073662, + 0.03677516430616379, + -0.030081437900662422, + 0.013414331711828709, + 0.00787655171006918, + 0.009516379795968533, + 0.00023270102974493057, + 0.02354900725185871, + 0.03994728997349739, + 0.003572002751752734, + 0.0093080410733819, + 0.001989299664273858, + 0.03674827888607979, + 0.01733916625380516, + -0.008521730080246925, + 0.04446353763341904, + 0.009691115468740463, + -0.0030662771314382553, + -0.028871728107333183, + -0.00039126534829847515, + 0.01301109604537487, + -0.0075338007882237434, + 0.016882166266441345, + 0.00943573284894228, + 0.022137681022286415, + -0.0011063800193369389, + 0.007547242101281881, + 0.011982842348515987, + -0.019274702295660973, + 0.0007879912154749036, + 0.018320376053452492, + 0.005070697981864214, + 0.0005380685906857252, + 0.013091742992401123, + -0.00433479156345129, + 0.014126716181635857, + 0.01946287788450718, + -0.02047096937894821, + -0.019073083996772766, + -0.006599636282771826, + -0.027352871373295784, + -0.018091874197125435, + -0.013716759160161018, + -0.015054159797728062, + -0.01727196015417576, + 0.012883404269814491, + -0.007990801706910133, + 0.008649421855807304, + -0.008978730998933315, + -0.044114064425230026, + -0.005685633514076471, + -0.017110666260123253, + -0.011458635330200195, + -0.03621063008904457, + -0.01112932525575161, + -0.018199404701590538, + -0.0027302466332912445, + -0.01131078228354454, + 0.001284476020373404, + -0.0018632883438840508, + -0.0006934826378710568, + -0.030269615352153778, + -0.006216561887413263, + 0.022083915770053864, + 0.007016313727945089, + 0.03559233620762825, + -0.011902195401489735, + -0.014610599726438522, + 0.0009971701074391603, + -0.0051345438696444035, + -0.011021795682609081, + 0.015430513769388199, + -0.022406505420804024, + -0.026156604290008545, + -0.0009635670576244593, + -0.019664496183395386, + -0.011068840511143208, + -0.017755843698978424, + 0.014906306751072407, + -0.010000263340771198, + 0.008951849304139614, + -0.005141264759004116, + 0.023118888959288597, + 0.007775742560625076, + 0.014946630224585533, + -0.001674271305091679, + 0.023360831663012505, + -0.0023690140806138515, + -0.020349998027086258, + 0.0035283188335597515, + -0.018185963854193687, + 0.010840339586138725, + -0.004119732417166233, + 0.01822628639638424, + 0.016452046111226082, + -0.026385104283690453, + -0.001568421721458435, + -0.007990801706910133, + -0.007238094229251146, + -0.00679453369230032, + -0.0025739925913512707, + 0.006727328058332205, + -0.008588936179876328, + 0.021600032225251198, + 0.017540784552693367, + -0.006787813268601894, + -3.0111470550764352e-05, + 0.039463404566049576, + 0.0022043592762202024, + -0.013951980508863926, + -0.03147932514548302, + 0.04368394613265991, + 0.015215454623103142, + 0.010134675540030003, + 0.01604880951344967, + 0.001581022865138948, + 0.012950610369443893, + -0.028092138469219208, + 0.0007434671861119568, + -0.011122604832053185, + 0.0016776316333562136, + 0.008084890432655811, + -0.0072112116031348705, + -0.01424768753349781, + 0.006707165855914354, + 0.004449042025953531, + 0.0139116570353508, + 0.00040512660052627325, + 0.010712647810578346, + -0.007191049866378307, + 0.018347257748246193, + 0.032904092222452164, + -0.010941148735582829, + -0.005914134439080954, + -0.021479060873389244, + -0.022191444411873817, + 0.014435864053666592, + -0.03435574471950531, + 0.034517038613557816, + -0.0028377764392644167, + -0.020847324281930923, + -0.011344385333359241, + -0.00821258220821619, + -0.017406372353434563, + -0.020954852923750877, + -0.011882033199071884, + -0.010961310006678104, + 0.044382888823747635, + 0.0036056058015674353, + 0.03494715690612793, + 0.025215718895196915, + 0.030215850099921227, + -0.023414595052599907, + -0.026667369529604912, + -0.0029016220942139626, + -0.008172258734703064, + 0.001955696614459157, + -0.029006140306591988, + 0.00879727490246296, + 0.007829507812857628, + 0.01205676980316639, + 0.008743509650230408, + -0.005228632595390081, + 0.009368526749312878, + 0.03435574471950531, + -0.027446959167718887, + -0.003669451456516981, + 0.004129813052713871, + -0.027097487822175026, + -0.010403499938547611, + -0.009724718518555164, + 0.019583849236369133, + 0.007553962524980307, + -0.02911367081105709, + 0.0010526151163503528, + 0.019341908395290375, + 0.008488127030432224, + 0.01916717179119587, + -0.015685897320508957, + 0.028656668961048126, + -0.017903698608279228, + 0.015685897320508957, + -0.004200379364192486, + 0.01127717923372984, + -0.015443955548107624, + -0.00865614227950573, + -0.01127045787870884, + -0.006606356706470251, + 0.028549140319228172, + -0.002293407218530774, + 0.00519502954557538, + -0.0012097093276679516, + -0.009025775827467442, + -0.026116279885172844, + 0.022648446261882782, + 0.0024950255174189806, + -0.023952243849635124, + 0.0006926425849087536, + -0.018347257748246193, + -0.015161690302193165, + -0.028038373216986656, + -0.015390190295875072, + -0.0025924742221832275, + 0.008454523980617523, + 0.003723216475918889, + 0.0027369672898203135, + 0.022729093208909035, + 0.005568023305386305, + -0.016868723556399345, + 0.02415386214852333, + -0.008125213906168938, + 0.04107635095715523, + 0.0012617940083146095, + 0.03285032883286476, + 0.007110402453690767, + -0.009556703269481659, + -0.01823972724378109, + -0.07220620661973953, + -0.00016675506776664406, + 0.0029453060124069452, + 0.02196294441819191, + 0.03153308853507042, + -0.018965553492307663, + -0.020282791927456856, + 0.02192262001335621, + -0.013138786889612675, + -0.021465620025992393, + -0.024946894496679306, + 0.02414042130112648, + 0.02293071150779724, + 0.00973143894225359, + -0.005658751353621483, + -0.011814827099442482, + -0.015860633924603462, + -0.0010517750633880496, + -0.012910286895930767, + 0.002471503335982561, + -0.008454523980617523, + 0.001969137927517295, + -0.030242731794714928, + 0.020363440737128258, + -0.009173628874123096, + 0.02536357194185257, + 0.0038845110684633255, + -0.026102839037775993, + 0.015175131149590015, + 0.015000395476818085, + -0.01297077164053917, + 0.022997917607426643, + 0.013387450017035007, + 0.014745011925697327, + -0.00455657159909606, + -0.02161347307264805, + 0.019261259585618973, + -0.014126716181635857, + 0.00027092447271570563, + -0.0071776085533201694, + -0.0185488760471344, + 0.02849537506699562, + -0.009328203275799751, + 0.00044692037045024335, + 0.0066836439073085785, + -0.013037977740168571, + 0.041049469262361526, + 0.02137153036892414, + 0.0014944950817152858, + -0.007856389507651329, + 0.008111773058772087, + 0.009724718518555164, + 0.025296365842223167, + -0.00465402053669095, + -0.01603536866605282, + -0.02414042130112648, + 0.0006002342561259866, + -0.016882166266441345, + -0.008380597457289696, + 0.013938539661467075, + 0.009704557247459888, + -0.061453234404325485, + -0.01828005164861679, + 0.022406505420804024, + -0.01673431135714054, + 0.00863598007708788, + -0.0014709729002788663, + -0.006061987951397896, + -0.021183354780077934, + 0.004143254365772009, + -0.04169464856386185, + 0.009388688020408154, + 0.050028201192617416, + -0.010295970365405083, + -0.02106238342821598, + 0.004223901778459549, + -0.003750098869204521, + -0.026815222576260567, + 0.031748149544000626, + -0.018777376040816307, + -0.02539045363664627, + -0.009691115468740463, + -0.011324223130941391, + 0.0012063489994034171, + -0.014355217106640339, + -0.016640223562717438, + 0.013313522562384605, + 0.02014837972819805, + -0.0006119952886365354, + -0.0016179862432181835, + 0.003642569063231349, + -0.00807144958525896, + -0.0001308418286498636, + -0.0004229782207403332, + 0.02259468100965023, + -0.032043855637311935, + 0.007264976389706135, + 0.021264001727104187, + -0.004563292488455772, + 0.008481406606733799, + -0.028629787266254425, + -0.029490023851394653, + -0.008488127030432224, + 0.018790818750858307, + -0.021143030375242233, + 0.01485254243016243, + -0.004590174648910761, + -0.021573148667812347, + -0.00493964646011591, + 0.01251377072185278, + 0.0026596803218126297, + 0.023293625563383102, + 0.010611838661134243, + 0.0038777904119342566, + -0.023293625563383102, + 0.008441083133220673, + -0.010887383483350277, + -0.02811902016401291, + -0.003419108921661973, + -0.0066029964946210384, + -0.03121050074696541, + 0.013394170440733433, + 0.0009526460780762136, + 0.023092007264494896, + 0.03524286299943924, + -0.050915319472551346, + -0.02161347307264805, + -0.02263500541448593, + -0.03000079095363617, + -0.031371794641017914, + -0.01733916625380516, + -0.007459874264895916, + -0.005070697981864214, + 0.008152096532285213, + 0.007755580823868513, + 0.04215164855122566, + 0.016546135768294334, + 0.022097356617450714, + -0.023307066410779953, + -0.026075955480337143, + -0.01639828085899353, + -0.022446827962994576, + 0.02164035476744175, + -0.02161347307264805, + -0.07166855782270432, + 0.01860264129936695, + 0.023441478610038757, + 0.001430649310350418, + 0.02161347307264805, + 0.020551616325974464, + -0.012735550291836262, + 0.0018750494346022606, + -0.0022093995939940214, + 0.01822628639638424, + -0.00027197456802241504, + 0.0027621695771813393, + 0.015954721719026566, + -0.009549982845783234, + 0.007412829902023077, + 0.013441214337944984, + 0.002377414843067527, + -0.02539045363664627, + 0.0037971429992467165, + 0.02973196655511856, + -0.02107582427561283, + 0.01068576518446207, + 0.020349998027086258, + -0.023643096908926964, + 0.008723348379135132, + -0.012917007319629192, + 0.034167565405368805, + 0.00973143894225359, + -0.015605250373482704, + 0.016277311369776726, + 0.010618559084832668, + 0.011095722205936909, + -0.006233363412320614, + -0.0015306182904168963, + -0.03505468741059303, + 0.01642516441643238, + 0.0037736210506409407, + -0.014140157960355282, + 0.020013967528939247, + -0.003241012804210186, + -0.001139142899774015, + -0.0011996283428743482, + 0.005746119190007448, + -0.005238713230937719, + -0.0005086659803055227, + -0.015538044273853302, + 0.0232264194637537, + 0.008165537379682064, + 0.002523588016629219, + 0.018952112644910812, + -0.01735260710120201, + 0.0027823313139379025, + -0.0024883048608899117, + 0.0018632883438840508, + 0.002550470409914851, + 0.005820045713335276, + -0.0020783478394150734, + 0.014180481433868408, + -0.016801517456769943, + -0.0072582559660077095, + 0.01676119491457939, + -0.006818056106567383, + 0.021129589527845383, + 0.014758453704416752, + 0.1919405460357666, + 0.007661492098122835, + -0.00836715567857027, + 0.016909047961235046, + -0.0015390190528705716, + 0.0015524602495133877, + 0.018454788252711296, + 0.0012676744954660535, + 0.004711145535111427, + 0.02069946937263012, + 0.0023690140806138515, + 0.008246185258030891, + 0.013716759160161018, + -0.0031922883354127407, + 0.024920010939240456, + -0.002496705623343587, + -0.014650924131274223, + -0.005410088691860437, + -0.01219118107110262, + 0.021143030375242233, + 0.046264659613370895, + -0.020000526681542397, + -0.007063358090817928, + -0.02047096937894821, + 0.01856231689453125, + -0.02349524199962616, + 0.005900693126022816, + -0.004425520077347755, + 0.015685897320508957, + 0.014314893633127213, + -0.014462746679782867, + 0.013273199088871479, + 0.014207364059984684, + -0.0015986644430086017, + -0.0028344159945845604, + -0.007291859015822411, + 0.0003524118510540575, + 0.020941412076354027, + 0.038791343569755554, + 0.008084890432655811, + -0.006028384901583195, + -0.03833434358239174, + -0.004126452840864658, + -0.022070474922657013, + -0.0014978552935644984, + 0.02043064683675766, + 0.0011366227408871055, + 0.0008308350807055831, + 0.006182958837598562, + -0.022070474922657013, + -0.026358220726251602, + -0.005393287166953087, + 0.019906438887119293, + 0.02905990555882454, + -0.021573148667812347, + 0.015914397314190865, + -0.013535303063690662, + -0.0008980411221273243, + -0.007621168624609709, + 0.03215138614177704, + -0.03957093507051468, + 0.0017994425725191832, + 0.00227828579954803, + 0.014906306751072407, + -0.03225891292095184, + -0.007701816037297249, + -0.0185757577419281, + 0.0015734621556475759, + 0.0005153865786269307, + -0.02045752853155136, + 0.019718261435627937, + -0.013313522562384605, + -0.0017843212699517608, + 0.013992303982377052, + -0.017796168103814125, + -0.037850458174943924, + 0.013387450017035007, + 0.026774900034070015, + 0.018521994352340698, + 0.027446959167718887, + 0.0044120787642896175, + 0.0085082883015275, + 0.026089398190379143, + -0.028065254911780357, + -0.01733916625380516, + -0.013710038736462593, + 0.04293124005198479, + -0.00014806338003836572, + -0.0013491619611158967, + -0.020672587677836418, + -0.04126453027129173, + -0.005776362027972937, + -0.0006552591803483665, + -0.015000395476818085, + 0.016586458310484886, + -0.011693856678903103, + 0.00807144958525896, + -0.0011996283428743482, + -0.01643860526382923, + 0.003958437591791153, + -0.02198982611298561, + 0.03438262641429901, + 0.04556571692228317, + -0.00989273376762867, + -0.0034359104465693235, + 0.009684395045042038, + -0.015161690302193165, + 0.020820440724492073, + 0.007560682948678732, + 0.006844938267022371, + -0.003247733460739255, + -0.03747410699725151, + 0.015457396395504475, + -0.011330943554639816, + 0.002694963477551937, + 0.03680204600095749, + 0.018132198601961136, + 0.006569393444806337, + -0.005238713230937719, + 0.007674933411180973, + 0.002187557751312852, + 0.0075338007882237434, + -0.002568952040746808, + 0.0038240256253629923, + -0.0016179862432181835, + -0.029947025701403618, + -0.026479192078113556, + -0.011250296607613564, + -0.004848917946219444, + -0.016922488808631897, + 0.02287694625556469, + -0.019597290083765984, + 0.032957859337329865, + 0.007197770290076733, + 0.009173628874123096, + 0.00501693319529295, + 0.011021795682609081, + -0.029301848262548447, + 0.004042445216327906, + 0.008488127030432224, + 0.027339430525898933, + 0.022473711520433426, + 0.009529820643365383, + 0.012587697245180607, + -0.00944917369633913, + -0.0006678603240288794, + -0.0019724981393665075, + 0.01498695369809866, + -0.018105315044522285, + -0.01860264129936695, + -0.0020380241330713034, + -0.015712779015302658, + -0.007668212987482548, + -0.007090240716934204, + 0.019073083996772766, + 0.003044435055926442, + -0.01823972724378109, + -0.006008222699165344, + 0.01178794540464878, + -0.010430382564663887, + -0.02748728357255459, + -0.014207364059984684, + 0.021277442574501038, + -0.023401154205203056, + -0.01793058030307293, + 0.00819242000579834, + -0.17086471617221832, + 0.011996284127235413, + 0.012003004550933838, + -0.026532957330346107, + 0.01728540100157261, + 0.011035237461328506, + 0.014933189377188683, + 0.010127955116331577, + -0.021788207814097404, + -0.00565203046426177, + 0.003840827150270343, + 0.006582834757864475, + -0.006757570430636406, + -0.003988680429756641, + 0.00833355262875557, + -0.00027869519544765353, + -0.02935561165213585, + 0.03618374839425087, + 0.0201080571860075, + 0.03336109593510628, + 0.017487019300460815, + -0.009549982845783234, + -0.0017994425725191832, + 0.0009056018316186965, + -0.007043196354061365, + 0.022944152355194092, + -0.013790685683488846, + 0.013098463416099548, + 0.004079408477991819, + -0.014167039655148983, + 0.005863729864358902, + -0.01822628639638424, + 0.03252773731946945, + 0.0004603615961968899, + -0.01764831505715847, + -0.01856231689453125, + -0.014005745761096478, + 0.0014247687067836523, + 0.00255719106644392, + 0.033253565430641174, + 0.015659015625715256, + 0.03244709223508835, + 0.010457265190780163, + 0.02069946937263012, + -0.018965553492307663, + 0.03844187408685684, + 0.02819966711103916, + -0.020269351080060005, + -0.00121895014308393, + -0.01829349249601364, + 0.00611239206045866, + -0.023092007264494896, + 0.009717998094856739, + 0.01953008398413658, + 0.002147234044969082, + 0.03607621788978577, + 0.018105315044522285, + 0.005235353019088507, + -0.007137285079807043, + -0.004855638835579157, + 0.0062804073095321655, + -0.010363176465034485, + 0.00023144090664573014, + -0.010080911219120026, + -0.001501215621829033, + -0.021721001714468002, + 0.014140157960355282, + 0.0066365995444357395, + -0.0035014364402741194, + -0.005252154543995857, + -0.005080779083073139, + -0.03454392030835152, + 0.006048546638339758, + -0.0029453060124069452, + -0.0024126979988068342, + 0.012943889945745468, + -0.040726881474256516, + 0.025618955492973328, + 0.019691379740834236, + -0.0185757577419281, + -0.011445194482803345, + 0.04510871693491936, + 0.002646239008754492, + -0.016021927818655968, + -0.0041130115278065205, + -0.036667633801698685, + -0.010766413062810898, + 0.023441478610038757, + -0.010477426461875439, + 0.01532298419624567, + 0.01348153781145811, + -0.027124371379613876, + -0.019005877897143364, + 0.009402129799127579, + 0.022433387115597725, + 0.020296234637498856, + -0.013857891783118248, + 0.005974619649350643, + -0.004408718552440405, + -0.028522256761789322, + 0.024960335344076157, + 0.005316000431776047, + -0.005658751353621483, + 0.016492370516061783, + 0.025135071948170662, + 0.01603536866605282, + 0.018629522994160652, + 0.019946761429309845, + 0.03736657649278641, + 0.001153424265794456, + -0.027164693921804428, + -0.015188571996986866, + 0.0036795325577259064, + 0.012412961572408676, + -0.017742402851581573, + 0.02541733719408512, + 0.029274964705109596, + -0.017567668110132217, + 0.003281336510553956, + -0.0074867564253509045, + 0.07043196260929108, + -0.03035026229918003, + -0.031102970242500305, + 0.008199140429496765, + -0.02348180115222931, + -0.007607727311551571, + -0.08312047272920609, + -0.01161320973187685, + 0.003881150623783469, + 0.027433518320322037, + -0.011458635330200195, + 0.019919879734516144, + -0.010403499938547611, + 0.010363176465034485, + -0.012486888095736504, + 0.037877343595027924, + -0.024597423151135445, + -0.03688269108533859, + -0.01985267363488674, + -0.00363584840670228, + -0.006088870111852884, + -0.004452402237802744, + -0.00944917369633913, + -0.007204491179436445, + 0.010618559084832668, + 0.03817304968833923, + 0.0011257017031311989, + -0.008649421855807304, + 0.0062837679870426655, + -0.02231241576373577, + -0.023643096908926964, + -0.007506918162107468, + -0.0216672383248806, + 0.007540521211922169, + 0.01036989688873291, + 0.013205992989242077, + 0.02201670967042446, + -0.008824157528579235, + 0.026815222576260567, + -0.026371663436293602, + -0.0012172700371593237, + -0.014382099732756615, + -0.001706194132566452, + -0.018360698595643044, + 0.015134807676076889, + -0.01611601561307907, + 0.010047308169305325, + 0.011841709725558758, + -0.00030893791699782014, + -0.03255462273955345, + -0.012775874696671963, + 0.01576654426753521, + -0.01829349249601364, + 0.01735260710120201, + -0.00152893818449229, + 0.0016759514110162854, + -0.008965290151536465, + -0.03177503123879433, + -0.007970640435814857, + -0.006552591919898987, + 0.018401023000478745, + 0.0065929158590734005, + 0.009200511500239372, + -0.0010492547880858183, + -0.011418311856687069, + -0.0022110796999186277, + 0.007291859015822411, + -0.002266524825245142, + -0.021747885271906853, + 0.021290883421897888, + -0.005604986567050219, + 0.003385505871847272, + -0.013400890864431858, + -0.013636112213134766, + -0.007137285079807043, + 0.004371754825115204, + -0.03276968002319336, + 0.0022833263501524925, + -0.005094220396131277, + -0.004472563974559307, + -0.0024664627853780985, + -0.005003491882234812, + -0.03817304968833923, + -0.010773133486509323, + 0.021264001727104187, + -0.01856231689453125, + -0.011478797532618046, + -0.02170756086707115, + 0.009166908450424671, + -0.012412961572408676, + 0.014422423206269741, + 0.007560682948678732, + 0.005010212771594524, + -0.022030150517821312, + 0.01760799065232277, + -0.032904092222452164, + 0.015417072921991348, + 0.012964051216840744, + 0.02009461633861065, + -0.029785731807351112, + -0.004126452840864658, + -0.020242469385266304, + -0.012507050298154354, + -0.0022161202505230904, + -0.004482645075768232, + 0.005218551494181156, + -0.03672139719128609, + -0.008313391357660294, + -0.0650017112493515, + 0.023280182853341103, + 0.016478929668664932, + -0.008763671852648258, + -0.013212713412940502, + -0.005094220396131277, + 0.0017759205074980855, + 0.027796432375907898, + 0.007244814652949572, + -0.02717813476920128, + -0.019019318744540215, + -0.00021421935525722802, + 0.00587381049990654, + 0.0004990050802007318, + -0.028683552518486977, + -0.01130406092852354, + 0.002330370480194688, + 0.013535303063690662, + 0.013340405188500881, + -0.01789025589823723, + 0.01190891582518816, + 0.01498695369809866, + 0.000340860802680254, + 0.013192552141845226, + -0.01789025589823723, + -0.01825316995382309, + -0.02192262001335621, + 0.005426890216767788, + 0.00533616216853261, + 0.0023438117932528257, + -0.012171019800007343, + 0.0023018079809844494, + -0.017204754054546356, + 0.03064596839249134, + 0.0017145948950201273, + 0.0021438736002892256, + 0.016573017463088036, + 0.037312813103199005, + 0.01642516441643238, + 0.047850724309682846, + -0.03688269108533859, + -0.029920144006609917, + 0.02720501832664013, + -0.008575494401156902, + -0.013380728662014008, + -0.02692275308072567, + 0.020793559029698372, + -0.019435996189713478, + 0.01729884371161461, + -0.009153466671705246, + 0.029839497059583664, + 0.011478797532618046, + -0.007742139510810375, + -0.034490156918764114, + -0.008998893201351166, + -0.019879555329680443, + 0.004489365499466658, + -0.003432550234720111, + 0.0027386473957449198, + -0.02254091575741768, + 0.03992040827870369, + 0.013898216187953949, + 0.002385815605521202, + -0.007688374724239111, + 0.017218194901943207, + -0.012984213419258595, + -0.03282344713807106, + -0.012123975902795792, + 0.0029486664570868015, + -0.016156340017914772, + -0.012964051216840744, + -0.0023219697177410126, + 0.028952376917004585, + 0.02133120782673359, + 0.00034002072061412036, + -0.014637482352554798, + 0.004270945675671101, + 0.00687518110498786, + 0.011915636248886585, + 0.014812218025326729, + 0.021452179178595543, + 0.025175394490361214, + -0.026519516482949257, + 0.007406109012663364, + 0.03435574471950531, + 0.008467964828014374, + -0.020820440724492073, + 0.002022902714088559, + -0.01205676980316639, + 0.01022876426577568, + 0.0061930394731462, + 0.004832116421312094, + 0.0021304325200617313, + 0.0037366575561463833, + -0.02376406639814377, + 0.012903565540909767, + 0.010880663059651852, + 0.013031257316470146, + 0.030215850099921227, + 0.032957859337329865, + 0.02438236214220524, + 0.003321660216897726, + -0.003188928123563528, + -0.014785336330533028, + -0.022715652361512184, + 0.004647300112992525, + -0.022151121869683266, + -0.02846849150955677, + -0.0003322500269860029, + 0.003985320217907429, + 0.009260997176170349, + -0.00046078162267804146, + -0.0004599415697157383, + 0.0056150672025978565, + -0.00881743710488081, + 0.018024668097496033, + -0.007251535076647997, + 0.001910332590341568, + -0.032043855637311935, + 0.02814590372145176, + 0.023777509108185768, + -0.0071776085533201694, + 0.012298711575567722, + 0.0009744880371727049, + -0.002444620942696929, + 0.015013836324214935, + -0.0038441873621195555, + -0.01887146569788456, + 0.0017742402851581573, + -0.018683288246393204, + 0.005006852559745312, + -0.0007842108607292175, + 0.006700445432215929, + 0.005729317665100098, + -0.024893129244446754, + -0.0043784757144749165, + 0.020968293771147728, + 0.009019054472446442, + -0.009207231923937798, + 0.12731517851352692, + 0.004509527236223221, + -0.009126584976911545, + -0.011915636248886585, + -0.013253037817776203, + -0.0008997212862595916, + 0.008407480083405972, + -0.020282791927456856, + -0.02719157747924328, + -0.04551195353269577, + 0.003116681706160307, + -0.005426890216767788, + 0.004099570214748383, + -0.001600344548933208, + -0.018777376040816307, + -0.00897201057523489, + -0.011021795682609081, + 0.01916717179119587, + -0.021546266973018646, + 0.01348153781145811, + 0.03892575576901436, + -0.029194317758083344, + 0.008219302631914616, + 0.041882824152708054, + -0.023051682859659195, + -0.01343449391424656, + 0.01267506554722786, + 0.012856521643698215, + -8.427011198364198e-05, + -0.013548743911087513, + 0.00801768433302641, + -0.003790422575548291, + -0.06457159668207169, + -0.032984741032123566, + 0.023885037750005722, + -0.03276968002319336, + 0.010665603913366795, + -0.012332314625382423, + 0.005793163552880287, + 0.003608966013416648, + -0.006619798019528389, + 0.015443955548107624, + 0.0008778793271631002, + -0.008273067884147167, + 0.016236986964941025, + -0.012869962491095066, + 0.017446696758270264, + -0.020296234637498856, + -0.019005877897143364 + ], + "metadata": { + "source": "INSPIRER_Schlussbericht.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 5, + "has_images": true, + "image_count": 29, + "detection_class_prob": 0.6591171622276306, + "coordinates": "CoordinatesMetadata(points=((1122.828857421875, 155.53517150878906), (1122.828857421875, 361.06524658203125), (1358.3359375, 361.06524658203125), (1358.3359375, 155.53517150878906)), system=)", + "links": [], + "last_modified": "2025-05-05T22:58:03", + "_known_field_names": "frozenset({'page_number', 'text_as_html', 'emphasized_text_contents', 'subject', 'data_source', 'links', 'coordinates', 'image_path', 'is_continuation', 'header_footer_type', 'sent_from', 'url', 'parent_id', 'detection_class_prob', 'emphasized_text_tags', 'last_modified', 'category_depth', 'page_name', 'attached_to_filename', 'bcc_recipient', 'orig_elements', 'languages', 'filetype', 'link_texts', 'file_directory', 'sent_to', 'key_value_pairs', 'image_base64', 'cc_recipient', 'link_urls', 'signature', 'image_mime_type', 'filename', 'detection_origin', 'table_as_cells', 'email_message_id', 'link_start_indexes'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "INSPIRER_Schlussbericht.pdf", + "parent_id": "1c51aaba3295e535d31a83c2392f0391", + "text_as_html": "
Projektlaufzeit01.08.2021 - 31.07.2024 (verl\u00e4ngert bis 31.10.2024)
F\u00f6rderkennzeichen165V8744
StichworteStadtentwicklung, Digitale B\u00fcrgerbeteiligung, Partizipation
und Akzeptanz, Augmented Reality, Extended Reality (XR),
AR-Tracking, Point Cloud Matching
ProjektleitungProf. Dr.-Ing. Volker Coors
Beteiligte ProfessorenProf. Dr.-Ing. Volker Coors
Gef\u00f6rderte Ma\u00dfnahmeForschungsprogramm zur Mensch-Technik-nteraktion
F\u00f6rderbereichTechnik zum Mensch bringen
FachhochschuleHochschule f\u00fcr Technik Stuttgart (HFT Stuttgart),
", + "id": "351a57f5-fe09-4ea6-8750-b2c5267a9700", + "processing_timestamp": "2025-05-05T23:07:23.860264", + "chunk_number": 4, + "total_chunks": 19, + "chunking_strategy": "hybrid", + "word_count": 450 + } +} \ No newline at end of file diff --git a/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000005.json b/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000005.json new file mode 100644 index 0000000000000000000000000000000000000000..ccc375d26f5459809440105b59a44a907af3af0e --- /dev/null +++ b/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000005.json @@ -0,0 +1,1570 @@ +{ + "id": "2b86db2d-408b-1992-e1b5-8a9f00000005", + "content": "Ein weiterer innovativer Aspekt des entwickelten Systems war die Optimierung der Tracking- Performance durch Vorverarbeitungsmethoden. Die Punktwolken wurden durch Downsampling-Techniken, Normalenberechnung und Feature-Extraktion optimiert, um die Berechnungszeit zu minimieren, ohne die Genauigkeit zu beeintr\u00e4chtigen. Dies erm\u00f6glichte eine Echtzeitverarbeitung, die f\u00fcr mobile AR-Anwendungen essenziell war. [IMAGE: Not Matched Matched voxel size 0.1 Matched voxel size 0.5]\n\nAbbildung 3: Optimierung der Matching-Parameter. Die Implementierung des Algorithmus erfolgte zun\u00e4chst in Python unter Verwendung der Open3D-Bibliothek. W\u00e4hrend erste Tests in dieser Umgebung erfolgreich waren, zeigte sich, dass eine native Implementierung in C++ notwendig war, um die Performance f\u00fcr Echtzeitanwendungen zu optimieren. Daher wurde der Algorithmus als dynamische Bibliothek (DLL) in Unity integriert, was eine nahtlose Nutzung innerhalb der AR-App erm\u00f6glichte. [IMAGE: / + ->DLL PCs laden / \\ N Pluginin aufnehmen Unity PC Vorverarbeitung FGR (FastGlobalReg) Good um LocalRegistration (ColorICP, GICP...)]\n\nAbbildung 4: Integration des Algorithmus in ein Unity Projekt - z.B. die AR-App. Der blaue Kasten erstellt im wesentlichen Abbildung 2 dar. Parallel dazu wurde das Tracking-System weiterentwickelt und in die bestehende AR- Infrastruktur integriert (D6.4). Hierbei wurde untersucht, wie verschiedene Sensoren, darunter Lidar-Sensoren und optische Tiefenkameras, zur Verbesserung der Punktwolkenerfassung beitragen k\u00f6nnen. In realen Tests wurden sowohl station\u00e4re als auch mobile Erfassungssysteme genutzt, um die Robustheit des Tracking-Ansatzes unter unterschiedlichen Bedingungen zu evaluieren. Eine detaillierte Analyse der Laufzeiten des implementierten Algorithmus best\u00e4tigte, dass das Point Cloud Matching selbst schnell arbeitet und f\u00fcr Echtzeitanwendungen geeignet ist. Die Messungen zeigten jedoch, dass die Initialisierung der Bibliotheken (0.55-0.59s) einen signifikanten Teil der Gesamtzeit in Anspruch nimmt. Diese Initialisierung erfolgt jedoch nur einmal und k\u00f6nnte im Hintergrund beim Start der AR-App durchgef\u00fchrt werden, um Verz\u00f6gerungen w\u00e4hrend der Anwendung zu vermeiden. [IMAGE: Matching Algorithmic speed test Phase Seti-Time(s) _|set2-Time (S) Tore! Library initialization 0.5927] 0.5538] vr Load Point Clouds 0.0616] 0.2982 Compute FPFH Downsampling 0.0056) 0.0133) Estimate Normals Estimate Normals .0.0003| 0.0373) Dounsumping | |Compute FPFH 0.0015) 0.4047] FGR 0.5756] 0.7115) u u Total 1.2325] 2.3221 brary nitzation o 05 1 15 2 25 Date set1 Cound_bin_O Cound_bin_1 WSet2-Time($) MSetl- Time (S) Format PCD PCD No.Point 198835 137833 Normals? Yes Yes Float? n.n Scaler? n.n Date set2 1004N part_density_ reduced Format PCD XYZ No. Point 269856 494748 Normals? Yes No Float? Yes No Scale? n.n No]\n\n\n| Phase Seti-Time(s) _|set2-Time (S) Library initialization 0.5927] 0.5538] Load Point Clouds 0.0616] 0.2982 Downsampling 0.0056) 0.0133) Estimate Normals .0.0003| 0.0373) |Compute FPFH 0.0015) 0.4047] FGR 0.5756] 0.7115) Total 1.2325] 2.3221 |\n\n\n| Date | set2 | 1004N | part_density_ | reduced | Format | PCD | XYZ | No.", + "embedding": [ + -0.021350696682929993, + 0.022999346256256104, + 0.014538093470036983, + -0.016759002581238747, + 0.011642737314105034, + 0.016391120851039886, + -0.014824222773313522, + -0.02594239078462124, + -0.010293842293322086, + -0.05226628854870796, + 0.025901515036821365, + 0.026541899889707565, + 0.0023145817685872316, + -0.002379301469773054, + -0.024825124070048332, + 0.013815958052873611, + 0.030602211132645607, + -0.004980012308806181, + -0.005324048921465874, + -0.006809196434915066, + -0.014933224767446518, + 0.011629112996160984, + 0.008849570527672768, + -0.012964382767677307, + -0.0066116307862102985, + 0.009394578635692596, + 0.022576965391635895, + -0.020328806713223457, + 0.008713318966329098, + -0.003723087254911661, + 0.012344435788691044, + -0.020587684586644173, + -0.002559835324063897, + 0.01030746754258871, + -0.031419724225997925, + -0.01219455897808075, + -0.0009886788902804255, + -0.006087060552090406, + 0.024225614964962006, + 0.014756097458302975, + 0.028394928202033043, + -0.0023827077820897102, + 0.007112356834113598, + -0.013795520178973675, + -0.003852526657283306, + 0.012875818647444248, + 0.0009154434665106237, + 0.030602211132645607, + -0.023162849247455597, + 0.011560986749827862, + 0.009966837242245674, + 0.02951219491660595, + -0.006935229524970055, + -0.01953854411840439, + -0.016840754076838493, + -0.0055761151015758514, + -0.015709862112998962, + 0.010552721098065376, + -0.004826728720217943, + -0.004830135032534599, + -0.007630114909261465, + 0.008624754846096039, + -0.01658187434077263, + 0.0009478033171035349, + -0.016023240983486176, + -0.004189750645309687, + -0.02066943608224392, + 0.007071481551975012, + 0.015628110617399216, + -0.020928315818309784, + 0.03174672648310661, + 0.015232979319989681, + -0.014497218653559685, + -0.0039955913089215755, + 0.03880458325147629, + -0.0134889530017972, + 0.019402291625738144, + -0.007507488131523132, + -0.0034386611077934504, + 0.001560937613248825, + 0.00700335530564189, + -0.011962929740548134, + -0.005559083539992571, + 0.021364321932196617, + 0.0012628862168639898, + 0.009149325080215931, + -0.011077291332185268, + 0.01951129361987114, + -0.014987725764513016, + 0.005804337561130524, + 0.000552246579900384, + 0.0320192314684391, + 0.008679255843162537, + 0.00452697416767478, + -0.005903120152652264, + 0.004949355963617563, + -0.0005309571861289442, + 0.02024705521762371, + -0.013788707554340363, + -0.012024243362247944, + -0.016718126833438873, + 0.005760055501013994, + -0.014061211608350277, + -0.01780814304947853, + -0.015628110617399216, + -0.013815958052873611, + -0.0023946298751980066, + 0.023162849247455597, + 0.008072934113442898, + 0.0026960873510688543, + -0.005814556498080492, + 0.0016597203211858869, + -0.024252865463495255, + -0.005330861546099186, + 0.007194108329713345, + -0.016418371349573135, + 0.019960924983024597, + -0.0134889530017972, + -0.012385311536490917, + -0.002638180274516344, + 0.023639731109142303, + 0.010893351398408413, + 0.018761906772851944, + 0.0001648862671572715, + 0.028830934315919876, + 0.01628212071955204, + -0.012869006022810936, + -0.0024848966859281063, + -0.007589239161461592, + -0.031664974987506866, + -0.0001566898572491482, + -0.0006207983824424446, + 0.012548813596367836, + 0.01198336761444807, + -0.021200818940997124, + -0.0008805288816802204, + -0.004234032705426216, + -0.016759002581238747, + -0.04975925013422966, + -0.03152872622013092, + 0.01310744695365429, + 0.02978469803929329, + -0.0009035214316099882, + -0.028394928202033043, + -0.017753642052412033, + 0.03904983773827553, + -0.006305063609033823, + 0.008699693717062473, + 0.008672443218529224, + -0.023680606856942177, + -0.020465057343244553, + -0.04409116506576538, + 0.006277813110500574, + 0.009960024617612362, + -0.011704050935804844, + -0.030574960634112358, + 0.006945448461920023, + 0.01813514716923237, + -0.012174121104180813, + -0.030438708141446114, + -0.0017355105374008417, + 0.0040943739004433155, + -0.03106546774506569, + -0.006148373708128929, + 0.03738756105303764, + 0.009251514449715614, + 0.0075143007561564445, + -0.015410106629133224, + -0.0059235580265522, + -0.004629163537174463, + 0.002166407648473978, + 0.0050856079906225204, + -0.01933416537940502, + 0.022086458280682564, + -0.00021523566101677716, + -0.0049663870595395565, + 0.013100634329020977, + 0.009081198833882809, + -0.01704513095319271, + -0.022181833162903786, + 0.00963301956653595, + 0.003876370843499899, + 0.017276760190725327, + 0.012051493860781193, + -0.023040222004055977, + 0.0035459597129374743, + 0.009769272059202194, + 0.011942491866648197, + 0.00022311272914521396, + -0.006475378759205341, + 0.011806240305304527, + 0.003917246591299772, + 0.002246455755084753, + -0.022767717018723488, + -0.6252334117889404, + -0.012419374659657478, + 0.01487872377038002, + -0.014156588353216648, + 0.006376596167683601, + 0.04635294899344444, + 0.02283584326505661, + -0.00044750282540917397, + -0.02423924021422863, + 0.057607367634773254, + -0.0009094824199564755, + -0.002832339610904455, + 0.001190502312965691, + -0.019075287505984306, + -0.001977357780560851, + -0.0269234050065279, + 0.009265139698982239, + -0.00821599829941988, + 0.012051493860781193, + 0.01889815926551819, + -0.049159739166498184, + 0.001663978211581707, + 0.004380503669381142, + 0.006795571185648441, + 0.0017057054210454226, + 0.0073507982306182384, + 0.011417921632528305, + 0.0011470719473436475, + -0.0019432948902249336, + -0.005037919618189335, + -0.026364771649241447, + 0.015464607626199722, + -0.0055079893209040165, + 0.031937479972839355, + 0.04896898567676544, + -0.012569251470267773, + -0.014687971211969852, + 0.02423924021422863, + 0.013625205494463444, + 0.012725941836833954, + -0.007909431122243404, + 0.003971747122704983, + 0.01896628551185131, + -0.00019937507750000805, + 0.009503580629825592, + 0.009108449332416058, + 0.022277209907770157, + -0.013018883764743805, + -0.008100184611976147, + -0.029866449534893036, + 0.0011581424623727798, + 0.01129529532045126, + 0.017113257199525833, + -0.005698741879314184, + 0.003161047585308552, + 0.006148373708128929, + 0.010995540767908096, + -0.006788758561015129, + 0.004905073903501034, + -0.027577415108680725, + -0.0224679633975029, + -0.030956465750932693, + -0.008665630593895912, + -0.045780688524246216, + -0.026841653510928154, + 0.01461984496563673, + -0.009394578635692596, + -0.011029603891074657, + 0.0192660391330719, + -0.001556679722853005, + 0.024770623072981834, + 0.015709862112998962, + -0.004653007723391056, + -0.027059657499194145, + 0.009837398305535316, + 0.018026147037744522, + 0.047306712716817856, + -0.027890793979167938, + 0.02265871688723564, + 0.01921153999865055, + 0.00010644691792549565, + -0.012317185290157795, + -0.006935229524970055, + 0.01972929760813713, + 0.012283122166991234, + 0.0057668681256473064, + -0.013502578251063824, + -0.005310423672199249, + 0.01835315115749836, + 0.0002616465208120644, + 0.006070028990507126, + 0.030329706147313118, + -0.02823142521083355, + -0.034226514399051666, + -0.005589740350842476, + 0.033463504165410995, + -0.01722225919365883, + 0.03158322721719742, + 0.01862565614283085, + -0.047115959227085114, + -0.031174469739198685, + -0.010620847344398499, + 0.028885435312986374, + -0.01384320855140686, + 0.028558429330587387, + -0.01358432974666357, + -0.03131072223186493, + 0.0008353953598998487, + 0.05673535540699959, + -0.025683511048555374, + -0.025411007925868034, + -0.0218275785446167, + -0.01823052391409874, + -0.013529828749597073, + 0.0115269236266613, + -0.027781793847680092, + 0.001527726068161428, + -0.011744926683604717, + 0.019811049103736877, + 0.0112067312002182, + 0.007037418428808451, + -0.014974100515246391, + 0.02874918282032013, + -0.004881229717284441, + 0.006727444939315319, + -0.0057089608162641525, + 0.008325000293552876, + -0.017208633944392204, + -0.005259328987449408, + 0.006863696966320276, + 0.006431096699088812, + -0.006846665404736996, + 0.038886334747076035, + -0.00600530905649066, + 0.035262029618024826, + 0.0007681209244765341, + 0.011894804425537586, + -0.0005616139387711883, + -0.007023793179541826, + -0.050440508872270584, + -0.02798617072403431, + 0.0020761406049132347, + 0.027550164610147476, + -0.01945679262280464, + -0.01793077029287815, + -0.017631014809012413, + -0.008270499296486378, + 0.017276760190725327, + 0.011704050935804844, + -0.004271501675248146, + 0.003941090777516365, + -0.020560434088110924, + 0.0018462153384462, + 0.02613314427435398, + -0.004424785263836384, + -0.0008813804597593844, + -0.0031474223360419273, + -0.04300114884972572, + 0.003968340810388327, + -0.0384775809943676, + 0.00474838400259614, + 0.010579971596598625, + -0.027890793979167938, + -0.018285024911165237, + 0.005211641080677509, + -0.02893993631005287, + -0.01079116202890873, + 0.02081931382417679, + -0.026691777631640434, + -0.026610026136040688, + 0.011547361500561237, + -0.007275859359651804, + 0.007330360356718302, + 0.01155417412519455, + -0.013727393932640553, + 0.012964382767677307, + -0.03073846362531185, + -0.030166203156113625, + -0.009871461428701878, + -0.00121604953892529, + 0.01129529532045126, + 0.01172448880970478, + -0.0039002150297164917, + -0.023639731109142303, + 0.009081198833882809, + 0.003644742304459214, + 0.006829633843153715, + -0.0020744374487549067, + -0.02670540288090706, + 0.02817692421376705, + 0.009544456377625465, + 0.030929215252399445, + -0.00966708268970251, + 0.022304460406303406, + -0.009081198833882809, + -0.008100184611976147, + -0.014251964166760445, + -0.011152230203151703, + -0.00253428821451962, + 0.030193453654646873, + 0.02216820791363716, + 0.007200920954346657, + -0.0025973047595471144, + 0.006216499954462051, + 0.0003563842619769275, + -0.0371968112885952, + 0.006594599224627018, + -0.020628560334444046, + -0.008590691722929478, + 0.011969742365181446, + -0.001189650734886527, + -0.002219205256551504, + -0.013918147422373295, + -0.00317126652225852, + 0.016813503578305244, + 0.02542463317513466, + -0.015587234869599342, + 0.005133295897394419, + 0.016322996467351913, + 0.010941039770841599, + -0.005180984269827604, + -0.003133797086775303, + 0.04817872494459152, + -0.015587234869599342, + -0.003040123963728547, + -0.01564173586666584, + 0.018271399661898613, + 0.02973019704222679, + 0.02621489390730858, + -0.03496227785944939, + -0.025465508922934532, + 0.003169563366100192, + 0.0022260178811848164, + 0.007466612383723259, + 0.026746276766061783, + 0.03509852662682533, + 0.03302749618887901, + -0.0037026493810117245, + 0.026596400886774063, + -0.007984369993209839, + -0.0033688319381326437, + 0.014892349019646645, + 0.005450082011520863, + -0.016295745968818665, + -0.0010704301530495286, + -0.008910884149372578, + 0.04447266831994057, + 0.021977456286549568, + -0.006982917431741953, + 0.003968340810388327, + -0.007466612383723259, + 0.010668535716831684, + -0.013802332803606987, + 0.018244149163365364, + 0.006134748458862305, + -0.0020727342925965786, + 0.02009717747569084, + -0.006206281017512083, + 0.027604665607213974, + 0.051421523094177246, + 0.013114259578287601, + 0.014442717656493187, + 0.023462602868676186, + -0.004469067323952913, + 0.009844210930168629, + -0.014265589416027069, + -0.004683664068579674, + -0.01410208735615015, + -0.010607222095131874, + 0.001561789191327989, + 0.014251964166760445, + -0.026092268526554108, + 0.004118218086659908, + -0.02396673522889614, + 0.01103641651570797, + -0.00821599829941988, + 0.03155597671866417, + 0.009312828071415424, + 0.03855932876467705, + 0.019061662256717682, + -0.02899443730711937, + -0.026296645402908325, + -0.0001422130735591054, + 0.029321441426873207, + -0.012126432731747627, + -0.01914341375231743, + -0.016500122845172882, + 0.025683511048555374, + 0.0008711615228094161, + -0.016936130821704865, + -0.0042170011438429356, + 0.005848619155585766, + -0.010300654917955399, + -0.013209636323153973, + 0.0014408654533326626, + 0.01050503272563219, + 0.02408936247229576, + -0.009094824083149433, + -0.01997455023229122, + -0.001450232812203467, + -0.02086018957197666, + 0.004142062272876501, + -0.016759002581238747, + -0.02847667783498764, + 0.026623651385307312, + -0.009687520563602448, + -0.020846564322710037, + -0.027304910123348236, + -0.0026501023676246405, + -0.025601759552955627, + 0.012739567086100578, + -0.01361158024519682, + 0.0013301606522873044, + 0.007779992185533047, + -0.015273855067789555, + 0.020206179469823837, + 0.0005143514717929065, + 0.006110904272645712, + 0.03406301140785217, + 0.011131792329251766, + -0.01948404312133789, + -0.01808064803481102, + -0.0010746880434453487, + 0.009803335182368755, + -0.010770725086331367, + 0.015955114737153053, + 0.002634773962199688, + 0.00807974673807621, + -0.029920950531959534, + -0.009469517506659031, + -0.008883633650839329, + -0.03899533674120903, + 0.023012971505522728, + 0.015750737860798836, + -0.011697238311171532, + 0.0053785499185323715, + 0.02801342122256756, + -0.011574611999094486, + -0.000950358051341027, + 0.0029106843285262585, + 0.01010990235954523, + -0.01564173586666584, + 0.0008558331755921245, + 0.03327275067567825, + 0.001104493159800768, + 0.030711213126778603, + 0.0032240641303360462, + 0.032182734459638596, + -4.8699464969104156e-05, + -0.009442267008125782, + 0.03384501114487648, + 0.0121673084795475, + 0.003133797086775303, + -0.011867553927004337, + -0.008583879098296165, + 0.030683962628245354, + 0.0131687605753541, + 0.022100083529949188, + 0.011574611999094486, + 0.02323097549378872, + 0.01600961573421955, + -0.012419374659657478, + 0.01978379860520363, + -0.013502578251063824, + 0.019170664250850677, + 0.01001452561467886, + 0.012855380773544312, + 0.0007519409991800785, + 0.009851023554801941, + -0.00043600655044429004, + 0.006362970918416977, + 0.015546359121799469, + -0.02145969867706299, + -0.010259779170155525, + -0.00814106035977602, + -0.018952660262584686, + -0.03798707202076912, + -0.013393576256930828, + -0.01400671061128378, + 0.005715773440897465, + -0.009898711927235126, + -0.02066943608224392, + 0.021868454292416573, + -0.009217451326549053, + -0.029839199036359787, + -0.02759104035794735, + -0.011308920569717884, + -0.008904071524739265, + -0.01884365826845169, + -0.014020335860550404, + -0.024743372574448586, + -0.010893351398408413, + -0.012800879776477814, + 0.010539095848798752, + 0.004257876425981522, + -0.0020965784788131714, + -0.023489853367209435, + -0.00163502455689013, + 0.0040534986183047295, + -0.00011666581849567592, + 0.022876719012856483, + -0.006604818161576986, + 0.0005965285236015916, + -0.010893351398408413, + -0.0020727342925965786, + -0.02024705521762371, + 0.022903969511389732, + -0.021718576550483704, + -0.008004807867109776, + -0.01966117136180401, + -0.012099182233214378, + -0.014279214665293694, + -0.012351248413324356, + 0.021664075553417206, + -0.008910884149372578, + 0.01551910862326622, + -0.008781444281339645, + 0.03024795465171337, + 0.024920500814914703, + 0.0032019231002777815, + -0.011322545818984509, + 0.028858184814453125, + 0.010150778107345104, + -0.02091469056904316, + 0.022754091769456863, + -0.010518657974898815, + -0.00782086793333292, + -0.0096193952485919, + -0.006918197963386774, + 0.006652506534010172, + -0.018039772287011147, + -0.0005688522942364216, + -0.00290387193672359, + -0.008393126539885998, + 0.014592594467103481, + -0.006621849723160267, + 0.0013020586920902133, + -0.012249059043824673, + 0.01832590065896511, + 0.008474878035485744, + -0.004029654432088137, + -0.0050890143029391766, + 0.0282041747123003, + -0.00017350846610497683, + -0.01258968934416771, + -0.027359411120414734, + 0.027768168598413467, + 0.003213845193386078, + 0.018421277403831482, + 0.008944947272539139, + -0.0019501075148582458, + 0.004353253170847893, + -0.02021980471909046, + 0.018952660262584686, + -0.014783347956836224, + 0.009047136642038822, + 0.007010167930275202, + 0.0011223762994632125, + -0.024552619084715843, + -0.020574059337377548, + 0.0028851372189819813, + 0.009994087740778923, + -0.005889494903385639, + 0.0018036365509033203, + -0.008059308864176273, + 0.0064242840744555, + 0.017644640058279037, + 0.00015147395606618375, + 0.005153733771294355, + -0.016963379457592964, + -0.009905524551868439, + 0.017821768298745155, + -0.028149673715233803, + 0.03779631853103638, + -0.0024423180148005486, + -0.01606411673128605, + -0.0230538472533226, + -0.01306657213717699, + -0.039594847708940506, + -0.017399387434124947, + -0.009762459434568882, + -0.006887541152536869, + 0.0371968112885952, + 0.003644742304459214, + 0.05368330702185631, + 0.015491858124732971, + 0.01143154688179493, + -0.0008639231673441827, + -0.02103731594979763, + 0.005712367128580809, + 0.010777536779642105, + 0.008209185674786568, + -0.014374591410160065, + 0.01030746754258871, + 0.007779992185533047, + 0.008147872984409332, + 0.008052496239542961, + -0.0025479134637862444, + 0.02259059064090252, + 0.02734578587114811, + -0.028067922219634056, + -0.018366776406764984, + -0.0062607815489172935, + -0.03485327586531639, + -0.01169042568653822, + -0.011826678179204464, + 0.011159042827785015, + 0.009776084683835506, + -0.03024795465171337, + -0.0002716525341384113, + 0.024838749319314957, + 0.008127435110509396, + 0.015028601512312889, + -0.014606219716370106, + 0.018162397667765617, + -0.013059759512543678, + -0.0011700644390657544, + 0.00448950519785285, + 0.0037026493810117245, + -0.014783347956836224, + -0.009905524551868439, + -0.018271399661898613, + 0.008638380095362663, + 0.017058756202459335, + -0.001899012946523726, + 0.024130238220095634, + 0.032754991203546524, + -0.0007417221204377711, + -0.008904071524739265, + 0.025342881679534912, + 0.007296297233551741, + -0.03199198096990585, + -0.001451935968361795, + -0.020751187577843666, + 0.0017176273977383971, + -0.015628110617399216, + -0.01823052391409874, + 0.009598957374691963, + -0.007275859359651804, + 0.009721583686769009, + 0.018666531890630722, + 0.02893993631005287, + 0.012828130275011063, + -0.0192660391330719, + 0.030602211132645607, + 0.010028150863945484, + 0.044799674302339554, + -0.002089765854179859, + 0.006161998957395554, + 0.007125982083380222, + -0.02180032804608345, + -0.01953854411840439, + -0.0642019659280777, + 0.009653457440435886, + 0.004959574434906244, + 0.029893700033426285, + 0.02973019704222679, + -0.028803683817386627, + -0.01887090876698494, + 0.029048936441540718, + -0.015123977325856686, + -0.03869558125734329, + -0.03433551639318466, + 0.03686980530619621, + 0.015777988359332085, + 0.002670540241524577, + -0.004050092305988073, + -0.021486949175596237, + -0.03002995252609253, + 0.004680257756263018, + -0.005191203206777573, + 0.01201061811298132, + -0.014892349019646645, + 0.0007979260990396142, + -0.017876269295811653, + 0.030111704021692276, + -0.015164853073656559, + 0.024838749319314957, + -0.002619445789605379, + -0.010055401362478733, + 0.010763912461698055, + -0.005412612576037645, + -0.01591423898935318, + 0.006598005536943674, + -0.010634472593665123, + 0.03343625366687775, + -0.008413564413785934, + -0.0320192314684391, + 0.023271849378943443, + -0.008829132653772831, + -0.007963932119309902, + 0.00019607521244324744, + -0.018530279397964478, + 0.026514649391174316, + -0.018911784514784813, + -0.008481689728796482, + 0.013414014130830765, + -0.004223813768476248, + 0.03000270202755928, + 0.01143154688179493, + -0.005889494903385639, + -0.011063666082918644, + -0.0034982713405042887, + -0.00045772173325531185, + 0.01149286050349474, + -0.007555176038295031, + -0.02256334014236927, + 0.0016690876800566912, + 0.004813103470951319, + -0.007670990657061338, + -0.0019279664847999811, + 0.023953109979629517, + 0.015382856130599976, + -0.06763552129268646, + -0.014401841908693314, + 0.027059657499194145, + -0.010436907410621643, + 0.023925859481096268, + 0.0054160188883543015, + -0.007153232581913471, + -0.007330360356718302, + 0.012535188347101212, + -0.03943134471774101, + 0.013243699446320534, + 0.04924149066209793, + -0.008168310858309269, + -0.025601759552955627, + -0.0038865897804498672, + -0.007963932119309902, + -0.018039772287011147, + 0.037850819528102875, + -0.03896808624267578, + -0.03545278310775757, + -0.001897309790365398, + -0.008529378101229668, + -0.004056904930621386, + 0.006465159822255373, + -0.004595100414007902, + 0.006686569191515446, + 0.023789608851075172, + 0.0031797823030501604, + -0.01436096616089344, + -0.010130340233445168, + 0.0036822117399424314, + 0.0009009666973724961, + -0.019061662256717682, + 0.02874918282032013, + -0.01884365826845169, + 0.009837398305535316, + 0.019552169367671013, + -0.02259059064090252, + 0.022427087649703026, + -0.036542799323797226, + -0.01600961573421955, + -0.007841305807232857, + 0.015682611614465714, + -0.015750737860798836, + 0.013734206557273865, + -0.006070028990507126, + -0.03376325964927673, + -0.019279664382338524, + 0.017208633944392204, + 0.01526022981852293, + 0.005269547924399376, + 0.017453888431191444, + 0.0026024142280220985, + -0.03223723545670509, + 0.008829132653772831, + 0.0038865897804498672, + -0.049105238169431686, + 0.0040228418074548244, + -0.021228069439530373, + -0.025874264538288116, + 0.007412111386656761, + -0.008754194714128971, + 0.032427988946437836, + 0.049132488667964935, + -0.03746931254863739, + -0.019524918869137764, + 0.01053228322416544, + -0.028912685811519623, + -0.016786253079771996, + -0.014756097458302975, + 0.009919148869812489, + -0.005640835035592318, + 0.0011572908842936158, + 0.0038389016408473253, + 0.025342881679534912, + 0.009789709933102131, + 0.012208184227347374, + -0.006734257563948631, + -0.015628110617399216, + -0.022481588646769524, + 0.004772228188812733, + 0.022917594760656357, + -0.010641285218298435, + -0.04311014711856842, + 0.023299099877476692, + 0.002880027750506997, + -0.0017040022648870945, + 0.024443617090582848, + 0.009006260894238949, + -0.007480237632989883, + -0.006434503011405468, + 0.0030775931663811207, + 0.021963831037282944, + 0.003998997621238232, + 0.0036856180522590876, + 0.008958572521805763, + -0.03283674269914627, + 0.003614085726439953, + 0.0250022504478693, + -0.0038423079531639814, + -0.024579869583249092, + -0.0022294241935014725, + 0.013754644431173801, + -0.019320540130138397, + -0.017699141055345535, + -0.0029430442955344915, + -0.02000180073082447, + 0.016200369223952293, + -0.009128887206315994, + 0.01914341375231743, + 0.026092268526554108, + -0.013039321638643742, + 0.007997995242476463, + 0.010280217044055462, + 0.008992635644972324, + -0.008481689728796482, + 0.018407652154564857, + -0.04624394699931145, + 0.009864648804068565, + 0.0020625153556466103, + 0.0020454840268939734, + 0.023299099877476692, + -0.010723036713898182, + 0.001951810671016574, + 0.0013139806687831879, + -0.011097729206085205, + -0.012187746353447437, + -0.003665180178359151, + -0.036597300320863724, + 0.03024795465171337, + 0.00632550148293376, + -0.023149223998188972, + 0.03150147572159767, + -0.01613224297761917, + 0.0018155585275962949, + -0.01277363020926714, + -0.014088462106883526, + 0.000843911140691489, + -0.015205728821456432, + -0.014183838851749897, + 0.0018785751890391111, + -0.01250112522393465, + -0.018939035013318062, + 0.0192660391330719, + -0.0065503171645104885, + 0.0003508490335661918, + 0.013597954995930195, + 0.18399477005004883, + -0.00013518758350983262, + -0.0018291837768629193, + 0.024579869583249092, + 0.004598506726324558, + -0.0015072883106768131, + 0.01825777441263199, + -0.015655361115932465, + 0.00034510091063566506, + 0.022508839145302773, + 0.012671440839767456, + 0.00911526195704937, + 0.016990629956126213, + -0.00718048308044672, + 0.029811948537826538, + -0.009857836179435253, + -0.006942042149603367, + -0.007854931056499481, + -0.003641335992142558, + 0.014456342905759811, + 0.02759104035794735, + -0.01805339753627777, + -0.010287029668688774, + -0.01963392086327076, + 0.005208234768360853, + -0.019102538004517555, + 0.0044452231377363205, + -0.001371036283671856, + 0.01774001680314541, + -0.0017576514510437846, + -0.011458797380328178, + 0.008652005344629288, + 0.01884365826845169, + -0.00664569390937686, + -0.01282131765037775, + -0.011363420635461807, + 0.0028544804081320763, + 0.004404347389936447, + 0.026514649391174316, + -0.00031295392545871437, + -0.002641586586833, + -0.02036968246102333, + 0.009387766011059284, + -0.021745827049016953, + -0.004690476693212986, + 0.031664974987506866, + -0.001104493159800768, + 0.004608725663274527, + -0.002750588348135352, + -0.007466612383723259, + -0.023735107854008675, + -0.01613224297761917, + 0.00017223111353814602, + 0.007732303813099861, + -0.017576513811945915, + 0.0031014373525977135, + 0.002219205256551504, + -0.0003925762139260769, + -0.00010708559420891106, + 0.03583429008722305, + -0.024457242339849472, + 0.004336221609264612, + 0.013073383830487728, + 0.006516254507005215, + -0.033708758652210236, + 0.011336171068251133, + -0.04210188239812851, + -0.008468065410852432, + -0.008434002287685871, + -0.016472872346639633, + 0.006751289125531912, + -0.0005565044702962041, + -0.017603764310479164, + 0.009326453320682049, + -0.024184739217162132, + -0.0385320782661438, + 0.010620847344398499, + 0.018312275409698486, + 0.022849468514323235, + 0.029566695913672447, + 0.006274406798183918, + -0.005565896164625883, + 0.014810597524046898, + -0.018026147037744522, + -0.02387135848402977, + -0.012916694395244122, + 0.025533635169267654, + -0.0024661622010171413, + -0.014865098521113396, + -0.0192660391330719, + -0.02844942733645439, + -0.010252966545522213, + 0.003695836989209056, + -0.003951309248805046, + 0.008699693717062473, + -0.01320282369852066, + 0.0199064239859581, + -0.0021766265854239464, + -0.022754091769456863, + -0.0016052194405347109, + -0.025070376694202423, + 0.032673243433237076, + 0.042374387383461, + -0.012208184227347374, + -0.026228519156575203, + 0.008822320029139519, + -0.03430826589465141, + 0.021732201799750328, + 0.01820327341556549, + -0.0019143413519486785, + -0.007166857831180096, + -0.03049320913851261, + 0.013632018119096756, + -0.008372688665986061, + 0.004935730714350939, + 0.04147512465715408, + 0.010934227146208286, + -0.0036277107428759336, + 0.00034935877192765474, + 0.010409656912088394, + 0.015846112743020058, + -0.00416931277140975, + -0.0007327805506065488, + 0.020560434088110924, + -0.014919599518179893, + -0.024034861475229263, + -0.02658277563750744, + -0.018162397667765617, + -0.011595049872994423, + -0.022181833162903786, + 0.011560986749827862, + -0.025315631181001663, + 0.03932234272360802, + -0.004455442074686289, + 0.004360065795481205, + 0.0003274307237006724, + 0.005017481744289398, + -0.03259149193763733, + -0.01342763938009739, + 0.004417972639203072, + 0.020628560334444046, + 0.022754091769456863, + 0.0058997138403356075, + -0.0020761406049132347, + 0.0002505760348867625, + 0.01364564336836338, + 0.009353702887892723, + 0.017126882448792458, + -0.020805688574910164, + -0.018421277403831482, + -0.00975564680993557, + -0.0070306058041751385, + 0.0010542502859607339, + -0.01210599485784769, + 0.01835315115749836, + 0.007902618497610092, + -0.032209984958171844, + -0.010927414521574974, + 0.0018087460193783045, + -0.009796522557735443, + -0.02283584326505661, + -0.02350347861647606, + 0.007534738630056381, + -0.008747382089495659, + -0.018734656274318695, + -0.006151780020445585, + -0.17396661639213562, + 0.010968290269374847, + 0.015028601512312889, + -0.03460802137851715, + 0.014142963103950024, + -0.009067573584616184, + 0.010178028605878353, + 0.016227619722485542, + -0.022781342267990112, + -0.016391120851039886, + 0.0055488646030426025, + 0.01100916601717472, + 0.0014987725298851728, + -0.021241694688796997, + 0.006553723476827145, + 0.000342971965437755, + -0.039349593222141266, + 0.03561628609895706, + 0.020533183589577675, + 0.012228621169924736, + 0.03482602536678314, + -0.018244149163365364, + 0.020287930965423584, + 0.016868004575371742, + -0.0011922054691240191, + 0.01027340441942215, + 0.0009529127855785191, + 0.014538093470036983, + 0.008406751789152622, + -0.026351146399974823, + 0.019892798736691475, + -0.030138954520225525, + 0.009251514449715614, + -0.0030145766213536263, + -0.0019858735613524914, + -0.002852777251973748, + 0.00317126652225852, + 0.0020982816349714994, + 0.016295745968818665, + 0.030356956645846367, + 0.021337071433663368, + 0.01756288856267929, + -0.0005377698107622564, + 0.006468566134572029, + -0.016854379326105118, + 0.037823569029569626, + 0.023953109979629517, + -0.028803683817386627, + 0.007507488131523132, + -0.012385311536490917, + 0.011015978641808033, + -0.024498118087649345, + 0.019075287505984306, + 0.01625487022101879, + 0.011077291332185268, + 0.03406301140785217, + -0.002036968246102333, + 0.01365926768630743, + 0.006948854774236679, + -0.015614485368132591, + 0.007405298762023449, + -0.007684615906327963, + 0.010280217044055462, + -0.005681710317730904, + -0.01378189492970705, + -0.01945679262280464, + 0.012569251470267773, + 0.01670450158417225, + -0.023312725126743317, + 0.00550458300858736, + -0.027155034244060516, + -0.024130238220095634, + -0.01813514716923237, + -0.010757099837064743, + 0.002326503861695528, + 0.024920500814914703, + -0.027127783745527267, + 0.007861743681132793, + 0.03804157301783562, + -0.00981696043163538, + -0.01838040165603161, + 0.045290183275938034, + 0.000923959247302264, + -0.015546359121799469, + -0.010709411464631557, + -0.021541450172662735, + -0.005933776963502169, + 0.023980360478162766, + -0.010988728143274784, + 0.00033892696956172585, + 0.00891769677400589, + -0.028122423216700554, + -0.0038968087173998356, + 0.015110352076590061, + 0.012432999908924103, + 0.02926694042980671, + -0.01768551580607891, + -0.0096193952485919, + -0.005991683807224035, + -0.024075737223029137, + 0.015859737992286682, + -0.007057856302708387, + 0.0018922003218904138, + 0.02244071289896965, + 0.01877553202211857, + 0.006206281017512083, + 0.014647095464169979, + 0.010205278173089027, + 0.023639731109142303, + -0.007670990657061338, + -0.02073756232857704, + -0.01951129361987114, + 0.006185843143612146, + 0.0009537643636576831, + -0.01914341375231743, + 0.023980360478162766, + 0.0032308767549693584, + -0.0147697227075696, + -0.0001454064913559705, + -0.01043009478598833, + 0.060441408306360245, + -0.025193003937602043, + -0.03049320913851261, + 0.01741301268339157, + -0.006567348726093769, + -0.014865098521113396, + -0.08071571588516235, + -0.022672342136502266, + 0.007275859359651804, + 0.03133797273039818, + -0.010028150863945484, + 0.0269779060035944, + -0.00788218155503273, + 0.005920151714235544, + -0.016595499590039253, + 0.04591694101691246, + -0.006175624206662178, + -0.03278224170207977, + -0.01059359684586525, + 0.022181833162903786, + 0.006471972446888685, + -0.008331812918186188, + -0.027754543349146843, + -0.025588134303689003, + -0.004768821876496077, + 0.027304910123348236, + 0.0003057155408896506, + -0.00017797923646867275, + 0.0031576412729918957, + -0.014647095464169979, + -0.02073756232857704, + -0.011642737314105034, + -0.028285926207900047, + 0.007636927533894777, + 0.0053172362968325615, + 0.010000900365412235, + 0.03686980530619621, + -0.010525470599532127, + 0.033245500177145004, + -0.028285926207900047, + -0.0204923078417778, + -0.0031491254922002554, + -0.015505483373999596, + -0.020192554220557213, + 0.009156137704849243, + -0.010539095848798752, + 0.007963932119309902, + 0.01068897359073162, + -0.006788758561015129, + 0.008617942221462727, + 0.006206281017512083, + 0.0034914587158709764, + -0.023639731109142303, + 0.016023240983486176, + -0.003712868317961693, + -0.006560536101460457, + -0.02039693295955658, + -0.02298572100698948, + -0.006073435302823782, + -0.0001272040681215003, + 0.00500726280733943, + -0.0009742021793499589, + 0.007623302284628153, + -0.024198364466428757, + -0.011520111002027988, + -0.017304010689258575, + 0.003377347718924284, + 0.0025291787460446358, + -0.017263134941458702, + 0.030711213126778603, + 0.0038559329695999622, + 0.012031055986881256, + -0.01461984496563673, + -0.00846125278621912, + 0.0008677552687004209, + 0.01436096616089344, + -0.029839199036359787, + 0.021514199674129486, + 0.003172969678416848, + 0.010811599902808666, + -0.012916694395244122, + 0.006519660819321871, + -0.0282586757093668, + -0.021296195685863495, + 0.01768551580607891, + -0.0282586757093668, + -0.014660720713436604, + -0.018584780395030975, + 0.010927414521574974, + -0.01448359340429306, + 0.016077741980552673, + 0.03106546774506569, + 0.0003659644862636924, + -0.02877643331885338, + -0.0023145817685872316, + -0.02295847050845623, + -0.0064208777621388435, + 0.003460802137851715, + 0.008379501290619373, + -0.022181833162903786, + -0.016731752082705498, + 0.0012220105854794383, + -0.0016673845238983631, + -0.016350246965885162, + -0.008556628599762917, + 0.008331812918186188, + -0.028040671721100807, + -0.004952762275934219, + -0.06338445097208023, + 0.031392473727464676, + 0.01219455897808075, + -0.00724179670214653, + -0.007732303813099861, + -0.008679255843162537, + 0.017263134941458702, + 0.020805688574910164, + 0.005044732242822647, + -0.023735107854008675, + -0.020574059337377548, + -0.007057856302708387, + -0.007602864410728216, + -0.012657815590500832, + -0.02231808565557003, + -0.006063216365873814, + 0.017208633944392204, + 0.01175173930823803, + 0.013965834863483906, + 0.003828682703897357, + 0.019075287505984306, + 0.00500726280733943, + -0.0006804086733609438, + 0.019770173355937004, + -0.03256424143910408, + -0.014565343968570232, + -0.019048037007451057, + 0.009231076575815678, + 0.0004172719200141728, + 0.0030486397445201874, + -0.005552270915359259, + 0.008290937170386314, + 0.006141561083495617, + 0.01813514716923237, + -0.013223261572420597, + -0.012991633266210556, + 0.00510604539886117, + 0.023680606856942177, + 0.008406751789152622, + 0.03746931254863739, + -0.03648829832673073, + -0.046025943011045456, + 0.01320282369852066, + -0.001160697196610272, + -0.003426739014685154, + -0.003968340810388327, + 0.02844942733645439, + -0.021541450172662735, + 0.01149286050349474, + 0.008311375044286251, + 0.03624304383993149, + -0.00015605117368977517, + -0.01761738955974579, + -0.03845033049583435, + 0.01282131765037775, + -0.008829132653772831, + -0.0062437504529953, + 0.0011700644390657544, + 0.014933224767446518, + -0.03365425765514374, + 0.061204422265291214, + 0.006052997428923845, + 0.011962929740548134, + -0.0019620296079665422, + 0.011758551932871342, + -0.013448077253997326, + -0.02801342122256756, + 0.010552721098065376, + 0.014933224767446518, + -0.0108865387737751, + -0.027645541355013847, + -0.017603764310479164, + 0.02256334014236927, + 0.029920950531959534, + 0.020628560334444046, + -0.012814505025744438, + 0.0036004604771733284, + 0.0121673084795475, + 0.009735208936035633, + 0.020478682592511177, + 0.021595949307084084, + 0.0371968112885952, + -0.008209185674786568, + 0.009537643752992153, + 0.024102987721562386, + 0.010103089734911919, + -0.0014706705696880817, + 0.01963392086327076, + -0.012214995920658112, + 0.02204558253288269, + 0.0010355155682191253, + 0.02207283303141594, + 0.005453488323837519, + 0.007596051786094904, + -0.002747182035818696, + 0.01933416537940502, + 0.015096726827323437, + 0.009905524551868439, + 0.028858184814453125, + 0.012467063032090664, + 0.01245343778282404, + 0.009333265945315361, + -0.002426989609375596, + -0.01474247220903635, + -0.01838040165603161, + 0.022031957283616066, + -0.02335360087454319, + -0.018434902653098106, + 0.0005914190551266074, + 0.03289124369621277, + 0.005654460284858942, + -0.007575613912194967, + -0.022181833162903786, + 0.00638681510463357, + -0.02581976354122162, + 0.0282586757093668, + -0.010675348341464996, + -0.014142963103950024, + -0.0204923078417778, + 0.03744206205010414, + 0.016145868226885796, + 0.0002580273139756173, + 0.01207193173468113, + 0.007521113380789757, + 0.029839199036359787, + 0.01094785239547491, + 0.004990231245756149, + -0.040630362927913666, + 0.011887991800904274, + -0.010470970533788204, + 0.007745929062366486, + -0.011853928677737713, + -0.0018138553714379668, + 0.001085758558474481, + -0.020955566316843033, + -0.02466162107884884, + 0.01774001680314541, + 0.019170664250850677, + -0.0016741970321163535, + 0.13439902663230896, + 0.007194108329713345, + -0.006863696966320276, + -0.017358511686325073, + -0.005252516362816095, + 0.002028452465310693, + 0.009823773056268692, + -0.0022771123331040144, + -0.03155597671866417, + -0.0372513122856617, + 0.02130982093513012, + -0.009415016509592533, + -0.008747382089495659, + -0.007963932119309902, + 0.007371236104518175, + -0.008229623548686504, + -0.017549263313412666, + 0.024811498820781708, + -0.012412562035024166, + 0.014960475265979767, + 0.03894083574414253, + -0.031964730471372604, + 0.0037775880191475153, + 0.04507217928767204, + -0.010225716046988964, + 0.004990231245756149, + 0.007098732050508261, + 0.015859737992286682, + 0.008679255843162537, + -0.01278725452721119, + 0.020042676478624344, + 0.0138091454282403, + -0.07619214802980423, + -0.029648445546627045, + 0.00711916945874691, + -0.014865098521113396, + 0.005695335566997528, + -0.010702598839998245, + 0.003559584729373455, + 0.013305013068020344, + 0.0005633170949295163, + 0.03351800516247749, + -0.008842757903039455, + -0.01224224641919136, + 0.01768551580607891, + -0.030629461631178856, + 0.0012169011170044541, + -0.021350696682929993, + -0.0070646689273417 + ], + "metadata": { + "source": "INSPIRER_Schlussbericht.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 5, + "has_images": true, + "image_count": 29, + "detection_class_prob": 0.6591171622276306, + "coordinates": "CoordinatesMetadata(points=((1122.828857421875, 155.53517150878906), (1122.828857421875, 361.06524658203125), (1358.3359375, 361.06524658203125), (1358.3359375, 155.53517150878906)), system=)", + "links": [], + "last_modified": "2025-05-05T22:58:03", + "_known_field_names": "frozenset({'page_number', 'text_as_html', 'emphasized_text_contents', 'subject', 'data_source', 'links', 'coordinates', 'image_path', 'is_continuation', 'header_footer_type', 'sent_from', 'url', 'parent_id', 'detection_class_prob', 'emphasized_text_tags', 'last_modified', 'category_depth', 'page_name', 'attached_to_filename', 'bcc_recipient', 'orig_elements', 'languages', 'filetype', 'link_texts', 'file_directory', 'sent_to', 'key_value_pairs', 'image_base64', 'cc_recipient', 'link_urls', 'signature', 'image_mime_type', 'filename', 'detection_origin', 'table_as_cells', 'email_message_id', 'link_start_indexes'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "INSPIRER_Schlussbericht.pdf", + "parent_id": "1c51aaba3295e535d31a83c2392f0391", + "text_as_html": "
Projektlaufzeit01.08.2021 - 31.07.2024 (verl\u00e4ngert bis 31.10.2024)
F\u00f6rderkennzeichen165V8744
StichworteStadtentwicklung, Digitale B\u00fcrgerbeteiligung, Partizipation
und Akzeptanz, Augmented Reality, Extended Reality (XR),
AR-Tracking, Point Cloud Matching
ProjektleitungProf. Dr.-Ing. Volker Coors
Beteiligte ProfessorenProf. Dr.-Ing. Volker Coors
Gef\u00f6rderte Ma\u00dfnahmeForschungsprogramm zur Mensch-Technik-nteraktion
F\u00f6rderbereichTechnik zum Mensch bringen
FachhochschuleHochschule f\u00fcr Technik Stuttgart (HFT Stuttgart),
", + "id": "351a57f5-fe09-4ea6-8750-b2c5267a9700", + "processing_timestamp": "2025-05-05T23:07:23.860264", + "chunk_number": 5, + "total_chunks": 19, + "chunking_strategy": "hybrid", + "word_count": 419 + } +} \ No newline at end of file diff --git a/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000006.json b/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000006.json new file mode 100644 index 0000000000000000000000000000000000000000..46a994bb4af22cb91bef84a3a3b8aaa1b81f1392 --- /dev/null +++ b/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000006.json @@ -0,0 +1,1570 @@ +{ + "id": "2b86db2d-408b-1992-e1b5-8a9f00000006", + "content": "Yes No Scale? n.n No]\n\n\n| Phase Seti-Time(s) _|set2-Time (S) Library initialization 0.5927] 0.5538] Load Point Clouds 0.0616] 0.2982 Downsampling 0.0056) 0.0133) Estimate Normals .0.0003| 0.0373) |Compute FPFH 0.0015) 0.4047] FGR 0.5756] 0.7115) Total 1.2325] 2.3221 |\n\n\n| Date | set2 | 1004N | part_density_ | reduced | Format | PCD | XYZ | No. | Point | 269856 | 494748 | Normals? | Yes | No | Float? | Yes | No | Scale? | n.n | No |\n|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|\n\nAbbildung 5: Matching Algorithmic Speed Test \u2013 Vergleich der Verarbeitungszeiten verschiedener Matching-Schritte f\u00fcr zwei Datens\u00e4tze..\nZudem wurde festgestellt, dass das Laden der Punktwolken je nach Datensatzformat unterschiedlich lange dauert. W\u00e4hrend einige Formate schnell verarbeitet werden konnten, war die Ladezeit f\u00fcr andere Formate erheblich h\u00f6her. Eine m\u00f6gliche Optimierung w\u00e4re die Konvertierung der Punktwolken in ein einheitliches, performantes Format w\u00e4hrend der Vorverarbeitung. Ein weiteres interessantes Ergebnis war, dass das Berechnen von Feature-Deskriptoren (FPFH) in einigen F\u00e4llen signifikant mehr Rechenzeit ben\u00f6tigte. Dies deutet darauf hin, dass die Auswahl von Feature-Extraktionsmethoden je nach Anwendungsszenario angepasst werden sollte. [IMAGE: A]\n\nAbbildung 6: Match-Point-Wolken\nDie erste Evaluierung des Tracking-Systems erfolgte mit dem Demonstrator 1 (D6.2), bei dem die grundlegende Funktionen getestet und iterativ verbessert wurden. In dieser Phase wurde deutlich, dass die Kombination aus Punktwolkenregistrierung und AR-Technologien signifikante Vorteile gegen\u00fcber traditionellen Tracking-Methoden bot, insbesondere in komplexen Umgebungen mit variablen Lichtverh\u00e4ltnissen und unstrukturierten Oberfl\u00e4chen. Im weiteren Verlauf wurde der weiterentwickelte Demonstrator in wissenschaftlichen Ver\u00f6ffentlichungen vorgestellt (D6.3, M24), um die erzielten Fortschritte und die Praxistauglichkeit der entwickelten Methoden zu dokumentieren. Diese Publikationen trugen\ndazu bei, das Thema Point Cloud Matching f\u00fcr AR-Tracking einem breiteren Fachpublikum zug\u00e4nglich zu machen und potenzielle Anwendungsf\u00e4lle \u00fcber die Stadtplanung hinaus zu identifizieren. Der abschlie\u00dfende Demonstrator (D6.5) umfasste eine vollst\u00e4ndig integrierte L\u00f6sung, die eine pr\u00e4zise Echtzeitverfolgung in urbanen Szenarien erm\u00f6glichte. Dabei wurde sichergestellt, dass die entwickelte Architektur flexibel genug war, um in zuk\u00fcnftigen AR-Anwendungen weiterverwendet zu werden. Die durchgef\u00fchrten Tests best\u00e4tigten, dass die Kombination aus Punktwolken-basiertem Tracking und AR-Technologien eine signifikante Verbesserung der r\u00e4umlichen Verankerung virtueller Inhalte darstellt. [IMAGE: ]\n\nAbbildung 7: Finaler Demonstrator mit vollst\u00e4ndiger AR-Integration und Echtzeit-Tracking. Die Abbildung zeigt den finalen Demonstrator in Aktion. Zu sehen ist das reale Untersuchungsgebiet, \u00fcberlagert mit dem entworfenen 3D-Stadtmodell in einer Augmented Reality-Umgebung. Diese Visualisierung verdeutlicht, wie das entwickelte System das bestehende Stadtbild mit den geplanten Entw\u00fcrfen kombiniert, um eine immersive, interaktive Stadtplanung zu erm\u00f6glichen. Durch die exakte Platzierung der digitalen Inhalte im physischen Raum erhalten Nutzer*innen eine realit\u00e4tsnahe Vorstellung geplanter Ver\u00e4nderungen, was eine effektivere B\u00fcrgerbeteiligung und Entscheidungsfindung unterst\u00fctzt. Zusammenfassend wurden alle gesetzten Ziele erreicht. Die entwickelte Tracking-Architektur bot eine robuste und exakte Positionierung virtueller Inhalte in der realen Umgebung und bildete eine wesentliche Grundlage f\u00fcr die Nutzung von AR in der Stadtplanung. Die Ergebnisse des Arbeitspakets lieferten wertvolle Erkenntnisse zur Nutzung von Punktwolkentechnologien f\u00fcr AR-Tracking und trugen dazu bei, innovative Methoden f\u00fcr die digitale B\u00fcrgerbeteiligung in der Stadtplanung zu entwickeln.", + "embedding": [ + -0.006080316845327616, + 0.009233837015926838, + 0.020734911784529686, + -0.010408678092062473, + -0.007172712590545416, + 0.028718331828713417, + 0.0029302318580448627, + -0.01929212361574173, + -0.020858578383922577, + -0.0555679127573967, + 0.02252121828496456, + 0.017711928114295006, + -0.0014324814546853304, + 0.0063551333732903, + -0.017450852319598198, + -0.00015662398072890937, + 0.02899315021932125, + -0.020831096917390823, + -0.00195978581905365, + 0.0011258891317993402, + -0.011377406306564808, + 0.02778395637869835, + 0.005163116380572319, + -0.009762858971953392, + -0.012620951049029827, + 0.020611243322491646, + 0.031411536037921906, + -0.010738457553088665, + 0.005626869387924671, + -0.006509717553853989, + 0.02278229407966137, + -0.026025129482150078, + 0.002775647444650531, + 0.01365838386118412, + -0.022507477551698685, + -0.009962101466953754, + -0.0031226035207509995, + -0.0077773090451955795, + 0.026670949533581734, + 0.0035382634960114956, + 0.03154894337058067, + -0.0053039598278701305, + -0.0015561488689854741, + -0.01828904263675213, + -0.007385695818811655, + -0.005585647188127041, + 0.009543005377054214, + 0.03589104488492012, + -0.0004543061659205705, + 0.011775890365242958, + 0.001063196687027812, + 0.01953945867717266, + -0.002918208483606577, + -0.008993372321128845, + -0.011466722004115582, + -0.010491123422980309, + 0.0018447062466293573, + 0.0043627130798995495, + -0.008100219070911407, + -0.01823407970368862, + -0.014317943714559078, + 0.0009867632761597633, + -0.019072270020842552, + 0.011054497212171555, + -0.019031047821044922, + -0.02774273417890072, + -0.03542385622859001, + 0.0113224433735013, + -0.0009317999938502908, + -0.004452028777450323, + 0.012133152224123478, + 0.013534716330468655, + -0.012572858482599258, + -0.02013031393289566, + 0.049412019550800323, + -0.009391856379806995, + 0.022548699751496315, + -9.742032852955163e-05, + -0.010944570414721966, + 0.0022466254886239767, + 0.020954763516783714, + -0.017217257991433144, + -0.008945279754698277, + 0.02421134151518345, + 0.014716427773237228, + 0.021628065034747124, + -0.008388776332139969, + 0.025626646354794502, + -0.020528798922896385, + 0.008979631587862968, + 0.010271269828081131, + 0.030147379264235497, + -0.015692027285695076, + -0.009055206552147865, + -0.00901398342102766, + 0.0026382391806691885, + 0.006334522273391485, + 0.015980584546923637, + -0.017711928114295006, + -0.021834177896380424, + -0.024156376719474792, + -0.0047611971385777, + -0.027935106307268143, + -0.012366746552288532, + -0.02555794268846512, + -0.017492074519395828, + -0.0013654949143528938, + 0.011047626845538616, + -0.0010881018824875355, + -0.003048746380954981, + -0.010518604889512062, + 0.0013474600855261087, + -0.019731830805540085, + -0.004520732909440994, + 0.00259529915638268, + -0.016585180535912514, + 0.02055628038942814, + -0.01445535197854042, + -0.0212570633739233, + -0.004671881906688213, + 0.04644400253891945, + 0.0184539332985878, + 0.011418628506362438, + -0.021202098578214645, + 0.03501163423061371, + 0.005654351320117712, + 0.0049192169681191444, + -0.014441611245274544, + -0.010759069584310055, + -0.0044657695107162, + 0.00035940855741500854, + 0.0036069676280021667, + 0.02274107187986374, + 0.00490547576919198, + -0.016365326941013336, + 0.011294961906969547, + -0.002811717102304101, + -0.013397308066487312, + -0.038941510021686554, + -0.047763120383024216, + 0.012050706893205643, + 0.02913055755198002, + -0.024609824642539024, + -0.03113671950995922, + -0.008196404203772545, + 0.035616230219602585, + 0.015252320095896721, + 0.015018725767731667, + 0.011844594962894917, + -0.031411536037921906, + -0.005324571393430233, + -0.01802796684205532, + 0.006324216723442078, + 0.003675671759992838, + -0.011679704301059246, + -0.015142393298447132, + -0.0017828725976869464, + 0.026822097599506378, + -5.4185027693165466e-05, + -0.028223663568496704, + -0.017162295058369637, + 0.01246293168514967, + -0.006214289925992489, + -0.005273043178021908, + 0.0380895771086216, + 0.008849093690514565, + 0.0055306837894022465, + -0.01596684381365776, + -0.010951440781354904, + -0.009316282346844673, + 0.0035554394125938416, + 0.02231510728597641, + -0.03547881916165352, + 0.03248332068324089, + 0.012916379608213902, + -0.022054031491279602, + 0.0196631271392107, + 1.2640489330806304e-05, + -0.004589437041431665, + -0.022507477551698685, + -0.010264399461448193, + 0.01849515549838543, + 0.0164752546697855, + 0.0030367232393473387, + -0.022809775546193123, + -0.008855964057147503, + 0.008993372321128845, + 0.01062853168696165, + 0.009543005377054214, + 0.0028254580684006214, + 0.011281220242381096, + 0.0017468029400333762, + 0.007426918018609285, + -0.013129361905157566, + -0.624383270740509, + -0.0046272240579128265, + 0.026904543861746788, + -0.021463174372911453, + 0.00479211425408721, + 0.03630327060818672, + 0.023249482735991478, + 0.0007514515891671181, + -0.017038628458976746, + 0.050071582198143005, + -0.006863544229418039, + -0.001654052291996777, + -0.000357046868884936, + -0.007832272909581661, + -0.010353715158998966, + -0.018728749826550484, + -0.0032359652686864138, + -0.00044142414117231965, + 0.013149973005056381, + 0.03468185290694237, + -0.04034307599067688, + 0.011233127675950527, + 0.026203760877251625, + 0.00928880088031292, + -0.00983156356960535, + 0.015307283960282803, + 0.01286141574382782, + -0.0049570039846003056, + -0.0036928479094058275, + -0.009220096282660961, + -0.03278561681509018, + 0.018673786893486977, + -0.00653376430273056, + 0.025324348360300064, + 0.05452360957860947, + -0.0186600461602211, + -0.00911703985184431, + 0.020157795399427414, + 0.015788212418556213, + -0.005290219094604254, + -0.010195694863796234, + -0.003926442004740238, + 0.01107510831207037, + 0.0035416986793279648, + -0.003806209657341242, + -0.0047234101220965385, + 0.007997162640094757, + -0.010621661320328712, + -0.005898250732570887, + -0.03501163423061371, + -0.009055206552147865, + 0.004977615550160408, + 0.006478800904005766, + 0.0014049997553229332, + 0.011116330511868, + -0.005297089461237192, + 0.019773053005337715, + -0.005523813422769308, + -0.013307993300259113, + -0.016612662002444267, + -0.012078188359737396, + -0.021298285573720932, + -0.003854302456602454, + -0.03605593368411064, + -0.01580195315182209, + 0.02660224586725235, + -0.006427272688597441, + 0.0022998712956905365, + -0.002033642726019025, + -0.0033424566499888897, + 0.0021178051829338074, + 0.01651647686958313, + -0.012325523421168327, + -0.002574687823653221, + 0.027728993445634842, + 0.02341437339782715, + 0.0408652238547802, + -0.020776133984327316, + 0.0011645352933555841, + 0.01376144029200077, + -0.0011173011735081673, + 0.0015604428481310606, + -0.011755279265344143, + 0.005187163129448891, + 0.002681179204955697, + -0.006485671270638704, + -0.02445867657661438, + 0.002399492310360074, + -7.584293780382723e-05, + 0.014070608653128147, + 0.0037512462586164474, + 0.02513197623193264, + -0.034736815840005875, + -0.03273065388202667, + -0.012497284449636936, + 0.035313930362463, + -0.011233127675950527, + 0.0005131340585649014, + -0.015527136623859406, + -0.05128077417612076, + -0.005753972101956606, + -0.020460095256567, + 0.010930829681456089, + -0.013967553153634071, + 0.015046208165585995, + -0.006825756747275591, + -0.034269627183675766, + 0.009295671246945858, + 0.039738476276397705, + -0.01617295667529106, + -0.023689189925789833, + -0.02370293065905571, + -0.033857401460409164, + -0.028045032173395157, + 0.0014779979828745127, + -0.028058772906661034, + 0.016873737797141075, + -0.016379067674279213, + -0.005568470805883408, + 0.01071784645318985, + 0.0018927991623058915, + -0.016200438141822815, + 0.011507944203913212, + -0.015417209826409817, + 0.0007432929705828428, + 0.021779214963316917, + 0.0015269495779648423, + -0.013898848555982113, + -0.004469204694032669, + -0.007124620024114847, + 0.015348506160080433, + -0.008952150121331215, + 0.04190952703356743, + -0.013747699558734894, + 0.017217257991433144, + 0.0036825421266257763, + 0.016379067674279213, + -2.960182428068947e-05, + -0.01560958195477724, + -0.028965666890144348, + -0.022974666208028793, + 0.011638482101261616, + 0.01445535197854042, + -0.026286205276846886, + -0.005145940463989973, + -0.02037764899432659, + -0.006588727701455355, + 0.021504396572709084, + -0.0025317477993667126, + -0.004228739999234676, + -0.006042529363185167, + -0.03328028693795204, + -0.014977503567934036, + 0.015485914424061775, + -0.009556747041642666, + 0.005870769266039133, + 0.006437578238546848, + -0.03841935843229294, + 0.007633030414581299, + -0.03946366161108017, + -0.002547206124290824, + 0.0035520042292773724, + -0.020405130460858345, + -0.03130161017179489, + 0.015499655157327652, + -0.018082931637763977, + -0.004750891588628292, + 0.02341437339782715, + -0.024637306109070778, + -0.028443515300750732, + 0.0012581446208059788, + -0.014022516086697578, + -0.00998271256685257, + 0.015458432957530022, + -0.019511977210640907, + 0.013905718922615051, + -0.02370293065905571, + -0.02841603383421898, + -0.02096850425004959, + -0.005540989339351654, + 0.01477139163762331, + 0.01277897134423256, + 0.008306331001222134, + -0.007138360757380724, + 0.01056669745594263, + 0.013301122933626175, + 0.0042974441312253475, + -0.010264399461448193, + -0.027921365574002266, + 0.021490655839443207, + 0.014235499314963818, + 0.012882026843726635, + 0.002571252640336752, + 0.022727331146597862, + -0.005358923226594925, + -0.01920967921614647, + -0.01063540205359459, + 0.005293654277920723, + -0.003569180378690362, + 0.02756410278379917, + 0.02252121828496456, + 0.004527603276073933, + 0.011047626845538616, + 0.01890738122165203, + 0.01694244146347046, + -0.055787764489650726, + -0.001585348160006106, + -0.03248332068324089, + 0.016653884202241898, + 0.01401564572006464, + -0.008155182003974915, + -0.004981050733476877, + -0.022136475890874863, + 0.010697235353291035, + 0.021586842834949493, + 0.024321267381310463, + -0.020240241661667824, + 0.008993372321128845, + 0.021737990900874138, + 0.025860240682959557, + 0.002129828557372093, + 0.0002557082334533334, + 0.03234591335058212, + 0.0011507944436743855, + 0.012854545377194881, + -0.022878481075167656, + 0.0196631271392107, + 0.028045032173395157, + 0.012291171588003635, + -0.02160058356821537, + -0.014304202981293201, + -0.00643070787191391, + 0.011583519168198109, + 0.014908799901604652, + 0.008814741857349873, + 0.005606258288025856, + 0.03734757378697395, + 0.00295771355740726, + 0.014524056576192379, + 0.008058995939791203, + 0.007138360757380724, + 0.02976263500750065, + 0.015046208165585995, + -0.008622370660305023, + 0.014008775353431702, + -0.026299946010112762, + 0.026258723810315132, + 0.028855741024017334, + 0.003857737872749567, + 0.003723764792084694, + 0.0034334897063672543, + 0.008512443862855434, + -0.017643224447965622, + 0.01882493495941162, + 0.01912723481655121, + -0.008340682834386826, + 0.009597969241440296, + -0.019182197749614716, + 0.01445535197854042, + 0.043283611536026, + 0.008148311637341976, + 0.019869238138198853, + 0.014757649973034859, + 0.003193025244399905, + -0.008058995939791203, + -0.014331684447824955, + -0.004647835623472929, + -0.03361006826162338, + -0.018165376037359238, + -0.0007484458037652075, + 0.01617295667529106, + -0.00987965613603592, + 0.009055206552147865, + -0.016530217602849007, + 0.02866336889564991, + -0.029680190607905388, + 0.030477158725261688, + 0.00374094070866704, + 0.034819260239601135, + 0.01874249055981636, + -0.012758360244333744, + -0.029158039018511772, + 0.008519314229488373, + 0.03042219579219818, + -0.01532102469354868, + -0.023208260536193848, + -0.025145716965198517, + 0.009591098874807358, + -0.002775647444650531, + -0.02180669642984867, + 0.0013285664608702064, + -0.01206444762647152, + 0.005393275525420904, + -0.020693687722086906, + -0.0025935815647244453, + 0.011487333104014397, + 0.0172722227871418, + -0.003909266088157892, + -0.00867733359336853, + 0.003857737872749567, + -0.030312268063426018, + 0.0044657695107162, + -0.00012871292710769922, + -0.03143901750445366, + 0.013431660830974579, + -0.018852418288588524, + -0.022727331146597862, + -0.03273065388202667, + -0.004321490880101919, + -0.010443029925227165, + 0.014345425181090832, + -0.008203274570405483, + -0.006592162884771824, + 0.03105427324771881, + -0.022095253691077232, + 0.020693687722086906, + 0.0006818886613473296, + 0.006763922981917858, + 0.042211826890707016, + 0.013060658238828182, + -0.008058995939791203, + -0.022837257012724876, + -0.0022998712956905365, + 0.003500476246699691, + 0.0006994940922595561, + 0.03800713270902634, + 0.009446820244193077, + 0.014276721514761448, + -0.03000997006893158, + -0.01853637769818306, + -0.002856374951079488, + -0.03042219579219818, + 0.011343054473400116, + 0.010772810317575932, + -0.02160058356821537, + 0.00254205334931612, + 0.02937789261341095, + -0.004160035867244005, + 0.02096850425004959, + 0.0032205067109316587, + 0.00464440044015646, + -0.005867334082722664, + 0.01067662425339222, + 0.04732341691851616, + -0.025186939164996147, + 0.00573679618537426, + 0.010140731930732727, + 0.036083418875932693, + 0.00020847414270974696, + -0.002444149926304817, + 0.025736572220921516, + 0.019690608605742455, + 0.003933312371373177, + -0.021408211439847946, + -0.008196404203772545, + 0.02744043618440628, + 0.02756410278379917, + 0.0252144206315279, + 0.02374415285885334, + 0.018440192565321922, + -0.0047577619552612305, + -0.0092269666492939, + 0.008897187188267708, + -0.008292590267956257, + 0.0009395292145200074, + 0.007502492517232895, + -0.005623434204608202, + -0.0037787279579788446, + 0.011995743960142136, + -0.010285010561347008, + 0.006873849779367447, + 0.022205179557204247, + -0.005805500317364931, + -0.010642272420227528, + -0.004816160537302494, + -0.021971585229039192, + -0.017340926453471184, + -0.007420047651976347, + -0.009295671246945858, + -0.0037100238259881735, + -0.011940780095756054, + -0.030916865915060043, + -0.012985083274543285, + -0.004812725353986025, + -0.03064204938709736, + -0.023634225130081177, + 0.0028735508676618338, + -0.022383810952305794, + -0.02849848009645939, + -0.0176569651812315, + -0.023922784253954887, + -0.01857760176062584, + -0.021641805768013, + 0.012284301221370697, + -0.002937102224677801, + 0.009707896038889885, + -0.02327696420252323, + -0.0032737525179982185, + 0.007969681173563004, + 0.017849337309598923, + 0.023936524987220764, + -0.007997162640094757, + -0.021834177896380424, + 0.009817821905016899, + -0.014936281368136406, + -0.005750536918640137, + 0.008498703129589558, + -0.006571551319211721, + -0.030119897797703743, + 0.0010485970415174961, + -0.0094330795109272, + -0.01576073095202446, + -0.0017322032945230603, + 0.024609824642539024, + -0.017464593052864075, + 0.018563859164714813, + -0.010408678092062473, + 0.024115154519677162, + 0.020899800583720207, + -0.0004042809596285224, + -0.001401564572006464, + 0.028773296624422073, + 0.0051047177985310555, + -0.0026674384716898203, + 0.020240241661667824, + -0.01437290757894516, + 0.0013345780316740274, + 0.009000242687761784, + -0.0025042661000043154, + 0.0036207083612680435, + 0.003764987224712968, + -0.0156782865524292, + 0.0011276068398728967, + -0.005674962420016527, + -0.004400500562041998, + -0.016076769679784775, + -0.00014009204460307956, + -0.004091331735253334, + 0.020308945327997208, + 0.020776133984327316, + -0.010175083763897419, + 0.005881074815988541, + 0.03635823354125023, + 0.008464350365102291, + -0.016365326941013336, + -0.03476429730653763, + 0.026299946010112762, + -0.0069013312458992004, + -0.0033802438993006945, + 0.015746990218758583, + -0.00017895283235702664, + 0.0018309655133634806, + -0.01580195315182209, + 0.020487576723098755, + -0.021119654178619385, + -0.00435927789658308, + 0.007729216478765011, + 0.0007269757334142923, + -0.01710733212530613, + -0.004156600683927536, + 0.006970035377889872, + 0.017011146992444992, + -0.002086888300254941, + 0.008567406795918941, + -0.0026193454395979643, + 0.009941489435732365, + 0.016447773203253746, + -0.005784889217466116, + -0.0006157609168440104, + -0.015733249485492706, + -0.035286448895931244, + 0.0047405860386788845, + -0.016337845474481583, + 0.03448948264122009, + 0.005908556282520294, + -0.016282882541418076, + -0.024280045181512833, + -0.01782185584306717, + -0.0212295800447464, + -0.03369251266121864, + -0.003117450512945652, + -0.01132931374013424, + 0.0508410669863224, + 0.0037478110752999783, + 0.03644067794084549, + 0.009824693202972412, + 0.007997162640094757, + -0.02689080312848091, + -0.017808115109801292, + -0.010800291784107685, + -0.0007012116839177907, + -0.0018876463873311877, + -0.017203517258167267, + 0.01988297887146473, + 0.01121938694268465, + 0.0072620282880961895, + 0.004750891588628292, + 0.01639280840754509, + 0.021105913445353508, + 0.034819260239601135, + -0.029487818479537964, + -0.010738457553088665, + -0.007997162640094757, + -0.03459940850734711, + -0.0029113381169736385, + -0.01311562117189169, + 0.005887945182621479, + 0.00832007173448801, + -0.03097182884812355, + 0.005029143299907446, + 0.01651647686958313, + 0.00740630691871047, + 0.0022071206476539373, + -0.0038439969066530466, + 0.025983907282352448, + -0.007090267725288868, + 0.0025678174570202827, + 0.0011971697676926851, + 0.0007849448593333364, + -0.029405374079942703, + 0.0004792114195879549, + -0.016695106402039528, + 0.004867688752710819, + 0.01325989980250597, + -0.002045665867626667, + 0.01592562161386013, + 0.020363908261060715, + 0.0047405860386788845, + -0.007179582957178354, + 0.003091686638072133, + -0.004469204694032669, + -0.015623322688043118, + -0.020542539656162262, + -0.017918040975928307, + -0.0068498034961521626, + -0.04707607999444008, + -0.01941579207777977, + -0.003596662078052759, + -0.007536844816058874, + 0.002518006833270192, + -0.007502492517232895, + 0.015856916084885597, + -0.004397065378725529, + -0.032373394817113876, + 0.030532121658325195, + -0.00653376430273056, + 0.04388820752501488, + 0.010710976086556911, + 0.029872562736272812, + 0.017093591392040253, + -0.005640610121190548, + -0.021710509434342384, + -0.059910014271736145, + -0.00490547576919198, + 0.0010348561918362975, + 0.022040290758013725, + 0.026877062395215034, + -0.02694576606154442, + 0.004163471050560474, + 0.005128764547407627, + -0.013672124594449997, + -0.03380243852734566, + -0.04408058151602745, + 0.014331684447824955, + 0.00802464410662651, + 0.025777794420719147, + -0.00603222381323576, + -0.001763978973031044, + -0.04342101886868477, + -0.004125684034079313, + -0.011817112565040588, + 0.002045665867626667, + -0.015430951490998268, + -0.001069208257831633, + -0.006018483079969883, + 0.021105913445353508, + -0.018467674031853676, + 0.02021276019513607, + 0.004829901270568371, + -0.022232661023736, + 0.01835774816572666, + -0.011095719411969185, + -0.009543005377054214, + 0.014235499314963818, + -0.002105782041326165, + 0.040782779455184937, + -0.018385229632258415, + -0.029515299946069717, + 0.010848384350538254, + 0.0026193454395979643, + -0.014084349386394024, + -0.001784590189345181, + -0.011851465329527855, + 0.03341769799590111, + -0.026107575744390488, + 0.010298751294612885, + 0.00941246747970581, + -0.004452028777450323, + 0.02341437339782715, + 0.012978212907910347, + -0.008553666062653065, + -0.009659802541136742, + -0.004173776600509882, + 0.014043127186596394, + 0.026973247528076172, + -0.007152101490646601, + -0.004053544718772173, + -0.02160058356821537, + -0.0037375055253505707, + -0.0014007057761773467, + -0.003206765977665782, + 0.0009489760268479586, + 0.02433500811457634, + -0.06815451383590698, + -0.020363908261060715, + 0.01900356635451317, + -0.009845304302871227, + 0.01536224689334631, + 0.00317756668664515, + -0.002090323716402054, + -0.003323563141748309, + 0.020405130460858345, + -0.04666385427117348, + 0.01166596356779337, + 0.03380243852734566, + 0.001540690427646041, + -0.03852928429841995, + -0.002105782041326165, + -0.007124620024114847, + -0.009859045036137104, + 0.03248332068324089, + -0.02118835784494877, + -0.04015070199966431, + 0.007605548948049545, + 0.002928514266386628, + 0.004005451686680317, + -0.0015509960940107703, + -0.023222001269459724, + 0.014675205573439598, + 0.02849848009645939, + 0.001246980275027454, + -0.003850867273285985, + 0.003971099387854338, + 0.0004369154339656234, + 0.0015398316318169236, + 0.008120830170810223, + 0.020350167527794838, + -0.01878371275961399, + 0.028099995106458664, + 0.019951684400439262, + -0.005001661833375692, + 0.00508410669863224, + -0.03231842815876007, + -0.022768553346395493, + 0.0050050970166921616, + 0.024073932319879532, + -0.020460095256567, + 0.013816403225064278, + -0.007000952493399382, + -0.03303295373916626, + -0.01540346909314394, + 0.02008909173309803, + 0.0025867109652608633, + -0.004355842713266611, + 0.03677045926451683, + 0.012085058726370335, + -0.025063272565603256, + 0.0036481900606304407, + -0.013307993300259113, + -0.030834419652819633, + 0.010058286599814892, + -0.007557455915957689, + -0.022713590413331985, + 0.008512443862855434, + 0.0186600461602211, + 0.03611090034246445, + 0.04548214375972748, + -0.048230309039354324, + -0.025777794420719147, + 0.011590389534831047, + -0.003170696320012212, + -0.03737505525350571, + -0.015953103080391884, + 0.0051047177985310555, + -0.006217725109308958, + -0.010855254717171192, + -0.0042974441312253475, + 0.044575247913599014, + 0.0056337397545576096, + 0.0208448376506567, + -0.02151813916862011, + -0.009192614816129208, + -0.017918040975928307, + -0.02386781945824623, + 0.04064537212252617, + 0.0010881018824875355, + -0.047048598527908325, + 0.021119654178619385, + 0.0009317999938502908, + 0.012339264154434204, + 0.01610425114631653, + 0.001992420293390751, + -0.004623788874596357, + -0.0036069676280021667, + -0.0002464761200826615, + 0.017409630119800568, + 0.009137650951743126, + 0.009529264643788338, + 0.010243788361549377, + -0.033472660928964615, + 0.010807162150740623, + 0.009446820244193077, + 0.010525475256145, + -0.020405130460858345, + -0.016324104741215706, + 0.02390904165804386, + -0.026918284595012665, + -0.01672258973121643, + 0.010559827089309692, + -0.008945279754698277, + 0.002734425012022257, + -0.00941246747970581, + 0.022796034812927246, + 0.02105095051229, + -0.007028433959931135, + 0.018838677555322647, + 0.015664545819163322, + 0.005936038214713335, + -0.012572858482599258, + 0.004987921100109816, + -0.027014469727873802, + -0.0018859287956729531, + 0.011782760731875896, + -0.008505573496222496, + 0.01340417843312025, + -0.002265519229695201, + 0.0015664545353502035, + 0.001407576142810285, + -0.003847432089969516, + -0.010642272420227528, + -0.009597969241440296, + -0.02127080410718918, + 0.022727331146597862, + 0.008759778924286366, + -0.021023469045758247, + 0.015417209826409817, + -0.011226257309317589, + 0.0027309898287057877, + 0.0012280866503715515, + -0.0037752927746623755, + 0.005001661833375692, + -0.008807871490716934, + -0.011377406306564808, + -0.0050531900487840176, + -0.021023469045758247, + -0.006781099364161491, + 0.023606743663549423, + -0.017121072858572006, + 0.012648433446884155, + 0.0011602411977946758, + 0.20435361564159393, + 0.005953214131295681, + -0.02694576606154442, + 0.02619002014398575, + 0.004922652151435614, + -0.007742957212030888, + 0.03270317241549492, + 0.009213225916028023, + 0.008368165232241154, + 0.016653884202241898, + 0.014194276183843613, + 0.018082931637763977, + 0.015114911831915379, + -0.0002346675901208073, + 0.02480219677090645, + -0.011480462737381458, + -0.004623788874596357, + -0.020941022783517838, + -0.0008811306906864047, + 0.01266904454678297, + 0.030614567920565605, + -0.021586842834949493, + -0.009323152713477612, + -0.02811373583972454, + 0.020034128800034523, + -0.021751731634140015, + -0.013493494130671024, + -0.019031047821044922, + 0.008045255206525326, + -0.0009060359443537891, + -0.015156134031713009, + -8.432360482402146e-05, + 0.017533298581838608, + -0.009405597113072872, + -0.013486623764038086, + -0.007152101490646601, + -0.006475365720689297, + 0.009151392616331577, + 0.03594600781798363, + 0.010443029925227165, + -0.001428187475539744, + -0.0361383818089962, + -0.012201855890452862, + -0.01485383603721857, + -0.006678042933344841, + 0.014221757650375366, + 0.013053787872195244, + 0.013843885622918606, + -0.0032222243025898933, + -0.013184325769543648, + -0.021779214963316917, + -0.01302630640566349, + 0.002983477432280779, + 0.013610291294753551, + -0.027852660045027733, + -0.009591098874807358, + 0.0032376828603446484, + -0.005863898899406195, + -0.02500830963253975, + 0.025324348360300064, + -0.022960925474762917, + 0.007069656625390053, + 0.014070608653128147, + 0.003943617921322584, + -0.031329091638326645, + 0.002672591246664524, + -0.02711065486073494, + -0.011150682345032692, + -0.003507346613332629, + -0.007055915892124176, + 0.007426918018609285, + -0.011267479509115219, + -0.015101171098649502, + 0.006362003739923239, + -0.016708848997950554, + -0.03622082620859146, + 0.01680503413081169, + 0.016750071197748184, + 0.0086361113935709, + 0.03844683989882469, + 0.006351698189973831, + -0.0194570142775774, + 0.01617295667529106, + -0.04336605593562126, + -0.01592562161386013, + -0.010669753886759281, + 0.04432791471481323, + -0.0020628420170396566, + -0.007653641980141401, + -0.019305864349007607, + -0.024472417309880257, + -0.009281929582357407, + -0.01837148889899254, + -0.007248287554830313, + 0.0244174525141716, + -0.025393052026629448, + 0.011494203470647335, + 0.012724007479846478, + -0.015939362347126007, + -0.015252320095896721, + -0.020913541316986084, + 0.04111256077885628, + 0.03520400449633598, + -0.0009601404308341444, + -0.013527845963835716, + 0.0100239347666502, + -0.00853305496275425, + 0.014386648312211037, + 0.023002147674560547, + -0.012243079021573067, + -0.00686010904610157, + -0.03866669163107872, + 0.003299516625702381, + -0.014276721514761448, + 0.006870414596050978, + 0.030037451535463333, + 0.005565035622566938, + 0.013988164253532887, + 0.0017364972736686468, + 0.00040793087100610137, + 0.013610291294753551, + 0.0014487986918538809, + -0.010484252125024796, + 0.017340926453471184, + 0.0004448593535926193, + -0.027344249188899994, + -0.017368407920002937, + -0.02147691510617733, + -0.010978922247886658, + -0.030614567920565605, + 0.03130161017179489, + -0.026657208800315857, + 0.044740140438079834, + 0.011844594962894917, + 0.007351343519985676, + 0.00031625377596355975, + 0.00588450999930501, + -0.00657842168584466, + -0.016626402735710144, + 0.006568116135895252, + 0.02778395637869835, + 0.012978212907910347, + -0.00187047035433352, + 0.009817821905016899, + -0.0037546814419329166, + 0.00428713858127594, + 0.005918862298130989, + 0.002260366454720497, + -0.032126057893037796, + -0.013493494130671024, + -0.007791050244122744, + -0.022232661023736, + 0.008979631587862968, + -0.0037581168580800295, + 0.020913541316986084, + 0.009529264643788338, + -0.012586599215865135, + -0.019264642149209976, + 0.009110169485211372, + -0.020858578383922577, + -0.035918526351451874, + -0.02756410278379917, + 0.009604839608073235, + 0.0009524112101644278, + -0.0014908799203112721, + 0.0042149992659688, + -0.1762123852968216, + 0.008244497701525688, + 0.0009876220719888806, + -0.016282882541418076, + 0.010188824497163296, + -0.001095831161364913, + 0.00748188141733408, + 0.011562908068299294, + -0.011253738775849342, + -0.007928458042442799, + 0.003596662078052759, + -0.008244497701525688, + 4.149086453253403e-05, + -0.013033176772296429, + -0.00490547576919198, + 0.003637884510681033, + -0.02907559461891651, + 0.025667868554592133, + 0.03333524987101555, + 0.0224387738853693, + 0.014730168506503105, + -0.015458432957530022, + 0.010374326258897781, + 0.005293654277920723, + 0.010649142786860466, + 0.0012332394253462553, + -0.010532345622777939, + 0.017918040975928307, + 0.010257529094815254, + -0.007742957212030888, + 0.003455818397924304, + -0.01761574298143387, + 0.031631387770175934, + 0.005623434204608202, + -0.029103076085448265, + 0.0020645596086978912, + 0.0016549110878258944, + 0.014427870512008667, + 0.006179938092827797, + 0.044465322047472, + 0.007763568311929703, + 0.014125572517514229, + 0.0031432146206498146, + 0.0020405130926519632, + -0.003909266088157892, + 0.030449677258729935, + 0.021655546501278877, + -0.028718331828713417, + 0.0017322032945230603, + -0.02643735520541668, + 0.009604839608073235, + -0.027893882244825363, + 0.020982246845960617, + 0.02239755168557167, + -0.0033630679827183485, + 0.014304202981293201, + -0.005949778947979212, + 0.02033642679452896, + -0.006492541637271643, + -0.0024544554762542248, + -0.003610402811318636, + -0.0037134590093046427, + 0.004190952982753515, + -0.011611000634729862, + -0.011521684937179089, + -0.010642272420227528, + 0.0006629949784837663, + 0.005540989339351654, + -0.016282882541418076, + -0.014084349386394024, + -0.0009489760268479586, + -0.038694173097610474, + 0.006557810585945845, + -0.008271979168057442, + -0.006547505035996437, + 0.011961392126977444, + -0.026835838332772255, + 0.012030095793306828, + 0.02533808909356594, + 0.008821612223982811, + -0.017876818776130676, + 0.03550630062818527, + 0.013287381269037724, + -0.012504154816269875, + 0.006145585794001818, + -0.013301122933626175, + -0.020734911784529686, + 0.027632806450128555, + -0.013569069094955921, + 0.017876818776130676, + 0.005121894180774689, + -0.010202565230429173, + -0.01643403246998787, + 0.0021641806233674288, + 0.019773053005337715, + 0.018879899755120277, + -0.0214356929063797, + 0.0024097978603094816, + 0.00992087833583355, + -0.0026330864056944847, + 0.024142635986208916, + 0.015266060829162598, + -0.006891025695949793, + 0.026780875399708748, + 0.02449989877641201, + 0.008416257798671722, + 0.007248287554830313, + 0.013417919166386127, + 0.028388552367687225, + -0.00515968119725585, + -0.013905718922615051, + -0.011343054473400116, + 0.010587308555841446, + 0.010401807725429535, + 0.0015844893641769886, + 0.027550362050533295, + 0.007949070073664188, + 0.00039011071203276515, + 0.008093348704278469, + -0.02188914082944393, + 0.06414218991994858, + -0.033142879605293274, + -0.029570264741778374, + 0.012943861074745655, + -0.015746990218758583, + -8.931539196055382e-05, + -0.07848761230707169, + -0.012531636282801628, + 0.007550585549324751, + 0.02013031393289566, + -0.02849848009645939, + 0.025777794420719147, + -0.009701025672256947, + 0.014166794717311859, + -0.010305621661245823, + 0.03547881916165352, + -0.012511025182902813, + -0.015046208165585995, + -0.020473835989832878, + 0.01962190307676792, + 0.0029525605496019125, + -0.007468140684068203, + -0.008993372321128845, + -0.019072270020842552, + -0.013431660830974579, + 0.02962522767484188, + 0.014235499314963818, + -0.004774937871843576, + -0.010099509730935097, + -0.02698698826134205, + -0.01456527877599001, + -0.0030040887650102377, + -0.03154894337058067, + 0.01405686791986227, + 0.0034231841564178467, + 0.02474723383784294, + 0.007708604913204908, + -0.015692027285695076, + 0.015953103080391884, + -0.025324348360300064, + -0.020748652517795563, + -0.00443485239520669, + -0.011796501465141773, + -0.028635887429118156, + 0.01380953285843134, + -0.011081978678703308, + 0.0049192169681191444, + -0.00889031682163477, + -0.0044588991440832615, + -0.024554861709475517, + 0.0032531411852687597, + 0.017093591392040253, + -0.01815163530409336, + 0.02017153799533844, + -0.005376099143177271, + -0.0008940126863308251, + -0.019264642149209976, + -0.04114004224538803, + 0.0047165397554636, + -0.012476672418415546, + 0.029817599803209305, + 0.0017261916073039174, + 0.013012564741075039, + -0.0032359652686864138, + -0.007949070073664188, + -0.00020965498697478324, + -0.008402517065405846, + 0.011095719411969185, + -0.02353803999722004, + 0.029267966747283936, + -0.005798629950731993, + 0.004798984620720148, + -0.02198532596230507, + -0.006056270562112331, + -0.007914717309176922, + 0.008608628995716572, + -0.02496708557009697, + 0.0246235653758049, + -0.004544779192656279, + 0.008663592860102654, + -0.002990348031744361, + 0.010855254717171192, + -0.04105759784579277, + -0.0349566675722599, + 0.022411292418837547, + -0.0180691909044981, + -0.01532102469354868, + -0.008855964057147503, + 0.010662883520126343, + -0.006540634669363499, + 0.024348748847842216, + -0.00026214926037937403, + -0.008842223323881626, + -0.01933334581553936, + 0.030202342197299004, + -0.03863921016454697, + 6.178005423862487e-05, + 0.014359165914356709, + 0.03781476244330406, + -0.019223419949412346, + -0.01643403246998787, + 0.0001515785261290148, + -0.02631368674337864, + -0.018591342493891716, + 0.005568470805883408, + 0.006080316845327616, + -0.048477645963430405, + 0.005712749902158976, + -0.07288135588169098, + 0.024156376719474792, + 0.027289286255836487, + -0.012682785280048847, + -0.01747833378612995, + -0.0014032821636646986, + 0.008045255206525326, + 0.028608405962586403, + 0.008684203960001469, + -0.01496376283466816, + -0.016502736136317253, + 0.006616209167987108, + -0.02050131745636463, + -0.007413177285343409, + -0.0204326119273901, + -0.008010903373360634, + 0.0011945933802053332, + 0.013307993300259113, + 0.02105095051229, + -0.009996453300118446, + 0.0172722227871418, + 0.005960084497928619, + 0.0036722365766763687, + 0.027138138189911842, + -0.02496708557009697, + -0.001954633044078946, + -0.0260113887488842, + 0.005575341172516346, + 0.0018550119129940867, + 0.019718090072274208, + 0.01857760176062584, + -0.0011173011735081673, + -0.008436868898570538, + 0.026739653199911118, + -0.0019013872370123863, + -0.01317745540291071, + 0.004348972346633673, + 0.02921300195157528, + 0.002895879792049527, + 0.02559916488826275, + -0.02311207540333271, + -0.037594906985759735, + -0.0012632975121960044, + -0.00014631835801992565, + -0.017011146992444992, + -0.0017227564239874482, + 0.03273065388202667, + -0.020391389727592468, + 0.026492318138480186, + -0.002440714742988348, + 0.011858335696160793, + 0.005853593349456787, + -0.01672258973121643, + -0.02647857740521431, + 0.009261318482458591, + 0.0020113138016313314, + -0.005966954864561558, + -0.0015071971574798226, + 0.026712171733379364, + -0.0170661099255085, + 0.04361339285969734, + 0.015128652565181255, + 0.028883222490549088, + 0.010477381758391857, + 0.006636820267885923, + -0.015128652565181255, + -0.018275301903486252, + -0.000269449083134532, + 0.009962101466953754, + -0.015279801562428474, + -0.006952859461307526, + 0.004225304815918207, + 0.019388310611248016, + 0.03350014239549637, + -0.0012134870048612356, + -0.011191905476152897, + 0.0049192169681191444, + 0.006059705745428801, + 0.005142505280673504, + 0.01336295623332262, + 0.018124153837561607, + 0.025750312954187393, + -0.022878481075167656, + 0.0012778971577063203, + 0.022205179557204247, + 0.0010975487530231476, + -0.006327651906758547, + 0.023084592074155807, + -0.004496686160564423, + 0.014008775353431702, + 0.0039985813200473785, + 0.02484341897070408, + 0.009907137602567673, + 0.00838190596550703, + -0.017176035791635513, + 0.001903104828670621, + 0.0068669794127345085, + 0.0028907270170748234, + 0.025063272565603256, + 0.035918526351451874, + -0.006633385084569454, + 0.009536135010421276, + 0.004579131491482258, + -0.01201635506004095, + -0.018605083227157593, + 0.014936281368136406, + -0.030037451535463333, + -0.004531038459390402, + 0.0012924966868013144, + 0.03462688997387886, + 0.013136232271790504, + 0.002677744021639228, + -0.014022516086697578, + 0.012071317993104458, + -0.020405130460858345, + 0.0156782865524292, + -0.014524056576192379, + -0.003909266088157892, + -0.033774957060813904, + 0.04207441955804825, + 0.016750071197748184, + 0.0027928235940635204, + 0.014524056576192379, + 0.01172779779881239, + 0.014895059168338776, + 0.014262980781495571, + 0.015018725767731667, + -0.015087430365383625, + 0.007818532176315784, + -0.008539925329387188, + 0.009172003716230392, + 0.021078431978821754, + 0.0048539480194449425, + -0.0008128558984026313, + -0.017629483714699745, + -0.020281463861465454, + 0.005276478361338377, + 0.017038628458976746, + -0.01286141574382782, + 0.13751821219921112, + 0.01811041310429573, + -0.008601758629083633, + -0.012160633690655231, + -0.007097138091921806, + -0.0005290218978188932, + 0.01823407970368862, + -0.013486623764038086, + -0.028099995106458664, + -0.04812038317322731, + 0.011294961906969547, + -0.02778395637869835, + -0.0001207690074807033, + -0.005362358409911394, + 0.011906428262591362, + -0.016035547479987144, + -0.007193324156105518, + 0.02290596254169941, + -0.00798342190682888, + 0.0020594068337231874, + 0.03929877281188965, + -0.02188914082944393, + 0.017134813591837883, + 0.04869749769568443, + -0.008107089437544346, + -0.002598734339699149, + 0.015953103080391884, + 0.005163116380572319, + 0.010978922247886658, + -0.011968262493610382, + 0.0027979763690382242, + -0.005802065134048462, + -0.056337397545576096, + -0.02370293065905571, + 0.019140975549817085, + -0.03308791667222977, + 0.0003224800748284906, + -0.009453690610826015, + 0.016502736136317253, + 0.009062076918780804, + -0.0006325075519271195, + 0.014702687039971352, + -0.007742957212030888, + -0.0004981050733476877, + 0.012469802051782608, + -0.027344249188899994, + 0.012153763324022293, + -0.022466255351901054, + -0.02109217271208763 + ], + "metadata": { + "source": "INSPIRER_Schlussbericht.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 5, + "has_images": true, + "image_count": 29, + "detection_class_prob": 0.6591171622276306, + "coordinates": "CoordinatesMetadata(points=((1122.828857421875, 155.53517150878906), (1122.828857421875, 361.06524658203125), (1358.3359375, 361.06524658203125), (1358.3359375, 155.53517150878906)), system=)", + "links": [], + "last_modified": "2025-05-05T22:58:03", + "_known_field_names": "frozenset({'page_number', 'text_as_html', 'emphasized_text_contents', 'subject', 'data_source', 'links', 'coordinates', 'image_path', 'is_continuation', 'header_footer_type', 'sent_from', 'url', 'parent_id', 'detection_class_prob', 'emphasized_text_tags', 'last_modified', 'category_depth', 'page_name', 'attached_to_filename', 'bcc_recipient', 'orig_elements', 'languages', 'filetype', 'link_texts', 'file_directory', 'sent_to', 'key_value_pairs', 'image_base64', 'cc_recipient', 'link_urls', 'signature', 'image_mime_type', 'filename', 'detection_origin', 'table_as_cells', 'email_message_id', 'link_start_indexes'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "INSPIRER_Schlussbericht.pdf", + "parent_id": "1c51aaba3295e535d31a83c2392f0391", + "text_as_html": "
Projektlaufzeit01.08.2021 - 31.07.2024 (verl\u00e4ngert bis 31.10.2024)
F\u00f6rderkennzeichen165V8744
StichworteStadtentwicklung, Digitale B\u00fcrgerbeteiligung, Partizipation
und Akzeptanz, Augmented Reality, Extended Reality (XR),
AR-Tracking, Point Cloud Matching
ProjektleitungProf. Dr.-Ing. Volker Coors
Beteiligte ProfessorenProf. Dr.-Ing. Volker Coors
Gef\u00f6rderte Ma\u00dfnahmeForschungsprogramm zur Mensch-Technik-nteraktion
F\u00f6rderbereichTechnik zum Mensch bringen
FachhochschuleHochschule f\u00fcr Technik Stuttgart (HFT Stuttgart),
", + "id": "351a57f5-fe09-4ea6-8750-b2c5267a9700", + "processing_timestamp": "2025-05-05T23:07:23.860264", + "chunk_number": 6, + "total_chunks": 19, + "chunking_strategy": "hybrid", + "word_count": 477 + } +} \ No newline at end of file diff --git a/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000007.json b/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000007.json new file mode 100644 index 0000000000000000000000000000000000000000..57329a28c3b1398be8f8c3863f1b92e712d2fba8 --- /dev/null +++ b/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000007.json @@ -0,0 +1,1570 @@ +{ + "id": "2b86db2d-408b-1992-e1b5-8a9f00000007", + "content": "Die entwickelte Tracking-Architektur bot eine robuste und exakte Positionierung virtueller Inhalte in der realen Umgebung und bildete eine wesentliche Grundlage f\u00fcr die Nutzung von AR in der Stadtplanung. Die Ergebnisse des Arbeitspakets lieferten wertvolle Erkenntnisse zur Nutzung von Punktwolkentechnologien f\u00fcr AR-Tracking und trugen dazu bei, innovative Methoden f\u00fcr die digitale B\u00fcrgerbeteiligung in der Stadtplanung zu entwickeln. Die Ergebnisse des Point Cloud Matching Prototypen wurden gem\u00e4\u00df Projektplan in einem wissenschaftlichen peer-review Publikationen auf der intl. Smart Data and Smart Cities Konferenz 2022 als Open Access ver\u00f6ffentlicht (D6.3). Ein weiteres Paper wurde bei de Smart Data and Smart Cities Konferenz 2025 eingereicht (D 6.5). ## II.1.6 Arbeitspaket 8: Stadtmodell-Server\n\nIm Rahmen von AP8 wurde ein 3D-Stadtmodell-Szenario entwickelt, das auf architektonischen Pl\u00e4nen und Informationen der Stadt Fellbach basiert. Ziel war es, eine realit\u00e4tsnahe und interaktive Umgebung zu schaffen, die f\u00fcr Stadtplanungsprozesse genutzt werden kann. Zu Beginn wurden die bereitgestellten architektonischen Zeichnungen und st\u00e4dtischen Daten analysiert, um eine pr\u00e4zise digitale Rekonstruktion zu erm\u00f6glichen. Basierend auf diesen Daten\nwurde die 3D-Planung des Untersuchungsgebiets erstellt und f\u00fcr interaktive Anwendungen optimiert (D8.1). [IMAGE: ]\n\nAbbildung 8: 3D-Planung des Kreisels in Fellbach. Anschlie\u00dfend wurde eine parametrisierbare Objekt-Bibliothek integriert, um Elemente wie Baustellenschilder und Ampeln flexibel einf\u00fcgen zu k\u00f6nnen (D8.2). Erg\u00e4nzend wurden Verfahren zur Verarbeitung von Punktwolkendaten erprobt, um eine genauere Abstimmung der digitalen Modelle mit realen Gegebenheiten zu erm\u00f6glichen. In der finalen Phase wurde der Stadtmodell-Server optimiert, um eine performante Visualisierung und effiziente Verwaltung von Entwurfsdaten zu gew\u00e4hrleisten (D8.3). Der erstellte Demonstrator stellt eine Grundlage f\u00fcr zuk\u00fcnftige digitale Stadtplanungsprojekte dar und zeigt, wie reale architektonische Pl\u00e4ne in immersive 3D-Umgebungen \u00fcberf\u00fchrt werden k\u00f6nnen\n\n## II.1.7 Arbeitspaket 9: ELSI in der App-basierten Stadtplanung\n\nDie Integration ethischer, rechtlicher und sozialer Aspekte (ELSI) war ein zentraler Bestandteil der app-basierten Stadtplanung. Ziel war es, B\u00fcrger*innen fr\u00fchzeitig einzubinden, Transparenz zu gew\u00e4hrleisten und soziale Akzeptanz zu f\u00f6rdern. Zu Beginn wurden Strategien zur Aktivierung und Sensibilisierung der Zielgruppen entwickelt (D9.1). Erste Entw\u00fcrfe der Benutzeroberfl\u00e4che wurden vorgestellt und von Nutzer*innen bewertet. In den Testregionen Berlin und Fellbach kamen verschiedene Beteiligungsformate zum Einsatz, darunter Workshops und digitale Feedback-Methoden (D9.2). Durch eine iterative ELSI-Anforderungsanalyse wurden soziale, ethische und rechtliche Anforderungen kontinuierlich \u00fcberpr\u00fcft und in die Weiterentwicklung der Technologie integriert (D9.3). Die HFT Stuttgart hat in diesem vom Frauencomputerzentrum geleiteten Arbeitspakets gem\u00e4\u00df Projektplan mitgewirkt. ## II.1.8 Arbeitspaket 11: Projektmanagement\n\nEine strukturierte Projektplanung und -koordination war essenziell, um einen reibungslosen Ablauf \u00fcber die gesamte Laufzeit zu gew\u00e4hrleisten. Neben der inhaltlichen Steuerung umfasste das Arbeitspaket auch die Koordination von Projekttreffen, den fachlichen Austausch zwischen Partnern sowie die Projektdokumentation. Zu Beginn wurde ein Projektplan mit klaren Meilensteinen und Zust\u00e4ndigkeiten erstellt, um die Aufgabenverteilung und den Fortschritt effizient zu steuern (AP11.1). Regelm\u00e4\u00dfige Jour-Fixe- Meetings, Konsortialtreffen und Workshops f\u00f6rderten den Austausch zwischen den Partnern (AP11.2). Zudem wurde ein Beirat gegr\u00fcndet, um eine externe Perspektive auf die Projektergebnisse zu erm\u00f6glichen.", + "embedding": [ + 0.016153475269675255, + 0.011715632863342762, + -5.12454062118195e-05, + -0.019805798307061195, + -0.010372866876423359, + 0.023471549153327942, + -0.02841292880475521, + 0.004629185888916254, + -0.0005555694224312901, + -0.045412346720695496, + 0.028090665116906166, + -0.0008509779581800103, + 0.0015853031072765589, + 0.013528367504477501, + -0.025311138480901718, + -0.005569121800363064, + 0.03644266724586487, + -0.0068078236654400826, + -0.004316992592066526, + 0.01607290841639042, + -0.024438340216875076, + 0.005223359912633896, + 0.02567368559539318, + -0.005488555878400803, + -0.007553058676421642, + 0.011386655271053314, + 0.024102648720145226, + -0.011997614055871964, + -0.00023959980171639472, + -0.004444555379450321, + 0.010735413990914822, + -0.0076537663117051125, + -0.0043807742185890675, + 0.00982904713600874, + -0.022383909672498703, + 0.0007351643871515989, + -0.0014040296664461493, + -0.009614204056560993, + 0.020517464727163315, + 0.0109636839479208, + 0.015911776572465897, + -2.2964052277529845e-06, + 0.0006516611319966614, + -0.012071466073393822, + 0.0013486405368894339, + 0.021135136485099792, + -0.00793574657291174, + 0.006660119164735079, + -0.015549230389297009, + 0.007304647006094456, + 0.009130808524787426, + 0.024129504337906837, + -0.027553558349609375, + -0.011077819392085075, + -0.011964044533669949, + -0.0027442779392004013, + -0.022370481863617897, + 0.01562979631125927, + 0.004377417266368866, + -0.02584824524819851, + -0.012239311821758747, + -0.0020863227546215057, + -0.013870772905647755, + 0.0033032044302672148, + -0.025042586028575897, + -0.003806741675361991, + -0.03612040355801582, + 0.008365431800484657, + -0.010916687548160553, + 0.003162213834002614, + 0.05105196312069893, + 0.02164538763463497, + 0.019402967765927315, + -0.018422748893499374, + 0.02825179696083069, + -0.006381495390087366, + 0.021873658522963524, + -0.020745733752846718, + -0.02215563878417015, + 0.010601137764751911, + -0.010366152971982956, + -0.01712026633322239, + -0.017711082473397255, + 0.03241436928510666, + 0.016516022384166718, + 0.010037175379693508, + 0.002344805048778653, + 0.011272520758211613, + -0.010668275877833366, + 0.015267249196767807, + -0.009761909022927284, + 0.03214581683278084, + -0.005371063947677612, + 0.0059115272015333176, + -0.016891995444893837, + 0.018328756093978882, + -0.002433763351291418, + 0.005676543340086937, + -0.006596338003873825, + -0.015106117352843285, + 0.007465778850018978, + 0.007915605790913105, + -0.039531029760837555, + -0.003429088741540909, + -0.024277208372950554, + -0.015280677005648613, + -0.013521653600037098, + -0.0024807602167129517, + 0.023323845118284225, + -0.022169066593050957, + -0.02723129466176033, + 0.022504758089780807, + 0.002270953031256795, + -0.004176001995801926, + 0.002714065834879875, + -0.039799582213163376, + 0.014676432125270367, + -0.021054571494460106, + 0.0010842835763469338, + 0.001997364452108741, + 0.020598029717803, + 0.01565665192902088, + 0.010849549435079098, + -0.013279955834150314, + 0.013555222190916538, + 0.008231155574321747, + -0.009694769978523254, + -0.00406858092173934, + -0.0072039393708109856, + -0.02600937709212303, + -0.020383188501000404, + -0.01016473863273859, + 0.013709641061723232, + 0.012507865205407143, + -0.015280677005648613, + 0.0037731723859906197, + -0.012259453535079956, + -0.016287751495838165, + -0.03735575079917908, + -0.04713108763098717, + 0.012642141431570053, + 0.019470106810331345, + -0.00986261572688818, + -0.021229131147265434, + 0.001728811184875667, + 0.01857045292854309, + 0.008748120628297329, + 0.009258371777832508, + 0.012997974641621113, + -0.014394450932741165, + -0.0025999306235462427, + -0.03663065657019615, + -0.005787321366369724, + 0.009681343100965023, + -0.01705312728881836, + -0.015549230389297009, + -0.011178527027368546, + 0.008754834532737732, + -0.011420224793255329, + -0.030910473316907883, + -0.004437841475009918, + 0.005733610596507788, + 0.006166652776300907, + 0.0015802676789462566, + 0.031474433839321136, + 0.011930475942790508, + -0.005656401626765728, + 0.0027123873587697744, + 0.008365431800484657, + -0.0015240394277498126, + -0.003769815433770418, + 0.011823054403066635, + -0.02959456294775009, + 0.01941639557480812, + -0.0074187819845974445, + 0.008774975314736366, + -0.0035885421093553305, + 0.0048406715504825115, + -0.03488506004214287, + -0.03407939895987511, + 0.00931879598647356, + 0.004729893058538437, + 0.02124255709350109, + 0.018154196441173553, + -0.020154917612671852, + 0.012796559371054173, + 0.009077098220586777, + 0.01756337843835354, + -0.010386294685304165, + 0.003427410265430808, + 0.023766957223415375, + 0.0021249272394925356, + 0.0005484359571710229, + -0.03845681622624397, + -0.6273402571678162, + -0.01236687507480383, + 0.011359800584614277, + -0.02811751887202263, + 0.003168927738443017, + 0.019711805507540703, + 0.010527285747230053, + 0.0070965182967484, + 0.0012856983812525868, + 0.03407939895987511, + -0.0023951588664203882, + -0.0013931196881458163, + -0.004672825802117586, + -0.003534831339493394, + -0.02212878316640854, + -0.017227686941623688, + 0.01671743579208851, + -0.014407878741621971, + 0.019846081733703613, + 0.019470106810331345, + -0.03676493093371391, + -0.001548376982100308, + -0.007868608459830284, + -0.013024830259382725, + -0.006170009728521109, + 0.01299126073718071, + 0.006418421398848295, + -0.011379941366612911, + -0.008499708957970142, + 0.010386294685304165, + -0.016019199043512344, + 0.03281719982624054, + -0.013608933426439762, + 0.021403688937425613, + 0.05330780893564224, + 0.015106117352843285, + -0.012360161170363426, + 0.027285004034638405, + 0.013964766636490822, + 0.024774031713604927, + -0.00849299505352974, + 0.013924483209848404, + 0.0023196281399577856, + 0.012360161170363426, + 0.014394450932741165, + 0.006838035769760609, + 0.03311260789632797, + -0.0027543487958610058, + -0.006200221832841635, + -0.01812734082341194, + 0.012897267006337643, + -0.013964766636490822, + -0.022437619045376778, + -0.0024522263556718826, + 0.026304785162210464, + 0.0052636428736150265, + 0.008318435400724411, + -0.007915605790913105, + -0.0041021499782800674, + -0.0006911048549227417, + -0.0007674747030250728, + -0.014985268004238605, + -0.026412207633256912, + -0.03453594073653221, + -0.029379719868302345, + 0.028224941343069077, + -0.002641892060637474, + -0.015455236658453941, + 0.00867426861077547, + -0.025633402168750763, + 0.014971841126680374, + 0.03842996433377266, + -0.0057168263010680676, + -0.012031183578073978, + 0.017294825986027718, + 0.000702854071278125, + 0.023699820041656494, + -0.004880954511463642, + -0.005136080086231232, + 0.0009877722477540374, + 0.014542155899107456, + -0.02669418789446354, + -0.013253100216388702, + 0.018207907676696777, + 0.00015609654656145722, + -0.012977832928299904, + -0.03552958741784096, + -0.013239672407507896, + 0.00444119842723012, + 0.0028147732373327017, + 0.021336551755666733, + 0.009412789717316628, + -0.01959095522761345, + -0.02429063618183136, + -0.013467942364513874, + 0.03609354794025421, + -0.006146511062979698, + 0.028493493795394897, + -0.009191232733428478, + -0.047077376395463943, + -0.01985950954258442, + -0.008110306225717068, + 0.026868747547268867, + 0.0023347344249486923, + 0.023055292665958405, + 0.00970819778740406, + -0.012004327960312366, + 0.01289055310189724, + 0.04680882394313812, + -0.020651740953326225, + -0.0070092384703457355, + -0.010513857938349247, + -0.006831321865320206, + -0.0019117631018161774, + 0.011178527027368546, + -0.023928089067339897, + 0.0005026980070397258, + -0.009634345769882202, + 0.011359800584614277, + 0.010178166441619396, + 0.0011606533080339432, + -0.022518185898661613, + 0.03214581683278084, + -0.019966930150985718, + -0.016636870801448822, + 0.013306810520589352, + 0.0015190039994195104, + -0.009842474944889545, + -0.02151111140847206, + 0.0009902899619191885, + 0.006086086854338646, + -0.008365431800484657, + 0.033542294055223465, + -0.005676543340086937, + 0.02878890186548233, + -0.005730253644287586, + 0.013729781843721867, + -0.011836482211947441, + -0.006552698090672493, + -0.02689560316503048, + -0.025754252448678017, + 0.000774188491050154, + 0.00043975585140287876, + -0.02235705405473709, + -0.008942821063101292, + -0.036550089716911316, + 0.007076376583427191, + 0.012071466073393822, + 0.005025301594287157, + 0.007667193654924631, + -0.021806519478559494, + -0.0183690395206213, + -0.0002836593193933368, + 0.025163434445858, + 0.009553779847919941, + -0.001759023405611515, + 0.00024484499590471387, + -0.02039661444723606, + -0.004666111897677183, + -0.022545041516423225, + 0.009500069543719292, + 0.009970037266612053, + -0.022813593968749046, + -0.018248189240694046, + 0.010030461475253105, + -0.007304647006094456, + 0.025096295401453972, + 0.027043307200074196, + -0.014595866203308105, + -0.03684549778699875, + 0.009540352039039135, + 0.009560493752360344, + -0.01466300431638956, + 0.01344780158251524, + -0.015549230389297009, + 0.013078540563583374, + -0.03461650758981705, + -0.014904702082276344, + -0.004830600693821907, + -0.004820529837161303, + -0.0007435566512867808, + 0.02023548260331154, + -0.0024387987796217203, + 0.003934304229915142, + 0.011843196116387844, + -0.004880954511463642, + 0.013138964772224426, + 0.0101848803460598, + -0.009943182580173016, + 0.014340740628540516, + 0.019040422514081, + 0.03883279114961624, + 0.001483756466768682, + 0.0183690395206213, + -0.01654287613928318, + 0.007029379718005657, + -0.012333305552601814, + 0.0035583297722041607, + -0.005085726268589497, + 0.011641780845820904, + 0.029782550409436226, + 0.0009667915292084217, + 0.030695630237460136, + 0.011507504619657993, + 0.014112470671534538, + -0.03461650758981705, + -0.005223359912633896, + -0.025351421907544136, + 0.03738260641694069, + 0.005313996225595474, + 0.013340380042791367, + -0.003836953779682517, + -0.02375352941453457, + 0.0021047857590019703, + 0.01738881878554821, + 0.020517464727163315, + -0.002730850363150239, + 0.006982383318245411, + -0.021658815443515778, + 0.009399361908435822, + -0.005740324500948191, + -0.00943964533507824, + 0.04380102455615997, + -0.004823886789381504, + -4.198766328045167e-05, + -0.0014946663286536932, + 0.02811751887202263, + 0.03998757153749466, + 0.02408922091126442, + -0.00996332336217165, + -0.008419143036007881, + 0.018543599173426628, + 0.00018085379269905388, + 0.01427360251545906, + 0.009191232733428478, + 4.6026452764635906e-05, + 0.031232737004756927, + -0.010332584381103516, + 0.038483671844005585, + -0.0006537591689266264, + 0.01600577123463154, + 0.02604966051876545, + 0.002680496545508504, + 0.007720904424786568, + 0.016113191843032837, + -0.01388420071452856, + 0.0427536703646183, + 0.04165260121226311, + -0.005616118665784597, + 0.011050963774323463, + -0.02079944498836994, + 0.011467221193015575, + -0.020960576832294464, + -0.003783243242651224, + 0.006311000324785709, + -0.009735053405165672, + 0.027392426505684853, + -0.0013478014152497053, + 0.033032044768333435, + 0.025969093665480614, + 0.00589474244043231, + 0.018557025119662285, + 0.023216424509882927, + 0.006509058177471161, + -0.011567928828299046, + -0.0041390759870409966, + -0.02604966051876545, + -0.025888528674840927, + -0.015455236658453941, + -0.007868608459830284, + 0.01763051748275757, + -0.012017755769193172, + -0.010695131495594978, + -0.0004376577853690833, + 0.011353086680173874, + 0.0025260786060243845, + 0.011957330629229546, + 0.005364350043237209, + 0.03424053266644478, + 0.01908070407807827, + -0.02604966051876545, + -0.0290574561804533, + -0.009446358308196068, + 0.01972523145377636, + -0.0076201967895030975, + -0.009137522429227829, + -0.013843917287886143, + -0.001787557266652584, + -0.0023951588664203882, + -0.02404893934726715, + -0.022880733013153076, + 0.007284505292773247, + -0.01381706167012453, + -0.010627992451190948, + -0.005183076485991478, + 0.006287501659244299, + 0.03131330385804176, + -0.017549950629472733, + -0.006908530835062265, + -0.0028600916266441345, + -0.015401525422930717, + 0.0023414480965584517, + -0.01070855837315321, + -0.03440166637301445, + 0.0322800949215889, + -0.017711082473397255, + -0.011648494750261307, + -0.019913218915462494, + 0.005696684587746859, + -0.02130969613790512, + 0.0014082258567214012, + -0.007801470346748829, + 0.00016134172619786114, + 0.027486419305205345, + -0.0006608926341868937, + 0.006337855476886034, + -0.0076537663117051125, + -0.011191954836249352, + 0.05481170862913132, + -0.0035885421093553305, + -0.01968494988977909, + -0.03558329865336418, + -0.0017976280068978667, + 0.01874501258134842, + 0.03931618854403496, + 0.022061645984649658, + 0.010641420260071754, + 0.007949174381792545, + -0.0043673464097082615, + -0.009352365508675575, + -0.02050403691828251, + -0.030507642775774002, + 0.0052636428736150265, + 0.01806020177900791, + -0.00040828477358445525, + -0.0061196559108793736, + 0.025351421907544136, + -0.01407218724489212, + 0.005468414630740881, + 0.002351518953219056, + 0.011097961105406284, + -0.016824858263134956, + 0.008835400454699993, + 0.021712526679039, + 0.006827964913100004, + -0.0027577057480812073, + 0.004192786756902933, + 0.04143775999546051, + 0.016516022384166718, + -0.006213649641722441, + 0.04278052598237991, + 0.010137883014976978, + 0.00192183384206146, + -0.023686392232775688, + 0.024478623643517494, + 0.031205881386995316, + 0.005820890422910452, + 0.019174698740243912, + -0.02280016615986824, + 0.008915966376662254, + 0.022316770628094673, + -0.01289055310189724, + 0.0244920514523983, + 0.002611679956316948, + 0.019000139087438583, + 0.005740324500948191, + 0.014676432125270367, + -0.006065945141017437, + 0.011849910020828247, + -0.0061498680151999, + -0.001017145230434835, + 0.015952059999108315, + -0.016757719218730927, + -0.017643945291638374, + 0.0013326952466741204, + 0.008486281149089336, + -0.015213538892567158, + -0.014394450932741165, + 0.017778221517801285, + 0.0010792481480166316, + 0.02239733748137951, + -0.01763051748275757, + 0.0014518657699227333, + -0.01627432368695736, + -0.029755694791674614, + -0.015347815118730068, + -0.01587149314582348, + -0.009936468675732613, + -0.020880011841654778, + -0.010768983513116837, + -0.01303825806826353, + -0.005857816431671381, + -0.022034790366888046, + 0.007130087353289127, + 0.0070159523747861385, + -0.00046619155909866095, + -0.03168927878141403, + 0.0072106532752513885, + 0.024196643382310867, + -0.008358717896044254, + 0.029138021171092987, + -0.01075555570423603, + -0.0005719343898817897, + 0.0058678872883319855, + -0.00644527655094862, + -0.011769344098865986, + 0.007378499023616314, + -0.039262477308511734, + -0.015589512884616852, + 0.01959095522761345, + -0.02391466125845909, + -0.016422027722001076, + -0.0023716604337096214, + 0.013488084077835083, + -0.00664669182151556, + -0.006874961778521538, + 0.010869690217077732, + 0.0010565889533609152, + -0.007083090487867594, + 0.0128569845110178, + -0.013098682276904583, + 0.02618393674492836, + 0.01712026633322239, + -0.02317614108324051, + 0.0022994866594672203, + -0.01596548780798912, + -0.013978193514049053, + 0.010352726094424725, + 0.03531474620103836, + 0.0015777500811964273, + -0.014340740628540516, + 1.803030500013847e-05, + -0.009359078481793404, + 0.0019453322747722268, + 0.005602690856903791, + -0.010735413990914822, + 0.0006806144956499338, + -0.0009634345769882202, + 0.014944985508918762, + 0.029728839173913002, + -0.008070023730397224, + 0.009654487483203411, + 0.0385105274617672, + -0.00986261572688818, + -0.016462311148643494, + -0.035099901258945465, + 0.03168927878141403, + 0.023941516876220703, + 0.0032243167515844107, + 0.014421306550502777, + 0.019872937351465225, + 0.020611457526683807, + -0.011977472342550755, + 0.007955888286232948, + -0.018731584772467613, + 0.012648855336010456, + 0.001973866019397974, + 0.008902538567781448, + -0.009244943968951702, + -0.003383770352229476, + 0.008795117028057575, + -0.001618033042177558, + -0.002494187792763114, + 0.002106464235112071, + -0.008633985184133053, + 0.011829768307507038, + 0.0192552637308836, + 0.0037026770878583193, + -0.010480288416147232, + -0.023552116006612778, + -0.01275627687573433, + 0.01678457483649254, + -0.034428518265485764, + 0.05115938559174538, + -0.01840932108461857, + -0.012387015856802464, + -0.013951338827610016, + -0.004327063448727131, + -0.012695852667093277, + -0.031581856310367584, + -0.003524760715663433, + -0.013024830259382725, + 0.032360661774873734, + 0.021067997440695763, + 0.02320299670100212, + 0.013279955834150314, + 0.023605825379490852, + 0.0013981551164761186, + -0.009506783448159695, + -0.004343847744166851, + -0.014246746897697449, + 0.0016062838258221745, + -0.02486802637577057, + 0.02053089253604412, + 0.009701483882963657, + 0.01511954516172409, + 0.021027715876698494, + -0.009412789717316628, + 0.006811180617660284, + 0.03217267245054245, + -0.029755694791674614, + -0.017093410715460777, + -0.009144236333668232, + -0.03099103830754757, + -0.025955665856599808, + 0.009540352039039135, + 0.003763101762160659, + 0.017818504944443703, + -0.03410625457763672, + 0.004729893058538437, + -0.00018484012980479747, + 0.01850331574678421, + 0.006676903925836086, + 0.003474406898021698, + 0.031232737004756927, + -0.0203697606921196, + 0.0219273678958416, + 0.01114495750516653, + 0.008660840801894665, + -0.01685171388089657, + -0.001826161751523614, + -0.041894298046827316, + 0.018798723816871643, + 0.04506322741508484, + 0.0027274934109300375, + 0.00943964533507824, + 8.958766557043418e-05, + -0.009278512559831142, + -0.0029373005963861942, + 0.012655569240450859, + 0.0210411436855793, + -0.00970819778740406, + -0.0005203218315728009, + -0.016287751495838165, + 0.0013142322422936559, + -0.018959855660796165, + -0.009996892884373665, + 0.007720904424786568, + 0.011326231062412262, + 0.001980579923838377, + 0.015589512884616852, + 0.03883279114961624, + 0.004065223969519138, + -0.005928311962634325, + 0.014448162168264389, + -0.007741045672446489, + 0.03577128425240517, + -0.000897974765393883, + 0.04092750698328018, + 0.010332584381103516, + -0.024304063990712166, + -0.021806519478559494, + -0.06665490567684174, + 0.005183076485991478, + 0.005220002960413694, + 0.01938953995704651, + 0.004723179154098034, + -0.0008644055924378335, + -0.023793812841176987, + 0.009681343100965023, + 0.020383188501000404, + -0.030292799696326256, + -0.017402246594429016, + 0.04283423349261284, + 0.02502915821969509, + 0.0008795117028057575, + -0.004337134305387735, + -0.007801470346748829, + -0.009916326962411404, + -0.0034844777546823025, + -0.0008018830558285117, + 0.010507144033908844, + 0.013441087678074837, + 0.01542838104069233, + 0.0007704119780100882, + 0.026801608502864838, + -0.011836482211947441, + 0.029540851712226868, + 0.017509669065475464, + -0.025566264986991882, + 0.005018587689846754, + -0.02273302897810936, + -0.002225634641945362, + 0.018543599173426628, + 0.01273613516241312, + 0.014313885010778904, + -0.01170220598578453, + 0.0014040296664461493, + 0.0065291994251310825, + 0.0018463032320141792, + 0.013266528025269508, + -0.0037093909922987223, + 0.015106117352843285, + 0.02253161370754242, + -0.014998695813119411, + -0.006921958643943071, + -0.00041982418042607605, + -0.005841032136231661, + 0.024478623643517494, + 0.00918451976031065, + 0.0001472846488468349, + -0.026506200432777405, + -0.010359439998865128, + -0.0009894507238641381, + 0.012427299283444881, + 0.0015106117352843285, + 0.002041004365310073, + -0.011312803253531456, + 0.0008383895037695765, + -0.02280016615986824, + 0.0003466014750301838, + 0.019953502342104912, + 0.019899791106581688, + -0.03961159661412239, + -0.016838286072015762, + 0.019161270931363106, + -0.0076403385028243065, + 0.020611457526683807, + 0.003561686724424362, + 0.011191954836249352, + -0.017415674403309822, + 0.0115209324285388, + -0.04181373119354248, + 0.011695492081344128, + 0.02994368225336075, + -0.002678818069398403, + -0.02473375014960766, + 0.010446719825267792, + -0.005730253644287586, + -0.01640859991312027, + 0.028359217569231987, + 0.0005186433554627001, + -0.029728839173913002, + 0.0016910459380596876, + 0.01887929067015648, + -0.003110181773081422, + -0.009036814793944359, + 0.0004800388414878398, + 0.023686392232775688, + -0.0017640588339418173, + 0.0030564710032194853, + 0.0003801706188824028, + -0.0072106532752513885, + 0.0006973990821279585, + 0.0025244001299142838, + -0.00045821888488717377, + 0.019953502342104912, + -0.028869468718767166, + 0.01055414043366909, + 0.017979636788368225, + 0.002433763351291418, + -0.009882757440209389, + -0.02929915301501751, + -0.022075071930885315, + -0.009231516160070896, + 0.015482091344892979, + -0.012588431127369404, + 0.0009231516160070896, + -0.002463975688442588, + -0.01542838104069233, + -0.007861894555389881, + 0.0027039949782192707, + -0.0014803995145484805, + 0.008667554706335068, + 0.0007880358025431633, + 0.00454190606251359, + -0.010278874076902866, + 0.016798002645373344, + 0.0025260786060243845, + -0.030292799696326256, + -0.012715993449091911, + -0.006921958643943071, + -0.03617411479353905, + 0.011191954836249352, + -0.013333666138350964, + 0.03131330385804176, + 0.03440166637301445, + -0.044472407549619675, + -0.003219281556084752, + -0.030561354011297226, + -0.0549996942281723, + -0.03332745283842087, + -0.02384752407670021, + -0.0037362463772296906, + 0.005213289055973291, + 0.012467581778764725, + 0.0056597585789859295, + 0.026130225509405136, + 0.0011388333514332771, + -0.002747634891420603, + -0.007116659544408321, + -0.033166319131851196, + -0.0008039811509661376, + -0.031044749543070793, + 0.017039699479937553, + 0.008768262341618538, + -0.054919127374887466, + 0.002339769620448351, + 0.007868608459830284, + -0.009157664142549038, + 0.012353447265923023, + 0.004938021767884493, + -0.001318428316153586, + -0.017200833186507225, + 0.011386655271053314, + 0.022545041516423225, + -0.010587709955871105, + 0.004149146843701601, + 0.028762048110365868, + -0.01393791101872921, + 0.021430544555187225, + 0.016193758696317673, + 4.518722198554315e-05, + -0.04165260121226311, + -0.012528006918728352, + 0.008506422862410545, + -0.013159106485545635, + -0.00839228741824627, + 0.034213677048683167, + -0.01745595782995224, + -0.010634706355631351, + -0.015549230389297009, + 0.02408922091126442, + 0.001787557266652584, + -0.008868969045579433, + 0.016838286072015762, + 0.01587149314582348, + 0.004199500661343336, + -0.02108142524957657, + 0.0020359689369797707, + -0.038107696920633316, + 0.00859370268881321, + 0.01705312728881836, + -0.027486419305205345, + 0.026734471321105957, + -0.024680038914084435, + -0.013313524425029755, + -0.011608212254941463, + 0.0012303093681111932, + 0.0015651616267859936, + 0.00247740326449275, + -0.007459064945578575, + 0.018825579434633255, + 0.004115577787160873, + 0.0015945346094667912, + 0.012514579109847546, + -0.004196143709123135, + -0.006488916464149952, + -0.0257139690220356, + -0.011816340498626232, + -0.0015064155450090766, + -0.01248100958764553, + -0.003200818318873644, + -0.010580996051430702, + -0.03595927357673645, + 0.004176001995801926, + 0.003457622369751334, + -0.005525481887161732, + -0.011433652602136135, + 0.011722346767783165, + 0.21452029049396515, + 0.007351643871515989, + -0.0072106532752513885, + -0.0037161048967391253, + -0.028493493795394897, + -0.0036187542136758566, + 0.019832653924822807, + 0.017335109412670135, + -0.0026905674021691084, + 0.01667715422809124, + -0.011930475942790508, + 0.010735413990914822, + 0.01945667900145054, + 0.005045443307608366, + 0.019295547157526016, + -0.018342183902859688, + -0.02489488199353218, + -0.00491452356800437, + -0.003444194793701172, + 0.031581856310367584, + 0.03840310871601105, + -0.021900512278079987, + -0.0033199889585375786, + -0.01810048520565033, + 0.021725954487919807, + -0.010057317093014717, + -0.02388780750334263, + 0.0002177798596676439, + 0.021161992102861404, + 0.017335109412670135, + -0.01812734082341194, + 0.0017842003144323826, + 0.02337755635380745, + 0.0001899804046843201, + 0.015307532623410225, + -0.009177805855870247, + 0.005277070216834545, + 0.006592981051653624, + 0.03174298629164696, + -0.0008123734151013196, + -0.013219530694186687, + -0.015280677005648613, + -0.0049917325377464294, + -0.02825179696083069, + 0.003984658047556877, + 0.017106838524341583, + -0.014810708351433277, + 0.0018966569332405925, + -0.0009214731398969889, + -0.01952381804585457, + -0.010191594250500202, + 0.005612761713564396, + 0.007170370314270258, + 0.014018476940691471, + -0.006962241604924202, + 0.019765514880418777, + -0.00589474244043231, + -0.0020863227546215057, + -0.008358717896044254, + 0.021860230714082718, + -0.019644666463136673, + 0.0017254542326554656, + -0.001127923373132944, + 0.006780968047678471, + -0.026224220171570778, + -0.0005480163963511586, + -0.00947321392595768, + -0.004313635639846325, + 0.007371785119175911, + -0.016113191843032837, + 0.009654487483203411, + -0.03115217015147209, + -0.01329338364303112, + 0.003907449077814817, + -0.004112220834940672, + -0.040202412754297256, + 0.023256706073880196, + 0.025700541213154793, + 0.01707998290657997, + 0.0460837297141552, + -0.00847285334020853, + -0.0061129420064389706, + 0.003125287825241685, + -0.014756998047232628, + 0.002789596328511834, + -0.03338116407394409, + 0.04691624268889427, + -0.00017539880354888737, + -0.021793091669678688, + -0.01550894696265459, + -0.04009499400854111, + -0.014555583707988262, + 0.0013906019739806652, + -0.021524539217352867, + 0.020718879997730255, + -0.008284865878522396, + 0.027378998696804047, + 0.007170370314270258, + -0.029782550409436226, + 0.005904813297092915, + -0.001047357451170683, + 0.053092967718839645, + 0.03279034420847893, + -0.019537245854735374, + -0.02155139483511448, + 0.00577725050970912, + 0.0061330837197601795, + 0.006579553242772818, + 0.011708918958902359, + -0.014716715551912785, + 0.007103232201188803, + -0.03738260641694069, + 0.004964877385646105, + 0.0005232591065578163, + 0.00982904713600874, + 0.03491191565990448, + 0.0018563739722594619, + -0.009385934099555016, + 0.0025143292732536793, + -0.004266638774424791, + -0.01921498216688633, + -0.004414343275129795, + 0.005052157212048769, + 0.014837563969194889, + 0.008835400454699993, + -0.022048218175768852, + -0.02574082463979721, + -0.007519489619880915, + -0.0033199889585375786, + -0.005374420899897814, + 0.0203697606921196, + -0.011480649001896381, + 0.012225884012877941, + 0.002767776371911168, + 0.00455869035795331, + -0.001639852998778224, + 0.014877847395837307, + -0.01955067366361618, + 0.008600416593253613, + 0.015388098545372486, + 0.022585323080420494, + 0.017469385638833046, + 0.009144236333668232, + 0.004316992592066526, + -0.0028919822070747614, + 0.00044395201257430017, + 0.008278151974081993, + 0.01938953995704651, + -0.022316770628094673, + -0.02760726772248745, + 0.007056235335767269, + -0.019698377698659897, + -0.008298293687403202, + -0.018275044858455658, + 0.03437481075525284, + 0.0012345054419711232, + -0.020718879997730255, + -0.016247468069195747, + 0.005495269782841206, + -0.010641420260071754, + -0.033032044768333435, + -0.009406075812876225, + 0.013508225791156292, + -0.012877126224339008, + -0.02023548260331154, + 0.005082369316369295, + -0.17112210392951965, + 0.013273241929709911, + 0.024787459522485733, + -0.041867442429065704, + 0.004907809663563967, + -0.0015206824755296111, + 0.01293755043298006, + -0.010037175379693508, + -0.025351421907544136, + 0.015159827657043934, + 0.018583880737423897, + 0.0002498803660273552, + -0.028600916266441345, + -0.001817769487388432, + -0.00015798481763340533, + 0.008231155574321747, + -0.03136701509356499, + 0.029675127938389778, + 0.012843556702136993, + 0.012863698415458202, + 0.0116350669413805, + -0.032065249979496, + -0.0060827299021184444, + -0.0009793799836188555, + 0.010359439998865128, + 0.01894642785191536, + -0.016314607113599777, + -0.010426578111946583, + -0.002136676339432597, + -0.01908070407807827, + 0.011272520758211613, + -0.010057317093014717, + 0.05303925648331642, + -0.012313163839280605, + -0.01517325546592474, + -0.011332944966852665, + -0.0096276318654418, + -0.0029574420768767595, + -0.007781329099088907, + 0.05704069882631302, + 0.02066516876220703, + 0.008586988784372807, + -0.005354279186576605, + 0.013776779174804688, + -0.039289332926273346, + 0.03037336654961109, + 0.034992482513189316, + -0.011319517157971859, + -0.012595145031809807, + -0.015186683274805546, + -0.004941378720104694, + -0.02513657882809639, + -0.004028297960758209, + 0.010849549435079098, + 0.0050924401730299, + 0.027902677655220032, + 0.019026994705200195, + 0.017066555097699165, + 0.0010205021826550364, + -0.0026536413934081793, + -0.0192552637308836, + 0.0074322097934782505, + 0.003132001729682088, + -0.004390844609588385, + -0.021981079131364822, + -0.0290574561804533, + 0.0038503813557326794, + 0.020074350759387016, + -0.008130447939038277, + 0.004233069717884064, + -0.011084533296525478, + -0.030695630237460136, + 0.0072307949885725975, + -0.002358232857659459, + 0.009130808524787426, + 0.019134415313601494, + -0.015065833926200867, + 0.021229131147265434, + 0.02097400464117527, + -0.017684228718280792, + -0.016314607113599777, + 0.04533177986741066, + -0.002938979072496295, + -0.031474433839321136, + -0.003622111165896058, + -0.021027715876698494, + -0.0184764601290226, + 0.02685531973838806, + 0.002165210200473666, + 0.019053848460316658, + 0.015253821387887001, + -0.03099103830754757, + -0.013266528025269508, + 0.008714551106095314, + 0.015495519153773785, + 0.012051324360072613, + -0.01114495750516653, + 0.00016553787281736732, + -0.015361242927610874, + -0.027191011235117912, + 0.019067276269197464, + -0.0037161048967391253, + -0.007848466746509075, + 0.02473375014960766, + 0.019308974966406822, + 0.012776418589055538, + 0.004484838340431452, + 0.008231155574321747, + 0.03730203956365585, + -0.005616118665784597, + -0.04466039687395096, + -0.0172545425593853, + 0.021188847720623016, + 0.00918451976031065, + -0.006831321865320206, + 0.01921498216688633, + 0.025257427245378494, + -0.010587709955871105, + 0.014179608784615993, + -0.010393008589744568, + 0.04933322221040726, + -0.014085615053772926, + -0.032226383686065674, + 0.015280677005648613, + -0.012534720823168755, + -0.026371924206614494, + -0.08539991825819016, + -0.008157303556799889, + 0.008707837201654911, + 0.025754252448678017, + 0.006039089988917112, + 0.024881454184651375, + 0.0014292065752670169, + -0.004891024902462959, + -0.006888389587402344, + 0.030964182689785957, + -0.025834817439317703, + -0.03219952806830406, + -0.01427360251545906, + -0.01678457483649254, + 0.017643945291638374, + 0.0017791648861020803, + -0.013004688546061516, + -0.015468664467334747, + -0.0018832292407751083, + 0.04133033752441406, + 0.0036691080313175917, + 0.0005299729527905583, + 0.016556303948163986, + -0.023928089067339897, + -0.00088706478709355, + -0.0022021362092345953, + -0.03359600529074669, + 0.02141711674630642, + 0.02293444238603115, + 0.005569121800363064, + 0.005495269782841206, + -0.019107559695839882, + 0.027258150279521942, + -0.02121570333838463, + 0.012232597917318344, + -0.012830128893256187, + -0.0003965355863329023, + -0.010386294685304165, + 0.014864419586956501, + -0.016529450193047523, + 0.01643545553088188, + 0.0012705923290923238, + -0.0024102649185806513, + -0.04562718793749809, + -0.0013133930042386055, + -0.007861894555389881, + -0.011460507288575172, + 0.007109946105629206, + 0.0004489873826969415, + -0.01016473863273859, + -0.021255984902381897, + -0.036012984812259674, + -0.0004812976694665849, + 0.01289055310189724, + 0.003497905330732465, + 0.00030065368628129363, + -0.007861894555389881, + -0.02435777522623539, + -0.00369596341624856, + -1.6194491763599217e-05, + 0.003318310482427478, + 0.0076470524072647095, + -0.00733150215819478, + 0.020786017179489136, + -0.012286309152841568, + 0.0010003607021644711, + -0.02702987939119339, + -0.013911055400967598, + -0.0038168122991919518, + 0.0017103481804952025, + -0.031850408762693405, + 0.014609294012188911, + -0.0036053266376256943, + -0.007579913828521967, + -0.016623442992568016, + -0.017617089673876762, + -0.030507642775774002, + -0.00589474244043231, + 0.024075794965028763, + -0.013467942364513874, + -0.01785878837108612, + -0.03448222950100899, + 0.01569693349301815, + -0.012568289414048195, + 0.028063809499144554, + -0.0013385697966441512, + 0.014958413317799568, + -0.0376243032515049, + 0.007895464077591896, + -0.022692745551466942, + 0.022437619045376778, + 0.0013822097098454833, + 0.01979237049818039, + -0.0271641556173563, + -0.009782049804925919, + -0.00617336668074131, + -0.003679178887978196, + -0.01332695223391056, + -0.015670079737901688, + -0.004847384989261627, + -0.017482813447713852, + -0.006492273416370153, + -0.06794396042823792, + 0.010668275877833366, + 0.017482813447713852, + -0.0016448883106932044, + -0.03233380615711212, + 0.02242419123649597, + 0.003534831339493394, + 0.0009642738150432706, + 0.004666111897677183, + -0.013723067939281464, + -0.03072248585522175, + -0.009526924230158329, + 0.01019830722361803, + -0.008506422862410545, + -0.01587149314582348, + -0.012293022125959396, + 0.011534360237419605, + -0.005968594923615456, + 0.024720322340726852, + -0.0006210292922332883, + 0.006022305227816105, + 0.004961520433425903, + -0.0007259328849613667, + 0.0002456842048559338, + -0.028708336874842644, + 0.004706394858658314, + -0.0211485642939806, + -0.003296490525826812, + 0.0012412193464115262, + -0.0056731863878667355, + -0.018543599173426628, + 0.0001935471227625385, + -0.024330919608473778, + 0.021860230714082718, + -0.0012512900866568089, + -0.010050603188574314, + 0.027553558349609375, + 0.05132051557302475, + -0.0015492162201553583, + 0.05575164407491684, + -0.03332745283842087, + -0.030534498393535614, + 0.009365792386233807, + -0.013662643730640411, + 0.001943653798662126, + -0.017147121950984, + 0.03268292546272278, + -0.012064752168953419, + 0.00813716184347868, + -0.01623404026031494, + 0.027459563687443733, + 0.0095202112570405, + -0.010097600519657135, + -0.01503897923976183, + 0.012554861605167389, + -0.025928810238838196, + 0.017684228718280792, + 0.020960576832294464, + -0.010473574511706829, + -0.02039661444723606, + 0.042673103511333466, + 0.0052502150647342205, + -0.007304647006094456, + -0.0036388959269970655, + 0.015334387309849262, + -0.01175591628998518, + -0.036147259175777435, + -0.0070159523747861385, + 0.018261617049574852, + -0.0044244141317903996, + -0.043183352798223495, + -0.022894160822033882, + 0.013870772905647755, + 0.035475876182317734, + -0.012762990780174732, + -0.0011497433297336102, + 0.020692024379968643, + -0.004132362548261881, + 0.019738659262657166, + 0.029003744944930077, + 0.014313885010778904, + 0.01616690307855606, + -0.019308974966406822, + 0.015186683274805546, + 0.021725954487919807, + 0.011567928828299046, + -0.015495519153773785, + 6.351912452373654e-05, + -0.022880733013153076, + 0.019604383036494255, + 0.0016532805748283863, + 0.01928211934864521, + -0.00043849702342413366, + 0.009171091951429844, + -0.014313885010778904, + 0.00580074917525053, + 0.017415674403309822, + -0.001983936643227935, + 0.020141489803791046, + 0.01322624459862709, + 0.0007674747030250728, + 4.67476638732478e-06, + 0.01478385366499424, + -0.028090665116906166, + -0.019604383036494255, + -0.007049521431326866, + -0.02564682997763157, + -0.04388159140944481, + -0.014877847395837307, + 0.01295769214630127, + -0.017952781170606613, + 0.011292661540210247, + 0.018315328285098076, + 0.005468414630740881, + -0.01772451028227806, + 0.03364971652626991, + 0.0050555141642689705, + 0.0030413649510592222, + -0.0407395213842392, + 0.020074350759387016, + 0.02117541991174221, + 0.002672104397788644, + -0.007143515162169933, + -0.0021685671526938677, + 0.021779663860797882, + -1.2522866200015415e-05, + 0.007156942505389452, + -0.016287751495838165, + -0.0043606325052678585, + -0.01959095522761345, + -0.0018076987471431494, + 0.000503117626067251, + 0.007237508427351713, + -0.0025713967625051737, + -0.030910473316907883, + 0.001728811184875667, + -0.006576196290552616, + -0.005844389088451862, + 0.0072307949885725975, + 0.10205021500587463, + 0.029540851712226868, + 0.002982618985697627, + -0.00931879598647356, + -0.00827143806964159, + 0.004491552244871855, + 0.009956609457731247, + 0.007519489619880915, + -0.015482091344892979, + -0.04573461040854454, + 0.006968955509364605, + -0.002247454598546028, + 0.025284282863140106, + -0.015777500346302986, + -0.0007376820431090891, + -0.0015366277657449245, + -0.00837214570492506, + 0.012326591648161411, + -0.01830190047621727, + 0.022451046854257584, + 0.027553558349609375, + -0.002331377472728491, + 0.0009844152955338359, + 0.04871555045247078, + -0.032387517392635345, + -0.0024153003469109535, + 0.012434013187885284, + 0.007351643871515989, + 0.001943653798662126, + -0.016730863600969315, + -0.0013226245064288378, + -0.008043168112635612, + -0.0643453449010849, + -0.03467021882534027, + 0.027580413967370987, + -0.015200111083686352, + 0.0015777500811964273, + -0.03625468164682388, + 0.033408015966415405, + -0.01106439158320427, + 0.02489488199353218, + 0.02533799409866333, + -0.008385573513805866, + -0.04049782082438469, + -0.007976029999554157, + -0.019631238654255867, + 0.0009961645118892193, + -0.015670079737901688, + -0.03534160181879997 + ], + "metadata": { + "source": "INSPIRER_Schlussbericht.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 5, + "has_images": true, + "image_count": 29, + "detection_class_prob": 0.6591171622276306, + "coordinates": "CoordinatesMetadata(points=((1122.828857421875, 155.53517150878906), (1122.828857421875, 361.06524658203125), (1358.3359375, 361.06524658203125), (1358.3359375, 155.53517150878906)), system=)", + "links": [], + "last_modified": "2025-05-05T22:58:03", + "_known_field_names": "frozenset({'page_number', 'text_as_html', 'emphasized_text_contents', 'subject', 'data_source', 'links', 'coordinates', 'image_path', 'is_continuation', 'header_footer_type', 'sent_from', 'url', 'parent_id', 'detection_class_prob', 'emphasized_text_tags', 'last_modified', 'category_depth', 'page_name', 'attached_to_filename', 'bcc_recipient', 'orig_elements', 'languages', 'filetype', 'link_texts', 'file_directory', 'sent_to', 'key_value_pairs', 'image_base64', 'cc_recipient', 'link_urls', 'signature', 'image_mime_type', 'filename', 'detection_origin', 'table_as_cells', 'email_message_id', 'link_start_indexes'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "INSPIRER_Schlussbericht.pdf", + "parent_id": "1c51aaba3295e535d31a83c2392f0391", + "text_as_html": "
Projektlaufzeit01.08.2021 - 31.07.2024 (verl\u00e4ngert bis 31.10.2024)
F\u00f6rderkennzeichen165V8744
StichworteStadtentwicklung, Digitale B\u00fcrgerbeteiligung, Partizipation
und Akzeptanz, Augmented Reality, Extended Reality (XR),
AR-Tracking, Point Cloud Matching
ProjektleitungProf. Dr.-Ing. Volker Coors
Beteiligte ProfessorenProf. Dr.-Ing. Volker Coors
Gef\u00f6rderte Ma\u00dfnahmeForschungsprogramm zur Mensch-Technik-nteraktion
F\u00f6rderbereichTechnik zum Mensch bringen
FachhochschuleHochschule f\u00fcr Technik Stuttgart (HFT Stuttgart),
", + "id": "351a57f5-fe09-4ea6-8750-b2c5267a9700", + "processing_timestamp": "2025-05-05T23:07:23.860264", + "chunk_number": 7, + "total_chunks": 19, + "chunking_strategy": "hybrid", + "word_count": 464 + } +} \ No newline at end of file diff --git a/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000008.json b/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000008.json new file mode 100644 index 0000000000000000000000000000000000000000..e10a24c0b373af8cac42e884c71729bb99a30c8f --- /dev/null +++ b/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000008.json @@ -0,0 +1,1570 @@ +{ + "id": "2b86db2d-408b-1992-e1b5-8a9f00000008", + "content": "Regelm\u00e4\u00dfige Jour-Fixe- Meetings, Konsortialtreffen und Workshops f\u00f6rderten den Austausch zwischen den Partnern (AP11.2). Zudem wurde ein Beirat gegr\u00fcndet, um eine externe Perspektive auf die Projektergebnisse zu erm\u00f6glichen. Ein zentraler Bestandteil war der fachliche Austausch und Wissenstransfer (AP11.3). Ergebnisse wurden intern und extern kommuniziert, etwa durch Pr\u00e4sentationen auf Konferenzen und die Einbindung in akademische Lehrveranstaltungen. Die Projektdokumentation (AP11.4) erfolgte kontinuierlich, um den Fortschritt nachvollziehbar festzuhalten. Wichtige Meilensteine waren die Erstellung der Zwischenberichte (D11.1, D11.2) sowie der Projektabschlussbericht (D11.3), der die Ergebnisse zusammenfasst und Empfehlungen f\u00fcr zuk\u00fcnftige Anwendungen gibt. Durch AP11 wurde sichergestellt, dass das Projekt effizient koordiniert, wissenschaftlich fundiert dokumentiert und nachhaltig nutzbar gemacht wird. [IMAGE: l.2]\n\n\n## Wichtige Positionen des zahlenm\u00e4\u00dfigen Nachweises\n\nDer wesentliche Kostenfaktor im Projekt war die Besch\u00e4ftigung wissenschaftlichen Personals. \u00dcber die Projektlaufzeit hinweg war ein wissenschaftlicher Mitarbeiter mit einer 50 %-Stelle angestellt. Im Verlauf des Projekts erfolgte ein Personalwechsel, wobei die Stelle weiterhin in gleicher Kapazit\u00e4t besetzt blieb. F\u00fcr die technische Umsetzung wurden verschiedene Ger\u00e4te eingesetzt, darunter ein iPhone mit LiDAR-Scanner und ein MacBook f\u00fcr die iOS-App-Entwicklung. Diese wurden jedoch nicht aus dem Projektbudget finanziert, sondern anderweitig bereitgestellt. Im Bereich der Reise- und Veranstaltungskosten fielen Ausgaben f\u00fcr zwei Dienstreisen nach Berlin an, die der Teilnahme an Projekttreffen dienten. Zudem wurden Reisekosten f\u00fcr die Teilnahme an der SDSC-Konferenz \u00fcbernommen, um Projektergebnisse zu pr\u00e4sentieren und den wissenschaftlichen Austausch zu f\u00f6rdern. Abweichungen vom urspr\u00fcnglichen Budgetplan traten nicht auf. Die Mittel wurden entsprechend der urspr\u00fcnglichen Planung eingesetzt und erm\u00f6glichten eine effiziente Umsetzung der Projektziele. [IMAGE: 11.3]\n\n\n## Notwendigkeit und Angemessenheit der geleisteten Arbeit\n\nDas Forschungsvorhaben bot die M\u00f6glichkeit, neue digitale Werkzeuge f\u00fcr die Stadtplanung zu entwickeln, die partizipative Prozesse durch AR-Technologien unterst\u00fctzen. Ziel war es, innovative Methoden bereitzustellen, die Stadtverwaltungen und B\u00fcrger*innen eine bessere visuelle und interaktive Entscheidungsgrundlage bieten. Dabei stand nicht der wirtschaftliche Gewinn im Vordergrund, sondern vielmehr die Erprobung neuer Kommunikations- und Beteiligungsformen, die langfristig eine nachhaltigere Stadtentwicklung erm\u00f6glichen. Die Entwicklung und Umsetzung des AR-gest\u00fctzten Beteiligungsprozesses erforderte eine intensive Forschungsbegleitung und enge Zusammenarbeit mit Stadtverwaltungen,\nPlanungsb\u00fcros und B\u00fcrger*innen. Um die Qualit\u00e4t der entwickelten L\u00f6sungen zu gew\u00e4hrleisten, wurde ein interdisziplin\u00e4rer Ansatz verfolgt, der technische, planerische und gesellschaftliche Anforderungen miteinander verband. Ohne die bereitgestellten Mittel w\u00e4re eine derart detaillierte Erforschung, Entwicklung und Erprobung dieser digitalen Werkzeuge nicht m\u00f6glich\ngewesen. Die geleistete Arbeit entsprach dem urspr\u00fcnglichen Projektplan und war f\u00fcr die Erreichung der Ziele essenziell. Insbesondere die Entwicklung der Tracking-Technologien, des AR-Clients und des Stadtmodell-Servers war notwendig, um eine vollst\u00e4ndige und funktionsf\u00e4hige L\u00f6sung zu erstellen. Durch die durchgef\u00fchrten Workshops, Tests und Evaluierungen wurde sichergestellt, dass die Technologie praktikabel, nutzerfreundlich und in realen Planungsprozessen anwendbar ist.", + "embedding": [ + 0.002597189275547862, + 0.003363738302141428, + 5.1192575483582914e-05, + -0.027286456897854805, + -0.0018558555748313665, + 0.017617179080843925, + -0.020629582926630974, + 0.01382477954030037, + 0.0053591192699968815, + -0.035099878907203674, + 0.02413957007229328, + 0.0004492549051064998, + -0.003441065549850464, + 0.01122254692018032, + -0.03230264410376549, + 0.005002741236239672, + 0.05376601964235306, + -0.010227378457784653, + 0.0018844330916181207, + 0.0019113295711576939, + -0.031441960483789444, + -0.005328860599547625, + 0.0033082643058151007, + 0.017724765464663506, + -0.01354909036308527, + 0.02977437898516655, + 0.02310405671596527, + -0.02704438753426075, + -0.01313891913741827, + -0.01060392800718546, + 0.018504763022065163, + -0.009460829198360443, + -0.00743014644831419, + 0.012621162459254265, + -0.01289012748748064, + -0.009158243425190449, + -0.002632490824908018, + -0.004434553440660238, + 0.023413365706801414, + 0.0023769745603203773, + 0.013629780150949955, + -0.0037688661832362413, + -0.001649929559789598, + -0.006821614224463701, + 0.005624721758067608, + 0.014967878349125385, + 0.008606866002082825, + -0.007423422299325466, + -0.02918265573680401, + 0.028375763446092606, + 0.008943072520196438, + 0.031926095485687256, + -0.02305026352405548, + -0.012809437699615955, + -0.017886145040392876, + -0.015936151146888733, + -0.009164967574179173, + 0.04298054054379463, + -0.006485408172011375, + -0.026197150349617004, + -0.01155875250697136, + 0.0018945191986858845, + -0.022808196023106575, + 0.016568217426538467, + -0.018370280042290688, + -0.005059896036982536, + -0.035422634333372116, + 0.005799548700451851, + -0.006737562827765942, + 0.0009304493432864547, + 0.047230180352926254, + 0.02196095697581768, + 0.02834886685013771, + -0.005675152409821749, + 0.02506749890744686, + -0.01846441812813282, + 0.016622010618448257, + -0.015075464732944965, + -0.020938891917467117, + 0.007067044265568256, + -0.0017213732935488224, + 0.0064820460975170135, + -0.010341688059270382, + 0.004874982871115208, + 0.011995820328593254, + -0.001425512251444161, + 0.006458512041717768, + 0.01395926158875227, + 0.0012481637531891465, + 0.012190819717943668, + -0.010590480640530586, + 0.027232663705945015, + -0.01354909036308527, + 0.00014393807214219123, + -0.004444639664143324, + 0.015290636569261551, + 0.003020808333531022, + 0.01605718582868576, + -0.007167906034737825, + -0.011067892424762249, + -0.011605821549892426, + 0.01633959822356701, + -0.016527872532606125, + -0.006519028916954994, + -0.006098771933466196, + -0.025201980024576187, + -0.003755417885258794, + -0.0034242551773786545, + 0.02579370327293873, + -0.032033681869506836, + -0.012735472992062569, + 0.03286747261881828, + -0.02244509384036064, + -0.003239342011511326, + 0.0026997318491339684, + -0.03929572552442551, + 0.022660264745354652, + -0.031011614948511124, + -0.002706455998122692, + 0.0004824552161153406, + 0.02381681278347969, + -0.003782314248383045, + 0.033244021236896515, + 0.00048077417886815965, + 0.02108682319521904, + 0.020400963723659515, + 0.0031099028419703245, + 0.009749965742230415, + -0.0166623555123806, + -0.02945162169635296, + -0.014268570579588413, + -0.00756462849676609, + 0.05196395516395569, + 0.009017037227749825, + 0.0021954234689474106, + 0.019473034888505936, + -0.016756493598222733, + -0.011733579449355602, + -0.034777119755744934, + -0.0469881109893322, + 0.007396525703370571, + 0.027165422216057777, + -0.01605718582868576, + -0.016151322051882744, + -0.008425314910709858, + 0.02080441080033779, + 0.006270236801356077, + -0.0022710696794092655, + 0.010368584655225277, + -0.010260998271405697, + -0.015115809626877308, + -0.024986809119582176, + 0.01270185224711895, + 0.006018082611262798, + -0.020616134628653526, + -0.03157643973827362, + -0.0007644477300345898, + 0.012318577617406845, + -0.004542139358818531, + -0.012661507353186607, + 0.01486029289662838, + 0.0009548242669552565, + 0.0062904092483222485, + 0.006525753065943718, + 0.01422822568565607, + 0.015398222021758556, + 0.013481849804520607, + 0.0020021051168441772, + 0.0002885065332520753, + -0.00688549317419529, + -0.01562684215605259, + -0.006599718239158392, + -0.016151322051882744, + 0.010462721809744835, + -0.012903575785458088, + -0.0032191697973757982, + 0.0024896033573895693, + 0.0011666337959468365, + -0.04311501979827881, + -0.04123226925730705, + 0.008714452385902405, + 0.001143099507316947, + 0.01512925699353218, + 0.01433581206947565, + -0.023251987993717194, + -0.0022878798190504313, + 0.00953479390591383, + 0.026627494022250175, + -0.007120836991816759, + -0.0017230543307960033, + 0.016850629821419716, + -0.011175477877259254, + -0.016084082424640656, + -0.029021278023719788, + -0.6235674619674683, + -0.00019478918693494052, + 0.01862579770386219, + -0.021732337772846222, + 0.01808786764740944, + 0.015667187049984932, + 0.0083311777561903, + -0.005712135229259729, + -0.0054330844432115555, + 0.04607363045215607, + -0.008506004698574543, + 0.0033469279296696186, + 0.003377186367288232, + -0.019271312281489372, + -0.026156805455684662, + -0.014160985127091408, + 0.006999803241342306, + -0.012964092195034027, + 0.015828564763069153, + 0.024502672255039215, + -0.03725159540772438, + -0.002358483150601387, + -0.0022693886421620846, + 0.0024055519606918097, + -0.013078402727842331, + -0.004088261630386114, + 0.022902334108948708, + -0.023198194801807404, + 0.006361012347042561, + -0.007477215025573969, + -0.021611303091049194, + 0.020723721012473106, + -0.023789916187524796, + 0.015963047742843628, + 0.048870865255594254, + 0.02572646178305149, + -0.018491314724087715, + 0.016810286790132523, + 0.007887385785579681, + 0.025161636993288994, + -0.02775714360177517, + -0.004242916125804186, + 0.006767821032553911, + 0.014712362550199032, + -0.002336629666388035, + -0.007315836381167173, + 0.04397570714354515, + -0.0002763190714176744, + -0.0009405355085618794, + -0.03211437165737152, + 0.0036881768610328436, + -0.005456618964672089, + -0.01823579892516136, + -0.0005059895920567214, + 0.009070830419659615, + 0.0006270236917771399, + -0.0019264587899670005, + -0.007349457126110792, + -0.005964289419353008, + 0.010072723031044006, + -0.0015373006463050842, + -0.0023836984764784575, + -0.010664445348083973, + -0.028806105256080627, + -0.03281367942690849, + 0.017307870090007782, + -0.01917717419564724, + -7.921847281977534e-05, + 0.010146688669919968, + -0.02201475016772747, + -0.004458087962120771, + 0.02824128046631813, + -0.014564432203769684, + -0.02069682441651821, + 0.024274053052067757, + -0.0034292982891201973, + 0.018760278820991516, + -0.014833396300673485, + -0.010523239150643349, + 0.018007177859544754, + 0.0028543865773826838, + -0.017886145040392876, + -0.001563356607221067, + 0.013199436478316784, + 0.034615740180015564, + -0.008263936266303062, + -0.020064758136868477, + -0.02824128046631813, + 0.011383925564587116, + 0.005180930253118277, + 0.017133044078946114, + 0.009669276885688305, + -0.012029441073536873, + -0.010361860506236553, + 0.0019130106084048748, + 0.04507846385240555, + 0.005527222063392401, + 0.02770335227251053, + -0.018397176638245583, + -0.03856952115893364, + -0.017388559877872467, + -0.007376353722065687, + 0.040183309465646744, + 0.009749965742230415, + 0.00950789824128151, + 0.01120237447321415, + -0.00821686815470457, + -0.0015129257226362824, + 0.045750875025987625, + -0.01491408608853817, + -0.027515076100826263, + -0.008270660415291786, + -0.0022424920462071896, + -0.011343580670654774, + -0.0007900834316387773, + -0.020306825637817383, + 0.00458920793607831, + -0.00295020523481071, + 0.023897502571344376, + 0.013091851025819778, + 0.01026772242039442, + -0.0023383107036352158, + 0.020468205213546753, + -0.011888233944773674, + -0.0084656598046422, + 0.004972482565790415, + 0.006236616056412458, + -0.015344428829848766, + -0.019526828080415726, + -0.016205115243792534, + 0.023615090176463127, + -0.01076530758291483, + 0.01798028126358986, + -0.015613393858075142, + 0.03235643729567528, + 0.0015524298651143909, + 0.018706485629081726, + -0.00701997522264719, + -0.0009287683060392737, + -0.024005088955163956, + -0.0057827383279800415, + 0.006182823330163956, + 0.02120785601437092, + -0.05166809633374214, + -0.01108806487172842, + -0.04634259641170502, + -0.008956520818173885, + 0.01835683174431324, + 0.010341688059270382, + 0.020064758136868477, + -0.02190716564655304, + -0.013569262810051441, + 0.003479729173704982, + 0.020414412021636963, + 0.02408577874302864, + 0.013354090973734856, + -0.00906410627067089, + -0.006872044876217842, + -0.013118747621774673, + -0.029908860102295876, + -9.573983334121294e-06, + 0.006572821643203497, + -0.03257161006331444, + -0.01780545525252819, + 0.0014330769190564752, + -0.010745135135948658, + 0.02217612974345684, + 0.021544063463807106, + -0.02217612974345684, + -0.038542624562978745, + 0.02092544361948967, + 0.01715994067490101, + -0.01676994189620018, + 0.01671614870429039, + -4.446845923666842e-05, + 0.012560646049678326, + -0.02677542343735695, + -0.008539625443518162, + 0.006781269330531359, + -0.005661704111844301, + -0.00029985347646288574, + 0.012002544477581978, + -0.012379094958305359, + -0.01127634011209011, + 0.009790310636162758, + -0.004525328986346722, + 0.009568414650857449, + 0.0031721009872853756, + 0.014658569358289242, + 0.028752313926815987, + -0.0016474080039188266, + 0.02430094964802265, + -0.006081961560994387, + 0.012244611978530884, + -0.00023975670046638697, + -0.0013296935940161347, + -0.010180309414863586, + -0.004518604837357998, + -0.0054801530204713345, + 0.033566780388355255, + 0.03238333389163017, + -0.007490663323551416, + 0.021436477079987526, + 0.0022357681300491095, + 0.0035940392408519983, + -0.032087475061416626, + 0.0029586104210466146, + -0.015156153589487076, + 0.02966679260134697, + 0.01242616306990385, + 0.01343478076159954, + -0.007517559919506311, + -0.017576834186911583, + 0.0009514621924608946, + 0.0020390877034515142, + 0.014214778319001198, + -0.010590480640530586, + 0.0022105525713413954, + -0.00044505231198854744, + 0.03015092946588993, + 0.001981932669878006, + -0.001697838888503611, + 0.030339203774929047, + -0.012076509185135365, + -0.0009985310025513172, + -0.0155730489641428, + 0.02818748727440834, + 0.04015641286969185, + 0.01900234818458557, + 0.002577016828581691, + -0.005426360294222832, + 0.021073374897241592, + -0.003846193430945277, + 0.014080295339226723, + 0.018773727118968964, + 0.0234940554946661, + 0.027125077322125435, + -0.008485832251608372, + 0.026345079764723778, + 0.005523859988898039, + 0.014873741194605827, + 0.008472383953630924, + -0.0038428313564509153, + 0.004357226192951202, + 0.009649104438722134, + -0.025255773216485977, + 0.03577229008078575, + 0.044110190123319626, + -0.01120237447321415, + 0.020508548244833946, + 0.0003227574925404042, + 0.022740954533219337, + -0.007504111621528864, + -0.007571352645754814, + 0.016689252108335495, + -0.0016221925616264343, + 0.02244509384036064, + 0.010375308804214, + 0.015088913030922413, + 0.031549543142318726, + 0.01270185224711895, + 0.005866789724677801, + 0.013945813290774822, + 0.003674728563055396, + -0.00906410627067089, + -0.006176099181175232, + -0.010382032953202724, + -0.028994381427764893, + -0.021947508677840233, + -0.014483742415904999, + 0.03103851154446602, + -0.0017953385831788182, + -0.013259953819215298, + 0.0019583983812481165, + -0.0014952749479562044, + -0.00150536117143929, + 0.015559600666165352, + 0.00882203783839941, + 0.015599945560097694, + 0.02135578729212284, + -0.02244509384036064, + -0.015223395079374313, + -0.012009268626570702, + 0.024664051830768585, + -0.0020626219920814037, + 0.007941178977489471, + -0.000992647372186184, + 0.0028762398287653923, + -0.024610258638858795, + -0.01699856109917164, + -0.030688857659697533, + -0.00755118066444993, + -0.015640290454030037, + -0.016702700406312943, + 0.01103427167981863, + -0.014577880501747131, + 0.02140958048403263, + -0.010166861116886139, + -0.005180930253118277, + -0.013784434646368027, + 0.008378246799111366, + -0.011101513169705868, + 0.000731247419025749, + -0.0393226221203804, + 0.03735917806625366, + -0.01512925699353218, + 0.0003271701862104237, + -0.013206160627305508, + -0.0035536945797502995, + -0.02797231636941433, + 0.006946010049432516, + -0.021813027560710907, + 0.004404294770210981, + 0.02151716686785221, + 0.0029972740449011326, + -0.0012817842653021216, + 0.0003147725947201252, + 0.006250064354389906, + 0.04634259641170502, + -0.006572821643203497, + -0.006236616056412458, + -0.03719780221581459, + 0.005268343724310398, + 0.0019247777527198195, + 0.040398478507995605, + 0.01819545403122902, + 0.0008867426076903939, + 0.019150277599692345, + -0.013811331242322922, + -0.004801017697900534, + -0.017496146261692047, + -0.03136127069592476, + 0.024664051830768585, + -0.002427405212074518, + 0.018598901107907295, + -0.009339794516563416, + 0.033459194004535675, + -0.00810928177088499, + 0.008882555179297924, + 0.004340415820479393, + 0.0047304145991802216, + 0.010180309414863586, + 0.008378246799111366, + 0.01726752519607544, + 0.008586694486439228, + -0.013293574564158916, + 0.008237040601670742, + 0.05610601231455803, + 0.014160985127091408, + -0.02660059742629528, + 0.04462122172117233, + 0.015963047742843628, + 0.002577016828581691, + -0.025228876620531082, + 0.020858202129602432, + 0.034669533371925354, + 0.013481849804520607, + 0.0146182244643569, + -0.00700652739033103, + 0.008559797890484333, + 0.01401305478066206, + -0.0026543440762907267, + 0.034938499331474304, + 0.000989285297691822, + 0.022956127300858498, + 0.03109230473637581, + 0.014564432203769684, + -0.010025654919445515, + 0.015599945560097694, + -0.016783390194177628, + -0.0036881768610328436, + 0.017294421792030334, + -0.0038697279524058104, + -0.00761842168867588, + 0.00013721396680921316, + 0.005093516781926155, + -0.00947427749633789, + -0.009857552126049995, + 0.021167512983083725, + -0.018867865204811096, + 0.0196613110601902, + -0.00917841587215662, + 0.003610849380493164, + -0.010550135746598244, + -0.03343229740858078, + -0.017361663281917572, + -0.0018642607610672712, + -0.0007972278399392962, + -0.026237495243549347, + -0.006414805073291063, + -0.020333722233772278, + -0.016729597002267838, + -0.011995820328593254, + 0.01289012748748064, + -0.001807105727493763, + -0.01348857395350933, + -0.021059926599264145, + 0.005866789724677801, + 0.014981326647102833, + 0.004948948044329882, + 0.013293574564158916, + -0.023776467889547348, + -0.002948524197563529, + 0.0031149459537118673, + -0.019109932705760002, + -0.007288940250873566, + -0.0076453182846307755, + -0.010314791463315487, + -0.023480607196688652, + 0.013078402727842331, + -0.0284026600420475, + -0.003513349685817957, + 0.005678514484316111, + 0.007961351424455643, + -0.006209719460457563, + -0.0040781754069030285, + 0.012674955651164055, + -0.016016840934753418, + -0.019742000848054886, + 0.01013324037194252, + -0.010556859895586967, + 0.02517508529126644, + 0.017563387751579285, + -0.012284956872463226, + -0.0007022497011348605, + -0.01239926740527153, + -0.010987202636897564, + 0.00368145271204412, + 0.020293377339839935, + 0.014981326647102833, + -0.0267619751393795, + 0.015290636569261551, + -0.025148188695311546, + 0.004740500822663307, + 0.025054050609469414, + -0.013643228448927402, + 0.009023761376738548, + -0.00026686329510994256, + 0.011424270458519459, + 0.03348609060049057, + -0.0010750178480520844, + 0.02080441080033779, + 0.03921503573656082, + -0.0058365315198898315, + 0.0012725386768579483, + -0.032033681869506836, + 0.03975296393036842, + 0.02321164309978485, + -0.008048765361309052, + 0.022633370012044907, + 0.010671169497072697, + -0.003540246281772852, + -0.026345079764723778, + 0.0007867214153520763, + 0.018719933927059174, + 0.01409374363720417, + -0.008774969726800919, + 0.00042866228614002466, + -0.008230316452682018, + -0.017307870090007782, + -0.0016415244899690151, + 0.0033486089669167995, + -0.005876875948160887, + 0.014322363771498203, + -0.017361663281917572, + -0.0018104678019881248, + 0.027837833389639854, + 0.01270185224711895, + 0.01955372467637062, + -0.02988196536898613, + -0.016420288011431694, + 0.0007257841061800718, + -0.02583404816687107, + 0.030446790158748627, + -0.0026526630390435457, + 0.0021651647984981537, + -0.023830261081457138, + -0.014295467175543308, + -0.0036982628516852856, + -0.00714100943878293, + 0.019930275157094002, + -0.02239130064845085, + 0.023722676560282707, + 0.025148188695311546, + 0.007443594746291637, + 0.0034864533226937056, + 0.015922702848911285, + 0.004901879467070103, + -0.0051103271543979645, + -0.007847041822969913, + 0.006505580618977547, + 0.004273174796253443, + -0.020777514204382896, + 0.0245833620429039, + 0.009225484915077686, + 0.020521996542811394, + 0.013031333684921265, + -0.009447380900382996, + 0.012197543866932392, + 0.043410882353782654, + -0.02666783705353737, + -0.01163271814584732, + -0.007490663323551416, + -0.027515076100826263, + -0.013421332463622093, + 0.016622010618448257, + 0.026533355936408043, + 0.007436870597302914, + -0.03528815135359764, + 0.01616477034986019, + 0.01874683052301407, + 0.013986158184707165, + -0.003160333726555109, + -0.007813421078026295, + 0.030688857659697533, + -0.01873338222503662, + 0.00899014063179493, + 0.008653935045003891, + 0.017469249665737152, + -0.02278129942715168, + -0.00041731534292921424, + -0.047283973544836044, + 0.009164967574179173, + 0.030877133831381798, + 0.0010556859197095037, + 0.005604549311101437, + 0.008223592303693295, + -0.013394435867667198, + 0.008364798501133919, + 0.006508942693471909, + 0.008136178366839886, + -0.01311202347278595, + 0.004827914293855429, + -0.022243371233344078, + -0.010812375694513321, + -0.010893065482378006, + -0.0031149459537118673, + 0.015586497262120247, + 0.020414412021636963, + 0.01438960526138544, + 0.018585452809929848, + 0.030392996966838837, + 0.0058836000971496105, + 0.006572821643203497, + 0.017240628600120544, + -0.02486577443778515, + 0.03041989356279373, + -0.002713180147111416, + 0.023184746503829956, + 0.014577880501747131, + -0.02945162169635296, + -0.021449925377964973, + -0.06605769693851471, + 0.005789462476968765, + 0.004595932085067034, + 0.017657523974776268, + 0.002461025957018137, + -0.004219381604343653, + -0.01633959822356701, + 0.007255319505929947, + 0.03249092027544975, + -0.04010261967778206, + -0.007201526314020157, + 0.03327091783285141, + 0.017657523974776268, + -0.01917717419564724, + -0.0009127985103987157, + 0.003156971652060747, + -0.017294421792030334, + 0.017630627378821373, + 0.0012498447904363275, + 0.008943072520196438, + 0.03257161006331444, + -0.003543608356267214, + 0.0002138058189302683, + 0.02447577565908432, + -0.003926882985979319, + 0.04529363289475441, + 0.0004648044123314321, + -0.03491160273551941, + -0.0004124823899473995, + -0.026896458119153976, + 0.003674728563055396, + 0.021678544580936432, + -0.007376353722065687, + 0.029075071215629578, + -0.011437718756496906, + 0.00236352626234293, + -0.00152637402061373, + -0.0008951477357186377, + 0.010872893035411835, + -0.006317305378615856, + 0.008136178366839886, + 0.021073374897241592, + -0.00535575719550252, + -0.018639246001839638, + -0.002153397537767887, + -0.0014002968091517687, + 0.00863376259803772, + -0.009433932602405548, + -0.016702700406312943, + -0.01830303855240345, + -0.02119440771639347, + 0.01562684215605259, + -0.009151519276201725, + 0.005819721147418022, + -0.008432039059698582, + -0.005991186015307903, + 0.006448425818234682, + -0.004767396952956915, + 0.03410470858216286, + 0.0015003180596977472, + 0.015963047742843628, + -0.017939936369657516, + -0.02087165042757988, + 0.011726855300366879, + 0.0007627667509950697, + 0.014712362550199032, + -0.009191864170134068, + -0.006572821643203497, + -0.024731293320655823, + 0.0006635860190726817, + -0.028483347967267036, + 0.013851676136255264, + 0.026842664927244186, + -0.02310405671596527, + 0.013172539882361889, + 0.0018272780580446124, + -0.004992655012756586, + -0.013703744858503342, + 0.04784879833459854, + 0.0012204267550259829, + -0.03284057602286339, + -0.00045429798774421215, + 0.004468174185603857, + 0.014187881723046303, + -0.025228876620531082, + 0.0018524935003370047, + 0.02929024212062359, + 0.0024055519606918097, + 0.00257533579133451, + -0.0032544713467359543, + -0.00797479972243309, + -0.002496327506378293, + -0.0021332253236323595, + -0.0007711718790233135, + 0.030177826061844826, + -0.02764955908060074, + -0.007847041822969913, + 0.0035940392408519983, + 0.0062063573859632015, + -0.003192273434251547, + -0.04523984342813492, + -0.018827520310878754, + 0.0020021051168441772, + 0.01917717419564724, + -0.031979888677597046, + -0.017832351848483086, + -0.013475125655531883, + -0.016675803810358047, + -0.002566930605098605, + 0.018666140735149384, + -0.0017087656306102872, + 0.0013784434413537383, + -0.0006375301163643599, + -0.012722024694085121, + -0.012795989401638508, + 0.02561887539923191, + 0.00013143543037585914, + -0.010341688059270382, + 0.005221274681389332, + 0.013670125044882298, + -0.03125368431210518, + 0.006273598875850439, + -0.022633370012044907, + 0.014524087309837341, + 0.009790310636162758, + -0.04333019256591797, + -0.013999606482684612, + -0.034992292523384094, + -0.06089358031749725, + -0.008048765361309052, + -0.02310405671596527, + -0.01324650552123785, + 0.006545925512909889, + 0.0008741348865441978, + 0.011531855911016464, + 0.022525783628225327, + -0.0025820599403232336, + 0.01403995044529438, + -0.03749366104602814, + -0.04123226925730705, + 0.006095409858971834, + -0.018101315945386887, + 0.01812821254134178, + -0.0019903378561139107, + -0.04445984587073326, + 0.006495494395494461, + 0.03426608815789223, + -0.0040781754069030285, + 0.01562684215605259, + 0.004367312416434288, + -0.0018827520543709397, + -0.011760476045310497, + 0.008680831640958786, + 0.0322219580411911, + 0.002882963977754116, + 0.0005673471605405211, + 0.024435432627797127, + -0.01928476057946682, + 0.0003307423903606832, + 0.008815313689410686, + -0.010025654919445515, + -0.04069434106349945, + -0.009427208453416824, + -0.0169313196092844, + 0.007954627275466919, + 0.004636276978999376, + 0.007571352645754814, + -0.030124032869935036, + -0.010960306040942669, + -0.011659614741802216, + 0.02387060597538948, + 0.003266238607466221, + -0.009568414650857449, + 0.004716966301202774, + 0.01234547421336174, + -0.013945813290774822, + -0.013522193767130375, + -0.0022710696794092655, + -0.024179914966225624, + 0.01270185224711895, + 0.021167512983083725, + -0.014779603108763695, + -0.0016591752646490932, + -0.028994381427764893, + 0.013185988180339336, + -0.023144401609897614, + -0.0037049870006740093, + 0.007652042433619499, + -0.01720028556883335, + -0.015344428829848766, + 0.00695273419842124, + 0.008754797279834747, + 0.018935106694698334, + 0.008768245577812195, + -0.011847889982163906, + 0.0028661538381129503, + -0.028375763446092606, + -0.013078402727842331, + -0.006350926123559475, + -0.019459586590528488, + -0.0065660979598760605, + 0.00838497094810009, + -0.019849585369229317, + -0.003943692892789841, + -0.01676994189620018, + -0.004592570010572672, + -0.03211437165737152, + 0.009440656751394272, + 0.21215926110744476, + -0.005026275757700205, + -0.02151716686785221, + 0.016675803810358047, + -0.02387060597538948, + 0.011699958704411983, + 0.0056079113855957985, + 0.0010565264383330941, + -0.00827738456428051, + 0.03015092946588993, + -0.015062016434967518, + 0.02140958048403263, + 0.005191016476601362, + 0.0005816359189338982, + 0.02015889436006546, + -0.01149823609739542, + -0.028268177062273026, + 0.007813421078026295, + 0.003333479631692171, + 0.04211985319852829, + 0.035207461565732956, + -0.013878571800887585, + 0.012997712939977646, + -0.0038798139430582523, + 0.03916124254465103, + -0.012547197751700878, + -0.018276143819093704, + 0.0001792396797100082, + 0.02738059312105179, + 0.01043582521378994, + -0.004579121712595224, + -0.002457663882523775, + -0.0079210065305233, + -0.016635458916425705, + 0.00611894391477108, + -0.006112220231443644, + 0.009138071909546852, + -0.0004761513555422425, + 0.01155875250697136, + -0.014550983905792236, + -0.004942223895341158, + -0.007409974001348019, + -0.0014650163939222693, + -0.0377088338136673, + 0.018773727118968964, + 0.021100271493196487, + -0.00140281836502254, + -0.004293347243219614, + 0.0031166269909590483, + -0.009252381511032581, + -0.02775714360177517, + 0.002608956303447485, + 0.018706485629081726, + 0.017563387751579285, + -0.029075071215629578, + 0.002361845225095749, + 0.011814269237220287, + -0.012614438310265541, + 0.0077192834578454494, + 0.026748526841402054, + -0.031011614948511124, + -0.008169799111783504, + 0.004690069705247879, + 0.02092544361948967, + -0.020306825637817383, + 0.004911965690553188, + -0.011659614741802216, + -0.003644470125436783, + -0.005564204882830381, + -0.015223395079374313, + 0.003025851445272565, + -0.026035770773887634, + -0.022216474637389183, + 0.006835062522441149, + -0.009333070367574692, + -0.033459194004535675, + 0.012762369588017464, + 0.02206854335963726, + 0.006431615445762873, + 0.02426060475409031, + 0.0003416690742596984, + -0.011834441684186459, + -0.00257533579133451, + -0.010005482472479343, + -0.0066400631330907345, + -0.023897502571344376, + 0.03098471835255623, + 0.0028039556927978992, + 0.008398419246077538, + -0.018814072012901306, + -0.02196095697581768, + 0.004881707020103931, + -0.013078402727842331, + -0.038058485835790634, + 0.00581635907292366, + -0.011706682853400707, + 0.009185140021145344, + -0.006320667453110218, + -0.017953384667634964, + -0.011464615352451801, + -0.01874683052301407, + 0.05895703658461571, + 0.01438960526138544, + -0.011518407613039017, + -0.0031519285403192043, + -0.0032342991326004267, + -0.006781269330531359, + 0.03281367942690849, + 0.006102134007960558, + -0.007826869376003742, + 0.01726752519607544, + -0.008674107491970062, + 0.01600339263677597, + -0.007726007606834173, + 0.009440656751394272, + 0.029263345524668694, + 0.009003588929772377, + -0.011814269237220287, + 0.007436870597302914, + -0.009091002866625786, + -0.03577229008078575, + -0.018504763022065163, + -0.0030762823298573494, + 0.007423422299325466, + -0.0158420130610466, + -0.03397022560238838, + -0.01551925577223301, + 0.010260998271405697, + -0.008774969726800919, + -0.0023046901915222406, + 0.026950251311063766, + -0.010328239761292934, + 0.01120237447321415, + -0.001839045318774879, + 0.011020823381841183, + -0.007853765971958637, + 0.00025215427740477026, + -0.027125077322125435, + -0.010556859895586967, + 0.005154033657163382, + 0.008136178366839886, + 0.013091851025819778, + -0.006683769635856152, + 0.003340203780680895, + 0.016366494819521904, + 0.009279278106987476, + 0.0001958398352144286, + 0.007833593524992466, + -0.018477866426110268, + -0.01862579770386219, + 0.0009464190807193518, + -0.014174433425068855, + -0.004928776063024998, + -0.025981977581977844, + 0.030554376542568207, + 0.016205115243792534, + -0.014349260367453098, + -0.03512677550315857, + 0.018719933927059174, + -0.010287894867360592, + -0.020064758136868477, + -0.013569262810051441, + 0.010220654308795929, + -0.009622207842767239, + -0.01726752519607544, + -0.0002529947960283607, + -0.17063112556934357, + 0.02436819113790989, + 0.0037016249261796474, + -0.023588193580508232, + 0.02584749646484852, + -0.0011355348397046328, + 0.009084278717637062, + 0.002570292679592967, + -0.02288888581097126, + 0.005617997609078884, + 0.009481001645326614, + 0.0016297572292387486, + -0.02212233655154705, + 0.002916584722697735, + 0.00035553754423744977, + 0.0029317138250917196, + -0.032033681869506836, + 0.021073374897241592, + 0.019930275157094002, + 0.02775714360177517, + 0.020844753831624985, + -0.0146182244643569, + 0.02114061638712883, + -0.01032151561230421, + 0.013347366824746132, + 0.013623056001961231, + -0.023413365706801414, + -0.0065123047679662704, + -0.016850629821419716, + -0.010577032342553139, + 0.010583756491541862, + 0.01343478076159954, + 0.05868807062506676, + -0.00923220906406641, + -0.0025164997205138206, + -0.019984068349003792, + -0.00958858709782362, + 0.01835683174431324, + -0.005318774376064539, + 0.056805320084095, + 0.0023433538153767586, + 0.019244415685534477, + 0.00700652739033103, + -0.010698066093027592, + -0.038488831371068954, + 0.031172994524240494, + 0.02818748727440834, + -0.02381681278347969, + -0.026412321254611015, + -0.003121670102700591, + 0.014026503078639507, + -0.03760124742984772, + 0.001324650482274592, + 0.006371098570525646, + 0.0023080522660166025, + 0.017670972272753716, + -0.002871196949854493, + 0.006044978741556406, + 0.008458935655653477, + 0.017670972272753716, + -0.0009405355085618794, + 0.0029720584861934185, + 0.008230316452682018, + 0.004938861820846796, + -0.011552028357982635, + -0.047552935779094696, + -0.003296497045084834, + 0.019634414464235306, + -0.0004669057088904083, + 0.010691341944038868, + -0.020616134628653526, + -0.02278129942715168, + 0.012984264642000198, + 0.004911965690553188, + 0.006747649051249027, + 0.005019551608711481, + -0.00011662136239465326, + 0.005069982260465622, + 0.016541320830583572, + -0.015855461359024048, + -0.016783390194177628, + 0.05360464006662369, + -0.002457663882523775, + -0.03665987029671669, + -0.019190622493624687, + -0.020750617608428, + -0.012560646049678326, + 0.026358528062701225, + 0.026250943541526794, + 0.007436870597302914, + 0.01103427167981863, + -0.030796444043517113, + -0.03294816240668297, + 0.011901682242751122, + 0.01780545525252819, + 0.016353046521544456, + -0.016366494819521904, + -0.011430994607508183, + -0.022969575598835945, + -0.017899593338370323, + 0.01807441934943199, + 0.015156153589487076, + -0.01627235673367977, + 0.0284026600420475, + 0.005954203195869923, + 0.006690493784844875, + 0.011229271069169044, + 0.017886145040392876, + 0.0464232861995697, + -0.0030308945570141077, + -0.04327639937400818, + -0.008001696318387985, + -0.002708137035369873, + 0.003936969209462404, + 0.015801668167114258, + 0.03501918911933899, + 0.018450969830155373, + -0.004000848159193993, + -0.0006068513030186296, + -0.004121881909668446, + 0.05653635412454605, + -0.005812996998429298, + -0.029101967811584473, + 0.01103427167981863, + -0.030635064467787743, + -0.01923096738755703, + -0.09004934132099152, + -0.007040147669613361, + 0.020414412021636963, + 0.024892671033740044, + 0.009682725183665752, + 0.014241673983633518, + -0.012110129930078983, + -0.003437703475356102, + -0.004928776063024998, + 0.020723721012473106, + -0.03273298963904381, + -0.028053006157279015, + -0.004669897258281708, + -0.01994372345507145, + 0.019526828080415726, + -0.011545304208993912, + -0.01807441934943199, + -0.011047719977796078, + -0.012500128708779812, + 0.027353696525096893, + 0.008001696318387985, + -0.023198194801807404, + 0.011121685616672039, + -0.022216474637389183, + -0.022189578041434288, + 0.00038978850352577865, + -0.022377852350473404, + 0.020037861540913582, + 0.008378246799111366, + -0.0007573033799417317, + 0.00232150056399405, + -0.01901579648256302, + 0.027084732428193092, + -0.026909906417131424, + 0.010872893035411835, + -0.01300443708896637, + -0.009844103828072548, + -0.01637994311749935, + 0.03327091783285141, + -0.023910950869321823, + 0.010556859895586967, + 0.006519028916954994, + 0.018585452809929848, + -0.04507846385240555, + 0.009111175313591957, + -0.01867958903312683, + 0.0032326180953532457, + -0.002612318377941847, + -0.010650997050106525, + 0.003856279654428363, + -0.033566780388355255, + -0.018921658396720886, + 0.002333267591893673, + 0.011350304819643497, + 0.014564432203769684, + -0.005201102700084448, + -0.0037217973731458187, + -0.019795792177319527, + -0.008996864780783653, + -0.025632323697209358, + -0.019096484407782555, + -0.005930669140070677, + 0.0021332253236323595, + 0.03321712464094162, + -0.001845769351348281, + -0.008815313689410686, + -0.021611303091049194, + -0.010819099843502045, + 0.012439611367881298, + -0.008156350813806057, + -0.02469094842672348, + 0.005954203195869923, + -0.023036815226078033, + -0.010772031731903553, + -0.022861989215016365, + -0.016097530722618103, + -0.036632973700761795, + -0.018168557435274124, + 0.03232954069972038, + -0.02686956152319908, + -0.017630627378821373, + -0.030500583350658417, + 0.023426814004778862, + -0.011968923732638359, + 0.01382477954030037, + 0.0033822294790297747, + 0.004320243373513222, + -0.025336463004350662, + -0.0004761513555422425, + -0.015250291675329208, + 0.0021382684353739023, + 0.0028409382794052362, + 0.02103303000330925, + -0.025336463004350662, + -0.005739031825214624, + 0.0213154423981905, + 0.00695273419842124, + -0.0005892005283385515, + -0.03195299208164215, + -0.004031106363981962, + -0.01300443708896637, + 0.006791355554014444, + -0.049355000257492065, + 0.024112673476338387, + 0.003775590332224965, + -0.009017037227749825, + -0.0146182244643569, + 0.012197543866932392, + 0.015989944338798523, + 0.01157892495393753, + 0.0033502900041639805, + -0.0023736124858260155, + -0.04311501979827881, + 0.009971861727535725, + 0.006764458958059549, + -0.018114764243364334, + -0.02512129209935665, + -0.003165376838296652, + 0.017173388972878456, + -0.00730911223217845, + 0.01798028126358986, + 0.010254274122416973, + 0.00243076728656888, + 0.016151322051882744, + 0.001434757956303656, + -0.001544024795293808, + -0.015478911809623241, + 0.0048346384428441525, + -0.005987823940813541, + -0.009797034785151482, + -0.0011943707941100001, + 0.016016840934753418, + -0.011652890592813492, + -0.0044379155151546, + -0.01896200329065323, + 0.018773727118968964, + -0.0029636535327881575, + 0.005806272849440575, + 0.005396101623773575, + 0.05470739305019379, + 0.0044547258876264095, + 0.0732121542096138, + -0.04440605267882347, + -0.019432689994573593, + 0.016191666945815086, + -0.03098471835255623, + 0.004525328986346722, + -0.025444049388170242, + 0.014940982684493065, + 0.0002983825688716024, + 0.007813421078026295, + -0.029075071215629578, + 0.0004580802924465388, + 0.013697020709514618, + -0.006845148280262947, + -0.004374036565423012, + 0.02261992171406746, + -0.006112220231443644, + 0.024704396724700928, + -0.003027532482519746, + 0.007813421078026295, + -0.0226737130433321, + 0.029693689197301865, + -0.003009041305631399, + 0.0046564494259655476, + -0.011417546309530735, + 0.001079220324754715, + -0.019352002069354057, + -0.014577880501747131, + -0.011182202026247978, + 0.013945813290774822, + -0.019029242917895317, + -0.027084732428193092, + -0.019795792177319527, + 0.0029787826351821423, + 0.027138525620102882, + -0.0006295451894402504, + 0.011464615352451801, + 0.008297557011246681, + -0.008916175924241543, + 0.017469249665737152, + 0.01976889558136463, + 0.012311853468418121, + 0.002393784699961543, + -0.03776262700557709, + 0.018666140735149384, + 0.026291286572813988, + 0.014362708665430546, + -0.024126121774315834, + -0.0009178416221402586, + -0.02037406712770462, + 0.015707531943917274, + 0.006959458347409964, + 0.01568063534796238, + -0.00755118066444993, + 0.00972306914627552, + -0.012412714771926403, + 0.015371325425803661, + 0.01180082093924284, + 0.011773924343287945, + 0.006616528611630201, + 0.024327846243977547, + 0.005113689228892326, + -0.006855234503746033, + 0.007013251539319754, + -0.02578025497496128, + -0.03649849444627762, + 0.01005255151540041, + -0.01828959211707115, + -0.04470191150903702, + -0.006855234503746033, + 0.018814072012901306, + -0.004256364423781633, + 0.01835683174431324, + 0.006959458347409964, + -0.006297132931649685, + -0.00904393382370472, + 0.024489223957061768, + 0.008694279938936234, + -0.010361860506236553, + -0.03614883869886398, + 0.019136829301714897, + 0.022539231926202774, + 0.006387908477336168, + 0.011343580670654774, + -0.007678938563913107, + 0.037063319236040115, + -0.01116875372827053, + 0.014967878349125385, + -0.025417152792215347, + -0.0024862412828952074, + -0.0248523261398077, + 0.0014179475838318467, + 0.01239926740527153, + -0.007457043044269085, + -0.006791355554014444, + -0.013582711108028889, + -0.016595114022493362, + 0.01239926740527153, + 0.018935106694698334, + 0.01732131838798523, + 0.0890272781252861, + 0.017818903550505638, + -0.0034276172518730164, + 0.009897896088659763, + 0.019298208877444267, + -0.008936348371207714, + 0.006636701058596373, + 0.00494558596983552, + -0.011350304819643497, + -0.04795638471841812, + 0.004491708241403103, + -0.018383728340268135, + 0.031280580908060074, + -0.012130302377045155, + -0.00810928177088499, + 0.011000650934875011, + 0.013972709886729717, + 0.013105299323797226, + -0.006737562827765942, + 0.009111175313591957, + 0.027030939236283302, + 0.0065392013639211655, + 0.0019550363067537546, + 0.04819845035672188, + -0.02251233533024788, + -0.003165376838296652, + 0.0024761550594121218, + -0.01682373508810997, + 0.007188078481703997, + 0.0018121488392353058, + -0.009850827977061272, + -0.009965137578547001, + -0.07638593763113022, + -0.02754197269678116, + 0.02572646178305149, + -0.030527479946613312, + 0.01125616766512394, + -0.03195299208164215, + 0.020091654732823372, + -0.002736714668571949, + 0.03353988379240036, + 0.003987399861216545, + -0.005063258111476898, + -0.024946464225649834, + -0.013643228448927402, + -0.0032561523839831352, + -0.017886145040392876, + -0.022848540917038918, + -0.03692883625626564 + ], + "metadata": { + "source": "INSPIRER_Schlussbericht.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 5, + "has_images": true, + "image_count": 29, + "detection_class_prob": 0.6591171622276306, + "coordinates": "CoordinatesMetadata(points=((1122.828857421875, 155.53517150878906), (1122.828857421875, 361.06524658203125), (1358.3359375, 361.06524658203125), (1358.3359375, 155.53517150878906)), system=)", + "links": [], + "last_modified": "2025-05-05T22:58:03", + "_known_field_names": "frozenset({'page_number', 'text_as_html', 'emphasized_text_contents', 'subject', 'data_source', 'links', 'coordinates', 'image_path', 'is_continuation', 'header_footer_type', 'sent_from', 'url', 'parent_id', 'detection_class_prob', 'emphasized_text_tags', 'last_modified', 'category_depth', 'page_name', 'attached_to_filename', 'bcc_recipient', 'orig_elements', 'languages', 'filetype', 'link_texts', 'file_directory', 'sent_to', 'key_value_pairs', 'image_base64', 'cc_recipient', 'link_urls', 'signature', 'image_mime_type', 'filename', 'detection_origin', 'table_as_cells', 'email_message_id', 'link_start_indexes'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "INSPIRER_Schlussbericht.pdf", + "parent_id": "1c51aaba3295e535d31a83c2392f0391", + "text_as_html": "
Projektlaufzeit01.08.2021 - 31.07.2024 (verl\u00e4ngert bis 31.10.2024)
F\u00f6rderkennzeichen165V8744
StichworteStadtentwicklung, Digitale B\u00fcrgerbeteiligung, Partizipation
und Akzeptanz, Augmented Reality, Extended Reality (XR),
AR-Tracking, Point Cloud Matching
ProjektleitungProf. Dr.-Ing. Volker Coors
Beteiligte ProfessorenProf. Dr.-Ing. Volker Coors
Gef\u00f6rderte Ma\u00dfnahmeForschungsprogramm zur Mensch-Technik-nteraktion
F\u00f6rderbereichTechnik zum Mensch bringen
FachhochschuleHochschule f\u00fcr Technik Stuttgart (HFT Stuttgart),
", + "id": "351a57f5-fe09-4ea6-8750-b2c5267a9700", + "processing_timestamp": "2025-05-05T23:07:23.860264", + "chunk_number": 8, + "total_chunks": 19, + "chunking_strategy": "hybrid", + "word_count": 423 + } +} \ No newline at end of file diff --git a/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000009.json b/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000009.json new file mode 100644 index 0000000000000000000000000000000000000000..19eb85c78ef4c826e2d362b9abf6b966b566267e --- /dev/null +++ b/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000009.json @@ -0,0 +1,1570 @@ +{ + "id": "2b86db2d-408b-1992-e1b5-8a9f00000009", + "content": "Insbesondere die Entwicklung der Tracking-Technologien, des AR-Clients und des Stadtmodell-Servers war notwendig, um eine vollst\u00e4ndige und funktionsf\u00e4hige L\u00f6sung zu erstellen. Durch die durchgef\u00fchrten Workshops, Tests und Evaluierungen wurde sichergestellt, dass die Technologie praktikabel, nutzerfreundlich und in realen Planungsprozessen anwendbar ist. ## Voraussichtlicher Nutzen, insb. Verwertbarkeit der Ergebnisse\n\nDie Ergebnisse des Projekts wurden kommunalen Akteuren und Fachgremien vorgestellt, um ihre Anschlussf\u00e4higkeit an bestehende Planungsprozesse sicherzustellen. In Pr\u00e4sentationen und Workshops mit der Stadt Fellbach sowie weiteren Stakeholdern wurde der Mehrwert der entwickelten AR-gest\u00fctzten Beteiligungsplattform deutlich, insbesondere f\u00fcr die Visualisierung und interaktive Planung von Stadtentwicklungsma\u00dfnahmen. Die positive Resonanz zeigt, dass die entwickelten Technologien als n\u00fctzliches Werkzeug f\u00fcr B\u00fcrgerbeteiligung und digitale Stadtplanung wahrgenommen werden. Die Projektdokumentation sowie die erarbeiteten technischen L\u00f6sungen werden den Kooperationspartnern und Stadtverwaltungen zur Verf\u00fcgung gestellt, um sie in zuk\u00fcnftige Planungsprozesse zu integrieren. Insbesondere die entwickelte AR-App zur Visualisierung von Stadtmodellen und Planungsentw\u00fcrfen kann weiter genutzt und ausgebaut werden. Die Erkenntnisse aus den Nutzertests zeigen, dass digitale Beteiligungsformate mit AR- Technologie die Verst\u00e4ndlichkeit und Akzeptanz von Planungsprozessen verbessern k\u00f6nnen. In weiterf\u00fchrender Forschung k\u00f6nnte untersucht werden, wie solche Technologien systematisch in kommunale Entscheidungsprozesse integriert werden k\u00f6nnen. Dar\u00fcber hinaus tragen die Projektergebnisse zur Weiterentwicklung von AR-Tracking- Methoden in urbanen Umgebungen bei. Die entwickelten L\u00f6sungen und Algorithmen k\u00f6nnen in zuk\u00fcnftigen Forschungs- und Praxisprojekten weiterverwendet werden. Die Ergebnisse wurden zudem als Open Access ver\u00f6ffentlicht, um eine breite Nutzung und wissenschaftliche Weiterentwicklung zu erm\u00f6glichen. [IMAGE: II.5]\n\n\n## Bekannt gewordene Fortschritte bei anderen Stellen\n\nW\u00e4hrend der Projektlaufzeit wurde das Streetmoves4iCity-Projekt1 als relevante Forschung identifiziert, die sich mit der Nutzung von AR- und VR-Technologien f\u00fcr B\u00fcrgerbeteiligung in der Stadtplanung befasst. Das Projekt untersuchte, wie digitale Beteiligungsinstrumente eingesetzt werden k\u00f6nnen, um die Akzeptanz f\u00fcr st\u00e4dtische Ver\u00e4nderungen zu f\u00f6rdern. Die Ergebnisse zeigten, dass sowohl AR als auch VR effektive Werkzeuge sind, um B\u00fcrger*innen Planungsentw\u00fcrfe zug\u00e4nglich zu machen und die \u00f6ffentliche Beteiligung zu verbessern. W\u00e4hrend Streetmoves4iCity verschiedene digitale Partizipationsans\u00e4tze evaluierte,\n1 C. Simon-Philipp, u. a., \u201eSchlussbericht zum Vorhaben Streetmoves4iCity : FH-Impuls 2016 Intensivierungsphase: Streetmoves f\u00fcr die Intelligente Stadt\u201c https://opus.bsz-\nbw.de/hft/frontdoor/index/index/start/6/rows/10/sortfield/score/sortorder/desc/searchtype/simple/query/alfakhori/do cId/702\nkonzentrierte sich unser Projekt insbesondere auf die interaktive und standortbezogene Nutzung von AR f\u00fcr Stadtplanungsprozesse. Die Erkenntnisse beider Projekte verdeutlichen die wachsende Bedeutung immersiver Technologien in partizipativen Planungsprozessen und liefern wertvolle Ankn\u00fcpfungspunkte f\u00fcr zuk\u00fcnftige Entwicklungen. ## Erfolgte Ver\u00f6ffentlichungen der Ergebnisse\n\n- 1. Alfakhori, M., Dastageeri, H., Schneider, S., and Coors, V.: Occlusion Screening using 3D City Models as a Reference Database for mobile AR-Applications, 7th International Smart Data Smart Cities and 17th International 3D GeoInfo joint conference, 18.10.2022, UNSW Sydney, Australien, https://doi.org/10.5194/isprs-annals-X-4-W3-2022-11-2022\n- 2. Alfakhori, M.; Schneider, S.; Coors, V.: High-Precision AR Localization for Outdoor Applications Using Point Cloud Registration, eingereicht bei der 9th Inte7th International Conference Smart Data Smart Cities, 2.-5.9.2025, Tokio (under review)\n- 3. Durchf\u00fchrung von Masterarbeiten im Bereich der Geoinformatik (HFT), auch gemeinsam mit Partnern:\n- a. \u201eOutdoor Mobile Augmented Reality in Urban Planning\u201c - Justin Jing Hui\n- b. \u201eOcclusion Screening using 3D city models as a reference database for mobile AR- Applications\u201c \u2013 Muhammad Alfakhori\n- c. \u201eOffice Layout design using Augmented and Mixed Reality\u201c - Juan Sebasti\u00e1n Sardi Barzallo\n- 4. Die Projektergebnisse werden direkt in die Lehre integriert, beispielsweise in den Modulen Customization, Internet GIS, Visualisierung und GIS Studios.", + "embedding": [ + 0.018689775839447975, + 0.013963624835014343, + 0.0030041933059692383, + -0.012144326232373714, + -0.005400834605097771, + 0.020515788346529007, + -0.0248525682836771, + -0.0038232137449085712, + -0.013527262024581432, + -0.03928612172603607, + 0.0048704855144023895, + -0.0023832148872315884, + 0.001819299184717238, + 0.0011026564752683043, + -0.027484172955155373, + -0.010600271634757519, + 0.0451401025056839, + -0.012721667997539043, + 0.0049409749917685986, + -0.0018327258294448256, + -0.0211199838668108, + 0.012580689042806625, + 0.024691449478268623, + -0.004142094403505325, + -0.006790483836084604, + 0.021871870383620262, + 0.023053407669067383, + -0.030102353543043137, + 0.004397199489176273, + -0.0037930039688944817, + 0.01353397499769926, + 0.00454489141702652, + -0.0018008376937359571, + -0.010875515639781952, + -0.010989641770720482, + 0.003917199559509754, + 0.005159156862646341, + 0.0021230753045529127, + 0.017279986292123795, + 0.019616207107901573, + 0.015494253486394882, + -0.004004472400993109, + -0.004481115378439426, + -0.01710544154047966, + -0.0005567827611230314, + 0.01890460029244423, + 0.008680272847414017, + 0.0014844742836430669, + -0.019105998799204826, + 0.006599155720323324, + 0.020206976681947708, + 0.025309070944786072, + -0.011855654418468475, + -0.010036355815827847, + -0.013419849798083305, + 0.0022237743251025677, + -0.029350465163588524, + 0.0352044478058815, + -0.013580967672169209, + -0.012432997114956379, + -0.002102935453876853, + 0.014003904536366463, + -0.021965855732560158, + 0.01577621139585972, + -0.024355784058570862, + 0.00483020581305027, + -0.02687997929751873, + 0.0033851719927042723, + -0.005514960736036301, + 0.012104046531021595, + 0.04371688887476921, + 0.008143209852278233, + 0.035231299698352814, + -0.0236038975417614, + 0.028652284294366837, + 0.0014441946987062693, + 0.030156059190630913, + -0.017092013731598854, + 0.008539293892681599, + 0.017051734030246735, + 0.00558545021340251, + -0.01660865731537342, + -0.009056216105818748, + 0.050269048660993576, + 0.02387242764234543, + 0.02192557603120804, + 0.008230483159422874, + 0.02581927925348282, + -0.004256220534443855, + -0.010492858476936817, + -0.011123906821012497, + 0.035338710993528366, + -0.016742924228310585, + 0.006099015939980745, + -0.008673559874296188, + 0.004454262088984251, + -0.002423494588583708, + 0.016326699405908585, + -0.02103942446410656, + -0.005484750960022211, + -0.005904330871999264, + 0.008331182412803173, + -0.01086208876222372, + -0.011258172802627087, + -0.023617323487997055, + -0.008962230756878853, + -0.004665730521082878, + 0.009673838503658772, + 0.019199984148144722, + -0.029108786955475807, + -0.022811729460954666, + 0.027403613552451134, + -0.012567262165248394, + 0.0029185989405959845, + -0.0024453126825392246, + -0.0381045863032341, + 0.019884739071130753, + -0.009714118205010891, + -0.0011160830035805702, + -0.006119155790656805, + 0.027524452656507492, + 0.017615649849176407, + 0.014218729920685291, + -0.0008026566938497126, + 0.014540967531502247, + 0.020112991333007812, + -0.010237754322588444, + 0.0020895088091492653, + -0.005954680498689413, + -0.037057314068078995, + -0.005971463862806559, + -0.0076464274898171425, + 0.0179110337048769, + 0.007935098372399807, + -0.005682792514562607, + 0.013681666925549507, + -0.022059842944145203, + 0.0019166418351233006, + -0.041676051914691925, + -0.03837311640381813, + -0.013869639486074448, + 0.01737397164106369, + 0.0012553835986182094, + -0.01290963962674141, + -0.008116357028484344, + 0.028464313596487045, + 0.0009977613808587193, + 0.014594673179090023, + 0.019495369866490364, + -0.013218451291322708, + -0.018125860020518303, + -0.04785227030515671, + 0.0030511864461004734, + 0.0035681091248989105, + -0.0017924461280927062, + -0.0247451551258564, + 0.00649174302816391, + 0.010848662815988064, + -0.023308511823415756, + -0.012681388296186924, + 0.017253132537007332, + 0.008183489553630352, + -0.0024352427572011948, + 0.007874678820371628, + 0.03187466040253639, + 2.7246482204645872e-05, + 0.005139017011970282, + 0.012010060250759125, + -0.011392438784241676, + 0.004027968738228083, + -0.006266848184168339, + 0.012667961418628693, + -0.03058570995926857, + 0.01619243435561657, + -0.01722628064453602, + 0.0009918872965499759, + 0.00421929731965065, + -0.0032760812900960445, + -0.025403056293725967, + -0.031176477670669556, + 0.011634116061031818, + -0.017320265993475914, + 0.020475508645176888, + 0.0026047532446682453, + -0.00830432865768671, + -0.00485034566372633, + 0.014433554373681545, + 0.010533138178288937, + -0.009761110879480839, + -0.01799159310758114, + 0.024691449478268623, + -0.005387408193200827, + 0.01241285726428032, + -0.021697325631976128, + -0.6174070835113525, + -0.0029102074913680553, + 0.010969501920044422, + -0.016581805422902107, + 0.004924191627651453, + 0.021898724138736725, + 0.016930894926190376, + 0.004595241043716669, + -0.010237754322588444, + 0.037862908095121384, + -0.009398593567311764, + -0.0030797177460044622, + -0.005800275132060051, + -0.02333536557853222, + -0.0179110337048769, + -0.02019355073571205, + 0.013325863517820835, + -0.022476065903902054, + 0.02512109838426113, + 0.03265339881181717, + -0.0374869629740715, + 0.003333144122734666, + 0.0025325852911919355, + -0.0180184468626976, + -0.01977732591331005, + 0.016528097912669182, + -0.002631606301292777, + -0.011399151757359505, + -0.002641676226630807, + 0.017172573134303093, + -0.02149592712521553, + 0.028437459841370583, + -0.010586844757199287, + 0.03332472965121269, + 0.05051072686910629, + 0.012755234725773335, + -0.012748520821332932, + 0.021173689514398575, + 0.014943764545023441, + 0.0193611029535532, + 0.008680272847414017, + 0.004924191627651453, + 0.014554393477737904, + 0.0072839101776480675, + 0.01886432059109211, + 0.0037963606882840395, + 0.042750176042318344, + -0.011385724879801273, + -0.019025439396500587, + -0.03455997258424759, + 0.006434679962694645, + -0.019199984148144722, + -0.008566146716475487, + -0.020878305658698082, + 0.026436902582645416, + 0.005202793050557375, + 0.004987968131899834, + -0.008861531503498554, + 0.0002337061014259234, + -0.011707962490618229, + -0.010989641770720482, + -0.00836474820971489, + -0.014863205142319202, + -0.04097786918282509, + -0.018850894644856453, + 0.04607996344566345, + -0.004393842536956072, + -0.025255363434553146, + -0.0010455935262143612, + -0.02066347934305668, + 0.0020660122390836477, + 0.03410346806049347, + -0.014473834075033665, + -0.01290963962674141, + 0.005414261482656002, + 0.022355226799845695, + 0.02683969959616661, + -0.007861252874135971, + -0.004155521281063557, + 0.0021297885105013847, + 0.017320265993475914, + -0.006542092654854059, + 0.007773979566991329, + 0.023093687370419502, + 0.017132293432950974, + -0.01977732591331005, + -0.03324417024850845, + -0.023952987045049667, + 0.006256778258830309, + 0.013352716341614723, + 0.013896492309868336, + -0.0005060135736130178, + -0.02932361327111721, + -0.006572302430868149, + 0.00710265152156353, + 0.044844720512628555, + -0.0011135655222460628, + 0.048281919211149216, + -0.008619853295385838, + -0.04487157240509987, + -0.030532004311680794, + -0.010143768042325974, + 0.03482850268483162, + 0.01348026841878891, + 0.009096495807170868, + -0.004158877767622471, + -0.005300135817378759, + 0.0023580400738865137, + 0.05284694954752922, + -0.04570401832461357, + -0.024610890075564384, + -0.010217614471912384, + -0.010284746997058392, + -0.015588238835334778, + 0.011372298933565617, + -0.0232950858771801, + 0.011835514567792416, + -0.011775095015764236, + 0.0301292072981596, + 0.005837197881191969, + 0.00918376911431551, + -0.022852009162306786, + 0.03023661859333515, + -0.019602781161665916, + -0.007310763467103243, + -0.0023563618306070566, + 0.011754955165088177, + -0.02240893244743347, + -0.02385900169610977, + -0.0032676896080374718, + 0.0011857333593070507, + -0.02207326889038086, + 0.030344031751155853, + 0.002097900491207838, + 0.03214319050312042, + -0.0008869923185557127, + 0.017400825396180153, + -0.0016246141167357564, + 0.0008979013655334711, + -0.02016669698059559, + -0.018340684473514557, + -0.0005332863074727356, + 0.011936213821172714, + -0.02779298461973667, + -0.011895934119820595, + -0.038587942719459534, + 0.0007745448383502662, + 0.016205860301852226, + 0.01282908022403717, + 0.010640551336109638, + -0.03184780478477478, + -0.017884181812405586, + 0.008666845969855785, + 0.017467958852648735, + 0.020744038745760918, + 0.008371462114155293, + -0.014957190491259098, + -0.017548518255352974, + -0.0022338442504405975, + -0.027054524049162865, + 0.016662364825606346, + 0.0004883912042714655, + -0.02779298461973667, + -0.02737676165997982, + 0.009962509386241436, + 0.004377059638500214, + 0.02008613757789135, + 0.05166541412472725, + -0.015856770798563957, + -0.02692025899887085, + 0.016528097912669182, + -0.007156358100473881, + -0.019347677007317543, + 0.02509424462914467, + -0.013178171589970589, + 0.024234944954514503, + -0.025416482239961624, + -0.009606705978512764, + -0.0048939818516373634, + -0.009902089834213257, + 0.00064195750746876, + 0.007639714051038027, + -0.00908978283405304, + -0.0068274070508778095, + -0.005011464469134808, + -0.0014358030166476965, + 0.012036913074553013, + 0.008190203458070755, + 0.00020087396842427552, + 0.015789637342095375, + 0.013567541725933552, + 0.03504332900047302, + -0.007223490625619888, + 0.006632721982896328, + -0.005363911855965853, + 0.004883911926299334, + -0.01878376118838787, + 0.008358035236597061, + 0.007565868087112904, + 0.01836753822863102, + 0.029108786955475807, + 0.027551306411623955, + 0.03907129541039467, + 0.009667125530540943, + 0.011788521893322468, + -0.02073061279952526, + -0.0015239148633554578, + -0.009982649236917496, + 0.03302934393286705, + -0.0012025164905935526, + 0.01863606832921505, + -0.015131736174225807, + -0.012567262165248394, + 0.0018427957547828555, + 0.005753281991928816, + 0.015897050499916077, + 0.004642234183847904, + 0.001131187891587615, + -0.01809900626540184, + 0.0069549595937132835, + 3.427444971748628e-05, + -0.010848662815988064, + 0.03501647710800171, + -0.02252977155148983, + -0.004283073358237743, + -0.0037158012855798006, + 0.012882786802947521, + 0.04634849354624748, + 0.029484732076525688, + -0.003789647249504924, + -0.016313273459672928, + 0.022368652746081352, + -0.006021813489496708, + 0.004712723661214113, + 0.008331182412803173, + 0.0076464274898171425, + 0.021482499316334724, + -0.009432160295546055, + 0.023644177243113518, + 0.013346003368496895, + 0.015641946345567703, + 0.027121655642986298, + 0.0035781790502369404, + 0.002544333692640066, + 0.016031315550208092, + -0.01596418209373951, + 0.027819838374853134, + 0.03531185910105705, + -0.0037325844168663025, + 0.017212852835655212, + -0.021522779017686844, + 0.010351879522204399, + -0.019481942057609558, + 0.0003719577507581562, + -0.0010103487875312567, + -0.01660865731537342, + 0.029350465163588524, + -0.011285025626420975, + 0.03286822512745857, + 0.042401086539030075, + 0.015628518536686897, + 0.03214319050312042, + 0.025362776592373848, + -0.00019867117225658149, + -0.029457878321409225, + 0.011144046671688557, + -0.014943764545023441, + -0.025604454800486565, + -0.023389071226119995, + -0.013017052784562111, + 0.02849116548895836, + -0.02180473692715168, + 0.0018713271711021662, + 0.0066864280961453915, + -0.003833283670246601, + 0.007330903317779303, + 0.00650181295350194, + -0.005954680498689413, + 0.04250849783420563, + 0.021375088021159172, + -0.016017889603972435, + -0.021871870383620262, + -0.018461523577570915, + 0.01779019460082054, + 0.00020223759929649532, + -0.02263718470931053, + -0.006025169976055622, + 0.004977898206561804, + -0.018501803278923035, + -0.021657045930624008, + -0.016662364825606346, + 0.004340136423707008, + -0.01638040691614151, + 0.001663215458393097, + -0.006740134209394455, + 0.001131187891587615, + 0.018662922084331512, + -0.00977453775703907, + -0.01993844471871853, + -0.015453973785042763, + -0.013473555445671082, + 0.01416502334177494, + -0.003168668830767274, + -0.03418402746319771, + 0.026893405243754387, + -0.03563409671187401, + 0.008069364354014397, + -0.026101237162947655, + -0.011177613399922848, + -0.03120333142578602, + 0.002485592383891344, + -0.0020827956032007933, + 0.012023487128317356, + 0.02459746226668358, + 0.006105729378759861, + 0.01164754293859005, + 0.004756359849125147, + -0.007599434349685907, + 0.02657116763293743, + -0.007095938548445702, + -0.015789637342095375, + -0.03455997258424759, + 0.002720557153224945, + 0.004769786261022091, + 0.04409283027052879, + 0.01366824097931385, + -0.004954401403665543, + 0.011238032951951027, + -0.021643618121743202, + -0.010949362069368362, + -0.02263718470931053, + -0.03721843287348747, + 0.01313789188861847, + 0.016930894926190376, + -0.00043971993727609515, + -0.019079145044088364, + 0.01745453104376793, + -0.019347677007317543, + -0.0009088104707188904, + 0.0016296490794047713, + 0.01672949641942978, + 0.0037225144915282726, + -0.007330903317779303, + 0.01088222861289978, + 0.00834460835903883, + -0.013278870843350887, + 0.010083348490297794, + 0.03050515055656433, + 0.018689775839447975, + -0.00851244106888771, + 0.04994681477546692, + 0.014540967531502247, + -0.006226568482816219, + -0.019616207107901573, + 0.03394234925508499, + 0.015856770798563957, + 0.008062650449573994, + 0.01695774868130684, + -0.02489284798502922, + 0.013547401875257492, + 0.005692862439900637, + 0.005806988105177879, + 0.013789080083370209, + 0.004897338803857565, + 0.022059842944145203, + 0.012929779477417469, + 0.00029517459915950894, + -0.012191318906843662, + 0.011613976210355759, + -0.001354404492303729, + -0.005380694754421711, + 0.002624893095344305, + -0.01561509259045124, + -0.0205023605376482, + 0.0015784602146595716, + -0.00739803584292531, + -0.021106556057929993, + -0.013507122173905373, + 0.0021398584358394146, + -0.0035311859101057053, + 0.01607159525156021, + -0.01950879581272602, + 0.012641108594834805, + -0.0309616532176733, + -0.027282774448394775, + -0.012043626978993416, + -0.011620690114796162, + -0.010338453575968742, + -0.0258864127099514, + -0.018206419423222542, + -0.016434112563729286, + -0.013977051712572575, + -0.019951872527599335, + 0.013654814101755619, + 0.011211180128157139, + -0.01932082325220108, + -0.02379186823964119, + 0.0023714667186141014, + 0.016246140003204346, + 0.00981481745839119, + 0.021428793668746948, + 0.0022422359324991703, + -0.012513556517660618, + 0.017655929550528526, + -0.007653140928596258, + -0.01487663108855486, + 0.014017331413924694, + -0.02859857864677906, + -0.023724736645817757, + -0.006239994894713163, + -0.03265339881181717, + -0.018461523577570915, + -0.01805872656404972, + 0.020180122926831245, + -0.007861252874135971, + -0.009707405231893063, + 0.019414810463786125, + 0.001591047621332109, + -0.013111038133502007, + 0.007861252874135971, + -0.013486982323229313, + 0.013151317834854126, + 0.006364190485328436, + -0.027229068800807, + 0.009062930010259151, + -0.0006553840939886868, + -0.011848941445350647, + 0.007820973172783852, + 0.018542082980275154, + 0.014567820355296135, + -0.032975636422634125, + 0.001246152794919908, + -0.007955238223075867, + -0.003165312111377716, + 0.008452021516859531, + -0.006525309290736914, + 0.009975936263799667, + -0.021133409813046455, + 0.01053985208272934, + 0.01095607504248619, + 0.004679156932979822, + 0.007263770326972008, + 0.05120890960097313, + -0.01311775203794241, + -0.019495369866490364, + -0.02222096174955368, + 0.04967828094959259, + 0.020838025957345963, + 0.0008236357243731618, + 0.007391322869807482, + 0.03319046273827553, + 0.017817048355937004, + -0.02383214794099331, + 0.005172583274543285, + -0.022811729460954666, + 0.00784782599657774, + -0.005001394543796778, + -0.003964192699640989, + -0.012573976069688797, + -0.02940417267382145, + 0.006280274596065283, + 0.006048666313290596, + -0.001132866251282394, + 0.005427687894552946, + -0.01722628064453602, + 0.004158877767622471, + 0.026718860492110252, + 0.002055942313745618, + 0.0038165005389600992, + -0.033808086067438126, + -0.010036355815827847, + 0.012990199029445648, + -0.03139130398631096, + 0.0407898984849453, + -0.022328373044729233, + 0.005243072751909494, + -0.027551306411623955, + 0.0020626557525247335, + -0.010653977282345295, + -0.03340528905391693, + -0.0010288103949278593, + -0.02203298918902874, + 0.024986833333969116, + 0.02646375447511673, + 0.03780920058488846, + 0.01996529847383499, + 0.03509703651070595, + 0.002930347342044115, + -0.012104046531021595, + -0.009056216105818748, + -0.017763342708349228, + -0.012271878309547901, + -0.031015358865261078, + 0.023039981722831726, + 0.018703201785683632, + 0.023818721994757652, + 0.006105729378759861, + -0.006575658917427063, + -0.010674117133021355, + 0.027175363153219223, + -0.0316866859793663, + -0.020206976681947708, + -0.0031132842414081097, + -0.01958935521543026, + -0.01954907551407814, + 0.015641946345567703, + 0.016017889603972435, + 0.002633284544572234, + -0.03673507645726204, + 0.004541534930467606, + 0.026181796565651894, + 0.01168782263994217, + 0.011177613399922848, + -0.009673838503658772, + 0.016286419704556465, + -0.02267746441066265, + 0.023765016347169876, + 0.01741425134241581, + 0.005350484978407621, + -0.01160726323723793, + -0.005367268342524767, + -0.041756611317396164, + 0.006280274596065283, + 0.03880276530981064, + -0.0003136361192446202, + 0.006874400191009045, + 0.012104046531021595, + -0.01227859128266573, + -0.006595798768103123, + 0.025604454800486565, + 0.02207326889038086, + -0.020824598148465157, + -0.004816779401153326, + -0.023093687370419502, + 0.012614255771040916, + -0.011694535613059998, + 0.00847887434065342, + 0.001819299184717238, + 0.01178180892020464, + 0.002277480671182275, + 0.0009348244057036936, + 0.030451444908976555, + 0.016219288110733032, + -0.004195800982415676, + 0.008371462114155293, + -0.0038735633715987206, + 0.02657116763293743, + 0.011097053997218609, + 0.02379186823964119, + 0.011728102341294289, + -0.02344277873635292, + -0.014460408128798008, + -0.06949588656425476, + 0.011432718485593796, + -0.0028783194720745087, + 0.028168927878141403, + -0.002932025585323572, + -0.01088222861289978, + -0.029484732076525688, + 0.019374530762434006, + 0.014191877096891403, + -0.04054822027683258, + -0.019387956708669662, + 0.03657395765185356, + 0.04299185425043106, + 0.010298173874616623, + -0.0007741252775304019, + -0.0057599954307079315, + -0.026947110891342163, + 0.0067199948243796825, + -0.010210900567471981, + 0.011318592354655266, + 0.009895376861095428, + 0.0044945417903363705, + -0.008096217177808285, + 0.0352044478058815, + -0.010237754322588444, + 0.009351600892841816, + 0.014124743640422821, + -0.04044080525636673, + 0.012365864589810371, + -0.0001643705036258325, + 0.014473834075033665, + 0.01097621489316225, + -0.0041085281409323215, + 0.01498404424637556, + -0.012755234725773335, + -0.00681733712553978, + 0.008472161367535591, + -0.0008081112173385918, + 0.0002985312312375754, + 0.0032223749440163374, + 0.00983495730906725, + 0.02230152115225792, + -0.0129432063549757, + -0.009821530431509018, + -0.01368838082998991, + -0.005263212602585554, + 0.009284468367695808, + 0.0044945417903363705, + -0.0011890899622812867, + -0.019455090165138245, + -0.017279986292123795, + 0.013325863517820835, + 0.021939003840088844, + -0.004615380894392729, + -0.008445307612419128, + -0.006048666313290596, + 0.0070623718202114105, + -0.03157927468419075, + 0.009365027770400047, + 0.0025258720852434635, + 0.016622085124254227, + -0.02261033095419407, + -0.02066347934305668, + 0.03284137323498726, + -0.00043258705409243703, + 0.02252977155148983, + -0.009687265381217003, + -0.0024335645139217377, + -0.00227244570851326, + 0.015198868699371815, + -0.04414653778076172, + 0.010452578775584698, + 0.027631865814328194, + -0.008143209852278233, + -0.008861531503498554, + 0.014460408128798008, + -0.0023513268679380417, + -0.02058291994035244, + 0.02604753151535988, + -0.010915795341134071, + -0.03966206684708595, + 0.0006016778643243015, + -0.006407827138900757, + 0.0059244707226753235, + -0.011271599680185318, + 0.009949082508683205, + 0.03501647710800171, + 0.0007791602401994169, + -0.004074961878359318, + 0.0005718876491300762, + -0.0006331463227979839, + 0.012453136965632439, + 0.008774259127676487, + -0.014111317694187164, + 0.020864877849817276, + -0.028303194791078568, + 0.014003904536366463, + 0.0171860009431839, + 0.009861810132861137, + -0.0015759427333250642, + -0.03756752237677574, + -0.0169846024364233, + 0.00242013786919415, + 0.010069921612739563, + -0.0258864127099514, + -0.0007506287656724453, + -0.0069213928654789925, + -0.0034271301701664925, + -0.02337564527988434, + 0.009781250730156898, + -0.015145163051784039, + 0.006887826602905989, + 0.011519990861415863, + -0.006837476976215839, + -0.010868802666664124, + 0.021240822970867157, + 0.014809498563408852, + -0.005316918715834618, + 0.012224885635077953, + -0.0015079708537086844, + -0.0389370322227478, + 0.0028279698453843594, + -0.01368838082998991, + 0.020945437252521515, + 0.02940417267382145, + -0.03257283940911293, + -0.0011479711392894387, + -0.011956353671848774, + -0.04516695812344551, + -0.0019820963498204947, + -0.022247813642024994, + -0.0025930048432201147, + 0.002201956231147051, + 0.002163355005905032, + -0.0006893700920045376, + 0.031445011496543884, + -0.00390377314761281, + 0.014352995902299881, + -0.017964741215109825, + -0.029457878321409225, + 0.013439989648759365, + -0.02704109624028206, + 0.021737605333328247, + 0.014326142147183418, + -0.0561230331659317, + -0.007968665100634098, + 0.010452578775584698, + -0.0032660113647580147, + 0.014111317694187164, + 0.0069549595937132835, + -0.00859300047159195, + 0.0035882489755749702, + 0.011405864730477333, + 0.01813928596675396, + -0.011795234866440296, + -0.005763351917266846, + 0.025443335995078087, + -0.012204745784401894, + 0.002475522458553314, + 0.011600550264120102, + -0.0007967825513333082, + -0.017199426889419556, + -0.005558596923947334, + 0.004363632760941982, + -0.004101814702153206, + 0.0015574812423437834, + 0.02710822969675064, + -0.02661144733428955, + -0.007539014797657728, + -0.007277196738868952, + 0.021603338420391083, + 0.00849901419132948, + -0.012224885635077953, + 0.008646706119179726, + 0.014822925440967083, + 0.0028867109213024378, + -0.0044374787248671055, + 0.013990478590130806, + -0.023697882890701294, + 0.005655939690768719, + 0.0035647524055093527, + -0.018877746537327766, + 0.015950756147503853, + -0.023080261424183846, + -0.012775374576449394, + -0.0034774797968566418, + 0.005065170582383871, + -0.004816779401153326, + -0.011399151757359505, + -0.009244188666343689, + 0.016554951667785645, + 0.008378175087273121, + 0.013446702621877193, + 0.01164754293859005, + -0.0013359430013224483, + -0.016890615224838257, + -0.01805872656404972, + -0.01634012721478939, + 0.0029034940525889397, + -0.01489005796611309, + -0.01433956902474165, + -0.0025040539912879467, + -0.03077368065714836, + 0.0016212573973461986, + 0.01787075400352478, + -0.006414540112018585, + -0.014997470192611217, + 0.0048436326906085014, + 0.21213969588279724, + -0.008794398978352547, + -0.011157473549246788, + -0.00558545021340251, + -0.013453415594995022, + 0.007371183019131422, + 0.01424558274447918, + -0.0008886706200428307, + -0.011217893101274967, + 0.011942927725613117, + -0.012573976069688797, + 0.008425167761743069, + 0.006850903388112783, + 0.003907129634171724, + 0.015977609902620316, + -0.013392996042966843, + -0.019307397305965424, + -0.007921671494841576, + -0.00558545021340251, + 0.032787665724754333, + 0.04385115206241608, + -0.02428865246474743, + -0.026208650320768356, + -0.025376202538609505, + 0.022247813642024994, + -0.0057734218426048756, + -0.00588083453476429, + -0.0067199948243796825, + 0.01871662773191929, + 0.0010288103949278593, + -0.018112432211637497, + -0.005112163722515106, + 0.012399430386722088, + 0.000378461234504357, + 0.010909082368016243, + -0.02069033309817314, + 0.012211458757519722, + -0.003974262624979019, + 0.02058291994035244, + 0.005038317758589983, + -0.020408375188708305, + -0.011083627119660378, + 0.00021461521100718528, + -0.028007809072732925, + 0.010848662815988064, + 0.014326142147183418, + -0.013936772011220455, + 0.013104325160384178, + 0.014903484843671322, + -0.040575072169303894, + -0.024140959605574608, + -0.011734815314412117, + 0.027819838374853134, + 0.025953546166419983, + -0.014272436499595642, + 0.005531743634492159, + -0.0022942638024687767, + -0.0021432151552289724, + -0.0026752424892038107, + 0.012681388296186924, + -0.024490050971508026, + -0.010855375789105892, + 0.023093687370419502, + 0.018461523577570915, + -0.04640220105648041, + -0.0015213973820209503, + -0.011506563983857632, + 0.006824050564318895, + 0.00922404881566763, + -0.007505448535084724, + 0.0027977600693702698, + -0.02012641727924347, + -0.021482499316334724, + -0.006018456537276506, + -0.009418733417987823, + -0.02894766815006733, + 0.012553836219012737, + 0.02062319964170456, + 0.021401939913630486, + 0.027470747008919716, + 0.005951324012130499, + -0.0010942649096250534, + 0.004974541254341602, + -0.03319046273827553, + -0.0165683776140213, + -0.039850037544965744, + 0.024409491568803787, + 0.0015398588730022311, + -4.948422429151833e-05, + -0.013486982323229313, + -0.03619801253080368, + -0.008646706119179726, + 0.00741817569360137, + -0.027242494747042656, + 0.011694535613059998, + 0.0008660132880322635, + 0.02760501205921173, + -0.001807551016099751, + -0.003611745312809944, + 0.015749357640743256, + -0.013950198888778687, + 0.07014036178588867, + 0.012245025485754013, + -0.01538684032857418, + -0.014366421848535538, + 0.010304886847734451, + 0.0032878294587135315, + 0.027054524049162865, + 0.004497898276895285, + 0.0008979013655334711, + 0.012379290536046028, + -0.028544872999191284, + -0.0063239107839763165, + -0.010506285354495049, + 0.017615649849176407, + 0.03431829437613487, + 0.00836474820971489, + -0.006934819743037224, + -0.0007481112843379378, + -0.008452021516859531, + -0.020797746255993843, + 0.006750204134732485, + -0.006350764073431492, + 0.010090061463415623, + 0.005236359313130379, + -0.019414810463786125, + -0.025027113035321236, + -0.005088667385280132, + -0.012620968744158745, + -0.005800275132060051, + 0.014608100056648254, + -0.008002230897545815, + 0.0117012495175004, + 0.003094822634011507, + 0.008290902711451054, + -0.016031315550208092, + 0.010633837431669235, + -0.04019912704825401, + -0.0014030757592990994, + 0.004779856186360121, + 0.00914348941296339, + 0.019293971359729767, + 0.01176166906952858, + -0.0007783210603520274, + -0.010855375789105892, + 0.008908524177968502, + -0.011882508173584938, + 0.00680726720020175, + -0.019884739071130753, + -0.0032206967007368803, + 0.00838488806039095, + -0.016474392265081406, + -0.006085589528083801, + -0.029269905760884285, + 0.0430724136531353, + 0.0075188749469816685, + -0.005407548043876886, + -0.011815374717116356, + 0.004836919251829386, + -0.004118598066270351, + -0.0316866859793663, + -0.003474123077467084, + 0.012171179056167603, + 0.001282236771658063, + -0.025080818682909012, + 0.0011613976676017046, + -0.17014139890670776, + 0.033163610845804214, + 0.026087811216711998, + -0.04070933908224106, + 0.0180184468626976, + -0.010653977282345295, + 0.013963624835014343, + 0.0024503476452082396, + -0.03187466040253639, + 0.0028246131259948015, + 0.027578160166740417, + -0.0052900658920407295, + -0.02367102913558483, + -0.006303770933300257, + 0.013540687970817089, + 7.98251130618155e-05, + -0.013627961277961731, + 0.024194665253162384, + 0.025215083733201027, + 0.023469630628824234, + 0.015373414382338524, + -0.02760501205921173, + 0.00914348941296339, + -0.0032760812900960445, + 0.0006675518816336989, + 0.009492579847574234, + -0.006642791908234358, + 0.011271599680185318, + -0.0005085310549475253, + -0.020099563524127007, + 0.010875515639781952, + -0.0038097871001809835, + 0.04409283027052879, + -0.014863205142319202, + -0.004185731057077646, + -0.018152711912989616, + 0.002269088989123702, + 0.004410625901073217, + -0.003940696362406015, + 0.05853981152176857, + 0.005719715729355812, + 0.033781230449676514, + -0.0067703439854085445, + -0.003719157772138715, + -0.04081675037741661, + 0.028249487280845642, + 0.034157175570726395, + -0.00554517051205039, + -0.016850335523486137, + -0.004709366708993912, + 0.007391322869807482, + -0.024490050971508026, + -0.004299856722354889, + 0.002868249546736479, + 0.001163915148936212, + 0.0374869629740715, + 0.01874348148703575, + -0.012399430386722088, + -0.011788521893322468, + -0.009982649236917496, + -0.0036016753874719143, + 0.011694535613059998, + 0.011654255911707878, + -0.017011454328894615, + -0.006887826602905989, + -0.023187674582004547, + 0.007773979566991329, + 0.007371183019131422, + -0.01225845143198967, + 0.006595798768103123, + -0.02661144733428955, + -0.004326710011810064, + 0.010580131784081459, + -0.007277196738868952, + 0.004739576485008001, + 0.019065719097852707, + -0.008149923756718636, + 0.016514671966433525, + 0.025027113035321236, + -0.016528097912669182, + -0.012607541866600513, + 0.044039126485586166, + -0.017884181812405586, + -0.019616207107901573, + -0.018125860020518303, + -0.025497041642665863, + -0.020488934591412544, + 0.018622642382979393, + 0.005605590064078569, + 0.01886432059109211, + 0.015373414382338524, + -0.04326038435101509, + -0.02257005125284195, + 0.012459849938750267, + 0.010184047743678093, + 0.016353553161025047, + -0.001173985074274242, + -0.003554682480171323, + -0.004454262088984251, + -0.03882962092757225, + 0.03227745741605759, + -0.013909919187426567, + 0.010163907893002033, + 0.014285862445831299, + 0.016165580600500107, + 0.0053840517066419125, + -0.0007145449053496122, + 0.01288949977606535, + 0.03066626936197281, + -0.0038299269508570433, + -0.04433450847864151, + -0.009559712372720242, + 0.0018377607921138406, + -0.009902089834213257, + 0.0028279698453843594, + 0.016581805422902107, + 0.022731170058250427, + -0.010821809060871601, + 0.006901253014802933, + 0.00392391299828887, + 0.057680513709783554, + -0.003066291334107518, + -0.0314718633890152, + 0.006659575272351503, + -0.013762226328253746, + -0.02849116548895836, + -0.07449056953191757, + -0.020717186853289604, + 0.019334251061081886, + 0.025147952139377594, + -0.008525867015123367, + 0.02833004668354988, + 0.004403912462294102, + 0.004773143213242292, + -0.0011160830035805702, + 0.03273395821452141, + -0.03509703651070595, + -0.03558038920164108, + -0.005008107982575893, + -0.013856212608516216, + 0.012104046531021595, + -0.006199715193361044, + -0.012318870984017849, + -0.00838488806039095, + -0.00788810569792986, + 0.03558038920164108, + -0.0026030747685581446, + -0.020515788346529007, + 0.01660865731537342, + -0.017884181812405586, + -0.015292854979634285, + -0.003316360991448164, + -0.021428793668746948, + 0.012245025485754013, + 0.007210064213722944, + 0.005474681034684181, + 0.015816491097211838, + -0.008022370748221874, + 0.035687804222106934, + -0.024154385551810265, + 0.004363632760941982, + -0.010606984607875347, + -0.012795514427125454, + -0.00710265152156353, + 0.007706847041845322, + -0.027054524049162865, + 0.016474392265081406, + 0.015534533187747002, + 0.008633280172944069, + -0.03681563585996628, + -0.007216777186840773, + -0.015185442753136158, + -0.0067434911616146564, + 0.002055942313745618, + -0.006605868693441153, + -0.011238032951951027, + -0.03472109138965607, + -0.015722505748271942, + 0.005061814095824957, + 0.012265165336430073, + 0.010580131784081459, + -0.008351322263479233, + -0.016474392265081406, + -0.035258155316114426, + -0.016635511070489883, + 0.0028883893974125385, + -0.0011572018265724182, + 0.007626287639141083, + -0.013231877237558365, + 0.02683969959616661, + 0.012157752178609371, + -0.006276918109506369, + -0.014124743640422821, + -0.00544111430644989, + 0.008076077327132225, + 0.009284468367695808, + -0.026906831189990044, + 0.004716080147773027, + 0.0008492300985381007, + -0.013319150544703007, + -0.020327815786004066, + -0.01489005796611309, + -0.023120541125535965, + -0.02478543482720852, + 0.01772306300699711, + -0.0063809738494455814, + -0.010016215965151787, + -0.030156059190630913, + 0.022999702021479607, + -0.010472718626260757, + 0.015400267206132412, + 0.0028027950320392847, + 0.002572864992544055, + -0.028974521905183792, + 5.70104421058204e-05, + -0.03112277202308178, + 0.010103488340973854, + 0.0035244727041572332, + 0.008707125671207905, + -0.03327102214097977, + -0.01805872656404972, + -0.00032370604458265007, + 0.016487818211317062, + -0.0023513268679380417, + -0.00966041162610054, + -0.005075240507721901, + -0.01646096631884575, + -0.009318034164607525, + -0.06299743056297302, + 0.01611187495291233, + 0.02859857864677906, + 0.0023848931305110455, + -0.03404976427555084, + 0.011922787874937057, + 0.01646096631884575, + 0.0012897892156615853, + 0.012956633232533932, + -0.014232156798243523, + -0.02410067990422249, + -0.009848383255302906, + -0.0028984593227505684, + 0.006790483836084604, + -0.028786551207304, + -0.006864330265671015, + 0.016313273459672928, + -0.0026735642459243536, + 0.010761389508843422, + 0.0020072711631655693, + 0.017763342708349228, + 0.01894487999379635, + 0.009633558802306652, + 0.02325480617582798, + -0.018072152510285378, + 0.0171860009431839, + -0.021401939913630486, + -0.0076598539017140865, + 0.0005744051304645836, + -0.006844190414994955, + -0.015225722454488277, + -0.010284746997058392, + -0.02073061279952526, + 0.013050618581473827, + 0.0013485304079949856, + -0.00452475156635046, + 0.01924026384949684, + 0.04814765229821205, + 0.008660132996737957, + 0.06154736131429672, + -0.03077368065714836, + -0.034613680094480515, + 0.01546739973127842, + -0.0314718633890152, + 0.0070623718202114105, + -0.0211199838668108, + 0.026584593579173088, + -0.007901531644165516, + 0.014433554373681545, + -0.007982091046869755, + 0.005081953946501017, + 0.008633280172944069, + -0.017360545694828033, + -0.026624873280525208, + 0.011399151757359505, + -0.01615215465426445, + 0.0075188749469816685, + -0.003685591509565711, + -0.008747405372560024, + -0.021066276356577873, + 0.05730456858873367, + 0.005679436028003693, + 0.0109225083142519, + 0.010069921612739563, + 0.012057052925229073, + -0.006542092654854059, + -0.029108786955475807, + 0.00041202764259651303, + 0.03737955167889595, + -0.013359430246055126, + -0.028571724891662598, + -0.017441105097532272, + 0.01483635138720274, + 0.029296759516000748, + -0.0037862907629460096, + -0.01242628414183855, + 0.013762226328253746, + 0.006256778258830309, + -0.007210064213722944, + 0.021657045930624008, + 0.021643618121743202, + 0.017843902111053467, + -0.02230152115225792, + 0.014527540653944016, + 0.016554951667785645, + 0.004074961878359318, + -0.021160263568162918, + -0.012708241119980812, + -0.019696766510605812, + 0.013674953952431679, + 0.010016215965151787, + 0.022328373044729233, + 0.0010791600216180086, + 0.004158877767622471, + -0.03066626936197281, + 0.015225722454488277, + 0.012708241119980812, + -0.0016833553090691566, + 0.025671588256955147, + 0.019159704446792603, + 0.014218729920685291, + 0.014138170517981052, + 0.0059110443107783794, + -0.02692025899887085, + -0.03120333142578602, + 0.01638040691614151, + -0.012325584888458252, + -0.02710822969675064, + -0.009653698652982712, + 0.012842507101595402, + 0.0013485304079949856, + 0.021482499316334724, + 0.016085021197795868, + 0.008035797625780106, + -0.022368652746081352, + 0.03754067048430443, + 0.009405307471752167, + -0.0039675491861999035, + -0.037325844168663025, + 0.004407269414514303, + 0.021375088021159172, + 0.012265165336430073, + 0.0024637742899358273, + 0.001658180495724082, + 0.029618997126817703, + 0.0020676907151937485, + 0.010835235938429832, + -0.0193611029535532, + -0.006041953340172768, + -0.03066626936197281, + -0.0052564991638064384, + -0.004286430310457945, + -0.009358313865959644, + 0.0016716070240363479, + -0.015749357640743256, + -0.005672722589224577, + 0.007666567340493202, + -0.013789080083370209, + -0.001466012792661786, + 0.09903432428836823, + 0.027846690267324448, + 0.01650124602019787, + -0.021442219614982605, + -0.00039608360384590924, + -0.0024553826078772545, + 0.006988525856286287, + 0.011660969816148281, + -0.010452578775584698, + -0.05934540554881096, + 0.00737789599224925, + -0.005128947086632252, + 0.011674395762383938, + -0.015507679432630539, + -0.029457878321409225, + 0.0008097895770333707, + -0.01433956902474165, + 0.011486424133181572, + -0.013641387224197388, + 0.02638319507241249, + 0.022556625306606293, + -0.006109085865318775, + 0.009962509386241436, + 0.047556884586811066, + -0.023241380229592323, + -0.00211468362249434, + 0.017937887459993362, + 0.0034942629281431437, + 0.007230204064399004, + -0.014003904536366463, + 0.002549368655309081, + -0.002415102906525135, + -0.07411462813615799, + -0.029618997126817703, + 0.013151317834854126, + -0.016017889603972435, + -0.008962230756878853, + -0.02768557146191597, + 0.013883065432310104, + -0.01103663444519043, + 0.029645850881934166, + 0.006652861833572388, + -0.013205024413764477, + -0.022583479061722755, + -0.01561509259045124, + -0.015292854979634285, + -0.014017331413924694, + -0.028464313596487045, + -0.021603338420391083 + ], + "metadata": { + "source": "INSPIRER_Schlussbericht.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 5, + "has_images": true, + "image_count": 29, + "detection_class_prob": 0.6591171622276306, + "coordinates": "CoordinatesMetadata(points=((1122.828857421875, 155.53517150878906), (1122.828857421875, 361.06524658203125), (1358.3359375, 361.06524658203125), (1358.3359375, 155.53517150878906)), system=)", + "links": [], + "last_modified": "2025-05-05T22:58:03", + "_known_field_names": "frozenset({'page_number', 'text_as_html', 'emphasized_text_contents', 'subject', 'data_source', 'links', 'coordinates', 'image_path', 'is_continuation', 'header_footer_type', 'sent_from', 'url', 'parent_id', 'detection_class_prob', 'emphasized_text_tags', 'last_modified', 'category_depth', 'page_name', 'attached_to_filename', 'bcc_recipient', 'orig_elements', 'languages', 'filetype', 'link_texts', 'file_directory', 'sent_to', 'key_value_pairs', 'image_base64', 'cc_recipient', 'link_urls', 'signature', 'image_mime_type', 'filename', 'detection_origin', 'table_as_cells', 'email_message_id', 'link_start_indexes'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "INSPIRER_Schlussbericht.pdf", + "parent_id": "1c51aaba3295e535d31a83c2392f0391", + "text_as_html": "
Projektlaufzeit01.08.2021 - 31.07.2024 (verl\u00e4ngert bis 31.10.2024)
F\u00f6rderkennzeichen165V8744
StichworteStadtentwicklung, Digitale B\u00fcrgerbeteiligung, Partizipation
und Akzeptanz, Augmented Reality, Extended Reality (XR),
AR-Tracking, Point Cloud Matching
ProjektleitungProf. Dr.-Ing. Volker Coors
Beteiligte ProfessorenProf. Dr.-Ing. Volker Coors
Gef\u00f6rderte Ma\u00dfnahmeForschungsprogramm zur Mensch-Technik-nteraktion
F\u00f6rderbereichTechnik zum Mensch bringen
FachhochschuleHochschule f\u00fcr Technik Stuttgart (HFT Stuttgart),
", + "id": "351a57f5-fe09-4ea6-8750-b2c5267a9700", + "processing_timestamp": "2025-05-05T23:07:23.860264", + "chunk_number": 9, + "total_chunks": 19, + "chunking_strategy": "hybrid", + "word_count": 527 + } +} \ No newline at end of file diff --git a/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000010.json b/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000010.json new file mode 100644 index 0000000000000000000000000000000000000000..fb1cd216e9818b39f32862a77310db2f5c6ca695 --- /dev/null +++ b/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000010.json @@ -0,0 +1,1570 @@ +{ + "id": "2b86db2d-408b-1992-e1b5-8a9f00000010", + "content": "\u201eOcclusion Screening using 3D city models as a reference database for mobile AR- Applications\u201c \u2013 Muhammad Alfakhori\n- c. \u201eOffice Layout design using Augmented and Mixed Reality\u201c - Juan Sebasti\u00e1n Sardi Barzallo\n- 4. Die Projektergebnisse werden direkt in die Lehre integriert, beispielsweise in den Modulen Customization, Internet GIS, Visualisierung und GIS Studios. Zudem wird eine Schulung f\u00fcr Masterstudenten zur Erstellung einer einfachen AR-Partizipations-App mit WebAR durchgef\u00fchrt. - 5. Ver\u00f6ffentlichung von Projektergebnissen auf Konferenzen:\n- a. Stuttgarter Wissenschaftsfestival, Stuttgart 2022\n- b. SDSC 2022 & 3D GeoInfo, Sydney, 21.10.2022\n- c. EuroXR 2022, Stuttgart\n- d. 3D Forum Lindau 2023, Lindau, 10.05.2023 (ca. 60 Teilnehmer)\n- e. XR EXPO 2023, Stuttgart, 15.-16.06.2023\n- f. XR EXPO 2024, Stuttgart, 03.-04.04.2024\n- INTERGEO 2024, Stuttgart, 24.-26.09.2024\n- h. Stuttgarter Wissenschaftsfestival 2024, 15.10.2024\n- i. STEG Fachtag BW, Kornwestheim, 15.10.2024 (ca. 100 Teilnehmer)\n- j. XR EXPO 2025 & Virtuelle Welten, Stuttgart\n- 6. Laufendes Promotionsvorhaben von Herrn Alfakhori im Kontext AR und B\u00fcrger*innenbeteiligung\n- 7. Wirtschaftlich-technische Verwertung aus Sicht der Partner*innen und der Sicht Dritter\n- a. Austausch mit Multiplikatoren / Gremien im Thema\n- b. Ausbau der Kontakte zu den Kooperationspartner*innen und Initiierung von Folgeprojekten https://citydemonstrator.hft-stuttgart.de\n- c. Webbasierte Services zur Auswertung und Bereitstellung von Punktwolken (z. B. Klassifikation) https://urbanvis.hft-stuttgart.de/Testgebiete.html\n- d. Website f\u00fcr die mit den Projektpartnern erstellte gescannte Punktwolke https://3dpointhub.com/view/LBbV6cN8m0JdQzc\n\n## Geplante Ver\u00f6ffentlichungen der Ergebnisse\n\nWeitere Ver\u00f6ffentlichungen sind im Rahmen des Promotionsvorhabens von Herrn Alfakhori geplant. ## Anhang 1: Liste der verwendeten Fachliteratur, Informations- und Datenquellen\n\n- 1. V. Settgast, \u201eVR Planning \u2013 we\u2019re planning\u201c, 2020. https://www.igd.fraunhofer.de/projekte/vr-planning- were-planning (zugegriffen Juni 29,2020). - 2. S. Walz, A. Kast, G. Schulze, L. Born, K. Kr\u00fcger, und K. Niggemeier, Handbuch zur Partizipation. Berlin: Kulturbuch-Verlag GmbH, 2011. - 3. K. Wildner und H. M. Berger, \u201eDas Prinzip des \u00f6ffentlichen Raums\u201c, 2018.https://www.bpb.de/politik/innenpolitik/stadt-und-gesellschaft/216873/prinzip-des-oeffentlichen- raums (zugegriffen Juni 29, 2020). - 4. M. L\u00fcbcke, R. L\u00fchrs, und D. R\u00fctschle, \u201eDie Zukunft der Stadtentwicklung: online und partizipativ?\u201c, Informationen Zur Raumentwickl., Bd. 2011, Nr. 10, S. 627\u2013636, 2011. - 5. M. V\u00f6gele, T. Santhanavanich, P. W\u00fcrstle, G. Graf, und V. Coors, \u201eSMART VILLAGES \u2013VERNETZUNG VON 3D-GEOINFORMATION UND UMWELTRELEVANTEN SENSORDATEN IML\u00c4NDLICHEN RAUM\u201c,GIS.Science, Nr. 2, 2020,\n- [Online]. Verf\u00fcgbar unter:https://gispoint.de/artikelarchiv/gis/2020/gisscience-ausgabe-22020.html.", + "embedding": [ + 0.014032415114343166, + 0.010654240846633911, + -0.003174731507897377, + -0.01585143245756626, + 0.0018292744643986225, + 0.03736506775021553, + -0.030417243018746376, + -0.006397331599146128, + -0.013546888716518879, + -0.03528619185090065, + 0.011331243440508842, + 0.01378623303025961, + 0.009943046607077122, + 0.00423297518864274, + -0.020556258037686348, + -0.005286090075969696, + 0.031101083382964134, + -0.0081171914935112, + 0.0051151299849152565, + -0.0012522836914286017, + -0.013321220874786377, + 0.02597227692604065, + 0.016343798488378525, + -0.023401034995913506, + -0.008971992880105972, + 0.024057522416114807, + 0.015824077650904655, + -0.023442065343260765, + -0.0025045673828572035, + -0.007754755672067404, + 0.00501255365088582, + 0.000819754262920469, + 0.00015044500469230115, + -0.020364781841635704, + -0.02579447813332081, + 0.022265858948230743, + 0.00822660606354475, + -0.002762717194855213, + 0.02242998220026493, + 0.009977239184081554, + 0.005169837269932032, + 0.006178502459079027, + -0.0032294385600835085, + -0.015577895566821098, + 0.007672694977372885, + 0.01474361028522253, + -0.00826763641089201, + -0.011775740422308445, + -0.01735588163137436, + 0.010886747390031815, + 0.022662486881017685, + 0.05126071348786354, + -0.010531149804592133, + -0.011515880934894085, + -0.018026046454906464, + -0.0035730686504393816, + -0.033179961144924164, + 0.03126520663499832, + -0.013410120271146297, + -0.01891503855586052, + 0.004964685067534447, + 0.004756113514304161, + -0.029377805069088936, + 0.006520423106849194, + -0.03307054564356804, + -0.008883093483746052, + -0.02692965418100357, + -0.0008176172850653529, + -0.007029884494841099, + 0.0007894088630564511, + 0.06335102021694183, + 0.015646280720829964, + 0.014880377799272537, + -0.02532946690917015, + 0.030116353183984756, + -0.005997284781187773, + 0.011433820240199566, + -0.004506511613726616, + 0.004109883680939674, + -0.002538759261369705, + -0.009211337193846703, + -0.027941739186644554, + -0.017902955412864685, + 0.03700947016477585, + 0.029924878850579262, + 0.03482117876410484, + 0.007159814238548279, + 0.02065199613571167, + 0.004571476485580206, + -0.004527026787400246, + -0.009731056168675423, + 0.020816117525100708, + -0.00911559909582138, + -0.007276067044585943, + -0.010920939035713673, + -0.0020634899847209454, + -0.005241640377789736, + 0.014647872187197208, + -0.01489405520260334, + -0.020583610981702805, + -0.013170775957405567, + 0.007809462957084179, + -0.025001224130392075, + -0.010920939035713673, + -0.02701171487569809, + -0.007029884494841099, + 0.0057750362902879715, + 0.01489405520260334, + 0.023360004648566246, + -0.0183953195810318, + -0.024686656892299652, + 0.02147260494530201, + 0.007761594373732805, + -0.009074568748474121, + 0.008342859335243702, + -0.048853594809770584, + 0.03170286491513252, + -0.00041457853512838483, + -0.008910447359085083, + -0.020323751494288445, + 0.017561035230755806, + 0.021199068054556847, + 0.011891993694007397, + -0.008671103045344353, + 0.01560524944216013, + 0.004656956531107426, + -0.02311382256448269, + -0.010134521871805191, + -0.009190822020173073, + -0.029459865763783455, + -0.009908854961395264, + 0.013950354419648647, + 0.015742016956210136, + 0.010531149804592133, + -0.001260831719264388, + 0.014169183559715748, + -0.02718951366841793, + 0.011201313696801662, + -0.0296513419598341, + -0.054187554866075516, + -0.001509578782133758, + 0.013574241660535336, + -0.004629603121429682, + -0.01879194751381874, + -0.002672108355909586, + 0.03692740947008133, + 0.005881031975150108, + 0.009519065730273724, + 0.02199232392013073, + -0.013669979758560658, + 0.0027969093061983585, + -0.025397852063179016, + 0.00906773004680872, + 0.018408996984362602, + 0.001212962786667049, + -0.01741058938205242, + 0.007412835489958525, + 0.013745201751589775, + -0.020159630104899406, + -0.019886093214154243, + 0.009231852367520332, + -0.00048381745000369847, + -0.010018269531428814, + 0.006540938280522823, + 0.03498530015349388, + 0.00904721487313509, + 0.006332366727292538, + 0.00844543520361185, + -0.018600473180413246, + 0.006284497678279877, + -0.01953049562871456, + 0.027080100029706955, + -0.02238895185291767, + 0.006958081386983395, + -0.016207030043005943, + 0.009060892276465893, + 0.007344451267272234, + 0.006202436983585358, + -0.011618456803262234, + -0.009320751763880253, + -0.005340797360986471, + -0.022977054119110107, + 0.02199232392013073, + 0.007474381010979414, + -0.0020771666895598173, + -0.003019157564267516, + 0.012001408264040947, + 0.015441128052771091, + 0.0014292275300249457, + -0.014032415114343166, + 0.016781454905867577, + 0.003214052179828286, + -0.0012651056749746203, + -0.017602065578103065, + -0.6280394792556763, + -0.007672694977372885, + 0.010072976350784302, + -0.028420427814126015, + 0.007980423048138618, + 0.025343144312500954, + 0.015290682204067707, + -0.006817893590778112, + -0.012493773363530636, + 0.03700947016477585, + 0.003340562805533409, + 0.008883093483746052, + -0.008903608657419682, + -0.021144360303878784, + -0.0190518070012331, + -0.021540988236665726, + 0.0059528350830078125, + -0.02563035674393177, + 0.028502488508820534, + 0.011980893090367317, + -0.015331713482737541, + 0.009867824614048004, + 0.005214286968111992, + -0.02143157459795475, + -0.013204967603087425, + 0.032441411167383194, + -0.014114475809037685, + -0.018723564222455025, + 0.013834101147949696, + 0.00937545858323574, + -0.022443657740950584, + 0.02173246443271637, + 0.0011838995851576328, + 0.030936961993575096, + 0.047950923442840576, + 0.011119253002107143, + -0.006499907933175564, + 0.019256960600614548, + 0.017383236438035965, + 0.015810402110219002, + -0.0012018503621220589, + 0.006199017632752657, + 0.005248479079455137, + 0.011214991100132465, + 0.0064554582349956036, + 0.0192706361413002, + 0.03886951878666878, + -0.01683616265654564, + -0.012746794149279594, + -0.022142767906188965, + -0.011406466364860535, + -0.014251244254410267, + -0.008000938221812248, + -0.005316862836480141, + 0.033535558730363846, + 0.0015172719722613692, + 0.014688902534544468, + 0.005689556244760752, + 0.010093491524457932, + -0.010011430829763412, + -0.0069683389738202095, + 0.005193771794438362, + -0.011310728266835213, + -0.023059114813804626, + -0.019462112337350845, + 0.046254999935626984, + -0.002834520535543561, + -0.023442065343260765, + 0.023346329107880592, + -0.026026984676718712, + 0.007016207557171583, + 0.025767125189304352, + -0.017861925065517426, + -0.010325998067855835, + 0.0025592746678739786, + 0.0350673608481884, + 0.034137338399887085, + 0.0028618741780519485, + -0.0016583141405135393, + 0.006923889275640249, + 0.021964969113469124, + -0.009717379696667194, + 0.014757286757230759, + 0.03276965767145157, + 0.004332132171839476, + -0.019886093214154243, + -0.039033640176057816, + -0.01575569435954094, + 0.0058400011621415615, + 0.010524311102926731, + 0.021281128749251366, + 0.012008246034383774, + -0.019147545099258423, + -0.006041734479367733, + 0.010791009292006493, + 0.0402645505964756, + -0.015071853064000607, + 0.04740384966135025, + -0.0012753632618114352, + -0.052710458636283875, + -0.01987241581082344, + 0.002102810889482498, + 0.01693190075457096, + 0.00761798769235611, + 0.011262859217822552, + 0.006144310347735882, + -0.02264881134033203, + 0.008664264343678951, + 0.06094390153884888, + -0.021623048931360245, + -0.02532946690917015, + -0.009334428235888481, + -0.023401034995913506, + -0.015810402110219002, + 0.009081407450139523, + -0.020009184256196022, + 0.015947170555591583, + -0.0056451065465807915, + 0.005460469517856836, + 0.0168771930038929, + 0.00952590350061655, + -0.02051522769033909, + 0.027914386242628098, + -0.030499303713440895, + -0.002126745181158185, + -0.006072507239878178, + 0.004879205022007227, + -0.013027168810367584, + -0.026382582262158394, + -0.007542765233665705, + 0.014237567782402039, + -0.021623048931360245, + 0.022443657740950584, + -0.0013762298040091991, + 0.028365720063447952, + -0.001354004954919219, + 0.012719441205263138, + -0.004109883680939674, + -0.0039047314785420895, + -0.021335836499929428, + -0.02762717194855213, + -0.011980893090367317, + 0.01526332926005125, + -0.027257898822426796, + -0.013512696139514446, + -0.014606841839849949, + -0.010237098671495914, + 0.011488527059555054, + 0.010777332819998264, + -0.016548950225114822, + -0.021527310833334923, + -0.008903608657419682, + 0.0091976597905159, + 0.013793070800602436, + 0.003321757074445486, + -0.00520744826644659, + -0.005928900558501482, + 0.0005876757786609232, + -0.01611129194498062, + -0.021841878071427345, + 0.022785579785704613, + 0.009334428235888481, + -0.03326202183961868, + -0.02515166811645031, + 0.01615232229232788, + 0.013540050014853477, + 0.014210213907063007, + 0.03558707982301712, + -0.024016492068767548, + -0.024946516379714012, + 0.012746794149279594, + -0.01571466401219368, + -0.021158037707209587, + 0.02325059100985527, + -0.009539580903947353, + 0.005959673319011927, + -0.014087122865021229, + -0.006171664223074913, + -0.0014146958710625768, + -0.00943700410425663, + 0.0007488058181479573, + -0.00023806211538612843, + -0.010018269531428814, + 0.0006107554072514176, + 0.007713725324720144, + 0.006510165520012379, + 0.017902955412864685, + 0.007959907874464989, + 0.00033636423177085817, + 0.017629418522119522, + 0.019721971824765205, + 0.02740834280848503, + -0.008718971163034439, + 0.01853208802640438, + -0.015318036079406738, + 0.01715072989463806, + -0.022224828600883484, + -0.006728994660079479, + -0.009717379696667194, + 0.013389605097472668, + 0.04611822962760925, + 0.039854247123003006, + 0.02852984331548214, + 0.003275597933679819, + 0.030116353183984756, + -0.025042254477739334, + 0.011830447241663933, + -0.0087668402120471, + 0.031976401805877686, + 0.005204029381275177, + 0.017779864370822906, + -0.015359066426753998, + -0.013970869593322277, + 0.001147997914813459, + 0.002425925573334098, + 0.027285251766443253, + -0.0018856913084164262, + 0.014032415114343166, + -0.02640993520617485, + 0.017820894718170166, + 0.01474361028522253, + -0.00830866675823927, + 0.040538087487220764, + -0.0013599885860458016, + -0.0147162564098835, + 0.0043902588076889515, + 0.00373377138748765, + 0.015728341415524483, + 0.024604596197605133, + -0.011317566968500614, + -0.014128153212368488, + 0.008404404856264591, + 0.0016984898829832673, + 0.009990915656089783, + 0.009320751763880253, + 0.029405158013105392, + 0.009813116863369942, + -0.0177525095641613, + 0.015728341415524483, + 0.00837705098092556, + 0.024221645668148994, + 0.031921692192554474, + 0.012199721299111843, + 0.00939597375690937, + 0.019024454057216644, + -0.008650587871670723, + 0.02657405659556389, + 0.023825017735362053, + -0.0035799071192741394, + 0.020337428897619247, + -0.030718132853507996, + 0.0033320148941129446, + -0.013635787181556225, + -0.005128806922584772, + 0.0027524596080183983, + -0.0018549184314906597, + 0.014059768989682198, + -0.008883093483746052, + 0.020077569410204887, + 0.029432512819767, + 0.003198665799573064, + 0.024276351556181908, + 0.024235321208834648, + 0.0030824127607047558, + -0.01823119819164276, + 0.00787784717977047, + -0.025083284825086594, + -0.019380051642656326, + -0.014989792369306087, + -0.004711663816124201, + 0.006236629094928503, + -0.01869620941579342, + -0.0036927408073097467, + -0.007522250059992075, + -0.010223421268165112, + 0.0074675427749753, + -0.004106464795768261, + 0.0007659018156118691, + 0.038459211587905884, + 0.018887685611844063, + -0.006181921809911728, + -0.028557196259498596, + -0.009990915656089783, + 0.029623987153172493, + -0.004000469110906124, + -0.016480565071105957, + -0.012651056982576847, + 0.004523607436567545, + -0.020036539062857628, + -0.010490119457244873, + -0.01661733351647854, + 0.008718971163034439, + -0.0025079865008592606, + -0.0021951294038444757, + -0.01869620941579342, + 0.0077410792000591755, + 0.0034174949396401644, + -0.007570118643343449, + -0.028393074870109558, + 0.005416019819676876, + -0.00900618452578783, + 0.010544826276600361, + -0.00420904066413641, + -0.013553726486861706, + 0.02766820229589939, + -0.023920753970742226, + 0.007330774329602718, + -0.017506327480077744, + 0.0005137354601174593, + -0.014552134089171886, + 0.00436290493234992, + -0.002772974781692028, + -0.013198129832744598, + 0.028393074870109558, + 0.016644688323140144, + -0.002090843627229333, + -0.007604310754686594, + -0.017123376950621605, + 0.020939208567142487, + -0.013437474146485329, + -0.002925129374489188, + -0.03588797152042389, + 0.0005517741083167493, + -0.009669510647654533, + 0.050193920731544495, + 0.0059699309058487415, + -0.005388666409999132, + 0.006469135172665119, + -0.00235412223264575, + -0.015536865219473839, + -0.01787560060620308, + -0.03356290981173515, + -0.00250627682544291, + 0.0078983623534441, + -0.019899770617485046, + 0.001350585836917162, + 0.011112414300441742, + -0.007084591779857874, + 0.016658363863825798, + 0.0022515461314469576, + 0.01723279058933258, + -0.010702109895646572, + -0.0024926001206040382, + 0.0023421552032232285, + -0.005094614811241627, + -0.020036539062857628, + 0.01541377417743206, + 0.026724502444267273, + 0.016042906790971756, + -0.017178082838654518, + 0.04814239963889122, + 0.010544826276600361, + 0.001863466459326446, + -0.016986608505249023, + 0.021677756682038307, + 0.01887400820851326, + 0.024481505155563354, + 0.02368824928998947, + -0.017260143533349037, + 0.023059114813804626, + 0.00481765903532505, + 1.8044318494503386e-05, + 0.018668856471776962, + -0.002263513393700123, + 0.01583775505423546, + 0.027093777433037758, + -0.0008214638801291585, + -0.019038131460547447, + 0.007761594373732805, + -0.00854801107198, + -0.010941454209387302, + 0.015550541691482067, + -0.007070914842188358, + -0.007973585277795792, + -0.004978362005203962, + -0.00440393527969718, + 0.0014232438988983631, + -0.03446558117866516, + -0.010818363167345524, + -0.0051800948567688465, + 0.0037748017348349094, + -0.009354943409562111, + 0.00791887752711773, + -0.03750183433294296, + -0.017807217314839363, + -0.014196537435054779, + -0.014210213907063007, + -0.011187637224793434, + -0.041057806462049484, + -0.01939372718334198, + -0.01843634992837906, + -0.0044347080402076244, + -0.02476871758699417, + 0.009847309440374374, + 0.010408058762550354, + -0.022484688088297844, + -0.02762717194855213, + -0.0011257730657234788, + 0.006004123017191887, + 0.002466956153512001, + 0.02368824928998947, + 0.0035251998342573643, + -0.018737241625785828, + 0.013204967603087425, + -0.008753163740038872, + -0.008069322444498539, + -0.00444838497787714, + -0.031839631497859955, + -0.009074568748474121, + -0.005768198054283857, + -0.025315789505839348, + -0.024878131225705147, + -0.012008246034383774, + 0.022101737558841705, + -0.010702109895646572, + -0.0036346144042909145, + 0.0008103514555841684, + 0.00761798769235611, + -0.0020993915386497974, + 0.0002814432664308697, + -0.003458525286987424, + 0.005908385384827852, + 0.012083468958735466, + -0.02511063776910305, + 0.005754521116614342, + -0.005388666409999132, + -0.01627541333436966, + -0.0024926001206040382, + 0.007276067044585943, + 0.011946700513362885, + -0.019817709922790527, + 0.018819302320480347, + -0.003925246652215719, + -0.003383302828297019, + 0.004027822986245155, + 0.0009462648304179311, + 0.009471196681261063, + -0.0173148512840271, + 0.0024242158979177475, + 0.013540050014853477, + 0.01508553046733141, + 0.0039696963503956795, + 0.02346942014992237, + -0.013854616321623325, + 0.000767184013966471, + -0.018080754205584526, + 0.029432512819767, + 0.021308481693267822, + 0.012459581717848778, + 0.02199232392013073, + -0.007070914842188358, + 0.01723279058933258, + -0.0201322752982378, + 0.0021404221188277006, + -0.034657057374715805, + 0.017643095925450325, + 0.009854147210717201, + 0.007884685881435871, + -0.003744028974324465, + -0.020542580634355545, + -0.00930707436054945, + 0.0020959724206477404, + -0.01474361028522253, + 0.001535222865641117, + -0.006964919622987509, + 0.011180798523128033, + 0.0315934494137764, + 0.006858924403786659, + -0.005819485988467932, + -0.02649199590086937, + -0.007973585277795792, + 0.010353351011872292, + -0.019680941477417946, + 0.022826610133051872, + -0.011625295504927635, + -0.00025216632639057934, + -0.02082979306578636, + -0.004619345534592867, + -0.019188575446605682, + -0.04376581683754921, + -0.012657894752919674, + -0.018450027331709862, + 0.018244875594973564, + 0.012329651042819023, + 0.03588797152042389, + 0.017985016107559204, + 0.047650035470724106, + 0.012404873967170715, + -0.014688902534544468, + 0.0074812197126448154, + -0.0034499773755669594, + -0.006571711041033268, + -0.04078427329659462, + 0.02662876434624195, + 0.009943046607077122, + 0.008520657196640968, + 0.0058878702111542225, + -0.006718737073242664, + 0.00759747251868248, + 0.03082754835486412, + -0.02182820253074169, + -0.0181901678442955, + -9.502984539722092e-06, + -0.03698211535811424, + -0.03446558117866516, + 0.019626233726739883, + 0.013389605097472668, + -0.00872580986469984, + -0.02237527444958687, + 0.005874193273484707, + 0.0415501743555069, + 0.012015084736049175, + 0.0015053048264235258, + -0.009163468144834042, + 0.010654240846633911, + -0.017779864370822906, + 0.03900628536939621, + 0.00804880727082491, + 0.012945108115673065, + -0.021978646516799927, + 0.003610679879784584, + -0.0307454876601696, + -0.0032550827600061893, + 0.02429002895951271, + 0.0025797898415476084, + -0.0019626233261078596, + 0.0181901678442955, + -0.00023421550577040762, + 0.006882858462631702, + 0.028502488508820534, + 0.03389115631580353, + -0.01843634992837906, + -0.006776863243430853, + -0.03419204428792, + 0.0201322752982378, + -0.012555318884551525, + -0.0016172837931662798, + -0.004913396667689085, + 0.015728341415524483, + 0.014169183559715748, + -0.009731056168675423, + 0.026136400178074837, + 0.015960846096277237, + -0.0046125068329274654, + 0.0024327640421688557, + 0.013485342264175415, + 0.03386380150914192, + 0.0051800948567688465, + 0.015318036079406738, + 0.021417897194623947, + -0.019763002172112465, + -0.003586745588108897, + -0.0346297025680542, + 0.0006222952506504953, + 0.0024789231829345226, + 0.027175838127732277, + 0.0003132846031803638, + -0.009252367541193962, + -0.029213683679699898, + 0.012357004918158054, + 0.015947170555591583, + -0.02978811040520668, + -0.030854901298880577, + 0.026874948292970657, + 0.05216338485479355, + 0.009731056168675423, + 0.0016130097210407257, + 0.003802155377343297, + -0.03476647287607193, + -0.0025438880547881126, + -0.00895831547677517, + -0.0022276118397712708, + -0.0015360775869339705, + 0.008971992880105972, + 0.00446890015155077, + 0.020446842536330223, + -0.009471196681261063, + 0.005918642971664667, + 0.014606841839849949, + -0.028338367119431496, + 0.015550541691482067, + -0.012938270345330238, + 0.012254429049789906, + 0.01430595200508833, + -0.0069375657476484776, + 0.01534538995474577, + -0.004561218898743391, + -0.009997754357755184, + 0.010298644192516804, + 0.007871008478105068, + 0.0043594855815172195, + 0.012958785519003868, + 0.013533211313188076, + 0.024262676015496254, + -0.013991384766995907, + -0.010408058762550354, + -0.0027969093061983585, + -0.00798726174980402, + 0.0024857616517692804, + -7.078822090988979e-05, + 0.0034790406934916973, + -0.014251244254410267, + -0.022785579785704613, + 0.00805564597249031, + 0.02039213664829731, + -0.00870529469102621, + -0.008124030195176601, + -0.0017352462746202946, + 0.006031476892530918, + -0.01827222853899002, + 0.01389564760029316, + 0.009259206242859364, + 0.012425389140844345, + -0.04299991577863693, + -0.024098552763462067, + 0.023606188595294952, + -0.02139054425060749, + 0.013095553033053875, + -0.0024498600978404284, + -0.0023592510260641575, + 0.007700048387050629, + 0.0023575415834784508, + -0.05199926346540451, + 0.0067905401811003685, + 0.04540703445672989, + -0.012698926031589508, + -0.016726749017834663, + 0.010510634630918503, + -0.005063842050731182, + -0.03285171836614609, + 0.020966561511158943, + -0.01701396144926548, + -0.035094715654850006, + -0.023920753970742226, + -0.015742016956210136, + 0.0034516870509833097, + -0.017437942326068878, + 0.007002531085163355, + 0.03454764187335968, + -0.015947170555591583, + -0.004797143861651421, + -0.004373162519186735, + -0.0037029983941465616, + 0.02165040373802185, + 0.017848247662186623, + -0.006817893590778112, + 0.004085949622094631, + -0.00885573960840702, + 0.030362535268068314, + 0.00483817420899868, + 0.006175083573907614, + 0.00735812820494175, + -0.03000693954527378, + -0.02217012271285057, + 0.018668856471776962, + 0.018149137496948242, + -0.021103329956531525, + 0.0008317215251736343, + -0.018956070765852928, + 0.00034042453626170754, + -0.020939208567142487, + 0.0013565693516284227, + -0.025821832939982414, + 0.005751102231442928, + 0.009813116863369942, + 0.0008535189554095268, + -0.00377822108566761, + 0.0153727438300848, + 0.006411008536815643, + 0.004858689848333597, + -0.0004825352516490966, + 0.0053100246004760265, + -0.04425818473100662, + 0.017082346603274345, + -0.008370212279260159, + 0.023100145161151886, + 0.02359251119196415, + -0.0393892377614975, + -0.022019676864147186, + -0.010961969383060932, + -0.03441087529063225, + -0.008124030195176601, + -0.022676164284348488, + 0.003292693989351392, + 0.01635747402906418, + 0.002350703114643693, + 0.008609556593000889, + 0.03662651777267456, + 0.012514288537204266, + -0.004691148642450571, + -0.006568291690200567, + -0.03121049888432026, + 0.012336489744484425, + -0.03476647287607193, + 0.02047419734299183, + 0.021841878071427345, + -0.0467473641037941, + -0.004786886274814606, + 0.012842532247304916, + 0.015318036079406738, + 0.013628949411213398, + 0.013669979758560658, + 0.005210867617279291, + -0.0019592042081058025, + 0.010626887902617455, + 0.001776276738382876, + -0.0160155538469553, + -0.010825201869010925, + 0.027025392279028893, + -0.027244221419095993, + 0.011686841025948524, + 0.010216583497822285, + 0.01619335263967514, + 0.002330187940970063, + -0.0044347080402076244, + 0.010599534027278423, + -0.02077508717775345, + 0.0023985719308257103, + 0.031019022688269615, + -0.0051800948567688465, + 0.00830866675823927, + 0.0009120727772824466, + 0.031101083382964134, + 0.011748386546969414, + -0.0020019442308694124, + 0.0019233025377616286, + 0.015400096774101257, + 0.00848646555095911, + 0.004205621778964996, + 0.003275597933679819, + -0.03126520663499832, + 0.007399158552289009, + 0.021486280485987663, + -0.027763940393924713, + 0.02657405659556389, + -0.035696495324373245, + -0.01749265007674694, + 0.00501255365088582, + 0.00802829209715128, + -0.027353636920452118, + -0.016986608505249023, + -0.00839756615459919, + 0.02207438461482525, + 0.004684310406446457, + -0.00909508392214775, + 0.007912038825452328, + -0.00932758953422308, + -0.025397852063179016, + -0.018668856471776962, + -0.009813116863369942, + 0.005881031975150108, + -0.022785579785704613, + -0.023401034995913506, + -0.006175083573907614, + -0.02753143385052681, + -0.0002660568570718169, + 0.014647872187197208, + -0.015468480996787548, + -0.00850698072463274, + 0.020898178219795227, + 0.19475789368152618, + -0.0031405393965542316, + -0.004845012910664082, + 0.011358597315847874, + -0.013280190527439117, + -0.0022481270134449005, + 0.023578833788633347, + -0.006079345475882292, + -0.006879439577460289, + 0.03233199939131737, + -0.011775740422308445, + 0.002668689237907529, + -0.0015719792572781444, + -0.00011774885206250474, + 0.008883093483746052, + -0.020200660452246666, + -0.029733402654528618, + -0.013485342264175415, + 0.00039235371514223516, + 0.023264268413186073, + 0.03572385013103485, + -0.0030088999774307013, + -0.012233913876116276, + -0.014470073394477367, + 0.023059114813804626, + -0.006366558838635683, + 0.004974942654371262, + 0.006475973408669233, + 0.012445904314517975, + 0.015249651856720448, + 0.002123326063156128, + 0.0017318270402029157, + 0.02077508717775345, + -0.01767044886946678, + 0.004547541961073875, + -0.011905670166015625, + 0.0096353180706501, + 0.017902955412864685, + 0.023619864135980606, + 0.02233424410223961, + -0.023442065343260765, + -0.010079815052449703, + 0.0025267922319471836, + -0.01571466401219368, + 0.0037713826168328524, + 0.011344920843839645, + -0.021527310833334923, + 0.015591572970151901, + 0.013540050014853477, + -0.03181228041648865, + -0.023182205855846405, + -0.0026156913954764605, + 0.025179022923111916, + 0.03441087529063225, + 0.0004491980071179569, + -0.00863691046833992, + 0.004995457828044891, + -0.00911559909582138, + 0.0016335250111296773, + 0.0005731441779062152, + -0.019667264074087143, + 0.013047683984041214, + 0.019516820088028908, + 0.008459111675620079, + -0.04354698956012726, + -0.006599064916372299, + -0.015577895566821098, + 0.0168771930038929, + 0.002343864645808935, + -0.019981831312179565, + 0.0007231617346405983, + -0.023797662928700447, + -0.030964316800236702, + -0.012493773363530636, + -0.022525718435645103, + -0.021978646516799927, + 0.024864455685019493, + 0.020200660452246666, + 0.021199068054556847, + 0.023866048082709312, + -0.002564403461292386, + 0.006428104359656572, + 0.03252347186207771, + -0.013375927694141865, + -0.019079161807894707, + -0.05317546799778938, + 0.01545480452477932, + -0.004964685067534447, + -0.00503306882455945, + -0.015208621509373188, + -0.04521556198596954, + -0.015071853064000607, + 0.005966512020677328, + -0.028693964704871178, + 0.015277005732059479, + -0.003214052179828286, + 0.027121130377054214, + 0.00488262390717864, + -0.008739486336708069, + 0.008199252188205719, + -0.02039213664829731, + 0.07166652381420135, + 0.016808809712529182, + -0.019708294421434402, + -0.0077410792000591755, + 0.011645810678601265, + 0.006564872805029154, + 0.02381134033203125, + 0.010955131612718105, + 0.006739252246916294, + -0.005614333786070347, + -0.036735933274030685, + -0.012828855775296688, + -0.009416488930583, + -0.004174848552793264, + 0.024125907570123672, + 0.00885573960840702, + -0.0190518070012331, + 0.017725156620144844, + -0.01500346977263689, + -0.023797662928700447, + 0.0013061361387372017, + -0.009758410044014454, + -0.0001163598062703386, + 0.010148199275135994, + -0.023401034995913506, + -0.021636726334691048, + -0.010784170590341091, + -0.00831550545990467, + -0.02113068476319313, + 0.012958785519003868, + -0.0002769555721897632, + 0.02125377580523491, + 0.00030195849831216037, + 0.008219767361879349, + -0.012575834058225155, + 0.02315485291182995, + -0.03774801641702652, + -0.004287682473659515, + 0.004301359411329031, + 0.007146137300878763, + -0.0028499069157987833, + 0.018039723858237267, + -0.007132460828870535, + -0.01571466401219368, + -0.0031627642456442118, + -0.0024293449241667986, + 0.000861212145537138, + -0.02333265170454979, + -0.007700048387050629, + -0.0028618741780519485, + -0.020597288385033607, + -0.0072555518709123135, + -0.02203335426747799, + 0.031976401805877686, + 0.0077410792000591755, + -0.006995692383497953, + -0.015687311068177223, + -0.009621641598641872, + -0.005313443951308727, + -0.01783457025885582, + -0.016918223351240158, + 0.0071256221272051334, + 0.0009385716402903199, + -0.012774148024618626, + 0.010394381359219551, + -0.17550092935562134, + 0.032058462500572205, + 0.030581364408135414, + -0.050932470709085464, + 0.002490890445187688, + -0.010079815052449703, + 0.018682533875107765, + 0.0014429043512791395, + -0.015728341415524483, + -0.012568995356559753, + 0.01957152597606182, + -0.006513584405183792, + -0.01500346977263689, + -0.014333304949104786, + 0.022019676864147186, + 0.003932085353881121, + -0.022402627393603325, + 0.00831550545990467, + 0.030554011464118958, + 0.02087082527577877, + 0.006845247466117144, + -0.020446842536330223, + 0.006944404449313879, + -0.0035696495324373245, + 0.0027712653391063213, + -0.0010924357920885086, + -0.01701396144926548, + 0.025685064494609833, + -0.004694567993283272, + -0.012555318884551525, + 0.00457831472158432, + -0.0020019442308694124, + 0.03752918913960457, + 0.002795199630782008, + -0.012938270345330238, + -0.008848900906741619, + -0.008643749170005322, + 0.004509930964559317, + -0.012103984132409096, + 0.03783007711172104, + 0.008110352791845798, + 0.023305298760533333, + -0.01843634992837906, + -0.009293397888541222, + -0.03990895673632622, + 0.023715602234005928, + 0.019557850435376167, + -0.015030822716653347, + -0.004263747949153185, + -0.010100330226123333, + -0.012842532247304916, + -0.031155791133642197, + -0.004547541961073875, + -0.013451150618493557, + -0.0015155624132603407, + 0.03930717334151268, + 0.011734710074961185, + 0.000311361305648461, + -0.004646698944270611, + -0.024166937917470932, + -0.021787170320749283, + 0.00436290493234992, + 0.028256306424736977, + -0.015331713482737541, + -0.022306891158223152, + -0.03558707982301712, + 0.012384358793497086, + 0.013252836652100086, + -0.02995223179459572, + 0.008171899244189262, + -0.02165040373802185, + -0.0014018738875165582, + 0.004120141267776489, + -0.0020959724206477404, + -0.002812295686453581, + 0.014278598129749298, + -0.012527965009212494, + 0.026943331584334373, + 0.020939208567142487, + 0.0009633608860895038, + -0.012705763801932335, + 0.044613782316446304, + -0.004633022006601095, + -0.014839347451925278, + -0.011632134206593037, + -0.016138644888997078, + -0.017985016107559204, + 0.019106514751911163, + 0.0015514640836045146, + 0.020405812188982964, + 0.025739772245287895, + -0.0333440825343132, + -0.036735933274030685, + 0.017820894718170166, + 0.003343981923535466, + 0.008541173301637173, + -0.015577895566821098, + -0.007248713634908199, + -0.002253255806863308, + -0.03761124983429909, + 0.02467297948896885, + -0.010408058762550354, + -0.011577426455914974, + 0.00874632503837347, + 0.02255307324230671, + 0.007829978130757809, + -0.0025336304679512978, + 0.00883522443473339, + 0.021746139973402023, + -0.008910447359085083, + -0.026519350707530975, + -0.010038784705102444, + -0.0019301410065963864, + -0.00846595037728548, + -0.0035183613654226065, + 0.005145902745425701, + 0.011878316290676594, + -0.012391197495162487, + 0.00185662810690701, + 0.01482567097991705, + 0.05046745762228966, + 0.013601595535874367, + -0.029158975929021835, + 0.005549368914216757, + -0.015742016956210136, + -0.008069322444498539, + -0.07122886925935745, + -0.011167122051119804, + 0.01761574111878872, + 0.04160488024353981, + -0.015988200902938843, + 0.02809218503534794, + -0.0077752708457410336, + -0.006540938280522823, + -0.005053584463894367, + 0.03711888566613197, + -0.021062299609184265, + -0.03047195076942444, + 0.009943046607077122, + -0.006185341160744429, + 0.011618456803262234, + -0.002885808702558279, + -0.010565342381596565, + -0.017902955412864685, + -0.0028362302109599113, + 0.032140523195266724, + -0.015687311068177223, + -0.019899770617485046, + 0.018997101113200188, + -0.01805339939892292, + -0.022676164284348488, + -0.014470073394477367, + -0.013861455023288727, + 0.025767125189304352, + 0.002473794389516115, + 0.0038466050755232573, + 0.011474850587546825, + -0.013396442867815495, + 0.02558932639658451, + -0.02389340102672577, + -0.012692087329924107, + -0.02653302624821663, + -0.007652179803699255, + -0.017725156620144844, + 0.012924592941999435, + -0.037912141531705856, + 0.020706702023744583, + 0.022279536351561546, + 0.010544826276600361, + -0.025343144312500954, + -0.026286844164133072, + -0.010736302472651005, + -0.02948722057044506, + 0.015126560814678669, + -0.0003162764187436551, + -0.022197475656867027, + -0.031456682831048965, + -0.019749324768781662, + 0.00755644217133522, + 0.000805222662165761, + 0.01771147921681404, + -0.004732178989797831, + -0.010079815052449703, + -0.01713705249130726, + -0.017437942326068878, + 0.00880787055939436, + 0.014702579006552696, + -0.007453865837305784, + -0.0029148717876523733, + 0.02493283897638321, + 0.004619345534592867, + -0.01545480452477932, + -0.012589511461555958, + -0.006205856334418058, + -0.005993865430355072, + 0.003152506658807397, + -0.022183798253536224, + -0.0022720613051205873, + 0.0031952466815710068, + -0.014388012699782848, + -0.012760471552610397, + 0.007884685881435871, + -0.02684759348630905, + -0.016384828835725784, + 0.014223890379071236, + -0.008684779517352581, + -0.013081876561045647, + -0.03372703492641449, + 0.019188575446605682, + -0.019585203379392624, + 0.023537803441286087, + 0.009081407450139523, + -0.008431758731603622, + -0.01526332926005125, + 0.006356301251798868, + -0.04696619510650635, + 0.00813770666718483, + 0.013047683984041214, + -0.006116956938058138, + -0.04152281954884529, + -0.007809462957084179, + -0.005846839863806963, + 0.02221115306019783, + 0.005381827708333731, + -0.0036551295779645443, + -0.004380000755190849, + -0.038814809173345566, + -0.006181921809911728, + -0.08249856531620026, + 0.017041314393281937, + 0.011885154992341995, + -0.0029370966367423534, + -0.03468441218137741, + 0.006694802548736334, + 0.010004592128098011, + 0.003911570180207491, + 0.013369089923799038, + -0.013157098554074764, + -0.024440474808216095, + -0.0037406098563224077, + -0.014770963229238987, + 0.0031901178881525993, + -0.020077569410204887, + -0.0077410792000591755, + 0.015577895566821098, + 0.013676818460226059, + 0.028420427814126015, + 0.0024635368026793003, + 0.014292274601757526, + 0.031073730438947678, + 0.0008381325169466436, + 0.023619864135980606, + -0.016986608505249023, + 0.01615232229232788, + -0.02311382256448269, + -0.008199252188205719, + -0.007310259155929089, + -0.009361782111227512, + -0.001459145569242537, + -0.016083937138319016, + -0.017109699547290802, + 0.020036539062857628, + 0.004291101824492216, + -0.03142932802438736, + 0.015386420302093029, + 0.03583326190710068, + 0.011221828870475292, + 0.06094390153884888, + -0.021199068054556847, + -0.042316075414419174, + 0.016029231250286102, + -0.00885573960840702, + 0.012281782925128937, + 0.013177614659070969, + 0.020898178219795227, + 0.008192414417862892, + 0.00744702760130167, + -0.021199068054556847, + 0.013697333633899689, + 0.010777332819998264, + -0.00937545858323574, + -0.012377520091831684, + 0.00852749589830637, + -0.01693190075457096, + 0.011180798523128033, + 0.0034294622018933296, + 0.005727167706936598, + -0.010914101265370846, + 0.05705968663096428, + 0.019503142684698105, + 0.02389340102672577, + 0.006072507239878178, + 0.01693190075457096, + 0.004988619592040777, + -0.03151138871908188, + -0.005976769607514143, + 0.03148403391242027, + -9.08760484890081e-05, + -0.025876540690660477, + -0.026122722774744034, + 0.007276067044585943, + 0.026136400178074837, + 0.0014600002905353904, + -0.016439534723758698, + 0.009142952971160412, + 0.006216113921254873, + 0.0013924710219725966, + 0.013587919063866138, + 0.025479912757873535, + 0.012897239066660404, + -0.012425389140844345, + 0.01693190075457096, + 0.013362251222133636, + 0.00036200828617438674, + -0.018997101113200188, + -0.013923000544309616, + -0.007631664630025625, + 0.006554615218192339, + 0.0016078809276223183, + 0.024960193783044815, + 0.00856852624565363, + -0.0032619209960103035, + -0.00883522443473339, + 0.0019079161575064063, + 0.01653527282178402, + -0.011591102927923203, + 0.02268984168767929, + 0.035258837044239044, + 0.003294403664767742, + 0.007542765233665705, + 0.002908033551648259, + -0.026560381054878235, + -0.031757570803165436, + 0.021499957889318466, + -0.03233199939131737, + -0.031155791133642197, + -0.004161172080785036, + 0.007700048387050629, + 0.0036893216893076897, + 0.02541152760386467, + 0.012856208719313145, + 0.008691618219017982, + -0.01556421909481287, + 0.03337143734097481, + 0.006475973408669233, + -0.0026447547134011984, + -0.03966277092695236, + 0.018846655264496803, + 0.017985016107559204, + 0.007508573122322559, + -0.006181921809911728, + -0.0011967215687036514, + 0.038896869868040085, + 0.013061361387372017, + 0.032906424254179, + -0.026095367968082428, + 0.007323936093598604, + -0.031757570803165436, + 0.006445200648158789, + -0.012384358793497086, + -0.0036927408073097467, + -0.00802829209715128, + -0.024344736710190773, + 0.01489405520260334, + -0.004130398854613304, + 0.00852749589830637, + 0.0005466453148983419, + 0.10060667246580124, + 0.028420427814126015, + 0.011782579123973846, + -0.0008065048605203629, + -0.014442719519138336, + 0.0020019442308694124, + 0.011331243440508842, + 0.012179206125438213, + 0.006759767420589924, + -0.05804441496729851, + 0.01849105767905712, + -0.001147997914813459, + 0.01534538995474577, + -0.014292274601757526, + -0.021896585822105408, + -0.02217012271285057, + -0.03104637749493122, + 0.021007591858506203, + -0.02169143408536911, + 0.02935045212507248, + 0.0168908704072237, + -0.00954641867429018, + 0.007905201055109501, + 0.0381036140024662, + -0.022566750645637512, + -0.005604076199233532, + 0.014292274601757526, + 0.005467308219522238, + 0.004530446138232946, + -0.017506327480077744, + -0.0007009369437582791, + 0.002188290935009718, + -0.047814156860113144, + -0.041933123022317886, + 0.011180798523128033, + -0.012753632850944996, + 0.0017001994419842958, + -0.027900708839297295, + 0.018026046454906464, + 0.012432227842509747, + 0.010879908688366413, + 0.011933024041354656, + -0.01627541333436966, + -0.024358412250876427, + -0.010086653754115105, + -0.028119537979364395, + -0.01831325888633728, + -0.01779353991150856, + -0.01560524944216013 + ], + "metadata": { + "source": "INSPIRER_Schlussbericht.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 5, + "has_images": true, + "image_count": 29, + "detection_class_prob": 0.6591171622276306, + "coordinates": "CoordinatesMetadata(points=((1122.828857421875, 155.53517150878906), (1122.828857421875, 361.06524658203125), (1358.3359375, 361.06524658203125), (1358.3359375, 155.53517150878906)), system=)", + "links": [], + "last_modified": "2025-05-05T22:58:03", + "_known_field_names": "frozenset({'page_number', 'text_as_html', 'emphasized_text_contents', 'subject', 'data_source', 'links', 'coordinates', 'image_path', 'is_continuation', 'header_footer_type', 'sent_from', 'url', 'parent_id', 'detection_class_prob', 'emphasized_text_tags', 'last_modified', 'category_depth', 'page_name', 'attached_to_filename', 'bcc_recipient', 'orig_elements', 'languages', 'filetype', 'link_texts', 'file_directory', 'sent_to', 'key_value_pairs', 'image_base64', 'cc_recipient', 'link_urls', 'signature', 'image_mime_type', 'filename', 'detection_origin', 'table_as_cells', 'email_message_id', 'link_start_indexes'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "INSPIRER_Schlussbericht.pdf", + "parent_id": "1c51aaba3295e535d31a83c2392f0391", + "text_as_html": "
Projektlaufzeit01.08.2021 - 31.07.2024 (verl\u00e4ngert bis 31.10.2024)
F\u00f6rderkennzeichen165V8744
StichworteStadtentwicklung, Digitale B\u00fcrgerbeteiligung, Partizipation
und Akzeptanz, Augmented Reality, Extended Reality (XR),
AR-Tracking, Point Cloud Matching
ProjektleitungProf. Dr.-Ing. Volker Coors
Beteiligte ProfessorenProf. Dr.-Ing. Volker Coors
Gef\u00f6rderte Ma\u00dfnahmeForschungsprogramm zur Mensch-Technik-nteraktion
F\u00f6rderbereichTechnik zum Mensch bringen
FachhochschuleHochschule f\u00fcr Technik Stuttgart (HFT Stuttgart),
", + "id": "351a57f5-fe09-4ea6-8750-b2c5267a9700", + "processing_timestamp": "2025-05-05T23:07:23.860264", + "chunk_number": 10, + "total_chunks": 19, + "chunking_strategy": "hybrid", + "word_count": 359 + } +} \ No newline at end of file diff --git a/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000011.json b/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000011.json new file mode 100644 index 0000000000000000000000000000000000000000..3de3aa9c42dee5e0a1fb29ae442b6a6d0f52ccb8 --- /dev/null +++ b/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000011.json @@ -0,0 +1,1570 @@ +{ + "id": "2b86db2d-408b-1992-e1b5-8a9f00000011", + "content": "2, 2020,\n- [Online]. Verf\u00fcgbar unter:https://gispoint.de/artikelarchiv/gis/2020/gisscience-ausgabe-22020.html. - 7. HFT Stuttgart, \u201eAngewandter Transfer | HFT Stuttgart\u201c, Campus Stadtmitte \u2013 Der Campus als Experimentierfeld nachhaltiger Stadtentwicklung, 2020. https://www.hft-stuttgart.de/forschung/innovative- hochschule-m4-lab/angewandter-transfer#subnavigation(zugegriffen Juli 23, 2020). - 8. Initiative-D21, \u201eD21 Digitalindex 19/20 \u2013 J\u00e4hrliches Lagebild zur Digitalen Gesellschaft\u201c,2020. https://initiatived21.de/app/uploads/2020/02/d21_index2019_2020.pdf (zugegriffen Juni 28, 2020). - 9. Initiative-D21, \u201eDigital Gender Gap - Lagebild zu Gender(un)gleichheiten in der digitalisierten Welt\u201c, 2020.https://initiatived21.de/app/uploads/2020/01/d21_digitalgendergap.pdf (zugegriffen Juni 28,2020). - 10. I. Preu\u00dfner-Moritz und K. Reichel, \u201ePartizipationshandeln und Mikropolitik\u201c, in Gesund mit und ohne Arbeit, T. Rigotti, S. Korek, und K. Otto, Hrsg. Lengerich: Pabst Science Publishers,2010, S. 249\u2013260. - 11. W. Barfield,Fundamentals of Wearable Computers and Augmented Reality, 2nd Aufl. BocaRaton: CRC Press, 2015. - 12. G. Klein und D. Murray, \u201eParallel tracking and mapping on a camera phone\u201c, in IEEE 2009International Symposium on Mixed and Augmented Reality, ISMAR 2009, 2009, S. 83\u201386,doi: 10.1109/ISMAR.2009.5336495. - 13. S. Izadiu. a., \u201eKinectFusion: Real-time dynamic 3D surface reconstruction and interaction\u201c,in ACM SIGGRAPH 2011 Talks, SIGGRAPH\u201911, New York, 2011, S. Article 23, 1, doi:10.1145/2037826.2037857. - 14. D. Rettenmund, M. Fehr, S. Cavegn, und S. Nebiker, \u201eAccurate visual localization in outdoor and indoor environments exploiting 3D image spaces as spatial reference\u201c, inInternational Archives of the Photogrammetry, Remote Sensing and Spatial Information Sciences \u2013 ISPRS Archives, 2018, S. 355\u2013362, doi: 10.5194/isprs-archives-XLII-1-355-2018. - 15. C. Coutrix und L. Nigay, \u201eMixed reality: a model of mixed interaction\u201c, in Proceedings of the working conference on Advanced visual interfaces, Venezia, Italy, Mai 2006, S. 43\u201350, doi:10.1145/1133265.1133274. - 16.", + "embedding": [ + -0.0019712955690920353, + 0.0023816959001123905, + 0.010845559649169445, + -0.003071992890909314, + 0.0040421863086521626, + 0.014891180209815502, + -0.035909175872802734, + 0.015880262479186058, + -0.007009432651102543, + -0.05558091774582863, + 0.01601763442158699, + 0.02252909168601036, + -0.009609207510948181, + -0.010976064018905163, + -0.008269825018942356, + -0.008716286160051823, + 0.0323374904692173, + 0.0010363039327785373, + 0.004701574333012104, + 0.0018373574130237103, + -0.0293427687138319, + 0.007486802060157061, + 0.003163002198562026, + -0.0006383528816513717, + -0.016883082687854767, + 0.01333887130022049, + 0.03349141776561737, + -0.005371265113353729, + -0.0061508542858064175, + -0.012116256169974804, + 5.881260949536227e-05, + -0.011772824451327324, + -0.021045468747615814, + 0.004522989969700575, + -0.005453689023852348, + -0.0010663541033864021, + -0.00240573612973094, + -0.0220620259642601, + 0.024644630029797554, + -0.014094419777393341, + 0.025647448375821114, + 0.01695176772773266, + -0.012397869490087032, + -0.006569840479642153, + -0.010680712759494781, + 0.028010256588459015, + -0.008324773982167244, + -0.005948229692876339, + -0.01184837892651558, + 0.024617154151201248, + 0.02681511454284191, + 0.03884894773364067, + 0.000866734713781625, + -0.026100777089595795, + -0.011230203323066235, + -0.013957047834992409, + -0.00456076767295599, + 0.032062746584415436, + 0.006865191273391247, + -0.0021017994731664658, + -0.016910556703805923, + -0.010481522418558598, + -0.046789079904556274, + 0.03049669787287712, + -0.031458307057619095, + -0.017748529091477394, + -0.04033257067203522, + 0.006693475879728794, + -0.009258907288312912, + 0.0034325956366956234, + 0.02520785667002201, + 0.021402638405561447, + 0.027639349922537804, + -0.01947942189872265, + 0.03263970836997032, + -0.002704521408304572, + 0.008757498115301132, + -0.01413563173264265, + -0.004577938932925463, + 0.015880262479186058, + 0.0001092540769604966, + -0.017075402662158012, + -0.013249578885734081, + 0.02736460417509079, + 0.019754167646169662, + 0.02751571498811245, + 0.014424114488065243, + 0.00456076767295599, + 0.0012543827760964632, + -0.01909478008747101, + 0.008942950516939163, + 0.018517814576625824, + -0.005735302343964577, + 0.015083502046763897, + -0.022652728483080864, + 0.0004123321850784123, + -0.008029423654079437, + 0.012068175710737705, + -0.0026856325566768646, + -0.016580862924456596, + 0.0032780517358332872, + -0.0008431238238699734, + 0.0016321571310982108, + -0.016031373292207718, + -0.027419554069638252, + 0.009403148666024208, + 0.008640730753540993, + 0.007473064586520195, + 0.004948844667524099, + -0.022872524335980415, + -0.02369675785303116, + 0.022556567564606667, + 0.00046534938155673444, + -0.004701574333012104, + -0.0032763343770056963, + -0.027460765093564987, + 0.026636529713869095, + -0.005202983971685171, + -0.00927264429628849, + -0.02123779058456421, + 0.03992045298218727, + 0.01161484606564045, + 0.009018505923449993, + -0.014163106679916382, + 0.018284281715750694, + 0.025029271841049194, + -0.029095498844981194, + -0.005628838669508696, + -0.018531551584601402, + -0.014121894724667072, + 0.012061307206749916, + -0.016896819695830345, + 0.006353478878736496, + 0.026567844673991203, + 0.004996925126761198, + 0.011862116865813732, + -0.019960226491093636, + -0.0014673101250082254, + -0.04022267088294029, + -0.04865734279155731, + -0.005182377994060516, + 0.022281821817159653, + -0.013867755420506, + -0.010254858061671257, + -0.021622434258461, + 0.01899861916899681, + 0.022034551948308945, + 0.018737610429525375, + 0.041568923741579056, + -0.00469127157703042, + 0.008056897670030594, + -0.019053567200899124, + -0.0005688080564141273, + 0.011388181708753109, + -0.008146190084517002, + -0.009808397851884365, + -0.001813317183405161, + 0.007864576764404774, + -0.01054334081709385, + -0.00276805623434484, + -0.002519068541005254, + 0.005618535913527012, + 0.006899534724652767, + 0.009829003363847733, + 0.019973963499069214, + 0.00815992709249258, + 0.003274617251008749, + -0.0016613488551229239, + 0.005062177311629057, + 0.0003329137107357383, + -0.020908096805214882, + 0.017721055075526237, + -0.024026453495025635, + 0.022858787328004837, + 0.01184837892651558, + 0.03673341125249863, + -0.003994105849415064, + 0.014877443201839924, + -0.024507256224751472, + -0.013998258858919144, + 0.009519915096461773, + 0.009519915096461773, + 0.018888721242547035, + 0.018270544707775116, + 0.002639269456267357, + 0.0076035684905946255, + 0.015811575576663017, + 0.01329765934497118, + -0.0029397718608379364, + -0.004887027200311422, + 0.018037011846899986, + 0.0180919598788023, + 0.003585422644391656, + 0.004856118466705084, + -0.6378480792045593, + -0.0015050875954329967, + 0.015207136981189251, + -0.02344948798418045, + 0.012706957757472992, + 0.03456292301416397, + 0.013723514042794704, + -0.004028448835015297, + -0.016512176021933556, + 0.058136049658060074, + -0.009609207510948181, + 0.009815266355872154, + -0.013771594502031803, + -0.014849969185888767, + -0.03165062889456749, + -0.007023169659078121, + -0.01042657345533371, + -0.007335692178457975, + 0.052311453968286514, + 0.00495914788916707, + -0.04121175408363342, + 0.01099666953086853, + -0.017446309328079224, + -0.006401559337973595, + 0.0017523581627756357, + 0.00965041946619749, + 0.005931058432906866, + -0.0018304887926205993, + 0.011202728375792503, + 0.005515506491065025, + -0.027872882783412933, + 0.005045005585998297, + -0.003585422644391656, + 0.013489981181919575, + 0.04231073334813118, + 0.00827669445425272, + -0.008208007551729679, + 0.02659531868994236, + 0.00904597993940115, + 0.021594958379864693, + -0.0023336156737059355, + 0.006514891516417265, + 0.017075402662158012, + 0.015509356744587421, + -0.0011788278352469206, + 0.019177202135324478, + 0.024562206119298935, + -0.024314934387803078, + -0.0012664028909057379, + -0.010241121053695679, + -0.014891180209815502, + -0.011058486998081207, + 0.006439336575567722, + -0.011862116865813732, + 0.01762489415705204, + 0.0060615623369812965, + 0.015619254671037197, + 0.0008697397424839437, + 0.012775643728673458, + -0.015468144789338112, + -0.011724743992090225, + 0.005961967166513205, + -0.005759342573583126, + -0.01100353803485632, + -0.010392230935394764, + 0.025304017588496208, + -0.023545648902654648, + 0.009162746369838715, + 0.021965865045785904, + -0.010639500804245472, + -0.006319135893136263, + 0.03862915188074112, + -0.020097598433494568, + -0.00796760618686676, + 0.020276183262467384, + 0.01953437179327011, + 0.027941569685935974, + -0.020784461870789528, + 0.0013969067949801683, + 0.022721413522958755, + 0.0037365322932600975, + -0.025166643783450127, + 0.007191451266407967, + 0.008620125241577625, + 0.02728218212723732, + -0.014588961377739906, + -0.03272213414311409, + -0.007768415845930576, + 0.011237071827054024, + 0.0098496088758111, + 0.00815992709249258, + -0.0006945898057892919, + -0.021485060453414917, + -0.011326364241540432, + 0.005577323958277702, + 0.03634876757860184, + 0.0006284792325459421, + 0.041349127888679504, + 0.002309575444087386, + -0.04950905591249466, + -0.01800953596830368, + 0.0010783742181956768, + 0.03923359140753746, + 0.011717875488102436, + -0.0015574608696624637, + 0.015165925957262516, + -0.03533221036195755, + 0.007658517453819513, + 0.02583977021276951, + -0.015152188017964363, + -0.024740789085626602, + -0.019905276596546173, + -0.02475452795624733, + -0.0024126048665493727, + 0.005512072239071131, + -0.027776721864938736, + 0.014060077257454395, + -0.01417684368789196, + -0.005371265113353729, + -0.008345380425453186, + 0.017830953001976013, + -0.017872164025902748, + 0.02790035679936409, + 0.0020588706247508526, + 0.0005224448395892978, + 0.005172075238078833, + -0.006569840479642153, + -0.016512176021933556, + -0.028985600918531418, + -0.004938541911542416, + 0.025249067693948746, + -0.01019304059445858, + 0.025647448375821114, + 0.0032505770213901997, + 0.032145168632268906, + 0.01840791665017605, + 0.011711006984114647, + 0.0018785691354423761, + 0.003329566214233637, + -0.027103597298264503, + -0.031073663383722305, + -0.013057257048785686, + 0.028408635407686234, + -0.027007436379790306, + -0.033134251832962036, + -0.03335404768586159, + -0.017528733238577843, + 0.010399099439382553, + 0.0196992177516222, + -0.015454407781362534, + -0.03439807891845703, + 0.006566406227648258, + 0.00749367056414485, + 0.017418835312128067, + -0.01677318476140499, + -0.002677046926692128, + -0.007294480688869953, + -0.01894366927444935, + -0.006370650138705969, + -0.02736460417509079, + 0.008750629611313343, + 0.020963044837117195, + -0.02421877346932888, + -0.030716493725776672, + 0.0046981400810182095, + 0.010138091631233692, + -0.0037227950524538755, + 0.030331851914525032, + -0.02039981819689274, + -0.02460341714322567, + 0.003764007007703185, + -0.012123124673962593, + -0.020894359797239304, + 0.029837310314178467, + -0.012844329699873924, + 0.006988826673477888, + -0.02001517452299595, + -0.0011882722610607743, + -0.013538061641156673, + -0.015729153528809547, + 0.004540161695331335, + -0.003664411837235093, + -0.016072584316134453, + 0.00028633582405745983, + -0.0004898188635706902, + 0.006741556338965893, + -3.058684887946583e-05, + 0.008654468692839146, + -0.007555488497018814, + 0.004862986970692873, + 0.017597418278455734, + 0.031211035326123238, + -0.014822494238615036, + 0.018888721242547035, + -0.02520785667002201, + 0.009032242931425571, + -0.0317055769264698, + -0.02284504845738411, + -0.012521504424512386, + 0.032996878027915955, + 0.05692717060446739, + 0.018751347437500954, + 0.01100353803485632, + -0.010447179898619652, + 0.021251527592539787, + -0.02107294462621212, + -0.013895229436457157, + -0.0170204546302557, + 0.000490248145069927, + 0.014904918149113655, + 0.023779181763529778, + -0.005378134083002806, + -0.025194119662046432, + -0.01564672961831093, + -0.00850335881114006, + 0.02796904370188713, + -0.00638095336034894, + 0.010591421276330948, + -0.010522734373807907, + 0.019987700507044792, + 0.016800658777356148, + -0.01963053271174431, + 0.02583977021276951, + 0.008757498115301132, + -0.00044173849164508283, + 0.004148649983108044, + 0.001772105460986495, + 0.006837716791778803, + 0.02016628533601761, + -0.013785331510007381, + -0.0007598416996188462, + -0.001259534270502627, + 0.00762417446821928, + 0.006058128084987402, + 0.01578410156071186, + 0.020289920270442963, + 0.00984274037182331, + -0.0015480165602639318, + 0.04137660190463066, + 0.01854528859257698, + 0.017418835312128067, + 0.02038608118891716, + 0.030771443620324135, + -0.0127962501719594, + 0.021498799324035645, + -0.019287101924419403, + 0.023504437878727913, + 0.014602698385715485, + -0.011896459385752678, + 0.021347688511013985, + -0.02895812690258026, + -0.0005782524240203202, + -0.0037571382708847523, + 0.001976446947082877, + 0.025001797825098038, + -0.00389794516377151, + 0.0005348942358978093, + -0.007555488497018814, + 0.010639500804245472, + 0.02497432380914688, + 0.0030891643837094307, + 0.032529812306165695, + 0.007995080202817917, + -0.017185302451252937, + -0.005395305342972279, + -0.007905787788331509, + -0.029562564566731453, + -0.011484342627227306, + -0.013654828071594238, + -0.004622585140168667, + -0.00450238399207592, + -0.014904918149113655, + -0.003499564714729786, + 0.005810857284814119, + 0.015152188017964363, + -0.001701702014543116, + 0.024507256224751472, + -0.003818955970928073, + 0.016979243606328964, + 0.0038910764269530773, + -0.005158337764441967, + -0.03678835928440094, + -0.008125584572553635, + 0.02382039465010166, + -0.006830848287791014, + -0.026609055697917938, + 0.0002852626203093678, + 0.005395305342972279, + -0.039288539439439774, + -0.0312659852206707, + -0.024466045200824738, + 0.008888001553714275, + 0.0112988892942667, + -0.004182992968708277, + -0.01100353803485632, + 0.0019730126950889826, + 0.017363885417580605, + -0.020523453131318092, + -0.0186277125030756, + 0.005515506491065025, + -0.011106567457318306, + -0.005752474069595337, + -0.012583321891725063, + -0.0072257942520082, + 0.033848587423563004, + -0.029370242729783058, + -0.009732842445373535, + -0.0015411479398608208, + -0.003915116656571627, + -0.014094419777393341, + 0.03654108941555023, + -0.003973499871790409, + 0.004255113657563925, + 0.020647088065743446, + 0.0037090578116476536, + 0.02000143751502037, + 0.0001287867344217375, + 0.001751499599777162, + 0.027927832677960396, + -0.019493158906698227, + 0.003516736440360546, + -0.01732267439365387, + -0.004619150888174772, + -0.0024040190037339926, + 0.037667542695999146, + 0.010591421276330948, + -0.006343175657093525, + -0.0012698371428996325, + -0.016223693266510963, + -0.023944029584527016, + -0.0113469697535038, + -0.030221953988075256, + -0.006583577953279018, + -0.009938901290297508, + -0.0076035684905946255, + -0.0032780517358332872, + 0.01356553565710783, + -0.029013074934482574, + 0.02299615927040577, + -0.003205931046977639, + 0.0039700656197965145, + -0.014018865302205086, + -0.004344405606389046, + 0.016525913029909134, + -0.001758368220180273, + -0.004261982161551714, + -0.005158337764441967, + 0.04178871959447861, + 0.008915476500988007, + -0.027529451996088028, + 0.04665170609951019, + 0.021416375413537025, + -0.0035476451739668846, + -0.03373869135975838, + -0.002634118078276515, + 0.021787280216813087, + 0.028491059318184853, + 0.01961679570376873, + -0.005872675217688084, + 0.00046191507135517895, + -0.004900764673948288, + -0.011388181708753109, + 0.03195284679532051, + 0.006875494495034218, + 0.016278643161058426, + 0.017267724499106407, + 0.011436262167990208, + -0.006947614718228579, + 0.003099467372521758, + -0.006411862093955278, + -0.003132093232125044, + 0.01528956089168787, + -0.01655338890850544, + -0.031623151153326035, + 0.005161772016435862, + -0.0009907992789521813, + -0.003006740938872099, + -0.015550568699836731, + -0.010921115055680275, + -0.01563299261033535, + 0.003805218730121851, + -0.01924588903784752, + -0.020647088065743446, + -0.021704858168959618, + -0.006425599567592144, + -0.024795738980174065, + -0.0014982189750298858, + -0.004124609753489494, + -0.014121894724667072, + -0.006796505302190781, + -0.0033484550658613443, + -0.019177202135324478, + -0.008482752367854118, + 0.016539650037884712, + 0.004516121465712786, + -0.026718953624367714, + -0.011820904910564423, + -0.019658006727695465, + 0.003987237345427275, + -0.013805937953293324, + 0.007534882519394159, + -0.00018148196977563202, + -3.804574589594267e-05, + 0.002175637288019061, + -0.012864936143159866, + -0.008791840635240078, + 0.005858937744051218, + -0.03849177807569504, + 0.0023799787741154432, + 0.0014260984025895596, + -0.015674203634262085, + -0.00984274037182331, + 0.008455278351902962, + 0.021897178143262863, + 0.004327234346419573, + -0.011765955947339535, + -0.008523964323103428, + 0.012013226747512817, + -0.00827669445425272, + 0.019960226491093636, + 0.0037159265484660864, + -0.013002308085560799, + 0.025345228612422943, + -0.00678620208054781, + 0.011896459385752678, + -0.01153242215514183, + -0.016003897413611412, + -0.011237071827054024, + 0.019946489483118057, + 0.00881931558251381, + -0.0023851303849369287, + 0.00873689167201519, + 0.004392486065626144, + -0.022570304572582245, + 0.01245281845331192, + 0.0033278490882366896, + 0.018188120797276497, + -0.00958173256367445, + 0.01267948281019926, + 0.008482752367854118, + 0.011896459385752678, + -0.006404993589967489, + 0.016058847308158875, + -0.016745708882808685, + 0.005724999587982893, + -0.03280455619096756, + 0.02428746037185192, + 0.01708914153277874, + 0.013702908530831337, + 0.031046187505126, + -0.00846901535987854, + -0.0011882722610607743, + -0.06775212287902832, + 0.018751347437500954, + -0.014259266667068005, + 0.02276262640953064, + -0.009451229125261307, + -0.009464966133236885, + -0.023394539952278137, + -0.02443857118487358, + -0.01191019732505083, + 0.0059276241809129715, + 0.010962327010929585, + -0.0034686559811234474, + -0.0028333081863820553, + -0.005965401418507099, + 0.012583321891725063, + 0.01379220001399517, + -0.0017102877609431744, + -0.034205757081508636, + -0.0243011973798275, + -0.004224204923957586, + -0.01352432370185852, + 0.03568938001990318, + 0.0010594854829832911, + -0.01978164166212082, + -0.005295710638165474, + 0.003805218730121851, + -0.009279513731598854, + -0.03777744248509407, + -0.0012294839834794402, + -0.03840935602784157, + 0.025262804701924324, + 0.005336922127753496, + 0.032062746584415436, + 0.008352248929440975, + 0.030441749840974808, + 0.021333951503038406, + -0.0060512591153383255, + -0.0081942705437541, + -0.004444000776857138, + 0.005587627179920673, + -0.03549705818295479, + 0.011594240553677082, + 0.0030462355352938175, + 0.006566406227648258, + 0.007040341384708881, + 0.009320724755525589, + 0.013744120486080647, + 0.03442555293440819, + -0.021814756095409393, + -0.00047050087596289814, + -0.00989082083106041, + -0.041266702115535736, + -0.023573122918605804, + 0.004172690212726593, + 0.01337321475148201, + 0.0013556949561461806, + -0.042640428990125656, + -0.01570167765021324, + 0.04404162988066673, + 0.017995798960328102, + 0.009107797406613827, + 0.005385002586990595, + 0.037667542695999146, + -0.014231792651116848, + 0.032145168632268906, + 0.011752218939363956, + -0.00413834722712636, + -0.014396639540791512, + -0.02391655556857586, + -0.0237654447555542, + 0.002786944853141904, + 0.03596412390470505, + -0.01886124536395073, + 0.006047824863344431, + 0.019891539588570595, + 0.0012560999020934105, + 0.009801529347896576, + 0.031678102910518646, + -0.0019111951114609838, + -0.01686934567987919, + -0.02283131144940853, + -0.01816064678132534, + 0.013009177520871162, + -0.016209956258535385, + -0.006659132428467274, + -0.011470604687929153, + 0.011326364241540432, + 0.017061665654182434, + -0.0266640055924654, + 0.04629453644156456, + -0.002773207612335682, + 0.005172075238078833, + 0.010247989557683468, + 0.017721055075526237, + 0.031760524958372116, + -0.0023044238332659006, + 0.032392438501119614, + 0.02667774260044098, + -0.024232512339949608, + -0.022350508719682693, + -0.05104762688279152, + 0.0038017842452973127, + -0.0073425606824457645, + 0.03470029681921005, + 0.00509652029722929, + -0.012198679149150848, + -0.021100418642163277, + 0.019754167646169662, + 0.008578913286328316, + -0.022048288956284523, + -0.025468863546848297, + 0.018298018723726273, + 0.04585494473576546, + 0.0007289329078048468, + -0.02030365727841854, + -0.003798349993303418, + -0.04206346347928047, + 0.012590191327035427, + -0.02030365727841854, + 0.0021687685512006283, + -0.004887027200311422, + -0.0013677150709554553, + 0.0019592754542827606, + 0.020358607172966003, + -0.008523964323103428, + 0.037447746843099594, + 0.005546415224671364, + -0.0015720566734671593, + 0.005323185119777918, + -0.027790458872914314, + 0.005319750402122736, + 0.01475380826741457, + -0.0003887212951667607, + 0.016512176021933556, + -0.011388181708753109, + -0.004955713637173176, + 0.01762489415705204, + -0.01325644738972187, + -0.005216721445322037, + -0.003825824474915862, + 0.004601979162544012, + 0.023628072813153267, + -0.02123779058456421, + -0.00509652029722929, + 0.0012329183518886566, + 0.012439081445336342, + 0.009238301776349545, + 0.003959762863814831, + 0.006401559337973595, + -0.02115536667406559, + -0.013723514042794704, + 0.009588601067662239, + 0.020221233367919922, + 0.0060512591153383255, + -0.00478743202984333, + -0.009643550962209702, + 0.0032797688618302345, + -0.019575582817196846, + -0.009588601067662239, + -0.012967965565621853, + 0.02001517452299595, + -0.04101943224668503, + -0.015207136981189251, + 0.022268084809184074, + -0.021704858168959618, + -0.00038035016041249037, + -0.010083142668008804, + -0.0022151318844407797, + 0.008008817210793495, + 0.026567844673991203, + -0.05297084152698517, + 0.014561486430466175, + 0.035991597920656204, + -0.007122764829546213, + -0.014259266667068005, + 0.020413555204868317, + -0.0005645151832140982, + -0.02758440002799034, + 0.01877882331609726, + 0.0007237814133986831, + -0.022171923890709877, + -0.016924293711781502, + -0.005141166504472494, + 0.0014879161026328802, + 0.006569840479642153, + 0.006525194272398949, + 0.02037234418094158, + 0.0025225027929991484, + -0.011024144478142262, + -0.0018459431594237685, + 0.0030445184092968702, + 0.01019990909844637, + 0.005357528105378151, + -0.004739351570606232, + 0.027309656143188477, + -0.02207576297223568, + 0.037832390516996384, + -0.008723154664039612, + 0.0055944956839084625, + -0.0038773391861468554, + -0.028793279081583023, + -0.013462506234645844, + 0.009279513731598854, + 0.014726333320140839, + -0.021594958379864693, + -0.001842508907429874, + -0.009451229125261307, + -0.00762417446821928, + -0.014060077257454395, + 0.0036712803412228823, + 0.011731612496078014, + -0.004897329956293106, + 0.005570455454289913, + 0.007768415845930576, + 0.020633351057767868, + 0.006360347382724285, + 0.011724743992090225, + 0.00041877152398228645, + -0.0012397869722917676, + 0.0021275568287819624, + -0.022899998351931572, + 0.02276262640953064, + 0.002598057733848691, + 0.025180382654070854, + 0.005086217541247606, + -0.033299095928668976, + -0.02460341714322567, + -0.005007228348404169, + -0.024205036461353302, + -0.024658367037773132, + 0.008304168470203876, + -0.0017102877609431744, + 0.012844329699873924, + 0.02123779058456421, + -0.005900149699300528, + 0.004773695021867752, + 0.008139321580529213, + 0.015495619736611843, + -0.02351817488670349, + -0.007122764829546213, + 0.026650268584489822, + -0.011443130671977997, + 0.021402638405561447, + 0.006521760020405054, + -0.04486586153507233, + -0.012974834069609642, + 0.01195827778428793, + 0.008173665031790733, + 0.007582962978631258, + 0.004014711827039719, + 0.00046148578985594213, + 0.0009478703723289073, + 0.002314726822078228, + 0.0069853924214839935, + -0.0016012483974918723, + -0.009416885673999786, + 0.034837670624256134, + -0.034837670624256134, + 0.005604798439890146, + 0.009801529347896576, + -0.006961352191865444, + -0.027405817061662674, + 0.0013101903023198247, + 0.023504437878727913, + -0.006624789442867041, + -0.0053609623573720455, + 0.010577683337032795, + -0.019864065572619438, + 0.01832549273967743, + -0.006614486686885357, + 0.02821631357073784, + -0.009430622681975365, + 0.0008954970980994403, + 0.00022687928867526352, + 0.026925012469291687, + 0.01276190672069788, + 0.0026633096858859062, + 0.0026427037082612514, + 0.0014561486896127462, + -0.004261982161551714, + 0.012116256169974804, + -0.010701319202780724, + 0.04500323534011841, + -0.03494756668806076, + -0.009334462694823742, + -0.004639756865799427, + 0.01618248224258423, + -0.03027690201997757, + -0.019603058695793152, + -0.01191706582903862, + 0.019891539588570595, + 0.009856478311121464, + -0.021059205755591393, + -0.0018596804002299905, + -0.0012269082944840193, + 0.0014037754153832793, + -0.008256088010966778, + -0.01730893738567829, + 0.014259266667068005, + -0.009149009361863136, + -0.014698859304189682, + 0.014561486430466175, + -0.012123124673962593, + 0.004454303998500109, + 0.007871445268392563, + -0.008915476500988007, + 0.008716286160051823, + 0.009286382235586643, + 0.20320142805576324, + -0.006944180466234684, + 0.010529602877795696, + 0.02306484431028366, + -0.008633862249553204, + -0.011546160094439983, + 0.029535090550780296, + -0.00676216185092926, + 0.016374804079532623, + 0.02774924784898758, + -0.007163976784795523, + 0.015509356744587421, + -0.011456867679953575, + -0.0016312985680997372, + 0.0033003746066242456, + 0.0030548213981091976, + -0.044343847781419754, + -0.005158337764441967, + -0.010138091631233692, + 0.016690760850906372, + 0.015481882728636265, + -0.008482752367854118, + -0.01248716190457344, + -0.024108875542879105, + 0.029068024829030037, + -0.009341331198811531, + 0.005735302343964577, + -0.011168385855853558, + 0.01390896737575531, + 0.004591676406562328, + -0.005986007396131754, + -0.003764007007703185, + 0.005367830861359835, + -0.014767545275390148, + -0.0108112171292305, + -0.003818955970928073, + 0.011182122863829136, + 0.01073566172271967, + 0.030991239473223686, + 0.018188120797276497, + -0.01501481607556343, + 0.004286022391170263, + 0.0052888416685163975, + -0.024040190503001213, + 0.016374804079532623, + 0.030304376035928726, + -0.002922600135207176, + 0.0051652067340910435, + -0.0017532167257741094, + -0.019410736858844757, + -0.0383269302546978, + -0.006834282539784908, + 0.0020588706247508526, + 0.02138890139758587, + -0.016031373292207718, + -0.0024108877405524254, + 0.010893640108406544, + 0.008681942708790302, + -0.007995080202817917, + -0.0016742275329306722, + -0.0170204546302557, + 0.0066179209388792515, + 0.004735917318612337, + 0.031211035326123238, + -0.02316100522875786, + 0.008400329388678074, + -0.032145168632268906, + 0.011223334819078445, + 0.005865806248039007, + -0.030331851914525032, + -0.004495515488088131, + -0.02314726822078228, + -0.020042650401592255, + -0.0074524590745568275, + -0.015234611928462982, + -0.02061961404979229, + 0.012858067639172077, + -0.002817853819578886, + 0.010488391853868961, + 0.031238509342074394, + 0.002019376028329134, + -0.0053609623573720455, + -0.00622640922665596, + -0.01100353803485632, + -0.0045367274433374405, + -0.02904054895043373, + 0.02812015451490879, + 0.009767185896635056, + -0.007706597913056612, + -0.01479502022266388, + -0.01693803071975708, + 0.009664156474173069, + -0.004540161695331335, + -0.021512536332011223, + 0.005285407416522503, + -0.012404737994074821, + 0.031073663383722305, + 0.00369875505566597, + -0.010000718757510185, + 0.009224564768373966, + -0.022103236988186836, + 0.068961001932621, + 0.010921115055680275, + -0.0231335312128067, + 0.00785083882510662, + 0.0038429962005466223, + 0.006130248308181763, + 0.011092830449342728, + -0.00028054043650627136, + -0.007005998399108648, + -0.015385721810162067, + -0.030551647767424583, + 0.0021636171732097864, + -0.01046091690659523, + -0.0027989649679511786, + 0.03426070511341095, + 0.0008903456036932766, + 0.004684402607381344, + 0.014849969185888767, + -0.013050388544797897, + -0.008262956514954567, + 0.010041930712759495, + -0.002618663478642702, + 0.004567636176943779, + 0.0018184686778113246, + -0.037914812564849854, + -0.015880262479186058, + -0.030634069815278053, + -0.01770731620490551, + -0.0329694040119648, + 0.030908815562725067, + -0.008407197892665863, + 0.03417828306555748, + -0.011051618494093418, + -0.010083142668008804, + 0.0018528117798268795, + 0.01479502022266388, + -0.026883801445364952, + -0.027158545330166817, + 0.012597059831023216, + 0.005192681215703487, + -0.01954810880124569, + 0.0076859924010932446, + -0.008173665031790733, + -0.0006950190872885287, + -0.012315445579588413, + 0.0024606850929558277, + 0.011745350435376167, + -0.02147132344543934, + -0.01647096499800682, + -0.003133810590952635, + 0.0009470117511227727, + -0.010041930712759495, + -0.018641449511051178, + 0.03137588128447533, + 0.015921475365757942, + -0.02316100522875786, + -0.00409713527187705, + -0.003733098041266203, + 0.001175393583253026, + -0.017679842188954353, + -0.002659875201061368, + 0.016127532348036766, + -0.00846901535987854, + -0.020894359797239304, + -0.006896100006997585, + -0.1772654950618744, + 0.007953868247568607, + 0.009952638298273087, + -0.04390425607562065, + 0.0196992177516222, + 0.010591421276330948, + 0.029068024829030037, + -0.004650059621781111, + 0.006508023012429476, + 0.013153417967259884, + 0.014032602310180664, + 0.004162386991083622, + -0.005419345572590828, + -0.02130647748708725, + -0.000773578998632729, + 0.004790866281837225, + -0.028408635407686234, + 0.03310677781701088, + 0.021059205755591393, + 0.019754167646169662, + 0.02583977021276951, + -0.020523453131318092, + 0.012789380736649036, + 0.0003213229065295309, + 0.019369523972272873, + 0.007981343194842339, + -0.006229843478649855, + 0.01103101298213005, + -0.002774924738332629, + -0.006346610374748707, + 0.014547749422490597, + -0.00927264429628849, + 0.029782360419631004, + -0.01134010124951601, + -0.02222687378525734, + -0.01364109106361866, + -0.0019712955690920353, + 0.009135272353887558, + -0.012844329699873924, + 0.052696097642183304, + 0.00904597993940115, + 0.01528956089168787, + -0.006940746214240789, + -0.0018047314370051026, + -0.049234308302402496, + 0.012768775224685669, + 0.009938901290297508, + -0.004509252961724997, + -0.011546160094439983, + -0.005110257770866156, + -0.014698859304189682, + -0.008572044782340527, + 0.003403404029086232, + 0.005453689023852348, + 0.0144515885040164, + 0.019053567200899124, + 0.0076859924010932446, + -0.011154647916555405, + 0.007548619527369738, + -0.015358246862888336, + -0.0074799335561692715, + 0.0008122149738483131, + 0.015811575576663017, + -0.01785842701792717, + -0.013462506234645844, + -0.034837670624256134, + -0.007562357001006603, + -0.003029064042493701, + -0.02904054895043373, + 0.00233704992569983, + -0.01015182863920927, + -0.020976783707737923, + -0.0008997899712994695, + -0.003367343684658408, + 0.011628583073616028, + -0.008894870057702065, + -0.006480548530817032, + 0.01640227809548378, + 0.013867755420506, + -0.0029741148464381695, + -0.018050748854875565, + 0.04819027706980705, + -0.008633862249553204, + -0.02382039465010166, + -0.013414425775408745, + -0.021636171266436577, + -0.013503718189895153, + 0.018902458250522614, + 0.00021561046014539897, + -0.0005185812478885055, + 0.00969849992543459, + -0.014437851496040821, + -0.0064565083011984825, + -0.018902458250522614, + 0.0027165415231138468, + 0.0025997748598456383, + -0.0158527884632349, + 0.0002149665233446285, + -0.00900476798415184, + -0.03027690201997757, + 0.026100777089595795, + -0.004186427220702171, + -0.018490340560674667, + 0.011717875488102436, + 0.028491059318184853, + 0.0037365322932600975, + -0.015976423397660255, + 0.002740581752732396, + 0.036211393773555756, + -0.005285407416522503, + -0.037667542695999146, + -0.021498799324035645, + 0.000773578998632729, + 0.002598057733848691, + -0.005312881898134947, + 0.02175980620086193, + 0.010625763796269894, + -0.009911427274346352, + 0.012823724187910557, + -0.010783742181956768, + 0.050992678850889206, + -0.005807423032820225, + -0.021031731739640236, + 0.018916195258498192, + -0.008750629611313343, + -0.01832549273967743, + -0.08401703089475632, + -0.001577208167873323, + 0.022281821817159653, + 0.03335404768586159, + 0.0022563436068594456, + 0.03156820312142372, + -0.01306412648409605, + -0.012528372928500175, + -0.01586652547121048, + 0.016457227990031242, + -0.025482600554823875, + -0.026705216616392136, + -0.011024144478142262, + -0.0001449924020562321, + 0.0144515885040164, + -0.012006357312202454, + 0.0015188248362392187, + -0.028106415644288063, + -0.009361936710774899, + 0.05549849569797516, + 0.005206418223679066, + -0.01138131320476532, + 0.0018854377558454871, + -0.018655188381671906, + -0.025427652522921562, + -0.0013694321969524026, + -0.04055236652493477, + 0.014259266667068005, + 0.0118827223777771, + -0.003513301955536008, + -0.0077752843499183655, + -0.018449129536747932, + 0.020509716123342514, + -0.036678463220596313, + -0.003678149078041315, + -0.0186277125030756, + -0.01623743213713169, + -0.014011996798217297, + 0.00965728797018528, + -0.009506178088486195, + -0.0038429962005466223, + 0.020097598433494568, + 0.0056734848767519, + -0.005920755211263895, + -0.009787791408598423, + -0.014698859304189682, + -0.009567995555698872, + 0.003592291148379445, + -0.017102878540754318, + -0.01954810880124569, + -0.028408635407686234, + -0.011903328821063042, + 0.005965401418507099, + 0.005618535913527012, + -0.005865806248039007, + -0.0022271519992500544, + -0.01046091690659523, + -0.013125943951308727, + -0.027103597298264503, + -0.017336411401629448, + -0.03079891763627529, + 0.006435902323573828, + -0.01993275247514248, + 0.017734792083501816, + 0.012665745802223682, + -0.00708842184394598, + -0.0389588437974453, + -0.011017275974154472, + 0.011360706761479378, + -0.0035819883923977613, + -0.004014711827039719, + 0.01494612917304039, + 0.004777129273861647, + -0.0014716030564159155, + -0.029068024829030037, + 0.01686934567987919, + -0.03002963215112686, + -0.005882977973669767, + 0.03272213414311409, + -0.0186277125030756, + -0.011889590881764889, + -0.02551007643342018, + 0.02244666963815689, + -0.01784469000995159, + 0.021581221371889114, + 0.011449999175965786, + 0.0011771107092499733, + -0.010818085633218288, + 0.008331643417477608, + -0.027927832677960396, + 0.0034119898919016123, + 0.011711006984114647, + 0.008578913286328316, + -0.030771443620324135, + -0.0041040037758648396, + 0.003226537024602294, + 0.00594136118888855, + 0.008180533535778522, + 0.01249403040856123, + 0.011477473191916943, + -0.035661906003952026, + -0.0009221130167134106, + -0.07528013736009598, + 0.015097239054739475, + 0.015481882728636265, + -0.010364755988121033, + -0.03134840726852417, + 0.008572044782340527, + 0.005745605565607548, + 0.018201857805252075, + 0.020221233367919922, + -0.0024606850929558277, + -0.027996517717838287, + -0.007143370807170868, + -0.014822494238615036, + -0.0053815683349967, + -0.026348048821091652, + -0.023971503600478172, + 0.021663645282387733, + 0.009100928902626038, + 0.023559385910630226, + -0.0023525042925029993, + 0.001316200359724462, + 0.010515865869820118, + -0.006360347382724285, + 0.012638271786272526, + -0.006350044626742601, + 0.012473423965275288, + -0.024273723363876343, + -0.014080682769417763, + 0.008908607997000217, + -0.01417684368789196, + 0.0031784565653651953, + -0.008901738561689854, + -0.014836231246590614, + 0.02369675785303116, + 0.005220155697315931, + -0.020042650401592255, + 0.008860527537763119, + 0.03502999246120453, + 0.004423394799232483, + 0.07165350019931793, + -0.030002156272530556, + -0.015536831691861153, + 0.006738121621310711, + -0.004255113657563925, + 0.025633711367845535, + 0.015042290091514587, + 0.014492800459265709, + -0.012610796838998795, + 0.013750988990068436, + 0.002962094731628895, + 0.03486514464020729, + 0.01695176772773266, + -0.011326364241540432, + -0.01158050261437893, + 0.014046339318156242, + -0.012363526038825512, + 0.004158952739089727, + 0.007260137237608433, + 0.006408427841961384, + -0.0038773391861468554, + 0.03472777083516121, + 0.006769030820578337, + 0.022707676514983177, + -0.0008117856923490763, + 0.023037370294332504, + -0.006133682560175657, + -0.02706238627433777, + -0.0025791688822209835, + 0.022199397906661034, + -0.020976783707737923, + -0.0199190154671669, + 0.00017246689822059125, + 0.01953437179327011, + 0.012665745802223682, + 0.01210938673466444, + -0.013277053833007812, + -0.004705008585005999, + 0.009856478311121464, + 0.0011341818608343601, + 0.016498439013957977, + 0.024479782208800316, + -0.011463736183941364, + -0.021333951503038406, + 0.011085961945354939, + 0.016841869801282883, + 0.013860886916518211, + -0.031540729105472565, + -0.005570455454289913, + 0.0011487776646390557, + 0.004478343762457371, + -0.0006726960418745875, + 0.018188120797276497, + 0.0035476451739668846, + -0.009437492117285728, + 0.005130863282829523, + 0.018806297332048416, + 0.004801169503480196, + 0.003976934123784304, + 0.006130248308181763, + 0.03945338726043701, + 0.01931457594037056, + 0.001400341046974063, + 0.006401559337973595, + -0.018146909773349762, + -0.01578410156071186, + 0.025784820318222046, + -0.018435390666127205, + -0.034837670624256134, + -0.0010397381847724319, + 0.010941720567643642, + -0.015509356744587421, + 0.022364245727658272, + -0.00992516428232193, + 0.0009410017519257963, + -0.023188481107354164, + 0.030167004093527794, + 0.0016948333941400051, + -0.01839417964220047, + -0.037969764322042465, + 0.032996878027915955, + 0.027611875906586647, + 0.005972269922494888, + -0.0002466265868861228, + -0.008036292158067226, + 0.034590400755405426, + -0.0023851303849369287, + 0.040360044687986374, + -0.023559385910630226, + -0.011662926524877548, + -0.004316931124776602, + -0.0034480500034987926, + 0.025413915514945984, + 0.009128403849899769, + -0.005175509490072727, + -0.013174024410545826, + -0.009190221317112446, + 0.012088781222701073, + 0.011930802837014198, + 0.010062537156045437, + 0.09302866458892822, + 0.040964484214782715, + -0.004505818709731102, + 0.004351274576038122, + -0.03288697823882103, + -0.010831822641193867, + 0.0063981250859797, + 0.01352432370185852, + -0.01983659155666828, + -0.048794716596603394, + 0.013847149908542633, + -0.015413195826113224, + 0.012878673151135445, + -0.02246040664613247, + -0.00048123308806680143, + -0.010831822641193867, + -0.024232512339949608, + 0.02353191189467907, + -0.012926753610372543, + 0.01732267439365387, + 0.046871501952409744, + -0.0039048136677592993, + 0.002185940044000745, + 0.030084580183029175, + -0.022858787328004837, + 0.0032763343770056963, + -0.004708442836999893, + 0.0026564409490674734, + -0.010797479189932346, + -0.011711006984114647, + 0.0158527884632349, + -0.00017278885934501886, + -0.06962039321660995, + -0.024356147274374962, + 0.024205036461353302, + -0.012548979371786118, + -0.0031715878285467625, + -0.013050388544797897, + 0.024795738980174065, + 0.009938901290297508, + 0.0036953205708414316, + 0.008826184086501598, + -0.006748424842953682, + -0.016429752111434937, + -0.003825824474915862, + -0.006202368997037411, + -0.014046339318156242, + -0.011834641918540001, + -0.02857348322868347 + ], + "metadata": { + "source": "INSPIRER_Schlussbericht.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 5, + "has_images": true, + "image_count": 29, + "detection_class_prob": 0.6591171622276306, + "coordinates": "CoordinatesMetadata(points=((1122.828857421875, 155.53517150878906), (1122.828857421875, 361.06524658203125), (1358.3359375, 361.06524658203125), (1358.3359375, 155.53517150878906)), system=)", + "links": [], + "last_modified": "2025-05-05T22:58:03", + "_known_field_names": "frozenset({'page_number', 'text_as_html', 'emphasized_text_contents', 'subject', 'data_source', 'links', 'coordinates', 'image_path', 'is_continuation', 'header_footer_type', 'sent_from', 'url', 'parent_id', 'detection_class_prob', 'emphasized_text_tags', 'last_modified', 'category_depth', 'page_name', 'attached_to_filename', 'bcc_recipient', 'orig_elements', 'languages', 'filetype', 'link_texts', 'file_directory', 'sent_to', 'key_value_pairs', 'image_base64', 'cc_recipient', 'link_urls', 'signature', 'image_mime_type', 'filename', 'detection_origin', 'table_as_cells', 'email_message_id', 'link_start_indexes'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "INSPIRER_Schlussbericht.pdf", + "parent_id": "1c51aaba3295e535d31a83c2392f0391", + "text_as_html": "
Projektlaufzeit01.08.2021 - 31.07.2024 (verl\u00e4ngert bis 31.10.2024)
F\u00f6rderkennzeichen165V8744
StichworteStadtentwicklung, Digitale B\u00fcrgerbeteiligung, Partizipation
und Akzeptanz, Augmented Reality, Extended Reality (XR),
AR-Tracking, Point Cloud Matching
ProjektleitungProf. Dr.-Ing. Volker Coors
Beteiligte ProfessorenProf. Dr.-Ing. Volker Coors
Gef\u00f6rderte Ma\u00dfnahmeForschungsprogramm zur Mensch-Technik-nteraktion
F\u00f6rderbereichTechnik zum Mensch bringen
FachhochschuleHochschule f\u00fcr Technik Stuttgart (HFT Stuttgart),
", + "id": "351a57f5-fe09-4ea6-8750-b2c5267a9700", + "processing_timestamp": "2025-05-05T23:07:23.860264", + "chunk_number": 11, + "total_chunks": 19, + "chunking_strategy": "hybrid", + "word_count": 245 + } +} \ No newline at end of file diff --git a/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000012.json b/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000012.json new file mode 100644 index 0000000000000000000000000000000000000000..568f4819b9dbdc9fdfaa6053179093ac48128cc4 --- /dev/null +++ b/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000012.json @@ -0,0 +1,1570 @@ +{ + "id": "2b86db2d-408b-1992-e1b5-8a9f00000012", + "content": "C. Coutrix und L. Nigay, \u201eMixed reality: a model of mixed interaction\u201c, in Proceedings of the working conference on Advanced visual interfaces, Venezia, Italy, Mai 2006, S. 43\u201350, doi:10.1145/1133265.1133274. - 16. J. Franco und D. Cabral, \u201eAugmented object selection through smart glasses\u201c, in Proceedings of the 18th International Conference on Mobile and Ubiquitous Multimedia,Pisa, Italy, Nov. 2019, S. 1\u20135, doi: 10.1145/3365610.3368416. - 17. R. J. K. Jacobu. a., \u201eReality-based interaction: A Framework for Post-WIMP Interfaces\u201c, inProceeding of the twenty-sixth annual CHI conference on Human factors in computing systems - CHI \u201908, New York, New York, USA, Apr. 2008, S. 201\u2013210, doi:10.1145/1357054.1357089. - 18. K. Hinckley, R. Pausch, J. Gobble, und N. Kassell, \u201ePassive real-world interface props forneurosurgical visualization\u201c, inCHI\u201994, 1994, S. 452\u2013458. - 19. B. E. Insko, \u201ePassive Haptics Significantly Enhances Virtual Environments\u201c, PhD Thesis, University of North Carolina, Chapel Hill, 2001. - 20. A. Franzluebbers und K. Johnsen, \u201ePerformance Benefits of High-Fidelity Passive Haptic Feedback in Virtual Reality Training\u201c, in Proceedings of the Symposium on Spatial User Interaction, Berlin, Germany, Okt. 2018, S. 16\u201324, doi: 10.1145/3267782.3267790. - 21. A. Zenneru. a., \u201eA Virtual Reality Couch Configurator Leveraging Passive Haptic Feedback\u201d, in Extended Abstracts of the 2020 CHI Conference on Human Factors in Computing Systems, Honolulu, HI, USA, Apr. 2020, S. 1\u20138, doi: 10.1145/3334480.3382953. - 22. P. T. Fischer und E. Hornecker, \u201eUrban HCI: Spatial Aspects in the Design of Shared Encounters for Media Faccades\u201c, in ACM Conference on Human Factors in Computing Systems, CHI, 2012, S. 307\u2013316. - 23. F. Salim und U. Haque, \u201eUrban computing in the wild: A survey on large scale participation and citizen engagement with ubiquitous computing, cyber physical systems, and Internet of Things\u201c,Int. J. Hum.- Comput. Stud., Bd. 81, S. 31\u201348, 2015, doi:10.1016/j.ijhcs.2015.03.003.", + "embedding": [ + -0.008133105002343655, + 0.014808912761509418, + 0.005156055558472872, + -0.018167635425925255, + 0.002381986705586314, + 0.020235609263181686, + -0.029173698276281357, + -0.0032789180986583233, + -0.007300363853573799, + -0.05218511074781418, + 5.849789522471838e-05, + 0.018570126965641975, + -0.006412106566131115, + 0.0005373782478272915, + -0.022969776764512062, + -0.023705363273620605, + 0.03161640465259552, + -0.00011428504512878135, + 0.021984364837408066, + -0.00897278543561697, + -0.015058735385537148, + 0.03430893272161484, + 0.019055893644690514, + -0.01838969998061657, + -0.03647406026721001, + 0.02345554158091545, + 0.015974750742316246, + -0.016557669267058372, + 0.004604364279657602, + -0.019388988614082336, + 0.002201559254899621, + 0.004174114670604467, + -0.015239162370562553, + -0.013629196211695671, + -0.009576522745192051, + 0.009021362289786339, + 0.006974206771701574, + -0.004024915397167206, + 0.009271184913814068, + 0.00809146836400032, + 0.017792902886867523, + 0.016127420589327812, + -0.010770118795335293, + 0.02435767836868763, + -0.0054891519248485565, + 0.02517654001712799, + -0.017640233039855957, + -0.009763889946043491, + -0.01664094440639019, + 0.00021176347217988223, + 0.02650892548263073, + 0.03619648143649101, + -0.011894319206476212, + -0.010985243134200573, + -0.005992266349494457, + -0.01659930683672428, + -0.007369759026914835, + 0.022497888654470444, + 0.010416203178465366, + -0.01668258011341095, + -0.008153923787176609, + 0.009208728559315205, + -0.02983989007771015, + 0.01745980605483055, + -0.020846286788582802, + -0.011595919728279114, + -0.011880439706146717, + -0.0034923080820590258, + 0.015419590286910534, + 0.0006744335405528545, + 0.014135780744254589, + 0.02054094709455967, + 0.02563454769551754, + -0.019971907138824463, + 0.041303958743810654, + 0.010062288492918015, + -0.01220659725368023, + -0.016571547836065292, + -0.003709167707711458, + 0.007369759026914835, + -0.005791020579636097, + -0.029812132939696312, + -0.004989507142454386, + 0.02859077788889408, + 0.024663016200065613, + 0.026619957759976387, + 0.03292103111743927, + 0.016127420589327812, + 0.018250910565257072, + -0.02473241090774536, + -0.006013084668666124, + 0.00877153966575861, + 0.0005564619204960763, + 0.021054470911622047, + -0.0022275825031101704, + 0.02696693316102028, + 0.0037334561347961426, + 0.0027584549970924854, + -0.01262296736240387, + 0.0023282053880393505, + -0.003228606656193733, + -0.0004779587034136057, + -0.04940930753946304, + -0.012581330724060535, + -0.015530621632933617, + -0.0017244680784642696, + 0.004750094376504421, + -0.0020887923892587423, + 0.022137034684419632, + -0.01709895022213459, + -0.03256017714738846, + 0.015558379702270031, + 0.011477948166429996, + -0.020832406356930733, + 0.01130446046590805, + -0.03367049992084503, + 0.016058024019002914, + -0.009680615738034248, + -0.01875055395066738, + -0.029118182137608528, + 0.015433468855917454, + 0.011006061919033527, + 0.0014364784583449364, + -0.006294135004281998, + 0.036140963435173035, + 0.028535261750221252, + -0.026814265176653862, + -0.006422515958547592, + -0.01002759113907814, + -0.02009681984782219, + 0.005308724474161863, + -0.0022622800897806883, + 0.018181513994932175, + 0.031061243265867233, + 0.005274027120321989, + 0.01626621000468731, + -0.04024915397167206, + 0.008431503549218178, + -0.024649137631058693, + -0.01216495968401432, + -0.001557052368298173, + 0.0166131854057312, + -0.006335772108286619, + -0.01576656475663185, + -0.013767986558377743, + 0.03383704647421837, + 0.021221019327640533, + 0.01747368462383747, + 0.0035460893996059895, + 0.0005382457165978849, + 0.007293424569070339, + -0.013053216971457005, + 0.010319050401449203, + 0.036918189376592636, + -0.003127983771264553, + 0.000980205717496574, + 0.00480908015742898, + 0.02983989007771015, + -0.015683291479945183, + -0.006037373095750809, + -0.014461937360465527, + 0.004625183064490557, + -0.008431503549218178, + 0.013074035756289959, + 0.01789005473256111, + 0.006464153062552214, + 0.017265498638153076, + -0.01022189762443304, + 0.005083190742880106, + 0.0018944860203191638, + -0.015128130093216896, + 0.022289704531431198, + -0.0040769618935883045, + 0.02555127441883087, + -0.014919945038855076, + 0.005471803247928619, + 0.01429538894444704, + 0.0038410185370594263, + -0.010457840748131275, + -0.023358387872576714, + -0.0009585197549313307, + -0.014101083390414715, + 0.0003625893732532859, + 0.003553028916940093, + 0.0004059612983837724, + 0.006568245589733124, + 0.02351105771958828, + -0.0030134818516671658, + -0.017168346792459488, + -0.014628485776484013, + 0.025121023878455162, + 0.01926407776772976, + 0.011172610335052013, + -0.012345387600362301, + -0.6386569142341614, + 0.0008388131973333657, + 0.006627231370657682, + -0.01672421768307686, + -0.0004658145771827549, + 0.024080097675323486, + 0.009541825391352177, + -0.004763973411172628, + -0.010374566540122032, + 0.05940220132470131, + -0.0017799841007217765, + 0.037001464515924454, + -0.00299092847853899, + -0.0098402239382267, + -0.030922453850507736, + -0.012026169337332249, + 0.008681326173245907, + -0.0171405877918005, + 0.034864094108343124, + 0.020193971693515778, + -0.03469754755496979, + -0.0030794073827564716, + -0.015586137771606445, + -0.005912461783736944, + -0.027980102226138115, + -0.01196371391415596, + 0.00664111040532589, + -0.003681409638375044, + 0.013504285365343094, + 0.012060867622494698, + -0.019347352907061577, + 0.01750144176185131, + 0.005367710720747709, + 0.017820660024881363, + 0.0410541370511055, + -0.00141999707557261, + 0.007529367692768574, + 0.0252181775867939, + 0.023913549259305, + 0.016502153128385544, + -0.022858744487166405, + 0.027036327868700027, + 0.014656243845820427, + 0.016918523237109184, + -0.011332218535244465, + 0.016807490959763527, + 0.021054470911622047, + -0.02180393785238266, + -0.00511094881221652, + -0.013289160095155239, + -0.006148405373096466, + -0.017376530915498734, + -0.007335061207413673, + -0.006141465622931719, + 0.02569006383419037, + -0.018195394426584244, + 0.024940596893429756, + -0.0004827296070288867, + 0.01702955551445484, + 0.0005352096632122993, + -0.024940596893429756, + -0.02266443707048893, + -0.03378153219819069, + -0.02344166301190853, + 0.0069846161641180515, + 0.03128330782055855, + -0.003743865294381976, + -0.012796455062925816, + -0.01877831295132637, + -0.019097529351711273, + 0.0014729108661413193, + 0.04041570425033569, + -0.02185945399105549, + -0.004840307869017124, + -0.005634881556034088, + 0.0010513357119634748, + 0.021234897896647453, + 0.0051491158083081245, + -0.01433702651411295, + 0.01519752573221922, + 0.002695999341085553, + -0.014212115667760372, + -0.005450984463095665, + 0.022303583100438118, + 0.02728615142405033, + -0.006672338116914034, + -0.03072814829647541, + -0.00480908015742898, + 0.008431503549218178, + -0.011484888382256031, + 0.005204631946980953, + 0.018917102366685867, + -0.026703232899308205, + 0.00022596777125727385, + -0.013802683912217617, + 0.04147050902247429, + -0.011207307688891888, + 0.04061000794172287, + -0.0013150370214134455, + -0.03725128620862961, + -0.007064420729875565, + -0.013247523456811905, + 0.030228503048419952, + 0.014475816860795021, + -0.008084528148174286, + 0.023663727566599846, + -0.01787617616355419, + -0.010312111116945744, + 0.036557335406541824, + -0.029728857800364494, + -0.016960160806775093, + -0.03333740308880806, + -0.008424564264714718, + 0.008528657257556915, + 0.018056603148579597, + -0.028354834765195847, + 0.023733122274279594, + -0.003060323651880026, + 0.012026169337332249, + -0.028507504612207413, + 0.03275448456406593, + -0.018306424841284752, + 0.026272982358932495, + -0.010596631094813347, + 0.009292002767324448, + -0.012303750030696392, + -0.0005699071916751564, + -0.019069772213697433, + -0.02309468761086464, + -0.012227415107190609, + 0.011693073436617851, + -0.015003219246864319, + 0.019777601584792137, + -0.009701434522867203, + -0.005922871176153421, + -0.008008194155991077, + 0.013566740788519382, + -0.004024915397167206, + -0.004278207663446665, + -0.013067096471786499, + -0.038639187812805176, + -0.0011398143833503127, + 0.010992182418704033, + -0.021026713773608208, + -0.023913549259305, + -0.04693884029984474, + -0.03458651527762413, + 0.013636135496199131, + 0.0014399482170119882, + -0.017432047054171562, + -0.01194983534514904, + -0.007466912269592285, + -0.0027914177626371384, + 0.019833117723464966, + -0.008410685695707798, + -0.014586849138140678, + -0.027633126825094223, + -0.008840935304760933, + -0.0032251370139420033, + -0.024121735244989395, + 0.010256594978272915, + 0.03372601419687271, + -0.028132770210504532, + -0.012477237731218338, + -0.000864402623847127, + -0.008140044286847115, + 0.008840935304760933, + 0.013525104150176048, + -0.028896117582917213, + -0.041581541299819946, + 0.014906066469848156, + -0.011769408360123634, + -0.019472263753414154, + 0.019361231476068497, + -0.017334895208477974, + 0.006616821978241205, + 0.011512646451592445, + -0.011845742352306843, + 0.0038236696273088455, + -0.010388445109128952, + -0.008549475111067295, + -0.007279545534402132, + -0.014975461177527905, + -0.009187910705804825, + 0.017376530915498734, + -0.018528489395976067, + 0.028729569166898727, + -0.012040048837661743, + -0.010319050401449203, + 0.010589690878987312, + 0.026675473898649216, + 0.026592200621962547, + -0.009125455282628536, + 0.02903490699827671, + -0.018653402104973793, + -0.009937377646565437, + -0.0035773171111941338, + -0.007994314655661583, + -0.008216379210352898, + 0.018223151564598083, + 0.03944417089223862, + 0.022955896332859993, + 0.011887379921972752, + -0.011873500421643257, + 0.022789347916841507, + -0.021623510867357254, + 0.007126876153051853, + -0.00511788809671998, + 0.021956607699394226, + 0.019055893644690514, + 0.02001354470849037, + -0.011915137991309166, + 0.002869487041607499, + -0.01582208089530468, + -0.0015041386941447854, + 0.03725128620862961, + -0.006547427270561457, + 0.017723506316542625, + -0.02864629402756691, + 0.008653568103909492, + 0.01790393330156803, + -0.029201455414295197, + 0.02650892548263073, + 0.010402324609458447, + -0.005048492923378944, + 0.015253041870892048, + -0.0067278542555868626, + 0.0075224279426038265, + 0.021234897896647453, + -0.0009992893319576979, + -0.003660591086372733, + -0.004798670765012503, + 0.01705731451511383, + 0.015627775341272354, + 0.003112369915470481, + 0.003320555202662945, + 0.012234355323016644, + -0.022539526224136353, + 0.026578320190310478, + 0.02989540621638298, + 0.009035240858793259, + 0.044690441340208054, + 0.0035981356631964445, + -0.0024357677903026342, + 0.03292103111743927, + -0.01580820232629776, + 0.019874755293130875, + 0.009611220099031925, + -0.0024878140538930893, + 0.005957568995654583, + -0.030672632157802582, + 0.0021894152741879225, + -0.023358387872576714, + 0.0012603884097188711, + 0.007459972519427538, + -0.014670122414827347, + 0.01586371846497059, + -0.010874210856854916, + 0.02642565220594406, + 0.027619248256087303, + -0.011713892221450806, + 0.015322436578571796, + 0.027050208300352097, + -0.0020905272103846073, + -0.007088708691298962, + 0.002560678869485855, + -0.038278333842754364, + -0.001252581481821835, + -0.027091844007372856, + -0.007355879992246628, + -0.011110154911875725, + -0.03924986347556114, + -0.0047084572724998, + -0.0017149262130260468, + 0.011727770790457726, + 0.019153045490384102, + 0.007515488658100367, + -0.011623677797615528, + 0.02950679324567318, + 0.01837582141160965, + -0.03919434919953346, + -0.028396472334861755, + -0.014892186969518661, + 0.01787617616355419, + 0.010055349208414555, + -0.020388279110193253, + -0.030866937711834908, + 0.0026352787390351295, + -0.011804105713963509, + -0.020651979371905327, + -0.015100372023880482, + 0.010263534262776375, + 0.015225283801555634, + -0.01343488972634077, + -0.01669645868241787, + 0.01367777306586504, + 0.019555537030100822, + -0.012296810746192932, + -0.022511769086122513, + -0.006401697173714638, + -0.014392542652785778, + 0.002593641635030508, + -0.01662706397473812, + -0.017376530915498734, + -0.0062802559696137905, + -0.025870490819215775, + -0.01321282610297203, + -0.011013001203536987, + -0.016460515558719635, + -0.02130429446697235, + 0.01884770765900612, + 0.029978681355714798, + 0.016765855252742767, + -0.004021445754915476, + 0.010811755433678627, + -0.00607901019975543, + -0.011068517342209816, + -0.003400359535589814, + 0.026328498497605324, + -0.02094343863427639, + 0.016474395990371704, + -0.03303206339478493, + -0.0028764265589416027, + -0.008945027366280556, + 0.03711249679327011, + 0.02180393785238266, + -0.02142920531332493, + 0.01671033911406994, + -0.0020055181812494993, + -0.03644630312919617, + -0.01881994865834713, + -0.01925019919872284, + 0.0022778939455747604, + 0.00025090662529692054, + -0.006668868474662304, + 0.0062767863273620605, + 0.012803394347429276, + 0.004795201122760773, + 0.029256971552968025, + 0.001426069182343781, + 0.008167802356183529, + -0.012033109553158283, + -0.0136847123503685, + -0.002251870697364211, + -0.004201872739940882, + -0.001545775681734085, + -0.0024149492383003235, + 0.008792358450591564, + 0.013379374518990517, + -0.017001798376441002, + 0.036529578268527985, + 0.023413904011249542, + 0.010006772354245186, + -0.04349684342741966, + 0.0187644325196743, + 0.02480180561542511, + 0.008611931465566158, + -0.005225450731813908, + -0.022428493946790695, + 0.009035240858793259, + 0.012754818424582481, + 0.01747368462383747, + 0.01281033456325531, + -0.003487103385850787, + 0.02004130370914936, + 0.021512478590011597, + 0.010214957408607006, + 0.0036848795134574175, + 0.004746624268591404, + -0.0051282974891364574, + 0.00045453786151483655, + 0.008951966650784016, + -0.022789347916841507, + -0.030866937711834908, + 0.013240584172308445, + 0.0014416830381378531, + 0.014170478098094463, + -0.015266920439898968, + -0.017348773777484894, + -0.010319050401449203, + -0.02821604534983635, + -0.02484344318509102, + -0.015933113172650337, + -0.014475816860795021, + -0.004260858986526728, + -0.012914426624774933, + -0.0041532963514328, + -0.005544668063521385, + -0.01662706397473812, + -0.03641854599118233, + -0.00895890686661005, + -0.02140144631266594, + -0.025731701403856277, + -0.011408553458750248, + -0.006030433811247349, + -0.012928306125104427, + -0.010402324609458447, + -0.012740938924252987, + 0.009104636497795582, + -0.010985243134200573, + 0.03278224170207977, + 0.00038969682645983994, + -0.011686134152114391, + 0.0057459138333797455, + -0.008986664935946465, + -0.007591823115944862, + -0.0031887046061456203, + -0.034031353890895844, + 0.015239162370562553, + -0.006481501739472151, + -0.004646001383662224, + -0.023774759843945503, + -0.011887379921972752, + 0.022331342101097107, + 0.0028955102898180485, + -0.021456962451338768, + 0.012095564976334572, + 0.004642531741410494, + 0.016932403668761253, + 0.02438543550670147, + 0.002180740935727954, + -0.005294845439493656, + 0.020763011649250984, + -0.013566740788519382, + 0.008951966650784016, + -0.013122612610459328, + -0.02184557542204857, + -0.023261236026883125, + 0.009271184913814068, + 0.003594665788114071, + -0.03194950148463249, + 0.01519752573221922, + -0.01801496557891369, + -0.012546633370220661, + -0.004413527902215719, + -0.011047698557376862, + 0.018930980935692787, + -0.015336316078901291, + -0.0012222210643813014, + 0.0067035662941634655, + -0.0024253586307168007, + -0.003452406032010913, + 0.031893983483314514, + -0.019971907138824463, + 0.007203210610896349, + -0.023747000843286514, + 0.02183169685304165, + 0.01260908879339695, + -0.0010929726995527744, + 0.023802516981959343, + -0.008507838472723961, + -0.003433322301134467, + -0.028340956196188927, + 0.013643075712025166, + -0.013650014996528625, + 0.018972618505358696, + 0.0009663266828283668, + -0.012976882979273796, + -0.02142920531332493, + -0.0014746456872671843, + 0.0021234899759292603, + 0.010187199339270592, + -0.01047865953296423, + -0.007119936402887106, + -0.001263858168385923, + 0.0007126008858904243, + 0.017001798376441002, + -0.009847164154052734, + -0.007612641900777817, + -0.035280466079711914, + 0.0064502740278840065, + 0.03575235232710838, + -0.027563732117414474, + 0.02691141702234745, + 0.015266920439898968, + -0.008854813873767853, + -0.010818694718182087, + 0.0008318736799992621, + -0.021651269868016243, + -0.046328164637088776, + 0.0019690857734531164, + -0.03033953532576561, + 0.029284728690981865, + 0.033948078751564026, + 0.03602993115782738, + 0.009319760836660862, + 0.000981940538622439, + 0.013552862219512463, + 0.004382300190627575, + -0.0036987585481256247, + -0.009708373807370663, + 0.005156055558472872, + -0.027452699840068817, + 0.01972208544611931, + 0.0023785168305039406, + 0.01561389584094286, + 0.010624389164149761, + 0.012761757709085941, + 0.000994084752164781, + 0.008410685695707798, + -0.014711759984493256, + 0.0010192404733970761, + -0.01707119308412075, + -0.03594665974378586, + -0.003816730109974742, + -0.0027393712662160397, + 0.015433468855917454, + -0.009569583460688591, + -0.03286551684141159, + 0.004899293649941683, + 0.02355269528925419, + 0.0264534093439579, + 0.007952678017318249, + -0.007054011337459087, + 0.028451988473534584, + -0.013351616449654102, + 0.02224806696176529, + -0.009680615738034248, + 0.014642364345490932, + -0.013837381266057491, + -0.019777601584792137, + -0.02048543095588684, + 0.001451224903576076, + 0.016474395990371704, + 0.008896451443433762, + 0.01837582141160965, + 0.03669612482190132, + 0.0017582981381565332, + -0.0014035158092156053, + 0.022525647655129433, + 0.007119936402887106, + -0.005437105428427458, + -0.023247355595231056, + -0.017792902886867523, + -0.005100539419800043, + -0.004437816329300404, + -0.005693867336958647, + -0.01916692405939102, + -0.010714602656662464, + 0.023386146873235703, + -0.017820660024881363, + 0.03902779892086983, + 0.01194983534514904, + -0.016876887530088425, + 0.013150370679795742, + 0.012685422785580158, + 0.0402769111096859, + -0.024149492383003235, + 0.02571782097220421, + -0.004194933455437422, + -0.02688365988433361, + 0.0027411063201725483, + -0.03872246295213699, + 0.004722336307168007, + 0.007459972519427538, + 0.023177960887551308, + 0.030533840879797935, + -0.015711048617959023, + -0.025343088433146477, + 0.012442540377378464, + -0.009763889946043491, + -0.011450190097093582, + -0.022428493946790695, + 0.001963881077244878, + 0.04516232758760452, + 0.009069939143955708, + -0.019388988614082336, + -0.007966556586325169, + -0.01925019919872284, + 0.006061661522835493, + -0.022844864055514336, + 0.009992893785238266, + 0.007397517096251249, + -0.0062802559696137905, + -0.003941641189157963, + 0.04019363969564438, + -0.015322436578571796, + 0.007716734427958727, + -0.0008977990364655852, + 0.01089502964168787, + 0.010325989685952663, + -0.021165503188967705, + -0.0018181514460593462, + -0.0014694411074742675, + -0.015003219246864319, + 0.006526608485728502, + 0.015336316078901291, + -0.00471886619925499, + 0.006547427270561457, + -0.00502073485404253, + 0.021887212991714478, + -0.0003847090410999954, + 0.0003467586066108197, + 0.0290626659989357, + -0.00577714154496789, + -0.00684582581743598, + -0.011422432027757168, + -0.012498056516051292, + 0.02563454769551754, + -0.019569415599107742, + 0.00240800972096622, + -0.011471008881926537, + -0.016460515558719635, + -0.008278834633529186, + 0.017182225361466408, + -0.0003734323545359075, + -0.025801096111536026, + 0.011255884543061256, + 0.01702955551445484, + -0.027105724439024925, + -0.0054024080745875835, + 0.00790410116314888, + 0.00511094881221652, + -0.04269186034798622, + -0.004462104756385088, + 0.0006826742319390178, + -0.004410058259963989, + 0.01575268618762493, + -0.010777058079838753, + 0.006772961001843214, + 0.018098240718245506, + 0.02133205160498619, + -0.0325879342854023, + 0.018681159242987633, + 0.028868358582258224, + -0.011901258490979671, + -0.014711759984493256, + 0.014767276123166084, + 0.016863007098436356, + -0.019805360585451126, + 0.016849128529429436, + -0.013865139335393906, + -0.050630658864974976, + -0.021540237590670586, + -0.0001619941758690402, + 0.012046988122165203, + 0.00704707158729434, + -0.00017923451378010213, + 0.02044379524886608, + -0.011457130312919617, + -0.013053216971457005, + -0.027133481577038765, + 0.006953388452529907, + 0.011977593414485455, + 0.010527235455811024, + 0.01589147560298443, + 0.016974039375782013, + -0.013407132588326931, + 0.033948078751564026, + -0.02179005928337574, + 0.002333410084247589, + 0.009777768515050411, + -0.03211604803800583, + -0.00014095878577791154, + 0.009444672614336014, + -0.00404920382425189, + -0.013913716189563274, + -0.01154040452092886, + -0.004378830548375845, + 0.0024513816460967064, + -0.016085783019661903, + 0.01369165163487196, + 4.226052624289878e-05, + 0.011623677797615528, + -0.007938798516988754, + 0.00013304340245667845, + 0.0013054951559752226, + 0.026217466220259666, + -0.002694264519959688, + -0.0023993353825062513, + -0.00035304753691889346, + -0.002270954428240657, + -0.04399649053812027, + 0.011415492743253708, + -0.002198089612647891, + 0.05762568488717079, + 0.03300430625677109, + -0.012532753869891167, + -0.021887212991714478, + -0.018084362149238586, + -0.02013845555484295, + -0.020665859803557396, + -0.003726516617462039, + 0.009458551183342934, + -0.0061969817616045475, + -0.008875632658600807, + -0.0041879937052726746, + 0.024468710646033287, + 0.006242088507860899, + 0.015322436578571796, + -0.02825768291950226, + -0.01519752573221922, + 0.02983989007771015, + -0.031089002266526222, + 0.029673341661691666, + 0.021873334422707558, + -0.04066552594304085, + 0.009271184913814068, + 0.012435601092875004, + 0.0059159318916499615, + 0.003245955565944314, + 0.007786129601299763, + 0.007189331576228142, + -0.013115672394633293, + 0.021498600021004677, + -0.008806237019598484, + -0.010582751594483852, + -0.003251160029321909, + 0.038306090980768204, + -0.021443083882331848, + 0.002682120306417346, + 0.004604364279657602, + 0.005072781350463629, + -0.013192007318139076, + 0.0013558065984398127, + 0.011734710074961185, + 0.010402324609458447, + -0.00511094881221652, + 0.01757083833217621, + -0.02396906539797783, + 0.015433468855917454, + -0.012518875300884247, + 0.019402869045734406, + -0.01659930683672428, + 0.02220642939209938, + 0.005440575536340475, + 0.011457130312919617, + 0.0023663726169615984, + -0.014323147013783455, + 0.005929810926318169, + 0.0044447556138038635, + -0.00921566877514124, + 0.027369424700737, + -0.007057480979710817, + 0.028479745611548424, + -0.03128330782055855, + -0.006252497900277376, + -0.013074035756289959, + 0.0058812340721488, + -0.022900380194187164, + -0.0023108567111194134, + -0.011623677797615528, + 0.014225994236767292, + 0.022317461669445038, + -0.009500188753008842, + 0.02217867225408554, + -0.003003072692081332, + -0.00013879018661100417, + -0.010388445109128952, + 0.0016212428454309702, + 0.006422515958547592, + -0.022359099239110947, + -0.003063793294131756, + 0.01757083833217621, + -0.01626621000468731, + 0.014225994236767292, + 0.013115672394633293, + -0.006578654982149601, + 0.016557669267058372, + 0.0217623021453619, + 0.18353614211082458, + -0.0015058735152706504, + 0.00674173329025507, + 0.015960872173309326, + -0.009715313091874123, + -0.003827139502391219, + 0.02612031251192093, + -0.003006542334333062, + 0.015266920439898968, + 0.034392207860946655, + -0.00336913182400167, + 0.022012123838067055, + -0.010173320770263672, + 0.005190752912312746, + 0.00037560093915089965, + -0.004389239475131035, + -0.036501821130514145, + -0.018930980935692787, + 0.0030464446172118187, + 0.0010079637868329883, + 0.015933113172650337, + -0.02008293941617012, + 0.012650725431740284, + -0.027175119146704674, + 0.028479745611548424, + -0.011477948166429996, + -0.006158814765512943, + -0.013643075712025166, + 0.002900714986026287, + -0.001459031831473112, + -0.0009255570475943387, + -0.001597822061739862, + 0.004219221882522106, + -0.008153923787176609, + -0.00857723318040371, + -0.00511441845446825, + -0.0010834309505298734, + -0.0005386794218793511, + 0.0235249362885952, + 0.00122742576058954, + -0.007577944081276655, + 0.017376530915498734, + -0.0051282974891364574, + 0.00385142769664526, + 0.006557836197316647, + 0.029256971552968025, + -0.012137201614677906, + -0.02004130370914936, + 0.023302871733903885, + -0.020305003970861435, + -0.02428828366100788, + -0.0018927511991932988, + 0.026231344789266586, + 0.0538228340446949, + -0.010811755433678627, + 0.0036189542151987553, + -0.003457610495388508, + 0.019513899460434914, + -0.009451611898839474, + 0.0009489778894931078, + -0.022858744487166405, + 0.009659796953201294, + 0.011248944327235222, + 0.01843133755028248, + -0.02779967524111271, + 0.009076878428459167, + -0.010943606495857239, + 0.028410350903868675, + -0.012740938924252987, + -0.025093266740441322, + -0.004628652706742287, + -0.0010452636051923037, + -0.024260524660348892, + -0.008840935304760933, + -0.01963881216943264, + -0.016085783019661903, + 0.0209850762039423, + 0.005183813627809286, + 0.020305003970861435, + 0.03775092959403992, + -0.0021720663644373417, + -0.020790770649909973, + 0.0036987585481256247, + -0.0030013378709554672, + -0.013976171612739563, + -0.028035618364810944, + 0.019388988614082336, + -0.0034072990529239178, + -0.001717528561130166, + 0.0008899920503608882, + -0.0001404166396241635, + 0.0017799841007217765, + -0.006398227531462908, + -0.01958329603075981, + 0.015697170048952103, + -0.016460515558719635, + 0.004399648867547512, + -0.014503574930131435, + -0.004902763292193413, + 0.03553028777241707, + -0.031422097235918045, + 0.0701168030500412, + 0.008806237019598484, + -0.004975628107786179, + 0.013587559573352337, + -0.005090130027383566, + 0.00425738887861371, + 0.005627942271530628, + 0.01024271547794342, + 0.005426696501672268, + -0.025356967002153397, + -0.014448058791458607, + -0.00288683595135808, + -0.011325279250741005, + 0.006724384613335133, + 0.01916692405939102, + -0.013004640117287636, + -0.01583596132695675, + 0.02474629133939743, + -0.00255894404835999, + -0.0005785815883427858, + -0.004524560179561377, + -0.01110321469604969, + -0.004125538282096386, + 0.011013001203536987, + -0.035308223217725754, + 0.0014720434555783868, + -0.021998245269060135, + -0.0034662848338484764, + -0.035308223217725754, + 0.037362318485975266, + -0.013601438142359257, + 0.039138831198215485, + -0.0019153045723214746, + -0.005006855819374323, + -0.014239872805774212, + 0.032671209424734116, + -0.021928850561380386, + -0.0003714806225616485, + 0.01515588816255331, + -0.013643075712025166, + -0.008015133440494537, + -0.0009463755995966494, + -0.010596631094813347, + 0.01049947738647461, + -0.0038722462486475706, + 0.015544501133263111, + 0.02389967069029808, + -0.030200744047760963, + -0.010964425280690193, + -0.01673809625208378, + -0.010527235455811024, + 0.013580620288848877, + -0.009680615738034248, + 0.030006438493728638, + 0.00395552022382617, + -0.014684001915156841, + 0.012303750030696392, + -0.0011953305220231414, + 0.019777601584792137, + -0.030977969989180565, + -0.013004640117287636, + 0.016058024019002914, + 0.006689687259495258, + -0.013393253087997437, + 0.002014192519709468, + -0.17887279391288757, + 0.022386856377124786, + 0.008320472203195095, + -0.030977969989180565, + 0.014420300722122192, + -0.0027879478875547647, + -0.0067070359364151955, + -0.0015813406789675355, + -0.012581330724060535, + -0.003436791943386197, + 0.008029012009501457, + 0.014364784583449364, + -0.017348773777484894, + -0.024621378630399704, + 0.01262296736240387, + 0.018264789134263992, + -0.029590068385004997, + 0.002754985122010112, + 0.043802183121442795, + 0.013899837620556355, + 0.02348330058157444, + -0.028410350903868675, + 0.021443083882331848, + 0.0006761684198863804, + 0.01958329603075981, + 0.029229214414954185, + 0.00020558296819217503, + 0.026217466220259666, + -0.003313615685328841, + -0.021554116159677505, + 0.009756949730217457, + -0.018445216119289398, + 0.04238652437925339, + 0.004378830548375845, + -0.009243426844477654, + -0.009000543504953384, + -0.007661218289285898, + 0.021026713773608208, + -0.0004970423760823905, + 0.02432991936802864, + 0.014489695429801941, + 0.012636846862733364, + -0.016307847574353218, + 0.015475105494260788, + -0.03303206339478493, + 0.02779967524111271, + 0.004757033661007881, + -0.0025728230830281973, + -0.021262656897306442, + 0.0007251787465065718, + -0.007786129601299763, + -0.015641653910279274, + -0.004573136568069458, + -0.004559257533401251, + 0.021443083882331848, + 0.02471853233873844, + 0.02607867680490017, + 0.0013375903945416212, + -0.014961582608520985, + -0.0005946292076259851, + 0.01348346658051014, + -0.02525981329381466, + 0.028729569166898727, + -0.011401614174246788, + -0.009333640336990356, + -0.02099895477294922, + 0.008674386888742447, + -0.008702144958078861, + -0.04074879735708237, + -0.0019343881867825985, + -0.023816395550966263, + -0.004933991003781557, + -0.0041879937052726746, + 0.003740395652130246, + 0.001013168366625905, + 0.03986054286360741, + 0.010846452787518501, + 0.002473935019224882, + 0.014434179291129112, + -0.018445216119289398, + -0.007751431781798601, + 0.018917102366685867, + -0.01789005473256111, + -0.01920856162905693, + -0.021165503188967705, + -0.039888300001621246, + -0.020152335986495018, + -0.0027931525837630033, + -0.005537728313356638, + -0.008230257779359818, + 0.011686134152114391, + -0.026231344789266586, + -0.017612474039196968, + -0.023830275982618332, + 0.007661218289285898, + 0.0031019607558846474, + -0.012005351483821869, + -0.015419590286910534, + -0.004031855147331953, + -0.033115338534116745, + 0.014822792261838913, + -0.0038895949255675077, + 0.0004645134031306952, + 0.00012567017984110862, + 0.020291125401854515, + 0.003164416179060936, + -0.011408553458750248, + 0.01669645868241787, + 0.04241428151726723, + -0.011804105713963509, + -0.018695037811994553, + -0.004101249855011702, + 0.021512478590011597, + 0.00982634536921978, + -0.006505790166556835, + 0.023344509303569794, + -0.00769591610878706, + -0.011616738513112068, + 0.005166464950889349, + 0.003660591086372733, + 0.07183779776096344, + -0.0040839011780917645, + -0.026633836328983307, + 0.001107719144783914, + -0.028299318626523018, + -0.018667280673980713, + -0.09743071347475052, + -0.0286740530282259, + -0.011047698557376862, + 0.015114251524209976, + 0.00936833769083023, + 0.049270518124103546, + -0.01925019919872284, + -0.016099661588668823, + 0.0009515802375972271, + 0.0316719226539135, + -0.004243509843945503, + -0.019416747614741325, + -0.00043198445928283036, + -0.006273316685110331, + 0.026606079190969467, + -0.003006542334333062, + 0.009458551183342934, + -0.02695305459201336, + -0.01049947738647461, + 0.04399649053812027, + -0.006630701012909412, + -0.011193428188562393, + 0.007425275165587664, + -0.027674762532114983, + -0.015266920439898968, + -0.02562066912651062, + -0.030228503048419952, + 0.00921566877514124, + 0.002420153934508562, + 0.005499561317265034, + 0.00962509959936142, + -0.027549851685762405, + 0.011124033480882645, + -0.02821604534983635, + -0.028049496933817863, + -0.0023455540649592876, + 0.0006718312506563962, + 0.001321976538747549, + 0.0023802516516298056, + -0.030839180573821068, + 0.0014546946622431278, + -0.0005820513470098376, + 0.0013549391878768802, + 0.013948413543403149, + -0.0010383240878582, + -0.003244220744818449, + -0.017654111608862877, + 0.007203210610896349, + -0.012400902807712555, + -0.025912128388881683, + -0.027869069948792458, + -0.018042724579572678, + -0.0003786369925364852, + 0.017695749178528786, + 0.022345220670104027, + 0.0038444881793111563, + 0.0026717111468315125, + 0.0030186865478754044, + -0.0384448803961277, + -0.0006753010093234479, + -0.014114961959421635, + 0.0094169145449996, + -0.01786229759454727, + 0.00936833769083023, + 0.009236486628651619, + 0.003126248950138688, + -0.02170678600668907, + -0.016516031697392464, + 0.007258726749569178, + -0.00481254979968071, + -0.015711048617959023, + 0.004725805949419737, + 0.0021894152741879225, + 0.003504452295601368, + -0.028923874720931053, + -0.0025311859790235758, + -0.011533464305102825, + -0.03639078885316849, + 0.026633836328983307, + -0.009722252376377583, + -0.025093266740441322, + -0.025315329432487488, + 0.005752853117883205, + -0.0015258246567100286, + 0.03386480733752251, + 0.008750720880925655, + -0.0029631704092025757, + -0.015169767662882805, + -0.015586137771606445, + -0.0200690608471632, + 0.0026508925948292017, + 0.018542369827628136, + -0.009208728559315205, + -0.024274403229355812, + -0.011665315367281437, + -0.025467999279499054, + 0.02179005928337574, + -0.026703232899308205, + 0.0243021622300148, + 0.016155177727341652, + -0.03430893272161484, + 0.009222608059644699, + -0.05471109226346016, + 0.02555127441883087, + 0.024898959323763847, + -0.012220475822687149, + -0.0012534488923847675, + 0.0003569510008674115, + 0.015308558009564877, + 0.014989340677857399, + -0.0002182692551286891, + 0.011144852265715599, + -0.036057692021131516, + -0.0057493834756314754, + -0.0011380795622244477, + 0.014406421221792698, + -0.02262280136346817, + -0.02731390856206417, + 0.0315331295132637, + -0.0016828309744596481, + 0.024107854813337326, + -0.0028972451109439135, + 0.013622256927192211, + -0.001192728173919022, + -0.008500899188220501, + 0.030894694849848747, + -0.007612641900777817, + -0.004240040201693773, + -0.03081142157316208, + -0.008500899188220501, + -0.006720914971083403, + 0.011464069597423077, + 0.0029440869111567736, + -0.01433702651411295, + -0.01580820232629776, + 0.02520429715514183, + 0.0027064087335020304, + -0.012463359162211418, + 0.00942385382950306, + 0.03797299414873123, + 0.006887462921440601, + 0.053628530353307724, + -0.025828853249549866, + -0.03591889888048172, + -0.002591906813904643, + -0.012990761548280716, + 0.00512135773897171, + 0.019153045490384102, + -0.019055893644690514, + 0.0033118808642029762, + 0.007758371531963348, + 0.010069227777421474, + 0.014586849138140678, + 0.008681326173245907, + -0.013809624128043652, + -0.0035131266340613365, + 0.005537728313356638, + 0.004094310570508242, + 0.008493959903717041, + -0.0032268718350678682, + -0.007869403809309006, + -0.00790410116314888, + 0.04177584499120712, + -0.0021772710606455803, + 0.025134902447462082, + -0.006918690633028746, + 0.018070481717586517, + -0.013129551894962788, + -0.01704343594610691, + -0.0013419276801869273, + 0.028896117582917213, + -0.006432925350964069, + -0.01408720389008522, + -0.0026734459679573774, + 0.014309268444776535, + 0.016460515558719635, + 0.01715446636080742, + -0.013761047273874283, + -0.001870197826065123, + 0.010575812309980392, + -0.004288616590201855, + 0.00789022259414196, + 0.02735554613173008, + 0.012116383761167526, + -0.034003596752882004, + -0.001988169504329562, + 0.024260524660348892, + -0.0029961331747472286, + -0.04133171960711479, + -0.004125538282096386, + -0.001165837631560862, + 0.0060859499499201775, + 0.00789022259414196, + 0.015627775341272354, + -0.0007841645856387913, + 0.015239162370562553, + 0.004205342847853899, + -0.0011606329353526235, + 0.008417624980211258, + -0.009805526584386826, + 0.001408720389008522, + 0.011200368404388428, + 0.01262990664690733, + 0.005596714094281197, + -0.00511094881221652, + -0.0341423861682415, + -0.026633836328983307, + 0.018028846010565758, + -0.03494736924767494, + -0.030922453850507736, + 0.01429538894444704, + 0.02739718370139599, + 0.007793068885803223, + 0.02650892548263073, + 0.01587759703397751, + 0.0028972451109439135, + -0.011415492743253708, + 0.019402869045734406, + 0.011054638773202896, + -0.018667280673980713, + -0.030117470771074295, + 0.0401381216943264, + 0.02909042313694954, + 0.008924209512770176, + 0.0166131854057312, + 0.00015765697753522545, + 0.04305271804332733, + 0.005922871176153421, + 0.02942351996898651, + -0.036085449159145355, + 0.018195394426584244, + 0.0002339915808988735, + 0.031089002266526222, + -0.00202286709100008, + -0.0034107689280062914, + -0.00608247984200716, + -0.013400192372500896, + 0.000571208365727216, + -0.012234355323016644, + 0.0023785168305039406, + -0.0018944860203191638, + 0.10614673793315887, + 0.01662706397473812, + 0.01881994865834713, + -0.0006787707679904997, + -0.01797332987189293, + 0.007751431781798601, + 0.005003386177122593, + -0.00809840764850378, + -0.014121901243925095, + -0.04999222606420517, + 0.01194983534514904, + -0.007938798516988754, + 0.014767276123166084, + -0.015294678509235382, + 0.0048715355806052685, + -0.0028295849915593863, + -0.03813954442739487, + 0.014864428900182247, + -0.009521006606519222, + 0.0031297188252210617, + 0.028424231335520744, + -0.006009615026414394, + 0.012504995800554752, + 0.0050380839966237545, + -0.014239872805774212, + -0.002371577313169837, + 0.016363363713026047, + 0.0057493834756314754, + -0.021082229912281036, + -0.010090046562254429, + 0.0001950652658706531, + 0.0020766481757164, + -0.04946482181549072, + -0.031366582959890366, + 0.016307847574353218, + -0.02052706852555275, + 0.0033726014662534, + 0.004826428834348917, + 0.005867355037480593, + -0.0050380839966237545, + 0.0002773635205812752, + 0.03028401918709278, + 0.0006466755294241011, + -0.023302871733903885, + 0.011706952005624771, + -0.009569583460688591, + -0.005152585916221142, + -0.022026002407073975, + -0.023691484704613686 + ], + "metadata": { + "source": "INSPIRER_Schlussbericht.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 5, + "has_images": true, + "image_count": 29, + "detection_class_prob": 0.6591171622276306, + "coordinates": "CoordinatesMetadata(points=((1122.828857421875, 155.53517150878906), (1122.828857421875, 361.06524658203125), (1358.3359375, 361.06524658203125), (1358.3359375, 155.53517150878906)), system=)", + "links": [], + "last_modified": "2025-05-05T22:58:03", + "_known_field_names": "frozenset({'page_number', 'text_as_html', 'emphasized_text_contents', 'subject', 'data_source', 'links', 'coordinates', 'image_path', 'is_continuation', 'header_footer_type', 'sent_from', 'url', 'parent_id', 'detection_class_prob', 'emphasized_text_tags', 'last_modified', 'category_depth', 'page_name', 'attached_to_filename', 'bcc_recipient', 'orig_elements', 'languages', 'filetype', 'link_texts', 'file_directory', 'sent_to', 'key_value_pairs', 'image_base64', 'cc_recipient', 'link_urls', 'signature', 'image_mime_type', 'filename', 'detection_origin', 'table_as_cells', 'email_message_id', 'link_start_indexes'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "INSPIRER_Schlussbericht.pdf", + "parent_id": "1c51aaba3295e535d31a83c2392f0391", + "text_as_html": "
Projektlaufzeit01.08.2021 - 31.07.2024 (verl\u00e4ngert bis 31.10.2024)
F\u00f6rderkennzeichen165V8744
StichworteStadtentwicklung, Digitale B\u00fcrgerbeteiligung, Partizipation
und Akzeptanz, Augmented Reality, Extended Reality (XR),
AR-Tracking, Point Cloud Matching
ProjektleitungProf. Dr.-Ing. Volker Coors
Beteiligte ProfessorenProf. Dr.-Ing. Volker Coors
Gef\u00f6rderte Ma\u00dfnahmeForschungsprogramm zur Mensch-Technik-nteraktion
F\u00f6rderbereichTechnik zum Mensch bringen
FachhochschuleHochschule f\u00fcr Technik Stuttgart (HFT Stuttgart),
", + "id": "351a57f5-fe09-4ea6-8750-b2c5267a9700", + "processing_timestamp": "2025-05-05T23:07:23.860264", + "chunk_number": 12, + "total_chunks": 19, + "chunking_strategy": "hybrid", + "word_count": 289 + } +} \ No newline at end of file diff --git a/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000013.json b/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000013.json new file mode 100644 index 0000000000000000000000000000000000000000..c76e9ff0df7ddcf377ea514e034bf4f8adf7a946 --- /dev/null +++ b/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000013.json @@ -0,0 +1,1570 @@ +{ + "id": "2b86db2d-408b-1992-e1b5-8a9f00000013", + "content": "Stud., Bd. 81, S. 31\u201348, 2015, doi:10.1016/j.ijhcs.2015.03.003. - 24. D. Chen, R. Wang, und J. Peethambaran, \u201eTopologically Aware Building Rooftop Reconstruction from Airborne Laser Scanning Point Clouds\u201c, IEEE Trans. Geosci. Remote Sens., Bd. 55, Nr. 12, S. 7032\u20137052, 2017, doi: 10.1109/TGRS.2017.2738439. - 25. A. Boulch, B. Le Saux, und N. Audebert, \u201eUnstructured point cloud semantic labeling using deep segmentation networks\u201c, in Euro graphics Workshop on 3D Object Retrieval, EG 3DOR,2017, S. 7, doi: 10.2312/3dor.20171047. - 26. J. Teizer, C. Kim, C. T. Haas, K. A. Liapi, und C. H. Caldas, \u201eFramework for real-time three-dimensional modeling of infrastructure\u201c, Transp. Res. Rec., Bd. 1913, Nr. 1, S. 177\u2013186,2005, doi: 10.3141/1913-17. - 27. S. Nebiker, S. Bleisch, und M. Christen, \u201eRich point clouds in virtual globes - A new paradigm in city modeling?\u201c, Comput. Environ. Urban Syst., Bd. 34, Nr. 6, S. 508\u2013517,2010, 10.1016/j.compenvurbsys.2010.05.002. doi:\n- 28. S. Discher, R. Richter, M. Trapp, und J. D\u00f6llner, \u201eService-Oriented Processing and Analysis of Massive Point Clouds in Geoinformation Management\u201c, Cham: Springer, 2019, S. 43\u201361.", + "embedding": [ + 0.0046492042019963264, + 0.014159399084746838, + 0.020062509924173355, + -0.012256687507033348, + 0.015329264104366302, + 0.00909670814871788, + -0.021474415436387062, + -0.011046483181416988, + -0.008733646012842655, + -0.046229831874370575, + 0.01914813369512558, + 0.029179388657212257, + -0.012357538565993309, + 0.013984591700136662, + -0.0171714648604393, + 0.003123001428321004, + 0.03383195400238037, + -0.00447439681738615, + 0.0026540469843894243, + 0.003341510659083724, + -0.01538305077701807, + -0.007873056456446648, + -0.005943451542407274, + -0.004945032298564911, + 0.006346852984279394, + 0.007893226109445095, + 0.04378252848982811, + -0.022671174257993698, + 0.014199739322066307, + -0.015517517924308777, + 0.013097108341753483, + -0.006545192562043667, + -0.015598198398947716, + 0.0004676938406191766, + -0.009405982680618763, + 0.0025027713272720575, + -0.0032305752392858267, + -0.024607501924037933, + 0.0034003399778157473, + 0.0023867932613939047, + 0.01172554213553667, + -0.005603921599686146, + 0.011335587128996849, + -0.010730484500527382, + 0.035848964005708694, + 0.009843001142144203, + 0.029717257246375084, + 0.00615859916433692, + -0.011483501642942429, + 0.015894025564193726, + 0.01601504720747471, + 0.038403838872909546, + -0.0118801798671484, + -0.032056987285614014, + -0.009674916975200176, + -0.006793956737965345, + -0.014078718610107899, + 0.017050445079803467, + -0.011228013783693314, + -0.032567963004112244, + 0.0018606903031468391, + -0.020815527066588402, + -0.023195596411824226, + 0.012444942258298397, + -0.007799099199473858, + -0.013769444078207016, + -0.02410997450351715, + 0.007409144192934036, + 0.006383831612765789, + -0.017131125554442406, + 0.026920339092612267, + 0.03791975975036621, + 0.006972125731408596, + -0.045046523213386536, + 0.020640719681978226, + -0.015974706038832664, + 0.007893226109445095, + -0.004020570311695337, + -0.025010904297232628, + 0.006918339058756828, + -0.011786052957177162, + -0.02097688801586628, + -0.015194796957075596, + 0.02608664147555828, + 0.008834497071802616, + 0.005909834522753954, + 0.0026406000833958387, + 0.004417248535901308, + -0.015557858161628246, + -0.005049244500696659, + 0.003630615072324872, + 0.02023731730878353, + 0.008706753142178059, + -0.003324702149257064, + 0.003328063990920782, + 0.01176588237285614, + -0.010669974610209465, + 0.007247783709317446, + 0.008444542065262794, + -0.017050445079803467, + -0.014280419796705246, + -0.0007979789515957236, + -0.012485282495617867, + -0.006447703577578068, + -0.013399659655988216, + -0.0013816507998853922, + 0.019121238961815834, + 0.006420810241252184, + 0.02127271518111229, + -0.0044475034810602665, + -0.015504071488976479, + 0.02476886287331581, + -0.01710423082113266, + -0.001172386109828949, + 0.025024350732564926, + -0.026328682899475098, + 0.04518098756670952, + 0.005630815401673317, + -0.017870694398880005, + -0.004464311990886927, + 0.03676334023475647, + 0.016445342451334, + 0.019712895154953003, + -0.01957842893898487, + 0.033589914441108704, + 0.01307693775743246, + -0.010723761282861233, + -0.023047683760523796, + -0.0032221709843724966, + -0.002344772219657898, + -0.002099369652569294, + 0.01501998957246542, + 0.03315961733460426, + 0.0048677134327590466, + -0.0046492042019963264, + 0.015329264104366302, + 0.01045482698827982, + 0.004484482109546661, + -0.03902238979935646, + -0.04262611269950867, + -0.003566743340343237, + 0.01855647750198841, + -0.019457407295703888, + -0.013621530495584011, + -0.00035696846316568553, + -0.0032490643206983805, + 0.02410997450351715, + 0.008276457898318768, + 0.018072394654154778, + -0.005593836773186922, + 0.001042961492203176, + 0.0018102650064975023, + 0.0011387693230062723, + 0.0394526831805706, + -0.02807675674557686, + -0.00723433680832386, + 0.0021413906943053007, + 0.0409318245947361, + -0.009231175296008587, + -0.012579409405589104, + 0.0023346871603280306, + 0.01600160077214241, + 0.0037314656656235456, + -0.00103203603066504, + 0.034316036850214005, + 0.0024456228129565716, + -0.008814326487481594, + 0.019121238961815834, + 0.003210405120626092, + 0.004618949256837368, + 0.0014572886284440756, + 0.03399331495165825, + -0.006333406548947096, + -0.00029792895657010376, + -0.004013846628367901, + 0.025199158117175102, + 0.012115497142076492, + 0.015598198398947716, + -0.023262830451130867, + -0.016189854592084885, + 0.00997746828943491, + 0.0005836717900820076, + 0.013675317168235779, + 0.025992514565587044, + -0.011510394513607025, + 0.005274476949125528, + 0.025091584771871567, + 0.015356157906353474, + 0.01052206102758646, + -0.004844181705266237, + 0.017951374873518944, + 0.01457624789327383, + 0.0032339368481189013, + -0.011967583559453487, + -0.6394185423851013, + -0.01052878424525261, + 0.016539469361305237, + -0.010676697827875614, + 0.020425571128726006, + 0.028318798169493675, + 0.01784380152821541, + -0.005452645942568779, + -0.016283981502056122, + 0.04609536752104759, + 0.0008647923823446035, + 0.009520280174911022, + -0.0005248424131423235, + -0.005274476949125528, + -0.031465332955121994, + -0.0007878938922658563, + -0.007523441221565008, + 0.0016497448086738586, + 0.007637738715857267, + 0.002322921296581626, + -0.05021006241440773, + 0.01797826774418354, + -0.013339148834347725, + 0.0024523460306227207, + 6.355677760438994e-05, + 0.013493786565959454, + 0.0365481935441494, + -0.023343510925769806, + -7.789644587319344e-05, + 0.004497929010540247, + -0.010864951647818089, + 0.006121620535850525, + 0.004477758891880512, + 0.03332097828388214, + 0.04208824411034584, + -0.013903911225497723, + -0.0060812802985310555, + 0.02770024910569191, + 0.033589914441108704, + 0.015625091269612312, + 0.0035062329843640327, + 0.004803841933608055, + 0.025333626195788383, + 0.010037978179752827, + -0.007550335023552179, + 0.013453446328639984, + 0.024150313809514046, + -0.016095727682113647, + -0.011315417475998402, + -0.016189854592084885, + -0.021514756605029106, + -0.0028641519602388144, + 0.008094927296042442, + -0.005993876606225967, + 0.007987353019416332, + -0.004652566276490688, + 0.03816179931163788, + -0.01731937937438488, + 0.0026641320437192917, + -0.021434076130390167, + -0.010078318417072296, + -0.0010816208086907864, + -0.021299608051776886, + -0.04254543036222458, + -0.011779328808188438, + 0.01842200942337513, + -0.014737607911229134, + -0.0012698748614639044, + 0.008632795885205269, + 0.0028170885052531958, + 0.0019363281317055225, + 0.0042895046062767506, + 0.016714276745915413, + -0.014428333379328251, + -0.0031179587822407484, + 0.03235281631350517, + 0.010730484500527382, + -0.00869330670684576, + -0.004306313116103411, + 0.01593436673283577, + -0.0026254726108163595, + -0.010132106021046638, + 0.006000600289553404, + 0.006071195472031832, + -0.0013026512460783124, + 0.0034037018194794655, + -0.020842419937253, + -0.0031112355645745993, + -0.006316598039120436, + -0.01457624789327383, + 0.008612626232206821, + 0.022778747603297234, + -0.02661106362938881, + -0.027525441721081734, + -0.012438219040632248, + 0.030308913439512253, + -0.010609464719891548, + 0.026584170758724213, + -0.003065852914005518, + -0.05220017954707146, + -0.02148786373436451, + -0.0002632616087794304, + -0.0066796597093343735, + 0.004252525977790356, + 0.009473215788602829, + 0.02039867825806141, + 0.0018842220306396484, + -0.007752035744488239, + 0.02689344622194767, + -0.01256596203893423, + -0.004407163243740797, + -0.015046882443130016, + -0.017117677256464958, + -0.00478367181494832, + 0.005671155173331499, + -0.026032855734229088, + 0.015840239822864532, + -0.005301370285451412, + -0.016405001282691956, + -0.002606983296573162, + -0.0068006799556314945, + -0.009365642443299294, + 0.01906745322048664, + -0.027592675760388374, + 0.0005933366483077407, + -0.0032356176525354385, + -0.005287923850119114, + -0.0013085341779515147, + -0.006340129766613245, + -0.009735426865518093, + 0.01929604634642601, + -0.010838058777153492, + 0.02549498714506626, + -0.009069814346730709, + 0.02527983859181404, + -0.006088003981858492, + 0.005358519032597542, + 0.0010883441427722573, + -0.006151875481009483, + -0.033939529210329056, + -0.01871783845126629, + 0.01274749357253313, + 0.03630615025758743, + -0.006151875481009483, + -0.03315961733460426, + -0.01140282116830349, + -0.022550154477357864, + 0.024755416437983513, + 0.010427933186292648, + -0.00993712805211544, + -0.02272496186196804, + -0.02002217061817646, + 0.0013270234921947122, + 0.016122620552778244, + 0.0028574285097420216, + -0.0026893445756286383, + 0.003455807687714696, + -0.03203009441494942, + -0.009742151014506817, + -0.0200894046574831, + 0.011557457968592644, + 0.009379088878631592, + -0.019847363233566284, + -0.01038086973130703, + 0.01545028481632471, + -0.012660089880228043, + 0.0067233615554869175, + 0.024728523567318916, + -0.01235081534832716, + -0.03114260919392109, + 0.008020970039069653, + -0.021797137334942818, + -0.01362825371325016, + 0.01952464133501053, + -0.02404274046421051, + 0.00854539219290018, + -0.022415686398744583, + -0.01965910941362381, + -0.02412342093884945, + -0.004998819436877966, + 0.004232355859130621, + 0.017373165115714073, + -0.003442361019551754, + -0.018327882513403893, + -0.0041113356128335, + 0.026274897158145905, + 0.01754797250032425, + 0.0016909254482015967, + -0.00727467704564333, + 0.02237534709274769, + 0.005839239340275526, + 0.04243785887956619, + 0.00030906451866030693, + 0.0387534536421299, + -0.0009521960746496916, + 0.015974706038832664, + 0.006098088808357716, + 0.0028658327646553516, + -0.007987353019416332, + 0.012545792385935783, + 0.02601940929889679, + 0.017494186758995056, + -0.003637338522821665, + 0.0042458027601242065, + 0.023141810670495033, + -0.026274897158145905, + -0.007973906584084034, + -0.01621674746274948, + 0.008847943507134914, + 0.020129743963479996, + 0.016095727682113647, + -0.004195377696305513, + -0.02990551106631756, + -0.019632214680314064, + -0.007758758962154388, + 0.03611789643764496, + -0.004225632641464472, + -0.01957842893898487, + 0.00727467704564333, + 0.01553096529096365, + 0.008135267533361912, + -0.00807475671172142, + 0.031384650617837906, + -0.0005966983153484762, + -0.015557858161628246, + 0.00021829914476256818, + 0.005298008676618338, + -0.0007387293153442442, + 0.020519699901342392, + -0.012740769423544407, + -0.01666048914194107, + 0.01674116961658001, + 0.033805061131715775, + 0.010132106021046638, + 0.012471835128962994, + 0.014361100271344185, + 0.015840239822864532, + -0.0226577278226614, + 0.001550575252622366, + 0.006148513872176409, + -0.0006114057032391429, + 0.03673644736409187, + -0.0023346871603280306, + -0.019820470362901688, + 0.009372365660965443, + -0.0007462931098416448, + 0.027001019567251205, + 0.020990334451198578, + 0.007348633836954832, + -0.006051025353372097, + -0.02587149478495121, + 0.005200520157814026, + -0.011470054276287556, + 0.0037886141799390316, + 0.012438219040632248, + 0.0009362280834466219, + 0.01886575296521187, + 0.008579009212553501, + 0.017709333449602127, + 0.005146733019500971, + 0.004434057045727968, + 0.019551534205675125, + 0.029690364375710487, + 0.014535907655954361, + 0.031384650617837906, + 0.0024506652262061834, + -0.02960968390107155, + 0.00269438698887825, + -0.019336387515068054, + 0.0002481340488884598, + -0.0007483941735699773, + -0.004484482109546661, + 0.0011244822526350617, + 0.00547953974455595, + 0.011006142944097519, + 0.007772205863147974, + 0.0025246222503483295, + 0.004891245625913143, + 0.034020207822322845, + 0.018771624192595482, + -0.0208289735019207, + -0.019538087770342827, + -0.007449484430253506, + 0.030524060130119324, + -0.006992295850068331, + -0.00826301146298647, + -0.003892826149240136, + 0.012075156904757023, + -0.03821558505296707, + -0.024217547848820686, + -0.011308694258332253, + -0.013796337880194187, + -0.009345472790300846, + 0.00205566780641675, + -0.013614807277917862, + -0.004460950382053852, + 0.012505452148616314, + -0.021676117554306984, + -0.010172446258366108, + -0.0029565980657935143, + -0.013016427867114544, + -0.004672736395150423, + -0.000764362164773047, + -0.017440399155020714, + 0.03251417726278305, + -0.019121238961815834, + -0.02470163069665432, + 0.010569124482572079, + -0.02294010855257511, + -0.014347652904689312, + 0.01497964933514595, + -0.017857247963547707, + -0.018085842952132225, + 0.024365462362766266, + -0.0255891140550375, + 0.005640900228172541, + 0.001104312133975327, + -0.025911834090948105, + 0.03692470118403435, + -0.010232956148684025, + -0.01352067943662405, + -0.02244258113205433, + -0.00659561762586236, + 0.025858048349618912, + 0.00898913387209177, + 0.02331661805510521, + -0.010125381872057915, + 0.01753452606499195, + -0.0026170683559030294, + -0.02425788715481758, + -0.02366623282432556, + -0.0219316054135561, + -0.010777547955513, + -0.01797826774418354, + -0.02170301042497158, + 0.013278638944029808, + 0.028022971004247665, + -0.022052625194191933, + 0.026221109554171562, + 0.010824611410498619, + 0.0005601400625891984, + -0.0005517358658835292, + 0.019269153475761414, + 0.0045349071733653545, + -0.03601032495498657, + 0.009621130302548409, + 0.015262030065059662, + 0.04421282559633255, + 0.0292331762611866, + -0.013809784315526485, + 0.039291322231292725, + 0.0306854210793972, + 0.024230994284152985, + -0.020344892516732216, + -0.010105212219059467, + 0.03791975975036621, + 0.027511995285749435, + 0.03090056963264942, + -0.009224452078342438, + 0.002005242509767413, + 0.010878399014472961, + -0.015100670047104359, + 0.041631054133176804, + -0.000879079510923475, + 0.0032339368481189013, + 0.025158818811178207, + 0.012249964289367199, + 0.013487063348293304, + -0.02002217061817646, + -0.014751055277884007, + 0.004239079542458057, + 0.026261448860168457, + -0.02068105898797512, + -0.023303169757127762, + 0.003623891854658723, + -0.010098489001393318, + -0.01395769789814949, + -0.012767663225531578, + -0.011080099269747734, + -0.013567742891609669, + 0.0073015703819692135, + -0.02513192407786846, + -0.003109554760158062, + -0.021528203040361404, + -0.012337367981672287, + -0.01271387655287981, + -0.008942070417106152, + -0.017453845590353012, + -0.03560692071914673, + -0.020936546847224236, + -0.012182731181383133, + -0.019672555848956108, + -0.012841620482504368, + 0.01319795846939087, + 0.029260069131851196, + -0.004592055920511484, + -0.03184184059500694, + 0.005795537494122982, + 0.015988154336810112, + -0.0027347272261977196, + 0.017225252464413643, + 0.00566443195566535, + -0.015046882443130016, + 0.021178588271141052, + -0.005106392782181501, + -0.02476886287331581, + 0.002709514694288373, + -0.03211077302694321, + -0.016405001282691956, + 0.0015421709977090359, + -0.008942070417106152, + -0.01179949939250946, + -0.006017408333718777, + 0.025602560490369797, + -0.014119058847427368, + -0.01774967461824417, + 0.01125490665435791, + 0.018798518925905228, + 0.02659761719405651, + 0.015208243392407894, + 0.00743603752925992, + 0.010360700078308582, + 0.014818288385868073, + -0.02017008513212204, + 0.021837478503584862, + -0.0038323160260915756, + -0.014925862662494183, + -0.006387193221598864, + 0.019753236323595047, + 0.02858773246407509, + -0.004057548474520445, + -0.019403621554374695, + 0.00451473705470562, + 0.014226633124053478, + 0.013359319418668747, + -0.0007567983702756464, + 0.004655927885323763, + -0.009473215788602829, + -0.007967183366417885, + 0.008733646012842655, + -0.0006177088362164795, + -0.012364261783659458, + 0.033213406801223755, + -0.004471035208553076, + -0.01746729202568531, + -0.012976087629795074, + 0.029932405799627304, + 0.008935347199440002, + -0.0007236017845571041, + 0.023209042847156525, + -0.01944396086037159, + -0.01608228124678135, + -0.032917577773332596, + -0.006686382927000523, + -0.009358919225633144, + 0.006202301010489464, + 0.009789214469492435, + -0.002840620232746005, + -0.03127707913517952, + -0.021837478503584862, + 0.0056778788566589355, + 0.011644861660897732, + -0.011154056526720524, + -0.014791395515203476, + -0.021541649475693703, + 0.022200539708137512, + 0.0011412906460464, + 0.0038188693579286337, + -0.0226577278226614, + -0.023491425439715385, + -0.030577847734093666, + 0.02674553170800209, + -0.013386212289333344, + 0.02236190065741539, + 0.0034793394152075052, + 0.008928623981773853, + 0.010992695577442646, + -0.0127878338098526, + -0.018543031066656113, + -0.04706352949142456, + -0.011140610091388226, + -0.011335587128996849, + 0.04079735651612282, + 0.002911215415224433, + 0.02952900342643261, + 0.004057548474520445, + 0.014482120051980019, + 0.017413506284356117, + -0.00743603752925992, + -0.008901730179786682, + 0.01352067943662405, + 0.007852885872125626, + -0.04808548092842102, + 0.004460950382053852, + -0.0042458027601242065, + 0.011429714038968086, + -0.003916358109563589, + 0.009654747322201729, + 0.01092546246945858, + 0.031008142977952957, + -0.007805822417140007, + -0.011712095700204372, + -0.02242913283407688, + -0.04536924138665199, + -0.04273368418216705, + -0.027068253606557846, + 0.010179169476032257, + 0.004430694971233606, + -0.016055386513471603, + 0.006232555955648422, + 0.028749093413352966, + -0.004645842593163252, + 0.005630815401673317, + -0.00409452710300684, + 0.034450504928827286, + -0.016041940078139305, + 0.018287543207406998, + 0.0015959579031914473, + 0.008397478610277176, + -0.029475215822458267, + -0.004511375445872545, + -0.02565634623169899, + 0.001736308098770678, + 0.04370184987783432, + -0.016055386513471603, + 0.004709714557975531, + 0.017225252464413643, + 0.0008664731867611408, + -0.0016505852108821273, + 0.018368223682045937, + 0.020721400156617165, + -0.01913468725979328, + 0.002020370215177536, + -0.014535907655954361, + -0.001115237595513463, + -0.02354521118104458, + -0.0064241718500852585, + -0.0030961078591644764, + 0.02549498714506626, + -0.0036944870371371508, + -0.004067633766680956, + 0.018610265105962753, + -0.01636466197669506, + -0.007409144192934036, + 0.02171645686030388, + 0.01688908413052559, + 0.024365462362766266, + -0.010158998891711235, + 0.029071815311908722, + 0.015100670047104359, + 0.0007525962428189814, + -0.018435457721352577, + -0.025320179760456085, + -0.0019581790547817945, + 0.0024573886767029762, + 0.02952900342643261, + 0.02821122482419014, + 0.0002351075381739065, + -0.02178369089961052, + 0.022160198539495468, + -0.011133886873722076, + -0.006642681080847979, + -0.016445342451334, + 0.024647843092679977, + 0.025629453361034393, + -0.009923681616783142, + -0.01144316140562296, + -0.020560039207339287, + -0.011228013783693314, + 0.009695087559521198, + -0.017857247963547707, + 0.019766682758927345, + -0.024002401158213615, + 0.003349914913997054, + 0.00318855419754982, + 0.02089620754122734, + -0.016687383875250816, + 0.021097907796502113, + -0.0031330864876508713, + 0.009231175296008587, + 0.03966783359646797, + -0.013796337880194187, + -0.01271387655287981, + 0.01579989865422249, + -0.0140652721747756, + 0.02279219590127468, + -0.0038592093624174595, + -0.024594055488705635, + 0.014159399084746838, + 0.007375527638942003, + -0.00215651816688478, + -0.0061350674368441105, + -0.013648423366248608, + 0.027942290529608727, + -0.006518298760056496, + -0.012660089880228043, + -0.017521079629659653, + -0.011987753212451935, + 0.02367967925965786, + 0.008041140623390675, + 0.008249564096331596, + -0.0016127662966027856, + 0.005970344878733158, + -0.011470054276287556, + 0.017211806029081345, + -0.006229194346815348, + 0.009775767102837563, + -0.011160779744386673, + 0.004208824131637812, + -0.022402239963412285, + -0.010111935436725616, + 0.008175607770681381, + 0.010569124482572079, + -0.06615787744522095, + -0.022859428077936172, + 0.016405001282691956, + -0.03165358677506447, + 0.014132505282759666, + 0.014428333379328251, + 9.52826376305893e-05, + -0.019753236323595047, + 0.014737607911229134, + -0.055508073419332504, + 0.008531945757567883, + 0.03114260919392109, + 0.0055904751643538475, + -0.03426225110888481, + 0.008242840878665447, + 0.012122220359742641, + -0.03186873346567154, + 0.008061310276389122, + -0.0053887739777565, + -0.031761158257722855, + -0.01578645221889019, + -0.006323321256786585, + -0.0010664932196959853, + -0.02127271518111229, + -0.005358519032597542, + 0.009197558276355267, + 0.0011202801251783967, + 0.0013808103976771235, + -0.014804841950535774, + -0.02513192407786846, + 0.02710859291255474, + -0.00307089532725513, + -0.001565702841617167, + 0.016270535066723824, + -0.02687999978661537, + 0.03084678202867508, + -0.0010076637845486403, + -0.0026843019295483828, + -0.00458869431167841, + -0.020815527066588402, + -0.015517517924308777, + 0.015046882443130016, + 0.020627273246645927, + -0.015302370302379131, + 0.004259249661117792, + 0.0018573285778984427, + -0.010750655084848404, + -0.005785452667623758, + -0.005735027138143778, + -0.00013940469943918288, + -0.0063939169049263, + 0.02915249578654766, + 0.030954355373978615, + -0.0009051325032487512, + -0.01776312105357647, + -0.010078318417072296, + -0.028964240103960037, + -0.0027195997536182404, + 0.016714276745915413, + -0.013460169546306133, + -0.007093146443367004, + 0.0043600997887551785, + 0.03757014498114586, + 0.02799607627093792, + -0.035257305949926376, + -0.022778747603297234, + -0.007684802170842886, + -0.020506251603364944, + -0.01621674746274948, + -0.005408944096416235, + -0.005906472913920879, + -0.004941670689731836, + 0.01659325510263443, + 0.010985972359776497, + 0.0226577278226614, + -0.0104212099686265, + 0.023733465000987053, + -0.015907473862171173, + -0.02829190529882908, + -0.003326382953673601, + -0.023007342591881752, + 0.012142390944063663, + -0.012814726680517197, + -0.057713333517313004, + -0.021877817809581757, + 0.0057921758852899075, + 0.014199739322066307, + 0.02259049378335476, + -0.0030675337184220552, + 0.010407763533294201, + -0.003674316918477416, + 0.00917738862335682, + -0.010575847700238228, + -0.010273296386003494, + -0.001801860867999494, + 0.012545792385935783, + -0.044185932725667953, + -0.011698649264872074, + 0.020694507285952568, + 0.011564181186258793, + -0.005166903138160706, + -0.006397278513759375, + 0.019551534205675125, + -0.030066872015595436, + 0.0004441620549187064, + 0.017480740323662758, + -0.016606703400611877, + -0.014428333379328251, + 0.0016497448086738586, + 0.009244621731340885, + -0.002151475753635168, + -0.00032398197799921036, + 0.011510394513607025, + -0.001579149509780109, + 0.0018690944416448474, + -0.012465111911296844, + 0.0010875037405639887, + -0.016499128192663193, + 0.01348033919930458, + 0.012834897264838219, + 1.3079038581054192e-05, + 0.03684401884675026, + -0.020008724182844162, + -0.0052812001667916775, + -0.004151675850152969, + 0.01921536773443222, + -0.02747165411710739, + -0.015611644834280014, + -0.03428914397954941, + 0.020291104912757874, + 0.026570724323391914, + -0.028533946722745895, + 0.01399803813546896, + -0.013850124552845955, + -0.026933785527944565, + -0.025347072631120682, + -0.004652566276490688, + 0.00917066540569067, + -0.03813490644097328, + -0.008854666724801064, + -0.0017085742438212037, + -0.021460969001054764, + 0.013749274425208569, + 0.007940289564430714, + -0.00569804897531867, + -0.004666012711822987, + 0.02170301042497158, + 0.18212240934371948, + 0.012001200579106808, + 0.004891245625913143, + 0.02653038501739502, + 0.016041940078139305, + -0.009990914724767208, + 0.032406602054834366, + 0.003761720610782504, + -0.017480740323662758, + 0.02536051906645298, + 0.010037978179752827, + 0.011201119981706142, + -0.0073553575202822685, + 0.0008975687669590116, + 0.02966346964240074, + 0.016794957220554352, + -0.03237970918416977, + -0.016942869871854782, + 8.110054477583617e-05, + 0.023074576631188393, + 0.018744731321930885, + -0.015732666477560997, + 0.008531945757567883, + -0.012586132623255253, + 0.004460950382053852, + -0.008652966469526291, + -0.004091165494173765, + -0.004585332702845335, + 0.022967003285884857, + 0.01081116497516632, + -0.009681640192866325, + 0.012808003462851048, + 0.00902947410941124, + -0.013655146583914757, + -0.00308770383708179, + 0.007193996571004391, + 0.0190136656165123, + 0.01348033919930458, + 0.022052625194191933, + 0.004538268782198429, + -0.017951374873518944, + -0.01493930909782648, + 0.005153456702828407, + -0.020923100411891937, + -0.005745112430304289, + 0.023504871875047684, + -0.015356157906353474, + 0.01740005984902382, + 0.010138829238712788, + -0.0020439019426703453, + -0.03886102885007858, + 0.014804841950535774, + 0.0034894244745373726, + 0.023182149976491928, + -0.01674116961658001, + -0.01657980866730213, + 0.01136920414865017, + 0.00818905420601368, + -0.0050458828918635845, + 0.001579149509780109, + -0.02909870818257332, + 0.015114116482436657, + 0.0009933765977621078, + 0.013023151084780693, + -0.011496948078274727, + 0.00637710839509964, + -0.01099941972643137, + 0.01921536773443222, + -0.0055803898721933365, + -0.023182149976491928, + 0.0032440219074487686, + 0.003001980949193239, + -0.029421430081129074, + 0.014737607911229134, + -0.034100890159606934, + -0.03619857877492905, + 0.02257704734802246, + -0.00997074507176876, + 0.011792776174843311, + 0.026987573131918907, + -0.009896787814795971, + 0.006161960773169994, + 0.007893226109445095, + -0.023141810670495033, + 0.0018573285778984427, + -0.03859209269285202, + 0.04144280031323433, + -0.00383567763492465, + -0.0038222309667617083, + -0.01048844400793314, + -0.03517662733793259, + -0.016942869871854782, + -0.0035095945931971073, + 0.009190835058689117, + 0.01129524689167738, + -0.013332425616681576, + 0.0292331762611866, + -0.0019212005427107215, + -0.0030406401492655277, + 0.027458207681775093, + -0.016969764605164528, + 0.050613462924957275, + 0.03420846164226532, + -0.011140610091388226, + -0.0030406401492655277, + 0.0072141666896641254, + 0.004709714557975531, + 0.018529584631323814, + 0.025347072631120682, + 0.011006142944097519, + -0.023370403796434402, + -0.03297136351466179, + 0.010138829238712788, + -0.012525622732937336, + 0.0010076637845486403, + 0.03523041307926178, + 0.004262611269950867, + -0.025091584771871567, + 0.019201919436454773, + -0.009076537564396858, + 0.007449484430253506, + -0.023222491145133972, + -0.0010732165537774563, + 0.012216347269713879, + -0.005960260052233934, + -0.01914813369512558, + -0.008175607770681381, + -0.02257704734802246, + -0.0047366078943014145, + -0.01571921817958355, + 0.01929604634642601, + -0.01322485227137804, + 0.029636576771736145, + 0.008935347199440002, + 0.008384031243622303, + 0.012727322988212109, + 0.0197263415902853, + -0.023935167118906975, + -0.005802260711789131, + 0.005573666654527187, + 0.01812618225812912, + -0.01819341629743576, + 0.01227685809135437, + 0.0025313454680144787, + -0.01545028481632471, + 0.0033078938722610474, + 0.010515336878597736, + -0.004383631516247988, + -0.02470163069665432, + -0.025091584771871567, + -0.009412705898284912, + -0.01791103556752205, + -0.0013177788350731134, + -0.009157218039035797, + 0.006471235305070877, + -0.005442561116069555, + 0.0018169884569942951, + -0.014898968860507011, + -0.021945051848888397, + 0.0056778788566589355, + -0.027310293167829514, + -0.019968383014202118, + 0.02778092958033085, + 0.007187273353338242, + -0.010024531744420528, + -0.006746893282979727, + -0.17136503756046295, + 0.014898968860507011, + 0.036359939724206924, + -0.01973978988826275, + 0.004131505731493235, + 0.003768444061279297, + 0.022536708042025566, + -0.0018539668526500463, + -0.008128544315695763, + -0.009439599700272083, + 0.019040560349822044, + 0.00746965454891324, + -0.006235917564481497, + -0.014777948148548603, + 0.004995457362383604, + -0.015571304596960545, + -0.010864951647818089, + 0.020479358732700348, + 0.023128362372517586, + 0.015087222680449486, + 0.0016396597493439913, + 0.002260730369016528, + -0.025306731462478638, + 0.0037449123337864876, + -0.004813926760107279, + 0.006306513212621212, + -0.017346272245049477, + 0.025400860235095024, + -0.026570724323391914, + -0.0263017900288105, + 0.002783471718430519, + -0.00425588758662343, + 0.02367967925965786, + -0.006225832737982273, + -0.02135339565575123, + -0.008451265282928944, + 0.001074056955985725, + 0.006931785494089127, + -0.016243640333414078, + 0.04429350420832634, + 0.01446867361664772, + 0.021676117554306984, + 0.006427533458918333, + -0.024715077131986618, + -0.01870439201593399, + 0.012619749642908573, + 0.008390755392611027, + -0.0018976688152179122, + 0.004487843718379736, + -0.02462095022201538, + -0.025911834090948105, + -0.021797137334942818, + 0.011349034495651722, + 0.012801280245184898, + 0.015665432438254356, + 0.04378252848982811, + 0.0030843419954180717, + 0.034450504928827286, + 0.005886302795261145, + -0.02214675210416317, + -0.003072576131671667, + -0.021514756605029106, + -0.01177260559052229, + -0.024513375014066696, + -0.021326502785086632, + -0.03684401884675026, + 0.018892645835876465, + -0.006898168940097094, + -0.040098126977682114, + -0.003348233876749873, + -0.007093146443367004, + -0.014670374803245068, + -0.020627273246645927, + -0.0013429914833977818, + -0.02127271518111229, + 0.03821558505296707, + 0.009876618161797523, + 0.028964240103960037, + 0.02148786373436451, + -0.011967583559453487, + 0.00041936966590583324, + 0.04722489044070244, + 0.018179969862103462, + -5.102926297695376e-05, + -0.009332025423645973, + -0.007597398478537798, + -0.02681276574730873, + -0.0003916358109563589, + -0.002040540101006627, + -0.007241060025990009, + 0.00458869431167841, + -0.04429350420832634, + -0.02125926874577999, + 0.001793456613086164, + 0.002649004338309169, + 0.019820470362901688, + -0.023262830451130867, + 0.009836277924478054, + -0.01395769789814949, + -0.01682185009121895, + 0.005392136052250862, + 0.0026036216877400875, + -0.009883341379463673, + 0.021581990644335747, + 0.016647042706608772, + 0.009695087559521198, + -0.001673276536166668, + 0.014078718610107899, + 0.04496584087610245, + -0.007758758962154388, + -0.026705192402005196, + -0.021165141835808754, + 0.013641700148582458, + -0.014119058847427368, + -0.005893026478588581, + 0.029206281527876854, + -0.018435457721352577, + -0.0016942870570346713, + 0.025051245465874672, + -0.018018608912825584, + 0.04523477703332901, + -0.00637710839509964, + -0.005556858144700527, + 0.015625091269612312, + -0.01450901385396719, + -0.001231215544976294, + -0.08288560062646866, + -0.010992695577442646, + 0.006730084773153067, + 0.026691744104027748, + -0.034531183540821075, + 0.014199739322066307, + -0.01352067943662405, + 0.0033583189360797405, + -0.023800699040293694, + 0.024540269747376442, + -0.0018724561668932438, + -0.037166740745306015, + -0.02396205998957157, + -0.006440980359911919, + 3.889569779857993e-05, + -0.03157290443778038, + -0.012108773924410343, + -0.02361244522035122, + -0.0026019408833235502, + 0.03170737251639366, + 0.019242260605096817, + -0.0027498549316078424, + 0.02090965397655964, + -0.014374546706676483, + -0.003346553072333336, + 0.0031549374107271433, + -0.04149658605456352, + 0.023370403796434402, + 0.002758258953690529, + 0.004931585397571325, + 0.007106592878699303, + -0.01774967461824417, + 0.023720018565654755, + -0.0182740967720747, + -0.0038020608481019735, + -0.0070124659687280655, + -0.002571685705333948, + -0.020264212042093277, + 0.012115497142076492, + -0.008579009212553501, + -0.0002945672604255378, + 0.016337769106030464, + 0.020143190398812294, + -0.0336168073117733, + -0.028964240103960037, + 0.00015799899119883776, + -0.041980668902397156, + 0.025266392156481743, + -0.0006605702801607549, + -0.007120039779692888, + -0.01274749357253313, + -0.013850124552845955, + 0.008814326487481594, + 0.0008084842120297253, + 0.0017615207470953465, + 0.003828954417258501, + -0.009621130302548409, + -0.008464711718261242, + -0.025710133835673332, + -0.012135667726397514, + -0.009358919225633144, + 0.010024531744420528, + -0.03523041307926178, + 0.03684401884675026, + 0.008377308025956154, + 0.007066252641379833, + -0.028856666758656502, + -0.0027111954987049103, + 0.010683421045541763, + -0.010717038065195084, + -0.014051825739443302, + -0.0030692145228385925, + -0.0019228813471272588, + 0.0002540170098654926, + -0.030927462503314018, + -0.009836277924478054, + -0.011893626302480698, + -0.007610844913870096, + 0.0233838502317667, + -0.023639338091015816, + -0.009527003392577171, + -0.021810583770275116, + 0.010703591629862785, + -0.016647042706608772, + 0.02178369089961052, + 0.018771624192595482, + -0.013359319418668747, + -0.02463439665734768, + 0.027377527207136154, + -0.020573485642671585, + 0.03186873346567154, + 0.012397878803312778, + -0.014159399084746838, + -0.02133994922041893, + 0.008854666724801064, + 0.007261230144649744, + -0.022819088771939278, + -0.009190835058689117, + -0.0012698748614639044, + 0.011281800456345081, + -0.03622547164559364, + 0.008296627551317215, + -0.06605030596256256, + 0.02493022382259369, + 0.03751635551452637, + -0.0051332865841686726, + -0.01804550178349018, + -0.005499709863215685, + 0.004776948131620884, + 0.018462350592017174, + -0.0028876836877316236, + 0.0038659328129142523, + -0.027390973642468452, + 0.014683821238577366, + -0.002158198971301317, + 0.005499709863215685, + -0.016781510785222054, + -0.030712315812706947, + 0.03705916926264763, + -0.000999259646050632, + 0.028560839593410492, + -0.017010103911161423, + 0.013567742891609669, + 0.014374546706676483, + -0.017803460359573364, + 0.040743570774793625, + -0.02323593758046627, + 0.00956734362989664, + -0.016902530565857887, + 0.0035331263206899166, + -0.0016060429625213146, + 0.00913704838603735, + 0.0011707053054124117, + -0.02287287637591362, + -0.022671174257993698, + 0.01900021918118, + -0.004084442276507616, + -0.026637958362698555, + -8.356928447028622e-05, + 0.023639338091015816, + -0.004074356984347105, + 0.03528420254588127, + -0.01929604634642601, + -0.03552624210715294, + 0.008968964219093323, + 0.001067333621904254, + -0.015356157906353474, + -0.007792375981807709, + 0.008121820166707039, + 0.00030255125602707267, + 0.028318798169493675, + -0.020183531567454338, + 0.04496584087610245, + 0.011483501642942429, + -0.017359718680381775, + -0.029206281527876854, + 0.020923100411891937, + -0.0013387893559411168, + 0.001227013417519629, + -0.0005143371527083218, + -0.00909670814871788, + -0.02171645686030388, + 0.0511513352394104, + -0.005382050760090351, + 0.023854486644268036, + -0.0006958679296076298, + 0.029771044850349426, + 0.0032658728305250406, + -0.02850705198943615, + 0.0014119058614596725, + -0.005987153388559818, + -0.015235137194395065, + -0.01797826774418354, + -0.0030692145228385925, + 0.017413506284356117, + 0.016620149835944176, + 0.0007933566230349243, + -0.026274897158145905, + -0.0003405802708584815, + 0.002413686830550432, + 0.0006588894175365567, + 0.022819088771939278, + 0.04281436651945114, + 0.01085822843015194, + 0.0023330063559114933, + -0.0026893445756286383, + 0.0055030714720487595, + -0.012902130372822285, + -0.03157290443778038, + -0.0003813406510744244, + -0.009520280174911022, + 0.007328463718295097, + 0.011080099269747734, + 0.026490043848752975, + 0.012808003462851048, + -0.0055904751643538475, + -0.0038894645404070616, + 8.204601908801123e-05, + -0.005264392122626305, + 0.003916358109563589, + 0.020358338952064514, + 0.03493458405137062, + 0.002810365054756403, + 0.00496856402605772, + -0.019901148974895477, + -0.025710133835673332, + -0.02003561705350876, + 0.02061382681131363, + -0.019564982503652573, + -0.029421430081129074, + -0.006985572632402182, + 0.009513556025922298, + 0.014603140763938427, + 0.026557277888059616, + -0.0019363281317055225, + 0.00683093536645174, + 0.0048240115866065025, + 0.018233755603432655, + 0.006286343093961477, + -0.008794156834483147, + -0.03003997914493084, + 0.029179388657212257, + 0.0002626313071232289, + 0.0010253125801682472, + -0.0013892145361751318, + -0.0006130865076556802, + 0.018596816807985306, + 0.014522460289299488, + 0.013655146583914757, + -0.016391554847359657, + -0.0033566381316632032, + -0.005129924975335598, + 0.0039566983468830585, + -0.007456207647919655, + -0.01586713269352913, + 0.0020523059647530317, + -0.01268025953322649, + -0.011544011533260345, + -5.28414202562999e-05, + 0.01994149014353752, + -0.01216928381472826, + 0.10832680016756058, + 0.030147552490234375, + -0.02125926874577999, + 0.007254506926983595, + -0.027444761246442795, + 0.013742550276219845, + 0.0049584791995584965, + 0.020560039207339287, + 0.012263411656022072, + -0.03084678202867508, + -0.002025412628427148, + 0.003138128900900483, + 0.00341546768322587, + -0.010609464719891548, + 0.013742550276219845, + -0.03418156877160072, + -0.014253525994718075, + 0.029340749606490135, + -0.005392136052250862, + 0.017117677256464958, + 0.032406602054834366, + -0.026933785527944565, + -0.0016825211932882667, + 0.0401788093149662, + -0.047171104699373245, + -0.007873056456446648, + -0.006481320597231388, + 0.006733446381986141, + -0.001674957456998527, + -0.02893734723329544, + 0.022187093272805214, + 0.012740769423544407, + -0.05803605541586876, + -0.017010103911161423, + 0.0029683641623705626, + -0.00028070033295080066, + 0.0021850925404578447, + -0.014387993142008781, + 0.015826793387532234, + -0.0016144471010193229, + 0.010797718539834023, + 0.02499745786190033, + -0.017588313668966293, + -0.01820686273276806, + 0.009627853520214558, + -0.013823230750858784, + -0.007893226109445095, + -0.023639338091015816, + -0.012370985001325607 + ], + "metadata": { + "source": "INSPIRER_Schlussbericht.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 5, + "has_images": true, + "image_count": 29, + "detection_class_prob": 0.6591171622276306, + "coordinates": "CoordinatesMetadata(points=((1122.828857421875, 155.53517150878906), (1122.828857421875, 361.06524658203125), (1358.3359375, 361.06524658203125), (1358.3359375, 155.53517150878906)), system=)", + "links": [], + "last_modified": "2025-05-05T22:58:03", + "_known_field_names": "frozenset({'page_number', 'text_as_html', 'emphasized_text_contents', 'subject', 'data_source', 'links', 'coordinates', 'image_path', 'is_continuation', 'header_footer_type', 'sent_from', 'url', 'parent_id', 'detection_class_prob', 'emphasized_text_tags', 'last_modified', 'category_depth', 'page_name', 'attached_to_filename', 'bcc_recipient', 'orig_elements', 'languages', 'filetype', 'link_texts', 'file_directory', 'sent_to', 'key_value_pairs', 'image_base64', 'cc_recipient', 'link_urls', 'signature', 'image_mime_type', 'filename', 'detection_origin', 'table_as_cells', 'email_message_id', 'link_start_indexes'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "INSPIRER_Schlussbericht.pdf", + "parent_id": "1c51aaba3295e535d31a83c2392f0391", + "text_as_html": "
Projektlaufzeit01.08.2021 - 31.07.2024 (verl\u00e4ngert bis 31.10.2024)
F\u00f6rderkennzeichen165V8744
StichworteStadtentwicklung, Digitale B\u00fcrgerbeteiligung, Partizipation
und Akzeptanz, Augmented Reality, Extended Reality (XR),
AR-Tracking, Point Cloud Matching
ProjektleitungProf. Dr.-Ing. Volker Coors
Beteiligte ProfessorenProf. Dr.-Ing. Volker Coors
Gef\u00f6rderte Ma\u00dfnahmeForschungsprogramm zur Mensch-Technik-nteraktion
F\u00f6rderbereichTechnik zum Mensch bringen
FachhochschuleHochschule f\u00fcr Technik Stuttgart (HFT Stuttgart),
", + "id": "351a57f5-fe09-4ea6-8750-b2c5267a9700", + "processing_timestamp": "2025-05-05T23:07:23.860264", + "chunk_number": 13, + "total_chunks": 19, + "chunking_strategy": "hybrid", + "word_count": 169 + } +} \ No newline at end of file diff --git a/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000014.json b/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000014.json new file mode 100644 index 0000000000000000000000000000000000000000..53baa55f98cb5b9538288fe5463d9bb2b5b23c50 --- /dev/null +++ b/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000014.json @@ -0,0 +1,1570 @@ +{ + "id": "2b86db2d-408b-1992-e1b5-8a9f00000014", + "content": "doi:\n- 28. S. Discher, R. Richter, M. Trapp, und J. D\u00f6llner, \u201eService-Oriented Processing and Analysis of Massive Point Clouds in Geoinformation Management\u201c, Cham: Springer, 2019, S. 43\u201361. - 29. P. Goswami, F. Erol, R. Mukhi, R. Pajarola, und E. Gobbetti, \u201eAn efficient multi-resolution framework for high quality interactive rendering of massive point clouds using multi-waykd-trees\u201c, Vis. Comput., Bd. 29, Nr. 1, S. 69\u201383, 2013, doi: 10.1007/s00371-012-0675-2. - 30. 2O. Martinez-Rubiu. a., \u201eUsing modular 3D digital earth applications based on point clouds for the study of complex sites\u201c,Int. J. Digit. Earth, Bd. 9, Nr. 12, S. 1135\u20131152, 2016, doi:10.1080/17538947.2016.1205673. - 31. F. L. Krause, A. Fischer, N. Gross, und J. Barhak, \u201eReconstruction of freeform objects with arbitrary topology using neural networks and subdivision techniques\u201c,CIRP Ann. - Manuf.Technol., Bd. 52, Nr. 1, 2003, doi: 10.1016/S0007-8506(07)60547-2. - 32. 3D-Systems, \u201eGeomagic\u201c, Juli 03, 2020. https://www.3dsystems.com/software/geomagic-design-x. - 33. A. Aldomau. a., \u201eCAD-model recognition and 6DOF pose estimation using 3D cues\u201c, inICCV2011 3D Representation and Recognition (3D RR11), 2011, S. 585\u2013592, doi:10.1109/ICCVW.2011.6130296.", + "embedding": [ + -0.005796655546873808, + 0.01841290481388569, + 0.01715810038149357, + -0.022859280928969383, + 0.008592689409852028, + 0.034561704844236374, + -0.021809063851833344, + -0.01504402607679367, + -0.0024090218357741833, + -0.05990331992506981, + 0.021863620728254318, + 0.030879124999046326, + -0.008142596110701561, + 0.0007770075462758541, + -0.023814024403691292, + 0.012084322050213814, + 0.028478628024458885, + -0.005131744779646397, + 0.0028744591400027275, + 0.012220713309943676, + 0.0041872309520840645, + 0.015248613432049751, + 0.004804404452443123, + -0.020199639722704887, + -0.0001192363488371484, + 0.016476141288876534, + 0.039580926299095154, + -0.01829015277326107, + 0.01207068283110857, + -0.02989710308611393, + 0.007753879297524691, + -0.020745206624269485, + -0.023350292816758156, + 0.0010254965163767338, + -0.024618737399578094, + 0.0065229423344135284, + 0.008326725102961063, + -0.018631132319569588, + -0.01620335690677166, + 0.0019043717766180634, + 0.02006324753165245, + -0.014062004163861275, + 0.007194672245532274, + -0.015644149854779243, + 0.038953524082899094, + 0.010979547165334225, + 0.01850838027894497, + -0.01040670182555914, + 0.0009581530466675758, + 0.006021702196449041, + 0.02834223583340645, + 0.04533666372299194, + -0.0020987302996218204, + -0.030797289684414864, + -0.009288287721574306, + -0.020049607381224632, + -0.0042281486093997955, + -0.0034916324075311422, + -0.014593932777643204, + -0.030033495277166367, + -7.592127076350152e-05, + -0.005397709086537361, + -0.02581898495554924, + 0.006195601541548967, + -0.02236827090382576, + -0.01966771110892296, + -0.014307509176433086, + 0.012561693787574768, + 0.011736522428691387, + -0.008340364322066307, + 0.02916058711707592, + 0.03979915380477905, + -0.0019367649219930172, + -0.04983759671449661, + 0.03352512791752815, + -0.01987229846417904, + 0.004927156958729029, + -0.016039686277508736, + -0.0153577271848917, + 0.014212035574018955, + -0.0014977534301578999, + -0.016135161742568016, + -0.004592997021973133, + 0.02569623291492462, + 0.006256978027522564, + 0.016462501138448715, + 0.008197152987122536, + 0.002952884417027235, + -0.002579511608928442, + 0.003842841600999236, + 0.0031711114570498466, + 0.031615640968084335, + 0.01316863764077425, + -0.003438780549913645, + -0.003077342174947262, + 0.006482024677097797, + -0.0037644163239747286, + 0.009295107796788216, + 0.0023612845689058304, + -0.017799142748117447, + -0.025327974930405617, + -0.00046117507736198604, + -0.02654186263680458, + -0.01071358285844326, + -0.023773107677698135, + -0.011681965552270412, + 0.019995052367448807, + 0.005892129614949226, + 0.003118259599432349, + 0.000664058024995029, + -0.011402362026274204, + 0.023977695032954216, + -0.022531941533088684, + -0.009445138275623322, + 0.011006825603544712, + -0.02864229679107666, + 0.03325234353542328, + -0.005690951831638813, + -0.02037694863975048, + -0.01871296763420105, + 0.03467081859707832, + 0.013154998421669006, + 0.015275891870260239, + -0.013611910864710808, + 0.014484819024801254, + 0.012009305879473686, + -0.006171733140945435, + -0.014621211215853691, + -0.006747988983988762, + -0.006270617246627808, + 0.0017986680613830686, + 0.029133308678865433, + 0.013721024617552757, + 0.016803480684757233, + 0.001343460171483457, + -0.0014031316386535764, + -0.002685215324163437, + 0.01160013023763895, + -0.03019716590642929, + -0.051283352077007294, + 0.018058286979794502, + 0.028615018352866173, + -0.002930720802396536, + -0.02058153599500656, + 0.008619967848062515, + 0.013748303055763245, + 0.02886052429676056, + 0.013918792828917503, + 0.02727837860584259, + -0.009854313917458057, + -0.0032989790197461843, + -0.005373840685933828, + -0.002282859291881323, + 0.038626182824373245, + -0.015084943734109402, + -0.008708622306585312, + 0.00904960185289383, + 0.0266646146774292, + -0.014989469200372696, + -0.026882842183113098, + -0.0013050999259576201, + 0.01902666874229908, + -0.01164786797016859, + 0.008790457621216774, + 0.031233742833137512, + 0.013980168849229813, + 0.0011542163556441665, + 0.024850603193044662, + 0.003986053168773651, + -0.0036894006188958883, + -0.008360822685062885, + 0.037371378391981125, + -0.011040924116969109, + 0.004054248798638582, + -0.013748303055763245, + 0.01944948360323906, + 0.01788097806274891, + 0.011797898449003696, + -0.004613455850630999, + -0.017294492572546005, + 0.007706142030656338, + 0.003887169063091278, + 0.01071358285844326, + 0.031097352504730225, + -0.011484197340905666, + 0.003992872778326273, + 0.014634850434958935, + 0.011566032655537128, + 0.021713590249419212, + -0.018481101840734482, + 0.027251100167632103, + -0.0019862069748342037, + 0.0011022170074284077, + -0.016544336453080177, + -0.6250022053718567, + -0.01316863764077425, + 0.01384377758949995, + -0.023786745965480804, + 0.019681349396705627, + 0.04067206382751465, + 0.015848737210035324, + -0.007160574197769165, + -0.012009305879473686, + 0.04544577747583389, + 0.007187852635979652, + 0.03535277768969536, + -0.003160882042720914, + -0.02500063367187977, + -0.017908254638314247, + -0.0008908095769584179, + 0.0030756371561437845, + -0.02205456979572773, + 0.004234968218952417, + 0.004988533444702625, + -0.052538156509399414, + 0.00799938477575779, + -0.009922510012984276, + 0.005339742638170719, + -0.021358970552682877, + 0.009786118753254414, + 0.03398885950446129, + -0.006386550609022379, + 0.00816305447369814, + 0.021577198058366776, + -0.012268451042473316, + -0.007972106337547302, + 0.0030943909659981728, + 0.026991955935955048, + 0.03761688247323036, + -0.018644772469997406, + -0.00523062888532877, + 0.035079993307590485, + 0.012179795652627945, + 0.018658410757780075, + -0.019735906273126602, + -0.010624928399920464, + 0.04612773656845093, + 0.020404227077960968, + -0.009226911701261997, + 0.019203977659344673, + 0.027332935482263565, + -0.027851223945617676, + -0.01965407095849514, + -0.02266833186149597, + -0.02959704026579857, + -0.0041292645037174225, + 0.01733540929853916, + -0.025750789791345596, + -0.0018924374599009752, + -0.007235589902848005, + 0.033197786659002304, + -0.011531934142112732, + 0.011456918902695179, + -0.006730939727276564, + 0.001582998433150351, + 0.00025999703211709857, + -0.036225687712430954, + -0.023691272363066673, + -0.009697463363409042, + 0.01702170819044113, + -0.016803480684757233, + -0.006345632951706648, + 0.0059159984812140465, + 0.0016639811219647527, + 0.011941109783947468, + 0.009363303892314434, + -0.0028812787495553493, + -0.020199639722704887, + 0.0059159984812140465, + 0.03415253013372421, + 0.021249856799840927, + -0.006973035633563995, + -0.009431499056518078, + 0.011852455325424671, + -0.006611596792936325, + -0.00415654294192791, + -0.012575333006680012, + -0.012711724266409874, + 0.004528210964053869, + 0.018985752016305923, + -0.018999390304088593, + -0.009867953136563301, + 0.0007429096149280667, + -0.00632858369499445, + 0.010345324873924255, + 0.02092251554131508, + -0.0249869953840971, + -0.03300683945417404, + 0.005360201466828585, + 0.0036246145609766245, + -0.008974586613476276, + 0.016339749097824097, + -0.0036928104236721992, + -0.04858279228210449, + -0.02290019951760769, + -0.010372603312134743, + -0.003099505789577961, + -0.0038223827723413706, + 0.002719313371926546, + 0.027155626565217972, + -0.021931815892457962, + 0.006471795495599508, + 0.04806450381875038, + -0.0003966020594816655, + -0.0014977534301578999, + 0.006035341415554285, + -0.020404227077960968, + -0.007174213416874409, + 0.01164786797016859, + -0.024373231455683708, + 0.004477063659578562, + -0.018344709649682045, + -0.03644391521811485, + 0.0061921919696033, + 0.0015148024540394545, + -0.02300931327044964, + 0.009329205378890038, + -0.016162440180778503, + 0.0014772947179153562, + 0.0028403610922396183, + 0.0024431198835372925, + -0.017717307433485985, + -0.003055178327485919, + -0.013993808068335056, + 0.003135308623313904, + -0.013141359202563763, + 0.018562937155365944, + -0.02697831578552723, + 0.02246374450623989, + 0.007542471867054701, + 0.02321390062570572, + -0.005141974426805973, + 0.0054079387336969376, + -0.03963548317551613, + -0.00661500683054328, + 0.016585255041718483, + 0.039553649723529816, + -0.019408566877245903, + -0.019463123753666878, + -0.008088039234280586, + -0.009240550920367241, + 0.011879733763635159, + 0.014239314012229443, + -0.026814647018909454, + -0.026159964501857758, + -0.025982655584812164, + 0.009997526183724403, + 0.01108184177428484, + -0.011265970766544342, + 0.002681805519387126, + -0.00013010507973376662, + -0.022763807326555252, + -0.012016125954687595, + -0.039553649723529816, + 0.006539991125464439, + 0.0072696879506111145, + -0.029078751802444458, + -0.017621831968426704, + 0.010017984546720982, + -0.02134533040225506, + -0.0006738611846230924, + 0.021386248990893364, + -0.01745816320180893, + -0.030906403437256813, + 0.004429326858371496, + -0.027223821729421616, + -0.0015795886283740401, + 0.019722267985343933, + -0.021699950098991394, + 0.017840059474110603, + -0.015616871416568756, + -0.018562937155365944, + -0.007146934978663921, + -0.010106639005243778, + 0.007651585154235363, + 0.0038223827723413706, + -0.005960325710475445, + -0.01859021559357643, + 0.020758846774697304, + 0.007276507560163736, + 0.013550534844398499, + 0.007467456161975861, + -0.030469948425889015, + 0.009881592355668545, + 0.018576575443148613, + 0.04001738131046295, + 0.00831308588385582, + 0.02246374450623989, + -0.007017362862825394, + 0.0012837887043133378, + -0.004838502500206232, + 0.00624333880841732, + -0.007303785998374224, + 0.02864229679107666, + 0.040181051939725876, + 0.016680728644132614, + -0.0023391209542751312, + -0.004974894225597382, + 0.012936770915985107, + -0.03063361905515194, + -0.010168015956878662, + -0.02163175493478775, + 0.013748303055763245, + 0.021168021485209465, + 0.009963427670300007, + -0.0008673671982251108, + -0.022859280928969383, + -0.02092251554131508, + -0.009888412430882454, + 0.041244909167289734, + 0.009888412430882454, + -0.013393684290349483, + 0.00983385555446148, + 0.021699950098991394, + 0.0072696879506111145, + -0.014075643382966518, + 0.04672786220908165, + -0.0026920349337160587, + -0.007433358114212751, + 0.0035120912361890078, + -0.005278366152197123, + 0.01546684093773365, + 0.011204593814909458, + -0.005851212423294783, + -0.016039686277508736, + 0.017621831968426704, + 0.009806577116250992, + 0.013250472024083138, + 0.0008464821730740368, + 0.015194056555628777, + 0.013680106960237026, + -0.011265970766544342, + 0.010788599029183388, + -0.003921267110854387, + -0.005933047272264957, + 0.02100435085594654, + 0.013775581493973732, + -0.02360943704843521, + 0.01703534834086895, + -0.0008550066850148141, + 0.025450726971030235, + 0.014621211215853691, + 0.004668012727051973, + -0.0037234986666589975, + -0.03608929365873337, + -0.0028420661110430956, + -0.014089282602071762, + 0.007924368605017662, + 0.02886052429676056, + -0.010263489559292793, + 0.025041552260518074, + 0.003917857073247433, + 0.020867960527539253, + 0.013557353988289833, + 0.014484819024801254, + 0.01631247065961361, + 0.02948792651295662, + 0.003887169063091278, + 0.020663371309638023, + -0.013127719983458519, + -0.02748296596109867, + 0.005864851176738739, + 0.003428551135584712, + -0.005967145320028067, + 0.0012113305274397135, + -0.021877259016036987, + -0.006025111768394709, + -0.01270490512251854, + -0.008845014497637749, + 0.0073856208473443985, + 0.008688163943588734, + 0.0021566967479884624, + 0.028369514271616936, + 0.022941116243600845, + -0.01458029355853796, + -0.029187865555286407, + -0.012500316835939884, + 0.024796046316623688, + -0.0020867958664894104, + -0.01587601564824581, + -0.0007799911545589566, + 0.009274648502469063, + -0.023254817351698875, + -0.014675768092274666, + 0.007747059687972069, + 0.012404842302203178, + 0.0053261034190654755, + 0.0037712359335273504, + -0.016039686277508736, + -0.012009305879473686, + 0.01714446023106575, + -0.012725363485515118, + -0.018044646829366684, + 0.0025027913507074118, + -0.004517981316894293, + -0.0019486991222947836, + -0.007542471867054701, + -0.01458029355853796, + 0.03709859400987625, + -0.02133169211447239, + -0.024223200976848602, + 0.00043027379433624446, + -0.011040924116969109, + -0.023241179063916206, + 0.003549599088728428, + -0.01859021559357643, + -0.0215226411819458, + 0.02467329427599907, + -0.022422827780246735, + -0.005708000622689724, + 0.016339749097824097, + 8.865472773322836e-05, + 0.04059022665023804, + -0.01050217542797327, + -0.007487914990633726, + -0.030688175931572914, + 0.0065638599917292595, + 0.0018822081619873643, + 0.0075902086682617664, + 0.02142716571688652, + -0.013073163107037544, + 0.011272789910435677, + -0.014075643382966518, + -0.02497335523366928, + -0.02215004339814186, + -0.016230635344982147, + 3.46840315614827e-05, + -0.01348233874887228, + -0.01799008995294571, + 0.02070428989827633, + 0.03082456812262535, + -0.02425047941505909, + 0.022136405110359192, + 0.009656545706093311, + 0.01943584531545639, + -0.0033552406821399927, + 0.006996904034167528, + -0.0031489478424191475, + -0.01880844123661518, + 0.0040883468464016914, + 0.02592809870839119, + 0.0342889204621315, + 0.039035361260175705, + -0.020854320377111435, + 0.034125249832868576, + 0.03628024458885193, + 0.012241172604262829, + -0.02592809870839119, + -0.0031114399898797274, + 0.016557976603507996, + 0.015125861391425133, + 0.029842546209692955, + -0.01478488091379404, + 0.012016125954687595, + 0.020990712568163872, + -0.013598271645605564, + 0.020254196599125862, + 0.0026664615143090487, + -0.0033688796684145927, + 0.005506822839379311, + -0.013782400637865067, + -0.009677005000412464, + -0.007303785998374224, + -0.0126571673899889, + -0.007576569449156523, + 0.039471812546253204, + -0.01976318471133709, + 0.0019128962885588408, + 0.011361444368958473, + -0.006819594651460648, + -0.01432114839553833, + 0.002872754354029894, + -0.008729081600904465, + -0.02120894007384777, + -0.0026988545432686806, + -0.021986372768878937, + 0.0010442504426464438, + -0.02603721246123314, + -0.013830138370394707, + -0.016448862850666046, + -0.02425047941505909, + -0.015548676252365112, + -0.03033355623483658, + -0.0051385643891990185, + -0.014184757135808468, + -0.0053840698674321175, + -0.007597028277814388, + 0.013093621470034122, + 0.025123387575149536, + -0.019094865769147873, + -0.0378623902797699, + -0.00721513107419014, + 0.004405457992106676, + 0.007876631803810596, + 0.015507758595049381, + 0.0035700579173862934, + 0.0017816191539168358, + 0.01358463242650032, + -0.012616249732673168, + -0.024004973471164703, + 0.004695290699601173, + -0.03437075763940811, + 0.009581530466675758, + 0.011156857013702393, + -0.011804718524217606, + -0.019149422645568848, + -0.0029153767973184586, + 0.0217408686876297, + -0.018753886222839355, + -0.003373994491994381, + -0.0022947934921830893, + 0.0215226411819458, + 0.014212035574018955, + 0.02247738465666771, + -0.0094110406935215, + 0.009281468577682972, + 0.010468077845871449, + -0.01944948360323906, + 0.019176701083779335, + 0.0004628799797501415, + -0.004371359944343567, + -0.012786740437150002, + 0.020008690655231476, + 0.022845642641186714, + -0.006301305256783962, + -0.012520776130259037, + 0.020622454583644867, + 0.003022785298526287, + 0.011354625225067139, + -0.010638567619025707, + 0.010263489559292793, + -0.013079982250928879, + 0.002513020532205701, + 0.013871055096387863, + 0.002952884417027235, + -0.010256670415401459, + 0.022395549342036247, + 0.011320526711642742, + -0.013209555298089981, + -0.008156235329806805, + 0.02122257836163044, + 0.005418167915195227, + -0.004947615787386894, + 0.028887802734971046, + -0.02757844142615795, + -0.018753886222839355, + -0.02560075744986534, + -0.001975977560505271, + -0.01777186430990696, + 0.011552393436431885, + 0.0059159984812140465, + -0.011770620010793209, + -0.0363348014652729, + -0.024536902084946632, + 0.0032546515576541424, + 0.015644149854779243, + -0.005823933985084295, + -0.015548676252365112, + -0.006096717435866594, + 0.011838816106319427, + 0.008504034951329231, + 0.002952884417027235, + -0.010734042152762413, + -0.02834223583340645, + -0.029706154018640518, + 0.018549297004938126, + -0.0015105402562767267, + 0.029951659962534904, + -0.008333544246852398, + -0.023036589846014977, + 0.006502483505755663, + -0.029706154018640518, + -0.02790578082203865, + -0.0403447225689888, + -0.008326725102961063, + -0.012991327792406082, + 0.04200870171189308, + 0.012929951772093773, + 0.029187865555286407, + 0.012677626684308052, + 0.020881598815321922, + 0.021809063851833344, + -0.018849359825253487, + -0.012295729480683804, + 0.013277750462293625, + 0.0064342874102294445, + -0.042608827352523804, + 0.004974894225597382, + 0.010515814647078514, + 0.014457540586590767, + -0.0012198550393804908, + 0.011429640464484692, + 0.01520769577473402, + 0.018440183252096176, + -0.008954127319157124, + -0.021236218512058258, + -0.030770011246204376, + -0.043236229568719864, + -0.02404589019715786, + -0.010570371523499489, + 0.021072547882795334, + 0.004136084113270044, + -0.016026047989726067, + 0.006574089173227549, + 0.03889896720647812, + 0.003999692387878895, + 0.003805333748459816, + 0.009697463363409042, + 0.026719171553850174, + -0.012466219253838062, + 0.024509623646736145, + 0.0100861806422472, + 0.02737385220825672, + -0.027223821729421616, + -0.003402977716177702, + -0.020472422242164612, + 0.011354625225067139, + 0.03142469376325607, + -0.014143839478492737, + 0.0029443600215017796, + 0.030278999358415604, + -0.0008004499250091612, + -0.013768761418759823, + 0.0309336818754673, + 0.004323623143136501, + -0.020867960527539253, + 0.0027721652295440435, + -0.01579418033361435, + -0.01138872280716896, + -0.028478628024458885, + -0.005520462058484554, + -0.005554559640586376, + 0.014062004163861275, + 0.018781162798404694, + -0.010781778953969479, + 0.026991955935955048, + -0.0066627440974116325, + -0.015344087965786457, + 0.039362698793411255, + 0.019490402191877365, + 0.027346573770046234, + -0.0031898654997348785, + 0.02026783488690853, + 0.0038223827723413706, + 0.004340671934187412, + -0.014825798571109772, + -0.016653450205922127, + -0.0008332692086696625, + 0.017117181792855263, + 0.035079993307590485, + 0.02519158273935318, + 0.0027210181578993797, + -0.028287678956985474, + 0.0054659051820635796, + -0.025478005409240723, + -0.026050850749015808, + -0.020840682089328766, + 0.016762563958764076, + 0.023254817351698875, + 0.018631132319569588, + -0.011668326333165169, + -0.010706763714551926, + -0.012991327792406082, + 0.008333544246852398, + -0.015084943734109402, + 0.035489171743392944, + -0.01160695031285286, + 0.003610975341871381, + -0.012186615727841854, + 0.04700064659118652, + -0.01618971861898899, + 0.015303170308470726, + -0.005118105560541153, + 0.012554873712360859, + 0.024305034428834915, + -0.01587601564824581, + -0.009806577116250992, + 0.0007135000778362155, + -0.011150036938488483, + 0.026309996843338013, + -0.015480480156838894, + -0.01415747869759798, + 0.022409187629818916, + 0.016571614891290665, + -0.007487914990633726, + -0.01259579136967659, + 0.004340671934187412, + 0.02674644999206066, + -0.0035700579173862934, + -0.01531680952757597, + -0.007617487106472254, + -0.021877259016036987, + 0.016994429752230644, + 0.008804096840322018, + 0.006239929236471653, + -0.00385648082010448, + 0.010993186384439468, + 0.00020725173817481846, + 0.012207074090838432, + -0.026064490899443626, + 0.0028403610922396183, + -0.010474896989762783, + 0.007051460910588503, + -0.020104164257645607, + -0.0037269084714353085, + -0.001484114327467978, + 0.0018208317924290895, + -0.05008310452103615, + -0.025859903544187546, + 0.010577191598713398, + -0.026173604652285576, + 0.013605091720819473, + 0.006018292158842087, + 0.005489773582667112, + -0.00520335091277957, + 0.024373231455683708, + -0.04716431722044945, + 0.007358342409133911, + 0.033934302628040314, + -0.006495663896203041, + -0.034643542021512985, + 0.010836335830390453, + -0.011218233034014702, + -0.0159032940864563, + 0.019708627834916115, + -0.014553015120327473, + -0.029706154018640518, + -0.020854320377111435, + -0.01067266520112753, + -0.004821453243494034, + -0.0025522334035485983, + -0.007637945935130119, + 0.020649733021855354, + -0.005875080823898315, + 0.001388639910146594, + -0.018944833427667618, + -0.0024499394930899143, + 0.04481837525963783, + 0.00369622022844851, + -0.014375705271959305, + 0.017908254638314247, + -0.03142469376325607, + 0.02414136566221714, + -0.007378801237791777, + -0.0026732811238616705, + -0.005489773582667112, + -0.013216374441981316, + -0.01775822415947914, + -0.003703039838001132, + 0.023882219567894936, + -0.026296356692910194, + 0.02205456979572773, + -0.008272168226540089, + -0.02036331035196781, + -0.013414142653346062, + 0.009690644219517708, + 0.012970869429409504, + -0.002729542786255479, + 0.01871296763420105, + 0.03327962011098862, + -0.00020064525597263128, + -0.01723993569612503, + -0.012663987465202808, + -0.051910754293203354, + -0.010815877467393875, + 0.004753257613629103, + -0.026691893115639687, + -0.01007936056703329, + -0.015153138898313046, + 0.03614385053515434, + 0.031124629080295563, + -0.02831495739519596, + -0.03197025880217552, + 0.00033863549469970167, + -0.02894235961139202, + -0.03573467582464218, + -0.017321771010756493, + -0.007815255783498287, + 0.016339749097824097, + 0.020022330805659294, + 0.012568512931466103, + 0.01411656104028225, + 0.0067377593368291855, + 0.029078751802444458, + -0.015807820484042168, + -0.02572351135313511, + -0.0056125265546143055, + -0.024946076795458794, + 0.03802606090903282, + -0.020022330805659294, + -0.057448264211416245, + -0.001685292343609035, + 0.011068202555179596, + 0.013959710486233234, + 0.016353387385606766, + 0.0038360219914466143, + -0.0069832648150622845, + -0.012207074090838432, + -0.0077879768796265125, + -0.013311848975718021, + -0.008797276765108109, + 0.011831996962428093, + 0.015562314540147781, + -0.04664602875709534, + -0.0007203196873888373, + 0.01984502002596855, + 0.0199541337788105, + -0.0087359007447958, + -0.007774338126182556, + 0.024386869743466377, + -0.02583262510597706, + 0.0066047776490449905, + 0.02468693256378174, + -0.010529453866183758, + 0.0042861150577664375, + -0.01259579136967659, + 0.003498452017083764, + 0.004139494150876999, + -0.003268290776759386, + 0.011368264444172382, + -5.6101820518961176e-05, + -0.00037422525929287076, + -0.006812775041908026, + -0.012773101218044758, + -0.017812781035900116, + 0.012009305879473686, + 0.015725985169410706, + -0.007017362862825394, + 0.04097212478518486, + -0.02602357231080532, + -0.006001243367791176, + -0.0022334172390401363, + 0.006389960180968046, + -0.03554372861981392, + 0.0019469942199066281, + -0.02740113064646721, + 0.013768761418759823, + 0.024168644100427628, + -0.020445145666599274, + 0.014648489654064178, + -0.012057043612003326, + -0.027128348127007484, + -0.009247370064258575, + 0.0033313720487058163, + 0.0021754507906734943, + -0.03415253013372421, + -0.010017984546720982, + 0.014648489654064178, + -0.018631132319569588, + -0.003904217854142189, + 0.021822702139616013, + -0.0021430575288832188, + 0.008122136816382408, + 0.024591458961367607, + 0.17076264321804047, + 0.020131442695856094, + -8.044990681810305e-05, + 0.022613774985074997, + 0.009861133992671967, + -0.014252953231334686, + 0.027837585657835007, + -0.00831308588385582, + -0.012254811823368073, + 0.02426411770284176, + 0.012554873712360859, + 0.015862377360463142, + -0.012602610513567924, + 0.0021601065527647734, + 0.02560075744986534, + 0.004988533444702625, + -0.02686920203268528, + -0.02487788163125515, + -0.003648483194410801, + 0.01733540929853916, + 0.016803480684757233, + -0.016476141288876534, + 0.0005498297978192568, + -0.008388101123273373, + 0.017621831968426704, + -0.01478488091379404, + 0.007412899285554886, + 0.0066047776490449905, + 0.023650353774428368, + 0.013195916078984737, + -0.001877093454822898, + 0.017389966174960136, + 0.010768139734864235, + -0.0012309368466958404, + -0.004477063659578562, + 0.004061068408191204, + 0.0199541337788105, + 0.015057665295898914, + 0.023541240021586418, + 0.0015403759898617864, + -0.016339749097824097, + -0.02959704026579857, + 0.01258897129446268, + -0.0006742874393239617, + 0.003326257225126028, + 0.03292500227689743, + -0.008074400015175343, + 0.008824555203318596, + 0.0012215599417686462, + 0.008094859309494495, + -0.03565284237265587, + 0.028451349586248398, + -0.005534101277589798, + 0.021986372768878937, + -0.009267829358577728, + -0.012261630967259407, + -0.010693124495446682, + -0.0009078585426323116, + -0.007133296225219965, + -0.014703046530485153, + -0.040399279445409775, + 0.013530075550079346, + 0.003505271626636386, + 0.006553630344569683, + -0.024536902084946632, + -0.002934130607172847, + -0.014334787614643574, + 0.01651705801486969, + -0.0276875551789999, + -0.03728954493999481, + 0.004558898974210024, + 0.0030568833462893963, + -0.009315566159784794, + 0.0018873228691518307, + -0.021781785413622856, + -0.03794422373175621, + 0.008435838855803013, + 0.0047362083569169044, + 0.0013647713931277394, + 0.03728954493999481, + -0.002767050638794899, + 0.0015190646518021822, + 0.011450099758803844, + -0.0367712527513504, + -0.017417244613170624, + -0.0378623902797699, + 0.0439181886613369, + -0.0028352465014904737, + 0.0020066658034920692, + -0.009329205378890038, + -0.03930814191699028, + -0.005595477297902107, + -0.015930572524666786, + -0.006744578946381807, + -0.004841912072151899, + -0.0033569454681128263, + 0.016776202246546745, + 0.0015591297997161746, + 0.0006951724062673748, + 0.029187865555286407, + -0.00983385555446148, + 0.05212898179888725, + 0.02423683926463127, + -0.005251087713986635, + -0.01380285993218422, + 0.0024533490650355816, + -0.0003676187770906836, + 0.022613774985074997, + 0.02351396158337593, + 0.014989469200372696, + -0.020199639722704887, + -0.035789232701063156, + 0.004477063659578562, + -0.017294492572546005, + -0.007610667496919632, + 0.021031629294157028, + 0.01342096272855997, + -0.016789842396974564, + 0.008190332911908627, + 0.0005826491396874189, + 0.01500310841947794, + -0.025900820270180702, + -0.012247991748154163, + 0.0167080070823431, + -0.014334787614643574, + -0.03197025880217552, + -0.018972111865878105, + -0.019790463149547577, + -0.009956608526408672, + -0.017799142748117447, + 0.006874151527881622, + -0.016244273632764816, + 0.03949909284710884, + 0.018876638263463974, + -0.002528364770114422, + 0.005056729540228844, + 0.0201723612844944, + -0.014593932777643204, + -0.01192065142095089, + 0.009145076386630535, + 0.020035969093441963, + -0.009758840315043926, + 0.007065100129693747, + -0.0045623090118169785, + -0.008244889788329601, + 0.015712346881628036, + 0.011804718524217606, + 0.019258534535765648, + -0.029106030240654945, + -0.020554257556796074, + 0.0010860204929485917, + -0.02195909433066845, + -0.0006504188640974462, + -0.0068366434425115585, + 0.01578054204583168, + -0.01040670182555914, + -0.018044646829366684, + -0.012207074090838432, + -0.010522634722292423, + 0.005039680283516645, + -0.028287678956985474, + -0.010843155905604362, + 0.02864229679107666, + 0.005837573204189539, + 0.0004935681354254484, + -0.0004347491485532373, + -0.1739269495010376, + 0.01342096272855997, + 0.01924489624798298, + -0.014634850434958935, + 0.018972111865878105, + 0.0019418796291574836, + 0.031315580010414124, + 0.0033722894731909037, + -0.00023207932827062905, + -0.027251100167632103, + 0.008081220090389252, + 0.010945449583232403, + -0.003887169063091278, + -0.024850603193044662, + 0.010433980263769627, + -0.005428397562354803, + -0.007903910242021084, + 0.01290949247777462, + 0.02227279543876648, + 0.017430884763598442, + 0.005165842827409506, + 0.0016077194595709443, + -0.006860512308776379, + -0.015957850962877274, + 0.004497522488236427, + 0.014048364944756031, + -0.010495356284081936, + 0.014484819024801254, + -0.02989710308611393, + -0.02497335523366928, + 0.003278520191088319, + -0.012193434871733189, + 0.017921894788742065, + 0.004006511997431517, + 0.0008831375162117183, + -0.01087043434381485, + -0.0003573893918655813, + 0.0035564186982810497, + -0.0015650970162823796, + 0.026378192007541656, + 0.010515814647078514, + 0.03270677477121353, + 0.006055800244212151, + -0.010802238248288631, + -0.010488536208868027, + 0.008810915984213352, + 0.01778550259768963, + -0.003651892999187112, + 0.002238531829789281, + -0.018126482143998146, + -0.008824555203318596, + -0.02373218908905983, + -0.0038701200392097235, + 0.0058580320328474045, + 0.013700565323233604, + 0.0126571673899889, + 0.015657790005207062, + 0.03513455018401146, + -0.009738381020724773, + -0.026255439966917038, + -0.0026084950659424067, + -0.02350032329559326, + -0.0028420661110430956, + -0.009854313917458057, + -0.01291631255298853, + -0.020404227077960968, + 0.018481101840734482, + -0.0008149415371008217, + -0.041981425136327744, + -0.00491692777723074, + -0.010433980263769627, + -0.014443901367485523, + -0.01702170819044113, + 0.012520776130259037, + -0.020472422242164612, + 0.03848979249596596, + 0.006304715294390917, + 0.013025425374507904, + 0.03570739924907684, + -0.029187865555286407, + -0.005489773582667112, + 0.031070074066519737, + 0.02247738465666771, + -0.006250158417969942, + 0.004098576493561268, + -0.020649733021855354, + -0.01943584531545639, + -0.00032435698085464537, + -0.00312166940420866, + -0.004119035322219133, + 0.009895231574773788, + -0.03960820659995079, + 0.000467568461317569, + 0.0011320527410134673, + 0.012643528170883656, + 0.011361444368958473, + -0.011675146408379078, + 0.009499695152044296, + -0.0005933047505095601, + -0.0029102619737386703, + -0.0014031316386535764, + 0.008817736059427261, + -0.005234038922935724, + 0.014798520132899284, + 0.029924381524324417, + 0.006127405911684036, + 0.00835400354117155, + 0.003887169063091278, + 0.03156108409166336, + -0.009574711322784424, + -0.026801006868481636, + -0.008906390517950058, + 0.019313091412186623, + -0.01777186430990696, + -0.004650963470339775, + 0.029187865555286407, + -0.014143839478492737, + -0.00976565945893526, + 0.0054829539731144905, + -0.0055238716304302216, + 0.051801640540361404, + -0.01086361426860094, + -0.018440183252096176, + 0.01033850573003292, + 0.006222879979759455, + -0.008817736059427261, + -0.09531065821647644, + -0.016530698165297508, + 0.0001084741743397899, + 0.03876257687807083, + -0.04211781546473503, + 0.034534428268671036, + -0.0022283026482909918, + 0.021549919620156288, + -0.02487788163125515, + 0.022941116243600845, + -0.013195916078984737, + -0.0236367154866457, + 0.005428397562354803, + -0.0027687554247677326, + 0.004637324251234531, + -0.01640794426202774, + -0.01663981005549431, + -0.027114707976579666, + -0.01181153766810894, + 0.03355240449309349, + 0.003259766148403287, + 0.005292005371302366, + 0.015957850962877274, + -0.01468940731137991, + -0.013618730939924717, + 0.006362681742757559, + -0.03671669587492943, + 0.027619358152151108, + -0.004180411342531443, + 0.011122758500277996, + 0.012554873712360859, + -0.017526358366012573, + 0.021168021485209465, + -0.024414148181676865, + -0.0069832648150622845, + 0.0006009767530485988, + 0.0066218264400959015, + -0.02572351135313511, + 0.018576575443148613, + -0.009220091626048088, + -0.009929330088198185, + 0.01715810038149357, + -0.0018822081619873643, + -0.027223821729421616, + -0.012977688573300838, + 0.004794175270944834, + -0.03251582756638527, + 0.008579050190746784, + -0.002882983535528183, + -0.009902051649987698, + -0.003917857073247433, + -0.014280231669545174, + 0.007126476615667343, + 0.003928086720407009, + 0.0002657510922290385, + -0.0030244903173297644, + 0.002144762547686696, + -0.010829516686499119, + -0.04263610392808914, + 0.005251087713986635, + -0.014198396354913712, + 0.018467461690306664, + -0.023282095789909363, + 0.03887169063091278, + 0.00499194348230958, + 0.006655924487859011, + -0.03248854726552963, + -0.007733420468866825, + -0.000359946716343984, + -0.010031623765826225, + -0.004592997021973133, + 0.004787355661392212, + -0.011422821320593357, + -0.01673528552055359, + -0.018631132319569588, + 0.00961562804877758, + -0.033825188875198364, + -0.017799142748117447, + 0.020336031913757324, + -0.020322391763329506, + 0.002671576105058193, + -0.023227538913488388, + 0.004098576493561268, + -0.013714204542338848, + 0.0372077077627182, + 0.009547432884573936, + -0.008804096840322018, + -0.014948551543056965, + 0.022654693573713303, + -0.042472437024116516, + 0.026528222486376762, + 0.021563557907938957, + -0.001650341902859509, + -0.016871677711606026, + -0.0014994583325460553, + 0.01542592328041792, + -0.03197025880217552, + -0.016544336453080177, + -0.0035120912361890078, + 0.0022351222578436136, + -0.03707131743431091, + 0.009820216335356236, + -0.06650468707084656, + 0.018849359825253487, + 0.043236229568719864, + -0.01097272802144289, + -0.013127719983458519, + -0.0028846885543316603, + 0.012261630967259407, + 0.01608060486614704, + 0.0009521858883090317, + 0.0064342874102294445, + -0.008940489031374454, + -0.0008290069526992738, + -0.011300068348646164, + 0.012432120740413666, + -0.025232499465346336, + -0.013666467741131783, + 0.03952636942267418, + -0.0030722273513674736, + 0.016898956149816513, + -0.012623069807887077, + 0.0031881604809314013, + 0.015112222172319889, + -0.007296966388821602, + 0.03772599622607231, + -0.03911719471216202, + 0.009288287721574306, + -0.03265221789479256, + 0.014212035574018955, + -0.0031114399898797274, + 0.0029665236361324787, + -0.021058907732367516, + -0.0247687678784132, + -0.011879733763635159, + 0.026187242940068245, + -0.00433385232463479, + -0.018331071361899376, + -0.009690644219517708, + 0.03510727360844612, + -0.008742719888687134, + 0.037453215569257736, + -0.022190960124135017, + -0.03780783340334892, + 0.006863921880722046, + -0.0032324879430234432, + -0.014621211215853691, + 0.0047771260142326355, + 0.013952890411019325, + -0.016353387385606766, + 0.01050899550318718, + -0.01050899550318718, + 0.03210665285587311, + 0.009117797948420048, + -0.026569141075015068, + -0.019176701083779335, + 0.02560075744986534, + -0.00640359940007329, + 0.01295723021030426, + 0.022190960124135017, + -0.006216060370206833, + -0.014048364944756031, + 0.034643542021512985, + 0.0013750008074566722, + 0.031397413462400436, + 0.0047362083569169044, + 0.0320248156785965, + 0.005159023217856884, + -0.0347253754734993, + -0.0038667102344334126, + 0.0022453514393419027, + -0.031179185956716537, + -0.019463123753666878, + -0.0182765144854784, + 0.024209560826420784, + 0.028178565204143524, + 0.011668326333165169, + -0.025164304301142693, + 0.0026477077044546604, + 0.00026617731782607734, + -0.0030364245176315308, + 0.013202735222876072, + 0.034643542021512985, + 0.020636092871427536, + -0.014362066052854061, + 0.0034558295737951994, + 0.008026663213968277, + -0.00831308588385582, + -0.026991955935955048, + 0.000861826294567436, + 0.0005971407517790794, + 0.002224892843514681, + -0.0006555335130542517, + 0.025587119162082672, + 0.009397401474416256, + -0.0047191595658659935, + 0.01767638884484768, + 0.010468077845871449, + 0.00509423715993762, + 0.00804030243307352, + 0.02789214253425598, + 0.0307154543697834, + 0.027428409084677696, + 0.0005229776725172997, + -0.00652976194396615, + -0.03573467582464218, + -0.030988238751888275, + 0.0035768772941082716, + -0.03030627779662609, + -0.02215004339814186, + -0.009431499056518078, + 0.016994429752230644, + 0.007740240078419447, + 0.014798520132899284, + -0.00998388696461916, + 0.0069082495756447315, + -0.005240858532488346, + 0.009070061147212982, + 0.014675768092274666, + -0.03647119179368019, + -0.015971491113305092, + 0.03311595320701599, + -0.006608187220990658, + 0.007167393807321787, + 0.00707873934879899, + -0.0004688471381086856, + 0.03248854726552963, + 0.017539996653795242, + 0.025900820270180702, + -0.02321390062570572, + 0.010795418173074722, + -0.0018088974757120013, + 0.023350292816758156, + -0.011831996962428093, + -0.003743957495316863, + 0.00841537956148386, + -0.02655550092458725, + -0.01849474012851715, + -0.01228209026157856, + 0.014825798571109772, + -0.009117797948420048, + 0.11729703098535538, + 0.0315883606672287, + 0.00032712743268348277, + -0.0014449015725404024, + -0.01799008995294571, + 0.009206452406942844, + 0.01733540929853916, + 0.006591138429939747, + 0.007726600859314203, + -0.04454559087753296, + -0.006297895684838295, + 0.005418167915195227, + 0.003322847420349717, + 0.0007386473589576781, + 0.026091769337654114, + -0.024114087224006653, + -0.01880844123661518, + 0.020145082846283913, + -0.018644772469997406, + -0.005902359262108803, + 0.04858279228210449, + -0.01040670182555914, + -0.0037610065191984177, + 0.03396158292889595, + -0.032352156937122345, + -0.002964818850159645, + 0.010740861296653748, + 0.013073163107037544, + -0.0016835874412208796, + -0.008599508553743362, + 0.022081848233938217, + 0.022436466068029404, + -0.04410913959145546, + -0.024495983496308327, + -0.00729014677926898, + -0.006700251717120409, + 0.016585255041718483, + -0.03142469376325607, + 0.014853077009320259, + 0.0172535739839077, + -0.015398644842207432, + 0.018522018566727638, + -0.018262874335050583, + -0.011838816106319427, + 0.007303785998374224, + -0.010624928399920464, + 0.005871670786291361, + -0.013727843761444092, + -0.025055190548300743 + ], + "metadata": { + "source": "INSPIRER_Schlussbericht.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 5, + "has_images": true, + "image_count": 29, + "detection_class_prob": 0.6591171622276306, + "coordinates": "CoordinatesMetadata(points=((1122.828857421875, 155.53517150878906), (1122.828857421875, 361.06524658203125), (1358.3359375, 361.06524658203125), (1358.3359375, 155.53517150878906)), system=)", + "links": [], + "last_modified": "2025-05-05T22:58:03", + "_known_field_names": "frozenset({'page_number', 'text_as_html', 'emphasized_text_contents', 'subject', 'data_source', 'links', 'coordinates', 'image_path', 'is_continuation', 'header_footer_type', 'sent_from', 'url', 'parent_id', 'detection_class_prob', 'emphasized_text_tags', 'last_modified', 'category_depth', 'page_name', 'attached_to_filename', 'bcc_recipient', 'orig_elements', 'languages', 'filetype', 'link_texts', 'file_directory', 'sent_to', 'key_value_pairs', 'image_base64', 'cc_recipient', 'link_urls', 'signature', 'image_mime_type', 'filename', 'detection_origin', 'table_as_cells', 'email_message_id', 'link_start_indexes'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "INSPIRER_Schlussbericht.pdf", + "parent_id": "1c51aaba3295e535d31a83c2392f0391", + "text_as_html": "
Projektlaufzeit01.08.2021 - 31.07.2024 (verl\u00e4ngert bis 31.10.2024)
F\u00f6rderkennzeichen165V8744
StichworteStadtentwicklung, Digitale B\u00fcrgerbeteiligung, Partizipation
und Akzeptanz, Augmented Reality, Extended Reality (XR),
AR-Tracking, Point Cloud Matching
ProjektleitungProf. Dr.-Ing. Volker Coors
Beteiligte ProfessorenProf. Dr.-Ing. Volker Coors
Gef\u00f6rderte Ma\u00dfnahmeForschungsprogramm zur Mensch-Technik-nteraktion
F\u00f6rderbereichTechnik zum Mensch bringen
FachhochschuleHochschule f\u00fcr Technik Stuttgart (HFT Stuttgart),
", + "id": "351a57f5-fe09-4ea6-8750-b2c5267a9700", + "processing_timestamp": "2025-05-05T23:07:23.860264", + "chunk_number": 14, + "total_chunks": 19, + "chunking_strategy": "hybrid", + "word_count": 167 + } +} \ No newline at end of file diff --git a/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000015.json b/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000015.json new file mode 100644 index 0000000000000000000000000000000000000000..af8bf96acf05845aff25f5f88e76ec03d6ed9e28 --- /dev/null +++ b/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000015.json @@ -0,0 +1,1570 @@ +{ + "id": "2b86db2d-408b-1992-e1b5-8a9f00000015", + "content": "A. Aldomau. a., \u201eCAD-model recognition and 6DOF pose estimation using 3D cues\u201c, inICCV2011 3D Representation and Recognition (3D RR11), 2011, S. 585\u2013592, doi:10.1109/ICCVW.2011.6130296. - 34. HFT Stuttgart, \u201eicity: Impulsprojekt | Leitprojekt Intelligente Stadt\u201c, 2020. https://www.hft- stuttgart.de/forschung/projekte/aktuell/i-city-impulsprojekt (zugegriffen Juli 19, 2020). - 35. S. Houben und C. Weichel, \u201eOvercoming interaction blindness through curiosity objects\u201c, in CHI \u201913 Extended Abstracts on Human Factors in Computing Systems on - CHI EA \u201913, NewYork, New York, USA, 2013, S. 1539, doi: 10.1145/2468356.2468631. - 36. K. Weber, \u201eMEESTAR2Ein erweitertes Modell zur ethischen Evaluierung soziotechnischer Arrangements\u201c, 2016. - 37. J. Nelles, C. Br\u00f6hl, J. Spies, C. Brandl, A. Mertens, und C. M. Schlick, \u201eELSI - Fragestellungen im Kontext der Mensch - Roboter - Kollaboration\u201c, 2016. - 38. M. Wille, C. Brandl, J. Nelles, A. Mertens, und C. M. Schlick, \u201eAMICAI: Ein methodisches Vorgehen zur quantitativen Analyse von ethischen, rechtlichen und sozialen Auswirkungen anwendungsnaher Forschungsprojekte.\u201c, 2016. - 39. J. H. Israel, J. Hurtienne, A. E. Pohlmeyer, C. Mohs, M. C. Kindsm\u00fcller, und A. Naumann, \u201eOnintuitive use, physicality and tangible user interfaces\u201c,Int J. Arts Technol., Bd. 2, Nr. 4, S.348\u2013366, 2009, doi: 10.1504/IJART.2009.029240. - 40. I. Tag, M. Pries, U. Wagner, J. H. Israel, und T. Jung, \u201eGeometrische und softwaretechnische Aspekte bei der Implementierung eines VR-Kollaborationssystems\u201c, in21.Anwendungsbezogener Workshop zur Erfassung, Modellierung, Verarbeitung und Auswertung von 3D-Daten (3D-Nordost 2018), 2018, S. 149\u2013158. - 41. H. Wiesner, A. Ducki, S. Svenja, und H. Mensah, \u201eGestaltbare Technologien und Diversity im Community- Kontext\u201c, in Digitale Kommunikation, G. Hobauer, P. Annette, A. Rumler, und P.Schuchert-G\u00fcler, Hrsg. Berlin: uni-edition GmbH, 2012, S. 223\u2013241. - 42. H. Wiesner und A. Wiesner-Steiner, \u201eEinsch\u00e4tzungen zu Lernpfaden \u2013 Eine empirische Exploration\u201c, in Medienvielfalt im Mathematikunterricht, J. Roth, E. S\u00fcss-Stepancik, und H.Wiesner, Hrsg.", + "embedding": [ + -0.005736823659390211, + 0.01262990664690733, + -0.001665115705691278, + -0.02917330525815487, + -0.006988867651671171, + 0.030076419934630394, + -0.014258247800171375, + 0.0057334029115736485, + -0.019156955182552338, + -0.03516669571399689, + 0.020196903496980667, + 0.022235751152038574, + -0.0028991999570280313, + 0.005192903336137533, + -0.0178296510130167, + -0.0044539920054376125, + 0.030295355245471, + -0.0012871079379692674, + 0.006513364613056183, + 0.006178117822855711, + -0.010481591336429119, + 0.012753058224916458, + 0.011719951406121254, + -0.010344755835831165, + -0.0011143531883135438, + 0.020812664180994034, + 0.027257610112428665, + -0.011706267483532429, + 0.005842871498316526, + -0.013081463985145092, + 0.011111034080386162, + -0.007505421526730061, + -0.011466805823147297, + -0.029857482761144638, + -0.006708355154842138, + 0.014025627635419369, + 0.019444309175014496, + -0.016214994713664055, + 0.013416710309684277, + 0.007327535189688206, + 0.008422218263149261, + 0.009858990088105202, + -0.004713979084044695, + -0.03385307639837265, + 0.0026717111468315125, + 0.014518234878778458, + 0.0034020699094980955, + -0.011282077990472317, + -0.035823505371809006, + 0.012417811900377274, + 0.012246767990291119, + 0.05169641226530075, + -0.004813184961676598, + -0.008743781596422195, + -0.0025571114383637905, + -0.007471212651580572, + -0.0017164289020001888, + 0.01551713328808546, + 0.013074621558189392, + -0.017898069694638252, + -0.004108482506126165, + 0.0054528904147446156, + -0.027544964104890823, + 0.019375892356038094, + -0.02491772547364235, + -0.01084420457482338, + -0.008305908180773258, + -0.0003833529190160334, + 0.016105525195598602, + -0.002555401064455509, + 0.021811561658978462, + 0.012527280487120152, + 0.0195537768304348, + -0.03177317976951599, + 0.04337681829929352, + -0.008819040842354298, + -0.012369919568300247, + 0.0019379312871024013, + -0.01670760102570057, + 0.007088073529303074, + -0.0011682321783155203, + -0.03812234103679657, + -0.03461935371160507, + 0.03232051804661751, + 0.025451382622122765, + 0.011966255493462086, + 0.018404360860586166, + 0.011350495740771294, + -0.00722490856423974, + 0.0035235113464295864, + -0.0004887589020654559, + 0.0067186178639531136, + 0.007149649318307638, + -0.0027777585200965405, + -0.011843102984130383, + 0.00011278229794697836, + 0.009728996083140373, + 0.006024178117513657, + -0.006007073912769556, + -0.015161361545324326, + -0.012554647400975227, + 0.014655070379376411, + -0.025807155296206474, + -0.014668754301965237, + -0.008353800512850285, + -0.0034243057016283274, + -0.010426856577396393, + 0.009345857426524162, + 0.0028444656636565924, + -0.018335942178964615, + -0.026833420619368553, + 0.041433755308389664, + 0.025766104459762573, + -0.007642256561666727, + -0.0026734215207397938, + -0.04666087031364441, + 0.017542297020554543, + 0.010221604257822037, + 0.00946900900453329, + -0.01517504546791315, + 0.015079259872436523, + 0.03453725203871727, + -0.008579579181969166, + -0.021811561658978462, + 0.0008222952019423246, + 0.025766104459762573, + -0.008442743681371212, + -0.010946831665933132, + -0.0059454976581037045, + -0.02244100533425808, + -0.0022269960027188063, + -0.011022090911865234, + 0.020593727007508278, + 0.008463269099593163, + -0.008928509429097176, + 0.027586014941334724, + -0.025122977793216705, + -0.009913723915815353, + -0.02208523266017437, + -0.034783557057380676, + 0.011658375151455402, + 0.018965385854244232, + -0.004960283171385527, + -0.011473647318780422, + -0.009530585259199142, + 0.022153649479150772, + 0.024069346487522125, + 0.001676233601756394, + 0.0027521017473191023, + 0.004919232334941626, + -0.0036158752627670765, + -0.013259349390864372, + 0.002909462433308363, + 0.03388044238090515, + 0.010837363079190254, + -0.009886357001960278, + 0.004474517423659563, + 0.016160259023308754, + -0.01741914637386799, + -0.03388044238090515, + -0.012985678389668465, + 0.007170174736529589, + -0.015612917952239513, + 0.009366382844746113, + 0.033606771379709244, + 0.005996811203658581, + 0.0028376239351928234, + -0.007491737604141235, + -0.0029607757460325956, + -0.00784750934690237, + -0.0178296510130167, + 0.02027900516986847, + -0.010064243339002132, + 0.020922131836414337, + -0.013197774067521095, + 0.010529483668506145, + 0.0115831159055233, + 0.012766742147505283, + -0.03809497505426407, + -0.01642024703323841, + -0.013067780062556267, + 0.007553313858807087, + 0.023056764155626297, + 0.007204383611679077, + 0.00944848358631134, + 0.016269728541374207, + 0.01821279153227806, + 0.000891140487510711, + -0.003650084137916565, + -0.016981272026896477, + 0.024466168135404587, + 0.01892433501780033, + -0.002461326541379094, + -0.0080185541883111, + -0.6366677284240723, + -0.00996161624789238, + 0.005972865037620068, + -0.020566359162330627, + 0.0070401811972260475, + 0.030787963420152664, + 0.0018524090992286801, + -0.012034673243761063, + 0.01855487935245037, + 0.035741403698921204, + -0.017022322863340378, + 0.0160781592130661, + -0.006739143282175064, + -0.016160259023308754, + -0.025519801303744316, + -0.01373827364295721, + -0.002591320313513279, + -0.025943990796804428, + 0.024425117298960686, + 0.009332173503935337, + -0.029830114915966988, + 0.013970893807709217, + -0.01015318650752306, + -0.03303206339478493, + -0.010721052996814251, + 0.00906534492969513, + 0.00022513698786497116, + -0.01596868969500065, + 0.01103577483445406, + -0.0011613904498517513, + -0.012575172819197178, + 0.02749023027718067, + 0.015790805220603943, + 0.0063046906143426895, + 0.04159795865416527, + -0.003944280091673136, + 0.003561141202226281, + 0.023015713319182396, + -0.002097002463415265, + 0.02499982714653015, + -0.008990085683763027, + -0.00676651019603014, + 0.012020989321172237, + 0.005117643624544144, + -0.00857273768633604, + 0.0320194810628891, + 0.019813764840364456, + -0.0048884442076087, + -0.006735722068697214, + -0.03166370838880539, + -0.010057401843369007, + -0.02027900516986847, + 0.0013640777906402946, + -0.022222068160772324, + 0.02419249713420868, + -0.00526132108643651, + 0.04017487168312073, + -0.025382965803146362, + 0.020032702013850212, + -0.00784750934690237, + -0.0004772134416271001, + -0.001753203454427421, + -0.017268626019358635, + -0.03418147936463356, + -0.00195845658890903, + 0.03355203941464424, + -0.013628805056214333, + -0.009003768675029278, + 0.008429059758782387, + -0.004019539803266525, + -0.002774337539449334, + 0.032265786081552505, + -0.009927407838404179, + -0.011391546577215195, + 0.01371774822473526, + 0.03065112791955471, + 0.023809358477592468, + -0.009742680005729198, + -0.004412941634654999, + 0.008299066685140133, + 0.020196903496980667, + -0.0017172842053696513, + -0.0013905896339565516, + -0.0011083666468039155, + 0.023043079301714897, + -0.009503218345344067, + -0.011938887648284435, + 0.005216849502176046, + -0.003810865804553032, + -0.0012956601567566395, + 0.013409868814051151, + 0.012842001393437386, + -0.015216095373034477, + -0.03530353307723999, + -0.008702730759978294, + 0.029638545587658882, + -0.01893801800906658, + 0.027544964104890823, + 0.018376993015408516, + -0.06234220415353775, + -0.005812083370983601, + -0.0196085125207901, + 0.03497512638568878, + 0.004176900256425142, + -0.0026340812910348177, + 0.02286519482731819, + -0.030021686106920242, + 0.017911752685904503, + 0.05090276524424553, + -0.02383672632277012, + -0.0320468507707119, + -0.018814867362380028, + -0.008285382762551308, + 0.001398286665789783, + 0.0003658208588603884, + -0.027189193293452263, + -0.003376413369551301, + 0.008955876342952251, + 0.012739375233650208, + -0.008271699771285057, + 0.01156943291425705, + -0.013957209885120392, + 0.007512263022363186, + 0.006383371073752642, + 0.0035714036785066128, + 0.005829187575727701, + -0.011022090911865234, + -0.008976401761174202, + -0.017241260036826134, + 0.023768307641148567, + 0.014559285715222359, + 0.0011263262713328004, + 0.007334377150982618, + -0.020374789834022522, + 0.017268626019358635, + -0.004549776669591665, + 0.012780426070094109, + 0.000874463701620698, + -0.0004013125435449183, + 0.005162115208804607, + -0.02784600295126438, + 0.001978981774300337, + 0.018650664016604424, + -0.03251209110021591, + -0.03489302471280098, + -0.013786165975034237, + -0.017241260036826134, + 0.025916622951626778, + 0.024370383471250534, + -0.015270830132067204, + -0.0357140377163887, + -0.012123615480959415, + 0.011829419992864132, + 0.0392443910241127, + -0.01013266108930111, + -0.01052264217287302, + -0.02319359965622425, + -0.01139838807284832, + -0.021921029314398766, + -0.03305942937731743, + -6.21638901066035e-05, + 0.02738076262176037, + -0.03453725203871727, + -0.011973096989095211, + -0.0022081811912357807, + 0.0026392126455903053, + 0.0151476776227355, + 0.021524207666516304, + -0.060043372213840485, + -0.036535050719976425, + 0.019061170518398285, + -0.025355597957968712, + -0.00013501805369742215, + 0.016310779377818108, + -0.011815736070275307, + 0.010939989238977432, + -0.005032121669501066, + -0.012951469980180264, + -0.0056786686182022095, + -0.015886589884757996, + 0.006670725531876087, + -0.01637919619679451, + -0.0065715196542441845, + -0.01226729340851307, + 0.014778222888708115, + -0.0005259610479697585, + 0.008497477509081364, + -0.0014265089994296432, + -0.008962717838585377, + 0.021921029314398766, + 0.006629674695432186, + 0.016119210049510002, + -0.002324491273611784, + 0.01121366024017334, + -0.03596034273505211, + 0.013505653478205204, + 0.006759668234735727, + -0.003361019305884838, + -0.014723488129675388, + 0.04121481999754906, + 0.03765710070729256, + 0.02818809077143669, + 0.02671026811003685, + 0.011501015163958073, + 0.009366382844746113, + -0.02739444561302662, + 0.01104945782572031, + -0.004317156504839659, + 0.02598504163324833, + -0.0019345104228705168, + 0.018705397844314575, + -0.024739839136600494, + -0.010399489663541317, + -0.0074096363969147205, + 0.0076764654368162155, + 0.03697292134165764, + 0.002529744291678071, + 0.015736069530248642, + -0.015229779295623302, + 0.014723488129675388, + 0.0024322490207850933, + -0.003277207724750042, + 0.053475271910429, + -0.007826984860002995, + 0.004327419213950634, + -0.006356004159897566, + 0.005312634166330099, + 0.009120078757405281, + 0.017952803522348404, + -0.020525308325886726, + -0.0024852727074176073, + 0.013136197812855244, + 0.00027302937814965844, + 0.03590560704469681, + 0.0024493534583598375, + 0.0039887516759335995, + 0.01850014552474022, + 0.0097768884152174, + 0.04302104935050011, + 0.00435820734128356, + -0.0016702470602467656, + 0.026559749618172646, + 0.006174697075039148, + 0.0020131906494498253, + 0.018075956031680107, + -0.010071084834635258, + 0.029337508603930473, + 0.019006436690688133, + -0.009681103751063347, + 0.017008639872074127, + -0.018281208351254463, + -0.0022304169833660126, + -0.017993854358792305, + 0.006704934407025576, + 0.0028085464145988226, + -0.01929379068315029, + 0.012547805905342102, + 0.005712877493351698, + 0.022728359326720238, + 0.026094509288668633, + 0.013396184891462326, + 0.025848206132650375, + 0.023070447146892548, + 0.005846292246133089, + 0.00856589525938034, + -0.009893198497593403, + -0.02385040931403637, + -0.004648982547223568, + -0.012041514739394188, + -0.016201309859752655, + -0.02249573916196823, + -0.007457528728991747, + -0.02453458681702614, + -0.004854235332459211, + 0.016474980860948563, + 0.0178433358669281, + -0.005011596251279116, + -0.0016214994248002768, + 0.04302104935050011, + 0.018814867362380028, + -0.026135560125112534, + -0.03429095074534416, + -0.0011767843971028924, + 0.027011306956410408, + -0.010235287249088287, + -0.022892560809850693, + -0.01997796818614006, + 0.014285614714026451, + -0.013909317553043365, + -0.008634313009679317, + -0.02925540693104267, + 0.013683538883924484, + -0.008996927179396152, + -0.003923754673451185, + -0.02282414399087429, + 0.003817707533016801, + 0.011261552572250366, + -0.01388195063918829, + -0.008463269099593163, + -0.0036261379718780518, + -0.011227344162762165, + 0.00588392186909914, + 0.006964921485632658, + -0.0356045700609684, + 0.035768773406744, + -0.024096712470054626, + 0.005966023076325655, + -0.019485360011458397, + -0.003248130204156041, + -0.024301966652274132, + -0.008613787591457367, + -9.851079084910452e-05, + -0.002613556105643511, + 0.024452485144138336, + 0.0124657042324543, + 0.01160364132374525, + -0.014709805138409138, + -0.0061986432410776615, + 0.03694555535912514, + -0.020908448845148087, + -0.0020764770451933146, + -0.018418043851852417, + 0.02391882613301277, + 0.012513596564531326, + 0.01929379068315029, + 0.016461297869682312, + -0.012404127977788448, + 0.015448715537786484, + -0.01777491718530655, + -0.013820374384522438, + -0.021154752001166344, + -0.02567031979560852, + 0.012082565575838089, + 0.0098179392516613, + -0.021209485828876495, + -0.018431726843118668, + 0.02991221658885479, + -0.012404127977788448, + 0.029364874586462975, + 0.005155273247510195, + 0.017008639872074127, + 0.00010086264956044033, + 0.008866933174431324, + 0.010454224422574043, + -0.02528718113899231, + -0.016926538199186325, + 0.025355597957968712, + 0.01850014552474022, + 0.013560387305915356, + -0.019745348021388054, + 0.022194700315594673, + 0.020046385005116463, + -0.0018866179743781686, + -0.03418147936463356, + 0.02527349628508091, + 0.028407027944922447, + 0.003148924559354782, + 0.012342552654445171, + -0.021524207666516304, + 0.011063141748309135, + 0.0025211921893060207, + 0.008641155436635017, + 0.023234650492668152, + -0.011063141748309135, + 0.021510524675250053, + 0.018719080835580826, + -0.012780426070094109, + 0.0007085507968440652, + -0.004922653082758188, + -0.011364179663360119, + -0.004320577718317509, + 0.0032789180986583233, + -0.01084420457482338, + -0.04012013599276543, + 0.01852751150727272, + -0.017692815512418747, + -0.0024493534583598375, + -0.016680235043168068, + 0.009147445671260357, + -0.019102221354842186, + -0.014094045385718346, + -0.03346993774175644, + -0.0001172722113551572, + 0.0017634661635383964, + -6.606584065593779e-05, + -0.017610715702176094, + 0.0080185541883111, + -0.01643393002450466, + -0.015051892958581448, + 0.0014692699769511819, + -0.012746216729283333, + -0.01562660187482834, + -0.027722850441932678, + 0.005121064372360706, + -0.007129123900085688, + 0.00108955183532089, + -0.02386409230530262, + -0.0214010551571846, + -0.006078912410885096, + -0.0025502697099000216, + 0.029009103775024414, + -0.0057744537480175495, + -0.001592421904206276, + 0.012712008319795132, + -0.01810332201421261, + -6.761592521797866e-05, + -0.008682205341756344, + -0.039052821695804596, + 0.002026874339208007, + 0.006246535573154688, + -0.007977503351867199, + -0.0026340812910348177, + -0.01226045098155737, + 0.02743549644947052, + 0.0160781592130661, + -0.02276941016316414, + 0.01602342538535595, + 0.011158926412463188, + 0.004152954090386629, + 0.008709573186933994, + 0.015380297787487507, + 0.026628168299794197, + 0.006109700072556734, + -0.026203976944088936, + 0.02238626964390278, + -0.019334841519594193, + -0.019786396995186806, + -0.004122166428714991, + 0.01810332201421261, + -0.003398649161681533, + -0.00855221226811409, + 0.011678900569677353, + 0.016543399542570114, + -0.0003797182289417833, + 2.3010796212474816e-05, + -0.012643590569496155, + 0.018992751836776733, + -0.024014610797166824, + 0.013047254644334316, + 0.006540731992572546, + -0.0004947454435750842, + -0.004566881339997053, + 0.009407433681190014, + -0.0249314084649086, + 0.005630776286125183, + -0.024055661633610725, + 0.0320468507707119, + 0.0231662318110466, + -0.004183742217719555, + 0.04677033796906471, + -0.016981272026896477, + 0.002714472124353051, + -0.027613382786512375, + 0.004659245256334543, + 0.0023809359408915043, + 0.020935814827680588, + -0.0020012175664305687, + -0.013355134055018425, + -0.010912622325122356, + -0.020497942343354225, + -0.00240830285474658, + 0.013991419225931168, + -0.011466805823147297, + 0.009380065836012363, + -0.002291992772370577, + 0.005418681539595127, + 0.007744883187115192, + 0.01122050266712904, + 0.009256914258003235, + -0.029009103775024414, + -0.011589957401156425, + 0.007963819429278374, + -0.008004870265722275, + 0.03798550367355347, + -0.022290484979748726, + 0.008791673928499222, + -0.00445057125762105, + 0.005654722452163696, + 0.0027230242267251015, + -0.046113528311252594, + 0.002141473814845085, + 0.012903577648103237, + 0.008695889264345169, + 0.027202876284718513, + 0.024028295651078224, + 0.009756363928318024, + 0.04395153000950813, + 0.011836261488497257, + -0.0005836884956806898, + -0.004012697841972113, + -0.011179451830685139, + -0.011542065069079399, + -0.02490404061973095, + 0.015749754384160042, + 0.026422914117574692, + 0.017337044700980186, + 0.019156955182552338, + 0.023439902812242508, + 0.007566997315734625, + 0.009380065836012363, + -0.018267525359988213, + -0.025191396474838257, + -0.02530086413025856, + -0.04033907502889633, + -0.02922803908586502, + -0.008695889264345169, + 0.015024526044726372, + -0.020142169669270515, + -0.041926365345716476, + 0.0038963877595961094, + 0.03968226537108421, + 0.012712008319795132, + 0.006920449901372194, + 0.0024664578959345818, + 0.03598770871758461, + -0.029474344104528427, + 0.04159795865416527, + 0.015421348623931408, + 0.008839566260576248, + -0.014354032464325428, + -0.021469473838806152, + -0.01635183021426201, + 0.021893663331866264, + 0.046414565294981, + -0.006869136821478605, + 0.004761871881783009, + 0.03634348139166832, + -0.0080185541883111, + -0.005740244872868061, + 0.019389575347304344, + 0.014189830049872398, + -0.009311648085713387, + -0.020470574498176575, + -0.030897431075572968, + 0.00910639576613903, + -0.01369722280651331, + -0.019403258338570595, + -0.01373143121600151, + 0.0015641995705664158, + 0.018431726843118668, + -0.01926642283797264, + 0.04181689769029617, + 0.000702564197126776, + -0.020881080999970436, + 0.01886960119009018, + 0.01891065202653408, + 0.03596034273505211, + -0.002346727065742016, + 0.027586014941334724, + 0.007368586026132107, + -0.013259349390864372, + -0.00498080812394619, + -0.03237525373697281, + 0.007033339235931635, + 0.01926642283797264, + 0.009202180430293083, + 0.002338174730539322, + -0.02067582868039608, + -0.028051255270838737, + 0.01992323249578476, + 0.002842755289748311, + -0.029775381088256836, + -0.016611816361546516, + 0.026833420619368553, + 0.04704400897026062, + 0.021592624485492706, + -0.013115672394633293, + 0.003024062141776085, + 0.004864498041570187, + -0.006889662239700556, + -0.002743549644947052, + 0.012917260639369488, + -0.024110395461320877, + -0.019143272191286087, + 0.004183742217719555, + 0.027517598122358322, + -0.013820374384522438, + 0.004686612170189619, + 0.0010553429601714015, + -0.012315185740590096, + 0.026765001937747, + -0.01106998324394226, + 0.004416362382471561, + 0.020826347172260284, + -0.006383371073752642, + 0.019800081849098206, + 0.00041969981975853443, + 0.005962602328509092, + 0.005141589790582657, + 0.0006435539689846337, + 0.007190699689090252, + -0.0060515450313687325, + -0.0017036006320267916, + 0.026121877133846283, + -0.007956977933645248, + -0.02421986497938633, + -0.0011554037919268012, + -0.02104528434574604, + -0.00033097059349529445, + 0.007437003776431084, + -0.0016197889344766736, + -0.01822647452354431, + -0.025492433458566666, + 0.009728996083140373, + 0.02141473814845085, + -0.020826347172260284, + -0.0033165477216243744, + 0.00924323033541441, + -0.01191152073442936, + -0.020826347172260284, + -0.021948397159576416, + 0.009154288098216057, + 0.008860091678798199, + -0.049315474927425385, + -0.011247869580984116, + 0.012239925563335419, + -0.005080014001578093, + 0.01141891349107027, + -0.0053468430414795876, + -0.012800950556993484, + 0.020101118832826614, + 0.004498463589698076, + -0.03136267140507698, + 0.029310140758752823, + 0.02107265032827854, + -0.010139502584934235, + -0.014258247800171375, + 0.00437531154602766, + 0.00639705453068018, + -0.018705397844314575, + 0.015462399460375309, + -0.008114338852465153, + -0.03174581006169319, + -0.01513399463146925, + 0.0018951701931655407, + 0.007245433982461691, + 0.0023347539827227592, + 0.02101791650056839, + 0.02672395296394825, + -0.004604510962963104, + 0.0066262539476156235, + -0.011979938484728336, + -0.0014059836976230145, + 0.018650664016604424, + 0.019841132685542107, + -0.006653620861470699, + 0.015777120366692543, + -0.015818171203136444, + 0.035111960023641586, + 0.012383603490889072, + -0.007457528728991747, + -0.014011944644153118, + -0.029009103775024414, + -0.01480558980256319, + 0.0058805011212825775, + 0.022577838972210884, + -0.02034742385149002, + -0.00016420247266069055, + -0.017049690708518028, + -0.0014034180203452706, + -0.009133762679994106, + 0.02170209400355816, + -0.003374702762812376, + 0.00941427517682314, + 0.008066446520388126, + -0.0028170987498015165, + -0.011624166741967201, + 0.02350831963121891, + 0.0007089783903211355, + -0.014299298636615276, + 0.011138400994241238, + -0.0019772714003920555, + -0.04559355229139328, + 0.0195537768304348, + -0.02274204231798649, + 0.03024062141776085, + 0.02632712945342064, + -0.028981735929846764, + -0.01639287918806076, + 0.010139502584934235, + -0.0213326383382082, + -0.015393981710076332, + -0.013580912724137306, + 0.006246535573154688, + 0.0029539340175688267, + 0.0037390270736068487, + 0.015544500201940536, + 0.017323359847068787, + 0.00998898409307003, + 0.013615121133625507, + -0.02634081244468689, + -0.020443208515644073, + 0.019006436690688133, + -0.022249434143304825, + 0.0024271176662296057, + 0.008983243256807327, + -0.03754763305187225, + -0.0014761118218302727, + 0.010461065918207169, + 0.004683191422373056, + -0.002437380375340581, + 0.013355134055018425, + -0.006455209571868181, + -0.03604244068264961, + 0.023029396310448647, + -0.00927059818059206, + -0.01262990664690733, + 0.00047250970965251327, + 0.023084130138158798, + -0.020101118832826614, + -0.00924323033541441, + 0.01444981712847948, + -0.006968342233449221, + -0.018253840506076813, + -0.025807155296206474, + 0.022673625499010086, + -0.0038006030954420567, + -0.0060378615744411945, + 0.017638081684708595, + -0.010597901418805122, + -0.01050211675465107, + -0.014737172052264214, + 0.0019225372234359384, + 0.005630776286125183, + 0.005661564413458109, + 0.012944628484547138, + 0.007772250100970268, + 0.015380297787487507, + -0.024466168135404587, + -0.01715915836393833, + -0.021154752001166344, + -0.004248738754540682, + -0.0006097727455198765, + -0.031089000403881073, + 0.03125320374965668, + -0.028051255270838737, + 0.0006580927292816341, + -0.028571229428052902, + 0.015380297787487507, + -0.03352466970682144, + -0.007970661856234074, + -0.02818809077143669, + 0.020785296335816383, + 0.00929112359881401, + -0.026135560125112534, + 0.011405229568481445, + 0.004392416216433048, + 0.0065715196542441845, + -0.02097686566412449, + -0.011651533655822277, + -0.0010878413449972868, + -0.03163634240627289, + -0.02029268816113472, + 0.010775786824524403, + -0.031581610441207886, + 0.03100690059363842, + 0.02605345845222473, + -0.009236388839781284, + 0.010057401843369007, + 0.0098179392516613, + 0.18598666787147522, + -0.011090508662164211, + -0.0038211282808333635, + 0.0018541195895522833, + 0.004594248253852129, + -0.005247637163847685, + 0.04794711992144585, + -0.002461326541379094, + 0.008846407756209373, + 0.02958381175994873, + 0.007861193269491196, + 0.01513399463146925, + -0.010693686082959175, + 0.010693686082959175, + 0.01892433501780033, + 0.002139763440936804, + -0.03141740709543228, + -0.017939120531082153, + -0.01283515989780426, + -0.0028940686024725437, + 0.0026990780606865883, + -0.017323359847068787, + -0.004563460126519203, + -0.03319626674056053, + 0.023316750302910805, + -0.0038827043026685715, + -0.005162115208804607, + 0.002081608399748802, + 0.008340117521584034, + -0.0020217429846525192, + -0.015831854194402695, + 0.010187394917011261, + 0.01529819704592228, + -0.012547805905342102, + -0.022208385169506073, + -0.006164434365928173, + -0.0160371083766222, + 0.0019020119216293097, + 0.03251209110021591, + 0.015941323712468147, + 0.009995825588703156, + -0.00533315958455205, + 0.002348437439650297, + -0.009516901336610317, + 0.005189482122659683, + 0.02283782698214054, + 0.0026203978341072798, + -0.0068930829875171185, + -0.0006730590830557048, + -0.013847741298377514, + -0.011439438909292221, + 0.009708470664918423, + 0.015736069530248642, + 0.04157059267163277, + -0.01156259048730135, + 0.0025417173746973276, + 0.0004340247542131692, + 0.009113237261772156, + 0.006790456362068653, + -0.006202063988894224, + -0.033661507070064545, + -0.005110802128911018, + 0.019841132685542107, + 0.012123615480959415, + -0.035139329731464386, + 0.00854536984115839, + -0.009954774752259254, + -0.006137067452073097, + 0.0030753754545003176, + -0.03858758136630058, + 0.003056560643017292, + -0.022933611646294594, + -0.016461297869682312, + 0.005336580332368612, + -0.02843439392745495, + -0.026108192279934883, + 0.0392443910241127, + 0.007594364229589701, + -0.016953906044363976, + 0.045839857310056686, + -0.006441526114940643, + -0.013505653478205204, + -0.0036535048857331276, + -0.010611584410071373, + -0.01297883689403534, + -0.03281312808394432, + 0.027161825448274612, + 0.00676651019603014, + -0.0285438634455204, + -0.02172945998609066, + -0.021578941494226456, + -0.006725459359586239, + -0.006277323700487614, + 0.010262654162943363, + 0.011056299321353436, + 0.0019139850046485662, + 0.019348524510860443, + 0.0005439206724986434, + -0.0008671943214721978, + -0.0008231503888964653, + -0.021962080150842667, + 0.06234220415353775, + 0.012431495822966099, + 0.005545254331082106, + 0.003872441593557596, + 0.008073288016021252, + 0.001208427594974637, + 0.002150026150047779, + 0.01850014552474022, + -0.007402794901281595, + -0.02427459880709648, + -0.025150345638394356, + -0.003971647471189499, + -0.010727894492447376, + -0.008292225189507008, + 0.016885487362742424, + -0.016105525195598602, + -0.006113121286034584, + 0.008791673928499222, + -0.021633675321936607, + 0.01740546151995659, + -0.001254609553143382, + -0.017555980011820793, + 0.034017279744148254, + 0.015872905030846596, + -0.022550472989678383, + -0.02104528434574604, + -0.02638186328113079, + -0.01017371192574501, + -0.031089000403881073, + 0.01013266108930111, + -0.0022509421687573195, + 0.040749579668045044, + 0.017993854358792305, + -0.005213428288698196, + -0.009222705848515034, + 0.02246837131679058, + -0.011357337236404419, + -0.01531188003718853, + 0.011302603408694267, + 0.001334145083092153, + 0.007772250100970268, + 0.012479388155043125, + -0.0006337189115583897, + 0.014901374466717243, + -0.016324462369084358, + 0.0008868643781170249, + 0.01741914637386799, + -0.016557082533836365, + -0.02383672632277012, + -0.00818275660276413, + -0.006058386992663145, + 0.005904447287321091, + -0.009400591254234314, + 0.024096712470054626, + 0.02246837131679058, + -0.006188380531966686, + 0.002490404061973095, + -0.024438800290226936, + -0.0004767858190461993, + -0.03812234103679657, + -0.00533315958455205, + 0.005688931327313185, + 0.006934133358299732, + -0.008210123516619205, + -0.01562660187482834, + -0.17591558396816254, + 0.018951701000332832, + 0.01889696717262268, + -0.057197194546461105, + 0.009126920253038406, + 0.002558821812272072, + 0.01817174069583416, + 0.000324770255247131, + -0.014395083300769329, + -0.009400591254234314, + 0.023658839985728264, + 0.00445057125762105, + -0.006804139818996191, + -0.019170638173818588, + 0.008305908180773258, + -0.003443120513111353, + -0.0319921150803566, + 0.012691482901573181, + 0.022290484979748726, + 0.012376761063933372, + 0.027928102761507034, + -0.018418043851852417, + 0.0034345684107393026, + -0.0038074448239058256, + -0.005281846038997173, + 0.006687829736620188, + 0.008004870265722275, + 0.008264857344329357, + -0.01406667847186327, + -0.039654895663261414, + 0.001565910060890019, + -0.010803154669702053, + 0.03842337802052498, + 0.007895402610301971, + -0.016488665714859962, + 0.007840667851269245, + -0.016488665714859962, + -0.005726561415940523, + -0.01888328418135643, + 0.03448252007365227, + 0.0029197251424193382, + 0.0284617617726326, + 0.005617092829197645, + 0.0013247376773506403, + -0.025109294801950455, + 0.02889963425695896, + 0.009441642090678215, + -0.013765640556812286, + 0.005483678542077541, + -0.02315254881978035, + -0.0032361571211367846, + -0.020415840670466423, + 0.020142169669270515, + 0.0010604743147268891, + 0.0077311997301876545, + 0.026628168299794197, + 0.014531918801367283, + 0.015955006703734398, + -0.01351249497383833, + -0.020155852660536766, + -0.009209021925926208, + -0.012020989321172237, + 0.027148142457008362, + -0.0015633443836122751, + -0.005476836580783129, + -0.016652867197990417, + -0.00294196093454957, + -0.001978981774300337, + -0.02955644577741623, + -0.0025468487292528152, + -0.010830521583557129, + -0.01643393002450466, + -0.015065576881170273, + -0.004344523884356022, + -0.008121180348098278, + 0.03814970701932907, + 0.005432364996522665, + -0.002291992772370577, + 0.018062271177768707, + -0.025164028629660606, + -0.00994793325662613, + 0.025218762457370758, + -0.02213996648788452, + -0.01813068985939026, + -0.015352930873632431, + -0.021469473838806152, + -0.025793472304940224, + -0.006797298323363066, + 0.00120415142737329, + -0.005025279708206654, + 0.016310779377818108, + -0.03382571041584015, + -0.004802922252565622, + -0.0038895460311323404, + -0.015421348623931408, + -0.0031882645562291145, + -0.02033373899757862, + -0.017295993864536285, + -0.0006871702498756349, + -0.01086472999304533, + 0.030459558591246605, + -0.002293703379109502, + -0.004813184961676598, + 0.016899170354008675, + 0.014490867964923382, + 0.006058386992663145, + -0.03743816167116165, + 0.008080129511654377, + 0.03171844407916069, + -0.0034875920973718166, + 0.004457412753254175, + 0.009557952173054218, + 0.016297094523906708, + -0.00361245428211987, + 0.0006200353964231908, + 0.020224271342158318, + -0.01715915836393833, + -0.0019071432761847973, + 0.0068383486941456795, + 0.006020757369697094, + 0.05670458823442459, + 0.005808662623167038, + -0.024466168135404587, + 0.0016864961944520473, + -0.03316890075802803, + -0.010283179581165314, + -0.08363379538059235, + -0.028954369947314262, + 0.013060938566923141, + 0.018007537350058556, + -0.004382153507322073, + 0.040147505700588226, + -0.0050936974585056305, + -0.0019139850046485662, + -0.04315788298845291, + 0.03180054575204849, + -0.014874007552862167, + -0.03639821335673332, + -0.003148924559354782, + -0.0054118395783007145, + 0.016201309859752655, + -0.006704934407025576, + 0.010967357084155083, + -0.020525308325886726, + -0.016132893040776253, + 0.02702498994767666, + -0.016228677704930305, + -0.002346727065742016, + 0.01751493103802204, + -0.031910013407468796, + 0.001627485966309905, + 0.0035406157840043306, + -0.02816072478890419, + 0.02567031979560852, + -0.002562242792919278, + 0.010926306247711182, + 0.0017651765374466777, + -0.018418043851852417, + 0.007690148893743753, + -0.025396648794412613, + -0.002439090982079506, + -0.019102221354842186, + -0.006609149277210236, + -0.006763089448213577, + 0.02177051082253456, + -0.012157824821770191, + 0.01562660187482834, + 0.00579155795276165, + -0.008983243256807327, + -0.0044026789255440235, + 0.004854235332459211, + -0.0005708601674996316, + -0.008805357851088047, + 0.019731663167476654, + 0.013594596646726131, + -0.02571137063205242, + -0.027243927121162415, + -0.05446048453450203, + 0.006742564029991627, + 0.021483156830072403, + -0.0037321853451430798, + -0.003195106517523527, + -0.006923870649188757, + -0.01677601970732212, + -0.017268626019358635, + 0.011938887648284435, + -0.009256914258003235, + 0.009756363928318024, + -0.017692815512418747, + 0.01049527432769537, + 0.014107729308307171, + -0.021825244650244713, + -0.020798979327082634, + -0.009318490512669086, + 0.007026497274637222, + 0.001782280975021422, + 0.005285267252475023, + 0.010816837660968304, + 0.0053092134185135365, + 0.0040947990491986275, + -0.022235751152038574, + 0.020456891506910324, + -0.023672522976994514, + -0.030131153762340546, + 0.003687713760882616, + -0.017172841355204582, + -0.015270830132067204, + -0.034017279744148254, + 0.0016625500284135342, + -0.03385307639837265, + 0.019690612331032753, + 0.015216095373034477, + -0.00757383881136775, + -0.023781990632414818, + -0.00533315958455205, + -0.03486565873026848, + 0.018267525359988213, + 0.002935119206085801, + 0.00347561901435256, + -0.008299066685140133, + -0.009120078757405281, + -0.004084536340087652, + 0.014915057457983494, + -0.0019995071925222874, + -0.002247521420940757, + 0.009174813516438007, + -0.016830753535032272, + 0.0005734258447773755, + -0.0640389621257782, + 0.03130793944001198, + -0.0007632849155925214, + -0.013663014397025108, + -0.020963182672858238, + -0.016201309859752655, + 0.012951469980180264, + 0.01498347520828247, + -0.002772627165541053, + 0.005251058377325535, + -0.015284513123333454, + -0.01888328418135643, + -0.027148142457008362, + 0.020881080999970436, + -0.025506116449832916, + -0.0213736891746521, + 0.03450988605618477, + -0.0007816721918061376, + 0.016160259023308754, + 0.01121366024017334, + -0.003841653699055314, + 0.016474980860948563, + -0.011439438909292221, + 0.016598133370280266, + -0.012862526811659336, + -0.0010664608562365174, + -0.02498614229261875, + 0.0004695164388976991, + 0.005935234948992729, + 0.007915927097201347, + 0.005343422293663025, + -0.024370383471250534, + -0.001292239292524755, + 0.03278575837612152, + -0.008073288016021252, + -0.012349394150078297, + 0.0007115440675988793, + 0.019649561494588852, + 0.005747086368501186, + 0.061794862151145935, + 0.004074273630976677, + -0.039709631353616714, + 0.009660578332841396, + -0.034400418400764465, + 0.013799848966300488, + 0.008586420677602291, + 0.0017993854125961661, + 0.004146112594753504, + 0.0027521017473191023, + -0.002772627165541053, + 0.028242824599146843, + 0.011870469897985458, + -0.0008453861810266972, + -0.0066262539476156235, + 0.00253658602014184, + -0.01137786265462637, + 0.0159960575401783, + -0.0106663191691041, + 0.015106627717614174, + -0.03601507470011711, + 0.04340418800711632, + 0.002392909023910761, + 0.017254943028092384, + 0.007779092062264681, + 0.01958114467561245, + 0.0029932742472738028, + -0.01711810752749443, + 0.01316356472671032, + 0.019827447831630707, + -0.007881718687713146, + -0.02067582868039608, + -0.0009937670547515154, + 0.0025023771449923515, + 0.01750124618411064, + 0.01923905685544014, + 0.000838116800878197, + 0.0017549139447510242, + 0.007868034765124321, + -0.0133825009688735, + 0.01248622965067625, + 0.03169107809662819, + -0.0037834986578673124, + 0.016912855207920074, + -0.014094045385718346, + 0.016584450379014015, + -0.003244709223508835, + -0.015859222039580345, + -0.0008937061647884548, + 0.013074621558189392, + 0.002736707916483283, + 0.015859222039580345, + 0.026067141443490982, + 0.0005687220836989582, + 0.004159796051681042, + 0.009140604175627232, + -0.0033815447241067886, + -0.004170058760792017, + -0.01999165117740631, + 0.014942425303161144, + 0.03765710070729256, + 0.015393981710076332, + -0.003961384762078524, + -0.0018917493289336562, + -0.021989447996020317, + -0.020853713154792786, + 0.021633675321936607, + -0.019512727856636047, + -0.025396648794412613, + -0.009195338003337383, + 0.017692815512418747, + 0.019526410847902298, + 0.03141740709543228, + 0.011480489745736122, + 0.013409868814051151, + -0.019813764840364456, + 0.023754624649882317, + -0.0029128834139555693, + -0.026505015790462494, + -0.037574999034404755, + 0.03423621505498886, + 0.017583347856998444, + 0.0014744013315066695, + 0.015366614796221256, + -0.0010331071680411696, + 0.033606771379709244, + 0.026956573128700256, + 0.037602365016937256, + -0.02749023027718067, + 0.0285438634455204, + 0.0025861889589577913, + 0.02354937046766281, + 0.0016163680702447891, + -0.008025395683944225, + -0.007943294942378998, + -0.026833420619368553, + -0.013895634561777115, + 0.004994492046535015, + -0.010604742914438248, + 0.01885591633617878, + 0.09720786660909653, + 0.027326028794050217, + -0.001455586520023644, + 0.007122282404452562, + -0.021127384155988693, + -0.005545254331082106, + 0.006763089448213577, + -0.004313735757023096, + 0.007956977933645248, + -0.03817707300186157, + 0.010741578415036201, + -0.010830521583557129, + -0.004922653082758188, + -0.01785701885819435, + 0.00410164101049304, + -0.012417811900377274, + -0.03519406169652939, + 0.027531281113624573, + -0.005938656162470579, + 0.00303432485088706, + 0.03344257175922394, + -0.0036295587196946144, + 0.003663767594844103, + 0.021989447996020317, + -0.017200209200382233, + -0.0033575985580682755, + 0.022988345474004745, + -0.006725459359586239, + -0.009770046919584274, + -0.013991419225931168, + -0.006540731992572546, + 0.017282310873270035, + -0.060426510870456696, + -0.03308679908514023, + 0.02241363748908043, + -0.021647358313202858, + 0.010201078839600086, + -0.009537426754832268, + 0.023056764155626297, + -0.010762103833258152, + 0.008654838427901268, + 0.004970545414835215, + -0.01123418565839529, + -0.029994318261742592, + 0.005524728912860155, + -0.01781596802175045, + 0.002880384912714362, + -0.007943294942378998, + -0.02816072478890419 + ], + "metadata": { + "source": "INSPIRER_Schlussbericht.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 5, + "has_images": true, + "image_count": 29, + "detection_class_prob": 0.6591171622276306, + "coordinates": "CoordinatesMetadata(points=((1122.828857421875, 155.53517150878906), (1122.828857421875, 361.06524658203125), (1358.3359375, 361.06524658203125), (1358.3359375, 155.53517150878906)), system=)", + "links": [], + "last_modified": "2025-05-05T22:58:03", + "_known_field_names": "frozenset({'page_number', 'text_as_html', 'emphasized_text_contents', 'subject', 'data_source', 'links', 'coordinates', 'image_path', 'is_continuation', 'header_footer_type', 'sent_from', 'url', 'parent_id', 'detection_class_prob', 'emphasized_text_tags', 'last_modified', 'category_depth', 'page_name', 'attached_to_filename', 'bcc_recipient', 'orig_elements', 'languages', 'filetype', 'link_texts', 'file_directory', 'sent_to', 'key_value_pairs', 'image_base64', 'cc_recipient', 'link_urls', 'signature', 'image_mime_type', 'filename', 'detection_origin', 'table_as_cells', 'email_message_id', 'link_start_indexes'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "INSPIRER_Schlussbericht.pdf", + "parent_id": "1c51aaba3295e535d31a83c2392f0391", + "text_as_html": "
Projektlaufzeit01.08.2021 - 31.07.2024 (verl\u00e4ngert bis 31.10.2024)
F\u00f6rderkennzeichen165V8744
StichworteStadtentwicklung, Digitale B\u00fcrgerbeteiligung, Partizipation
und Akzeptanz, Augmented Reality, Extended Reality (XR),
AR-Tracking, Point Cloud Matching
ProjektleitungProf. Dr.-Ing. Volker Coors
Beteiligte ProfessorenProf. Dr.-Ing. Volker Coors
Gef\u00f6rderte Ma\u00dfnahmeForschungsprogramm zur Mensch-Technik-nteraktion
F\u00f6rderbereichTechnik zum Mensch bringen
FachhochschuleHochschule f\u00fcr Technik Stuttgart (HFT Stuttgart),
", + "id": "351a57f5-fe09-4ea6-8750-b2c5267a9700", + "processing_timestamp": "2025-05-05T23:07:23.860264", + "chunk_number": 15, + "total_chunks": 19, + "chunking_strategy": "hybrid", + "word_count": 284 + } +} \ No newline at end of file diff --git a/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000016.json b/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000016.json new file mode 100644 index 0000000000000000000000000000000000000000..9bd590376591d21ddb1fc07804cf5a0e356883ee --- /dev/null +++ b/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000016.json @@ -0,0 +1,1570 @@ +{ + "id": "2b86db2d-408b-1992-e1b5-8a9f00000016", + "content": "- 42. H. Wiesner und A. Wiesner-Steiner, \u201eEinsch\u00e4tzungen zu Lernpfaden \u2013 Eine empirische Exploration\u201c, in Medienvielfalt im Mathematikunterricht, J. Roth, E. S\u00fcss-Stepancik, und H.Wiesner, Hrsg. Wiesbaden: Springer Spektrum Fachmedien, 2015, S. 27\u201345. - 43. J. Kirch, B. Eisenbart, und H. Wiesner, \u201eCOMPUTER SUPPORTED COLLABORATIVE WORK \u2013TEACHING TRANSFORMATIVE TECHNOLOGY AND PARTICIPATION\u201c, in13th annual International Technology, Education and Development Conference (INTED2019), Valencia,2019, S. in Print, doi: 10.21125/inted.2019.1609. - 44. D. Monettu. a., \u201eTransformative Technologies in Education: A Roadmap for Robotics in Learning Scenarios\u201c, inProceedings of the Academic Conference on Education, Teaching and E-learning, AC-ETeL 2018, Prague, 2018, S. 1\u20138. - 45. H. Wiesner, \u201eMehr Diversity und mehr Gender wagen: Herausforderungen im E-Learningund MOOCs- Kontext\u201c, inGender-Effekte: Wie Frauen die Technik von morgen gestalten.IZG-Forschung, Band 19, U. Kempf und B. Wrede, Hrsg. 2017, S. 21\u201338. - 46. H. Wiesner, I. Tripp, J. Sch\u00fctze, und E. Erol, \u201eDigitale Souver\u00e4nit\u00e4t und Geschlecht \u2013 dasgeht uns alle an!\u201c,Ksoe Doss., Bd. 1, S. 10\u201313, 2019. - 47. D. Wagner, M. Wewetzer, J. Bogdahn, N. Alam, M. Pries, und V. Coors, \u201eGeometric-Semantical Consistency Validation of CityGML Models\u201c, 2013. - 48. HFT Stuttgart, \u201eSPIRIT | Ereignisgesteuerte Informationsvermittlung, Inspiration und Unterhaltung im urbanen Umfeld auf Basis mobiler Augmented Reality Technologien\u201c,2017. https://www.hft- stuttgart.de/forschung/projekte/abgeschlossen/spirit (zugegriffen Juli19, 2020). - 49. H. Dastageeri, M. Storz, V. Coors, und A. Rahman, \u201eMobile Location-based and Videobased Augmented Reality for Guiding and Informing Pilgrims\u201c, Penang, 2016. - 50. H. Dastageeri, M. Storz, A. Koukofikis, S. Knauth, und V. Coors, \u201eApproach and evaluation of a mobile video- based and location based augmented reality platform for information brokerage\u201c, International Archives of the Photogrammetry, Remote Sensing and Spatial Information Sciences - ISPRS Archives, 2016, S. 151\u2013157, doi: 10.5194/isprs-archives-XLII-4-W1-151-2016. - 51. H. Dastageeri, M. Storz, und V. Coors, \u201eSPIRIT Videobasierte mobile Augmented Reality L\u00f6sung zur interaktiven Informationsvermittlung\u201c, inTagungsband DGPF Jahrestagung,2015, Bd.", + "embedding": [ + -0.0011876526987180114, + -0.0030980047304183245, + -0.0065497783944010735, + -0.019312411546707153, + 0.004251965321600437, + 0.013281495310366154, + -0.01285697240382433, + -0.01229094248265028, + 0.010505251586437225, + -0.04571367800235748, + -0.005525533109903336, + 0.026859482750296593, + -0.004821364767849445, + 0.002956497250124812, + -0.00517513370141387, + -0.0024780668318271637, + 0.03816660866141319, + -0.0019086673855781555, + 0.006189270876348019, + -0.00490222591906786, + -0.036684148013591766, + 0.0015574254794046283, + 0.0209161639213562, + -0.005239148624241352, + -0.029891787096858025, + 0.01599709317088127, + 0.03245240077376366, + -0.026657328009605408, + -0.007338177412748337, + -0.019191119819879532, + 0.01781647466123104, + -0.005549117922782898, + -0.012034880928695202, + -0.00904974527657032, + -0.01935284212231636, + -0.004481072537600994, + 0.010424390435218811, + -0.012991741299629211, + 0.03134729340672493, + 0.01020875945687294, + 0.012230295687913895, + 0.016050999984145164, + -0.00783008523285389, + -0.006014070939272642, + -0.014460724778473377, + 0.026751667261123657, + -0.005060579627752304, + -0.010680451057851315, + -0.0012525103520601988, + 0.028894495218992233, + 0.017856905236840248, + 0.03040391020476818, + 0.006286978721618652, + -0.017681706696748734, + -0.009204729460179806, + -0.012742418795824051, + -0.002048490336164832, + 0.03350359946489334, + 0.01769518293440342, + 0.0022253748029470444, + -0.007991807535290718, + -0.00633414788171649, + -0.036684148013591766, + 0.01807253621518612, + -0.03169769421219826, + -0.01150928158313036, + -0.022196471691131592, + 0.014635924249887466, + 0.014501155354082584, + 0.005242518149316311, + 0.027169451117515564, + -0.0019356212578713894, + 0.009386667981743813, + -0.018732905387878418, + 0.046333618462085724, + -0.002348351525142789, + -0.013692541047930717, + -0.008038977161049843, + -0.014393339864909649, + 0.010909559205174446, + -0.008733037859201431, + -0.02001321129500866, + -0.04854382947087288, + 0.00022173728211782873, + 0.010640020482242107, + 0.012816541828215122, + 0.002489859238266945, + -0.003416396677494049, + -0.00710907019674778, + -0.003581488970667124, + 0.002943020313978195, + 0.02489185333251953, + -0.0074796853587031364, + 0.010437866672873497, + 0.0015574254794046283, + 0.008995837531983852, + -0.015094139613211155, + 0.006826054770499468, + 0.0022102133370935917, + -0.014730262570083141, + -0.017708659172058105, + -0.006940608844161034, + -0.0019440442556515336, + -0.011866419576108456, + -0.03776230290532112, + 0.007951376959681511, + -0.01061306707561016, + -0.002334874588996172, + 0.01809949055314064, + -0.010734358802437782, + -0.032425444573163986, + 0.018988966941833496, + -0.005572702270001173, + -0.007452731486409903, + 0.005784963723272085, + -0.029703110456466675, + 0.04393472895026207, + -0.00472028786316514, + -0.0048617953434586525, + -0.029541386291384697, + 0.025767851620912552, + 0.0007273320225067437, + 0.020781395956873894, + -0.019002443179488182, + 0.03999947011470795, + 0.024123668670654297, + -0.012041619047522545, + -0.009514698758721352, + -0.02095659449696541, + -0.021320471540093422, + -0.007237100973725319, + -0.007917684502899647, + 0.01741216704249382, + 0.015121093019843102, + -0.006041024811565876, + 0.004430534318089485, + -0.026293450966477394, + -0.004255334381014109, + -0.027951112017035484, + -0.03258717060089111, + 0.009016052819788456, + 0.01002008281648159, + -0.00870608352124691, + -0.019366320222616196, + -0.026657328009605408, + 0.01788385957479477, + 0.013375833630561829, + 0.01644182950258255, + 0.005589548498392105, + 0.0006864801398478448, + -0.0037735349033027887, + 0.0028790049254894257, + 0.0084095923230052, + 0.024258438497781754, + -0.003665719646960497, + 0.0006995358853600919, + 0.017951244488358498, + 0.024851422756910324, + -0.028085879981517792, + -0.008901499211788177, + -0.008975622244179249, + -0.019784104079008102, + 0.0034669351298362017, + -0.0006317301886156201, + 0.01928545907139778, + 0.009278852492570877, + 0.011583404615521431, + 0.00580854807049036, + -0.006812578067183495, + -0.002232113154605031, + -0.019972780719399452, + 0.023530684411525726, + -0.008753253147006035, + 0.018490320071578026, + -0.006027548108249903, + -0.00073491275543347, + 0.01975714974105358, + 0.0165361687541008, + -0.01750650629401207, + -0.011529496870934963, + 0.008274822495877743, + -0.00890823733061552, + 0.0017115676309913397, + 0.012520049698650837, + 0.007661623414605856, + -0.025781329721212387, + 0.009838144294917583, + 0.002533659106120467, + -0.0169135220348835, + -0.008888022042810917, + 0.00977076031267643, + 0.043072205036878586, + 0.0021192440763115883, + -0.00046832262887619436, + -0.644304096698761, + -0.013214110396802425, + 0.007007993292063475, + -0.026643851771950722, + 0.005451410077512264, + -4.464226367417723e-05, + 0.017236968502402306, + 0.011475589126348495, + -0.013921648263931274, + 0.04994542896747589, + -0.0047270264476537704, + 0.002124297898262739, + -0.0038813501596450806, + -0.010943250730633736, + -0.029352709650993347, + -0.01348364818841219, + -0.0015043601160869002, + -0.015431062318384647, + 0.03625288978219032, + 0.0063779475167393684, + -0.017843428999185562, + 0.017115676775574684, + -0.008551099337637424, + -0.008665652945637703, + -0.018490320071578026, + 0.02095659449696541, + 0.010936512611806393, + 0.00010570951417321339, + 0.03196723014116287, + -0.002958181779831648, + -0.02526920661330223, + 0.02126656472682953, + 0.003136750776320696, + 0.017358260229229927, + 0.04803170636296272, + 0.015619738958775997, + -0.014150755479931831, + 0.02323419228196144, + 0.00937992986291647, + 0.032775845378637314, + -0.012836757116019726, + -0.010087466798722744, + 0.013618418015539646, + 0.019501088187098503, + -0.0003299737290944904, + 0.01637444645166397, + 0.028894495218992233, + -0.02514791488647461, + -0.008207438513636589, + -0.020740965381264687, + -0.0024073130916804075, + -0.023786745965480804, + 0.007755961734801531, + -0.011266697198152542, + 0.014272048138082027, + 0.02251991629600525, + 0.00964272953569889, + -0.008982360363006592, + 0.012115742079913616, + 0.0021040826104581356, + -0.01700786128640175, + 0.016077954322099686, + 0.00264652818441391, + -0.007513377349823713, + -0.013706017285585403, + 0.02843628078699112, + -0.02361154742538929, + 0.00890823733061552, + 0.003514104289934039, + 0.0001797272270778194, + 0.011623835191130638, + 0.032614123076200485, + -0.004703441634774208, + -0.008901499211788177, + 0.023476777598261833, + 0.025134436786174774, + 0.008429807610809803, + -0.02095659449696541, + -0.007075377739965916, + 0.016576599329710007, + 0.014676354825496674, + -0.003898196155205369, + 6.28045090707019e-05, + 0.005596287082880735, + 0.018544228747487068, + -0.018908105790615082, + -0.01809949055314064, + -0.006637378130108118, + -0.01092977449297905, + 0.014204663224518299, + 0.028786679729819298, + 0.007594238966703415, + -0.0035882273223251104, + -0.017897335812449455, + 0.015134570188820362, + 0.04048463702201843, + 0.009258637204766273, + 0.030107418075203896, + -0.0009593875147402287, + -0.0687861517071724, + -0.029352709650993347, + 0.007843561470508575, + 0.01951456628739834, + -0.01793776825070381, + -0.02349025383591652, + 0.01672484539449215, + -0.03463565930724144, + 0.00542445620521903, + 0.04191318899393082, + -0.028193695470690727, + -0.02198084071278572, + -0.01932588964700699, + -0.009986390359699726, + 0.017021337524056435, + 0.006041024811565876, + -0.03291061520576477, + 0.030457817018032074, + 0.002356774639338255, + 0.00440021138638258, + -0.02292422391474247, + 0.0330723375082016, + -0.018112966790795326, + 0.009858359582722187, + -0.0015490023652091622, + 0.007317962124943733, + 4.14836140407715e-05, + -0.0022910747211426497, + -0.011273435316979885, + -0.009352975524961948, + -0.004791041370481253, + 0.017856905236840248, + -0.021940410137176514, + 0.022439055144786835, + 0.002414051443338394, + 0.005838871467858553, + 0.005427825730293989, + 0.008726299740374088, + -0.0049729798920452595, + 0.0005500264232978225, + -0.01058611273765564, + -0.03264107555150986, + -0.002592620672658086, + 0.02154957875609398, + -0.025686990469694138, + -0.028490187600255013, + -0.026266498491168022, + -0.011839465238153934, + 0.031104708090424538, + 0.01863856613636017, + -0.001296310336329043, + -0.03431221470236778, + -0.005744533147662878, + 0.010175067000091076, + 0.029352709650993347, + 0.012796326540410519, + -0.001277779578231275, + -0.02824760414659977, + -0.007365131285041571, + -0.011650788597762585, + -0.04293743520975113, + 0.009204729460179806, + 0.0259565282613039, + -0.021684348583221436, + -0.010114421136677265, + -0.007068639155477285, + 0.007291008252650499, + 0.016980906948447227, + 0.018732905387878418, + -0.027951112017035484, + -0.03353055194020271, + 0.012890664860606194, + -0.012034880928695202, + -0.009393406100571156, + 0.03158987686038017, + -0.01741216704249382, + 0.013813832774758339, + -0.0016113331075757742, + 0.004285657312721014, + -0.0021394595969468355, + -0.008119838312268257, + -0.014069894328713417, + 0.008133315481245518, + -0.027533328160643578, + -0.004231749568134546, + -0.0004226274904794991, + 0.013577987439930439, + 0.008914976380765438, + -0.004716918338090181, + -0.01888115145266056, + 0.0028621586970984936, + 0.007284270133823156, + 0.026724712923169136, + 0.009346237406134605, + 0.008396115154027939, + -0.012937833555042744, + 0.030080463737249374, + -0.015228908509016037, + -0.012385280802845955, + 0.004198057577013969, + 0.02997264824807644, + 0.04684573784470558, + 0.015444539487361908, + 0.016172291710972786, + 0.0039925347082316875, + 0.006421747617423534, + -0.018045581877231598, + 0.008962145075201988, + -0.009844882413744926, + 0.03266803175210953, + 0.0004847476084250957, + 0.03304538503289223, + -0.023166809231042862, + -0.03751971945166588, + -0.01632053777575493, + -0.0025538743939250708, + 0.025390498340129852, + -0.0062162247486412525, + 0.019177643582224846, + -0.011954018846154213, + 0.018678996711969376, + 0.011024112813174725, + -0.029487479478120804, + 0.03835528716444969, + 0.012203342281281948, + -0.006479024421423674, + 0.0063779475167393684, + 0.012600910849869251, + 0.012216819450259209, + 0.013908171094954014, + -0.012735679745674133, + 0.0004750610969495028, + 0.011435158550739288, + 0.02997264824807644, + 0.013490387238562107, + 0.0133084487169981, + 0.012270726263523102, + 0.018112966790795326, + 0.0005112802609801292, + 0.04102371633052826, + 0.01251331064850092, + -0.007398823741823435, + 0.01556583121418953, + 0.007526854518800974, + -0.0034062890335917473, + 0.02448754571378231, + -0.018652044236660004, + 0.02543092891573906, + 0.014676354825496674, + -0.0010057144099846482, + 0.02382717654109001, + -0.013321925885975361, + -0.004026226699352264, + -0.008234391920268536, + 0.003921780735254288, + 0.020754441618919373, + -0.015700601041316986, + 0.016859615221619606, + -0.0015447908081114292, + 0.005013410467654467, + 0.029757017269730568, + 0.02051185816526413, + 0.009784236550331116, + 0.02900231070816517, + -0.015134570188820362, + -0.007991807535290718, + -0.004716918338090181, + -0.028409326449036598, + -0.015458015725016594, + -0.013355618342757225, + -0.019878443330526352, + -0.01138125080615282, + -0.02150914818048477, + 0.0038678732234984636, + -0.002248959382995963, + 0.010424390435218811, + 0.0058152866549789906, + 0.005889409687370062, + 0.007715531159192324, + 0.005471625365316868, + 0.0227085929363966, + -0.03035000152885914, + -0.02048490382730961, + 0.0018143290653824806, + 0.01807253621518612, + 0.002820043358951807, + -0.016953952610492706, + -0.008901499211788177, + 0.013207372277975082, + -0.03129338473081589, + -0.014083371497690678, + -0.004865164402872324, + -0.012041619047522545, + 0.0036556117702275515, + -0.007951376959681511, + -0.0005626609781756997, + -0.013712756335735321, + 0.021091364324092865, + -0.016307061538100243, + 0.013739709742367268, + 0.00948774442076683, + -0.004002642352133989, + 0.0055086868815124035, + -0.02245253324508667, + -0.006933870259672403, + 0.03582162782549858, + -0.01663050800561905, + -0.0033911275677382946, + -0.007607715670019388, + -0.014379862695932388, + -0.004602364730089903, + 0.001554898452013731, + -0.013038910925388336, + 0.007472946774214506, + 0.020377088338136673, + 0.0007454415899701416, + 0.005316641181707382, + 0.008820638060569763, + -0.01885419711470604, + 0.015538877807557583, + 0.015121093019843102, + -0.020902687683701515, + -0.01826121285557747, + -0.0067889937199652195, + 0.012486357241868973, + 0.03773534670472145, + 0.03652242571115494, + -0.027978066354990005, + 0.0029767125379294157, + 0.0109769431874156, + -0.009278852492570877, + -0.033180151134729385, + -0.030134370550513268, + -0.006940608844161034, + -0.026940343901515007, + 0.00684963958337903, + -0.0009560183389112353, + 0.029487479478120804, + -0.015916230157017708, + 0.02668428234755993, + -0.003150227712467313, + 0.010956727899610996, + -0.004659641534090042, + 0.02276250161230564, + -0.014730262570083141, + -0.016590075567364693, + -0.018490320071578026, + 0.004703441634774208, + 0.02367893047630787, + 0.013881217688322067, + -0.036495473235845566, + 0.037088457494974136, + 0.022466009482741356, + 0.006563255097717047, + -0.03967602178454399, + 0.0006687916466034949, + 0.038004886358976364, + 0.01916416548192501, + 0.0065059782937169075, + -0.018921582028269768, + 0.022883793339133263, + 0.01227746531367302, + 0.016953952610492706, + 0.037816211581230164, + -0.008321992121636868, + 0.008086145855486393, + 0.04234445095062256, + 0.013490387238562107, + 0.0018463366432115436, + 0.009366452693939209, + -0.016859615221619606, + -0.009750544093549252, + 0.017183059826493263, + -0.008820638060569763, + -0.03115861676633358, + -0.003541058162227273, + 0.018032105639576912, + -0.004353041760623455, + -0.030862124636769295, + -0.018584659323096275, + -0.0214821957051754, + -0.001510256202891469, + -0.002725705038756132, + -0.01092977449297905, + -0.007041685748845339, + -0.009966175071895123, + -0.021347425878047943, + -0.007203408516943455, + 0.0017124098958447576, + -0.01772213727235794, + -0.0018278058851137757, + -0.026657328009605408, + -0.011313865892589092, + -0.011980973184108734, + 0.01942022703588009, + -0.013146725483238697, + -0.014096847735345364, + -0.025579174980521202, + -0.018342074006795883, + 0.00425870344042778, + 0.002142828656360507, + 0.006084824912250042, + -0.012102264910936356, + -0.017183059826493263, + 0.006317301653325558, + -0.007291008252650499, + -0.0005993013619445264, + 0.005087533500045538, + -0.03517473489046097, + 0.013921648263931274, + 0.005205456633120775, + -0.025767851620912552, + -0.003594965673983097, + -0.0064655477181077, + 0.0019490980776026845, + 0.006108409725129604, + -0.0161588154733181, + 0.006425117142498493, + 0.0021664132364094257, + 0.0018345443531870842, + 0.007735746446996927, + -0.00664748577401042, + 0.022317763417959213, + 0.025579174980521202, + -0.01923155039548874, + 0.024474069476127625, + -0.026751667261123657, + -0.013753186911344528, + -0.01423161756247282, + 0.029137080535292625, + 0.007405562326312065, + -0.005063949152827263, + 0.011441896669566631, + 0.0023904668632894754, + -0.01498632412403822, + 0.007708792574703693, + -0.007823346182703972, + 0.03776230290532112, + 0.008530884049832821, + 0.01840945892035961, + 0.02150914818048477, + 0.0015161524061113596, + -0.0071023316122591496, + 0.023881085216999054, + -0.022937702015042305, + 0.013867740519344807, + -0.027425512671470642, + 0.030269140377640724, + 0.015794938430190086, + -0.00568388681858778, + 0.019487611949443817, + -0.0053301178850233555, + -0.007216885220259428, + -0.039568208158016205, + 0.006448701489716768, + -0.007627930957823992, + 0.01556583121418953, + 0.022209947928786278, + 0.004491180181503296, + -0.02214256301522255, + -0.01401598658412695, + -0.009824667125940323, + -0.00255555915646255, + 0.01132060494273901, + 0.006239809561520815, + 0.008591529913246632, + -0.006812578067183495, + 0.0008465184364467859, + -0.01413727831095457, + 0.003343958407640457, + -0.030323047190904617, + -0.02787025086581707, + 0.0008945299196057022, + -0.016010569408535957, + -0.0157814621925354, + 0.0022068440448492765, + 0.010478297248482704, + -0.005026887636631727, + 0.023881085216999054, + 0.009514698758721352, + -0.033800091594457626, + -0.013402787037193775, + -0.002941335551440716, + 0.007284270133823156, + 0.0169135220348835, + 0.02417757734656334, + -0.0026566358283162117, + 0.01710219867527485, + 0.021037457510828972, + 0.011003897525370121, + -0.00987857487052679, + -0.0077424850314855576, + 0.013524079695343971, + -0.04388082027435303, + 0.01675179973244667, + 0.018530750647187233, + 0.0015296293422579765, + 0.019999735057353973, + 0.002966604894027114, + 0.02536354400217533, + 0.025660036131739616, + -0.02245253324508667, + -0.00652956310659647, + 0.0026953821070492268, + -0.048840321600437164, + -0.03924476355314255, + 0.017951244488358498, + 0.013227587565779686, + 0.01423161756247282, + -0.03334187716245651, + 0.004268811084330082, + 0.02266816236078739, + -0.0006266763084568083, + 0.009339498355984688, + -0.01665746048092842, + 0.028355419635772705, + -0.02029622718691826, + 0.03398876637220383, + 0.012850234284996986, + 0.00627013249322772, + -0.031104708090424538, + -0.017654752358794212, + -0.033827044069767, + 0.005053841508924961, + 0.026549512520432472, + -0.01840945892035961, + -0.010127898305654526, + 0.004993195179849863, + -0.014110324904322624, + -0.0024056285619735718, + 0.011711434461176395, + 0.010053775273263454, + -0.01760084554553032, + -0.013416264206171036, + -0.012014665640890598, + 0.03366532176733017, + -0.009939221665263176, + -0.0022337979171425104, + -0.002462905365973711, + 0.0003714573394972831, + 0.008207438513636589, + -0.023099424317479134, + 0.024851422756910324, + -0.015013277530670166, + -0.02495923824608326, + 0.0033557505812495947, + 0.025377022102475166, + 0.033368829637765884, + 0.016455307602882385, + 0.031185569241642952, + 0.04029596224427223, + -0.01947413571178913, + -0.017061768099665642, + -0.04870555177330971, + 0.0022102133370935917, + 0.009029529988765717, + 0.013881217688322067, + 0.0016997753409668803, + -0.025377022102475166, + -0.014918939210474491, + -0.004187949933111668, + 0.003898196155205369, + -0.02881363406777382, + -0.013402787037193775, + 0.03789707273244858, + 0.016145339235663414, + -0.002563982270658016, + -0.018625089898705482, + 0.02088921144604683, + -0.03428525850176811, + 0.003343958407640457, + -0.012176387943327427, + 0.015794938430190086, + -0.006711501162499189, + -0.0032142431009560823, + -0.0026802204083651304, + 0.03487824276089668, + 0.0016627138247713447, + 0.027816342189908028, + -0.010323313064873219, + -0.004231749568134546, + 0.02001321129500866, + -0.030646493658423424, + -0.00929906778037548, + 0.024689698591828346, + -0.005400871858000755, + 0.029864832758903503, + -0.012075311504304409, + 0.017614321783185005, + 0.007978330366313457, + -0.010896082036197186, + -0.010579374618828297, + 0.0008995837415568531, + 0.0024073130916804075, + 0.023193761706352234, + -0.02025579661130905, + -0.009184514172375202, + -0.01232463400810957, + -0.00692039355635643, + 0.005020149052143097, + -6.185691017890349e-05, + 0.019433705136179924, + -0.02483794465661049, + -0.01219660323113203, + 0.007621192838996649, + 0.014312478713691235, + -0.0006376263336278498, + -0.000806087686214596, + -0.003023881698027253, + 0.00043715728679671884, + -0.0047506107948720455, + -0.010073990561068058, + -0.013402787037193775, + 0.011017373763024807, + -0.0551205612719059, + 0.003760057967156172, + 0.006034286692738533, + 0.01039743609726429, + 0.011347558349370956, + -0.007560546509921551, + 0.0012727257562801242, + -0.01656312309205532, + 0.018059059977531433, + -0.032614123076200485, + 0.024191053584218025, + 0.04533632472157478, + -0.02235819399356842, + -0.022991608828306198, + 0.0081265764310956, + 0.008113100193440914, + -0.03730408847332001, + 0.01520195510238409, + 0.009979652240872383, + -0.02264120988547802, + -0.005811917595565319, + 0.006681178230792284, + 0.004164365120232105, + 0.010606328025460243, + 0.007075377739965916, + 0.008753253147006035, + -0.0012541949981823564, + 0.004807887598872185, + -0.012985003180801868, + -0.0025100745260715485, + 0.011637312360107899, + 0.015606261789798737, + -0.00365224271081388, + 0.02429886907339096, + -0.01594318449497223, + 0.02630692906677723, + -0.008099623024463654, + -0.0018109597731381655, + -0.012061834335327148, + -0.02486489899456501, + 0.00014940417895559222, + -0.007668361999094486, + 0.024608837440609932, + -0.019204596057534218, + 0.000730280065909028, + 0.011751865968108177, + -0.0053301178850233555, + -0.012890664860606194, + 0.009474268183112144, + 0.004828102886676788, + -0.0035174735821783543, + 0.00859826896339655, + 0.017263922840356827, + 0.021751733496785164, + 0.021684348583221436, + -0.00041925825644284487, + -0.004383365157991648, + 0.015525400638580322, + 0.014042939990758896, + -0.0276546198874712, + 0.0334496907889843, + 0.004339565057307482, + 0.04040377587080002, + 0.010431128554046154, + -0.006933870259672403, + -0.013780140317976475, + -0.00575464079156518, + -0.03819356486201286, + -0.008146792650222778, + -0.01196075789630413, + 0.013921648263931274, + 0.004898856859654188, + 0.010107683017849922, + -0.0029160664416849613, + 0.006381317041814327, + -0.004491180181503296, + 0.0059096249751746655, + -0.0265225600451231, + -0.015363677404820919, + 0.004029596224427223, + -0.00968989823013544, + 0.005838871467858553, + 0.002614520490169525, + -0.05433890223503113, + -0.006071348208934069, + 0.033180151134729385, + 0.0021899978164583445, + -0.0011994449887424707, + -0.0038712425157427788, + -0.016765275970101357, + -0.013018695637583733, + 0.016792230308055878, + 0.007028208579868078, + 0.02141481079161167, + -0.004855056758970022, + 0.03555208817124367, + -0.03115861676633358, + 0.01369927916675806, + -0.009737067855894566, + -0.006010701879858971, + -0.02758723497390747, + -0.002444374607875943, + 0.012547003105282784, + 0.0009871836518868804, + 0.00665422435849905, + 0.043045252561569214, + -0.0038105964194983244, + 0.005013410467654467, + -0.012769372202455997, + 0.01694047637283802, + -0.01935284212231636, + 0.0029194357339292765, + -0.005431194789707661, + 0.01646878384053707, + 0.02088921144604683, + -0.014379862695932388, + 0.001629863865673542, + -0.0036017042584717274, + -0.010047036223113537, + 0.0004321034357417375, + -0.016199246048927307, + 0.012607649900019169, + -0.0323176309466362, + -0.009972913190722466, + -0.0060376557521522045, + 0.024042807519435883, + -0.016495738178491592, + -0.005990486592054367, + -0.00809288490563631, + 0.023288100957870483, + 0.01725044474005699, + -0.029918741434812546, + -0.006162317004054785, + -0.0060881939716637135, + 0.0042149038054049015, + -0.02004016563296318, + -0.01991887390613556, + -0.005896148271858692, + -0.0015885907923802733, + -0.002339928410947323, + 0.0035477965138852596, + -0.019191119819879532, + 0.012142696417868137, + -0.0016719792038202286, + -0.01132060494273901, + 0.0008793683955445886, + -0.011927065439522266, + 0.173366978764534, + -0.019972780719399452, + 0.00018309646111447364, + 0.008995837531983852, + -0.005906255915760994, + -0.018018629401922226, + 0.04916376993060112, + 0.01459549367427826, + 0.011455373838543892, + 0.01937979646027088, + -0.0039925347082316875, + 0.028355419635772705, + -0.02126656472682953, + 0.008928452618420124, + 0.0157814621925354, + -0.01928545907139778, + -0.05875932797789574, + -0.0004481072537600994, + -0.02176520973443985, + 0.01975714974105358, + 0.022978132590651512, + -0.02226385474205017, + 0.011704696342349052, + -0.0336383692920208, + 0.008894761092960835, + -0.0034046045038849115, + -0.03078126348555088, + 0.007041685748845339, + 0.016738321632146835, + 0.005043733399361372, + -0.01311977207660675, + 0.011239742860198021, + -0.0030036664102226496, + -0.0006174109294079244, + -0.022290809080004692, + -0.008941929787397385, + 0.023948470130562782, + 0.004919072147458792, + 0.03787011653184891, + 0.028786679729819298, + -0.002248959382995963, + 0.006421747617423534, + -0.008308514952659607, + -0.02599695883691311, + 0.011637312360107899, + 0.025417452678084373, + -0.010565897449851036, + 0.012263988144695759, + -0.009433836676180363, + -0.01402946375310421, + -0.014784170314669609, + -0.004652903415262699, + 0.015215431340038776, + 0.02862495742738247, + -0.03390790522098541, + -0.005491841118782759, + -0.003291735192760825, + 0.013005218468606472, + -0.014972846955060959, + 0.010559159331023693, + -0.02169782482087612, + -0.008780206553637981, + 0.013288233429193497, + 0.00156753312330693, + -0.020754441618919373, + 0.00017435752670280635, + -0.00801876187324524, + 0.01575450785458088, + -0.010572635568678379, + -0.025107484310865402, + -0.01251331064850092, + -0.02207517810165882, + -0.02978397160768509, + 0.011489066295325756, + -0.030107418075203896, + -0.010249190032482147, + 0.019393274560570717, + 0.0006898493156768382, + -0.0071966699324548244, + 0.03167073801159859, + -0.0034450350794941187, + -0.006815947126597166, + -0.018207306042313576, + -0.011684481054544449, + -0.023948470130562782, + -0.029837878420948982, + 0.010943250730633736, + 0.01258743368089199, + -0.0072573162615299225, + -0.005471625365316868, + -0.017991675063967705, + 0.009413621388375759, + 0.003441666020080447, + -0.03638765588402748, + 0.006179163232445717, + -0.00287732039578259, + 0.0208218265324831, + 0.0011261643376201391, + -0.006347624585032463, + 0.01053894404321909, + -0.003500627353787422, + 0.06776190549135208, + 0.0006831109058111906, + -0.011064543388783932, + -0.0024965975899249315, + 0.0024864899460226297, + 0.02235819399356842, + 0.002178205642849207, + 0.006121886428445578, + 0.011394727975130081, + -0.015107615850865841, + -0.027358127757906914, + 0.009083437733352184, + -0.013894693925976753, + -0.0035511658061295748, + 0.01632053777575493, + -0.006219593808054924, + 0.012580695562064648, + -0.0026936973445117474, + -0.018813766539096832, + -0.003594965673983097, + -0.005626610014587641, + 0.0024089976213872433, + 0.02117222547531128, + 0.0014757217140868306, + -0.023005085065960884, + -0.010040298104286194, + -0.009844882413744926, + -0.015794938430190086, + -0.017210014164447784, + 0.010923035442829132, + -0.018045581877231598, + 0.028409326449036598, + 0.007809869479387999, + -0.0025959897320717573, + -0.002265805611386895, + 0.008753253147006035, + -0.0007365973433479667, + -0.011778819374740124, + -0.0030794739723205566, + -0.0017957983072847128, + -0.018422937020659447, + -0.007122546900063753, + 0.022978132590651512, + -0.0024797513615339994, + -0.012311157770454884, + -0.004376626573503017, + 0.006381317041814327, + -0.023881085216999054, + -0.014838078059256077, + 0.0027947742491960526, + -0.0033119507133960724, + -0.009635990485548973, + -0.01694047637283802, + 0.02784329652786255, + 0.008962145075201988, + -0.028382372111082077, + -0.013065864332020283, + -0.017749089747667313, + -0.005572702270001173, + -0.012317895889282227, + 0.0077424850314855576, + -0.0069743008352816105, + -0.01520195510238409, + -0.01499980129301548, + -0.009359713643789291, + -0.17228882014751434, + -0.001296310336329043, + 0.01169795822352171, + -0.04843601584434509, + 0.010687190108001232, + 0.005340225528925657, + 0.01963585801422596, + -0.000787978118751198, + -0.0018850828055292368, + -0.014339432120323181, + 0.009433836676180363, + -0.0009998183231800795, + -0.018530750647187233, + -0.02702120505273342, + 0.0038847194518893957, + 0.006286978721618652, + 0.00010055038728751242, + 0.015094139613211155, + 0.03506692126393318, + 0.017964720726013184, + 0.012216819450259209, + -0.013321925885975361, + 0.012499834410846233, + 0.009912267327308655, + -0.006741824094206095, + 0.029325757175683975, + -0.0028352050576359034, + 0.020781395956873894, + -0.01904287375509739, + -0.02079487219452858, + 0.004144149832427502, + 0.00917777605354786, + 0.021967364475131035, + -0.013396048918366432, + -0.01362515613436699, + -0.015161523595452309, + -0.019528042525053024, + -0.004211534280329943, + -0.0024561667814850807, + 0.05536314845085144, + 0.021131794899702072, + 0.01747955195605755, + 0.006603686138987541, + 0.0019002443877980113, + -0.0211991798132658, + 0.01663050800561905, + 0.012257250025868416, + -0.004366518929600716, + -0.005242518149316311, + -0.026630373671650887, + -0.025323113426566124, + -0.01580841653048992, + -0.004342934116721153, + -0.004791041370481253, + 0.016697891056537628, + -0.003999273292720318, + 0.01304564904421568, + -0.001117741223424673, + -0.003557904390618205, + -0.020377088338136673, + -0.0022556977346539497, + -0.010761313140392303, + 0.016077954322099686, + -0.009171037003397942, + -0.009723590686917305, + -0.025767851620912552, + 0.011778819374740124, + 0.0023668822832405567, + -0.03309928998351097, + 0.0018901366274803877, + -0.02032317966222763, + -0.0006654224125668406, + 0.0022017902228981256, + 0.005990486592054367, + -0.011596880853176117, + 0.01741216704249382, + 0.01190011203289032, + 0.002735812682658434, + -0.006580101326107979, + -0.013321925885975361, + -0.0012760949321091175, + 0.04223663732409477, + 0.006644116714596748, + -0.03167073801159859, + -0.03266803175210953, + -0.007600977551192045, + -0.010619805194437504, + 0.012755895033478737, + 0.006357732228934765, + -0.020970072597265244, + 0.02304551564157009, + -0.019811058416962624, + -0.02467622235417366, + -0.02141481079161167, + -0.0010225605219602585, + 0.0007551281014457345, + -0.014757216908037663, + -0.0045113954693078995, + -0.0023079209495335817, + -0.024406684562563896, + 0.02382717654109001, + -0.005387394689023495, + -0.0035646427422761917, + 0.019891919568181038, + 0.02405628375709057, + -0.004548456985503435, + -0.02076791785657406, + 0.007870515808463097, + 0.043045252561569214, + -0.001705671427771449, + -0.019986256957054138, + 0.0005403398536145687, + 0.0023416131734848022, + -0.008315254002809525, + -0.004609103314578533, + 0.006337516941130161, + -0.023719361051917076, + -0.019056351855397224, + 0.006253286264836788, + 0.013200633227825165, + 0.068031445145607, + 0.013126510195434093, + -0.03951429948210716, + 0.00948774442076683, + -0.012681772001087666, + -0.008335469290614128, + -0.08237087726593018, + -0.005987117532640696, + 0.015323246829211712, + 0.029837878420948982, + 0.006226332392543554, + 0.03167073801159859, + -0.018328597769141197, + 0.0036589810624718666, + -0.022937702015042305, + 0.033584460616111755, + -0.012392018921673298, + -0.030619539320468903, + 0.011799034662544727, + -0.013921648263931274, + 0.009278852492570877, + -0.021913455799221992, + 0.002771189669147134, + -0.01566017046570778, + -0.03247935324907303, + 0.04379995912313461, + 0.008402853272855282, + 0.0030575739219784737, + 0.018921582028269768, + -0.020404042676091194, + -0.010471559129655361, + -0.006020809523761272, + -0.019029397517442703, + 0.023719361051917076, + 0.0009686528937891126, + 0.005936578847467899, + -0.007594238966703415, + -0.009359713643789291, + 0.024420160800218582, + -0.03447393700480461, + 0.00614547124132514, + -0.003121589310467243, + -0.019487611949443817, + -0.0019844749476760626, + 0.014285524375736713, + -0.023058993741869926, + 0.012270726263523102, + 0.019339365884661674, + 0.004484442062675953, + 0.005498579237610102, + -0.028517141938209534, + -0.013220848515629768, + -0.025120960548520088, + -0.0027914049569517374, + -0.009932482615113258, + -0.020174933597445488, + -0.037034548819065094, + -0.020835302770137787, + 0.011327343061566353, + 0.006286978721618652, + 0.03404267504811287, + -0.002712228102609515, + 0.004470964893698692, + -0.028867540881037712, + 0.0006270974990911782, + -0.007088854908943176, + -0.011125189252197742, + 0.005714209750294685, + -0.011873157694935799, + 0.01584884710609913, + 0.011327343061566353, + -0.004956133663654327, + -0.016172291710972786, + 0.024285392835736275, + -0.0073920851573348045, + -0.0014689832460135221, + 0.0018328598234802485, + 0.004245226737111807, + -0.013726232573390007, + 0.03525559604167938, + -0.03466261178255081, + -0.005892778746783733, + -0.030134370550513268, + -0.01966281235218048, + 0.03760058060288429, + -0.0042216419242322445, + -0.013854263350367546, + -0.022600777447223663, + 0.022627731785178185, + -0.023948470130562782, + 0.0353364571928978, + 0.013281495310366154, + -0.012769372202455997, + -0.003407973563298583, + 0.010821959003806114, + -0.028490187600255013, + 0.014582016505300999, + 0.012439187616109848, + 0.014838078059256077, + -0.025592653080821037, + 0.014568540267646313, + -0.008497191593050957, + 0.008948667906224728, + -0.01826121285557747, + 0.013719494454562664, + 0.0064621781930327415, + -0.005026887636631727, + 0.015525400638580322, + -0.0687861517071724, + 0.01710219867527485, + 0.0010992104653269053, + -0.015094139613211155, + -0.007398823741823435, + -0.0015481601003557444, + 0.011906850151717663, + 0.01297826413065195, + -0.005751271266490221, + 0.022156041115522385, + -0.02358459308743477, + -0.00034239774686284363, + -0.010970205068588257, + -0.0008877914515323937, + -0.02126656472682953, + -0.025120960548520088, + 0.02198084071278572, + 0.0029514434281736612, + -0.0019709980115294456, + 0.004191318992525339, + -0.01078826654702425, + 0.017331305891275406, + -0.012944572605192661, + 0.00884759146720171, + -0.011671003885567188, + 0.0223312396556139, + -0.009326022118330002, + -0.022492963820695877, + 0.009191252291202545, + -0.006960824131965637, + 0.0036690887063741684, + -0.025350067764520645, + -0.016010569408535957, + 0.01788385957479477, + -0.005255994852632284, + -0.017425645142793655, + 0.014352909289300442, + 0.037465810775756836, + 8.317780157085508e-05, + 0.08172398060560226, + -0.011536234989762306, + -0.0020030057057738304, + 0.006293716840445995, + -0.008786945603787899, + 0.00977076031267643, + 0.008187223225831985, + 0.007580761797726154, + 0.007735746446996927, + 0.020350134000182152, + 0.012688511051237583, + 0.02392151579260826, + 0.00814005360007286, + -0.02057924121618271, + -0.008888022042810917, + -0.002538712928071618, + -0.010363743640482426, + -0.01835555210709572, + -0.02150914818048477, + -0.0024561667814850807, + -0.0200671199709177, + 0.03218286111950874, + -0.011253220029175282, + 0.013416264206171036, + 0.02020188793540001, + 0.016792230308055878, + -0.0027728741988539696, + -0.018746381625533104, + 0.0014032833278179169, + 0.02192693203687668, + -0.01869247481226921, + -0.025120960548520088, + -0.0005205456400290132, + 0.00925189908593893, + 0.031455107033252716, + 0.001479090889915824, + 0.010370482690632343, + 0.006741824094206095, + 0.01904287375509739, + -0.0010747836204245687, + 0.020902687683701515, + 0.027627665549516678, + 0.002259067026898265, + -0.019312411546707153, + 0.011448634788393974, + 0.009002575650811195, + 0.028301510959863663, + -0.026657328009605408, + -0.0023365593515336514, + 0.007843561470508575, + 0.012567218393087387, + 0.009400145150721073, + 0.01597013883292675, + -0.008881283923983574, + -0.015255861915647984, + -0.0034669351298362017, + 0.0014378178166225553, + -0.014932416379451752, + -0.013854263350367546, + 0.019743673503398895, + 0.022978132590651512, + 0.007371869869530201, + 0.012681772001087666, + 0.006492501590400934, + -0.023692408576607704, + -0.030080463737249374, + -0.0007475473685190082, + -0.01219660323113203, + -0.026819050312042236, + 0.010862389579415321, + -0.002245590090751648, + -0.002254013204947114, + 0.024501021951436996, + -0.010896082036197186, + -0.011387988924980164, + -0.014757216908037663, + 0.026347359642386436, + 0.010518728755414486, + -0.02013450302183628, + -0.04471638798713684, + 0.031212523579597473, + 0.02254687063395977, + 0.01138125080615282, + 0.012883925810456276, + 0.00033292180160060525, + 0.04638752341270447, + 0.010498513467609882, + 0.03460870683193207, + -0.02342286892235279, + 0.0039251502603292465, + -0.005606394726783037, + -0.007708792574703693, + -0.001479090889915824, + -0.008288299664855003, + 0.005124595016241074, + -0.0020771287381649017, + -0.0056131333112716675, + 0.007715531159192324, + -0.005485102534294128, + -0.0033523812890052795, + 0.10619805008172989, + 0.03695368766784668, + -0.006404901389032602, + 0.018719427287578583, + -0.0219538863748312, + 0.00458888802677393, + -0.001319052535109222, + 0.0014395024627447128, + -0.00890823733061552, + -0.04493201896548271, + -0.006175794173032045, + -0.011172358877956867, + 0.005545748397707939, + -0.013348879292607307, + -0.005724317394196987, + -0.010896082036197186, + -0.02095659449696541, + 0.04191318899393082, + -0.002638105070218444, + -0.00355453509837389, + 0.02160348743200302, + -0.005003302823752165, + 0.017654752358794212, + 0.03274889290332794, + -0.01421814039349556, + -0.01002008281648159, + 0.016401398926973343, + -0.010855651460587978, + 0.004390103276818991, + -0.02251991629600525, + -0.021967364475131035, + 0.007520115934312344, + -0.08571314811706543, + -0.0330723375082016, + 0.0105995899066329, + -0.034177444875240326, + -0.010916297324001789, + -0.01963585801422596, + 0.035713810473680496, + -0.010882604867219925, + 0.012445926666259766, + 0.0051515488885343075, + 0.003500627353787422, + -0.027412034571170807, + 0.01672484539449215, + -0.0029868201818317175, + -0.02380022406578064, + -0.001041933661326766, + -0.025120960548520088 + ], + "metadata": { + "source": "INSPIRER_Schlussbericht.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 5, + "has_images": true, + "image_count": 29, + "detection_class_prob": 0.6591171622276306, + "coordinates": "CoordinatesMetadata(points=((1122.828857421875, 155.53517150878906), (1122.828857421875, 361.06524658203125), (1358.3359375, 361.06524658203125), (1358.3359375, 155.53517150878906)), system=)", + "links": [], + "last_modified": "2025-05-05T22:58:03", + "_known_field_names": "frozenset({'page_number', 'text_as_html', 'emphasized_text_contents', 'subject', 'data_source', 'links', 'coordinates', 'image_path', 'is_continuation', 'header_footer_type', 'sent_from', 'url', 'parent_id', 'detection_class_prob', 'emphasized_text_tags', 'last_modified', 'category_depth', 'page_name', 'attached_to_filename', 'bcc_recipient', 'orig_elements', 'languages', 'filetype', 'link_texts', 'file_directory', 'sent_to', 'key_value_pairs', 'image_base64', 'cc_recipient', 'link_urls', 'signature', 'image_mime_type', 'filename', 'detection_origin', 'table_as_cells', 'email_message_id', 'link_start_indexes'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "INSPIRER_Schlussbericht.pdf", + "parent_id": "1c51aaba3295e535d31a83c2392f0391", + "text_as_html": "
Projektlaufzeit01.08.2021 - 31.07.2024 (verl\u00e4ngert bis 31.10.2024)
F\u00f6rderkennzeichen165V8744
StichworteStadtentwicklung, Digitale B\u00fcrgerbeteiligung, Partizipation
und Akzeptanz, Augmented Reality, Extended Reality (XR),
AR-Tracking, Point Cloud Matching
ProjektleitungProf. Dr.-Ing. Volker Coors
Beteiligte ProfessorenProf. Dr.-Ing. Volker Coors
Gef\u00f6rderte Ma\u00dfnahmeForschungsprogramm zur Mensch-Technik-nteraktion
F\u00f6rderbereichTechnik zum Mensch bringen
FachhochschuleHochschule f\u00fcr Technik Stuttgart (HFT Stuttgart),
", + "id": "351a57f5-fe09-4ea6-8750-b2c5267a9700", + "processing_timestamp": "2025-05-05T23:07:23.860264", + "chunk_number": 16, + "total_chunks": 19, + "chunking_strategy": "hybrid", + "word_count": 299 + } +} \ No newline at end of file diff --git a/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000017.json b/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000017.json new file mode 100644 index 0000000000000000000000000000000000000000..5b8859491b86aab439af0472dbd9629c47a50872 --- /dev/null +++ b/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000017.json @@ -0,0 +1,1570 @@ +{ + "id": "2b86db2d-408b-1992-e1b5-8a9f00000017", + "content": "- 51. H. Dastageeri, M. Storz, und V. Coors, \u201eSPIRIT Videobasierte mobile Augmented Reality L\u00f6sung zur interaktiven Informationsvermittlung\u201c, inTagungsband DGPF Jahrestagung,2015, Bd. 24, S. 288\u2013295. - 52. A. Kampa, H. Dastageeri, M. Storz, V. Coors, und U. Spierling, \u201eSPIRIT Ereignisgesteuerte Informationsvermittlung, Inspiration und Unterhaltung im urbanen Umfeld auf Basis mobiler Augmented Reality Technologien\u201c, in11. Workshop der GI-Fachgruppe VR/AR, Bremen,2014, S. 49\u201360. - 53. S. Knauth, M. Storz, H. Dastageeri, A. Koukofikis, und N. A. Mahser-Hipp, \u201eFingerprint calibrated centroid and scalar product correlation RSSI positioning in large environments\u201c,in2015 International Conference on Indoor Positioning and Indoor Navigation, IPIN 2015,Ban, Alberta, 2015, S. 1\u20136, doi: 10.1109/IPIN.2015.7346968. - 54. HFT Stuttgart, \u201eSimStadt 2.0 | 3D-Simulation urbaner Energiesysteme\u201c, 2020.https://www.hft- stuttgart.de/forschung/projekte/aktuell/simstadt-20 (zugegriffen Juli 19,2020). - 55. HFT Stuttgart, \u201eSensAR | Sensorische Daten und Augmented Reality\u201c, 2020.https://www.hft- stuttgart.de/forschung/projekte/aktuell/sensar (zugegriffen Juli 19, 2020). - 56. S. Malihi, M. J. V. Zoej, M. Hahn, und M. Mokhtarzade, \u201eWindow detection from UAS-derived photogrammetric point cloud employing density-based filtering and perceptual organization\u201c,Remote Sens., Bd. 10, Nr. 8, S. 1320, 2018, doi: 10.3390/RS10081320. - 57. S. Malihi, M. J. V. Zoej, und M. Hahn, \u201eLarge-scale accurate reconstruction of building semploying point clouds generated from UAV imagery\u201c,Remote Sens., Bd. 10, Nr. 7, S.1148, 2018, doi: 10.3390/rs10071148. - 58. L. S. Obrock und E. G\u00fclch, \u201eFirst steps to automated interior reconstruction from semantically enriched point clouds and imagery\u201c, in International Archives of the Photogrammetry, Remote Sensing and Spatial Information Sciences - ISPRS Archives, 2018,S. 781\u2013787, doi: 10.5194/isprs-archives-XLII-2-781-2018. - 59. S. Schneider und V. Coors, \u201eAutomatische Extraktion von Fenstern in 3D Punktwolkenmittels einer hierarchischen Methode\u201c, in Wissenschaftlich-Technische Jahrestagung derDGPF und PFGK18 Tagung, M\u00fcnchen, 2018, S. 559\u2013572.", + "embedding": [ + -0.002116977935656905, + 0.0009212935692630708, + -0.005321099888533354, + -0.010711665265262127, + 0.01572711393237114, + 0.02934246137738228, + -0.014643444679677486, + -0.011274340562522411, + -0.0003256221243645996, + -0.04395812004804611, + -0.0005088388570584357, + 0.027605809271335602, + -0.016296736896038055, + -0.0007011729758232832, + -0.012531676329672337, + -0.017130328342318535, + 0.02774474211037159, + 0.011760602705180645, + 0.012573355808854103, + -0.0019433129345998168, + -0.01776941679418087, + 0.020770350471138954, + 0.011010369285941124, + 0.002966200467199087, + -0.013441681861877441, + 0.010989530012011528, + 0.03098186105489731, + -0.01496298797428608, + -0.004303422290831804, + -0.015852153301239014, + 0.008794402703642845, + -0.018339037895202637, + -0.015741007402539253, + -0.007182789966464043, + -0.03351042419672012, + 0.005703162867575884, + -0.0014909151941537857, + -0.02617480978369713, + 0.010114257223904133, + -0.008669363334774971, + 0.0026258169673383236, + -0.0006812015199102461, + 0.009343184530735016, + -0.008954174816608429, + 0.0010463324142619967, + 0.02210409939289093, + -0.007981649599969387, + -0.01799170859158039, + -0.0035132456105202436, + 0.012517782859504223, + 0.022256923839449883, + 0.03228782117366791, + -0.013670919463038445, + -0.023507313802838326, + 0.00614427262917161, + -0.001002047793008387, + -0.009662727825343609, + 0.031732093542814255, + 0.0013684813166037202, + -0.029231315478682518, + -0.005911561194807291, + -0.011746710166335106, + -0.03134308382868767, + 0.015101919881999493, + -0.028536655008792877, + -0.0012694922043010592, + -0.03073178231716156, + 0.00861379038542509, + -0.0151852797716856, + 0.0012660188367590308, + 0.046959053725004196, + 0.022604255005717278, + 0.013768171891570091, + -0.017394300550222397, + 0.03256568685173988, + -0.0029088910669088364, + 0.004049871116876602, + 0.0008804822573438287, + -0.004147123545408249, + 0.00649160286411643, + 0.0010628306772559881, + -0.009169518947601318, + -0.015407570637762547, + 0.02895345166325569, + 0.020728670060634613, + 0.023173876106739044, + 0.005981027148663998, + 0.005182167515158653, + -0.00724530965089798, + -0.005512131378054619, + 0.015060240402817726, + 0.024132506921887398, + -0.0039560915902256966, + 0.011184034869074821, + -0.008356766775250435, + 0.006838933099061251, + 0.0041783833876252174, + 0.012476103380322456, + -0.008183101192116737, + -0.016407882794737816, + -0.00768294557929039, + -0.01795002818107605, + -0.01954774744808674, + -0.006647901609539986, + -0.02385464310646057, + -0.010690825991332531, + -0.0014023459516465664, + -0.005282893311232328, + 0.010892277583479881, + -0.003058243077248335, + -0.018797514960169792, + 0.023104410618543625, + 0.005720529705286026, + 0.007898290641605854, + 0.014851842075586319, + -0.021367758512496948, + 0.04381918907165527, + -0.007078590802848339, + -0.029536966234445572, + -0.01911705732345581, + 0.029481394216418266, + 0.012156559154391289, + 0.004365941509604454, + -0.020964855328202248, + 0.038400836288928986, + 0.021937379613518715, + -0.008217833936214447, + 0.0006929239025339484, + -0.004727165214717388, + -0.02170119620859623, + 0.010440748184919357, + -0.007675998844206333, + 0.007946916855871677, + 0.009016693569719791, + 0.0023705291096121073, + 0.00986417941749096, + -0.02887009270489216, + -0.007696839049458504, + -0.04034588485956192, + -0.029120169579982758, + 0.0026970196049660444, + 0.01813063956797123, + -0.028411615639925003, + -0.024882741272449493, + -0.011510524898767471, + 0.014407259412109852, + 0.005557284224778414, + 0.009933645837008953, + 0.021437224000692368, + -0.005230793729424477, + 0.00999616552144289, + -0.018408505246043205, + 0.002474728273227811, + 0.03437180444598198, + -0.0018738468643277884, + -0.011864801868796349, + 0.0035948683507740498, + 0.027536343783140182, + -0.013427788391709328, + -0.002660549944266677, + -0.004501400515437126, + 0.0023392695002257824, + -0.008676310069859028, + -0.003091239370405674, + 0.03003712184727192, + 0.015268638730049133, + -0.012997099198400974, + -0.003164178691804409, + -0.010767238214612007, + 0.022896012291312218, + 0.00988501962274313, + 0.02931467443704605, + -0.010454641655087471, + 0.004831363912671804, + -0.002634500153362751, + 0.015060240402817726, + 0.009711354039609432, + 0.013858477585017681, + -0.01569932885468006, + -0.026563819497823715, + 0.003495879238471389, + -0.018519649282097816, + 0.02097874879837036, + 0.01260114274919033, + 0.0057274759747087955, + -0.004209642764180899, + 0.014587871730327606, + 0.015407570637762547, + 0.0019328929483890533, + -0.024313118308782578, + 0.013684812933206558, + 0.009871126152575016, + -0.0038449461571872234, + -0.020631417632102966, + -0.6344195604324341, + -0.023312807083129883, + 0.008183101192116737, + -0.030314985662698746, + -0.002592820441350341, + 0.017491552978754044, + 0.01483794953674078, + 0.00493208970874548, + -0.019019804894924164, + 0.05171053111553192, + -0.0069014523178339005, + 0.022604255005717278, + -0.006040073465555906, + -0.005963660776615143, + -0.03364935517311096, + -0.010447694920003414, + 0.00263970997184515, + 0.005789995659142733, + 0.04262436926364899, + 0.01631063036620617, + -0.039317786693573, + 0.01252472959458828, + -0.004772318061441183, + -0.00510575482621789, + -0.017380407080054283, + 0.004365941509604454, + 0.006880612578243017, + -0.027327945455908775, + 0.0002476898953318596, + 0.018408505246043205, + -0.02199295349419117, + 0.016838571056723595, + 0.0061790053732693195, + 0.042152002453804016, + 0.05023784935474396, + 0.010982583276927471, + -0.016741318628191948, + 0.015101919881999493, + 0.015379784628748894, + 0.02140943892300129, + -0.002780378796160221, + 0.011496632359921932, + 0.028564441949129105, + -0.004452774301171303, + -0.007953863590955734, + 0.016032764688134193, + 0.027508556842803955, + -0.03264904394745827, + -0.01849186420440674, + -0.02702229470014572, + -0.01936713606119156, + -0.02195127308368683, + 0.0008157919510267675, + -0.00626236479729414, + 0.020478593185544014, + 0.008148368448019028, + 0.025883052498102188, + -0.011371592991054058, + -2.1396088413894176e-05, + -0.012608088552951813, + -0.016227269545197487, + 0.010517160408198833, + -0.020923174917697906, + -0.020617524161934853, + -0.012128773145377636, + 0.024076934903860092, + -0.013719545677304268, + -0.014254434034228325, + 0.013782065361738205, + -0.010718612000346184, + 0.010350442491471767, + 0.018450183793902397, + -0.0012972785625606775, + -0.004556972999125719, + 0.006752100307494402, + 0.024716021493077278, + 0.03545547276735306, + 0.0026588132604956627, + 0.005036288872361183, + 0.006568015553057194, + 0.008419285528361797, + -0.012733127921819687, + -0.00788439717143774, + 0.011024262756109238, + -0.001679341890849173, + -0.01846407726407051, + -0.030759569257497787, + -0.023146089166402817, + 0.004150596912950277, + 0.012969312258064747, + 0.008794402703642845, + 0.016213377937674522, + -0.014191915281116962, + -0.0008201336022466421, + 0.0048487307503819466, + 0.04337460547685623, + -0.025883052498102188, + 0.04468056559562683, + 0.0034403062891215086, + -0.055183835327625275, + -0.011517471633851528, + -0.005859461612999439, + 0.017172008752822876, + -0.00017865801055449992, + 0.014108555391430855, + 0.014150234870612621, + -0.039929088205099106, + -0.006599275395274162, + 0.03709487244486809, + -0.026494354009628296, + -0.017519338056445122, + -0.03892877697944641, + -0.0007484967354685068, + 0.0010654355864971876, + 0.011003423482179642, + -0.027994820848107338, + 0.033482637256383896, + -0.007634319365024567, + 0.003657387802377343, + 3.6849571188213304e-05, + 0.017755523324012756, + -0.04020695388317108, + 0.022381963208317757, + -0.004918196704238653, + 0.0020874550100415945, + -0.017338726669549942, + -0.002552877413108945, + -0.00626236479729414, + -0.006734733935445547, + -0.028536655008792877, + 0.030092695727944374, + -0.029731471091508865, + 0.005810835398733616, + 0.00013122572272550315, + 0.010385175235569477, + 0.0033361073583364487, + 0.0063665639609098434, + -0.007571800146251917, + 0.0009178202599287033, + -0.023257235065102577, + -0.04504178836941719, + -0.0012773070484399796, + 0.022437535226345062, + -0.02147890441119671, + -0.026369314640760422, + -0.03598341718316078, + -0.02210409939289093, + 0.009266771376132965, + 0.011038156226277351, + -0.019311564043164253, + -0.02567465417087078, + -0.019533853977918625, + 0.0043694148771464825, + 0.013393055647611618, + -0.00023336253070738167, + -0.0003933515399694443, + -0.009419596754014492, + -0.01617169752717018, + -0.0029175742529332638, + -0.02756413072347641, + 0.029842616990208626, + 0.00823172740638256, + -0.029398033395409584, + -0.03295469656586647, + -0.004265215713530779, + -0.011955107562243938, + 0.017449872568249702, + 0.022256923839449883, + -0.03214889019727707, + -0.03364935517311096, + 0.01810285449028015, + -0.015671541914343834, + -0.011204874143004417, + 0.019922863692045212, + -0.019200418144464493, + 0.01254556979984045, + -0.015338105149567127, + -0.0007389451493509114, + -0.012573355808854103, + -0.01922820322215557, + 0.008315086364746094, + 0.021673409268260002, + -0.0096279950812459, + 0.0036851742770522833, + -0.01110762171447277, + 0.0124691566452384, + -0.0004283016314730048, + 0.009759980253875256, + -0.014657337218523026, + 0.0077940914779901505, + 0.0052377404645085335, + 0.03753945603966713, + 0.014365579932928085, + 0.022520894184708595, + -0.0204646997153759, + 0.01788056269288063, + -0.013483361341059208, + 0.004022084642201662, + -0.01667185313999653, + 0.009148679673671722, + 0.05757346749305725, + 0.027175121009349823, + 0.022632040083408356, + 0.011246554553508759, + 0.016088338568806648, + -0.027175121009349823, + 0.006488129496574402, + -0.019214311614632607, + 0.03462188318371773, + 0.009232038632035255, + 0.016032764688134193, + -0.010892277583479881, + -0.018547436222434044, + 0.006481182761490345, + 0.0077593582682311535, + 0.019686680287122726, + 0.010037845000624657, + 0.0061060660518705845, + -0.010058684274554253, + 0.023215554654598236, + -0.0073078288696706295, + -0.02738351933658123, + 0.047681499272584915, + 0.003511509159579873, + -0.0073078288696706295, + 0.0021082947496324778, + -0.0065923286601901054, + 0.015046347863972187, + 0.023146089166402817, + -0.016324521973729134, + -0.00959326233714819, + 0.003257957985624671, + 0.015991086140275, + 0.015963299199938774, + 0.01806117407977581, + 0.007953863590955734, + 0.0030235101003199816, + -0.019464388489723206, + 0.028342150151729584, + 0.01649124175310135, + -0.00041875007445923984, + 0.0298148300498724, + 0.017963921651244164, + 0.006522862706333399, + 0.011003423482179642, + -0.00759958615526557, + 0.021242719143629074, + -0.004289528820663691, + -0.0005461768596433103, + 0.018616901710629463, + -0.03423287346959114, + -0.011969001032412052, + -0.022993264719843864, + 0.007182789966464043, + 0.00968356803059578, + 0.009482116438448429, + 0.018922552466392517, + -0.0002824229304678738, + 0.00786355696618557, + 0.02738351933658123, + 0.006488129496574402, + 0.027800314128398895, + 0.029286889359354973, + -0.015393678098917007, + -0.004310368560254574, + 0.01958942785859108, + -0.024521516636013985, + -0.005265526939183474, + -0.014323900453746319, + -0.024090828374028206, + 0.0024851481430232525, + -0.011496632359921932, + -0.006446450017392635, + 0.0029366775415837765, + 0.01483794953674078, + 0.01483794953674078, + -0.0024191553238779306, + -0.014851842075586319, + 0.028342150151729584, + 0.019422708079218864, + -0.01839461177587509, + -0.0257441196590662, + 0.0015499613946303725, + 0.014810162596404552, + -0.0028567914851009846, + -0.02271539904177189, + -0.013886264525353909, + 0.004456247203052044, + -0.014171075075864792, + -0.008391499519348145, + -0.006536755710840225, + -0.005730949342250824, + 0.005022395867854357, + -0.00750928046181798, + -0.01066998578608036, + 0.010704719461500645, + 0.0022194404155015945, + -0.02228471077978611, + 0.004671592265367508, + 0.003554925322532654, + -0.011343806982040405, + 0.016324521973729134, + 0.0005526893073692918, + -0.00991975236684084, + 0.03284354880452156, + -0.026605498045682907, + -0.01252472959458828, + -0.006599275395274162, + -0.0015812211204320192, + -0.011559151113033295, + 0.00619984557852149, + -0.005831675138324499, + -0.005373199470341206, + 0.039706796407699585, + 0.005022395867854357, + 0.01758880540728569, + -0.003883152501657605, + -0.021909594535827637, + 0.021103788167238235, + -0.003834526287391782, + -0.008106688968837261, + -0.004879990126937628, + 0.008252567611634731, + -0.0023722657933831215, + 0.04020695388317108, + 0.02279875986278057, + -0.02210409939289093, + 0.003556662006303668, + -0.014643444679677486, + -0.014108555391430855, + -0.014351686462759972, + -0.0350942499935627, + -1.3194479834055528e-05, + -0.009614101611077785, + -0.003841472789645195, + -0.004022084642201662, + 0.016741318628191948, + -0.027828101068735123, + 0.024243652820587158, + -0.0005765682435594499, + 0.0014631287194788456, + 0.0033517370466142893, + 0.0003890099178534001, + 4.80021299154032e-05, + -0.018450183793902397, + -0.007530120201408863, + 0.0021204513031989336, + 0.009815553203225136, + 0.007981649599969387, + -0.03484417125582695, + 0.025952517986297607, + 0.023007158190011978, + 0.000786268908996135, + -0.02475770190358162, + 0.011441059410572052, + 0.019756145775318146, + 0.0242853332310915, + 0.008106688968837261, + -0.008426232263445854, + -0.004237429238855839, + 0.011816175654530525, + -0.011197928339242935, + 0.0158382598310709, + 0.005619803909212351, + 0.024229759350419044, + 0.02839772403240204, + 0.01747765950858593, + 0.017491552978754044, + 0.02385464310646057, + -0.006078279577195644, + -0.014657337218523026, + 0.021076001226902008, + -0.011170141398906708, + -0.00753706693649292, + 0.006811146624386311, + -0.00118092296179384, + 0.021617835387587547, + -0.02122882567346096, + -0.021492797881364822, + -0.02650824561715126, + -0.008238674141466618, + -0.014046036638319492, + 0.0013155133929103613, + -0.028008712455630302, + -0.01889476738870144, + -0.01179533638060093, + -0.008669363334774971, + 0.012594196014106274, + -0.0353999026119709, + -0.02898123860359192, + -0.032537899911403656, + -0.02228471077978611, + -0.030203839763998985, + 0.0031954385340213776, + -0.006453396286815405, + -0.023312807083129883, + -0.03451073542237282, + -0.00935707800090313, + 0.0040359776467084885, + 0.01310824416577816, + 0.023187769576907158, + -0.0060331267304718494, + 0.001226944150403142, + -0.0073078288696706295, + 0.003688647411763668, + -0.010885330848395824, + 0.009197305887937546, + -0.04237429425120354, + -0.007585693150758743, + 0.0015543029876425862, + -0.02165951579809189, + -0.00797470286488533, + -0.007134163752198219, + 0.02013126201927662, + -0.00741897476837039, + -0.005803888663649559, + 0.019242096692323685, + 0.013705652207136154, + 0.009843340143561363, + 0.012066253460943699, + 0.00832203309983015, + 0.006484656129032373, + 0.015268638730049133, + 0.0009647098486311734, + 0.014448938891291618, + -0.01999233104288578, + -0.028050392866134644, + -0.012358010746538639, + 0.03187102451920509, + 0.0017357830656692386, + -0.00780103774741292, + 0.00611648615449667, + -0.007439814507961273, + -0.005081441719084978, + 0.007016071584075689, + -0.002886314643546939, + 0.012795647606253624, + -0.019019804894924164, + 0.017866669222712517, + -0.004994609393179417, + -0.006561068817973137, + 0.006974392104893923, + 0.016727425158023834, + -0.0194088164716959, + -0.0035080357920378447, + -0.01824178546667099, + 0.03128750994801521, + 0.041457340121269226, + 0.0021603943314403296, + 0.02628595568239689, + 0.00768294557929039, + 0.001983255846425891, + -0.028425509110093117, + 0.009468222968280315, + -0.02293769083917141, + 0.01255946233868599, + 0.007474547252058983, + 0.0010437275050207973, + -0.029953762888908386, + -0.015171386301517487, + 0.0050849150866270065, + 0.008315086364746094, + 0.0099058598279953, + -0.005112701561301947, + -0.008947228081524372, + 0.007967756129801273, + 0.018880873918533325, + -0.010753345675766468, + -0.00953768938779831, + -0.02895345166325569, + -0.014601764269173145, + 0.010947850532829762, + -0.02839772403240204, + 0.018450183793902397, + -0.020784243941307068, + 0.009259824641048908, + -0.0066305347718298435, + 0.0008075428777374327, + -0.02279875986278057, + -0.04023473709821701, + -0.01046853419393301, + -0.012017627246677876, + 0.024452051147818565, + 0.014865735545754433, + 0.028814518824219704, + 0.01019761711359024, + 0.016727425158023834, + 0.018616901710629463, + -0.0031155524775385857, + 0.000849222531542182, + -0.022187458351254463, + 0.008328979834914207, + -0.05257191136479378, + 0.01524085272103548, + 0.00786355696618557, + 0.004147123545408249, + 0.005720529705286026, + -0.010947850532829762, + 0.0012391007039695978, + 0.011781442910432816, + -0.021353865042328835, + -0.009037533774971962, + -0.0026779163163155317, + -0.047097984701395035, + -0.03106522001326084, + 0.0012356274528428912, + 0.004081130493432283, + 0.0035323488991707563, + -0.025174498558044434, + -0.0012321540853008628, + 0.042874448001384735, + -0.0013693496584892273, + 0.010690825991332531, + -0.020034009590744972, + 0.03178766742348671, + -0.00991975236684084, + 0.01700529083609581, + 0.006418663542717695, + 0.01839461177587509, + -0.02752245031297207, + -0.014976881444454193, + -0.012448317371308804, + 0.016435667872428894, + 0.021131573244929314, + -0.010642199777066708, + -0.00985028687864542, + 0.014136342331767082, + -0.005112701561301947, + 0.0033013741485774517, + 0.0353999026119709, + 0.018797514960169792, + -0.03239896893501282, + -0.005810835398733616, + -0.029648112133145332, + 0.006720840930938721, + -0.008648524060845375, + -0.016519028693437576, + -0.006370037328451872, + 0.016699640080332756, + 0.011225714348256588, + -0.018227891996502876, + 0.04126283526420593, + 0.009190359152853489, + -0.005553810857236385, + 0.0031277090311050415, + 0.016255056485533714, + 0.04131840914487839, + 0.00660969503223896, + 0.018950339406728745, + 0.020228514447808266, + -0.02035355381667614, + -0.02147890441119671, + -0.041929710656404495, + 0.016991397365927696, + 0.005387092474848032, + 0.017463766038417816, + 0.021826233714818954, + -0.02253478765487671, + -0.011038156226277351, + 0.030314985662698746, + -0.0020926648285239935, + -0.04117947816848755, + -0.024452051147818565, + 0.017269261181354523, + 0.03906770795583725, + 0.014712910167872906, + -0.017741629853844643, + 0.0017904875567182899, + -0.017672164365649223, + -0.008474858477711678, + -0.002063141902908683, + 0.008370659314095974, + -0.015115813352167606, + -0.009516849182546139, + -0.008294247090816498, + 0.013281909748911858, + -0.022493109107017517, + 0.010162883438169956, + 0.01078113168478012, + -0.012976258993148804, + 0.015935512259602547, + -0.01576879434287548, + 0.00374074699357152, + 0.001008126069791615, + -0.0047514783218503, + 0.007314775604754686, + 0.0028046919032931328, + 0.004883463494479656, + -4.8083533329190686e-05, + 0.010822811163961887, + 0.0034142564982175827, + -0.010336549021303654, + 0.013629239983856678, + 0.028272684663534164, + -0.01947828195989132, + -0.008877761662006378, + -0.012066253460943699, + -0.016393989324569702, + 0.016435667872428894, + 0.01052410714328289, + 0.015213065780699253, + 0.000995101174339652, + -0.004313841927796602, + 0.003257957985624671, + 0.021867914125323296, + -0.009065319783985615, + -0.001851270324550569, + -0.004570866469293833, + 0.00750928046181798, + -0.01365702599287033, + -0.004831363912671804, + 0.0158382598310709, + -0.0007997279753908515, + -0.050738006830215454, + -0.022548681125044823, + 0.0039178854785859585, + -0.01252472959458828, + 0.006894506048411131, + -0.009322344325482845, + 0.008078902028501034, + 0.008745776489377022, + 0.0005431377212516963, + -0.060240961611270905, + 0.012455263175070286, + 0.04540301486849785, + -0.015810474753379822, + -0.027216799557209015, + 0.012552515603601933, + 0.013386108912527561, + -0.029703684151172638, + 0.012920686043798923, + -0.00376853346824646, + -0.03025941364467144, + -0.02500777877867222, + -0.00826646015048027, + 0.0025563507806509733, + 0.009607155807316303, + 0.01292763277888298, + 0.013434735126793385, + 0.005296786781400442, + -0.00020959210814908147, + -0.005546864587813616, + -0.006310991011559963, + 0.005588544066995382, + 0.008669363334774971, + -0.002434785244986415, + 0.010975636541843414, + -0.03740052506327629, + 0.04657004401087761, + -0.00509880855679512, + -0.007370348554104567, + -0.006689581088721752, + -0.015574289485812187, + -0.028786733746528625, + 0.004640332423150539, + 0.010551894083619118, + -0.0238824300467968, + 0.0001539107324788347, + 0.0215205829590559, + -0.007259202655404806, + -0.020145155489444733, + 0.001599455950781703, + 0.0054982383735477924, + 0.0002524656883906573, + 0.025841372087597847, + 0.023646244779229164, + -0.006279731169342995, + -0.0028637379873543978, + 0.0029158375691622496, + -0.004449300933629274, + 0.0005192587850615382, + 0.020034009590744972, + -0.016393989324569702, + 0.014323900453746319, + -0.015852153301239014, + 0.027661383152008057, + 0.00841233879327774, + -0.035594407469034195, + -0.012788700871169567, + 0.005713582970201969, + -0.02228471077978611, + -0.0045951795764267445, + -0.02079813741147518, + 0.005095335189253092, + 0.014824056066572666, + 0.00655412208288908, + 0.0047514783218503, + 0.037261590361595154, + 0.005022395867854357, + 0.01078113168478012, + 0.004626439418643713, + -0.03740052506327629, + 0.005564230959862471, + -0.026605498045682907, + 0.017158115282654762, + 0.009377917274832726, + -0.04765371233224869, + -0.018325144425034523, + 0.02156226336956024, + 0.014240541495382786, + 0.009787767194211483, + -0.003530612215399742, + -0.001990202348679304, + -0.01205236092209816, + 0.010162883438169956, + -0.00646381638944149, + -0.004956402815878391, + -0.005064075347036123, + 0.024452051147818565, + -0.03351042419672012, + -0.0008774431189522147, + 0.011489685624837875, + -0.0005218637525103986, + -0.01547703705728054, + -0.002116977935656905, + 0.04126283526420593, + -0.011093729175627232, + 0.0028828412760049105, + 0.0198117196559906, + -0.02257646806538105, + -0.0034333597868680954, + -0.005289840046316385, + 0.008780509233474731, + 0.0034142564982175827, + 0.002037092112004757, + -0.003382996888831258, + 0.026369314640760422, + 0.014879629015922546, + -0.010329602286219597, + 0.007898290641605854, + -0.01781109720468521, + -0.0048938835971057415, + 0.015629861503839493, + -0.01878362149000168, + 0.021089894697070122, + -0.03401058167219162, + -0.014699016697704792, + -0.005810835398733616, + 0.03339928016066551, + -0.020770350471138954, + -0.01281648688018322, + -0.004838310647755861, + 0.03445516154170036, + 0.025063352659344673, + -0.02133997157216072, + -0.0028758947737514973, + -0.011024262756109238, + -0.0272029060870409, + -0.02570244111120701, + -0.0009664464741945267, + 0.007578746415674686, + -0.02356288582086563, + -0.018297359347343445, + -0.003601814853027463, + -0.022812651470303535, + -0.0012373641366139054, + 0.011184034869074821, + -0.005185640882700682, + -0.011920374818146229, + 0.02680000476539135, + 0.19028142094612122, + -0.0055364444851875305, + -0.0034663560800254345, + 0.032454539090394974, + -0.008016382344067097, + -0.008398446254432201, + 0.026230381801724434, + -0.0044875070452690125, + 0.002853318117558956, + 0.0342884436249733, + 0.0037615869659930468, + 0.008071955293416977, + -0.005404458846896887, + 0.005456558428704739, + 0.0158382598310709, + 0.0026848630513995886, + -0.0422353595495224, + 7.131124584702775e-05, + -0.00786355696618557, + 0.019825611263513565, + 0.028592228889465332, + -0.01689414493739605, + -0.00672778720036149, + -0.01725536771118641, + 0.016227269545197487, + -0.01066998578608036, + -0.009273718111217022, + 0.0008275143918581307, + 0.01907537877559662, + 0.003869259264320135, + -0.008697150275111198, + 0.004501400515437126, + 0.0047862110659480095, + -0.017894456163048744, + 0.0050119757652282715, + -0.003431623103097081, + 0.003674754174426198, + 0.019464388489723206, + 0.029703684151172638, + 0.027591917663812637, + -0.016505135223269463, + 0.006432556547224522, + -3.296924114692956e-05, + -0.027800314128398895, + 0.002394842216745019, + 0.04187413677573204, + -0.018075067549943924, + 0.0162411630153656, + -0.00022858673764858395, + -0.022312495857477188, + -0.029120169579982758, + -0.0058073620311915874, + 0.02599419839680195, + 0.023104410618543625, + -0.013775118626654148, + -0.006185952108353376, + -0.0014275274006649852, + 0.015088027343153954, + -0.01014204416424036, + 0.005949767772108316, + -0.0342884436249733, + 0.0063318307511508465, + 0.019756145775318146, + 0.007047331426292658, + -0.03681701049208641, + 0.007877450436353683, + -0.012059306725859642, + 0.019200418144464493, + -0.020325766876339912, + -0.02446594461798668, + 0.008037222549319267, + -0.01536589115858078, + -0.02213188447058201, + 0.010808917693793774, + -0.01758880540728569, + -0.02581358514726162, + -0.0037650601007044315, + -0.005150908138602972, + 0.02486884780228138, + 0.015643754974007607, + 0.012239919044077396, + 0.010426854714751244, + 0.004435407463461161, + -0.004793157801032066, + -0.0005279420292936265, + -0.03542768955230713, + 0.028675587847828865, + 0.014101608656346798, + -0.011948161758482456, + -0.005658010020852089, + -0.02297937124967575, + -0.004838310647755861, + 0.013316642493009567, + -0.017199795693159103, + 0.004008191172033548, + -0.021576156839728355, + 0.026772217825055122, + 0.014205807819962502, + -0.002792535349726677, + 0.01918652467429638, + -0.008224780671298504, + 0.06062997132539749, + 0.018116747960448265, + -0.019103165715932846, + -0.022854331880807877, + 0.01667185313999653, + 0.01046853419393301, + 0.008565164171159267, + 0.013990463688969612, + 0.010968689806759357, + -0.016046658158302307, + -0.014025196433067322, + -0.005647590383887291, + 0.0012946735369041562, + 0.007210576441138983, + 0.04045702889561653, + 0.016685746610164642, + -0.007231416180729866, + 0.015754900872707367, + -0.019089272245764732, + -0.0008144894964061677, + 0.007113324012607336, + 0.0004372019902803004, + 0.012406636960804462, + 0.013149924576282501, + -0.031732093542814255, + 0.00036013807402923703, + -0.014810162596404552, + -0.023979682475328445, + -0.030453918501734734, + 0.01529642567038536, + 0.002745645819231868, + 0.0388176329433918, + 0.008724936284124851, + 0.004202696494758129, + 0.002309746341779828, + 0.019325455650687218, + -0.031259723007678986, + -0.004001244902610779, + 0.01560207549482584, + 0.016255056485533714, + -0.017241474241018295, + 0.01628284342586994, + 0.013608399778604507, + -0.005855988245457411, + -0.009989218786358833, + 0.0001564071571920067, + 0.004341628402471542, + -0.01613001711666584, + -0.01781109720468521, + -0.0022038104943931103, + -0.009468222968280315, + -0.00013686982856597751, + -0.008037222549319267, + 0.025535721331834793, + -0.00617205910384655, + -0.017797203734517097, + -0.0031937018502503633, + -0.021312184631824493, + -0.006880612578243017, + -0.022909903898835182, + -0.001705391681753099, + -0.0017288364470005035, + -0.005838621873408556, + -0.005661483388394117, + 0.0006277994834817946, + -0.1796114295721054, + 0.009523795917630196, + 0.02446594461798668, + -0.050960298627614975, + -0.0035670818760991096, + 0.002176024252548814, + 0.023312807083129883, + 0.011170141398906708, + -0.0030287199188023806, + 0.006925765424966812, + 0.009711354039609432, + 0.013434735126793385, + -0.01835293136537075, + -0.0246882364153862, + 0.014310006983578205, + 0.008586004376411438, + -0.029759258031845093, + 0.017894456163048744, + 0.03098186105489731, + 0.016324521973729134, + 0.023548992350697517, + -0.01298320572823286, + 0.0055815973319113255, + 0.00118092296179384, + 0.013393055647611618, + 0.009134786203503609, + -0.00201625213958323, + 0.013427788391709328, + -0.02163172885775566, + -0.019936757162213326, + 0.00631793774664402, + -0.0075926398858428, + 0.024160293862223625, + 0.00020210280490573496, + -0.013858477585017681, + -0.023396167904138565, + -0.00970440823584795, + 0.01336526870727539, + 0.0010454640723764896, + 0.04576423764228821, + 0.02356288582086563, + 0.02140943892300129, + 0.010072577744722366, + -0.0009647098486311734, + -0.027911460027098656, + 0.028675587847828865, + 0.007061224430799484, + -0.01799170859158039, + -0.009225091896951199, + -0.005744842812418938, + -0.0007801906322129071, + -0.03048170544207096, + -0.000889165501575917, + 0.002151711145415902, + 0.010454641655087471, + 0.023312807083129883, + 0.014601764269173145, + -0.0005040630348958075, + 0.015588182955980301, + -0.03656693175435066, + -0.011135408654808998, + -0.01289290003478527, + 0.014518405310809612, + -0.016102232038974762, + -0.008620737120509148, + -0.04009580612182617, + -0.0018460603896528482, + 0.021437224000692368, + -0.0388176329433918, + 0.0050154491327703, + -0.020478593185544014, + -0.010114257223904133, + -0.01290679257363081, + 0.0020614052191376686, + 0.002248963573947549, + 0.015643754974007607, + -0.0059706075116992, + 0.02567465417087078, + 0.01072555873543024, + -0.010510213673114777, + -0.013490308076143265, + 0.04140176996588707, + 0.010795025154948235, + -0.024382585659623146, + -0.01889476738870144, + -0.01617169752717018, + -0.01292763277888298, + -0.0008210019441321492, + 0.0034524628426879644, + 0.0006251945160329342, + 0.0186030101031065, + -0.027591917663812637, + -0.014080769382417202, + 0.013879317790269852, + 0.004438880831003189, + 0.005331519525498152, + -0.023493420332670212, + 0.01330969575792551, + 0.006040073465555906, + -0.04343017563223839, + 0.02293769083917141, + -0.004428461194038391, + -0.006852826103568077, + 0.014643444679677486, + 0.01740819402039051, + -0.0057969423942267895, + -0.016393989324569702, + 0.017797203734517097, + 0.01907537877559662, + -0.010440748184919357, + -0.030120480805635452, + -0.013608399778604507, + 0.009954486042261124, + 0.006401296705007553, + -0.005532971117645502, + 0.01260114274919033, + -0.006991758476942778, + -0.01635230891406536, + 0.008155315183103085, + -0.0005644116899929941, + 0.05215511471033096, + -0.009384864009916782, + -0.035038676112890244, + 0.008169207721948624, + -0.017936134710907936, + -0.01864468865096569, + -0.08530431240797043, + -0.018880873918533325, + 0.023715710267424583, + 0.033955007791519165, + -0.00403250427916646, + 0.036761436611413956, + -0.014018249697983265, + -0.019242096692323685, + -0.016074445098638535, + 0.020950961858034134, + -0.0035271388478577137, + -0.04256879910826683, + -0.008203941397368908, + 0.0007606532890349627, + 0.028119858354330063, + -0.018227891996502876, + -0.014740697108209133, + -0.015977192670106888, + -0.0032371182460337877, + 0.029231315478682518, + -0.0074606542475521564, + -0.01001005806028843, + 0.024590983986854553, + -0.019964544102549553, + -0.00826646015048027, + -0.004504873417317867, + -0.028897877782583237, + 0.024090828374028206, + 0.010808917693793774, + 5.020008029532619e-05, + -0.00629015127196908, + -0.004435407463461161, + 0.029175743460655212, + -0.034760814160108566, + -0.023021049797534943, + -0.009753034450113773, + -0.015407570637762547, + -0.01878362149000168, + 0.015324211679399014, + -0.026230381801724434, + 0.015866046771407127, + 0.02511892467737198, + 0.018686369061470032, + -0.0035392954014241695, + -0.006762520410120487, + -0.003983878064900637, + -0.02945360727608204, + 0.0041783833876252174, + -0.005703162867575884, + -0.001578616094775498, + -0.020561952143907547, + -0.006092173047363758, + 0.01635230891406536, + -0.012969312258064747, + 0.008752723224461079, + -0.004699378740042448, + 0.010565786622464657, + 0.001480495324358344, + -0.020117368549108505, + -0.01529642567038536, + 0.011378539726138115, + 0.012788700871169567, + -0.006314464379101992, + 0.02002011612057686, + 0.00784966442734003, + -0.022701507434248924, + -0.005352359730750322, + -0.008801349438726902, + -0.006040073465555906, + -0.008537378162145615, + -0.008183101192116737, + 0.01035738829523325, + 0.005314153153449297, + 0.0024243653751909733, + -0.029536966234445572, + 0.0054183523170650005, + -0.02552182786166668, + -0.01795002818107605, + 0.027591917663812637, + -0.004063764121383429, + -0.013865424320101738, + -0.028786733746528625, + 0.013976570218801498, + -0.01646345481276512, + 0.01781109720468521, + 0.017046969383955002, + 0.0019763093441724777, + -0.009822499938309193, + 0.010656092315912247, + -0.03867869824171066, + 0.021242719143629074, + 0.024702129885554314, + -0.01072555873543024, + -0.027286266908049583, + -0.005116174928843975, + -0.015060240402817726, + 0.009287611581385136, + -0.0049390364438295364, + -0.0068910326808691025, + 0.006324884481728077, + -0.03198217228055, + 0.013386108912527561, + -0.078635573387146, + 0.0242853332310915, + 0.03048170544207096, + 0.0015438831178471446, + -0.026536032557487488, + -0.012608088552951813, + 0.02224303036928177, + 0.018908660858869553, + 0.01012120395898819, + 0.013782065361738205, + -0.030453918501734734, + -0.0035514519549906254, + -0.00762042636051774, + 0.008162260986864567, + -0.01631063036620617, + -0.029147956520318985, + 0.031593162566423416, + 0.0026136604137718678, + 0.02352120541036129, + -0.007238362915813923, + 0.01351114735007286, + 0.029981549829244614, + -0.011684190481901169, + 0.0332881323993206, + -0.00545308506116271, + 0.020450806245207787, + -0.02320166304707527, + -0.004866097122430801, + 0.005077968817204237, + -0.009759980253875256, + -0.0012217342155054212, + -0.018186213448643684, + -0.018255678936839104, + 0.022368069738149643, + -0.00411586370319128, + -0.015101919881999493, + -0.011065942235291004, + 0.03203774616122246, + -0.005748316179960966, + 0.05032121017575264, + -0.0095029566437006, + -0.01653292030096054, + 0.00018137152073904872, + -0.0035740286111831665, + 0.008849975652992725, + 0.012358010746538639, + 0.004067237488925457, + 0.0017731210682541132, + 0.02920352853834629, + -0.01199678797274828, + 0.019089272245764732, + 0.0057969423942267895, + -0.02482716739177704, + -0.005647590383887291, + -0.009808606468141079, + -0.025549614802002907, + 0.006411716807633638, + -0.002740435767918825, + -0.021256612613797188, + -0.03495531901717186, + 0.04754256829619408, + -0.001359798014163971, + 0.020728670060634613, + 0.012476103380322456, + 0.046375539153814316, + 0.0158382598310709, + -0.019644999876618385, + 0.010496321134269238, + 0.031732093542814255, + 0.008968067355453968, + -0.018255678936839104, + -0.010565786622464657, + 0.018033387139439583, + 0.02068699151277542, + 0.00032041218946687877, + -0.008988907560706139, + 0.008836082182824612, + 0.008655470795929432, + 0.005077968817204237, + 0.0026727064978331327, + 0.016268949955701828, + 0.011058995500206947, + -0.0034871960524469614, + 0.015615968964993954, + 0.014448938891291618, + 0.021979060024023056, + -0.037706173956394196, + -0.002495568012818694, + -0.00759958615526557, + 0.015782687813043594, + -0.01087143737822771, + 0.010260135866701603, + 0.004682011902332306, + -0.005855988245457411, + 0.014240541495382786, + -0.005633696913719177, + -0.003910938743501902, + -0.005255106836557388, + 0.008801349438726902, + 0.027355732396245003, + 0.002082244958728552, + 0.013823744840919971, + -0.010385175235569477, + -0.02832825668156147, + -0.006422136910259724, + 0.014310006983578205, + -0.02464655600488186, + -0.04004023224115372, + -0.006887559313327074, + 0.007293935865163803, + 0.0010307026095688343, + 0.022548681125044823, + 0.007933023385703564, + 0.007926076650619507, + -0.005150908138602972, + 0.0261470228433609, + 0.005675376858562231, + -0.031732093542814255, + -0.020561952143907547, + 0.03120415098965168, + 0.017755523324012756, + 0.012719234451651573, + 0.005314153153449297, + -0.015518716536462307, + 0.03145422786474228, + -0.001141848275437951, + 0.032315608114004135, + -0.038623128086328506, + 0.004796631168574095, + -0.018505757674574852, + 0.01783888228237629, + -0.003132919082418084, + -0.0018894766690209508, + -0.002422628691419959, + -0.016769105568528175, + 0.004161016549915075, + 0.0002178412105422467, + 0.00082621187902987, + -0.00739118829369545, + 0.09830836206674576, + 0.030342772603034973, + 0.00672778720036149, + 0.0064395032823085785, + -0.034427378326654434, + 0.014094662852585316, + -0.004136703442782164, + 0.01292763277888298, + -0.025535721331834793, + -0.06018539145588875, + 0.016227269545197487, + -0.015588182955980301, + 0.02064531110227108, + -0.00784966442734003, + 0.005262053571641445, + -0.017852775752544403, + -0.02541068196296692, + 0.02643878012895584, + -0.01675521209836006, + 0.002136081224307418, + 0.03251011297106743, + -0.017088649794459343, + -0.013136031106114388, + 0.016810785979032516, + -0.021728981286287308, + 0.0022975897882133722, + 0.019283777102828026, + 0.011510524898767471, + -0.008245620876550674, + -0.025105031207203865, + 0.007238362915813923, + 0.017463766038417816, + -0.07141110301017761, + -0.032787978649139404, + 0.013573667034506798, + -0.0006108671077527106, + -0.017686057835817337, + -0.01307351142168045, + 0.02599419839680195, + 0.004188803024590015, + 0.003598341718316078, + 0.020617524161934853, + -0.01052410714328289, + -0.01254556979984045, + 0.023910215124487877, + -0.009037533774971962, + -0.022604255005717278, + -0.02122882567346096, + -0.01519917231053114 + ], + "metadata": { + "source": "INSPIRER_Schlussbericht.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 5, + "has_images": true, + "image_count": 29, + "detection_class_prob": 0.6591171622276306, + "coordinates": "CoordinatesMetadata(points=((1122.828857421875, 155.53517150878906), (1122.828857421875, 361.06524658203125), (1358.3359375, 361.06524658203125), (1358.3359375, 155.53517150878906)), system=)", + "links": [], + "last_modified": "2025-05-05T22:58:03", + "_known_field_names": "frozenset({'page_number', 'text_as_html', 'emphasized_text_contents', 'subject', 'data_source', 'links', 'coordinates', 'image_path', 'is_continuation', 'header_footer_type', 'sent_from', 'url', 'parent_id', 'detection_class_prob', 'emphasized_text_tags', 'last_modified', 'category_depth', 'page_name', 'attached_to_filename', 'bcc_recipient', 'orig_elements', 'languages', 'filetype', 'link_texts', 'file_directory', 'sent_to', 'key_value_pairs', 'image_base64', 'cc_recipient', 'link_urls', 'signature', 'image_mime_type', 'filename', 'detection_origin', 'table_as_cells', 'email_message_id', 'link_start_indexes'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "INSPIRER_Schlussbericht.pdf", + "parent_id": "1c51aaba3295e535d31a83c2392f0391", + "text_as_html": "
Projektlaufzeit01.08.2021 - 31.07.2024 (verl\u00e4ngert bis 31.10.2024)
F\u00f6rderkennzeichen165V8744
StichworteStadtentwicklung, Digitale B\u00fcrgerbeteiligung, Partizipation
und Akzeptanz, Augmented Reality, Extended Reality (XR),
AR-Tracking, Point Cloud Matching
ProjektleitungProf. Dr.-Ing. Volker Coors
Beteiligte ProfessorenProf. Dr.-Ing. Volker Coors
Gef\u00f6rderte Ma\u00dfnahmeForschungsprogramm zur Mensch-Technik-nteraktion
F\u00f6rderbereichTechnik zum Mensch bringen
FachhochschuleHochschule f\u00fcr Technik Stuttgart (HFT Stuttgart),
", + "id": "351a57f5-fe09-4ea6-8750-b2c5267a9700", + "processing_timestamp": "2025-05-05T23:07:23.860264", + "chunk_number": 17, + "total_chunks": 19, + "chunking_strategy": "hybrid", + "word_count": 271 + } +} \ No newline at end of file diff --git a/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000018.json b/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000018.json new file mode 100644 index 0000000000000000000000000000000000000000..343bf9f5a28c0b7c9006f0d8f73ba68e774b33ab --- /dev/null +++ b/data/processed/2b86db2d-408b-1992-e1b5-8a9f00000018.json @@ -0,0 +1,1570 @@ +{ + "id": "2b86db2d-408b-1992-e1b5-8a9f00000018", + "content": "- 59. S. Schneider und V. Coors, \u201eAutomatische Extraktion von Fenstern in 3D Punktwolkenmittels einer hierarchischen Methode\u201c, in Wissenschaftlich-Technische Jahrestagung derDGPF und PFGK18 Tagung, M\u00fcnchen, 2018, S. 559\u2013572. - 60. I. Buchem und S. W\u00fcrz, \u201eKritische Medienkompetenzen. Online-Reputation mit digitalenMedien professionell gestalten\u201c, in Themenreihe \u201eIntegration durch Qualifizierung\u201c des 34Gender- und Technik- Zentrums der Beuth Hochschule Berlin, E.-M. Dombrowski und A.Ducki, Hrsg. 2014.", + "embedding": [ + 0.008063403889536858, + 0.021553168073296547, + 0.004931481089442968, + -0.03183833509683609, + 0.006921377032995224, + 0.028543759137392044, + -0.02805926278233528, + -0.017732568085193634, + -0.009198510088026524, + -0.027422495186328888, + 0.01751108281314373, + 0.03109082579612732, + -0.005976608954370022, + 0.0038171394262462854, + -0.0071843890473246574, + -0.013531291857361794, + 0.02793467789888382, + -0.0043604676611721516, + -0.005685911048203707, + -0.03147842362523079, + -0.01157254260033369, + 0.016998901963233948, + 0.02620433270931244, + -0.0012449827045202255, + -0.017109643667936325, + 0.019725924357771873, + 0.022923599928617477, + -0.026827257126569748, + -0.013635112904012203, + -0.0054367417469620705, + 0.01626523584127426, + -0.008527136407792568, + -0.009475365281105042, + -0.004464288242161274, + -0.0020833343733102083, + 0.007142860908061266, + 0.0045715696178376675, + -0.0016230628825724125, + 0.012230073101818562, + 0.027657821774482727, + 0.00817414652556181, + 0.0009456331026740372, + -0.0049141775816679, + -0.017635667696595192, + 0.007205153349786997, + 0.007869605906307697, + -0.00883167702704668, + -0.0002498184621799737, + -0.010195188224315643, + 0.001122993417084217, + 0.02061185985803604, + 0.03172759339213371, + -0.030454058200120926, + -0.02376800775527954, + -0.010195188224315643, + -0.010963461361825466, + -0.01647287793457508, + 0.02356036752462387, + 0.011655598878860474, + -0.020957930013537407, + -0.010451279580593109, + -0.010430514812469482, + -0.020653389394283295, + 0.010160581208765507, + -0.024640101939439774, + -0.011205709539353848, + -0.02441861853003502, + -0.004754986148327589, + -0.0037029366940259933, + -0.015517727471888065, + 0.03491142392158508, + 0.021483954042196274, + 0.011856318451464176, + -0.01885383017361164, + 0.02495848573744297, + -0.0012925671180710196, + 0.0035541269462555647, + -0.012555377557873726, + -0.017912523820996284, + 0.005834720563143492, + -0.0043570068664848804, + -0.02951275184750557, + -0.022383732721209526, + 0.023311197757720947, + 0.010340536944568157, + 0.02638428844511509, + 0.003341294825077057, + 0.014894803054630756, + -0.0005134796374477446, + 0.013732011429965496, + 0.006495712324976921, + 0.020321162417531013, + 0.01209164597094059, + 0.015573098324239254, + 0.004350085277110338, + 0.00954457838088274, + 0.011877083219587803, + 0.006793331354856491, + -0.00032660248689353466, + -0.006817556452006102, + -0.022051507607102394, + 0.0004511872539296746, + -0.012589984573423862, + -0.016237549483776093, + -0.012070881202816963, + 0.015476198866963387, + 0.004609636962413788, + 0.003820599988102913, + 0.01870156079530716, + -0.0033118787687271833, + -0.020625703036785126, + 0.03397011756896973, + -0.0009966782527044415, + -0.03997787460684776, + -0.0028083487413823605, + -0.014521048404276371, + 0.03424697369337082, + -0.012174702249467373, + -0.014410306699573994, + -0.028488388285040855, + 0.029623493552207947, + 0.012534613721072674, + 0.0028896748553961515, + -0.018327806144952774, + 0.045487288385629654, + 0.016583619639277458, + 0.0056616864167153835, + -0.008568665012717247, + -0.009392308071255684, + -0.011268001981079578, + 0.006859084591269493, + 0.0042289611883461475, + 0.014230350963771343, + 0.010070603340864182, + -0.013835832476615906, + 0.022411419078707695, + -0.02495848573744297, + 0.0022373350802809, + -0.04759138822555542, + -0.03217056021094322, + 0.005281010642647743, + 0.019144529476761818, + -0.02865450084209442, + -0.013254436664283276, + 0.000578367558773607, + 0.013289043679833412, + -0.0032236312981694937, + 0.02045959047973156, + 0.01771872490644455, + -0.019947407767176628, + -0.0039970953948795795, + -0.026232019066810608, + 0.002102368278428912, + 0.025567566975951195, + 0.008817833848297596, + -0.011088046245276928, + 0.009419994428753853, + 0.025083070620894432, + -0.010908090509474277, + -0.015808425843715668, + -0.01870156079530716, + 0.011323372833430767, + 0.0004042516811750829, + 0.003083473537117243, + 0.022563688457012177, + 0.005568247754126787, + -0.0023982571437954903, + 0.003431272692978382, + -0.017428027465939522, + -0.002128323307260871, + -0.005634000990539789, + 0.018272435292601585, + 0.0053052352741360664, + 0.015199343673884869, + 0.01118494477123022, + 0.011565621010959148, + 0.004384692292660475, + -0.00047627725871279836, + -0.027270225808024406, + -0.04687156528234482, + 0.001314196502789855, + 0.0020954469218850136, + 0.014493362978100777, + 0.01795405149459839, + -0.013752776198089123, + -0.004896874073892832, + 0.008457922376692295, + 0.002815270097926259, + -0.0032824629452079535, + -0.013143694959580898, + 0.019698238000273705, + 0.02012736350297928, + -0.004405456595122814, + -0.0009568803361617029, + -0.6409748792648315, + -0.01074889861047268, + 0.0015711525920778513, + -0.021954607218503952, + -0.011378743685781956, + 0.03939647600054741, + 0.013233672827482224, + 0.005942001938819885, + -0.006682589650154114, + 0.025899792090058327, + -0.0007358288858085871, + -0.008506372570991516, + 0.005191032774746418, + 0.01712348684668541, + -0.017912523820996284, + -0.009101610630750656, + 0.004986851941794157, + -0.004291253630071878, + 0.02715948224067688, + 0.02111019939184189, + -0.017815623432397842, + 0.013628191314637661, + 0.011364900507032871, + 0.005301774945110083, + -0.025636781007051468, + 0.007876526564359665, + 0.026162805035710335, + -0.025456825271248817, + 0.030897026881575584, + 0.0017891759052872658, + -0.03311186656355858, + 0.004685772117227316, + -0.010728133842349052, + 0.02376800775527954, + 0.049833912402391434, + -0.0003642374649643898, + -0.01885383017361164, + 0.00683485995978117, + 0.020002778619527817, + 0.034357715398073196, + -0.028820613399147987, + 0.0038794318679720163, + 0.02837764471769333, + 0.01766335405409336, + -0.013572820462286472, + 0.006360745523124933, + 0.031146196648478508, + -0.025844421237707138, + -0.012472321279346943, + -0.010880404151976109, + -8.689572132425383e-05, + -0.0006553678540512919, + 0.01834164932370186, + -0.011648677289485931, + 0.006647982634603977, + 0.010555099695920944, + 0.03225361555814743, + -0.021151727065443993, + -0.007080568466335535, + -0.029678864404559135, + -0.017165014520287514, + 0.020002778619527817, + -0.015573098324239254, + -0.014894803054630756, + -0.022702116519212723, + 0.03499448299407959, + -0.035575877875089645, + -0.012084724381566048, + 0.03181064873933792, + -0.01637597754597664, + -0.005035301670432091, + 0.023338882252573967, + -0.002204458462074399, + -0.01040975097566843, + -0.002003738656640053, + 0.020168893039226532, + 0.024252504110336304, + -0.010638155974447727, + -0.00876938458532095, + 0.016154494136571884, + -0.004813817795366049, + -0.023477310314774513, + -0.0018999179592356086, + 0.009807591326534748, + 0.00701481569558382, + -0.02328351140022278, + -0.021733123809099197, + -0.016334449872374535, + -0.014576420187950134, + -0.002744325902312994, + 0.0124653996899724, + 0.001514916424639523, + -0.0060977330431342125, + -0.01647287793457508, + -0.007994190789759159, + 0.030952397733926773, + -0.003403587033972144, + 0.025802893564105034, + 0.014451835304498672, + -0.054872676730155945, + -0.007426637690514326, + -0.011011910624802113, + 0.010195188224315643, + -0.01220930926501751, + -0.004007477313280106, + 0.009952940046787262, + -0.020777974277734756, + -0.0001333446562057361, + 0.048117414116859436, + -0.009004711173474789, + -0.007385109085589647, + -0.020957930013537407, + -0.0071013327687978745, + -0.005429820157587528, + 0.0021110200323164463, + -0.025512196123600006, + 0.022259147837758064, + -0.0019189517479389906, + -0.010555099695920944, + -0.0035783518105745316, + -0.00022775656543672085, + -0.02951275184750557, + 0.010319773107767105, + -0.004810357000678778, + 0.01220930926501751, + 0.0015702873934060335, + -0.0069525232538580894, + -0.020182734355330467, + -0.021580852568149567, + -0.016182178631424904, + 0.02522149682044983, + -0.016334449872374535, + 0.005367527715861797, + 0.0035506663843989372, + 0.02490311488509178, + 0.012174702249467373, + 0.008208752609789371, + -0.0280869472771883, + 0.004350085277110338, + -0.019670553505420685, + -0.023671109229326248, + -0.0025643701665103436, + 0.009267724119126797, + -0.017317285761237144, + -0.02635660395026207, + -0.015019387938082218, + -0.011835554614663124, + 0.0175387691706419, + 0.01368356216698885, + -0.006184250116348267, + -0.027228696271777153, + -0.01128876581788063, + 0.0016213326016440988, + 0.023934122174978256, + -0.0013176571810618043, + -0.0047307610511779785, + 0.0017658162396401167, + -0.012707647867500782, + -0.019822822883725166, + -0.02009967900812626, + 0.013302886858582497, + 0.02012736350297928, + -0.034053172916173935, + -0.007578907534480095, + 0.0026353143621236086, + -4.434007132658735e-05, + 0.01346207782626152, + -0.005807035136967897, + -0.03305649757385254, + -0.02945738099515438, + 0.00942691508680582, + -0.020168893039226532, + 0.01290836837142706, + 0.012769940309226513, + -0.004097455181181431, + 0.007059804629534483, + -0.000274908437859267, + -0.013808147050440311, + -0.009897569194436073, + -0.010132895782589912, + 0.009738377295434475, + 0.0014076350489631295, + 0.002059109741821885, + -0.014631791040301323, + -0.0010148468427360058, + 0.023546524345874786, + 0.0073920306749641895, + 0.018715403974056244, + -0.014797903597354889, + -0.01712348684668541, + 0.003734082914888859, + 0.037624605000019073, + 0.012375421822071075, + 0.02909746952354908, + -0.019379856064915657, + -0.0011774993035942316, + 0.0010364762274548411, + 0.0031301926355808973, + -0.00923311710357666, + 0.024792371317744255, + 0.0326412133872509, + 0.013136773370206356, + 0.02149779722094536, + -0.0033395644277334213, + 0.03380400314927101, + -0.03388706222176552, + 0.00499723432585597, + 0.0006289801094681025, + 0.003782532410696149, + 0.015240872278809547, + 0.02004430815577507, + -0.015019387938082218, + -0.020168893039226532, + -0.011032674461603165, + 0.006419577170163393, + 0.03178296238183975, + -0.0006441206205636263, + 0.015462355688214302, + -0.0062361606396734715, + 0.016583619639277458, + 0.0026162804570049047, + -0.016514405608177185, + 0.02870987169444561, + 0.012057038955390453, + 0.0005723113426938653, + -0.0055197980254888535, + -0.0019518282497301698, + 0.01769103854894638, + 0.026868784800171852, + -0.0456257164478302, + -0.011697127483785152, + 0.006855623796582222, + 0.009274644777178764, + 0.01795405149459839, + 0.02648118883371353, + 0.024321718141436577, + 0.028460701927542686, + -0.008008033037185669, + 0.017261914908885956, + 0.015282399952411652, + -0.0035437450278550386, + 0.021760808303952217, + 0.026522716507315636, + 0.01634829305112362, + 0.022411419078707695, + -0.026633458212018013, + 0.024086391553282738, + 0.013185222633183002, + 0.0020348848775029182, + -0.005703214555978775, + -0.0403931550681591, + 0.0060873511247336864, + 0.0013211178593337536, + 0.0019154910696670413, + 0.01258306298404932, + 0.004121679812669754, + 0.015227029100060463, + -0.007696571294218302, + -0.0008188853971660137, + 0.03499448299407959, + 0.0072605242021381855, + 0.018037108704447746, + 0.00912929605692625, + -0.013932731933891773, + 0.008568665012717247, + 0.006381509359925985, + -0.025263026356697083, + -0.003433002857491374, + 0.0015789391472935677, + -0.014368778094649315, + -0.0021542785689234734, + -0.0005320808268152177, + 0.007156703621149063, + -0.00645418418571353, + 0.006028519477695227, + -0.0017087149899452925, + -0.0037202402018010616, + -0.003002147190272808, + 0.013870439492166042, + 0.028543759137392044, + -0.033610206097364426, + -0.021719280630350113, + -0.012181623838841915, + 0.03466225415468216, + -0.011011910624802113, + -0.015019387938082218, + -0.008326416835188866, + 0.002924281870946288, + -0.028433015570044518, + -0.005194493569433689, + -0.014410306699573994, + 0.013835832476615906, + -0.006807174067944288, + -0.013628191314637661, + 0.009323094971477985, + -0.009779905900359154, + 0.007841920480132103, + -0.02043190412223339, + -0.01748339831829071, + -0.004810357000678778, + 0.00865172129124403, + -0.008824755437672138, + 0.00964839942753315, + -0.01110881008207798, + 0.03413623198866844, + -0.015462355688214302, + -0.0287652425467968, + -0.0015849953051656485, + 0.00477228919044137, + -0.016722045838832855, + 0.008914733305573463, + -0.01566999778151512, + -0.016306763514876366, + 0.02749170921742916, + -0.013067559339106083, + -0.010651999153196812, + 0.0003594790177885443, + -0.017400341108441353, + 0.03181064873933792, + 0.012008588761091232, + -0.009378465823829174, + 0.004083612468093634, + 0.011897847056388855, + 0.0024397852830588818, + 0.0361572727560997, + 0.04280179366469383, + -0.023075871169567108, + 0.025110755115747452, + -0.0157807394862175, + -0.025152284651994705, + -0.03499448299407959, + -0.03424697369337082, + 0.005599393974989653, + -0.012188544496893883, + 0.009004711173474789, + -0.005035301670432091, + 0.014133451506495476, + -0.007814234122633934, + 0.031672220677137375, + 0.002524572191759944, + -0.005834720563143492, + 0.0017199622234329581, + 0.00707364734262228, + 0.004986851941794157, + -0.020376533269882202, + -0.01011213194578886, + 0.015919167548418045, + 0.0022961667273193598, + 0.019186057150363922, + -0.015490042045712471, + 0.03997787460684776, + 0.03397011756896973, + 0.008887047879397869, + -0.013635112904012203, + -0.005945462733507156, + 0.024460146203637123, + -7.24040946806781e-05, + 0.016099123284220695, + -0.015088601969182491, + 0.016514405608177185, + 0.011537935584783554, + -0.01228544395416975, + 0.019490597769618034, + 0.005820877850055695, + 0.011357979848980904, + 0.03239204362034798, + 0.008063403889536858, + -0.013932731933891773, + -0.0015469277277588844, + -0.01870156079530716, + 0.015614625997841358, + 0.012998346239328384, + -0.004173590335994959, + -0.04371541738510132, + 1.551902460050769e-05, + -0.002733943983912468, + -0.007931898348033428, + -0.009219273924827576, + -0.014880960807204247, + -0.010478965006768703, + -0.007281288504600525, + -0.01569768227636814, + -0.001262286095879972, + -0.0021594695281237364, + -0.018244748935103416, + -0.01989203691482544, + -0.02951275184750557, + -0.01647287793457508, + -0.018327806144952774, + 0.004893413279205561, + -0.01831396296620369, + -0.014659476466476917, + -0.013925810344517231, + 0.01932448521256447, + 0.010181345045566559, + -0.004128601402044296, + -0.027713192626833916, + -0.012008588761091232, + 0.0038725105114281178, + 0.016251392662525177, + 0.03397011756896973, + 0.010790426284074783, + -0.008603271096944809, + -0.006166947074234486, + -0.02284054458141327, + -0.024764686822891235, + 0.006336520425975323, + -0.03427466005086899, + 0.0037202402018010616, + 0.0029225514736026525, + -0.02677188627421856, + -0.007523536682128906, + -0.00485534593462944, + 0.024792371317744255, + 0.004201275762170553, + -0.020777974277734756, + -0.004028241150081158, + 0.026218175888061523, + 0.013676640577614307, + 0.007239760365337133, + 0.015116287395358086, + 0.02707642689347267, + 0.029263582080602646, + -0.012444635853171349, + 0.01679125986993313, + -0.011503328569233418, + -0.011634835042059422, + -0.014894803054630756, + 0.006592611316591501, + 0.00795266218483448, + -0.009523814544081688, + 0.021317841485142708, + 0.006485330406576395, + -0.00031535522430203855, + 0.015448513440787792, + 0.008963183499872684, + 0.016694361343979836, + -0.02159469574689865, + 0.0033741712104529142, + 0.01849391870200634, + -0.0071913106366992, + 0.0080703254789114, + 0.03455151244997978, + -0.007412794511765242, + 0.007786549162119627, + -0.04177743196487427, + 0.04061463847756386, + 0.016542090103030205, + -0.0039970953948795795, + 0.025872107595205307, + -0.0063780490309000015, + -0.02030731923878193, + -0.02549835294485092, + -0.008790148422122002, + -0.0016187370056286454, + 0.019753610715270042, + 0.01950444094836712, + -0.023006657138466835, + -0.052907004952430725, + -0.027173325419425964, + -0.0015988380182534456, + 0.007814234122633934, + -0.02162238210439682, + 0.005623618606477976, + -5.701348982256604e-06, + -0.0019950869027525187, + 0.006793331354856491, + 0.0018030187347903848, + 0.011648677289485931, + -0.023366568610072136, + -0.02653655968606472, + 0.00825028121471405, + -0.017012745141983032, + 0.03552050516009331, + -0.013600505888462067, + 0.0017857152270153165, + -0.01846623420715332, + -0.0034399244468659163, + 0.005682450253516436, + -0.0526578351855278, + 0.0147425327450037, + -0.018950730562210083, + 0.03178296238183975, + 0.03491142392158508, + 0.034828368574380875, + 0.009198510088026524, + 0.013953495770692825, + 0.017857152968645096, + -0.011378743685781956, + 0.0103474585339427, + -0.006786410231143236, + 0.015171658247709274, + -0.02995571866631508, + 0.026439659297466278, + -0.0037963753566145897, + 0.008464843966066837, + 0.013309807516634464, + 0.015296243131160736, + 0.03219824656844139, + 0.0005390022415667772, + 0.002605898305773735, + -0.009759141132235527, + -0.015836110338568687, + -0.023006657138466835, + -0.01864618994295597, + 7.343148172367364e-05, + 0.013655876740813255, + 0.007419716101139784, + -0.02519381232559681, + -0.0005822608363814652, + 0.024792371317744255, + 0.02162238210439682, + -0.0021785034332424402, + -0.02162238210439682, + 0.02689647115767002, + -0.03109082579612732, + 0.009219273924827576, + -0.007620436139404774, + 0.01064507756382227, + -0.027325596660375595, + 0.0002935096272267401, + -0.030786285176873207, + 0.005879709497094154, + 0.03194907680153847, + 0.009586106985807419, + 0.01670820452272892, + 0.0074750869534909725, + -0.003557587740942836, + -0.01566999778151512, + 0.027837777510285378, + 0.021719280630350113, + -0.03194907680153847, + -0.007814234122633934, + -0.0192967988550663, + 0.0007180928369052708, + -0.02108251489698887, + 0.004817278124392033, + -0.001501073595136404, + 0.025249183177947998, + 0.009018554352223873, + -0.015033231116831303, + 0.03839980065822601, + 0.011655598878860474, + -0.010686606168746948, + 0.004256646614521742, + 0.00727436738088727, + 0.055703241378068924, + -0.010998068377375603, + 0.036517184227705, + 0.03648949787020683, + -0.01164175570011139, + 0.008970104157924652, + -0.038704339414834976, + -0.001730344258248806, + 0.00198816554620862, + 0.02266058884561062, + 0.02710411138832569, + 0.0032426652032881975, + -0.002638774923980236, + -0.009800669737160206, + 0.002912169322371483, + -0.007807312998920679, + -0.02519381232559681, + 0.03887045383453369, + 0.03194907680153847, + -0.004585412330925465, + -0.021068671718239784, + -0.0033205305226147175, + -0.024861585348844528, + 0.012133173644542694, + 0.010755820199847221, + 0.007412794511765242, + -0.00825028121471405, + -0.009330016560852528, + -0.010624313727021217, + 0.03740312159061432, + -0.028626814484596252, + 0.020722603425383568, + -1.788472945918329e-05, + -0.008111854083836079, + 0.03189370408654213, + -0.005841642152518034, + 0.012589984573423862, + 0.026439659297466278, + -0.017192700877785683, + 0.02760245092213154, + 0.005637461319565773, + -0.003259968478232622, + 0.015254714526236057, + -0.001314196502789855, + -0.02787930704653263, + -0.011434114538133144, + -0.014687161892652512, + 0.024487830698490143, + -0.014714847318828106, + 0.0001639501133468002, + -0.015019387938082218, + 0.00433278176933527, + 0.013060638681054115, + 0.0066722072660923, + -0.0022356046829372644, + -0.01766335405409336, + -0.002202728297561407, + -0.006153103895485401, + 0.012603827752172947, + -0.007765784859657288, + -0.0010477234609425068, + 0.00655108317732811, + 0.002351537812501192, + -0.008907811716198921, + -0.0016862204065546393, + 0.012659198604524136, + -0.013558977283537388, + -0.06794023513793945, + 0.0026318535674363375, + 0.015379299409687519, + -0.0147425327450037, + 0.01200166717171669, + -0.0011584655148908496, + -0.021954607218503952, + 0.01962902583181858, + 0.018936887383461, + -0.025207655504345894, + 0.00704942224547267, + 0.045099690556526184, + -0.014507206156849861, + -0.03142305091023445, + 0.0013133313041180372, + 0.006571847479790449, + -0.010548178106546402, + 0.013441313989460468, + -0.020542647689580917, + -0.017165014520287514, + 0.013898124918341637, + -0.02322814054787159, + -0.002538414904847741, + 0.013406706973910332, + -0.0015503884060308337, + 0.0045161982998251915, + -0.0033482161816209555, + 0.008298731409013271, + -0.025207655504345894, + 0.01906147226691246, + 0.0063780490309000015, + 0.006336520425975323, + 0.009503050707280636, + 0.025664465501904488, + -0.030177203938364983, + -0.006118497345596552, + 0.006447262596338987, + -0.00433278176933527, + 0.00027469213819131255, + -0.026730358600616455, + -0.011517170816659927, + 0.00678987056016922, + 0.03181064873933792, + -0.009572264738380909, + 0.0011939374962821603, + -0.007786549162119627, + 0.003368980251252651, + -0.005426359362900257, + 0.0287652425467968, + -0.028820613399147987, + -0.0037756110541522503, + 0.009385387413203716, + 0.025678308680653572, + 0.004391613882035017, + 0.01841086335480213, + -0.006440341472625732, + -0.021013300865888596, + -0.012437714263796806, + -0.0025089990813285112, + -0.01532392855733633, + 0.02832227386534214, + -0.010935775935649872, + 0.030592486262321472, + 0.020030464977025986, + -0.025484509766101837, + -0.02227299101650715, + -0.00783499889075756, + -0.014576420187950134, + -0.01611296460032463, + -0.014756375923752785, + -0.000664452207274735, + 0.002752977656200528, + -0.004519659094512463, + 0.0004284764872863889, + 0.0072605242021381855, + 0.01058970671147108, + 0.010728133842349052, + -0.024584731087088585, + -0.023131242021918297, + -0.002012390410527587, + -0.007212074939161539, + 0.020625703036785126, + -0.003379362402483821, + -0.04327244684100151, + 0.004308557137846947, + 0.0006173003348521888, + -0.001438781269825995, + 0.008284888230264187, + 0.010492807254195213, + 0.0024467066396027803, + 0.0030332934111356735, + 0.013607427477836609, + -0.003959027584642172, + -0.005107976030558348, + -0.00045810863957740366, + 0.014126529917120934, + -0.05240866541862488, + 0.010797347873449326, + 0.010354380123317242, + 0.0016844901256263256, + -0.016832789406180382, + -0.004170129541307688, + 0.019670553505420685, + -0.013413628563284874, + 0.004561187233775854, + 0.029402010142803192, + -0.026910314336419106, + 0.012410028837621212, + -0.007350502535700798, + 0.009717613458633423, + 0.008506372570991516, + 0.005467887967824936, + 0.007675806991755962, + 0.012292365543544292, + 0.00168275972828269, + -0.011856318451464176, + -0.0037894537672400475, + -0.012119331397116184, + -0.005737821571528912, + -0.0007046826649457216, + -0.021525481715798378, + 0.04399227350950241, + -0.03172759339213371, + 0.0008790149004198611, + -0.004211657680571079, + 0.031589165329933167, + -0.03529902175068855, + -0.017081959173083305, + -0.012057038955390453, + 0.0016464225482195616, + 0.02221762016415596, + -0.022563688457012177, + 0.00575512507930398, + -0.022619059309363365, + -0.0035679698921740055, + -0.011994746513664722, + 5.704728755517863e-05, + -0.015808425843715668, + -0.027477866038680077, + -0.013531291857361794, + 0.007931898348033428, + -0.028100790455937386, + 0.002643965883180499, + 0.014673318713903427, + 0.00976606272161007, + 0.006696432363241911, + 0.028516072779893875, + 0.1708749532699585, + -0.017220385372638702, + -0.005782810505479574, + 0.021511640399694443, + 0.01637597754597664, + -0.012326972559094429, + 0.03815063089132309, + 0.006561465561389923, + 0.00942691508680582, + 0.03349946439266205, + -0.003452036762610078, + -0.004703075625002384, + -0.022314518690109253, + 0.004111297894269228, + 0.03698783740401268, + -0.007288210093975067, + -0.028460701927542686, + 0.00021164273493923247, + 0.002915630117058754, + 0.00497300922870636, + 0.013441313989460468, + -0.024557044729590416, + 0.009627635590732098, + -0.015379299409687519, + 0.03945184871554375, + -0.001232870272360742, + -4.680040365201421e-05, + 0.01944907009601593, + 0.027616294100880623, + 0.007135939784348011, + -0.009890647605061531, + 0.00511489761993289, + 0.025276867672801018, + -0.010651999153196812, + -0.014036552049219608, + -0.01012597419321537, + 0.000975048984400928, + -0.0018601201009005308, + 0.023477310314774513, + 0.013434392400085926, + -0.009295409545302391, + -0.01787099614739418, + 0.019670553505420685, + -0.015088601969182491, + 0.004692693706601858, + 0.026702672243118286, + 0.0004671929345931858, + 0.022536003962159157, + -0.019545968621969223, + -0.011731733568012714, + -0.01885383017361164, + 0.016846630722284317, + 0.02364342287182808, + 0.03466225415468216, + -0.03189370408654213, + -0.00699059059843421, + -0.020155049860477448, + 0.01139258686453104, + -0.003457227721810341, + 0.009406151250004768, + -0.030509429052472115, + 0.029651178047060966, + -0.0003365519514773041, + -0.0014699273742735386, + -0.012693805620074272, + -0.0034295422956347466, + -0.020168893039226532, + 0.0012017240514978766, + -0.0071774679236114025, + -0.028405331075191498, + -0.0003149226540699601, + -0.010741977021098137, + -0.03253047168254852, + 0.01274917647242546, + -0.023989493027329445, + -0.024307874962687492, + 0.021913079544901848, + -0.0012657467741519213, + 0.023311197757720947, + 0.0368770956993103, + -0.001152409240603447, + 0.007129018194973469, + -0.014368778094649315, + -0.014507206156849861, + -0.021096356213092804, + -0.04786824434995651, + 0.02504154108464718, + 0.007765784859657288, + -0.0012441175058484077, + -0.028820613399147987, + -0.018535448238253593, + -0.002924281870946288, + -0.0032565079163759947, + -0.015116287395358086, + 0.01368356216698885, + -0.018992258235812187, + 0.021968450397253036, + 0.025830578058958054, + 0.004931481089442968, + 0.009025475941598415, + -0.029235895723104477, + 0.07635662704706192, + 0.031699907034635544, + -0.003471070434898138, + -0.0026076287031173706, + 0.0035541269462555647, + -0.03153379261493683, + 0.0020781434141099453, + 0.019213741645216942, + 0.004055927041918039, + -0.0025609093718230724, + -0.023186612874269485, + 0.00699059059843421, + -0.012250836938619614, + -0.008624035865068436, + 0.03269658610224724, + -0.005388292018324137, + -0.00043366753379814327, + 0.0027875846717506647, + -0.012043195776641369, + 0.009537657722830772, + 0.003351676743477583, + 0.007163625210523605, + 0.02048727497458458, + 0.002692415611818433, + -0.025069227442145348, + -0.022203776985406876, + -0.009662242606282234, + -0.01280454732477665, + -0.02423866279423237, + 0.014853275381028652, + -0.007308973930776119, + 0.026162805035710335, + 0.005654764827340841, + 0.013309807516634464, + -0.004388153087347746, + 0.013600505888462067, + -0.021456267684698105, + 0.002332504140213132, + 0.009032396599650383, + -3.425540853640996e-05, + -0.01670820452272892, + 0.0054367417469620705, + 0.011745576746761799, + -0.0034918347373604774, + -0.019255271181464195, + 0.004038623534142971, + -0.00505606597289443, + -0.009205431677401066, + -0.006876388099044561, + -0.009593028575181961, + -0.016597462818026543, + -0.011164180934429169, + -0.017760252580046654, + 0.02299281395971775, + 0.0027460562996566296, + -0.024695472791790962, + -0.014299564994871616, + -0.015711525455117226, + -0.0011930722976103425, + -0.01748339831829071, + -0.002945045940577984, + -0.008575585670769215, + -0.008499450981616974, + -0.005187571980059147, + -0.00264742667786777, + -0.1786268949508667, + 0.012264680117368698, + 0.0047965142875909805, + -0.03856591135263443, + 0.0004025213420391083, + 0.015448513440787792, + 0.012638433836400509, + 0.016389820724725723, + -0.005346763879060745, + -0.015600783750414848, + 0.012340814806520939, + 0.010402829386293888, + -0.0028810231015086174, + -0.04512737691402435, + -0.0016360405134037137, + -0.011261080391705036, + -0.03031563013792038, + 0.018964573740959167, + 0.016486719250679016, + 0.023684952408075333, + 0.017441870644688606, + -0.005263707134872675, + 0.0006363340653479099, + -0.00022364698816090822, + 0.008783227764070034, + -0.006779488641768694, + 0.0021577393636107445, + -0.0036164193879812956, + -0.02144242636859417, + -0.02200997807085514, + 0.007295131217688322, + -0.009786826558411121, + 0.02364342287182808, + 0.025332240387797356, + -0.012839154340326786, + -0.02638428844511509, + -0.014617947861552238, + -0.004931481089442968, + -0.004121679812669754, + 0.026730358600616455, + 0.0294850654900074, + 0.028156161308288574, + 0.022854385897517204, + 0.008492529392242432, + -0.028516072779893875, + 0.004827660508453846, + 0.005125279538333416, + -0.014216507785022259, + -0.005710136145353317, + -0.020944086834788322, + -0.01356589887291193, + -0.025484509766101837, + 0.018120164051651955, + -0.0005788001581095159, + 0.007198232226073742, + 0.02102714404463768, + 0.01408500224351883, + 0.027657821774482727, + 0.010077524930238724, + -0.008291809819638729, + -5.666877405019477e-05, + -0.0035645090974867344, + 0.016638990491628647, + -0.012797625735402107, + 0.0019068393157795072, + -0.037181638181209564, + 0.013939653523266315, + 0.006481869611889124, + -0.027477866038680077, + 0.003547205589711666, + -0.0002058028185274452, + -0.02147011086344719, + -0.0024120998568832874, + -0.005710136145353317, + -0.01569768227636814, + 0.015517727471888065, + -0.005204875487834215, + 0.03133999556303024, + 0.0060146767646074295, + -0.026633458212018013, + -0.011994746513664722, + 0.05539870262145996, + -0.0032236312981694937, + -0.019518282264471054, + -0.016777418553829193, + -0.00796650443226099, + -0.03457919880747795, + -0.00046200191718526185, + 0.0003092990373261273, + 0.00017963135906029493, + 0.004959166515618563, + -0.029402010142803192, + -0.02260521799325943, + 0.003509138012304902, + 0.01364203356206417, + -0.00497300922870636, + -0.012562299147248268, + -0.0036994758993387222, + 0.0073158955201506615, + -0.005980069749057293, + 0.008091089315712452, + 0.011198787949979305, + -0.029346637427806854, + 0.007994190789759159, + 0.02299281395971775, + 0.014424149878323078, + -0.014867117628455162, + 0.00775194214656949, + 0.023477310314774513, + -0.030066462233662605, + -0.011973981745541096, + -0.014354935847222805, + 0.01611296460032463, + -0.012250836938619614, + 0.020722603425383568, + 0.005980069749057293, + 0.012375421822071075, + -0.0072605242021381855, + 0.017220385372638702, + -0.0026560784317553043, + 0.04515506327152252, + -0.007253603078424931, + -0.03333334997296333, + 0.007281288504600525, + -0.014230350963771343, + -0.0161406509578228, + -0.09114069491624832, + -0.012617669999599457, + 0.00911545380949974, + 0.030897026881575584, + -0.009419994428753853, + 0.01566999778151512, + -0.009309251792728901, + 0.00421511847525835, + -0.015448513440787792, + 0.02185770869255066, + -0.005426359362900257, + -0.02602437697350979, + -0.00971069186925888, + -0.024653945118188858, + 0.0245708879083395, + -0.01971208117902279, + -0.007592750713229179, + -0.026079747825860977, + -0.016431348398327827, + 0.02870987169444561, + -0.004502355586737394, + -0.0022875149734318256, + 0.00872785598039627, + -0.018535448238253593, + -0.02299281395971775, + -0.0015028039924800396, + -0.02677188627421856, + 0.029789606109261513, + 0.012333894148468971, + 0.004305096343159676, + -0.004703075625002384, + -0.03222592920064926, + 0.020390376448631287, + -0.035215966403484344, + -0.006938680540770292, + -0.017400341108441353, + -0.008499450981616974, + -0.017995579168200493, + 0.01932448521256447, + -0.038427483290433884, + 0.008714013732969761, + 0.028599129989743233, + 0.011752498336136341, + -0.023920278996229172, + -0.028433015570044518, + 0.011198787949979305, + -0.03959027677774429, + 0.015642311424016953, + 0.011254158802330494, + -0.0013349605724215508, + -0.027464022859930992, + -0.025650622323155403, + -0.0045715696178376675, + -0.006436880677938461, + 0.021359369158744812, + 0.00954457838088274, + -0.005623618606477976, + -0.022826701402664185, + -0.03305649757385254, + 0.0019812441896647215, + 4.098752833670005e-05, + 0.03488374128937721, + -0.01188400387763977, + 0.02870987169444561, + 0.013323650695383549, + 0.0015650963177904487, + -0.027588607743382454, + -0.021137885749340057, + -0.006547622382640839, + -0.004889952950179577, + -0.011399507522583008, + 0.009939096868038177, + -0.006983669474720955, + -0.0010286896722391248, + -0.014507206156849861, + -0.019698238000273705, + -0.050193823873996735, + -0.02671651542186737, + 0.010485885664820671, + -0.006547622382640839, + -0.0031578782945871353, + -0.026287389919161797, + 0.018452391028404236, + -0.004651165101677179, + 0.017801782116293907, + 0.018715403974056244, + 0.004706536419689655, + -0.017524925991892815, + -0.009385387413203716, + -0.0543743371963501, + 0.03153379261493683, + 0.018424704670906067, + 0.019573653116822243, + -0.02733943983912468, + -0.01180786918848753, + 0.006509555038064718, + -0.01297066081315279, + -0.009503050707280636, + 0.015033231116831303, + 0.014701005071401596, + -0.018715403974056244, + 0.011157259345054626, + -0.07048730552196503, + 0.010707370005548, + 0.008720935322344303, + 0.0020002778619527817, + -0.013898124918341637, + -0.009274644777178764, + 0.016279079020023346, + -0.0025124598760157824, + 0.01652824878692627, + 0.00911545380949974, + -0.009738377295434475, + 0.010382065549492836, + -0.01575305312871933, + 0.010596628300845623, + -0.02436324767768383, + -0.01795405149459839, + 0.023629581555724144, + 0.0034295422956347466, + 0.018923044204711914, + 0.00353682367131114, + -0.025567566975951195, + 0.020556489005684853, + -0.006647982634603977, + 0.027214854955673218, + -0.03660023957490921, + 0.00016221977421082556, + 0.00529485335573554, + -0.010388987138867378, + 0.0033153395634144545, + -0.0025695611257106066, + 0.008762462995946407, + -0.016583619639277458, + -0.018272435292601585, + 0.005322538781911135, + 0.0038655889220535755, + -0.017206542193889618, + 0.00017519734683446586, + 0.027823936194181442, + -0.002879292704164982, + 0.06733115762472153, + -0.015393142588436604, + -0.024584731087088585, + 0.009357701987028122, + -0.011634835042059422, + -0.0058831702917814255, + 0.006935219746083021, + -0.007004433311522007, + 0.0010641616536304355, + 0.016431348398327827, + -0.0028567982371896505, + 0.03726469352841377, + -0.003164799651131034, + -0.018867673352360725, + -0.001950097968801856, + 0.01074889861047268, + -0.015116287395358086, + -0.00497300922870636, + -0.011150338687002659, + -0.0013937923358753324, + -0.030038775876164436, + 0.03540976345539093, + 0.008540979586541653, + 0.012292365543544292, + 0.006339981220662594, + 0.043438561260700226, + 0.001065892050974071, + -0.018203221261501312, + -0.009523814544081688, + 0.008914733305573463, + -0.00993217620998621, + -0.0036683296784758568, + 0.0016741080908104777, + 0.014410306699573994, + 0.0403931550681591, + -0.005692832637578249, + -0.0037548469845205545, + 0.005038762465119362, + 0.017428027465939522, + -0.003986713010817766, + 0.026135118678212166, + 0.010188266634941101, + 0.029789606109261513, + -0.01629292219877243, + -0.010963461361825466, + 0.032087504863739014, + 0.023629581555724144, + -0.019352169707417488, + 0.004498894792050123, + -0.014521048404276371, + 0.015974538400769234, + 0.004298175219446421, + 0.022882072255015373, + 0.011212630197405815, + -0.012153937481343746, + 0.004339703358709812, + 0.008305652067065239, + -0.01082503329962492, + 0.005277549847960472, + 0.003706397255882621, + 0.030454058200120926, + -0.004831121303141117, + 0.011496406979858875, + -0.0051668076775968075, + -0.019670553505420685, + -0.0175387691706419, + 0.010188266634941101, + -0.004308557137846947, + -0.05393137037754059, + -0.0068037137389183044, + 0.007551222108304501, + -0.006315756589174271, + 0.027616294100880623, + 0.020501118153333664, + -0.004388153087347746, + -0.020168893039226532, + 0.025249183177947998, + -0.015282399952411652, + -0.016057593747973442, + -0.03502216562628746, + 0.017552612349390984, + 0.01162791345268488, + -0.0016940069617703557, + 0.005990451667457819, + -0.0129845030605793, + 0.033637892454862595, + 0.01980898156762123, + 0.020902559161186218, + -0.03889814019203186, + 0.01745571196079254, + -0.015047073364257812, + 0.005402134731411934, + 0.004561187233775854, + 0.0056063150987029076, + -0.0010286896722391248, + -0.019753610715270042, + -0.011434114538133144, + -0.019961250945925713, + 0.021913079544901848, + 0.009516892954707146, + 0.10564789921045303, + 0.035658933222293854, + -0.02239757589995861, + 0.005291392561048269, + -0.017635667696595192, + -0.011724812909960747, + 0.0012596906162798405, + 0.0014664666960015893, + -0.01652824878692627, + -0.04947400093078613, + 0.013247515074908733, + 0.014493362978100777, + 0.011413350701332092, + -0.004865727853029966, + 0.015656154602766037, + -0.02111019939184189, + -0.017621826380491257, + 0.009662242606282234, + -0.02027963474392891, + 0.012707647867500782, + 0.027643978595733643, + -0.0196567103266716, + 0.0068244775757193565, + 0.028156161308288574, + -0.021359369158744812, + -0.027630137279629707, + 0.024114077910780907, + -0.0044400631450116634, + 0.000162544209160842, + -0.00555440504103899, + -0.0037929145619273186, + 0.004595794249325991, + -0.05221486836671829, + -0.029678864404559135, + 0.02394796349108219, + -0.01908915676176548, + -0.01906147226691246, + -0.012949896045029163, + -0.0006333059864118695, + 0.024792371317744255, + 0.0047203791327774525, + 0.026162805035710335, + -0.006800252944231033, + -0.013794303871691227, + 0.005464427173137665, + -0.034772999584674835, + -0.00189299660269171, + -0.010672762989997864, + -0.009558421559631824 + ], + "metadata": { + "source": "INSPIRER_Schlussbericht.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 5, + "has_images": true, + "image_count": 29, + "detection_class_prob": 0.6591171622276306, + "coordinates": "CoordinatesMetadata(points=((1122.828857421875, 155.53517150878906), (1122.828857421875, 361.06524658203125), (1358.3359375, 361.06524658203125), (1358.3359375, 155.53517150878906)), system=)", + "links": [], + "last_modified": "2025-05-05T22:58:03", + "_known_field_names": "frozenset({'page_number', 'text_as_html', 'emphasized_text_contents', 'subject', 'data_source', 'links', 'coordinates', 'image_path', 'is_continuation', 'header_footer_type', 'sent_from', 'url', 'parent_id', 'detection_class_prob', 'emphasized_text_tags', 'last_modified', 'category_depth', 'page_name', 'attached_to_filename', 'bcc_recipient', 'orig_elements', 'languages', 'filetype', 'link_texts', 'file_directory', 'sent_to', 'key_value_pairs', 'image_base64', 'cc_recipient', 'link_urls', 'signature', 'image_mime_type', 'filename', 'detection_origin', 'table_as_cells', 'email_message_id', 'link_start_indexes'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "INSPIRER_Schlussbericht.pdf", + "parent_id": "1c51aaba3295e535d31a83c2392f0391", + "text_as_html": "
Projektlaufzeit01.08.2021 - 31.07.2024 (verl\u00e4ngert bis 31.10.2024)
F\u00f6rderkennzeichen165V8744
StichworteStadtentwicklung, Digitale B\u00fcrgerbeteiligung, Partizipation
und Akzeptanz, Augmented Reality, Extended Reality (XR),
AR-Tracking, Point Cloud Matching
ProjektleitungProf. Dr.-Ing. Volker Coors
Beteiligte ProfessorenProf. Dr.-Ing. Volker Coors
Gef\u00f6rderte Ma\u00dfnahmeForschungsprogramm zur Mensch-Technik-nteraktion
F\u00f6rderbereichTechnik zum Mensch bringen
FachhochschuleHochschule f\u00fcr Technik Stuttgart (HFT Stuttgart),
", + "id": "351a57f5-fe09-4ea6-8750-b2c5267a9700", + "processing_timestamp": "2025-05-05T23:07:23.860264", + "chunk_number": 18, + "total_chunks": 19, + "chunking_strategy": "hybrid", + "word_count": 62 + } +} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000000.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000000.json new file mode 100644 index 0000000000000000000000000000000000000000..c12819a5e9c753562acefd2d5c138833c2c27958 --- /dev/null +++ b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000000.json @@ -0,0 +1,1570 @@ +{ + "id": "61a115b2-0ff7-441a-f6d9-eb3d00000000", + "content": "\n[IMAGE: Hochschule II) rur Technilk Stuttgart]\n\n\n## FAKULT\u00c4T F\u00dcR\n\nBAUINGENIEURWESEN, BAUPHYSIK UND WIRTSCHAFT\nBACHELORSTUDIENGANG INFRASTRUKTURMANAGEMENT\n\n## BACHELORARBEIT\n\nzur Erlangung des akademischen Grades\nBACHELOR OF ENGINEERING (B. ENG.) Analyse der Wechselwirkungen zwischen Mobilit\u00e4t, Stadtgr\u00fcn und thermischen Geb\u00e4udeenergiebedarf anhand zweier Fallbeispiele\nVorgelegt von\nMarieke Kreye\n\n## Matrikelnummer\n\nMatrikelnummer\n1002127\n\n## Betreuer Zweitbetreuer\n\n\n## Zweitbetreuer\n\nHerr Prof. Dr. Bastian Schr\u00f6ter\n\n## Herr Mario Flammann\n\nAbgabedatum\n20.06.2024\nGender Disclaimer\n\n## Gender Disclaimer\n\nHinweis zur Verwendung geschlechtsneutraler Formulierungen. Aus Gr\u00fcnden der besseren Lesbarkeit wird auf die Verwendung von geschlechtsspezifischen Doppelnennungen und Kurzformen verzichtet. Werden Personengruppen in der vorliegenden Arbeit genannt, wird stellvertretend die m\u00e4nnliche Form f\u00fcr alle Geschlechter verwendet. Hierdurch werden Frauen, M\u00e4nner und Diverse im Rahmen der Ausarbeitung gleicherma\u00dfen ber\u00fccksichtigt. ## I\n\nZusammenfassung\n\n## Zusammenfassung\n\nDie thermische Belastung in urbanen Gebieten nimmt kontinuierlich zu. Um st\u00e4dtische R\u00e4ume an die prognostizierten klimatischen Ver\u00e4nderungen anzupassen, ist eine Verst\u00e4rkung der gr\u00fcnen Infrastruktur von entscheidender Bedeutung. Bei der Entwicklung und Implementierung von Anpassungsstrategien m\u00fcssen die vielf\u00e4ltigen Wechselwirkungen zwischen den verschiedenen urbanen Komponenten ber\u00fccksichtigt werden, um eine langfristig nachhaltige Stadtentwicklung zu gew\u00e4hrleisten. In dieser Arbeit werden insbesondere die Wechselwirkungen zwischen der Reduktion des motorisierten Individualverkehrs (MIV), der Erweiterung urbaner Gr\u00fcnfl\u00e4chen und dem thermischen Energiebedarf von Geb\u00e4uden untersucht. Diese Interaktionen wurden mittels Fallstudien an zwei Quartieren in S\u00fcddeutschland analysiert. Ein sich ver\u00e4nderndes Mobilit\u00e4tsverhalten f\u00fchrt im Idealfall zu einer Reduktion des MIV, wodurch unterschiedlich gro\u00dfe Fl\u00e4chenpotentiale f\u00fcr neue Pflanzungen freigesetzt werden. Die Ergebnisse der Analysen zeigen, dass ein zunehmender Anteil an Stadtgr\u00fcn Auswirkungen auf den thermischen Geb\u00e4udeenergiebedarf und das urbane Mikroklima hat. Die Simulationen des ver\u00e4nderten thermischen Geb\u00e4udeenergiebedarfs und die Auswirkungen auf die Evapotranspiration wurden mit dem Softwaretool SimStadt durchgef\u00fchrt. Bei einer Reduktion des MIV-Anteils im Modal Split um 20 % auf einem Gebiet von knapp 40 Hektar wird die Pflanzung von bis zu 500 neuen B\u00e4umen m\u00f6glich. Diese Erh\u00f6hung des Baumbestands um etwa 60 %, im Vergleich zum Status Quo, f\u00fchrt zu einer Reduktion des j\u00e4hrlichen K\u00fchlenergiebedarfs um fast 140 MWh. Dar\u00fcber hinaus tragen die zus\u00e4tzlichen 500 B\u00e4ume zu einer Temperaturabsenkung von bis zu 2,2 Kelvin bei. ## Abstract\n\nThe thermal stress in urban areas is continuously increasing. To adapt urban areas to the predicted climatic changes, it is crucial to strengthen the green infrastructure. When developing and implementing adaptation strategies, the diverse interactions between the various urban components must be considered in order to ensure long-term sustainable urban development. In this thesis, the interactions between the reduction of motorized individual transport (MIT), the expansion of urban green spaces and the thermal energy demand of buildings are examined. These interactions were analysed using two case study areas in Southern Germany. Ideally, changing mobility behaviour will lead to a reduction in motorized traffic, freeing up different amounts of space for new plantings. The results of the analyses show that increasing urban greenery has an impact on the thermal energy demand of buildings and the urban microclimate. The simulations of the changed thermal building energy demand and the effects on evapotranspiration were carried out using the SimStadt software tool.", + "embedding": [ + 0.018279215320944786, + -0.005690054502338171, + 0.009276223368942738, + -0.02166729047894478, + -0.002713534515351057, + 0.014249044470489025, + -0.037268832325935364, + -0.012589160352945328, + -0.007404584903270006, + -0.044345539063215256, + -0.007930556312203407, + -0.0025308106560260057, + 0.0018101613968610764, + 0.014904800802469254, + 0.011414263397455215, + -0.01509606372565031, + 0.0422416552901268, + 0.0004615057841874659, + 0.009474316611886024, + 0.004870358854532242, + -0.015355633571743965, + 0.03125772997736931, + 0.004525403492152691, + -0.0033385525457561016, + -0.005290452856570482, + 0.005877901799976826, + 0.017104318365454674, + -0.03560211881995201, + -0.02036944031715393, + -0.006782982498407364, + 0.01202903501689434, + -0.03000086359679699, + -0.03319767862558365, + -0.01315611694008112, + -0.012561837211251259, + -0.016298284754157066, + 0.005792516749352217, + 0.0009947349317371845, + 0.026858696714043617, + 0.0055261156521737576, + 0.012862392701208591, + -0.007814432494342327, + 0.010840476490557194, + -0.014877477660775185, + -0.010813153348863125, + 0.01289654616266489, + 0.0013132209423929453, + -0.003545184154063463, + -0.013825534842908382, + 0.03177687153220177, + 0.019986914470791817, + 0.03021945059299469, + -0.00559442350640893, + 0.003996016923338175, + -0.02482311986386776, + 0.01573815755546093, + -0.01426270604133606, + 0.029536370187997818, + -0.017978660762310028, + -0.009160100482404232, + -0.01894863322377205, + -0.004200940951704979, + -0.03289712220430374, + 0.010396474041044712, + -0.025642815977334976, + -0.005543192382901907, + -0.014549599960446358, + 0.0041053094901144505, + 0.001184289576485753, + -0.007015229668468237, + 0.029399754479527473, + 0.02653081901371479, + 0.015656188130378723, + -0.0034341837745159864, + 0.029891571030020714, + -0.002747688442468643, + 0.0025700877886265516, + -0.00657805847004056, + -0.0037091232370585203, + 0.007834925316274166, + 0.009303546510636806, + -0.024508902803063393, + -0.016339268535375595, + 0.02486410364508629, + -0.0003238225181121379, + 0.011243493296205997, + -0.005184575449675322, + 0.012555006891489029, + -0.0013815289130434394, + -0.011462079361081123, + -0.011475740931928158, + 0.024645518511533737, + 0.008880036883056164, + 0.02136673592031002, + -0.014891139231622219, + -0.013449841178953648, + -0.015533234924077988, + 0.0030789822340011597, + 0.015546896494925022, + -0.013320055790245533, + -0.004679096397012472, + -0.0061647952534258366, + -0.00558417709544301, + -0.006226272322237492, + -0.05552072450518608, + -0.009016653522849083, + -0.006936675403267145, + 0.0038559853564947844, + 0.013354210183024406, + -0.029126523062586784, + -0.02135307341814041, + 0.04210503771901131, + -0.037487417459487915, + -0.014672554098069668, + 0.0037262002006173134, + -0.02382582239806652, + 0.04229630157351494, + -0.004539065062999725, + -0.01894863322377205, + -0.013545472174882889, + 0.013388363644480705, + -0.0015557141741737723, + 0.0016547607956454158, + -0.01575182005763054, + 0.03128505498170853, + 0.01597040519118309, + -0.007343107834458351, + 0.002112424233928323, + -0.027596423402428627, + -0.028907936066389084, + -0.02803359553217888, + -0.011953896842896938, + 0.00874342117458582, + 0.020506056025624275, + -0.010615060105919838, + 0.0055261156521737576, + -0.0088595449924469, + -0.015847451984882355, + -0.05016538128256798, + -0.061531826853752136, + -0.011728480458259583, + 0.013627441599965096, + -0.037733327597379684, + -0.021325750276446342, + -0.0062535954639315605, + 0.021776583045721054, + 0.006697597447782755, + 0.015178033150732517, + 0.007438738830387592, + -0.014030459336936474, + -0.021298427134752274, + -0.03317035362124443, + 0.008422373794019222, + -0.0029423662927001715, + -0.004433187656104565, + 0.004672265611588955, + -0.00934453122317791, + -2.5228591766790487e-05, + -0.02847076579928398, + 0.005976948421448469, + 0.013299563899636269, + -0.02237769402563572, + 0.012206636369228363, + -0.006181871984153986, + 0.01796499826014042, + 0.0015061909798532724, + -0.009303546510636806, + 0.01599772833287716, + 0.01915355771780014, + -0.019112572073936462, + 0.0008811729494482279, + 0.03147631511092186, + -0.03150364011526108, + 0.01672179251909256, + -0.0019980084616690874, + 0.01715896464884281, + -0.007220153231173754, + 0.017978660762310028, + -0.009781702421605587, + -0.026653774082660675, + -0.006902521476149559, + 0.007288461551070213, + 0.02262360230088234, + 0.03707757219672203, + -0.028388796374201775, + 0.02286951057612896, + 0.026353217661380768, + 0.01668080873787403, + 0.0010749967768788338, + 0.010048103518784046, + 0.019713683053851128, + 0.004098478704690933, + 0.009884164668619633, + 0.01913989521563053, + -0.623405933380127, + 0.007773448247462511, + 0.006967413704842329, + -0.0031797364354133606, + -0.0038798933383077383, + 0.01316294725984335, + 0.03956397995352745, + 0.015369295142591, + 0.006899105850607157, + 0.036695048213005066, + -0.006287749391049147, + 0.013101470656692982, + -0.008893698453903198, + -0.014672554098069668, + 7.812725380063057e-05, + -0.015068740583956242, + -0.0013260286068543792, + -0.02920849248766899, + 0.03434525057673454, + 0.008675113320350647, + -0.025137336924672127, + 0.01748684234917164, + -0.007527539506554604, + 0.009050806984305382, + 0.026230264455080032, + 0.025191983208060265, + 0.011714818887412548, + -0.027965286746621132, + 0.019563404843211174, + 0.00933770090341568, + -0.013074147514998913, + 0.02601167932152748, + 0.0017469765152782202, + 0.005068452097475529, + 0.047323767095804214, + 0.03363484889268875, + -0.025369582697749138, + 0.023238373920321465, + 0.028580058366060257, + -0.0009238654165528715, + -0.01413975190371275, + -0.01618899032473564, + 0.009433331899344921, + 0.01104540005326271, + 0.0034410145599395037, + 0.03172222524881363, + 0.03784262016415596, + -0.01083364523947239, + -0.0018870079657062888, + -0.010895122773945332, + 0.0020150854252278805, + -0.003927708603441715, + 0.0036476461682468653, + 0.002547887619584799, + 0.02920849248766899, + -0.008702436462044716, + 0.027896977961063385, + -0.0013584749540314078, + -0.0029184583108872175, + 0.019522421061992645, + -0.007411415688693523, + 0.012951192446053028, + -0.009672409854829311, + -0.015396618284285069, + -0.006475596223026514, + 0.019604390487074852, + -0.016598839312791824, + -0.008586312644183636, + -0.004819127731025219, + -0.017555151134729385, + -0.004948913119733334, + 0.018101613968610764, + -0.0022405018098652363, + 0.005894978530704975, + 0.03592999652028084, + 0.011947065591812134, + 0.02307443507015705, + 0.005071867257356644, + -0.0022729479242116213, + 0.023730192333459854, + -0.0006113564013503492, + -0.000713391462340951, + -0.0022405018098652363, + -0.010287181474268436, + 0.021762922406196594, + -0.04970088601112366, + -0.04229630157351494, + -0.002588872332125902, + -0.016052374616265297, + 0.005631993059068918, + 0.030793236568570137, + -0.0011100046103820205, + -0.02209080010652542, + -0.028088241815567017, + 0.012322759255766869, + 0.03489171713590622, + -0.0057856859639286995, + 0.029672985896468163, + 0.012555006891489029, + -0.034782424569129944, + -0.00836089625954628, + 0.004764481447637081, + 0.015000431798398495, + 0.0034973686560988426, + 0.019303834065794945, + -0.003630569204688072, + -0.011332293972373009, + 0.014877477660775185, + 0.041695188730955124, + -0.011202508583664894, + 0.007425077259540558, + 0.014535938389599323, + -0.0015557141741737723, + 0.002322471234947443, + 0.003910631872713566, + -0.02898990735411644, + 0.03270586207509041, + -0.023511607199907303, + 0.014973108656704426, + -0.0019860544707626104, + 0.01313562411814928, + 0.007240645587444305, + 0.0039926012977957726, + -0.01118884701281786, + -0.00027451268397271633, + 0.03680434077978134, + 0.009262561798095703, + -0.004894266836345196, + -0.01842949353158474, + 0.007520708721131086, + 0.01818358339369297, + 0.013688919134438038, + 0.0467226579785347, + -0.012971685267984867, + 0.038662318140268326, + 0.01217931229621172, + 0.02676306664943695, + 0.0024454256054013968, + -0.0026588879991322756, + -0.018251892179250717, + -0.024235671386122704, + -0.018033307045698166, + 0.018634416162967682, + -0.027405161410570145, + -0.02159898355603218, + -0.035219594836235046, + -0.027145590633153915, + 0.023484284058213234, + 0.016270959749817848, + 0.007110860664397478, + -0.022022493183612823, + 0.003678384702652693, + -0.007828094065189362, + -0.00251544127240777, + 0.016790101304650307, + -0.0028467350639402866, + -0.007821263745427132, + -0.021435044705867767, + -0.006161379627883434, + -0.022937819361686707, + 0.0029526124708354473, + 0.022268401458859444, + -0.044618770480155945, + 0.013026331551373005, + -0.02210446260869503, + -0.00713135302066803, + -0.0008115841774269938, + 0.012227128259837627, + -0.022664587944746017, + -0.03560211881995201, + -0.007657324429601431, + -0.024631857872009277, + 0.002906504552811384, + 0.004822543356567621, + -0.023648222908377647, + -0.02679038979113102, + -0.010034441947937012, + -0.005686639342457056, + -0.018320200964808464, + -0.0005319484043866396, + 0.008408712223172188, + 0.006116979755461216, + -0.013818704523146152, + -0.013115132227540016, + 0.0193858053535223, + 0.029864247888326645, + 0.015574219636619091, + -0.002040700986981392, + -0.003210474969819188, + 0.009747548960149288, + 0.0034034450072795153, + 0.02849808894097805, + -0.009371854364871979, + 0.02456354908645153, + -0.013169778510928154, + 0.007978372275829315, + -6.681374361505732e-05, + 0.025137336924672127, + -0.017773736268281937, + 0.0071245222352445126, + 0.03390808030962944, + -0.005328022409230471, + 0.02065633237361908, + -0.0008436035714112222, + 0.012930700555443764, + -0.02411271631717682, + -0.003437599167227745, + 0.005010390188544989, + 0.05847163125872612, + -3.618188202381134e-05, + 0.018525123596191406, + -0.0072952923364937305, + -0.04098478704690933, + -0.021790245547890663, + -0.01337470207363367, + 0.02312908135354519, + -0.022500649094581604, + 0.009870503097772598, + -0.019208204001188278, + -0.012582330033183098, + 0.020724641159176826, + -0.004470757208764553, + 0.035219594836235046, + -0.010539921000599861, + -0.005457807332277298, + 0.020342117175459862, + -0.010369150899350643, + 0.02627124823629856, + 0.005010390188544989, + -0.005263129714876413, + -0.0047405739314854145, + 0.011325462721288204, + 0.015765482559800148, + -0.012800915166735649, + 0.01083364523947239, + 0.02877132035791874, + 0.006991321686655283, + -0.022965142503380775, + 0.05166815593838692, + 0.0019860544707626104, + 0.019522421061992645, + 0.03532888740301132, + -0.0027818423695862293, + -0.016339268535375595, + 0.04327993467450142, + -0.014645230956375599, + 0.005485130939632654, + 0.01575182005763054, + 0.02382582239806652, + 0.028115564957261086, + -0.01741853542625904, + 0.012459375895559788, + 0.004638111684471369, + -0.013559133745729923, + 0.031066469848155975, + -0.021571660414338112, + 0.01766444370150566, + -0.014713538810610771, + 0.04098478704690933, + 0.007281630765646696, + -0.0049762362614274025, + 0.022814864292740822, + 0.01534197200089693, + 0.0006258718785829842, + 0.0014378830092027783, + 0.00249153352342546, + -0.0034905376378446817, + -0.011578202247619629, + -0.010881461203098297, + -0.012397898361086845, + 0.012698452919721603, + -0.006837628781795502, + -0.020342117175459862, + -0.008695606142282486, + 0.014508615247905254, + -0.0036203227937221527, + 0.02825218066573143, + 0.006175041198730469, + 0.0044263568706810474, + 0.023388652130961418, + 0.001218443620018661, + -0.01821090653538704, + -0.011339124292135239, + 0.007937387563288212, + -0.006352642085403204, + -0.019071588292717934, + -0.0009827810572460294, + 0.0030550744850188494, + -0.02211812324821949, + -0.02556084655225277, + 0.002361748367547989, + -0.008401881903409958, + -0.014003136195242405, + -0.0010860968613997102, + -0.01056724414229393, + -0.019235527142882347, + 0.021079842001199722, + -0.02161264419555664, + 0.0009503347682766616, + 0.006670274306088686, + 0.013176608830690384, + -0.011386940255761147, + -0.01674911566078663, + -0.00559442350640893, + 0.018279215320944786, + 0.01621631346642971, + -0.0037842621095478535, + -0.0034119836054742336, + -0.004566388204693794, + -0.006752243731170893, + 0.005287037696689367, + -0.004139463417232037, + -0.004501495976001024, + 0.00823794212192297, + -0.011236662976443768, + 0.007138183806091547, + 0.011769465170800686, + -0.016298284754157066, + 0.057597286999225616, + -0.005102606024593115, + 0.003797923680394888, + -0.02948172390460968, + -0.018320200964808464, + 0.004197525326162577, + 0.04590296372771263, + 0.02036944031715393, + -0.0024044408928602934, + -0.0015949913067743182, + 0.009829518385231495, + -0.018265552818775177, + -0.0043614646419882774, + -0.0491817444562912, + -0.012732607312500477, + -0.017623458057641983, + 0.015806466341018677, + 0.0018289461731910706, + 0.01669446937739849, + -0.005307530052959919, + 0.007507047150284052, + 0.0020031314343214035, + 0.011557710357010365, + -0.025369582697749138, + 0.006581473629921675, + -0.005580761935561895, + -0.0005575639079324901, + -0.015915758907794952, + -0.008080833591520786, + 0.03511030226945877, + 0.03560211881995201, + 0.007315784692764282, + 0.02383948490023613, + 0.027364175766706467, + 0.0008056072401814163, + -0.025383245199918747, + 0.011106877587735653, + 0.013115132227540016, + 0.017377549782395363, + 0.02138039842247963, + -0.02582041546702385, + 0.008463358506560326, + 0.0030960591975599527, + -0.013490825891494751, + 0.022008830681443214, + -0.008401881903409958, + 0.015328310430049896, + 0.01993226818740368, + 0.014098767191171646, + -0.012124666012823582, + 0.015287325717508793, + -0.025150997564196587, + -0.0050001442432403564, + 0.018265552818775177, + -0.0016948917182162404, + -0.005546608008444309, + 0.01669446937739849, + -0.00193311576731503, + -0.03071126714348793, + -0.020478732883930206, + 0.01426270604133606, + -0.01546492613852024, + 0.013661595992743969, + -0.020601686090230942, + 0.002307102084159851, + -0.010136904194951057, + -0.018279215320944786, + -0.03959130495786667, + 0.018251892179250717, + -0.02970030903816223, + -0.010348659008741379, + -7.564574843854643e-06, + -0.023238373920321465, + -0.0126574682071805, + -0.02236403152346611, + 0.012882884591817856, + 0.004877189639955759, + -0.03347091004252434, + -0.036995600908994675, + 0.014098767191171646, + 0.0035246917977929115, + -0.012855561450123787, + 0.008142311125993729, + -0.007896402850747108, + -0.008183295838534832, + 0.0004717519914265722, + -0.011687494814395905, + -0.013231256045401096, + 0.01276676170527935, + -0.029126523062586784, + -0.01423538289964199, + 0.004224848467856646, + -0.02288317307829857, + -0.022814864292740822, + -0.0009972965344786644, + 0.027336852625012398, + -0.004026755224913359, + -0.003251459915190935, + 0.012821407988667488, + 0.0013328593922778964, + -0.0009887580526992679, + 0.005184575449675322, + 0.012274944223463535, + 0.010977092199027538, + 0.022159108892083168, + -0.025861401110887527, + 0.012445713393390179, + -0.004139463417232037, + 0.004392202943563461, + -0.015915758907794952, + 0.0263258945196867, + 0.01847047731280327, + -0.011120539158582687, + 0.010765337385237217, + -0.015615204349160194, + -0.0024044408928602934, + 0.019618051126599312, + -0.011598695069551468, + 0.010778998956084251, + 0.0007710263016633689, + 0.0017111148918047547, + 0.02016451582312584, + 0.001509606372565031, + 0.01079949177801609, + 0.03021945059299469, + -0.0034495529253035784, + -0.003985770512372255, + -0.03169490396976471, + 0.0412306971848011, + 0.01351131871342659, + 0.0015249756397679448, + 0.004272663965821266, + -0.009508471004664898, + 0.03120308555662632, + -0.03658575192093849, + -0.003787677502259612, + -0.0037364463787525892, + 0.0074728927575051785, + 0.014126090332865715, + -0.02901723049581051, + -0.03273318335413933, + -0.03024677373468876, + -0.021954184398055077, + -0.0036271538119763136, + -0.010212043300271034, + -0.00883905217051506, + -0.025957033038139343, + 0.003770600538700819, + -0.004815712571144104, + 0.016025051474571228, + 0.018320200964808464, + -0.03021945059299469, + -0.008108156733214855, + 0.009351362474262714, + -0.00019916045130230486, + 0.031312376260757446, + -0.01919454149901867, + -0.0007654763176105917, + -0.015874775126576424, + 0.012158820405602455, + -0.022514309734106064, + -0.049755532294511795, + -0.018730048090219498, + -0.01696770265698433, + 0.017869368195533752, + 0.013408856466412544, + 0.03705024719238281, + 0.011571371927857399, + 0.036749694496393204, + 0.021776583045721054, + -0.013538641855120659, + 0.0018221153877675533, + 0.00038786124787293375, + 0.010724352672696114, + -0.02457721158862114, + 0.031066469848155975, + 0.033279646188020706, + 0.020342117175459862, + 0.02012353017926216, + 0.006605381611734629, + -0.019221864640712738, + 0.04450947791337967, + -0.025656476616859436, + -0.015082402154803276, + -0.001497652498073876, + -0.015260002575814724, + -0.016393914818763733, + 0.006499504204839468, + -0.009918319061398506, + -0.006987906061112881, + -0.0393453948199749, + 0.00490792840719223, + 0.0048908512108027935, + -0.00015817566600162536, + 0.0008700728649273515, + -0.0018613924039527774, + -0.0017708843806758523, + -0.04024706035852432, + 0.0228558499366045, + 0.005495376884937286, + 0.0018186999950557947, + 0.011858264915645123, + -0.005666146986186504, + -0.02284218743443489, + -0.029645662754774094, + 0.026694757863879204, + -0.014877477660775185, + -0.004108725115656853, + 0.00897566881030798, + -0.00836089625954628, + 0.007623170502483845, + -0.008258434943854809, + 0.007397754117846489, + -0.018347524106502533, + 0.020724641159176826, + -0.0004465634119696915, + -0.0020987626630812883, + 0.0015941375168040395, + 0.006134056486189365, + -0.02116181142628193, + 0.019030602648854256, + -0.0012858976842835546, + -0.0005656754365190864, + 0.028060918673872948, + -0.009706564247608185, + 0.024631857872009277, + 0.012964854016900063, + 0.007240645587444305, + 0.021011535078287125, + 0.011578202247619629, + 0.046831950545310974, + 0.013716242276132107, + -0.014918462373316288, + -0.00985001027584076, + -0.02676306664943695, + 0.003545184154063463, + -0.02114815078675747, + 0.026913342997431755, + 0.00037868236540816724, + -0.001989469863474369, + -0.040383677929639816, + 0.005140175577253103, + 0.013975812122225761, + -0.006058917846530676, + -0.002694749739021063, + 0.04797952622175217, + 0.02877132035791874, + -0.006116979755461216, + -0.023484284058213234, + 0.008265265263617039, + -0.026148295029997826, + 0.0034205219708383083, + -0.017350226640701294, + 0.0026776727754622698, + -0.003985770512372255, + 0.0021175474394112825, + 0.011578202247619629, + 0.05183209478855133, + 0.010307674296200275, + 0.013470333069562912, + -0.0014899678062647581, + -0.020997872576117516, + 0.006028179079294205, + -0.01204952783882618, + 0.0007650493644177914, + 0.024631857872009277, + 0.00749338511377573, + 0.033525556325912476, + 0.0003692900063470006, + -0.01668080873787403, + 0.009487978182733059, + -0.012732607312500477, + -0.009091791696846485, + 0.006489258259534836, + 0.010471613146364689, + 0.023170066997408867, + 0.002582041546702385, + -0.006974244490265846, + -0.012780423276126385, + 0.0010656045051291585, + 0.031066469848155975, + -0.001774299773387611, + 0.008634128607809544, + -0.01312879379838705, + -0.02239135652780533, + -0.01594308204948902, + -0.0026059492956846952, + 0.003148997901007533, + -0.006492673419415951, + -0.009132776409387589, + -0.018087953329086304, + -0.007957879453897476, + -0.00246250256896019, + -0.006550735328346491, + -0.000730468425899744, + -0.04710518196225166, + -0.01106589287519455, + 0.0015642527723684907, + -0.010048103518784046, + 0.011591863818466663, + -0.009781702421605587, + -0.010526259429752827, + -0.01789669133722782, + 0.030656620860099792, + -0.025998016819357872, + 0.01993226818740368, + 0.025861401110887527, + 0.004634696524590254, + 0.006642951164394617, + 0.012315928936004639, + -0.009180592373013496, + -0.01767810434103012, + 0.018511462956666946, + -0.005126514006406069, + -0.010232535190880299, + 0.0031455825082957745, + -0.002011670032516122, + -0.0071245222352445126, + -0.018962295725941658, + -0.01741853542625904, + 0.024467919021844864, + 6.227766425581649e-05, + 0.0021995168644934893, + -0.008039848878979683, + -0.00113818165846169, + 0.022773880511522293, + 0.008436035364866257, + -0.005696885287761688, + 0.034044697880744934, + -0.02311542071402073, + 0.012370575219392776, + -0.005423653405159712, + 0.003630569204688072, + -0.015915758907794952, + -0.016790101304650307, + -0.008996160700917244, + -0.006540488917380571, + 0.012090512551367283, + -0.015833789482712746, + -0.002447133418172598, + -0.0065097506158053875, + -0.01572449691593647, + -0.01178995706140995, + 0.0037774313241243362, + 0.003948201425373554, + -0.006841043941676617, + 0.01008908823132515, + -0.0015471756923943758, + -0.01486381608992815, + 0.03390808030962944, + -0.015628864988684654, + -0.006584889255464077, + -0.00015230545250233263, + -0.004979651886969805, + -0.049263715744018555, + -0.011755803599953651, + -0.0006928990478627384, + 0.0397825688123703, + 0.007015229668468237, + -0.013818704523146152, + -0.00022797788551542908, + 0.008688774891197681, + -0.05229659005999565, + -0.031121116131544113, + 0.0039926012977957726, + -0.006458519492298365, + 0.006581473629921675, + 0.014945785515010357, + -0.024235671386122704, + 0.014932123944163322, + -0.00796471070498228, + 0.011236662976443768, + -0.008080833591520786, + 0.0013345670886337757, + 0.0005827524582855403, + -0.004856697283685207, + 0.03950933367013931, + 0.003379537258297205, + -0.036531105637550354, + -0.02483678050339222, + 0.03245995193719864, + -0.0005170060321688652, + -0.004470757208764553, + 0.02920849248766899, + -0.0034171065781265497, + 0.002785257762297988, + 0.017363889142870903, + 0.006591720040887594, + -0.0027955039404332638, + 0.015041417442262173, + 0.04196842387318611, + -0.035957321524620056, + -0.0003976805310230702, + 0.031039146706461906, + 0.009665579535067081, + -0.009597270749509335, + -0.008244773373007774, + -0.0036886308807879686, + -0.005338268354535103, + 0.0015446142060682178, + 0.0035588457249104977, + -0.01191291119903326, + 9.178884647553787e-05, + -0.004634696524590254, + 0.0338534340262413, + 0.009030315093696117, + -0.0009657040354795754, + -0.001375551917590201, + 0.01377771981060505, + 0.004026755224913359, + -0.010136904194951057, + 0.0015582757769152522, + -0.026435187086462975, + -0.004149709828197956, + 0.020096207037568092, + -0.01964537426829338, + 0.022787541151046753, + -0.020082546398043633, + 0.02088858000934124, + -0.0025513030122965574, + 0.016107020899653435, + -0.011947065591812134, + -0.017404872924089432, + -0.006229687947779894, + 0.008080833591520786, + 0.01178995706140995, + -0.015669850632548332, + -0.015615204349160194, + -0.011277647688984871, + -0.017582474276423454, + -0.0034444299526512623, + -0.022814864292740822, + 0.0012611360289156437, + -0.02165362983942032, + -0.007752955425530672, + 0.016639823094010353, + -0.012841899879276752, + 0.0024607949890196323, + -0.006642951164394617, + 0.008695606142282486, + -0.022022493183612823, + 0.024959735572338104, + 0.19563405215740204, + 0.003832077607512474, + 0.016544193029403687, + 0.0167081318795681, + -0.0046551888808608055, + -0.01413975190371275, + 0.016844747588038445, + -0.010232535190880299, + -0.021243780851364136, + 0.033279646188020706, + -0.014126090332865715, + 0.01944045163691044, + -0.004525403492152691, + -0.0014865524135529995, + 0.018074290826916695, + 0.0009366731392219663, + -0.04278811812400818, + -0.016639823094010353, + -0.0025854569394141436, + 0.02356625348329544, + 0.020533379167318344, + -0.028935259208083153, + -0.007752955425530672, + -0.013572795316576958, + 0.01773275062441826, + 0.0007979226065799594, + -0.004730327520519495, + 0.0030089665669947863, + 0.04811614006757736, + -0.007452400401234627, + -0.016120683401823044, + 0.011120539158582687, + 0.015082402154803276, + -0.00713135302066803, + 0.001519852550700307, + -0.0018904233584180474, + 0.00644485792145133, + -0.0228558499366045, + 0.019317496567964554, + 0.016339268535375595, + -0.004641527310013771, + -0.018566109240055084, + -0.0006544758216477931, + -0.01624363660812378, + -0.007752955425530672, + 0.02803359553217888, + -0.024003423750400543, + -0.0009887580526992679, + -0.0025291028432548046, + -0.005246052984148264, + -0.031367022544145584, + -0.006349226459860802, + 0.03390808030962944, + 0.04808881878852844, + 0.016311945393681526, + 0.008313081227242947, + 0.01474086195230484, + -0.00737043097615242, + 0.027159253135323524, + -0.004142879042774439, + -0.03046535886824131, + 0.018825680017471313, + -0.0275554396212101, + 0.02680405043065548, + -0.0022746557369828224, + 0.006851290352642536, + -0.0201098695397377, + 0.011796788312494755, + -0.005546608008444309, + -0.005809593480080366, + -0.023293020203709602, + -0.042159684002399445, + -0.017049672082066536, + 0.015888435766100883, + -0.032050102949142456, + -0.011714818887412548, + 0.01847047731280327, + 9.265603694075253e-06, + 0.0030960591975599527, + 0.019577067345380783, + -0.021066181361675262, + 0.0011911203619092703, + 0.00681713642552495, + -0.028580058366060257, + -0.007015229668468237, + -0.02509635128080845, + 0.017404872924089432, + 0.0034615069162100554, + 0.0014464214909821749, + -0.026366880163550377, + -0.012274944223463535, + 0.005187991075217724, + 0.005679808557033539, + -0.008039848878979683, + 0.017404872924089432, + 0.007985202595591545, + 0.010300843045115471, + 0.0003938381851185113, + -0.01724093407392502, + 0.03243262693285942, + -0.03308838605880737, + 0.05606719106435776, + 0.029536370187997818, + -0.0088595449924469, + -0.0181562602519989, + 0.003398322034627199, + -0.004395618569105864, + 0.022254738956689835, + 0.010410135611891747, + -0.022213755175471306, + -0.012452544644474983, + -0.028607381507754326, + 3.823645965894684e-05, + -0.005963286384940147, + -0.012281774543225765, + 0.01008225791156292, + -0.007677816785871983, + -0.009651917032897472, + 0.014535938389599323, + -0.014631569385528564, + -0.017978660762310028, + -0.005857409443706274, + 0.011257154867053032, + -0.015410279855132103, + 0.011598695069551468, + -0.017773736268281937, + -0.04147660359740257, + 0.01241155993193388, + -0.013559133745729923, + 0.0028740582056343555, + 0.024973398074507713, + -0.02607998624444008, + 0.010601398535072803, + 0.0007940802606754005, + -0.0022541633807122707, + 0.0032121827825903893, + 0.010307674296200275, + -0.034044697880744934, + -0.0008679382735863328, + 0.03929074853658676, + 0.0054612229578197, + -0.030383389443159103, + 0.00675907451659441, + -0.0013516441686078906, + 0.010013950057327747, + -0.01888032630085945, + 0.0033265985548496246, + -0.0009264269610866904, + -0.03177687153220177, + -0.03177687153220177, + 0.012705284170806408, + -0.022746557369828224, + 0.01364110317081213, + -0.031530965119600296, + 0.031066469848155975, + 0.004132632631808519, + -0.010300843045115471, + -0.04049297049641609, + 0.006274087820202112, + 0.012397898361086845, + -0.013347378931939602, + 0.011332293972373009, + 0.007267969194799662, + -0.013613780029118061, + -0.018784694373607635, + 0.009658748283982277, + -0.17464983463287354, + 0.027623746544122696, + 0.02159898355603218, + -0.030574651435017586, + 0.01894863322377205, + 0.001390067394822836, + -0.015820128843188286, + -0.009829518385231495, + -0.018128937110304832, + -0.006772736087441444, + 0.024508902803063393, + -0.00895517598837614, + -0.027336852625012398, + -0.014085105620324612, + 0.0016547607956454158, + 0.01937214285135269, + -0.010341827757656574, + 0.005905224941670895, + 0.01534197200089693, + 0.011393770575523376, + 9.531097748549655e-05, + -0.028170211240649223, + 0.005843747407197952, + -0.0020082546398043633, + 0.0038559853564947844, + -0.002091931877657771, + -0.02165362983942032, + 0.020260145887732506, + -0.000712110660970211, + -0.005587592720985413, + -0.009774872101843357, + -0.004750819876790047, + 0.030902529135346413, + 0.0056388238444924355, + 0.004310233518481255, + 0.004235094878822565, + 0.008224280551075935, + -0.02042408660054207, + -0.013661595992743969, + 0.038471054285764694, + 0.039946507662534714, + -0.0018972541438415647, + -0.01181728020310402, + -0.005840332247316837, + -0.046831950545310974, + 0.005249468144029379, + 0.021257443353533745, + 0.004327310714870691, + 0.009795363992452621, + -0.0027613500133156776, + 0.012999008409678936, + -0.005970117170363665, + -0.015041417442262173, + 0.015068740583956242, + 0.017855705693364143, + 0.027664732187986374, + 0.001013519591651857, + 0.01694037951529026, + 0.0017982075223699212, + 0.009713394567370415, + -0.0037091232370585203, + 0.008456528186798096, + 0.03571141138672829, + 0.013415686786174774, + -0.009084961377084255, + -0.02265092544257641, + 0.011564540676772594, + 0.006837628781795502, + -0.006957167759537697, + 0.014727200381457806, + -0.028088241815567017, + -0.021995170041918755, + 0.006810305640101433, + 0.0005379253416322172, + -0.002453964203596115, + 0.004651773255318403, + -0.008695606142282486, + 0.009508471004664898, + -0.0029116275254637003, + -0.0034034450072795153, + -0.01840217038989067, + 0.04317064210772514, + -0.01741853542625904, + -0.022555295377969742, + -0.005587592720985413, + -0.008101326413452625, + 0.003674969309940934, + -0.000674114387948066, + 0.025957033038139343, + 0.009986626915633678, + 0.014563261531293392, + -0.04232362285256386, + -0.028361473232507706, + -0.028689350932836533, + 0.001676107058301568, + -0.0030209203250706196, + 0.012438883073627949, + 0.0022968559060245752, + -0.012240789830684662, + -0.01647588424384594, + 0.021817568689584732, + -0.02528761327266693, + -0.03262389078736305, + -0.010013950057327747, + 0.022036153823137283, + 0.020342117175459862, + -0.01509606372565031, + 0.008429205045104027, + 0.034809745848178864, + -0.0015864528249949217, + -0.0011783126974478364, + -0.012691622599959373, + 0.025123674422502518, + 0.022446002811193466, + -0.0009213038720190525, + -0.0037262002006173134, + 0.018989618867635727, + -0.01769176684319973, + 0.005047959741204977, + -0.0122954361140728, + 0.03423595800995827, + 0.0201098695397377, + -0.016148006543517113, + 0.021011535078287125, + 0.007500215899199247, + -0.017377549782395363, + -0.0922977402806282, + -0.005372422747313976, + 0.005707131698727608, + 0.017008686438202858, + 0.01498677022755146, + -0.003435891354456544, + -0.006560981273651123, + 0.010997585020959377, + 0.0060179331339895725, + 0.023211050778627396, + -0.0452745296061039, + -0.026899682357907295, + -0.01008908823132515, + -0.0077871098183095455, + -0.0018050383077934384, + -0.013067316263914108, + -0.004723496735095978, + -0.0038218314293771982, + -0.012397898361086845, + 0.02482311986386776, + 0.011960727162659168, + -0.015055079013109207, + -0.010546752251684666, + 0.005577346310019493, + -0.011516725644469261, + 0.00472691236063838, + -0.037706006318330765, + 0.010580905713140965, + 0.020820271223783493, + -0.005317775998264551, + 0.018497800454497337, + -0.014713538810610771, + 0.025683799758553505, + -0.031148439273238182, + 0.017090655863285065, + -0.0011996588436886668, + 0.0044263568706810474, + -0.029372431337833405, + 0.016626162454485893, + -0.020547039806842804, + 0.004002847708761692, + 0.000841895816847682, + 0.039919182658195496, + -0.026872359216213226, + -0.0024573795963078737, + -0.0054441457614302635, + -0.030902529135346413, + -0.009043976664543152, + -0.0061033181846141815, + -0.04297938197851181, + -0.01964537426829338, + -0.014891139231622219, + 0.007602678146213293, + 0.004084817133843899, + 0.028060918673872948, + -0.002103885868564248, + 0.007889571599662304, + -0.0031916904263198376, + -0.009569947607815266, + 0.010273519903421402, + 0.01390750426799059, + 0.011687494814395905, + -0.0054407306015491486, + 0.020465070381760597, + 0.013798211701214314, + -0.009679241105914116, + -0.03756938874721527, + -0.015382956713438034, + 0.012138327583670616, + -0.024973398074507713, + -0.011441586539149284, + 0.0029013813473284245, + -0.015779143199324608, + -0.007677816785871983, + -0.03628519922494888, + -0.0009375269873999059, + -0.029836924746632576, + -0.007226984016597271, + -0.0074455696158111095, + -0.014822831377387047, + -0.02703629806637764, + -0.026886019855737686, + 0.02629857137799263, + -0.003548599546775222, + 0.016134344041347504, + 0.023033451288938522, + -0.007404584903270006, + -0.00799886416643858, + 0.0037432771641761065, + -0.008217450231313705, + 0.01915355771780014, + 0.007240645587444305, + 0.02747347019612789, + -0.018730048090219498, + -0.009972965344786644, + -0.0025051950942724943, + -0.003753523575142026, + 0.005881316959857941, + 0.00797154102474451, + 0.003036289708688855, + -0.03169490396976471, + -0.019358482211828232, + -0.0627886950969696, + 0.010580905713140965, + 0.019276510924100876, + -0.014904800802469254, + -0.013285902328789234, + 0.007329446263611317, + 0.021476028487086296, + 0.01964537426829338, + 0.002904796740040183, + 0.004621034953743219, + 0.0012030742364004254, + 0.013859689235687256, + 0.018607093021273613, + -0.010539921000599861, + -0.021749259904026985, + -0.013593288138508797, + 0.003849154571071267, + 0.027159253135323524, + 0.024768473580479622, + -0.0029799356125295162, + -0.021175473928451538, + -0.018607093021273613, + 0.014167075045406818, + 0.015014094300568104, + -0.027869654819369316, + 0.005013805814087391, + -0.017883028835058212, + -0.003058489877730608, + -0.010881461203098297, + -0.018989618867635727, + 0.0026349802501499653, + -0.018825680017471313, + -0.009604102000594139, + 0.015328310430049896, + -0.004665434826165438, + -0.026899682357907295, + 0.024905089288949966, + 0.024700164794921875, + 0.007479723542928696, + 0.049045130610466, + -0.01990494504570961, + -0.034809745848178864, + 0.00602476391941309, + -0.0218448918312788, + 0.006704428233206272, + -0.0021892706863582134, + 0.004286325536668301, + 0.0026486418209969997, + 0.011947065591812134, + -0.00945382472127676, + 0.03164025768637657, + 0.012944362126290798, + -0.010048103518784046, + -0.015082402154803276, + 0.024508902803063393, + -0.014672554098069668, + -0.01364110317081213, + 0.016585176810622215, + -0.00700839888304472, + -0.018251892179250717, + 0.028197534382343292, + 0.0019536081235855818, + 0.004412695299834013, + -0.0011603818275034428, + 0.03363484889268875, + -0.021954184398055077, + -0.025697462260723114, + 0.00384232378564775, + 0.012131497263908386, + -0.025478877127170563, + -0.013094639405608177, + -0.01575182005763054, + 0.010546752251684666, + 0.040438324213027954, + -0.018333861604332924, + -0.00010155475320061669, + 0.02506902813911438, + 0.0076846475712955, + -0.004340972285717726, + 0.03541085496544838, + 0.020710978657007217, + 0.006134056486189365, + -0.021749259904026985, + 0.00496599031612277, + 0.016352931037545204, + 0.004043832421302795, + -0.018962295725941658, + 0.008292588405311108, + 0.008149142377078533, + 0.015847451984882355, + 0.009378685615956783, + 0.009050806984305382, + 0.0010621891124173999, + -0.009037145413458347, + 0.010457951575517654, + -0.005860824603587389, + 0.004959159530699253, + -0.02923581562936306, + 0.01918088085949421, + 0.02752811647951603, + -0.0033300139475613832, + -0.001916038803756237, + 0.015451264567673206, + -0.030410712584853172, + -0.012684791348874569, + 0.0042487564496695995, + -0.010341827757656574, + -0.02975495532155037, + -0.021066181361675262, + 0.013183440081775188, + -0.009651917032897472, + 0.024959735572338104, + -0.0037842621095478535, + -0.0007757224957458675, + -0.03806120529770851, + 0.03836176171898842, + -0.01167383324354887, + -0.01448129117488861, + -0.014877477660775185, + 0.014044120907783508, + 0.013927997089922428, + 0.007882741279900074, + -0.00352810719050467, + 0.01560154277831316, + 0.015205356292426586, + 0.024208348244428635, + 0.007459231186658144, + -0.008053510449826717, + -0.010341827757656574, + -0.01043745968490839, + 0.0027459808625280857, + 0.00907129980623722, + -0.01595674455165863, + -0.018757371231913567, + -0.01993226818740368, + -0.021817568689584732, + -0.0037910928949713707, + 0.013477164320647717, + 0.01767810434103012, + 0.11164256185293198, + 0.02601167932152748, + 0.007431908044964075, + -0.001869930885732174, + -0.010492105968296528, + 0.00352810719050467, + 0.007527539506554604, + 0.021503351628780365, + -0.008613635785877705, + -0.05530213937163353, + -0.0029406584799289703, + -0.010710691101849079, + 0.00418044812977314, + -0.03461848571896553, + -0.017650781199336052, + 0.027186576277017593, + -0.031530965119600296, + 0.012356913648545742, + -7.487194670829922e-05, + 0.0030789822340011597, + 0.006619043182581663, + -0.004614204168319702, + 0.021230120211839676, + 0.03554747253656387, + -0.028580058366060257, + -0.008941514417529106, + 0.02411271631717682, + -0.0013456671731546521, + -0.016325607895851135, + -0.0020663163159042597, + -0.025191983208060265, + -0.011721649207174778, + -0.06513848900794983, + -0.010970261879265308, + 0.03300641477108002, + -0.005392915103584528, + -0.018798355013132095, + -0.011612356640398502, + 0.02557450719177723, + 0.010027611628174782, + 0.010970261879265308, + 0.006653197109699249, + -0.02486410364508629, + -0.03713221848011017, + -0.022500649094581604, + -0.002950904658064246, + -0.020246485248208046, + -0.01411242876201868, + -0.03907216340303421 + ], + "metadata": { + "source": "Kreye_Marieke_BA_241_V2.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 17, + "has_images": true, + "image_count": 98, + "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", + "links": [], + "last_modified": "2025-05-05T23:00:23", + "_known_field_names": "frozenset({'is_continuation', 'sent_to', 'header_footer_type', 'email_message_id', 'filename', 'languages', 'detection_class_prob', 'sent_from', 'link_texts', 'cc_recipient', 'subject', 'image_mime_type', 'image_path', 'filetype', 'page_number', 'last_modified', 'signature', 'detection_origin', 'text_as_html', 'attached_to_filename', 'bcc_recipient', 'data_source', 'link_start_indexes', 'category_depth', 'emphasized_text_tags', 'parent_id', 'orig_elements', 'page_name', 'coordinates', 'url', 'link_urls', 'file_directory', 'links', 'table_as_cells', 'emphasized_text_contents', 'key_value_pairs', 'image_base64'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "Kreye_Marieke_BA_241_V2.pdf", + "detection_class_prob": 0.3422867953777313, + "parent_id": "e02392183bc6851689602ad4b9f6039f", + "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", + "id": "ce00eae5-7e07-454f-9e4f-f79ac36f92f4", + "processing_timestamp": "2025-05-05T23:15:46.977945", + "chunk_number": 0, + "total_chunks": 56, + "chunking_strategy": "hybrid", + "word_count": 497 + } +} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000001.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000001.json new file mode 100644 index 0000000000000000000000000000000000000000..e1de15aca3438e0b7d91dba7086ff625f6af0c14 --- /dev/null +++ b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000001.json @@ -0,0 +1,1570 @@ +{ + "id": "61a115b2-0ff7-441a-f6d9-eb3d00000001", + "content": "The results of the analyses show that increasing urban greenery has an impact on the thermal energy demand of buildings and the urban microclimate. The simulations of the changed thermal building energy demand and the effects on evapotranspiration were carried out using the SimStadt software tool. With a reduction of MIT in the modal split by 20% in an area of approximately 40 hectares, the planting of 500 new trees becomes feasible. This increase in urban greenery by about 60 % compared to the current state leads to a reduction in the annual cooling energy demand by almost 140 MWh. Additionally, the 500 new trees contribute to a temperature decrease of up to 2.2 Kelvin. ## II\n\nInhaltsverzeichnis\n\n## Inhaltsverzeichnis\n\n\n| 2.1 | Nachhaltige | Stadtentwicklung | ......................................................................... | 3 | 2.1.1 | Nachhaltige | Stadtentwicklung | auf | internationaler | und | nationaler | Ebene | .. | 3 | 2.1.2 | Mehrwert | nachhaltiger | Stadtentwicklung | .................................................. | 5 | 2.2 | Das | Stadtklima | ............................................................................................... | 6 | 2.3 | Gr\u00fcne | Infrastruktur | .......................................................................................... | 7 | 2.3.1 | K\u00fchlungseffekt | durch | Stadtb\u00e4ume | ........................................................... | 8 | 2.3.2 | Mehrwert | Stadtgr\u00fcn | ............................................................................... | 10 | 2.3.3 | Herausforderung | gr\u00fcner | Infrastruktur | im | urbanen | Raum | ........................ | 11 | 2.4 | Mobilit\u00e4tsver\u00e4nderung | .................................................................................. | 12 | 2.5 | Aktueller | Stand | der | Forschung...................................................................... | 13 | 3.1 | Methodik | ....................................................................................................... | 15 | 3.2 | Toolvorstellung | ............................................................................................. | 17 | 3.2.1 | Funktionsweise | Python-Skript | ................................................................ | 17 | 3.2.2 | SimStadt | ................................................................................................ | 18 | 4.1 | Quartiersarchetypen | ..................................................................................... | 20 | 4.2 | Mobilit\u00e4tsverhalten | in | den | Quartiersarchetypen | ............................................ | 21 | 4.3 | Szenarien | Mobilit\u00e4tsver\u00e4nderung | .................................................................. | 22 | 5.1 | Datengrundlage | ............................................................................................ | 24 |\n|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|\n\nGender Disclaimer ......................................................................................................... I\nZusammenfassung ....................................................................................................... II\nInhaltsverzeichnis ........................................................................................................ III\nAbk\u00fcrzungsverzeichnis ................................................................................................. V\nAbbildungsverzeichnis ................................................................................................. VI\nTabellenverzeichnis ................................................................................................... VIII\n1 Einleitung ............................................................................................................... 1\n2 Theorieteil .............................................................................................................. 3\n3 Methodik und Toolerl\u00e4uterung ............................................................................. 15\n4 Modellhafte Analyse des Mobilit\u00e4tsverhaltens ...................................................... 20\n5 Fallstudien ........................................................................................................... 24\n5.2\nAnalyse der Quartiere ................................................................................... 25\n5.2.1\nAnalyse Gromb\u00fchl ................................................................................. 25\n5.2.2\nAnalyse Grafenb\u00fchl ............................................................................... 29\n5.3\nAufstellung der Baumpflanzungsszenarien ................................................... 32\n\n## III\n\nInhaltsverzeichnis\n\n| 5.3.1 | 5.3.2 | 6.1 | 6.2 | 6.3 |\n|---|---|---|---|---|\n\nBaumpflanzungsszenarien Gromb\u00fchl .................................................... 33\nBaumpflanzungsszenarien Grafenb\u00fchl .................................................. 35\n6 Ergebnisse ........................................................................................................... 38\nZunahme des Gr\u00fcnanteils ............................................................................. 38\nAuswirkungen auf den thermischen Geb\u00e4udeenergiebedarf ......................... 39\nAuswirkungen auf die Evapotranspiration ..................................................... 43\n7\nInterpretation der Simulationsergebnisse ............................................................. 50\n8 Kritische W\u00fcrdigung ............................................................................................. 52\n9 Fazit ..................................................................................................................... 55\nLiteraturverzeichnis ..................................................................................................... 57\nAnhang ....................................................................................................................... 61\nSelbst\u00e4ndigkeitserkl\u00e4rung ........................................................................................... 85\nKognition: Erkl\u00e4rung zur Nutzung von generativen KI-Tools in Hochschulpr\u00fcfungen .. 86\n\n## IV\n\nAbk\u00fcrzungsverzeichnis\n\n## Abk\u00fcrzungsverzeichnis\n\nALKIS Amtlichen Liegenschaftskatasterinformationssystem\nCGSC Circular Green Sim City CO2 Kohlenstoffdioxid CO2e Kohlenstoffdioxid \u00c4quivalente COP Coefficient of Performance\nDNS Deutsche Nachhaltigkeisstrategie\nDWD Deutscher Wetterdienst\nFLL Forschungsgesellschaft Landschaftsentwicklung Landschaftsbau\nGalk e.V. Deutsche Gartenamtsleiterkonferenz\nHfT Hochschule f\u00fcr Technik\nIPCC Intergovernmental Panel on Climate Change\nLAI Leaf Area Index\nMIT Motorized individual transport\n\n## MIV Motorisierte Individualverkehr\n\n\u00d6PNV \u00d6ffentlicher Personennahverkehr OSM Open Street Map\nPKW Personenkraftwagen\nRASt Richtlinie f\u00fcr die Anordnung von Stadtstra\u00dfen\nRCP Representive Concentration Pathways\nSDG Sustainable Development Goal\nshp Shapefile\nUHI Urban Heat Island UV Strahlung Ultraviolette Strahlung\n\n## V\n\nAbbildungsverzeichnis\n\n## Abbildungsverzeichnis\n\n\n| die | nahe | Zukunft | (2031-2060) | und | f\u00fcr | die | ferne | Zukunft | (2071-2100) | nach | dem | RCP8.5- | Szenario | (vgl. | Deutscher | Wetterdienst) | ......................................................................... | 1 | 2018, | S. | 31) | .................................................................................................................. | 5 | Stadt | (Doblas-Reyes | et | al., | S. | 1463) | ............................................................................. | 8 | Zhang | et | al. | 2020) | ....................................................................................................... | 10 | Berechnung) | ............................................................................................................... | 18 | (Datengrundlage: | CSGC) | ............................................................................................ | 19 | Markt- | und | Sozialforschung | GmbH | 2024) | ................................................................... | 21 | Abbildung | 8: | Lage | des | Fallstudiengebiets | Gromb\u00fchl | (eigene | Darstellung) | .................. | 25 | Abbildung | 9: | Quartiersarchetypen | im | Untersuchungsgebiet | Gromb\u00fchl | Darstellung, | Datengrundlage: | Drees | & | Sommer) | ........................................................ | 26 | 2018, | S. | 1) | .................................................................................................................. | 27 | Grundlage | der | Simulationsergebnisse) | ....................................................................... | 27 | Berechnung | auf | Grundlage | der | Simulationsergebnisse) | ............................................. | 28 | Abbildung | 13: | Lage | des | Fallstudiengebiets | Grafenb\u00fchl | (eigene | Darstellung) | .............. | 29 | Darstellung, | Datengrundlage | Drees | & | Sommer) | ......................................................... | 29 | 2022, | S. | 56) | ................................................................................................................ | 30 | der | Simulationsergebnisse) | ......................................................................................... | 31 | Grundlage | der | Simulationsergebnisse) | ....................................................................... | 31 | Seyfferstra\u00dfe, | Hasenbergstra\u00dfe, | Ludwigstra\u00dfe, | Hasenbergsteige) | (eigene | Fotos) | .... | 33 |\n|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|\n\n\n## Abbildung 1: 30-Jahresmitteltemperatur f\u00fcr den historischen Zeitraum (1970-2000), f\u00fcr\n\n\n## Abbildung 2: Dimensionen urbaner Nachhaltigkeit (eigene Darstellung nach Bott et al. ## Abbildung 3: Auswirkungen ausgew\u00e4hlter urbaner Elemente auf die Temperatur in der\n\n\n## Abbildung 4: Schematische Darstellung Evapotranspiration (eigene Darstellung nach\n\n\n## Abbildung 5: Neupflanzungen im Fallstudiengebiet (Datengrundlage: CGSC und eigene\n\n\n## Abbildung 6: 3D-Geb\u00e4udemodell mit Baumdaten Fallstudiengebiet Gromb\u00fchl\n\nAbbildung 7: Die zehn Sinus Milieus in einer Gesellschaft (eigene Darstellung nach Sinus\n\n## Abbildung 10: \u00dcberhitzungspotentiale in Gromb\u00fchl (Burghardt und Partner Ingenieure\n\n\n## Abbildung 11: Monatlicher Heiz- und K\u00fchlbedarf im Fallstudiengebiet Gromb\u00fchl mit und\n\n\n## ohne des Verschattungseffekts durch B\u00e4ume (eigene Darstellung und Berechnung auf\n\n\n## Abbildung 12: Spezifischer Heiz- und K\u00fchlbedarf im Fallstudiengebiet Gromb\u00fchl mit und\n\nohne Ber\u00fccksichtigung des Verschattungseffekts durch B\u00e4ume (eigene Darstellung und\n\n## Abbildung 14: Quartiersarchetypen im Untersuchungsgebiet Grafenb\u00fchl (eigene\n\n\n## Abbildung 15: Thermische Belastung Grafenb\u00fchl (eigene Darstellung nach Hasel et al. ## Abbildung 16: Monatlicher Heiz- und K\u00fchlbedarf mit und ohne der Verschattungswirkung\n\n\n## von B\u00e4umen Status Quo Grafenb\u00fchl (eigene Darstellung und Berechnung auf Grundlage\n\n\n## Abbildung 17: Spezifischer Heiz- und K\u00fchlbedarf im Fallstudiengebiet Gromb\u00fchl mit und\n\n\n## ohne dem Verschattungseffekt durch B\u00e4ume (eigene Darstellung und Berechnung auf\n\nAbbildung 18: Vergleichsbild Baumbepflanzung im Stra\u00dfenraum (von links nach rechts:\n\n## Abbildung 19: Gebietsausschnitte Gromb\u00fchl f\u00fcr die Baumpflanzungsszenarien (eigene\n\nDarstellung) ................................................................................................................ 35\n\n## Abbildung 20: Gebietsausschnitte Grafenb\u00fchl f\u00fcr die Baumpflanzungsszenarien (eigene\n\nDarstellung) ................................................................................................................ 37\n\n## (eigene\n\n\n## VI\n\nAbbildungsverzeichnis\nAbbildung 21: Zunahme des Gr\u00fcnanteils im Gebietsausschnitt II (Datengrundlage CGSC und eigene Berechnungen) ......................................................................................... 39 Abbildung 22: Monatlicher Heiz- und K\u00fchlbedarf im Gebietsausschnitt I (eigene Darstellung und Berechnung auf Grundlage der Simulationsergebnisse).................... 40 Abbildung 23: Spezifischer Heiz- und K\u00fchlbedarf im Status Quo, in Szenario A und in Szenario B des Gebietsausschnitts I (eigene Darstellung und Berechnung auf Grundlage der Simulationsergebnisse .......................................................................................... 41 Abbildung 24: T\u00e4gliche Evapotranspiration im Gebietsausschnitt I (eigene Darstellung und Berechnung auf Grundlage der Simulationsergebnisse) ...................................... 44 Abbildung 25: T\u00e4gliche Evapotranspiration im Status Quo (oben), in Szenario A (mitte) und in Szenario B (unten) im Gebietsausschnitt I (eigene Berechnungen auf Grundlage der Simulationsergebnisse) ......................................................................................... 45 Abbildung 26: Globalstrahlung auf den Gebietsausschnitt I in Szenario B ohne (oben) und mit (unten) Ber\u00fccksichtigung des Energieentzugs durch Evapotranspiration (eigene Berechnungen auf Grundlage der Simulationsergebnisse) ......................................... 47 Abbildung 27: T\u00e4gliche Temperatur\u00e4nderung im Gebietsausschnitt I (eigene Darstellung und Berechnung auf Grundlage der Simulationsergebnisse) ...................................... 48 Abbildung 28: St\u00fcndliche Temperaturver\u00e4nderung durch Evapotranspiration in einem Jahr f\u00fcr den Status Quo (oben), das Szenario A (mitte) und das Szenario B (unten) in Gebietsausschnitt I (eigene Berechnungen auf Grundlage der Simulationsergebnisse)\n................................................................................................................................... 49\n\n## VII\n\nTabellenverzeichnis\n\n## Tabellenverzeichnis\n\nTabelle 1: Baumpflanzungsszenarien in Gromb\u00fchl (eigene Berechnungen) ............... 34 Tabelle 2: Baumpflanzungsszenarien in Grafenb\u00fchl (eigene Berechnungen) ............. 36 Tabelle 3: \u00dcbersicht aller Baumpflanzungsszenarien (eigene Berechnungen) ............ 38 Tabelle 4: Zu- bzw. Abnahme der CO2e-Emissionen in t nach Szenarien (gerundete Werte) (eigene Berechnungen auf Grundlage der Simulationsergebnisse) ................. 43 Tabelle 5: Auflistung der \u00fcber die Monate gemittelte prozentuale Verringerung der Globalstrahlung (eigene Berechnungen auf Grundlage der Simulationsergebnisse) ... 46\n\n## VIII\n\nEinleitung\n\n## 1 Einleitung\n\nDie Auswirkungen des Klimawandels werden zunehmend sp\u00fcrbar. In den kommenden Jahrzenten ist eine Zunahme an H\u00e4ufigkeit und Intensit\u00e4t von Extremwetterlagen zu erwarten. Hitzewellen treten immer h\u00e4ufiger auf, Starkregenereignisse verursachen wachsende Sch\u00e4den, und erneut war das vergangene Jahr 2023 das w\u00e4rmste seit Beginn der Wetteraufzeichnungen. (Bundesministerium f\u00fcr Wohnen, Stadtentwicklung und Bauwesen 2024a)\nAktuelle st\u00e4dtische Strukturen sind h\u00e4ufig nicht auf zuk\u00fcnftige klimatische Bedingungen ausgelegt. Ein hoher Versiegelungsgrad, dichte Bebauung, Oberfl\u00e4chenmaterialien, hohes Verkehrsaufkommen und verh\u00e4ltnism\u00e4\u00dfig kleine Gr\u00fcnfl\u00e4chen tragen zu einer hohen \u00f6kologischen Belastung und sinkender Lebensqualit\u00e4t in St\u00e4dten bei. Urbane Gebiete sind f\u00fcr etwa 75 % der weltweiten CO2- Emissionen verantwortlich, 39 % der energiebezogenen Treibhausgasemissionen sind auf den Erhalt und die Instandsetzung von Geb\u00e4uden zur\u00fcckzuf\u00fchren. St\u00e4dte nutzen 75 % der weltweit verf\u00fcgbaren Ressourcen und dennoch spielen sie gleichzeitig eine zentrale Rolle in der nachhaltigen Entwicklung als Wirtschafts- und Lebensraum. (vgl. Die Bundesregierung 2020, S. 265) dunkle\nDie Urbanisierung f\u00fchrt zu lokal ver\u00e4nderten und zum Umland unterschiedlichen klimatischen Bedingungen im urbanen Raum. Die st\u00e4dtische Bebauungsstruktur f\u00f6rdert einen Temperaturunterschied zwischen Stadt und Umland, der besonders nachts ausgepr\u00e4gt ist \u2013 ein Ph\u00e4nomen, das als W\u00e4rme- oder Hitzeinseleffekt (Urban Heat Island, UHI) bekannt ist. Mit einer zunehmenden Urbanisierung wird die Temperatur in st\u00e4dtischen Gebieten weiter ansteigen. (vgl. Revi et al.", + "embedding": [ + 0.01853048801422119, + -0.004241958260536194, + 0.016551123932003975, + -0.01731942966580391, + -0.010183303616940975, + 0.01553539838641882, + -0.02817988395690918, + -0.00959730800241232, + -0.012650996446609497, + -0.03148750588297844, + 0.006315731909126043, + 0.011107875034213066, + -0.00556044839322567, + 0.01158969383686781, + -0.004977708216756582, + -0.007311924826353788, + 0.03765999153256416, + 0.004987474996596575, + 0.02468995377421379, + 0.00982519518584013, + -0.004915853030979633, + 0.02509363926947117, + 0.010092148557305336, + 0.009200133383274078, + 0.007533300668001175, + 0.014754070900380611, + 0.010886498726904392, + -0.029638363048434258, + -0.011648292653262615, + 0.011863158084452152, + 0.0094475531950593, + -0.017866358160972595, + -0.03130519390106201, + -0.009291288442909718, + -0.008321139961481094, + -0.0037080508191138506, + -0.0009701484814286232, + -0.006146444007754326, + 0.020939581096172333, + -0.006836616899818182, + 0.011947802267968655, + -0.014402473345398903, + 0.004163825418800116, + -0.016551123932003975, + 0.007455167826265097, + 0.023231474682688713, + 0.0133737251162529, + -0.0034117973409593105, + -0.02160370908677578, + 0.01950714737176895, + 0.02337471954524517, + 0.03156563639640808, + -0.0120975561439991, + 0.0050558410584926605, + -0.02682558260858059, + 0.009558241814374924, + -0.019116483628749847, + 0.010365613736212254, + -0.0045089116320014, + -0.001985874492675066, + -0.021030735224485397, + -0.013178393244743347, + -0.025484303012490273, + 0.009760084562003613, + -0.034508638083934784, + -0.011713403277099133, + -0.01875186339020729, + -0.00011587658809730783, + 0.013106771744787693, + -0.02919561043381691, + 0.02877890132367611, + 0.04104574769735336, + 0.017124097794294357, + -0.01177851390093565, + 0.008314628154039383, + -0.006751973181962967, + -0.006875683553516865, + 1.501868428022135e-05, + -0.007709099445492029, + 0.004893064498901367, + 0.015496332198381424, + -0.028987256810069084, + -0.022228771820664406, + 0.037972524762153625, + 0.01645996980369091, + 0.018608620390295982, + -0.011843625456094742, + 0.02235899306833744, + 0.0025523370131850243, + 0.008516471832990646, + 0.011706892400979996, + 0.019637368619441986, + -0.0016595073975622654, + 0.02295801043510437, + -0.0029006788972765207, + 0.0015349832829087973, + -0.006638029590249062, + 0.0026744194328784943, + 0.006540363654494286, + -0.02739855647087097, + -0.016017217189073563, + 0.0021291179582476616, + -0.009050378575921059, + -0.011531094089150429, + -0.04151454195380211, + 0.009115489199757576, + -0.00045414670603349805, + 0.007930475287139416, + 0.014011809602379799, + -0.034065887331962585, + -0.011452960781753063, + 0.024221157655119896, + -0.016134416684508324, + -0.029403964057564735, + 0.004557744599878788, + -0.018191911280155182, + 0.03510765731334686, + 0.008881091140210629, + -0.015496332198381424, + -0.012384043075144291, + 0.023283563554286957, + -0.00910897832363844, + 0.005563703831285238, + -0.018126800656318665, + 0.027007892727851868, + 0.01645996980369091, + 0.007643988821655512, + -0.015587486326694489, + -0.03914451599121094, + -0.030315512791275978, + -0.023661205545067787, + -0.00475307647138834, + 0.014037853106856346, + 0.015886995941400528, + -0.0322427861392498, + 0.034248195588588715, + -0.009030845016241074, + 0.00447961175814271, + -0.03758186101913452, + -0.05568261817097664, + -0.02851845882833004, + 0.020119186490774155, + -0.0365140438079834, + -0.012071512639522552, + 0.0029918337240815163, + 0.029638363048434258, + 0.011641781777143478, + 0.024286268278956413, + 0.0034345861058682203, + -0.026200519874691963, + -0.01155062671750784, + -0.014454561285674572, + 0.0073835463263094425, + 0.002877890132367611, + 0.006592452060431242, + -0.003307620296254754, + -0.011107875034213066, + -0.011615737341344357, + -0.033571045845746994, + 0.019741544499993324, + 0.019442036747932434, + -0.011036253534257412, + -0.0006897658458910882, + -0.0014641754096373916, + 0.016134416684508324, + -0.0045089116320014, + 0.006725928746163845, + 0.004056392703205347, + -0.0011825719848275185, + -0.022176682949066162, + -0.004779120907187462, + 0.014767092652618885, + -0.0305499117821455, + 0.02870076894760132, + -0.0005233267438597977, + 0.02439044415950775, + -0.008900623768568039, + 0.02536710537970066, + -0.003994537517428398, + -0.031122885644435883, + -0.029091432690620422, + 0.0036950286012142897, + 0.006012967322021723, + 0.0182570219039917, + -0.027190202847123146, + -0.012898417189717293, + 0.03427423909306526, + 0.017006898298859596, + -0.00048100482672452927, + 0.002181206364184618, + 0.014715003781020641, + 0.0074942344799637794, + 0.016902722418308258, + -0.003831760957837105, + -0.6346464157104492, + 0.02532803826034069, + -0.0008228356600739062, + -0.0018117035506293178, + 0.003115544095635414, + 0.017931468784809113, + 0.03953517973423004, + 0.018725819885730743, + -0.01761893928050995, + 0.016225570812821388, + 0.004215913824737072, + 0.0006877311388961971, + -0.012071512639522552, + -0.0066315182484686375, + 0.025979144498705864, + -0.019741544499993324, + -0.012012912891805172, + -0.014949402771890163, + 0.028414282947778702, + 0.005199084524065256, + -0.007520278450101614, + 0.0188951063901186, + -0.0030439223628491163, + 0.0011174613609910011, + 0.026031233370304108, + 0.01683761179447174, + -0.01724129728972912, + -0.033649176359176636, + 0.011739447712898254, + 0.01946808025240898, + -0.0007088920683600008, + 0.03549832105636597, + -0.014871269464492798, + 0.026513051241636276, + 0.04805165156722069, + 0.018400266766548157, + -0.016056282445788383, + 0.010228881612420082, + 0.011745958589017391, + 0.004336368292570114, + -0.027007892727851868, + -0.007826298475265503, + 0.0018930918304249644, + 0.0011809441493824124, + 0.003493185620754957, + 0.034664902836084366, + 0.032893892377614975, + -0.020041054114699364, + 0.0022577112540602684, + -0.012729129754006863, + 0.016525080427527428, + 0.0009709623991511762, + 0.0013909259578213096, + -0.0014788253465667367, + 0.004687965847551823, + 0.009467086754739285, + 0.012292888015508652, + -0.005719969514757395, + -0.00210958463139832, + 0.016225570812821388, + -0.0037471172399818897, + -0.003234370844438672, + -0.008861557580530643, + -0.016863655298948288, + -0.01879093050956726, + 0.04602019861340523, + -0.025471281260252, + -0.01264448557049036, + -0.005062351934611797, + -0.029482096433639526, + -0.005453015677630901, + 0.015978150069713593, + -0.004906086716800928, + -0.009779618121683598, + 0.020692160353064537, + 0.004141036421060562, + 0.03737350553274155, + -0.00635154265910387, + -0.017306407913565636, + 0.030940575525164604, + 0.008562048897147179, + -0.011244607158005238, + -0.003564807353541255, + -0.01773613691329956, + 0.02299707755446434, + -0.03987375274300575, + -0.016655301675200462, + -0.0015846301103010774, + -0.01057396735996008, + 0.010443746112287045, + 0.012546819634735584, + 0.015834907069802284, + -0.01950714737176895, + -0.03114892914891243, + -0.004515422508120537, + 0.03685262054204941, + -0.017879381775856018, + 0.04109783470630646, + 0.007526789791882038, + -0.03190421313047409, + -0.015170778147876263, + -0.000416504597524181, + 0.014102963730692863, + 0.007077526301145554, + 0.017983557656407356, + -0.006087844725698233, + -0.012735640630126, + -0.0005347211263142526, + 0.03794648125767708, + 0.0015984661877155304, + 0.0047758654691278934, + 0.0021258622873574495, + 0.001346976263448596, + -0.013256525620818138, + 0.004850742407143116, + -0.023622140288352966, + 0.04346786066889763, + -0.022189704701304436, + 0.007162170019000769, + 0.009030845016241074, + 0.015105667524039745, + 0.004375434946268797, + 0.00997494999319315, + -0.02307520993053913, + 0.0018963472684845328, + 0.020835403352975845, + -0.0031529825646430254, + -0.019077416509389877, + -0.01224731095135212, + -0.017293386161327362, + 0.007370524108409882, + 0.021668819710612297, + 0.04133223369717598, + -0.0023456106428056955, + 0.04203542694449425, + -0.00453821150586009, + 0.02810175158083439, + -0.012318932451307774, + 0.0026060533709824085, + -0.006380842532962561, + -0.014754070900380611, + -0.008496938273310661, + 0.007429123856127262, + -0.017605915665626526, + 0.009323843754827976, + -0.01536611095070839, + -0.026929760351777077, + 0.011094852350652218, + -0.002868123585358262, + -0.0046163443475961685, + -0.020392652601003647, + 0.006218065973371267, + -0.007943497970700264, + 0.0032913426402956247, + 0.002020057523623109, + 0.009577774442732334, + 0.003431330667808652, + -0.02100469172000885, + -0.0008053372148424387, + -0.01886906288564205, + 0.005094907246530056, + 0.026578161865472794, + -0.022645479068160057, + 0.006312476471066475, + -0.02732042409479618, + -0.005570215173065662, + -0.009688463062047958, + 0.021330244839191437, + -0.02401280403137207, + -0.02716415748000145, + -0.010365613736212254, + -0.02877890132367611, + 0.011296696029603481, + 0.012520775198936462, + -0.023049166426062584, + -0.022046461701393127, + -0.021746952086687088, + -0.012742151506245136, + -0.01713711954653263, + 0.004870275501161814, + 0.021538598462939262, + -0.011296696029603481, + -0.014389450661838055, + -0.015483309514820576, + 0.025679634883999825, + 0.022345971316099167, + 0.02179904095828533, + 0.01020283717662096, + -0.01074325479567051, + 0.009206644259393215, + 0.00806069653481245, + 0.032972026616334915, + 0.0012460547732189298, + 0.011231585405766964, + -0.006348287221044302, + -0.008184406906366348, + 0.005176295526325703, + 0.005925068166106939, + -0.02660420723259449, + 0.012820284813642502, + 0.03802461177110672, + -0.0018654197920113802, + 0.0193118155002594, + -0.003958726767450571, + 0.010808365419507027, + -0.025835901498794556, + 0.016290681436657906, + 0.0077742100693285465, + 0.014780114404857159, + 0.00372432847507298, + 0.03422215208411217, + -0.004808420781046152, + -0.035680629312992096, + -0.0037666503340005875, + -0.0013958093477413058, + 0.028231972828507423, + -0.01668134517967701, + -0.014649893157184124, + -0.0100856376811862, + -0.023999780416488647, + 0.011003698222339153, + -0.0032018155325204134, + 0.027528777718544006, + -0.01262495294213295, + -0.019442036747932434, + 0.012377532199025154, + -0.015340066514909267, + 0.01668134517967701, + 0.009668929502367973, + -0.016954809427261353, + -0.009538708254694939, + 0.0015097529394552112, + 0.0034996967297047377, + 0.0014601059956476092, + 0.009434531442821026, + 0.019181594252586365, + 0.013569056987762451, + -0.02070518210530281, + 0.03737350553274155, + 0.010000993497669697, + 0.016368813812732697, + 0.020236385986208916, + 0.01078232191503048, + -0.02584892325103283, + 0.03318038210272789, + 0.0034248195588588715, + 0.030185291543602943, + 0.022424103692173958, + -0.005960878916084766, + 0.015392154455184937, + -0.010000993497669697, + 0.009753573685884476, + 0.017189208418130875, + -0.008972246199846268, + 0.027138113975524902, + -0.013777410611510277, + 0.017671026289463043, + -0.008197429589927197, + 0.031773991882801056, + 0.014832203276455402, + 0.003200187813490629, + 0.005443249363452196, + 0.00912851095199585, + -1.996556602534838e-05, + -0.009441042318940163, + 0.0066998847760260105, + -0.0014625476906076074, + -0.017332451418042183, + -0.004404734820127487, + 0.0010116564808413386, + 0.01909043826162815, + -0.015808863565325737, + -0.019285770133137703, + -0.003564807353541255, + 0.011225073598325253, + 0.0009961928008124232, + 0.011192518286406994, + 0.017566850408911705, + 0.010873476043343544, + 0.0167594775557518, + -0.00015484124014619738, + -0.012989572249352932, + -0.015144734643399715, + 0.028466369956731796, + -0.0065338523127138615, + -0.015287977643311024, + -0.0006327939918264747, + 0.0129439951851964, + -0.013347680680453777, + 0.0011964079458266497, + -0.014037853106856346, + -0.013321636244654655, + -0.01961132325232029, + -0.010476301424205303, + -0.006501297000795603, + -0.0258879903703928, + 0.014649893157184124, + -0.020939581096172333, + 0.006367820315063, + 0.019402969628572464, + 0.015131711959838867, + 0.002832312835380435, + -0.020731227472424507, + -0.0031041495967656374, + 0.03320642560720444, + 0.01642090268433094, + -0.004805164877325296, + -0.005387905053794384, + -0.0020998180843889713, + -0.00821045134216547, + -0.0029250953812152147, + -0.011654804460704327, + -0.006882194429636002, + 0.019494125619530678, + -0.0031920489855110645, + 0.011166474781930447, + -0.0025588481221348047, + -0.009362909942865372, + 0.05422414094209671, + 0.010092148557305336, + 0.006585941184312105, + -0.027372512966394424, + -0.021786019206047058, + 0.009206644259393215, + 0.05286983773112297, + 0.024585776031017303, + 0.008190917782485485, + 0.005527893081307411, + 0.01057396735996008, + 0.0012289632577449083, + -0.01592606119811535, + -0.023205431178212166, + -0.008575070649385452, + -0.004411245696246624, + 0.002988578286021948, + -0.016733434051275253, + 0.013256525620818138, + -0.023947693407535553, + 0.010163770988583565, + -0.00171403749845922, + 0.006146444007754326, + -0.022072507068514824, + 0.00021445816673804075, + -0.0020900515373796225, + -0.005876235198229551, + -0.00959730800241232, + -0.00708403717726469, + 0.04286884516477585, + 0.01600419543683529, + 0.007077526301145554, + 0.028726812452077866, + 0.013777410611510277, + 0.002477459842339158, + -0.007611433509737253, + -0.013035149313509464, + 0.024820175021886826, + 0.01566561870276928, + 0.016850633546710014, + -0.030784308910369873, + -0.006817083805799484, + 0.012117089703679085, + -0.02817988395690918, + 0.023491917178034782, + -0.005189317744225264, + 0.005781824700534344, + 0.02190321870148182, + 0.00766352191567421, + -0.012175689451396465, + 0.0129439951851964, + -0.012520775198936462, + -0.004574022255837917, + 0.00927826575934887, + -0.014845225028693676, + -0.006579429842531681, + 0.01553539838641882, + -0.0011199029395356774, + -0.03700888529419899, + -0.009323843754827976, + -0.004007559735327959, + -0.005449760239571333, + 0.010645588859915733, + -0.020861448720097542, + 0.004453567788004875, + -0.017006898298859596, + -0.0360712930560112, + -0.029377920553088188, + 0.0047140102833509445, + -0.026669317856431007, + -0.00813231896609068, + -0.004137780983000994, + -0.0002663432096596807, + -0.00507211871445179, + -0.020275453105568886, + 0.0037178173661231995, + 0.02317938767373562, + -0.023700272664427757, + -0.020041054114699364, + 0.012605419382452965, + 0.009004801511764526, + 0.002474204171448946, + 0.0015390526968985796, + -0.010547922924160957, + 0.006263643503189087, + -0.009304310195147991, + -0.028075706213712692, + -0.026773493736982346, + 0.011921757832169533, + -0.023088231682777405, + -0.008855046704411507, + -0.00026369807892479, + -0.018270045518875122, + -0.023205431178212166, + -0.01134878396987915, + 0.0241951122879982, + -0.013764388859272003, + -0.011524583213031292, + 0.007585389073938131, + -0.0035127189476042986, + -0.00973404012620449, + 0.0004574022314045578, + 0.006384097971022129, + 0.00276557425968349, + 0.017905425280332565, + -0.040264420211315155, + 0.03388357535004616, + -0.0015268444549292326, + 0.006901727523654699, + -0.0034866747446358204, + 0.0067975507117807865, + 0.004411245696246624, + -0.022411081939935684, + -0.0020770293194800615, + -0.01172642596065998, + -0.004456823226064444, + 0.03565458580851555, + -0.010287480428814888, + 0.017006898298859596, + -0.008562048897147179, + 0.0009375931695103645, + 0.008047674782574177, + 0.001738453982397914, + 0.004880042281001806, + 0.030940575525164604, + 0.011153452098369598, + -0.00740307942032814, + -0.03995188698172569, + 0.037972524762153625, + 0.00956475269049406, + 0.029508141800761223, + -0.0049711973406374454, + -0.0038382720667868853, + 0.04021232947707176, + -0.033388733863830566, + -0.017410583794116974, + -0.01777520403265953, + 0.008998289704322815, + 0.014220163226127625, + -0.01807471364736557, + -0.02401280403137207, + -0.027606910094618797, + -0.00629294291138649, + 0.010157259181141853, + -0.03698284178972244, + 0.015105667524039745, + -0.030445734038949013, + 0.009948905557394028, + -0.003675495507195592, + 0.017970535904169083, + 0.019220659509301186, + -0.026057276874780655, + -0.003880593925714493, + 0.009922861121594906, + 0.009388954378664494, + 0.019598301500082016, + -0.014610826969146729, + -0.01020283717662096, + -0.03190421313047409, + 0.016316724941134453, + -0.030185291543602943, + -0.038910117000341415, + 0.0051665292121469975, + -0.01322397030889988, + 0.018543509766459465, + 0.011433428153395653, + 0.03469094634056091, + -0.000857832666952163, + 0.03346686810255051, + 0.003441097214818001, + -0.016407880932092667, + 0.004596811253577471, + -0.0010320035507902503, + 0.006136677693575621, + -0.02108282409608364, + 0.01879093050956726, + 0.008451361209154129, + 0.012976550497114658, + 0.011843625456094742, + 0.00806069653481245, + 0.005521382205188274, + 0.03273762762546539, + -0.02385653741657734, + -0.022033439949154854, + -0.008763891644775867, + -0.015209845267236233, + -0.01112089678645134, + 0.02742459997534752, + -0.004004304297268391, + 0.009747062809765339, + -0.017124097794294357, + -0.007344480138272047, + 0.038232967257499695, + 0.003237626515328884, + 0.0004179289098829031, + 0.007455167826265097, + 0.008731336332857609, + -0.03320642560720444, + 0.025523370131850243, + -0.004336368292570114, + -0.011947802267968655, + 0.0026988359168171883, + -0.01026143692433834, + -0.026291675865650177, + -0.042816754430532455, + 0.03005507029592991, + -0.015509353950619698, + -0.00041833583964034915, + 0.0051176962442696095, + 0.011055786162614822, + 0.0029592784121632576, + 0.0009823567233979702, + 0.023869559168815613, + -0.023622140288352966, + 0.020223364233970642, + -0.010658611543476582, + -0.011114385910332203, + 0.0004317649290896952, + -0.0031773990485817194, + -0.020978648215532303, + 0.012618441134691238, + -0.010489324107766151, + -0.0023976992815732956, + 0.02742459997534752, + -0.013868565671145916, + 0.029299786314368248, + 0.027945484966039658, + 0.006169233005493879, + 0.03164377063512802, + 0.006667329464107752, + 0.03711306303739548, + 0.00967544037848711, + -0.021291177719831467, + -0.013972742483019829, + -0.03919660300016403, + 0.0009546847431920469, + -0.010046571493148804, + 0.011205540969967842, + 0.0008134760428220034, + -0.006843128241598606, + -0.017072008922696114, + 0.01172642596065998, + 0.01264448557049036, + 0.008138829842209816, + -0.006429675500839949, + 0.04831209406256676, + 0.018361199647188187, + 7.513157470384613e-05, + -0.02134326659142971, + -0.005882746074348688, + -0.028205927461385727, + 0.0042061470448970795, + -0.008119296282529831, + -0.007162170019000769, + 0.010600011795759201, + -0.0037666503340005875, + 0.009161066263914108, + 0.046723391860723495, + 0.012110578827559948, + 0.018283067271113396, + -0.006517574656754732, + -0.0037406061310321093, + 0.01106880884617567, + -0.024520665407180786, + -0.004180103074759245, + 0.024663910269737244, + 0.005283728241920471, + 0.03700888529419899, + 0.007884898222982883, + -0.039431001991033554, + 0.014233184978365898, + -0.019181594252586365, + 0.002389560453593731, + 0.0032034434843808413, + 0.000539604399818927, + 0.02239806018769741, + 0.00507211871445179, + -0.006120400037616491, + -0.013028638437390327, + 0.014597805216908455, + 0.02156464383006096, + 0.00446333410218358, + -0.008822491392493248, + -0.007344480138272047, + 0.0020281963516026735, + -0.007780721411108971, + 0.01074976660311222, + 0.007780721411108971, + -0.019324837252497673, + 0.0014348756521940231, + -0.01455873902887106, + 0.0027525522746145725, + -0.013933676294982433, + -0.006296198815107346, + 0.023439830169081688, + -0.033388733863830566, + 0.010365613736212254, + 0.02317938767373562, + -0.0024172323755919933, + 0.030602000653743744, + -0.007305413484573364, + -0.01799657940864563, + -0.021252112463116646, + 0.032294876873493195, + -0.022254815325140953, + 0.025484303012490273, + 0.03409193083643913, + 0.007878387346863747, + 0.009069912135601044, + 0.012579374946653843, + -0.002562103560194373, + -0.02021034248173237, + 0.02345285192131996, + -0.014115986414253712, + -0.0322427861392498, + 0.02472902089357376, + -0.011133919470012188, + 0.005466037895530462, + -0.015001490712165833, + 4.1558898374205455e-05, + 0.023687250912189484, + 0.004329857416450977, + -0.010593500919640064, + -0.0161213930696249, + -0.017749160528182983, + 0.02784130908548832, + 0.010808365419507027, + -0.0044698454439640045, + 0.04143641144037247, + -0.02682558260858059, + 0.01859559863805771, + 0.006875683553516865, + 0.0173975620418787, + -0.020653095096349716, + -0.018126800656318665, + -0.023778405040502548, + -0.01789240352809429, + 0.021447444334626198, + -0.011426917277276516, + 0.005120951682329178, + -0.0017954257782548666, + -0.018165867775678635, + -0.025783812627196312, + 0.02160370908677578, + 0.007240302860736847, + 0.015730729326605797, + -0.006019478663802147, + 0.019832700490951538, + -0.029430007562041283, + 0.013178393244743347, + -0.011465983465313911, + -0.008822491392493248, + -0.012800751253962517, + 0.0006706395652145147, + -0.059016283601522446, + -0.003519230056554079, + 0.004853997845202684, + 0.03411797434091568, + 0.0184523556381464, + -0.03752977028489113, + -0.0041084811091423035, + 0.0013136070920154452, + -0.06068311259150505, + -0.033492911607027054, + -0.006784528493881226, + -0.011921757832169533, + 0.008920157328248024, + 0.012266844511032104, + -0.01134878396987915, + 0.02299707755446434, + -0.003636429086327553, + 0.014011809602379799, + -0.03463885933160782, + -0.010170281864702702, + 0.0035973626654595137, + -0.01020283717662096, + 0.032789718359708786, + 0.00203307974152267, + -0.013842521235346794, + -0.007311924826353788, + 0.016290681436657906, + -0.007155659142881632, + -0.0018214700976386666, + 0.02040567435324192, + -0.00789140909910202, + 0.005980412010103464, + -0.004694477189332247, + 0.013569056987762451, + -0.00024680999922566116, + 0.019064394757151604, + 0.005244662053883076, + -0.02626563049852848, + 0.01078232191503048, + 0.03463885933160782, + -0.0033238979522138834, + -0.02953418530523777, + -0.0020021521486341953, + 0.0006629076669923961, + 0.0050200303085148335, + -0.0016318353591486812, + 0.00723379198461771, + -0.02235899306833744, + -0.011798047460615635, + -0.011140430346131325, + 0.024676932021975517, + 0.0034964412916451693, + 0.0037959502078592777, + 0.007246814202517271, + 0.008894112892448902, + 0.004801909439265728, + -0.019246704876422882, + 0.010958120226860046, + -0.01616046018898487, + 0.005658114328980446, + 0.02050985023379326, + 0.0031139161437749863, + 0.020535895600914955, + -0.031617727130651474, + 0.02088749222457409, + -0.008080230094492435, + 0.017931468784809113, + -0.016394859179854393, + -0.013204437680542469, + -0.0070905485190451145, + -0.00011567311594262719, + 0.022984055802226067, + -0.014649893157184124, + 0.006283176597207785, + 0.010775810107588768, + 2.678183591342531e-05, + -0.0066022188402712345, + -0.00806069653481245, + 0.0027737130876630545, + -0.0239737369120121, + -0.002145395614206791, + 0.003564807353541255, + -0.009590797126293182, + -0.014571760781109333, + -0.005404182709753513, + 0.004473100882023573, + -0.028492415323853493, + 0.025119684636592865, + 0.19126901030540466, + -0.0012468687491491437, + 0.002218645066022873, + 0.02660420723259449, + -0.0033401756081730127, + -0.0079500088468194, + 0.020119186490774155, + -0.002586520044133067, + -0.017032943665981293, + 0.02698184736073017, + -0.02198135107755661, + 0.011218562722206116, + -0.00615295534953475, + -0.0022544558160007, + 0.012162666767835617, + -0.009642885066568851, + -0.03377939760684967, + 0.0011850135633721948, + -0.015248911455273628, + 0.029221653938293457, + 0.01821795664727688, + -0.037816260010004044, + -0.00916757807135582, + -0.00959730800241232, + 0.02919561043381691, + 0.0028616124764084816, + -0.004853997845202684, + 0.0027541799936443567, + 0.04016024246811867, + -0.003577829571440816, + -0.003159493673592806, + 0.010502345860004425, + 0.007025437895208597, + -0.022827789187431335, + 0.010593500919640064, + 0.008125807158648968, + 0.0224761925637722, + -0.015092645771801472, + 0.025145728141069412, + 0.008477404713630676, + -0.010411190800368786, + -0.01134878396987915, + -0.010567456483840942, + -0.022345971316099167, + -0.01155713852494955, + 0.02040567435324192, + -0.013152348808944225, + 0.003174143610522151, + -0.007611433509737253, + -0.021030735224485397, + -0.017840314656496048, + -0.017631961032748222, + 0.027528777718544006, + 0.034664902836084366, + -0.014532694593071938, + 0.009642885066568851, + 0.01919461600482464, + -0.01984572224318981, + 0.016030238941311836, + 0.006882194429636002, + -0.030680133029818535, + 0.04039464145898819, + -0.011856647208333015, + 0.011934779584407806, + -0.018543509766459465, + -0.010118192993104458, + -0.03979562222957611, + 0.012481709010899067, + -0.0019988964777439833, + 0.006006456445902586, + -0.027372512966394424, + -0.02618749812245369, + -0.02261943556368351, + 0.028023619204759598, + -0.011075319722294807, + -0.017006898298859596, + 0.017072008922696114, + 0.005368371959775686, + 0.03463885933160782, + 0.01586095057427883, + -0.014220163226127625, + 0.01078232191503048, + 0.00918711069971323, + -0.022345971316099167, + -0.003968493547290564, + -0.03028946928679943, + 0.02513270638883114, + -0.007181703113019466, + 0.0015878856647759676, + -0.013347680680453777, + -0.015261933207511902, + 0.013894610106945038, + 0.003297853749245405, + -0.009252221323549747, + 0.010404679924249649, + -0.005088396370410919, + 0.0110297417268157, + 0.004473100882023573, + -0.009740551002323627, + 0.014272252097725868, + -0.005352094303816557, + 0.04351995140314102, + 0.030914530158042908, + -0.012872372753918171, + -0.002614192198961973, + 0.0032359987962991, + -0.009760084562003613, + 0.013582078740000725, + -0.003506207838654518, + -0.016407880932092667, + -0.005492082331329584, + -0.036774490028619766, + 0.010443746112287045, + 0.004404734820127487, + -0.012540308758616447, + 0.017462672665715218, + 0.005462782457470894, + -0.019455058500170708, + 0.008327650837600231, + -0.005111184902489185, + -0.01399878691881895, + 0.007240302860736847, + 0.021929262205958366, + -0.00288765667937696, + 0.01901230588555336, + -0.015639575198292732, + -0.04177498444914818, + 0.01536611095070839, + -0.018165867775678635, + -0.0028225460555404425, + 0.0205879844725132, + -0.023765383288264275, + -0.00048019096720963717, + 0.015196822583675385, + -0.00213237339630723, + 0.016030238941311836, + 0.006843128241598606, + -0.04401479288935661, + 0.0025588481221348047, + 0.014949402771890163, + 0.007364013232290745, + -0.021069802343845367, + 0.001175247016362846, + -0.012930972501635551, + 0.010326547548174858, + -0.011452960781753063, + 0.006058544851839542, + 0.013803455047309399, + -0.02509363926947117, + -0.027971530333161354, + 0.007565855979919434, + -0.006940794177353382, + 0.008724825456738472, + -0.013165370561182499, + 0.029976937919855118, + -0.013868565671145916, + -0.018986262381076813, + -0.025822879746556282, + 0.009831706061959267, + 0.021812062710523605, + -0.019220659509301186, + 0.0033027371391654015, + -0.015457265079021454, + -0.021134912967681885, + -0.01392065454274416, + 0.01175898127257824, + -0.16345374286174774, + 0.009857750497758389, + 0.01901230588555336, + -0.04404083639383316, + 0.0033369201701134443, + 0.006052033975720406, + -0.015027535147964954, + -0.016616234555840492, + -0.01399878691881895, + -0.010515367612242699, + 0.03904033824801445, + 0.004101970233023167, + -0.02088749222457409, + -0.006315731909126043, + -2.764658711384982e-05, + 0.017644982784986496, + -0.015886995941400528, + 0.03164377063512802, + 0.017983557656407356, + 0.011342273093760014, + -0.007930475287139416, + -0.03810274600982666, + 0.013647189363837242, + -0.01183711364865303, + 0.010196326300501823, + -0.011055786162614822, + -0.014194118790328503, + 0.012110578827559948, + 0.0063580540008842945, + -0.024963418021798134, + -0.011394361965358257, + 0.002858357038348913, + 0.031122885644435883, + 0.0006946491193957627, + 0.011635270901024342, + -0.0123059106990695, + 0.02521083876490593, + -0.007585389073938131, + -0.003086244221776724, + 0.02472902089357376, + 0.031539592891931534, + -0.001029561972245574, + -0.015353088267147541, + 0.00806069653481245, + -0.025523370131850243, + -0.004375434946268797, + 0.020978648215532303, + 0.004381945822387934, + -0.012722618877887726, + 0.007500745356082916, + 0.01879093050956726, + -0.013959720730781555, + -0.012820284813642502, + 0.019064394757151604, + 0.002879517851397395, + 0.030758265405893326, + 0.0015016141114756465, + 0.01855653151869774, + -0.0024693210143595934, + 0.005892512854188681, + 0.002659769495949149, + -0.004268002230674028, + 0.005791591014713049, + 0.020601006224751472, + 0.006126910913735628, + -0.023049166426062584, + 0.010450256988406181, + 0.008177896030247211, + -0.00806069653481245, + 0.008763891644775867, + -0.03359708935022354, + -0.005713458638638258, + 0.016329748556017876, + -0.001101997564546764, + -0.0046163443475961685, + 0.010547922924160957, + -0.004186613950878382, + 0.012032445520162582, + 0.004867020063102245, + -0.00031904212664812803, + -0.030263423919677734, + 0.053260501474142075, + -0.018270045518875122, + 0.003470397088676691, + -0.004333112854510546, + 0.0009172460995614529, + 0.013790433295071125, + -0.002000524429604411, + 0.011954313144087791, + 0.011459472589194775, + 0.011563649401068687, + -0.027033936232328415, + -0.020939581096172333, + -0.015314022079110146, + 0.009480108506977558, + -0.004899575375020504, + 0.016902722418308258, + 0.005944601260125637, + -0.007136126048862934, + -0.03794648125767708, + 0.011231585405766964, + -0.01399878691881895, + -0.03021133504807949, + -0.013595101423561573, + 0.011049275286495686, + 0.015652596950531006, + -0.02228086069226265, + 0.004531700164079666, + 0.024182090535759926, + -0.005693925078958273, + -0.02521083876490593, + -0.021812062710523605, + 0.023400763049721718, + -0.0009856122778728604, + -0.014754070900380611, + 0.0006995323929004371, + 0.02427324652671814, + -0.02114793471992016, + -0.0026662806048989296, + -0.01923368312418461, + 0.024377422407269478, + -0.005791591014713049, + -0.026695361360907555, + 0.015808863565325737, + 0.007487723138183355, + -0.01765800453722477, + -0.09448856115341187, + -0.003027644706889987, + 0.023804448544979095, + 0.019415991380810738, + 0.018465377390384674, + -0.0031318217515945435, + -0.007311924826353788, + 0.021395355463027954, + 0.012826795689761639, + 0.013425813056528568, + -0.05714109539985657, + -0.012611930258572102, + -0.0067975507117807865, + -0.014741048216819763, + 0.00806069653481245, + -0.007585389073938131, + -0.010866965167224407, + -0.023309608921408653, + -0.028804946690797806, + 0.03226883336901665, + 0.0231142770498991, + -0.01561353076249361, + -0.008653203956782818, + -0.017710093408823013, + -0.004001048859208822, + -0.0010401424951851368, + -0.035758763551712036, + 0.011882691644132137, + 0.02082238160073757, + 0.008203940466046333, + 0.029924849048256874, + -0.01544424332678318, + 0.02126513421535492, + -0.032294876873493195, + 0.007709099445492029, + -0.004717265721410513, + 0.0015593997668474913, + -0.024924352765083313, + 0.016668323427438736, + -0.02415604703128338, + -0.013236992992460728, + -0.003149727126583457, + 0.04971848428249359, + -0.020093142986297607, + 0.008353695273399353, + -0.0178142711520195, + -0.013028638437390327, + -0.009929371997714043, + -0.00021710328292101622, + -0.03836318850517273, + -0.042842797935009, + -0.02138233371078968, + 0.018387245014309883, + 0.02213761769235134, + 0.006120400037616491, + 0.010893009603023529, + 0.0058339131064713, + -0.013673233799636364, + -0.01743662916123867, + -0.0023570051416754723, + -0.020535895600914955, + 0.019259726628661156, + -0.022710589691996574, + 0.026278654113411903, + 0.0038643162697553635, + -0.01882999576628208, + -0.023244498297572136, + -0.024403467774391174, + 0.0018003091681748629, + -0.023778405040502548, + -0.032711584120988846, + 0.008842024952173233, + -0.006133422255516052, + -0.009493131190538406, + -0.03341478109359741, + 0.003087871940806508, + -0.027971530333161354, + -0.021746952086687088, + 0.009330354630947113, + -0.017527783289551735, + -0.029169565066695213, + -0.032034434378147125, + 0.01976758986711502, + -0.008542515337467194, + 0.018244000151753426, + 0.005791591014713049, + 0.0032522764522582293, + -0.013777410611510277, + 0.018322132527828217, + -0.01608232781291008, + 0.0064850193448364735, + -0.017332451418042183, + 0.015301000326871872, + -0.009258733130991459, + -0.005469293799251318, + -0.006618496496230364, + 0.003880593925714493, + 0.001285121194086969, + 0.020236385986208916, + 0.007487723138183355, + -0.04075925797224045, + -0.024702975526452065, + -0.04065508395433426, + 0.011902224272489548, + 0.013347680680453777, + -0.005111184902489185, + -0.004137780983000994, + -0.008334161713719368, + 0.01046327967196703, + 0.018283067271113396, + 2.390781219219207e-06, + 0.011745958589017391, + 0.0015748635632917285, + 0.011452960781753063, + 0.008581582456827164, + -0.01761893928050995, + -0.01724129728972912, + -0.010437235236167908, + 0.009206644259393215, + 0.03265949711203575, + 0.024585776031017303, + 0.004534956067800522, + -0.020158253610134125, + 0.005046074278652668, + -0.009343376383185387, + 0.015196822583675385, + -0.017345473170280457, + 0.0068952166475355625, + -0.011524583213031292, + 0.0021372567862272263, + -0.007715610787272453, + -0.011049275286495686, + 0.002464437624439597, + -0.0015301000094041228, + -0.013556035235524178, + 0.005156762432307005, + 0.0040954588912427425, + -0.014623849652707577, + 0.009851239621639252, + 0.03164377063512802, + 0.010730233043432236, + 0.03987375274300575, + -0.03930078074336052, + -0.020614027976989746, + 0.015991171821951866, + -0.0326855406165123, + -0.0018719307845458388, + -6.017647319822572e-05, + 0.01909043826162815, + -0.012865861877799034, + 0.021173980087041855, + -0.012279866263270378, + 0.05339072272181511, + 0.003052061190828681, + -0.00011557138350326568, + -0.015053579583764076, + 0.02919561043381691, + -0.032972026616334915, + 0.0035582962445914745, + 0.017684049904346466, + 0.005609281361103058, + -0.020379628986120224, + 0.02724229171872139, + 0.007305413484573364, + 0.02502852864563465, + 0.009747062809765339, + 0.031174972653388977, + -0.030706176534295082, + -0.03622755780816078, + 0.0002132373338099569, + 0.016525080427527428, + -0.02175997570157051, + -0.015561442822217941, + -0.02066611684858799, + 0.011407383717596531, + 0.035680629312992096, + -0.010346080176532269, + -0.003711306257173419, + 0.023270541802048683, + 0.011335762217640877, + 0.010997186414897442, + 0.030914530158042908, + 0.005417204927653074, + 0.01769707165658474, + -0.016616234555840492, + 0.00798256415873766, + 0.022254815325140953, + 0.004137780983000994, + -0.01901230588555336, + 0.007416101638227701, + -0.0049223643727600574, + -8.352474105777219e-05, + 0.02126513421535492, + 0.008809469640254974, + -0.004355901852250099, + -0.014037853106856346, + 0.01619952730834484, + 0.00869878102093935, + 0.00404988182708621, + -0.03096661902964115, + 0.01480615884065628, + 0.03469094634056091, + 0.004814931657165289, + -0.0038675719406455755, + 0.003574573900550604, + -0.02491132915019989, + -0.011687359772622585, + 0.012371021322906017, + -0.010515367612242699, + -0.04930177330970764, + -0.019064394757151604, + 0.010280969552695751, + -0.016147438436746597, + 0.025979144498705864, + 0.006882194429636002, + 0.002516526263207197, + -0.02935187518596649, + 0.05034354329109192, + -0.012572864070534706, + -0.005273961462080479, + -0.02506759576499462, + 0.008308117277920246, + 0.01455873902887106, + 0.0010702561121433973, + 0.004411245696246624, + 0.006732440087944269, + 0.02442951127886772, + 0.029299786314368248, + 0.010443746112287045, + 0.0019940133206546307, + 0.010945098474621773, + -0.013347680680453777, + 0.019376926124095917, + -0.00783280935138464, + -0.023231474682688713, + -0.025718702003359795, + -0.007018926553428173, + -0.01656414568424225, + 0.008750869892537594, + 0.005579981487244368, + 0.029403964057564735, + 0.09740551561117172, + 0.02705998159945011, + 0.005700436420738697, + -0.007110081613063812, + -0.010339569300413132, + 0.02363516204059124, + 0.011882691644132137, + 0.0165381021797657, + 0.0023830493446439505, + -0.05823495611548424, + 0.003470397088676691, + -0.016785522922873497, + 0.012878884561359882, + -0.04318137466907501, + -0.016707390546798706, + 0.00712961470708251, + -0.013061193749308586, + 0.006576174404472113, + -0.013673233799636364, + 0.037399549037218094, + 0.03151354938745499, + -0.006231088191270828, + 0.02303614281117916, + 0.03250322863459587, + -0.04198333993554115, + -0.01562655344605446, + 0.022215750068426132, + -0.009317331947386265, + -0.013295591808855534, + 0.0015471915248781443, + -0.014701982028782368, + 0.009343376383185387, + -0.0637042447924614, + -0.027606910094618797, + 0.010118192993104458, + -0.013347680680453777, + -0.015209845267236233, + -0.024742042645812035, + 0.02607029862701893, + 0.002337471814826131, + 0.005856701638549566, + 0.011772003024816513, + -0.028231972828507423, + -0.022632457315921783, + -0.017332451418042183, + -0.01649903506040573, + -0.01472802646458149, + -0.021356288343667984, + -0.039352867752313614 + ], + "metadata": { + "source": "Kreye_Marieke_BA_241_V2.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 17, + "has_images": true, + "image_count": 98, + "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", + "links": [], + "last_modified": "2025-05-05T23:00:23", + "_known_field_names": "frozenset({'is_continuation', 'sent_to', 'header_footer_type', 'email_message_id', 'filename', 'languages', 'detection_class_prob', 'sent_from', 'link_texts', 'cc_recipient', 'subject', 'image_mime_type', 'image_path', 'filetype', 'page_number', 'last_modified', 'signature', 'detection_origin', 'text_as_html', 'attached_to_filename', 'bcc_recipient', 'data_source', 'link_start_indexes', 'category_depth', 'emphasized_text_tags', 'parent_id', 'orig_elements', 'page_name', 'coordinates', 'url', 'link_urls', 'file_directory', 'links', 'table_as_cells', 'emphasized_text_contents', 'key_value_pairs', 'image_base64'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "Kreye_Marieke_BA_241_V2.pdf", + "detection_class_prob": 0.3422867953777313, + "parent_id": "e02392183bc6851689602ad4b9f6039f", + "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", + "id": "ce00eae5-7e07-454f-9e4f-f79ac36f92f4", + "processing_timestamp": "2025-05-05T23:15:46.977945", + "chunk_number": 1, + "total_chunks": 56, + "chunking_strategy": "hybrid", + "word_count": 1528 + } +} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000002.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000002.json new file mode 100644 index 0000000000000000000000000000000000000000..6a619025cc3fc57c22b1b0931d129c67554c95a8 --- /dev/null +++ b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000002.json @@ -0,0 +1,1570 @@ +{ + "id": "61a115b2-0ff7-441a-f6d9-eb3d00000002", + "content": "(vgl. Revi et al. 2015, S. 551)\nEs wird prognostiziert, dass ohne gezielte Ma\u00dfnahmen zur Minderung der Klimafolgen die Jahresmitteltemperatur in Deutschland im Vergleich zu dem Zeitraum von 1970 \u2013 2000 um 4,7 \u00b0C ansteigt. Abbildung 1 verdeutlicht die voraussichtlich zunehmende Jahresmitteltemperatur des Bundesgebiets. [IMAGE: 1971:2000 2071-2100 ee En nn) 4567809 \u0131 \u01312 13 14 rc]]\n\nAbbildung 1: 30-Jahresmitteltemperatur f\u00fcr den historischen Zeitraum (1970-2000), f\u00fcr die nahe Zukunft (2031-2060) und f\u00fcr die ferne Zukunft (2071-2100) nach dem RCP8.5-Szenario (vgl. Deutscher Wetterdienst)\n1\nEinleitung\nDer sechste Sachstandsbericht (Synthesis Report) des Intergovernmental Panel on Climate Change (IPCC) betont das Potential und den erheblichen Handlungsspielraum von St\u00e4dten bei der Umsetzung von Klimaanpassungsstrategien. Neben einer emissionsarmen Bauweise, einer erneuerbaren Energieversorgung und der Reduktion verkehrsbedingter Emissionen stellen urbane Gr\u00fcn- und Wasserfl\u00e4chen eine entscheidende Stellschraube f\u00fcr die Anpassung st\u00e4dtischer Gebiete an den Klimawandel dar. (vgl. Lee et al. 2023, S. 105)\nAngesichts des erheblichen Handlungsbedarfs, St\u00e4dte an zuk\u00fcnftige klimatische Bedingungen anzupassen, ist es unerl\u00e4sslich, eine ganzheitliche Betrachtungsweise zu verfolgen und die vielf\u00e4ltigen Wechselwirkungen zwischen Mobilit\u00e4t, Energie- und Wasserhaushalt, st\u00e4dtischem Gr\u00fcn und den Bed\u00fcrfnissen der Bev\u00f6lkerung zu ber\u00fccksichtigen. Hier setzt das Forschungsprojekt CircularGreenSimCity (CGSC) an der Hochschule f\u00fcr Technik (HfT) Stuttgart an. Ziel des Projekts ist es, verschiedene Planungsdimensionen zu einem iterativen Planungsprozess zusammenzuf\u00fchren, der zum einen eine Lebenszykluskostenbetrachtung und zum anderen die Wechselwirkungen der genannten st\u00e4dtischen Dimensionen ber\u00fccksichtigt. Zur Definition von Leitlinien und zur Validierung des modellhaften Ansatzes werden mit der Software SimStadt Simulationen im Bereich des Energiebedarfs im aktuellen Zustand und f\u00fcr Zukunftsszenarien in Bestandsquartieren durchgef\u00fchrt. Ein m\u00f6gliches Zukunftsszenario zur klimaresilienten Gestaltung von St\u00e4dten ist die Erh\u00f6hung des Gr\u00fcnanteils innerhalb der Quartiere. Dies erfordert jedoch eine Reduktion des MIV, um Landnutzungskonflikte zu l\u00f6sen. Die Schwerpunkte dieser Arbeit liegen auf der Analyse freiwerdender Potentialfl\u00e4chen in unterschiedlichen Mobilit\u00e4tsszenarien und der Aufstellung daraus resultierender Baumpflanzungsszenarien, sowie der Simulation der Auswirkung dieser erh\u00f6hten Begr\u00fcnung auf den thermischen Geb\u00e4udeenergiebedarf und die Evapotranspiration der B\u00e4ume. Beispielhaft wird das Modell auf die Fallstudiengebiete Gromb\u00fchl (Stadt W\u00fcrzburg) und Grafenb\u00fchl (Stadt Asperg) angewandt. Beide St\u00e4dte sind Praxispartner des Projekts CGSC. Welche Auswirkungen die Erh\u00f6hung des st\u00e4dtischen Gr\u00fcns auf den Energiebedarf der Geb\u00e4ude hat, wie diese mit einer \u00c4nderung des Mobilit\u00e4tsverhaltens zusammenh\u00e4ngt und inwieweit das Tool in der Praxis anwendbar ist, wird in der vorliegenden Arbeit in den zwei Fallstudiengebieten Gromb\u00fchl und Grafenb\u00fchl simuliert und analysiert. 2\nTheorieteil\n\n## 2 Theorieteil\n\nDieses Kapitel dient der Einordnung des Themas dieser Bachelorarbeit in die aktuelle Thematik der Stadtentwicklung und hebt die Bedeutung der Ausweitung st\u00e4dtischen Gr\u00fcns hervor. ## 2.1 Nachhaltige Stadtentwicklung\n\nDie Grundidee der nachhaltigen Entwicklung wurde erstmals in dem Brundtland-Bericht im Jahr 1987 definiert. Demnach stellt eine nachhaltige Entwicklung sicher, dass nach einer Befriedigung der gegenw\u00e4rtigen Bed\u00fcrfnisse die M\u00f6glichkeit auch f\u00fcr zuk\u00fcnftige Generationen gewahrt wird, ihre eigenen Bed\u00fcrfnisse zu decken (vgl. World Commission on Environment and Development 1987). Bott et al. 2018 definieren den Begriff der Nachhaltigkeit als eine enge Verkn\u00fcpfung der drei Dimensionen \u00d6kologie, \u00d6konomie und Soziales.", + "embedding": [ + 0.008890083990991116, + -0.0118341613560915, + 0.012027004733681679, + -0.007096639834344387, + 0.0029826457612216473, + 0.008767950348556042, + -0.025159645825624466, + 0.0024796456564217806, + -0.03183203190565109, + -0.017870161682367325, + 0.02446541003882885, + 0.016713101416826248, + -0.017085932195186615, + 0.0080351447686553, + -0.00842726044356823, + -0.0096743144094944, + 0.043248362839221954, + 0.004830729216337204, + 0.02177845686674118, + 0.006553464103490114, + 0.011172065511345863, + 0.02859226055443287, + 0.018911516293883324, + -0.0028878310695290565, + -0.0013659746618941426, + 0.001396508188918233, + 0.017947299405932426, + -0.027178073301911354, + 0.005367476958781481, + -0.00029047048883512616, + 0.015003222972154617, + -0.0127919502556324, + -0.009012218564748764, + -0.0014728420646861196, + -0.021341344341635704, + -0.007109496276825666, + -0.005515323486179113, + -5.524162043002434e-05, + 0.014373267069458961, + -0.00575316371396184, + -0.005078211426734924, + 0.00045036987285129726, + 0.006405617576092482, + -0.02209986187517643, + -0.006158134900033474, + 0.029466483741998672, + 0.03226914256811142, + -0.004551106132566929, + -0.015208922326564789, + 0.02676667459309101, + 0.040034305304288864, + 0.041217077523469925, + -0.009237202815711498, + -0.015466046519577503, + -0.019117217510938644, + -0.006370262708514929, + -0.033349066972732544, + 0.020775670185685158, + -0.004644313827157021, + -0.02545533888041973, + -0.02425970882177353, + -0.003734735306352377, + -0.018705816939473152, + 0.02294837310910225, + -0.031060656532645226, + -0.021289920434355736, + -0.038414422422647476, + -0.0025535691529512405, + 0.014064718037843704, + -0.008800090290606022, + 0.029080796986818314, + 0.03738592192530632, + 0.03399187698960304, + -0.0011546503519639373, + 0.013640462420880795, + -0.007032359018921852, + -0.0007504825480282307, + 0.009513611905276775, + -0.024298278614878654, + 0.013036219403147697, + 0.031240643933415413, + -0.024748247116804123, + -0.020685676485300064, + 0.02931220829486847, + 0.020749958232045174, + 0.012753382325172424, + -0.025031084194779396, + 0.0025246425066143274, + -0.0012920512817800045, + 0.008992934599518776, + 0.01393615547567606, + 0.021161356940865517, + -0.0042007737793028355, + 0.03160061687231064, + -0.019695747643709183, + -0.002535891719162464, + 0.009944295510649681, + 0.01351189985871315, + 0.016815951094031334, + -0.020492833107709885, + -0.009365765377879143, + -0.0020296776201575994, + 0.006710953079164028, + -0.013229062780737877, + -0.04900795593857765, + 0.003241377416998148, + -0.001480073668062687, + 0.018281562253832817, + 0.024092579260468483, + -0.028875097632408142, + -0.018680104985833168, + 0.035508912056684494, + -0.010947081260383129, + -0.032834816724061966, + 0.011480615474283695, + -0.01947719044983387, + 0.024491121992468834, + 0.013614749535918236, + 0.0027207001112401485, + -0.02526249550282955, + 0.028360847383737564, + 0.011956295929849148, + -0.0029794317670166492, + -0.013370481319725513, + 0.017163069918751717, + 0.012753382325172424, + -0.01236769463866949, + 0.0024346488062292337, + -0.03638313710689545, + -0.022408412769436836, + -0.03638313710689545, + 0.011062787845730782, + 0.004133278504014015, + 0.01706022024154663, + -0.01961860992014408, + 0.04039428010582924, + -0.010683529078960419, + -0.007913011126220226, + -0.04065140336751938, + -0.027306636795401573, + -0.014463260769844055, + 0.0171116441488266, + -0.031446341425180435, + -0.005309623666107655, + 0.001724342117086053, + 0.019297204911708832, + 0.002748019527643919, + 0.03095780685544014, + -0.007913011126220226, + -0.016481690108776093, + 0.0034743966534733772, + -0.023179786279797554, + 0.027692323550581932, + 0.008626531809568405, + 0.0021437767427414656, + -0.00044434351730160415, + -0.0010911726858466864, + 0.006710953079164028, + -0.009237202815711498, + 0.006437757983803749, + 0.01843583583831787, + -0.022678393870592117, + 0.006010288372635841, + 0.005891368258744478, + 0.012258416973054409, + 0.005901010241359472, + 0.012123426422476768, + -0.0044771828688681126, + 0.0016986295813694596, + -0.015118928626179695, + -0.008080141618847847, + 0.03602316230535507, + -0.03692309930920601, + 0.027383774518966675, + -0.010188563726842403, + 0.04041999205946922, + -0.014000436291098595, + 0.01706022024154663, + -0.01439897995442152, + -0.02604672499001026, + -0.02905508317053318, + 0.012547682039439678, + 0.0007826231303624809, + 0.019644321873784065, + -0.016057433560490608, + -0.00320441578514874, + 0.022279849275946617, + 0.013029791414737701, + 0.010259273461997509, + 0.005242128390818834, + 0.012798379175364971, + 0.015234635211527348, + 0.025005370378494263, + 0.0024057223927229643, + -0.6430172920227051, + -5.19773420819547e-05, + -0.0002129313361365348, + -3.634647555372794e-06, + 0.01928434707224369, + 0.012566966935992241, + 0.018525829538702965, + -7.708717021159828e-05, + -0.02006857842206955, + 0.04767090827226639, + -0.002137348521500826, + 0.0052967676892876625, + -0.018975798040628433, + -0.00986715778708458, + -0.0043679047375917435, + -0.01861582323908806, + -0.011564180254936218, + -0.0030131794046610594, + 0.01883438043296337, + 0.00012444431195035577, + 0.0027383773121982813, + 0.028617972508072853, + -0.0037925883661955595, + -0.004383975174278021, + 0.005145706702023745, + 0.01573602855205536, + -0.008137994445860386, + -0.02164989523589611, + 0.005592460744082928, + 0.014039005152881145, + -0.019451478496193886, + 0.010979222133755684, + -0.010207847692072392, + 0.011454902589321136, + 0.054921820759773254, + 0.012824091129004955, + -0.006260985042899847, + 0.007154493127018213, + 0.020621396601200104, + 0.003946863114833832, + -0.007424473762512207, + 5.689886893378571e-05, + -0.009070071391761303, + -0.0006914242403581738, + 0.01177630852907896, + 0.0183072742074728, + 0.041294217109680176, + -0.02812943607568741, + 0.0038054445758461952, + -0.025866739451885223, + 0.013589036650955677, + 0.0023478693328797817, + 0.007488755043596029, + 0.009475043043494225, + 0.009462187066674232, + 0.007096639834344387, + 0.022858379408717155, + -0.004686096683144569, + -0.008086569607257843, + -0.0006628994597122073, + -0.019695747643709183, + 0.003193166572600603, + 0.007482327055186033, + -0.02459397166967392, + -0.022395556792616844, + 0.04412258788943291, + -0.03314336761832237, + -0.014720385894179344, + -0.0010003754869103432, + -0.025956731289625168, + -0.026406699791550636, + 0.01586459018290043, + -0.0010365337366238236, + -0.01875724270939827, + 0.024555403739213943, + 0.010349266231060028, + 0.030469270423054695, + -0.012316269800066948, + 0.0008300304762087762, + 0.026072438806295395, + -0.002248233649879694, + -0.014578967355191708, + -0.01000214833766222, + 0.018975798040628433, + 0.023706890642642975, + -0.026535263285040855, + -0.011847017332911491, + 0.008491541258990765, + -0.016738813370466232, + 0.021675607189536095, + 0.01763875037431717, + 0.02144419401884079, + -0.02059568278491497, + -0.025095364078879356, + 0.016828807070851326, + 0.040702831000089645, + -0.010407119989395142, + 0.026663824915885925, + 0.010111426003277302, + -0.03664026036858559, + -0.01646883226931095, + 0.00021735066547989845, + 0.03962290659546852, + 0.00796443596482277, + 0.0016680960543453693, + -4.896416430710815e-05, + -0.009732167236506939, + 0.008054429665207863, + 0.034454699605703354, + -0.013293343596160412, + 0.004991432186216116, + -0.020428553223609924, + -0.01776731200516224, + -0.006270627025514841, + -0.01699593849480152, + -0.012637675739824772, + 0.025673894211649895, + -0.012772666290402412, + 0.003283160272985697, + 0.023231210187077522, + 0.022215569391846657, + -0.008755093440413475, + 0.023989729583263397, + -0.013923299498856068, + -0.018641537055373192, + 0.017034506425261497, + 0.0066145313903689384, + -0.0017146999016404152, + -0.007128780707716942, + -0.025995301082730293, + 0.008722953498363495, + 0.008311553858220577, + 0.03738592192530632, + -0.0011209027143195271, + 0.03103494457900524, + 0.004506109282374382, + 0.021804168820381165, + -0.02314121648669243, + -0.008350122720003128, + -0.004682882688939571, + -0.005849585402756929, + -0.002961754333227873, + -0.0025728533510118723, + -0.029106508940458298, + -0.02355261705815792, + -0.03556033596396446, + 0.002256268635392189, + 0.008960793726146221, + -0.0004957684432156384, + 0.001843262230977416, + -0.020017152652144432, + 0.002550354925915599, + -0.0007404385833069682, + 0.015196066349744797, + 0.003567604348063469, + 0.011204206384718418, + -0.00710306828841567, + -0.03036641888320446, + -0.021161356940865517, + -0.016121715307235718, + 0.006424902006983757, + 0.014077574014663696, + -0.03430042788386345, + -0.0014141855062916875, + -0.004242556635290384, + 0.003799016587436199, + -0.010053573176264763, + 0.022935517132282257, + -0.005586032755672932, + -0.02564818225800991, + -0.008793662302196026, + -0.02518535777926445, + -0.0029649685602635145, + 0.0022257352247834206, + -0.00809942651540041, + -0.007328052073717117, + -0.045819610357284546, + -0.011808449402451515, + -0.0036222434137016535, + -0.004875726066529751, + 0.013010506518185139, + -0.02537820115685463, + -0.006350978743284941, + -0.014051861129701138, + 0.027820885181427002, + 0.0024250068236142397, + 0.022536974400281906, + 0.002531070727854967, + -0.0009152030106633902, + 0.01433469820767641, + 0.006170991342514753, + 0.02361689880490303, + -0.018538685515522957, + 0.008562250062823296, + 0.001958968350663781, + -0.010709241032600403, + -0.006601674947887659, + 0.003455112222582102, + -0.009790020994842052, + 0.02616243250668049, + 0.04517680034041405, + 0.0005475951475091279, + 0.009700027294456959, + -0.005312837660312653, + 0.003686524461954832, + -0.038722969591617584, + 0.012669816613197327, + 0.009558608755469322, + 0.006260985042899847, + 0.008986505679786205, + 0.018474405631422997, + -0.01987573504447937, + -0.05160491541028023, + -0.008626531809568405, + -0.02008143439888954, + 0.03471182659268379, + -0.011094927787780762, + -0.005846371408551931, + 0.00323816342279315, + -0.018268706277012825, + 0.001973431557416916, + -0.001973431557416916, + 0.013601893559098244, + -0.011731311678886414, + -0.010252844542264938, + 0.0020344986114650965, + -0.021135644987225533, + 0.003911508712917566, + 0.0051360647194087505, + -0.0030854956712573767, + -0.007340908516198397, + 0.0012832126813009381, + -0.007205917965620756, + 0.008202276192605495, + 0.004162204917520285, + 0.020299989730119705, + 0.011184921488165855, + -0.015838878229260445, + 0.02473538927733898, + 0.010895656421780586, + 0.006350978743284941, + 0.006820231210440397, + 0.014296130277216434, + -0.00637990515679121, + 0.021495619788765907, + -0.002121278317645192, + 0.03450612723827362, + 0.01928434707224369, + 0.0014832877786830068, + 0.008947937749326229, + -0.013293343596160412, + 0.00938504934310913, + -0.007025930564850569, + 0.0028123008087277412, + 0.008536538109183311, + -0.02105850726366043, + 0.009526467882096767, + -0.021367058157920837, + 0.03417186439037323, + 0.029235070571303368, + 0.004940006881952286, + 0.018191568553447723, + -0.0004435399896465242, + -0.017343057319521904, + 0.006421688012778759, + -0.023629754781723022, + -0.01835869997739792, + -0.026920950040221214, + -0.008176563307642937, + 0.0010349266231060028, + 0.012470545247197151, + -0.02203558199107647, + -0.011390621773898602, + -0.013614749535918236, + 0.005380332935601473, + -0.016957370564341545, + 0.005727451294660568, + 0.017343057319521904, + 0.009667886421084404, + 0.010021432302892208, + -0.003737949300557375, + -0.012181279249489307, + -0.008343694731593132, + 0.031574904918670654, + -0.01613457128405571, + -0.02591816335916519, + 0.0009135959553532302, + -0.010689957067370415, + -0.02544248290359974, + -0.009873585775494576, + -0.012894800864160061, + 0.0071223522536456585, + -0.029492195695638657, + -0.016224564984440804, + 0.01613457128405571, + -0.013910442590713501, + 0.013357625342905521, + -0.011204206384718418, + -0.009127924218773842, + 0.009205061942338943, + 0.007334480062127113, + -0.007790876552462578, + 0.005512109491974115, + 0.0011321519268676639, + 0.0271009374409914, + 0.0009674314642325044, + -0.01587744615972042, + 0.002948898123577237, + -0.0027255211025476456, + -0.0019203996052965522, + -0.0012591072591021657, + -0.0192714910954237, + -0.0006452221423387527, + 0.01961860992014408, + -0.005836729425936937, + 0.019181497395038605, + 0.006489182822406292, + -0.01960575394332409, + 0.02617528848350048, + -0.0017018436919897795, + 0.009462187066674232, + -0.030726393684744835, + -0.00493357889354229, + 0.002913543488830328, + 0.04006001725792885, + 0.02027427777647972, + 0.007090211845934391, + 0.026265282183885574, + 0.02184273861348629, + 0.001430255826562643, + 0.0016922014765441418, + -0.03993145748972893, + 0.018050149083137512, + -0.0035097512882202864, + 0.01433469820767641, + 0.011943439021706581, + 0.017535900697112083, + -0.00710306828841567, + 0.005913866683840752, + -0.008247273042798042, + 0.017278775572776794, + -0.008864372037351131, + -0.006190275773406029, + 0.010651388205587864, + -0.0160702895373106, + 0.0025198215153068304, + 0.012798379175364971, + 0.057493068277835846, + 0.016931656748056412, + -0.0027721249498426914, + 0.03383760154247284, + -0.0010895656887441874, + 0.0001759696751832962, + -0.005499253049492836, + -0.007874442264437675, + 0.017098788172006607, + 0.00393400713801384, + 0.022845523431897163, + -0.016160283237695694, + -0.004027214832603931, + -0.003241377416998148, + -0.02846369706094265, + 0.039700042456388474, + -0.005322480108588934, + 0.03458326309919357, + 0.0029697895515710115, + 0.009172921068966389, + -0.016353126615285873, + 0.01098565012216568, + -0.014977510087192059, + -0.019117217510938644, + 0.015041790902614594, + -0.005338550079613924, + -0.02630385011434555, + 0.022639824077486992, + -0.010869944468140602, + -0.03363190218806267, + -0.003924364689737558, + -0.014257561415433884, + -0.016545969992876053, + 0.02629099413752556, + -0.02170131914317608, + 0.0037540197372436523, + -0.005839943420141935, + -0.03286052867770195, + -0.03720593452453613, + 0.0017950513865798712, + -0.007726595271378756, + -0.005553892347961664, + 0.002784981159493327, + -0.01374331209808588, + 0.015903158113360405, + -0.029337920248508453, + -0.006852371618151665, + 0.018525829538702965, + -0.014218992553651333, + -0.01712450012564659, + 0.024246852844953537, + -0.0006404010346159339, + 0.013769024051725864, + 0.007630173582583666, + -0.006357406731694937, + -0.009475043043494225, + -0.012541254051029682, + -0.007636601570993662, + -0.0011401870287954807, + 0.00575316371396184, + -0.00996357947587967, + -0.004878940060734749, + 0.015826022252440453, + -0.01551747228950262, + -0.02393830381333828, + -0.018320130184292793, + 0.016571683809161186, + -0.009449330158531666, + -0.011538468301296234, + 0.0193486288189888, + 0.008485113270580769, + -0.02833513543009758, + -0.016880232840776443, + 0.022511262446641922, + -0.0012534826528280973, + 0.019297204911708832, + -0.02977503277361393, + 0.021277064457535744, + 0.01664881967008114, + -0.010471400804817677, + -0.0038215150125324726, + 0.010220704600214958, + 0.018705816939473152, + -0.01992715895175934, + 0.002791409380733967, + -0.001165899564512074, + -0.011172065511345863, + 0.03147205710411072, + -0.01658453978598118, + 0.021328488364815712, + -0.008157279342412949, + -0.006527751684188843, + 0.0005773251759819686, + 0.015041790902614594, + 0.009025074541568756, + 0.023038366809487343, + 0.007328052073717117, + 0.009706455282866955, + -0.03219200298190117, + 0.029003659263253212, + 0.005904224701225758, + 0.020312845706939697, + 0.011172065511345863, + -0.009378621354699135, + 0.014694673009216785, + -0.03329763934016228, + -0.0017918372759595513, + 0.0054574706591665745, + 0.029235070571303368, + 0.008375834673643112, + -0.013004078529775143, + -0.006344550289213657, + -0.019052935764193535, + 0.016237420961260796, + 0.013177637942135334, + -0.02951790764927864, + -0.005817444995045662, + -0.008697240613400936, + -0.007893726229667664, + -0.006267413031309843, + 0.02643241360783577, + 0.032834816724061966, + -0.02170131914317608, + -0.017535900697112083, + -0.01499036606401205, + 9.058370778802782e-06, + 0.013016934506595135, + -0.026663824915885925, + -0.0171116441488266, + -0.02118707075715065, + 0.016893088817596436, + -0.004512537270784378, + -0.03424900025129318, + 0.021817024797201157, + -0.03070068173110485, + 0.006608103401958942, + 0.008626531809568405, + 0.0075530363246798515, + -0.01765160635113716, + 0.01771588809788227, + 0.0030951378867030144, + -0.009243630804121494, + -0.007874442264437675, + -0.020827095955610275, + 0.001883437973447144, + -0.04080567881464958, + 0.027563761919736862, + -0.002052176045253873, + 0.001356332446448505, + -0.0009457365376874804, + -0.002042533829808235, + 0.01842297986149788, + 0.028180859982967377, + -0.026998087763786316, + -0.027898022904992104, + -0.018152998760342598, + -0.04111422970890999, + -0.0149517972022295, + 0.022074149921536446, + -0.004271483048796654, + 0.02401544153690338, + -0.021919874474406242, + -0.008536538109183311, + 0.02144419401884079, + 0.008658671751618385, + -0.01397472433745861, + -0.004409687593579292, + 0.012875515967607498, + -0.019464334473013878, + 0.008806519210338593, + -0.0023896521888673306, + -0.00392115069553256, + -0.011172065511345863, + -0.0011554538505151868, + -0.024156859144568443, + -0.015170353464782238, + 0.018191568553447723, + -0.015350340865552425, + -0.009899298660457134, + 0.00114741874858737, + -0.011924155056476593, + -0.0022000225726515055, + -0.008414403535425663, + 0.006974505726248026, + -0.018924374133348465, + 0.02275552973151207, + 0.007340908516198397, + 0.0030903166625648737, + -0.007855157367885113, + -0.005074997432529926, + -0.015093216672539711, + 0.0351746492087841, + -0.009352908469736576, + -0.011982007883489132, + 0.030314994975924492, + -0.013344768434762955, + 4.15567665186245e-05, + 0.030057869851589203, + -0.009725739248096943, + 0.018461549654603004, + -0.0012735704658553004, + 0.049085091799497604, + 0.017690174281597137, + -0.017625894397497177, + -0.029595045372843742, + -0.040240004658699036, + -0.020042864605784416, + -0.011628462001681328, + 0.013190493918955326, + -0.02137991413474083, + 0.004011144395917654, + -0.029209358617663383, + 0.007495183032006025, + 0.016365982592105865, + -0.008144422434270382, + -0.01299122255295515, + 0.04288838803768158, + 0.0129526536911726, + -0.007726595271378756, + -0.005386760924011469, + -0.00770731084048748, + -0.003400473389774561, + -0.0007348139770328999, + 0.014784666709601879, + -0.01763875037431717, + -0.0034261858090758324, + -0.012573394924402237, + 0.0042104157619178295, + 0.048699405044317245, + -0.006878084037452936, + 0.02545533888041973, + -0.00098028767388314, + -0.011377764865756035, + -0.009880013763904572, + -0.03257768973708153, + -0.0030067511834204197, + 0.0057917325757443905, + -0.006665956228971481, + 0.038465846329927444, + 0.006180633325129747, + -0.008620103821158409, + 0.0030629972461611032, + -0.020608538761734962, + -0.008369406685233116, + 0.016944512724876404, + 0.013241918757557869, + 0.016931656748056412, + -0.007688026875257492, + -0.008420831523835659, + 0.003516179509460926, + 0.004821086768060923, + 0.006993790157139301, + -0.007244486827403307, + -0.01281766314059496, + -0.027255211025476456, + -0.008452972397208214, + -0.011043502949178219, + 0.009031502529978752, + 0.017394481226801872, + -0.017034506425261497, + -0.010786378756165504, + -0.00836297869682312, + -0.007919439114630222, + -0.03139491751790047, + -0.01653311401605606, + 0.008845087140798569, + -0.03219200298190117, + 0.008485113270580769, + 0.01717592589557171, + 0.0013707957696169615, + 0.03108636848628521, + -0.024156859144568443, + -0.0160702895373106, + -0.014566110447049141, + 0.029363634064793587, + -0.04067711904644966, + 0.041088517755270004, + 0.03412044048309326, + -0.00030533550307154655, + 0.02413114719092846, + 0.009327196516096592, + -0.004348620306700468, + -0.023064080625772476, + 0.02905508317053318, + 0.0007938723429106176, + -0.03412044048309326, + 0.006762377917766571, + -0.005849585402756929, + 0.01850011758506298, + -0.0050974958576262, + -0.014244704507291317, + 0.006418473552912474, + -0.0005548267508856952, + -0.014296130277216434, + -0.026355275884270668, + -0.010066429153084755, + 0.03738592192530632, + 0.014964654110372066, + -0.001394901191815734, + 0.03568889945745468, + -0.018525829538702965, + 0.014733241870999336, + -0.004653955809772015, + 0.0021116361021995544, + -0.010876372456550598, + -0.029826458543539047, + -0.01547890342772007, + 0.00011299422476440668, + 0.03527750074863434, + -0.012110570445656776, + 0.005926722660660744, + -0.019978584721684456, + -0.020184284076094627, + -0.010844231583178043, + 0.020711390301585197, + 0.018191568553447723, + 0.009693598374724388, + 0.014180423691868782, + 0.0030549620278179646, + -0.0016054220031946898, + 0.0032301282044500113, + 0.0035418919287621975, + -0.03183203190565109, + 0.004785732366144657, + -0.00898007769137621, + -0.03314336761832237, + -0.002942470135167241, + -0.007501611486077309, + 0.017150213941931725, + 0.0046989526599645615, + -0.020878519862890244, + -0.005486397072672844, + 0.006903796456754208, + -0.0337347537279129, + -0.02058282680809498, + -0.0077137392945587635, + -0.012348410673439503, + 0.009127924218773842, + 0.023668322712183, + -0.00977073609828949, + 0.0422198660671711, + -0.013267631642520428, + 0.04347977787256241, + -0.024645395576953888, + -0.01613457128405571, + 0.005936365108937025, + -0.018641537055373192, + 0.03826014697551727, + 0.018512973561882973, + -0.02368117868900299, + 0.008208704181015491, + 0.02347547933459282, + -0.007771592121571302, + -0.008215132169425488, + 0.01888580434024334, + 0.003959719557315111, + -0.013016934506595135, + -0.010407119989395142, + 0.019245779141783714, + -0.005454256199300289, + 0.0007091015577316284, + 0.012734097428619862, + -0.03625457361340523, + 0.014797522686421871, + 0.018705816939473152, + 0.0017034506890922785, + -0.03471182659268379, + -0.01797301135957241, + 0.00977073609828949, + -0.01896294206380844, + -0.01652025803923607, + 0.014656104147434235, + -0.030674969777464867, + -0.0149517972022295, + -0.013601893559098244, + 0.03170346841216087, + 0.01613457128405571, + 0.0023141216952353716, + 0.02353976108133793, + 0.0194257665425539, + -0.025943875312805176, + -0.006807374767959118, + 0.005942793097347021, + -0.04481682553887367, + -0.007913011126220226, + 0.013409050181508064, + 0.005669598467648029, + 0.023205498233437538, + -0.007598033174872398, + 0.02427256666123867, + -0.012811235152184963, + 0.002829978009685874, + -0.02681810036301613, + -0.01712450012564659, + -0.018641537055373192, + 0.016828807070851326, + 0.034480415284633636, + -0.02497965842485428, + 0.009828588925302029, + 0.01541462168097496, + -0.005856013391166925, + 0.006315623875707388, + -0.023102648556232452, + 0.016301702708005905, + -0.042862676084041595, + -0.01252839807420969, + 0.004592888988554478, + -0.007463042624294758, + -0.011075643822550774, + 0.000632365932688117, + -0.013203349895775318, + -0.008067285642027855, + 0.03530321270227432, + 0.19757457077503204, + -0.008407975547015667, + -0.015916015952825546, + 0.009661458432674408, + -0.018345842137932777, + -0.009796448983252048, + 0.0329376645386219, + 0.00023482710821554065, + 0.00038709311047568917, + 0.026149576529860497, + -0.02008143439888954, + 0.010632103309035301, + 0.028309423476457596, + 0.011551324278116226, + 0.02099422737956047, + -0.027435198426246643, + -0.033554766327142715, + 0.003233342431485653, + -0.015003222972154617, + 0.024953946471214294, + 0.020839951932430267, + -0.010934225283563137, + -0.006579176522791386, + -0.02472253330051899, + 0.04407116398215294, + -0.0007380280876532197, + -0.002169489162042737, + 0.006553464103490114, + 0.026213856413960457, + -0.0006162956124171615, + -0.009558608755469322, + 0.004258626606315374, + -0.004547892138361931, + -0.008992934599518776, + -0.012091286480426788, + -0.01314549706876278, + 0.015388909727334976, + -0.029080796986818314, + 0.011371336877346039, + 0.025133933871984482, + 0.01725306361913681, + 0.01065781619399786, + -0.0038407992105931044, + -0.011699170805513859, + 0.010805662721395493, + 0.042348429560661316, + -0.007366620935499668, + -0.011146352626383305, + -0.006588818971067667, + -0.015491759404540062, + -0.010394263081252575, + -0.006389547139406204, + 0.015440334565937519, + 0.04689953476190567, + -0.021624181419610977, + -0.012213420122861862, + 0.011416333727538586, + -0.01524749118834734, + -0.007913011126220226, + 0.007418045774102211, + -0.02518535777926445, + 0.014900372363626957, + -0.008742237463593483, + 0.029826458543539047, + -0.008189419284462929, + 0.00829226989299059, + -0.03620314970612526, + 0.0017757670721039176, + 0.001439897925592959, + -0.0041975597850978374, + -0.015916015952825546, + -0.017021650448441505, + -0.027975160628557205, + 0.026380987837910652, + -0.00687165604904294, + -0.025082508102059364, + 0.011808449402451515, + 0.01902722381055355, + 0.018011581152677536, + 0.014977510087192059, + -0.024748247116804123, + 0.0010927796829491854, + -0.010246416553854942, + -0.0458967462182045, + 0.008626531809568405, + -0.040111444890499115, + 0.033554766327142715, + 0.004088281653821468, + -0.02229270525276661, + -0.029080796986818314, + 0.006691668648272753, + 0.012708385474979877, + 0.006582390516996384, + -0.005325694102793932, + 0.012515542097389698, + 0.005566748324781656, + 0.014411835931241512, + 0.006064927205443382, + -0.01518320944160223, + 0.015041790902614594, + -0.013068359345197678, + 0.05201631411910057, + 0.01888580434024334, + -0.015491759404540062, + 0.004059355240315199, + -0.0007364210323430598, + -0.033091939985752106, + 0.010934225283563137, + 0.001234198221936822, + -0.032114867120981216, + 0.002050569048151374, + -0.012804807163774967, + 0.010027861222624779, + -0.0101949917152524, + -0.007160921115428209, + 0.02728092484176159, + 0.0033490483183413744, + -0.005949221085757017, + -0.013961867429316044, + -0.008665100671350956, + -0.01069638505578041, + -0.005155349150300026, + 0.003406901378184557, + -0.001042158342897892, + 0.0003435024409554899, + -0.013421906158328056, + -0.017728744074702263, + 0.0008854729821905494, + -0.022459836676716805, + -0.007675170432776213, + 0.02413114719092846, + -0.03257768973708153, + -0.0007320016738958657, + 0.002257875632494688, + 0.0036929526831954718, + 0.028900809586048126, + 0.0024250068236142397, + -0.022665536031126976, + 0.006113138049840927, + 0.005409259349107742, + 0.0019107575062662363, + -0.011949867941439152, + 0.0053064096719026566, + -0.012239133007824421, + 0.03252626582980156, + -0.012123426422476768, + 0.014720385894179344, + -0.003908294718712568, + -0.01505464781075716, + -0.016610251739621162, + 0.006045643240213394, + -0.021534187719225883, + -0.0003318514791317284, + -0.007810160983353853, + 0.01824299246072769, + 0.008632959797978401, + -0.023051224648952484, + -0.02204843796789646, + 0.020017152652144432, + 0.020518546923995018, + -0.004422543570399284, + -0.0027737319469451904, + -0.011094927787780762, + -0.018808666616678238, + -0.012611963786184788, + 0.017021650448441505, + -0.16106286644935608, + 0.007501611486077309, + 0.023051224648952484, + -0.040625691413879395, + 0.011866302229464054, + 0.004396831151098013, + 0.0039790039882063866, + -0.0009955544956028461, + -0.020891377702355385, + -0.013653318397700787, + 0.035843174904584885, + 0.008382263593375683, + -0.028232285752892494, + -0.011493471451103687, + -0.007630173582583666, + 0.012926940806210041, + -0.0237454604357481, + 0.04399402439594269, + 0.006479540839791298, + 0.016365982592105865, + 0.02275552973151207, + -0.02505679614841938, + 0.008317981846630573, + -0.012476973235607147, + 0.00493357889354229, + 0.007340908516198397, + -0.013004078529775143, + 0.023951159790158272, + -0.0011739346664398909, + -0.01573602855205536, + -0.01928434707224369, + 0.0072252023965120316, + 0.03532892465591431, + 0.014784666709601879, + -0.007019502576440573, + -0.00196057534776628, + 0.004281125031411648, + -0.019335772842168808, + -0.009269342757761478, + 0.03568889945745468, + 0.03147205710411072, + -0.004727879073470831, + 0.009738595224916935, + 0.006672384217381477, + -0.03365761414170265, + 0.013100500218570232, + 0.010188563726842403, + -0.006524537689983845, + -0.004573604557663202, + -0.011255631223320961, + 0.007630173582583666, + -0.010182135738432407, + -0.012014148756861687, + 0.006440971978008747, + -0.019322916865348816, + 0.017818737775087357, + 0.004406473599374294, + -0.0030597832519561052, + -0.008317981846630573, + 0.0033490483183413744, + -0.008510825224220753, + -0.016365982592105865, + 0.009230774827301502, + 0.011827733367681503, + 0.004223272204399109, + -0.01433469820767641, + 0.004175061360001564, + 0.008581534959375858, + -0.008137994445860386, + -0.0067945183254778385, + -0.017214493826031685, + -0.002878188854083419, + 0.009057215414941311, + 0.009648602455854416, + -0.0018593325512483716, + -0.01420613657683134, + -0.0036254574079066515, + 0.00392115069553256, + 0.0066273873671889305, + -0.014180423691868782, + -0.02184273861348629, + 0.06314980983734131, + -0.02707522362470627, + -0.0034101156052201986, + -0.005884940270334482, + -0.009854301810264587, + -0.005923508666455746, + 0.0020344986114650965, + 0.0026917734649032354, + 0.013241918757557869, + 0.00901864655315876, + -0.023128360509872437, + -0.02145705185830593, + -0.008562250062823296, + -0.005319266114383936, + -0.023231210187077522, + -0.0062802694737911224, + 0.014077574014663696, + -0.00506856944411993, + -0.02110993303358555, + 0.014746097847819328, + -0.008613674901425838, + -0.027049511671066284, + -0.0010895656887441874, + 0.003770089941099286, + 0.024246852844953537, + -0.003946863114833832, + -0.0031304925214499235, + 0.017818737775087357, + -0.003728307317942381, + -0.024439696222543716, + -0.011191349476575851, + 0.019914302974939346, + 0.0015893516829237342, + -0.0023510833270847797, + -0.0028460484463721514, + 0.006350978743284941, + -0.023771172389388084, + 0.002781767165288329, + 0.0059685055166482925, + 0.019914302974939346, + -0.010966366156935692, + -0.011069215834140778, + 0.008440116420388222, + 0.002701415680348873, + -0.030674969777464867, + -0.09122782200574875, + 0.010374979116022587, + 0.028746534138917923, + 0.02735806070268154, + 0.03396616503596306, + 0.02040283940732479, + -0.008665100671350956, + 0.003718665102496743, + -0.005901010241359472, + 0.010079286061227322, + -0.04651384800672531, + -0.009134353138506413, + 0.0049175089225173, + 0.0036736682523041964, + 0.03172918036580086, + -0.026123862713575363, + -0.0025166072882711887, + -0.04072854295372963, + -0.03139491751790047, + 0.018937230110168457, + 0.03116350620985031, + -0.006974505726248026, + -0.03147205710411072, + -0.023925447836518288, + -0.013055503368377686, + 0.0107928067445755, + -0.03280910477042198, + 0.013409050181508064, + 0.017561612650752068, + -0.00418148934841156, + 0.01171202678233385, + -0.014836091548204422, + 0.009610033594071865, + -0.028155148029327393, + 0.013807592913508415, + -0.010921369306743145, + -0.004332550335675478, + -0.016237420961260796, + 0.018191568553447723, + -0.029106508940458298, + -0.0012751774629577994, + -0.01486180443316698, + 0.018551543354988098, + -0.023462623357772827, + 0.009610033594071865, + -0.023436911404132843, + -0.004946435336023569, + -0.0015499794390052557, + 0.004692524671554565, + -0.013897586613893509, + -0.03188345581293106, + -0.011949867941439152, + 0.008433688431978226, + 0.01869296096265316, + 0.001167506561614573, + 0.012611963786184788, + 0.003908294718712568, + -0.007469470612704754, + -0.022061293944716454, + 0.010741381905972958, + -0.013923299498856068, + 0.019785741344094276, + -0.036305997520685196, + 0.016841663047671318, + 0.016443120315670967, + 0.0007187437149696052, + -0.02681810036301613, + -0.003702594665810466, + 0.01922006718814373, + -0.01763875037431717, + -0.01177630852907896, + 0.016224564984440804, + -0.0059685055166482925, + 0.000655667798127979, + -0.01547890342772007, + 0.023398341611027718, + -0.03219200298190117, + -0.008947937749326229, + 0.017150213941931725, + -0.01679023914039135, + -0.016674533486366272, + -0.020042864605784416, + 0.011602749116718769, + -0.009282199665904045, + 0.02931220829486847, + 0.010632103309035301, + 0.003715451108291745, + -0.023771172389388084, + 0.026663824915885925, + -0.011069215834140778, + 0.020441409200429916, + -0.0029730035457760096, + 0.02353976108133793, + 0.007598033174872398, + 0.01646883226931095, + 0.01783159375190735, + 0.016494546085596085, + -0.011069215834140778, + 0.01699593849480152, + 0.0012052716920152307, + -0.017600180581212044, + -0.008472256362438202, + -0.051116377115249634, + 0.015003222972154617, + 0.019837165251374245, + 0.005171419121325016, + -0.0159931518137455, + 0.0038568696472793818, + 0.006421688012778759, + 0.00762374559417367, + -0.0019187926081940532, + 0.007913011126220226, + -0.014437548816204071, + 0.016173139214515686, + -0.00934648048132658, + -0.012123426422476768, + -0.033554766327142715, + 0.0021807383745908737, + -0.0012631247518584132, + 0.01909150369465351, + 0.02510822005569935, + 0.000678969721775502, + -0.003196380566805601, + -0.016494546085596085, + -0.005332122091203928, + 0.034197576344013214, + -0.023102648556232452, + 0.003117636311799288, + -0.006633815821260214, + 0.0016295274253934622, + 0.01272124145179987, + -0.012380551546812057, + 0.016096001490950584, + 0.005659956019371748, + -0.006151706911623478, + -0.011429189704358578, + -0.004351834300905466, + -0.004544678144156933, + 0.01922006718814373, + 0.026792386546730995, + 0.004676454234868288, + 0.0791429653763771, + -0.02104565128684044, + -0.016365982592105865, + 0.008472256362438202, + -0.022202711552381516, + -0.0051296367309987545, + -0.016610251739621162, + -0.003242984414100647, + -0.005830300971865654, + 0.015594609081745148, + -0.025365345180034637, + 0.03442898765206337, + 0.011750595644116402, + -0.0012317877262830734, + 3.495288183330558e-05, + 0.014308986254036427, + -0.03823443502187729, + 0.006260985042899847, + 0.01573602855205536, + 0.0056342436000704765, + -0.02302551083266735, + 0.04281125217676163, + -0.009230774827301502, + 0.009970007464289665, + 0.015003222972154617, + 0.020955657586455345, + -0.020222852006554604, + -0.013306199572980404, + -0.0061356364749372005, + -0.010683529078960419, + -0.004811444785445929, + -0.01560746505856514, + -0.015568897128105164, + 0.006730237510055304, + 0.03543177619576454, + -0.00392115069553256, + -0.011191349476575851, + 0.011840589344501495, + -0.0033458343241363764, + -0.0022707318421453238, + 0.02361689880490303, + 0.014784666709601879, + 0.020544258877635002, + -0.013383337296545506, + 0.005084639880806208, + 0.012399835512042046, + 0.005393189378082752, + 0.004878940060734749, + -0.009288627654314041, + -0.022794099524617195, + -0.0019187926081940532, + 0.011795592494308949, + 0.007250914815813303, + 0.010953509248793125, + -0.021161356940865517, + 0.011480615474283695, + 0.009430046193301678, + 0.01501607894897461, + -0.0032461986411362886, + 0.007893726229667664, + 0.027306636795401573, + 0.003114422084763646, + -0.008015860803425312, + 0.004660384263843298, + -0.020055722445249557, + -0.018872948363423347, + -0.000981894670985639, + -0.005479968618601561, + -0.02531392127275467, + 0.0008959186379797757, + 0.01848726160824299, + -0.028617972508072853, + 0.029080796986818314, + -0.0027753389440476894, + 0.005743521731346846, + -0.03733449801802635, + 0.049085091799497604, + -0.01463039219379425, + -0.008915796875953674, + -0.030726393684744835, + 0.026213856413960457, + 0.017008794471621513, + 0.012997650541365147, + 0.009295055642724037, + -0.01065781619399786, + 0.01560746505856514, + 0.016828807070851326, + 0.025133933871984482, + 0.006412045564502478, + 0.008452972397208214, + -0.0024812526535242796, + 0.009590748697519302, + 0.004490038845688105, + -0.024182572960853577, + -0.018127286806702614, + -0.03142062947154045, + -0.01658453978598118, + 0.017150213941931725, + 0.021431338042020798, + 0.026201000437140465, + 0.08989077061414719, + 0.03671739995479584, + -0.010143566876649857, + 0.012824091129004955, + -0.0015323021216318011, + 0.016635963693261147, + 0.003737949300557375, + 0.015710314735770226, + 0.00845940038561821, + -0.04563962295651436, + 0.003072639461606741, + -0.009590748697519302, + 0.010021432302892208, + -0.032037731260061264, + -0.004226486198604107, + 0.016893088817596436, + 0.0009915368864312768, + -0.0021148500964045525, + -0.008510825224220753, + 0.023449767380952835, + 0.038800109177827835, + -0.014874660409986973, + 0.014900372363626957, + 0.023771172389388084, + -0.029955020174384117, + -0.012277701869606972, + 0.01901436783373356, + -0.007173777557909489, + -0.008343694731593132, + 0.014566110447049141, + -0.011416333727538586, + -0.00258249556645751, + -0.058264441788196564, + -0.01843583583831787, + 0.028746534138917923, + -0.008144422434270382, + -0.006273841019719839, + -0.02013285830616951, + 0.014141854830086231, + -0.010805662721395493, + 0.019772885367274284, + 0.0203899834305048, + -0.014643248170614243, + -0.011319912038743496, + -0.01706022024154663, + -0.010259273461997509, + -0.0006785679724998772, + -0.025133933871984482, + -0.025429626926779747 + ], + "metadata": { + "source": "Kreye_Marieke_BA_241_V2.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 17, + "has_images": true, + "image_count": 98, + "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", + "links": [], + "last_modified": "2025-05-05T23:00:23", + "_known_field_names": "frozenset({'is_continuation', 'sent_to', 'header_footer_type', 'email_message_id', 'filename', 'languages', 'detection_class_prob', 'sent_from', 'link_texts', 'cc_recipient', 'subject', 'image_mime_type', 'image_path', 'filetype', 'page_number', 'last_modified', 'signature', 'detection_origin', 'text_as_html', 'attached_to_filename', 'bcc_recipient', 'data_source', 'link_start_indexes', 'category_depth', 'emphasized_text_tags', 'parent_id', 'orig_elements', 'page_name', 'coordinates', 'url', 'link_urls', 'file_directory', 'links', 'table_as_cells', 'emphasized_text_contents', 'key_value_pairs', 'image_base64'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "Kreye_Marieke_BA_241_V2.pdf", + "detection_class_prob": 0.3422867953777313, + "parent_id": "e02392183bc6851689602ad4b9f6039f", + "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", + "id": "ce00eae5-7e07-454f-9e4f-f79ac36f92f4", + "processing_timestamp": "2025-05-05T23:15:46.977945", + "chunk_number": 2, + "total_chunks": 56, + "chunking_strategy": "hybrid", + "word_count": 482 + } +} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000003.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000003.json new file mode 100644 index 0000000000000000000000000000000000000000..03fb1265603f63252c2a2a80cdd3702e457602eb --- /dev/null +++ b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000003.json @@ -0,0 +1,1570 @@ +{ + "id": "61a115b2-0ff7-441a-f6d9-eb3d00000003", + "content": "Bott et al. 2018 definieren den Begriff der Nachhaltigkeit als eine enge Verkn\u00fcpfung der drei Dimensionen \u00d6kologie, \u00d6konomie und Soziales. Als zentralen Gedanken formulieren Bott et al., dass \u201eohne den Schutz der Umwelt und die nachhaltige Nutzung der zu Verf\u00fcgung stehenden Ressourcen [\u2026] eine Gesellschaft nicht [langfristig] \u00fcberlebensf\u00e4hig [ist]\u201c (vgl. Bott et al. 2018, S. 13). Leistungen der Natur, die den Menschen direkt oder indirekt in wirtschaftlicher, materieller, gesundheitlicher und psychologischer Hinsicht beeinflussen, werden unter dem Begriff der \u00d6kosystemdienstleistungen zusammengefasst und wirken in allen drei Bereichen der Nachhaltigkeit (vgl. Kampusch 2018, S. 18). Der Erhalt dieser \u00d6kosystemdienstleistungen spielt f\u00fcr eine nachhaltige Stadtentwicklung eine zentrale Rolle. Um St\u00e4dte an zuk\u00fcnftige Gegebenheiten anzupassen, ist es unabdingbar, alle drei Dimensionen der Nachhaltigkeit in einem ganzheitlichen Rahmen zu betrachten und integriert zu denken. Zuk\u00fcnftige Stadtplanung muss das Ziel verfolgen die Lebensqualit\u00e4t gegenw\u00e4rtiger sowie zuk\u00fcnftiger Generationen zu gew\u00e4hrleisten (vgl. Bott et al. 2018, S. 13). 2.1.1 Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene Auf internationaler sowie nationaler Ebene gibt es verschiedene Strategiepapiere und Handlungsanweisungen zur Integration einer nachhaltigen Stadtentwicklung in den Planungsprozess. Im internationalen Kontext sind die Ziele der nachhaltigen Entwicklung (engl. Sustainable Development Goals, SDG) der Vereinten Nationen (United Nations, UN), die Neue Urbane Agenda und die Leipzig Charta 2020 zu nennen. Auf nationaler Ebene nehmen sich die Deutsche Nachhaltigkeitsstrategie und die Deutsche Stadtentwicklungspolitik dieses Themas an. Die Vereinten Nationen definierten 2015 im Rahmen der Agenda 2030 siebzehn Ziele mit 169 Unterzielen einer nachhaltigen Entwicklung, die sogenannten Sustainable Development Goals (SDG). Die Weltgemeinschaft m\u00f6chte mit der Umsetzung der SDG erreichen, dass auf der ganzen Welt menschenw\u00fcrdiges Leben m\u00f6glich ist und die nat\u00fcrliche Lebensgrundlage gewahrt wird. Durch die Sicherung von Frieden und Wohlstand f\u00fcr den Menschen und einen verantwortungsvollen Umgang mit den Ressourcen der Natur soll insgesamt global ein menschenw\u00fcrdiger Lebensstandard erreicht werden. (vgl. United Nations 2024)\n3\nTheorieteil\nDie Agenda 2030 definiert unter anderem auch Ziele f\u00fcr die Entwicklung von urbanen Gebieten. Das SDG 11 nachhaltige St\u00e4dte und Gemeinden bezieht sich auf die nachhaltige Stadtentwicklung. Es verfolgt eine inklusive, sichere, widerstandsf\u00e4hige und nachhaltige Gestaltung von St\u00e4dten und Siedlungen. (\u201eMake cities and humans settlements inclusive, safe, resilient and sustainable\u201c (United Nations 2024)). In den zehn Unterzielen des SDG 11 werden alle drei Dimensionen der Nachhaltigkeit gleicherma\u00dfen ber\u00fccksichtigt.", + "embedding": [ + 0.015611442737281322, + 0.004443502984941006, + 0.018541786819696426, + 0.007556194439530373, + -0.005220876075327396, + 0.011055972427129745, + -0.012777070514857769, + 0.023353183642029762, + -0.018938472494482994, + -0.03603428229689598, + 0.02332759089767933, + 0.018349843099713326, + -0.011951711028814316, + -0.0058191013522446156, + -0.008234396576881409, + -0.0074090370908379555, + 0.04051297530531883, + -0.024082569405436516, + 0.006679650396108627, + -0.0029335436411201954, + -0.015764998272061348, + 0.00638533616438508, + 0.016942255198955536, + -0.010524927638471127, + 0.001642720540985465, + 0.021625688299536705, + 0.03135084733366966, + -0.017927566543221474, + -0.005067321006208658, + 0.003803689731284976, + -0.0017130998894572258, + -0.012508348561823368, + -0.003114291001111269, + 0.013154559768736362, + -0.013372096233069897, + 0.004766608588397503, + -0.01911761984229088, + -0.0057743145152926445, + 0.006276567932218313, + -0.004481891635805368, + -0.002026608446612954, + -0.0011476649669930339, + 0.002498470712453127, + -0.008208803832530975, + -0.015022815205156803, + 0.04181819409132004, + -0.007063538301736116, + -0.004334734752774239, + -0.02769111655652523, + 0.007345056161284447, + 0.02643708325922489, + 0.04166463762521744, + -0.02620675042271614, + 0.006724437233060598, + -0.004085207358002663, + -0.002376906108111143, + -0.04547792673110962, + -0.0015443492447957397, + 0.017697233706712723, + -0.03334706649184227, + -0.028382115066051483, + -0.00273040309548378, + -0.017991548404097557, + 0.03728831559419632, + -0.038593534380197525, + -0.012226831167936325, + -0.034345176070928574, + -0.002468079561367631, + 0.010819241404533386, + -0.0018906481564044952, + 0.03365417569875717, + 0.02835652232170105, + 0.04145989939570427, + 0.0017226971685886383, + 0.027358414605259895, + 0.007229889743030071, + 0.002346514957025647, + 0.002842370420694351, + 0.002516065491363406, + 0.010448150336742401, + 0.003467787755653262, + -0.020934689790010452, + -0.03224658593535423, + 0.03355180472135544, + 0.020026154816150665, + 0.03127407282590866, + -0.018324250355362892, + 0.013487262651324272, + 0.01522755529731512, + 0.0013276124373078346, + -0.0019274373771622777, + -0.0076841567642986774, + -0.008611885830760002, + 0.02277735061943531, + -0.010691279545426369, + 0.0035221718717366457, + -0.0012844250304624438, + 0.0014195856638252735, + 0.010729667730629444, + -0.022649388760328293, + -0.02165127918124199, + 0.020614782348275185, + -0.007223491556942463, + -0.01037777028977871, + -0.020717153325676918, + -0.003191068535670638, + -0.0068587977439165115, + 0.022841332480311394, + 0.027281636372208595, + -0.016942255198955536, + -0.019258378073573112, + 0.03429399058222771, + -0.016212867572903633, + -0.0202436912804842, + 0.013071384280920029, + -0.01630244217813015, + -0.005438412539660931, + 0.0003682925016619265, + 0.002816777676343918, + -0.009258097968995571, + 0.015176369808614254, + 0.009162125177681446, + 0.004072411451488733, + -0.01677590236067772, + 0.00832397025078535, + 0.0017914770869538188, + 0.0021721660159528255, + 0.005812703166157007, + -0.027435190975666046, + -0.02456882782280445, + -0.027972634881734848, + 0.01809391751885414, + 0.0006630064453929663, + 0.010825639590620995, + -0.019475914537906647, + 0.014715704135596752, + -0.01595694199204445, + 0.013256930746138096, + -0.023801052942872047, + -0.04519640654325485, + 0.013576837256550789, + 0.017031827941536903, + -0.03022477775812149, + -0.013512855395674706, + 0.023378776386380196, + 0.02094748616218567, + 0.0045650675892829895, + 0.0332958810031414, + 0.004888173192739487, + 0.008823024109005928, + 0.006634863093495369, + -0.021894408389925957, + 0.01696784794330597, + -0.005537583492696285, + -0.01864415779709816, + -0.0030039232224226, + -0.005048126447945833, + 0.011023982428014278, + -0.009008570574223995, + -0.013167356140911579, + 0.015867367386817932, + -0.026820970699191093, + -0.00622218381613493, + -0.012393182143568993, + 0.01673751510679722, + 0.0056687453761696815, + 0.014843666926026344, + 0.017799604684114456, + -0.00479540042579174, + -0.012034887447953224, + -0.0205124132335186, + 0.03565039485692978, + -0.03096695989370346, + 0.02886837348341942, + -0.01837543584406376, + -0.0005994250532239676, + 0.017300549894571304, + 0.011382277123630047, + -0.03311673179268837, + -0.018618565052747726, + -0.00017334939911961555, + 0.022137537598609924, + 0.00527526019141078, + 0.027819080278277397, + -0.020845115184783936, + 0.002264938782900572, + 0.02106265164911747, + 0.015470684505999088, + 0.023110054433345795, + 0.007389842998236418, + -0.0007641769479960203, + 0.007626574020832777, + 0.0100450674071908, + -0.013717595487833023, + -0.6375610828399658, + -0.007389842998236418, + 0.01191332284361124, + -0.029892073944211006, + 0.02456882782280445, + 0.02601480670273304, + 0.023135647177696228, + -0.00699955690652132, + -0.012118062935769558, + 0.037774574011564255, + -0.015253148041665554, + 0.001627524965442717, + -0.02784467302262783, + -0.013819965533912182, + -0.006711640860885382, + -0.008176812902092934, + 0.006935575511306524, + -0.02066596783697605, + 0.03549683839082718, + 0.008925395086407661, + -0.01078085321933031, + 0.021420946344733238, + -0.00527526019141078, + -0.007716147694736719, + 0.010812844149768353, + 0.028842780739068985, + 0.006356544326990843, + -0.02616836130619049, + 0.020499616861343384, + 0.02289251796901226, + -0.012290812097489834, + 0.00955241173505783, + -0.027947042137384415, + 0.014882056042551994, + 0.04652721807360649, + 0.01466451957821846, + -0.016366422176361084, + 0.008970181457698345, + 0.0010061062639579177, + 0.008157618343830109, + -0.0008293578866869211, + -0.008739848621189594, + -0.006548488512635231, + -0.006484507117420435, + 0.014242243021726608, + 0.017569271847605705, + 0.04099923372268677, + -0.019757432863116264, + -0.004382720682770014, + -0.0246839951723814, + 0.002234547631815076, + -0.022380666807293892, + 0.016289645805954933, + 0.009840327315032482, + 0.016430404037237167, + -0.009104542434215546, + 0.020026154816150665, + -0.0162640530616045, + 0.01669912599027157, + -0.005844694096595049, + 0.012034887447953224, + -0.010153835639357567, + -0.0015707415295764804, + -0.02083231881260872, + -0.01101758424192667, + 0.06172918155789375, + -0.0332958810031414, + 0.01911761984229088, + -0.0010213018395006657, + -0.008573497645556927, + -0.010230613872408867, + 0.030020037665963173, + 0.011119954288005829, + -0.031606774777173996, + 0.009565208107233047, + 0.0201669130474329, + 0.03155558928847313, + -0.008515913970768452, + -0.010761658661067486, + 0.016519978642463684, + -0.0014035903150215745, + -0.02144653908908367, + -0.0071275196969509125, + -0.0057999067939817905, + 0.036648500710725784, + -0.02117781899869442, + -0.014459779486060143, + -0.0038740690797567368, + -0.002223351038992405, + 0.02176644653081894, + 0.026232343167066574, + 0.007543398067355156, + 0.005323246121406555, + -0.01267470046877861, + 0.002327320631593466, + 0.03690442815423012, + -0.02643708325922489, + 0.019565489143133163, + 0.005902277305722237, + -0.030403925105929375, + -0.028023820370435715, + 0.009014968760311604, + 0.03572717308998108, + 0.005192084237933159, + -0.0026296323630958796, + 0.004302743822336197, + -0.006356544326990843, + 0.01158061996102333, + 0.04831869527697563, + -0.022636592388153076, + 0.008976579643785954, + -0.0019658261444419622, + -0.013071384280920029, + -0.008202405646443367, + -0.016443200409412384, + -0.012412376701831818, + 0.038081683218479156, + -0.022866925224661827, + 0.003128686686977744, + 0.024696791544556618, + 0.00046266496065072715, + -0.00588948093354702, + 0.029892073944211006, + -0.017530882731080055, + -0.015137981623411179, + 0.03536887466907501, + -0.013794373720884323, + 0.023724274709820747, + -0.024415273219347, + -0.01653277315199375, + 0.0030647055245935917, + -0.002191360341385007, + 0.02117781899869442, + -0.008605487644672394, + 0.03467787802219391, + 0.00023833043815102428, + 0.00699955690652132, + -0.006209387443959713, + -0.017146995291113853, + -0.026897748932242393, + 0.0010308991186320782, + -0.0075114076025784016, + 0.00021693667804356664, + -0.04987984150648117, + -0.02776789478957653, + -0.01634082943201065, + -0.01051213126629591, + -0.011036778800189495, + -0.017146995291113853, + 0.006769224070012569, + -0.025950824841856956, + -0.004517081659287214, + -0.01630244217813015, + 0.030787812545895576, + 0.010281798429787159, + -0.000705394078977406, + 0.0006614069570787251, + -0.013487262651324272, + -0.020640375092625618, + -0.019130416214466095, + 0.003467787755653262, + 0.015931349247694016, + -0.040001124143600464, + -0.020256487652659416, + 0.00023733072157483548, + -7.3915925895562395e-06, + -0.001366001321002841, + 0.014690112322568893, + -0.008490321226418018, + -0.047167032957077026, + -0.011023982428014278, + -0.025528548285365105, + -0.015176369808614254, + 0.008567099459469318, + 0.011746970936655998, + -0.010953602381050587, + -0.03565039485692978, + -0.014856463298201561, + 0.018004344776272774, + 0.005563176237046719, + 0.013116171583533287, + -0.030250370502471924, + -0.02620675042271614, + 0.000345099251717329, + 0.022278297692537308, + -0.014165464788675308, + 0.0011452656472101808, + 0.007914490066468716, + 0.008317572064697742, + 0.010166632011532784, + 0.01852899231016636, + 0.03022477775812149, + -0.007716147694736719, + 0.006884390488266945, + -0.012745079584419727, + -0.010544122196733952, + -0.022982090711593628, + -0.004171582404524088, + -0.012258822098374367, + 0.02247024141252041, + 0.05558697506785393, + 0.011119954288005829, + -0.001288423896767199, + -0.0018234677845612168, + 0.0039508468471467495, + -0.01548347994685173, + -1.6682630302966572e-05, + 0.0005074518849141896, + 0.013090578839182854, + -0.002839171327650547, + 0.029584964737296104, + -0.014741296879947186, + -0.041050419211387634, + -0.011919721029698849, + -0.012892236933112144, + 0.045068442821502686, + -0.006577279884368181, + 0.005902277305722237, + -0.012789866887032986, + -0.011369481682777405, + 0.01413987297564745, + -0.0029527381993830204, + 0.018029937520623207, + -0.010761658661067486, + -0.01144625898450613, + -0.012297210283577442, + -0.02281573973596096, + 0.016583958640694618, + -0.0009901110315695405, + -0.02371147833764553, + 0.004427507519721985, + 0.003877268172800541, + -0.004827390890568495, + 0.012655505910515785, + -0.00018844498845282942, + 0.008106433786451817, + 0.012239627540111542, + -0.013986317440867424, + 0.020294876769185066, + -0.0040564159862697124, + 0.011292703449726105, + 0.013032996095716953, + 0.008918996900320053, + 0.0021401753183454275, + 0.021011466160416603, + -0.01575220189988613, + 0.03475465625524521, + 0.02976411208510399, + -0.012521144933998585, + -0.007818518206477165, + -0.007799323182553053, + -0.0011740572517737746, + -0.014306223951280117, + -0.030122406780719757, + 0.00570393493399024, + -0.01813230663537979, + -0.009098144248127937, + -0.006654057651758194, + 0.011964507400989532, + 0.015278739854693413, + 0.002332119271159172, + 0.00761377764865756, + 0.013346504420042038, + -0.0002803181705530733, + 0.014191057533025742, + -0.013071384280920029, + 0.0019466318190097809, + -0.01973184011876583, + -0.009501226246356964, + 0.0008533509098924696, + 0.014255039393901825, + -0.0062445770017802715, + 0.00978914275765419, + 0.0008869410958141088, + 0.012546737678349018, + 0.0052048806101083755, + -0.005387227516621351, + -0.003461389569565654, + 0.0030279161874204874, + 0.03186269849538803, + -0.024671198800206184, + 0.005240070633590221, + -0.0166479405015707, + 0.04389118775725365, + -0.0042259665206074715, + -0.025912435725331306, + 0.010467344895005226, + 0.009411652572453022, + -0.021548910066485405, + 0.007037945557385683, + -0.008784635923802853, + -0.012393182143568993, + -0.0241465512663126, + -0.01462613046169281, + 0.015649830922484398, + -0.016328033059835434, + 0.006500502582639456, + -0.01191332284361124, + 0.0001394592982251197, + -0.00714671378955245, + 0.023225219920277596, + -0.024197736755013466, + -0.008503117598593235, + 0.004411512054502964, + 0.016404811292886734, + -0.015381109900772572, + -0.026385897770524025, + -0.0080936374142766, + 0.0009557210141792893, + -0.03403806313872337, + -0.002437688410282135, + -0.031529996544122696, + -0.011260713450610638, + -0.010134642012417316, + 0.014267834834754467, + 0.012047682888805866, + -0.009392458014190197, + 0.008835820481181145, + 0.0398731604218483, + -0.016545569524168968, + 0.006679650396108627, + -0.04371204227209091, + 0.0164559967815876, + -0.0016971046570688486, + 0.06469791382551193, + -0.0015579452738165855, + 0.00994909554719925, + 0.0401802696287632, + 0.010364974848926067, + 0.0033462231513112783, + 0.023378776386380196, + -0.023135647177696228, + -0.007287472952157259, + -0.002360910875722766, + 0.0032310569658875465, + -0.009014968760311604, + 0.020102931186556816, + 0.004980945959687233, + 0.009386059828102589, + -0.003982837311923504, + -0.0012652307050302625, + -0.01813230663537979, + 0.0141014838591218, + -0.0031350848730653524, + 0.00733225978910923, + -0.006100619211792946, + 0.008445534855127335, + 0.04629688709974289, + 0.01224602572619915, + -0.011068768799304962, + 0.02886837348341942, + 0.009648383595049381, + -0.010166632011532784, + -0.017965955659747124, + 0.008023258298635483, + 0.02405697852373123, + -0.005643152631819248, + 0.022559814155101776, + -0.04271393269300461, + 0.00475701130926609, + 0.017031827941536903, + -0.010153835639357567, + 0.03682764992117882, + 0.002927145455032587, + 0.021190615370869637, + 0.015048407018184662, + 0.002191360341385007, + -0.027128081768751144, + 0.0100450674071908, + -0.005067321006208658, + -0.0011860537342727184, + 0.011574221774935722, + -0.0035029775463044643, + -0.010358576662838459, + 0.015406702645123005, + -0.022239908576011658, + -0.030480703338980675, + -0.006948371883481741, + 0.00879743229597807, + -0.029738519340753555, + 0.009961891919374466, + -0.014843666926026344, + -0.00484658544883132, + -0.029610557481646538, + -0.02761434018611908, + -0.01930956356227398, + -0.00861828401684761, + -0.016289645805954933, + 0.0019210391910746694, + -0.0038260831497609615, + -0.01140786986798048, + 0.02304607257246971, + -0.022483037784695625, + 0.0015683422097936273, + 0.03833761066198349, + -0.020653171464800835, + -0.028228560462594032, + -0.0009533217526040971, + 0.003963643219321966, + 0.01101758424192667, + 0.02148492820560932, + -0.006311757490038872, + 0.00331103359349072, + 0.0017930766334757209, + 0.009251699782907963, + -0.008439136669039726, + -0.006679650396108627, + -0.015061203390359879, + 0.0008549504564143717, + 0.009034163318574429, + -0.016788698732852936, + -0.022956499829888344, + 0.014818074181675911, + 0.012655505910515785, + -0.0043571279384195805, + -0.005838295910507441, + 0.0028007824439555407, + 0.027588747441768646, + -0.019283970817923546, + -0.0014195856638252735, + 0.029226668179035187, + -0.005281658377498388, + 0.023685885593295097, + -0.027793487533926964, + 0.015112388879060745, + 0.014165464788675308, + -0.01735173538327217, + -0.002867962932214141, + 0.029149891808629036, + 0.008816626854240894, + -0.033244695514440536, + 0.011023982428014278, + 0.002088990295305848, + -0.0027975833509117365, + 0.035701580345630646, + -0.037109166383743286, + 0.021548910066485405, + 0.0029255461413413286, + -0.018260270357131958, + 0.007229889743030071, + 0.01856737956404686, + -0.0005886281724087894, + 0.030045630410313606, + -0.002701611490920186, + -0.005336042493581772, + -0.027742302045226097, + 0.03232336416840553, + -0.002221751492470503, + 0.011363083496689796, + 0.00789529550820589, + -0.007940081879496574, + 0.021830428391695023, + -0.02761434018611908, + 0.008663071319460869, + -0.0016779102152213454, + 0.023762663826346397, + 0.0033942093141376972, + 0.007159510161727667, + -0.006334151141345501, + -0.008835820481181145, + 0.0008933392236940563, + -0.0030615064315497875, + -0.03618783503770828, + -0.004852983634918928, + -0.01183654461055994, + -0.011375878937542439, + 0.007140315603464842, + 0.01911761984229088, + 0.00889340415596962, + -0.02643708325922489, + -0.02557973377406597, + -0.0021561705507338047, + 0.004366725217550993, + 0.02909870631992817, + -0.03593191131949425, + -0.022137537598609924, + -0.018810508772730827, + 0.026232343167066574, + -0.010761658661067486, + -0.0206275787204504, + 0.01433181669563055, + -0.04058975353837013, + 0.01567542366683483, + 0.01891287975013256, + 0.0019882195629179478, + -0.004597058054059744, + 0.01068488135933876, + 0.006775622256100178, + 0.008336766622960567, + -0.010947204194962978, + -0.00918771792203188, + 0.018119510263204575, + -0.004126795567572117, + 0.03772338852286339, + 0.0018010742496699095, + 0.006446118466556072, + -0.002466480014845729, + 0.005092913284897804, + 0.010991991497576237, + 0.03938690200448036, + -0.015432295389473438, + -0.04407033696770668, + -0.031018145382404327, + -0.028714818879961967, + -0.02406977489590645, + 0.01790197379887104, + -0.00885501503944397, + 0.017697233706712723, + -0.035164136439561844, + -0.011945312842726707, + 0.006260572466999292, + 0.014498167671263218, + -0.019475914537906647, + 0.005227274261415005, + 0.0011436662171036005, + -0.019987765699625015, + 0.021088244393467903, + 0.008272784762084484, + -0.0005122504662722349, + -0.004293147008866072, + -0.0031526796519756317, + -0.02761434018611908, + 0.0012764274142682552, + 0.008183211088180542, + -0.011574221774935722, + 0.0027927847113460302, + 0.017415717244148254, + -0.013512855395674706, + 0.009136533364653587, + 0.0034293988719582558, + 0.010819241404533386, + -0.022380666807293892, + 0.009853123687207699, + -0.019795821979641914, + 0.0009685172699391842, + -0.01731334626674652, + -0.02390342205762863, + -0.024466458708047867, + 0.0007301868754439056, + -0.010665686801075935, + -0.02312285080552101, + 0.04348170757293701, + -0.0014315821463242173, + -0.002744798781350255, + 0.015317128971219063, + 0.0012308406876400113, + 0.0038580738473683596, + -0.003925254102796316, + 0.03690442815423012, + 0.017402920871973038, + -0.029636148363351822, + -0.034345176070928574, + -0.0321442186832428, + -0.012425173074007034, + -0.02316123992204666, + 0.010070660151541233, + -0.0054800002835690975, + -0.01934795267879963, + -0.020192505791783333, + 0.011926119215786457, + 0.015201962552964687, + -0.026974525302648544, + -0.01923278532922268, + 0.028535669669508934, + 0.020563596859574318, + -0.009520420804619789, + 0.0005358436028473079, + -0.005278459284454584, + 0.011491045355796814, + -0.003387811128050089, + 0.01914321258664131, + -0.011228722520172596, + -0.002789585618302226, + 0.007901693694293499, + 0.0017146994359791279, + 0.013218541629612446, + -0.030173592269420624, + 0.023058868944644928, + 0.03411484137177467, + -0.004321938380599022, + -0.015892960131168365, + -0.02651386149227619, + -0.0008149620844051242, + 0.004411512054502964, + -0.0013252131175249815, + 0.028484486043453217, + 0.006602872628718615, + -0.016801495105028152, + 0.009059755131602287, + -0.014882056042551994, + 0.007517805323004723, + 0.01751808635890484, + 0.01906643435359001, + 0.02612997218966484, + -0.013602429069578648, + -0.028996335342526436, + 0.0044211093336343765, + 0.0004002831701654941, + 0.019015248864889145, + -0.000567834242247045, + -0.0065836780704557896, + -0.006577279884368181, + -0.0282797459512949, + -0.010160233825445175, + 0.0026232341770082712, + 0.023174036294221878, + 0.011292703449726105, + -0.01310337521135807, + 0.004078809171915054, + -0.03170914575457573, + -0.017876381054520607, + -0.021113837137818336, + 0.02066596783697605, + -0.008048850111663342, + 0.004673835821449757, + 0.0011884530540555716, + 0.00414279056712985, + 0.019411934539675713, + -0.017466900870203972, + -0.007261880207806826, + -0.022303888574242592, + 0.01891287975013256, + -0.026181157678365707, + 0.0161872748285532, + 0.02835652232170105, + 0.0002101386635331437, + -0.012553135864436626, + -0.004664238542318344, + -0.0011060771066695452, + -0.0242233294993639, + 0.01957828551530838, + 0.011753369122743607, + -0.02464560605585575, + 0.0027703912928700447, + -0.005444810725748539, + 0.010211419314146042, + -0.0021417748648673296, + -0.005572773516178131, + 0.03490820899605751, + -0.02203516848385334, + 0.008240794762969017, + -0.02589963935315609, + -0.02231668494641781, + 0.035394467413425446, + 0.009782744571566582, + -0.01097919512540102, + 0.031094923615455627, + -0.025554141029715538, + 0.008336766622960567, + -0.001933835563249886, + -0.000704594305716455, + -0.015163573436439037, + -0.013883947394788265, + -0.02199677936732769, + 0.007568990811705589, + 0.03150440379977226, + -0.00761377764865756, + -0.005492796655744314, + 0.0014779685297980905, + -0.02363470010459423, + 8.497519593220204e-05, + 0.024274514988064766, + -0.007274676579982042, + 0.005384028423577547, + -0.004996941424906254, + 0.0022329483181238174, + 0.009821132756769657, + -0.005083316005766392, + 0.005470403004437685, + -0.01373039186000824, + -0.006564483977854252, + 0.003963643219321966, + -0.032195400446653366, + -0.0035349682439118624, + 0.0009557210141792893, + 0.023058868944644928, + 0.004958552774041891, + -0.022444648668169975, + 0.009040561504662037, + 0.01902804523706436, + -0.031376440078020096, + -0.013653614558279514, + -0.004353929311037064, + -0.003035913920029998, + -0.0006166200037114322, + 0.01993658021092415, + -0.007600981276482344, + 0.02437688410282135, + -0.008445534855127335, + 0.04092245548963547, + -0.03424280509352684, + -0.03634139150381088, + 0.01704462431371212, + -0.016724718734622, + 0.01641760766506195, + 0.015649830922484398, + -0.029584964737296104, + 0.03147881105542183, + 0.034191619604825974, + -0.001657116343267262, + -0.00861828401684761, + -0.0025208641309291124, + 0.00021133830887265503, + -0.014242243021726608, + -0.012034887447953224, + 0.035829540342092514, + -0.004382720682770014, + -0.008624682202935219, + 0.032579291611909866, + -0.017735622823238373, + 0.014638926833868027, + 0.014818074181675911, + 0.002095388248562813, + -0.034575507044792175, + 0.0005318447365425527, + -0.0055855694226920605, + -0.024658402428030968, + 0.01244436763226986, + 0.00520807970315218, + -0.021395355463027954, + -0.012937023304402828, + 0.003682125126942992, + 0.019591081887483597, + 0.022252704948186874, + 0.004245160613209009, + 0.019130416214466095, + 0.013180152513086796, + -0.01499722246080637, + -0.003154279198497534, + 0.009245301596820354, + -0.02430010586977005, + 0.01723656803369522, + 0.010652890428900719, + -0.006929177325218916, + 0.0401034951210022, + -0.02464560605585575, + -0.0049649509601294994, + -0.01993658021092415, + 0.001366001321002841, + -0.005831897724419832, + -0.010032271966338158, + -0.03723713010549545, + -0.0014451781753450632, + 0.015649830922484398, + 0.00546080619096756, + -0.002189760794863105, + -0.011094361543655396, + 0.0016051314305514097, + -0.0034070054534822702, + -0.0007777729770168662, + 0.0040820082649588585, + -0.03135084733366966, + -0.02359631285071373, + 0.003186269896104932, + -0.0038900645449757576, + -0.016097700223326683, + -0.01084483414888382, + -0.006308558396995068, + -0.014651723206043243, + 0.02566930651664734, + 0.18457332253456116, + -0.006750029511749744, + -0.00865667313337326, + 0.013180152513086796, + -0.012527543120086193, + -0.007991267368197441, + 0.029815297573804855, + -0.008010461926460266, + 0.003819684963673353, + 0.030122406780719757, + -0.04624570161104202, + 0.00959080085158348, + 0.036878835409879684, + 0.0040148282423615456, + 0.01864415779709816, + -0.046348072588443756, + -0.03838879615068436, + -0.0018138705054298043, + 0.015368313528597355, + 0.027076896280050278, + 0.009296486154198647, + -0.01515077706426382, + 0.0017562872963026166, + -0.014715704135596752, + 0.02948259375989437, + 0.0060494341887533665, + 0.0016651139594614506, + 0.012252423912286758, + 0.020026154816150665, + 0.007754536345601082, + 0.0077225458808243275, + -0.02079392969608307, + 0.01244436763226986, + 0.012476358562707901, + 0.002344915410503745, + -0.0033206306397914886, + 0.01828586310148239, + -0.02472238428890705, + 0.019437525421380997, + 0.00969317089766264, + 0.015470684505999088, + 0.016212867572903633, + 0.006055832374840975, + -0.032630473375320435, + 0.013372096233069897, + 0.01685268059372902, + -0.011081565171480179, + 0.008029656484723091, + 0.014574945904314518, + 0.0005718331085518003, + -0.010524927638471127, + 0.012182043865323067, + 0.014357409439980984, + 0.03872149810194969, + -0.007933683693408966, + 0.021779242902994156, + -0.0021721660159528255, + 0.000575432030018419, + -0.012028489261865616, + 0.018157899379730225, + -0.023532330989837646, + 0.02578447386622429, + 0.011695786379277706, + 0.032860808074474335, + -0.01860576868057251, + -0.0005242469487711787, + -0.0067884186282753944, + 0.0028135788161307573, + 0.017658844590187073, + 0.0035669587086886168, + -0.013832761906087399, + -0.04043619707226753, + -0.030096814036369324, + 0.028766002506017685, + -0.0025224636774510145, + -0.03593191131949425, + 0.018823305144906044, + 0.014242243021726608, + 0.020192505791783333, + 0.03429399058222771, + -0.00263763009570539, + -0.008381552994251251, + -0.005863888189196587, + -0.032937586307525635, + 0.007792925462126732, + -0.03280962258577347, + 0.022367870435118675, + -0.00530405156314373, + -0.024517644196748734, + -0.00893179327249527, + -0.0005654349224641919, + -0.004824191797524691, + 0.011663795448839664, + -0.024120958521962166, + 0.022521426901221275, + 0.005979054607450962, + 0.02195839025080204, + 0.009731559082865715, + -0.017837993800640106, + 0.0036437364760786295, + -0.007319463416934013, + 0.07892736047506332, + 0.015649830922484398, + -0.004657840356230736, + 0.005611162167042494, + -0.013346504420042038, + -0.028484486043453217, + 0.01588016375899315, + 0.01495883334428072, + -0.028228560462594032, + -0.01751808635890484, + -0.020960282534360886, + -0.005006538704037666, + -0.015432295389473438, + 0.009961891919374466, + 0.0398731604218483, + -0.0035765559878200293, + 0.007223491556942463, + -0.012226831167936325, + -0.01552186906337738, + -0.006609270814806223, + -0.011401471681892872, + 0.002816777676343918, + -0.014869259670376778, + 0.006775622256100178, + -0.015201962552964687, + -0.028407707810401917, + -0.009040561504662037, + -0.005217676982283592, + -0.0002813178871292621, + 0.014702907763421535, + -0.031734734773635864, + -0.009270893409848213, + -0.005854290910065174, + 0.0024136954452842474, + 0.021715261042118073, + 0.006922779139131308, + -0.007876100949943066, + -0.0007957677007652819, + -0.005032130982726812, + 0.00879743229597807, + 0.0007741739973425865, + -0.03521532192826271, + -0.019219988957047462, + 0.005291255656629801, + -0.01413987297564745, + 0.008663071319460869, + -0.005464005284011364, + -0.0053296443074941635, + -0.03073662705719471, + 0.018580175936222076, + -0.0035509634763002396, + 0.006065429653972387, + -0.027409598231315613, + 0.005572773516178131, + -0.0050225337035954, + -0.02235507406294346, + -0.02394181117415428, + 0.02917548455297947, + 0.004200373776257038, + -0.015278739854693413, + -0.011548629030585289, + -0.007652166299521923, + -0.021433742716908455, + -0.018810508772730827, + 0.02753756195306778, + -0.159185528755188, + 0.01499722246080637, + 0.018708139657974243, + -0.024364087730646133, + 0.005297653842717409, + -0.00542241707444191, + 0.004350730217993259, + 0.012962616048753262, + -0.017761215567588806, + -0.007300268858671188, + 0.03393569588661194, + -0.005406422074884176, + -0.04796040058135986, + -0.02456882782280445, + -0.008887005969882011, + 0.00945643987506628, + -0.016711922362446785, + 0.030941369011998177, + -0.0017083013663068414, + 0.011318296194076538, + 0.012777070514857769, + -0.012681098654866219, + 0.0162640530616045, + 0.004011629149317741, + 0.010499334894120693, + 0.010109049268066883, + -0.01532992534339428, + 0.021203409880399704, + 0.005390426609665155, + -0.0030631059780716896, + 0.0035349682439118624, + -0.022137537598609924, + 0.03634139150381088, + -0.009424448944628239, + -0.01634082943201065, + 0.011631804518401623, + 0.01953989639878273, + -0.01035217847675085, + -0.002010613214224577, + 0.029124299064278603, + 0.02601480670273304, + 0.014818074181675911, + 0.0005538383265957236, + 0.001044495147652924, + -0.01961667463183403, + 0.010486538521945477, + 0.00012226430408190936, + 0.0005114506930112839, + -0.02430010586977005, + -0.012617116793990135, + 0.009539615362882614, + -0.0017434910405427217, + 0.0006402131402865052, + 0.008925395086407661, + 0.0028711617924273014, + 0.0004338733560871333, + -0.0003634938912000507, + 0.024389680474996567, + -0.011427064426243305, + -0.009904309175908566, + -0.011241518892347813, + -0.013077782467007637, + 0.020806726068258286, + -0.013602429069578648, + 0.005316847935318947, + -0.014498167671263218, + -0.002119381446391344, + 0.012796265073120594, + -0.03132525458931923, + 0.004804997239261866, + 0.011190333403646946, + -0.009776346385478973, + 0.00714671378955245, + 0.01101758424192667, + 0.010077058337628841, + -0.003362218616530299, + -0.006043036002665758, + 0.009821132756769657, + 0.014075891114771366, + -0.0022313487716019154, + -0.020410042256116867, + 0.04606655240058899, + -0.013896743766963482, + -0.02001335844397545, + -0.01582898013293743, + -0.007549796253442764, + -0.01406309474259615, + 0.004030823241919279, + -0.004680234007537365, + 0.002359311329200864, + 0.011363083496689796, + -0.03431958332657814, + -0.024632809683680534, + 0.01715979166328907, + -0.0037972915451973677, + -0.009795540943741798, + -0.0035061766393482685, + -0.0063885352574288845, + -0.008842218667268753, + -0.009801939129829407, + -0.009059755131602287, + -0.0025672505144029856, + -0.02730722911655903, + -0.0009293287293985486, + 0.013909540139138699, + 0.02472238428890705, + -0.0002645227941684425, + -0.002634431002661586, + 0.041562266647815704, + 0.009744355455040932, + -0.015496276319026947, + -0.003726912196725607, + 0.021305780857801437, + 0.013128967955708504, + -0.007972072809934616, + 0.01532992534339428, + 0.002128978492692113, + -0.0026264332700520754, + 0.015099592506885529, + -0.004731419030576944, + 0.031299661844968796, + 0.010051465593278408, + -0.0401034951210022, + 0.005931068677455187, + 0.00373970833607018, + -0.038823869079351425, + -0.08568378537893295, + 0.016392014920711517, + 0.0068779923021793365, + 0.03667409345507622, + 0.010166632011532784, + 0.024696791544556618, + 0.007549796253442764, + -0.010704075917601585, + 0.002359311329200864, + 0.010460946708917618, + -0.04263715445995331, + -0.023135647177696228, + 0.003130286233499646, + -0.002807180630043149, + 0.018554583191871643, + -0.0329887717962265, + -0.005483199376612902, + -0.01117753703147173, + -0.024991104379296303, + 0.02363470010459423, + 0.021203409880399704, + -0.017722826451063156, + -0.004465896636247635, + -0.004504285287111998, + -0.031606774777173996, + 0.013423281721770763, + -0.028075003996491432, + 0.011471851728856564, + 0.01376878097653389, + 0.0028119792696088552, + 0.003570157801732421, + -0.015419499017298222, + 0.02344275638461113, + -0.0321442186832428, + 0.01868254691362381, + -0.0027591947000473738, + -0.012297210283577442, + -0.030864590778946877, + 0.0286636333912611, + -0.024440865963697433, + -0.016289645805954933, + -0.016558365896344185, + 0.011497443541884422, + -0.02075554057955742, + -0.010371373035013676, + -0.011158342473208904, + 0.00017934765492100269, + 0.0013396089198067784, + -0.0020362057257443666, + -0.008125628344714642, + -0.04412152245640755, + -0.008048850111663342, + -0.01154223084449768, + -0.013295318931341171, + 0.013448874466121197, + -0.007876100949943066, + -0.0102562066167593, + -0.015457888133823872, + -0.01719818077981472, + 0.027563154697418213, + 0.0005410420708358288, + 0.028766002506017685, + -0.039105385541915894, + 0.024671198800206184, + 0.0046514421701431274, + -0.006356544326990843, + -0.04166463762521744, + 0.004277151543647051, + 0.009424448944628239, + -0.020934689790010452, + -0.0008933392236940563, + 0.007018750999122858, + 0.007671360857784748, + 0.007498611230403185, + -0.027076896280050278, + 0.01406309474259615, + -0.03774898126721382, + -0.016328033059835434, + 0.023762663826346397, + -0.018887287005782127, + -0.002516065491363406, + -0.015611442737281322, + 0.032272178679704666, + -0.030787812545895576, + 0.016366422176361084, + -0.01193251647055149, + 0.005412819795310497, + -0.008119230158627033, + 0.0028119792696088552, + -0.02401858940720558, + 0.01969345100224018, + 0.00042227673111483455, + 0.0281261894851923, + -0.0077673327177762985, + 0.02270057424902916, + 0.008586294017732143, + 0.010262604802846909, + -0.0008405546541325748, + 0.007735342252999544, + -0.00045466728624887764, + -0.010371373035013676, + -0.014152668416500092, + -0.049086470156908035, + 0.018618565052747726, + 0.011196731589734554, + 0.003560560755431652, + -0.018426621332764626, + -0.006846001837402582, + 0.016392014920711517, + 0.002528861863538623, + 0.002239346271380782, + 0.017953159287571907, + -0.0015659428900107741, + 0.011023982428014278, + 0.026539452373981476, + -0.005991850979626179, + -0.020896300673484802, + -0.009386059828102589, + 0.0239546075463295, + 0.027716709300875664, + 0.010620899498462677, + 0.002130578039214015, + -0.022099148482084274, + -0.011631804518401623, + -0.0005174489342607558, + 0.009897910989820957, + -0.025183049961924553, + 0.0014139872509986162, + -0.013781577348709106, + 0.0014283830532804132, + 0.00928368978202343, + -0.00785690639168024, + 0.017377328127622604, + -0.016839884221553802, + 0.013231338001787663, + 0.011529434472322464, + -0.024082569405436516, + -0.012393182143568993, + 0.025016697123646736, + 0.027895856648683548, + -0.00789529550820589, + 0.0879359319806099, + -0.034191619604825974, + -0.027563154697418213, + -0.013704799115657806, + -0.03127407282590866, + 0.009635587222874165, + -0.010173030197620392, + 0.006666854023933411, + -0.002711208537220955, + 0.02894515171647072, + -0.006839603651314974, + 0.03385891765356064, + 0.01140786986798048, + 0.0006130210822448134, + 0.011267110705375671, + 0.0331423245370388, + -0.03782575950026512, + 0.021638482809066772, + 0.011593416333198547, + 0.002424892270937562, + -0.012418774887919426, + 0.03682764992117882, + 0.011375878937542439, + 0.014715704135596752, + 0.012194840237498283, + 0.007204296998679638, + -0.029789704829454422, + -0.018669750541448593, + -0.010640094056725502, + -0.004088406451046467, + -0.016993438825011253, + -0.014843666926026344, + -0.024837549775838852, + -0.005048126447945833, + 0.02976411208510399, + -0.0040564159862697124, + -0.027409598231315613, + 0.007313065230846405, + -0.02231668494641781, + -0.018592972308397293, + 0.03495939448475838, + -0.0028919558972120285, + 0.012105266563594341, + -0.02157450281083584, + 0.005691138561815023, + 0.009059755131602287, + 0.0141014838591218, + -0.008119230158627033, + 0.010460946708917618, + -0.005476801190525293, + 0.008202405646443367, + -0.0033686168026179075, + 0.014715704135596752, + 0.0015163574134930968, + -0.005905476398766041, + 0.009821132756769657, + 0.009136533364653587, + 0.015406702645123005, + -0.0030711034778505564, + 0.004814594518393278, + 0.006737233605235815, + -0.014357409439980984, + 0.006922779139131308, + 0.021753650158643723, + -0.013359300792217255, + -0.012348395772278309, + 0.013500059023499489, + -0.02776789478957653, + -0.032630473375320435, + -0.012290812097489834, + 0.024287311360239983, + -0.018234677612781525, + 0.03178592026233673, + 0.020691560581326485, + -0.010729667730629444, + -0.021715261042118073, + 0.04803717881441116, + -0.0005330443964339793, + -0.003915656823664904, + -0.0327584370970726, + 0.014562149532139301, + 0.017146995291113853, + 0.02671860158443451, + 0.0031526796519756317, + -0.010390566661953926, + 0.032579291611909866, + 0.010077058337628841, + 0.016942255198955536, + 6.008246054989286e-05, + 0.02176644653081894, + -0.0058990782126784325, + -0.004856182262301445, + -0.004629048984497786, + -0.014523760415613651, + 0.008637478575110435, + -0.026923341676592827, + -0.03900301456451416, + 0.00971236452460289, + 0.02651386149227619, + 0.031376440078020096, + 0.07508847862482071, + 0.030838998034596443, + 0.01121592614799738, + 0.008899802342057228, + -0.0008089638431556523, + 0.009629189036786556, + 0.000874144840054214, + 0.0060494341887533665, + 0.0014123877044767141, + -0.020973077043890953, + 0.009731559082865715, + -0.01817069575190544, + 0.0020410041324794292, + -0.002640829188749194, + -0.0013819965533912182, + 0.032707251608371735, + -0.01883610151708126, + 0.02047402411699295, + -0.0062445770017802715, + 0.0207043569535017, + 0.03698120638728142, + -0.008701460435986519, + 0.0014971629716455936, + 0.030941369011998177, + -0.03163236752152443, + -0.005166491959244013, + 0.01759486459195614, + -0.031606774777173996, + 0.004024425055831671, + -0.008675867691636086, + -0.00021733656467404217, + 0.0068779923021793365, + -0.05492156744003296, + -0.028612447902560234, + 0.02156170643866062, + -0.00872065406292677, + -0.0026248337235301733, + -0.014446983113884926, + 0.017031827941536903, + 0.007229889743030071, + 0.021267391741275787, + 0.014255039393901825, + -0.018157899379730225, + -0.02113942988216877, + -0.01790197379887104, + -0.008867811411619186, + -0.009961891919374466, + -0.023737071081995964, + -0.022022372111678123 + ], + "metadata": { + "source": "Kreye_Marieke_BA_241_V2.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 17, + "has_images": true, + "image_count": 98, + "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", + "links": [], + "last_modified": "2025-05-05T23:00:23", + "_known_field_names": "frozenset({'is_continuation', 'sent_to', 'header_footer_type', 'email_message_id', 'filename', 'languages', 'detection_class_prob', 'sent_from', 'link_texts', 'cc_recipient', 'subject', 'image_mime_type', 'image_path', 'filetype', 'page_number', 'last_modified', 'signature', 'detection_origin', 'text_as_html', 'attached_to_filename', 'bcc_recipient', 'data_source', 'link_start_indexes', 'category_depth', 'emphasized_text_tags', 'parent_id', 'orig_elements', 'page_name', 'coordinates', 'url', 'link_urls', 'file_directory', 'links', 'table_as_cells', 'emphasized_text_contents', 'key_value_pairs', 'image_base64'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "Kreye_Marieke_BA_241_V2.pdf", + "detection_class_prob": 0.3422867953777313, + "parent_id": "e02392183bc6851689602ad4b9f6039f", + "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", + "id": "ce00eae5-7e07-454f-9e4f-f79ac36f92f4", + "processing_timestamp": "2025-05-05T23:15:46.977945", + "chunk_number": 3, + "total_chunks": 56, + "chunking_strategy": "hybrid", + "word_count": 372 + } +} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000004.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000004.json new file mode 100644 index 0000000000000000000000000000000000000000..32d900b4f46f142c4b4ace9b8d7d2a9d43c9927d --- /dev/null +++ b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000004.json @@ -0,0 +1,1570 @@ +{ + "id": "61a115b2-0ff7-441a-f6d9-eb3d00000004", + "content": "(\u201eMake cities and humans settlements inclusive, safe, resilient and sustainable\u201c (United Nations 2024)). In den zehn Unterzielen des SDG 11 werden alle drei Dimensionen der Nachhaltigkeit gleicherma\u00dfen ber\u00fccksichtigt. W\u00e4hrend sich das SDG 11 explizit auf die Entwicklung von St\u00e4dten fokussiert, finden sich in anderen Nachhaltigkeitszielen Elemente, die durch die Begr\u00fcnung urbaner Quartiere erreicht werden k\u00f6nnen. Gr\u00fcne St\u00e4dte tragen zu einer Verbesserung der Gesundheit und des Wohlergehens der Bev\u00f6lkerung bei (SDG 3), sind eine Ma\u00dfnahme, die zum Klimaschutz beitr\u00e4gt (SDG 13) und f\u00f6rdern das Leben an Land (SDG 15) (vgl. United Nations 2024). Zum Erreichen der SDG ist es notwendig, diese in internationales, nationales Recht und lokales Handeln zu \u00fcbertragen. Mit dem Fokus auf der nachhaltigen Stadtentwicklung verabschiedeten die Vereinten Nationen auf der Konferenz Habitat III in Rio de Janeiro im Jahr 2016 die Neue Urbane Agenda mit der Vision \u201eSt\u00e4dte f\u00fcr alle\u201c (vgl. United Nations 2016). Die Mitglieder der Vereinten Nationen definieren in dieser Agenda Grunds\u00e4tze und Verpflichtungen im Hinblick auf eine klimaresiliente, zukunftsorientierte und nachhaltige Stadtentwicklung. Grundlage aller Grunds\u00e4tze und Verpflichtungen bilden wiederum die drei Dimensionen der Nachhaltigkeit: Soziales, \u00d6konomie und \u00d6kologie (vgl. United Nations 2016, S. 11). Auf europ\u00e4ischer Ebene bildet die neue Leipzig Charta 2020, als Weiterentwicklung der Leipzig Charta 2007, ein strategisches Rahmenwerk zur nachhaltigen Stadtentwicklung (vgl. Bundesministerium f\u00fcr Wohnen, Stadtentwicklung und Bauwesen 2024b). Ausgehend von dem Spannungsfeld aus \u00d6konomie, \u00d6kologie und Sozialem zeichnet die neue Leipzig Charta 2020 das Leitbild der produktiven (\u00d6konomie), der gr\u00fcnen (\u00d6kologie) und der gerechten Stadt (Soziales). Nach diesem Leitbild schafft die produktive Stadt innerhalb eines innovativen, wettbewerbsf\u00e4higen, klima- und umweltfreundlichen Rahmens die Basis f\u00fcr das \u00f6konomische Handeln in dem urbanen Raum. Die gr\u00fcne Stadt stellt die \u00f6kologischen Merkmale des st\u00e4dtischen Raums in den Mittelpunkt. Dazu z\u00e4hlt beispielsweise ein verantwortungsbewusster Umgang mit der Ressource Boden, eine nachhaltige Energieversorgung und Mobilit\u00e4t, sowie die Schaffung von zug\u00e4nglichen Gr\u00fcnfl\u00e4chen. Der soziale Aspekt des Nachhaltigkeitsdreiecks wird durch die gerechte Stadt verk\u00f6rpert, indem durch Inklusion und Chancengleichheit die Teilhabe der Bev\u00f6lkerung am sozialen Leben erm\u00f6glicht wird. (vgl. Bundesministerium f\u00fcr Wohnen, Stadtentwicklung und Bauwesen 2024b)\nDie deutsche Nachhaltigkeitsstrategie (DNS) verfolgt seit 2015 das Ziel, auf nationaler Ebene die 17 SDG der Agenda 2030 umzusetzen. Zur Zielerreichung definiert die Bundesregierung sechs Transformationsbereiche, welche die Forderungen der SDG ber\u00fccksichtigen und die Wechselwirkungen betonen (vgl. Die Bundesregierung 2020, S. 16). Zu jedem SDG wurden Indikatoren, politische Priorit\u00e4ten und Ma\u00dfnahmen niedergeschrieben. Trotz der bereits erw\u00e4hnten Wechselwirkungen zwischen den einzelnen Zielen der Agenda 30, liegt der Fokus dieser Arbeit auf dem SDG 11, welches die Rahmenbedingungen einer nachhaltigen Stadtentwicklung vereint. Ziel der Bundesregierung ist es, \u201ein unseren St\u00e4dten und Gemeinden eine gemeinwohlorientierte, partnerschaftliche und resiliente Stadtentwicklung umzusetzen, die nachhaltige und leistungsf\u00e4hige Strukturen schafft\u201c (Die Bundesregierung 2020, S. 265).", + "embedding": [ + 0.0187474824488163, + -0.0018516822019591928, + 0.011417639441788197, + -0.0060387905687093735, + -0.006365558132529259, + 0.007829604670405388, + -0.025141872465610504, + 0.011456082575023174, + -0.013660160824656487, + -0.02919122576713562, + 0.02670522965490818, + 0.009642843157052994, + -0.015377291478216648, + 0.006862116511911154, + -0.004280013032257557, + -0.0033605790231376886, + 0.039083950221538544, + -0.03544465824961662, + -0.0020214731339365244, + -0.002516429638490081, + -0.019823892042040825, + -0.010123384185135365, + 0.020298024639487267, + -0.011007578112185001, + 0.005314776673913002, + 0.02141287922859192, + 0.025603190064430237, + -0.017030350863933563, + -0.003789861686527729, + 0.007637388072907925, + -0.013326985761523247, + -0.016351187601685524, + -0.005196243058890104, + 0.012000694870948792, + -0.0075220586732029915, + 0.01517226081341505, + -0.018222089856863022, + -0.013544831424951553, + 0.002558076521381736, + -0.022476475685834885, + -0.002665397245436907, + -0.0042543839663267136, + 0.0012061563320457935, + -0.005484567489475012, + -0.0036136636044830084, + 0.03718741610646248, + -0.02202797122299671, + 0.0027022387366741896, + -0.036444179713726044, + 0.019836707040667534, + 0.02934499830007553, + 0.04162120446562767, + -0.026602715253829956, + -0.001777999335899949, + -0.0031411321833729744, + -0.00970050785690546, + -0.027627866715192795, + 0.016184600070118904, + 0.013275728560984135, + -0.026961518451571465, + -0.024129534140229225, + -0.014403396286070347, + -0.01533884834498167, + 0.04026287421584129, + -0.030652068555355072, + -0.0056479512713849545, + -0.038725145161151886, + -0.00024928030325099826, + 0.015287591144442558, + -0.015992382541298866, + 0.048848528414964676, + 0.03716178983449936, + 0.038417600095272064, + -0.0006879736320115626, + 0.01674843393266201, + 0.0050680991262197495, + 0.0013439112808555365, + -0.019195985049009323, + -0.005942682735621929, + -0.007900083437561989, + 0.002455561188980937, + -0.02438582107424736, + -0.034240104258060455, + 0.02752535231411457, + 0.011757221072912216, + 0.018632151186466217, + -0.013160399161279202, + 0.029601287096738815, + 0.013288542628288269, + -0.002503615338355303, + 0.0014248022343963385, + 0.010469372384250164, + -0.0003710172022692859, + 0.02767912484705448, + -0.031933508813381195, + 0.001150093274191022, + 0.0070927757769823074, + -0.015236333012580872, + 0.006090048234909773, + -0.017299452796578407, + -0.011289495043456554, + 0.024270491674542427, + 0.004536300897598267, + -0.0018228498520329595, + -0.014518726617097855, + -0.017363525927066803, + -0.015210704877972603, + 0.006766008213162422, + 0.02423204854130745, + -0.02620546892285347, + -0.0038987842854112387, + 0.030242007225751877, + 0.0009586780215613544, + -0.026782115921378136, + 0.001075609470717609, + -0.027269063517451286, + 0.013788305222988129, + 0.020772159099578857, + -0.0023065938148647547, + 0.0029777484014630318, + 0.03400944545865059, + -0.0033381537068635225, + 0.016325557604432106, + -0.025090614333748817, + -0.006810858845710754, + -5.436112769530155e-05, + 0.005548639222979546, + 0.005273129791021347, + -0.036931127309799194, + -0.01758136972784996, + -0.009790209122002125, + 0.012340276502072811, + 0.011757221072912216, + 0.0067916372790932655, + -0.014826271682977676, + 0.013672974891960621, + -0.001211762661114335, + 0.008105114102363586, + -0.024770254269242287, + -0.06571229547262192, + 0.0054140882566571236, + 0.018875624984502792, + -0.029421884566545486, + -0.01244279183447361, + 0.01676124893128872, + 0.00969410128891468, + 0.0013575265184044838, + 0.013967706821858883, + 0.005923460703343153, + -0.0028960565105080605, + -0.0008077082457020879, + -0.0025676873046904802, + 0.014403396286070347, + -0.011180572211742401, + -0.015864240005612373, + -0.007688645739108324, + -0.0035912382882088423, + 0.026807745918631554, + -0.01319884229451418, + -0.005084116943180561, + 0.016043640673160553, + -0.032112911343574524, + -0.008060263469815254, + 0.0055550467222929, + 0.020784972235560417, + 0.001613814732991159, + 0.014749385416507721, + 0.016517775133252144, + -0.009450627490878105, + -0.001185332890599966, + -0.00038663478335365653, + 0.048694755882024765, + -0.02537253126502037, + 0.020490242168307304, + -0.016184600070118904, + 0.006333522032946348, + 0.011289495043456554, + 0.014544354751706123, + -0.03539339825510979, + -0.005993940401822329, + -4.923035885440186e-05, + 0.01036685798317194, + 0.015595137141644955, + 0.023693842813372612, + -0.02323252521455288, + 0.007259363308548927, + 0.033240579068660736, + 0.030216379091143608, + -0.001994242426007986, + 0.002987359184771776, + 0.016953464597463608, + -0.0010483788792043924, + 0.013083511963486671, + -0.005609507672488689, + -0.617962121963501, + 0.013570459559559822, + 0.017645442858338356, + -0.024308934807777405, + 0.028909308835864067, + 0.035598430782556534, + 0.011520154774188995, + 0.007810382638126612, + -0.00041847056127153337, + 0.029473142698407173, + -0.017184123396873474, + -0.00813074316829443, + -0.02719217725098133, + -0.021028446033596992, + 0.001957401167601347, + -0.005141782108694315, + 0.0019990478176623583, + -0.013762676157057285, + 0.022425217553973198, + 0.015466992743313313, + -0.00845110323280096, + 0.0017587777692824602, + -0.0007900884374976158, + -0.0027518945280462503, + 0.00880349986255169, + 0.030908357352018356, + 0.0025660856626927853, + -0.035060226917266846, + 0.016786877065896988, + 0.015723280608654022, + -0.006474480498582125, + 0.018952511250972748, + -0.019170356914401054, + 0.030395779758691788, + 0.04710577055811882, + 0.014505911618471146, + -0.020438984036445618, + 0.019823892042040825, + 0.013467945158481598, + 0.021015632897615433, + -0.004350492265075445, + -0.005679987370967865, + 0.0017683885525912046, + 0.005244297441095114, + 0.008342180401086807, + 0.01660747453570366, + 0.043210189789533615, + -0.026013251394033432, + 0.002626954112201929, + -0.0235400702804327, + 0.0188884399831295, + -0.012993811629712582, + 0.02424486353993416, + 0.003190787974745035, + 0.0046356129460036755, + -0.006448851898312569, + 0.01987515017390251, + 0.004574744496494532, + 0.007304213475435972, + -0.005769688170403242, + 0.011795664206147194, + -0.005798520520329475, + -0.007329842541366816, + -0.030805841088294983, + -0.016697175800800323, + 0.05392303690314293, + -0.025129057466983795, + 0.005426902323961258, + 0.0034887229558080435, + -0.005215464625507593, + -0.02254054695367813, + 0.0286786500364542, + 0.0023178064730018377, + -0.024501152336597443, + 0.030600810423493385, + 0.022976236417889595, + 0.02919122576713562, + -0.00887397862970829, + -0.005961904302239418, + 0.017517298460006714, + 0.0019253650680184364, + -0.021143775433301926, + -0.006477684248238802, + -0.010578295215964317, + 0.025129057466983795, + -0.02967817336320877, + -0.020310839638113976, + -0.006714750546962023, + 0.00046852685045450926, + 0.011206201277673244, + 0.018657781183719635, + 0.01517226081341505, + 0.0011645094491541386, + -0.02602606639266014, + -0.0033189321402460337, + 0.032779261469841, + -0.004052557051181793, + 0.033573754131793976, + -0.0026381665375083685, + -0.042569469660520554, + -0.02419360540807247, + 0.0002899260143749416, + 0.02337348274886608, + 0.012116024270653725, + 0.011641891673207283, + 0.004712499212473631, + -0.01394207775592804, + 0.013788305222988129, + 0.04661882296204567, + -0.026961518451571465, + -0.0021592280827462673, + -0.007329842541366816, + -0.02585947886109352, + -0.009649250656366348, + -0.019490716978907585, + -0.011648298241198063, + 0.022489288821816444, + -0.007214512676000595, + 0.008431881666183472, + 0.016812505200505257, + 0.009828652255237103, + 0.001975020859390497, + 0.021771682426333427, + -0.028166072443127632, + -0.004930343944579363, + 0.019208800047636032, + -0.003966060001403093, + 0.022463660687208176, + -0.01758136972784996, + -0.008079485036432743, + 0.016030827537178993, + -0.005772891454398632, + 0.02719217725098133, + -0.00481501454487443, + 0.03803316876292229, + 0.008656133897602558, + 0.004574744496494532, + -0.006157323718070984, + -0.015889868140220642, + -0.01940101571381092, + -0.005587082821875811, + -0.00592666445299983, + 0.007291399408131838, + -0.05143704265356064, + -0.02220737189054489, + -0.021335992962121964, + -0.0013943680096417665, + -0.014800643548369408, + -0.01087302714586258, + -0.011078056879341602, + -0.02005455084145069, + -0.0038571374025195837, + -0.019785448908805847, + 0.018529636785387993, + -0.00642963033169508, + 0.00029413076117634773, + 0.0006018768181093037, + -0.009559549391269684, + -0.019811077043414116, + -0.017222566530108452, + 0.0023194081149995327, + 0.011251051910221577, + -0.037879396229982376, + -0.014557169750332832, + -0.000901013205293566, + -0.007573316339403391, + -0.0042287553660571575, + 0.024321749806404114, + -0.013089919462800026, + -0.028063558042049408, + -0.013929263688623905, + -0.022361144423484802, + -0.0022713541984558105, + 0.014505911618471146, + 0.019465088844299316, + -0.0033926148898899555, + -0.03910958021879196, + -0.026269540190696716, + 0.016018012538552284, + 0.014070222154259682, + 0.005071302875876427, + -0.026730859652161598, + -0.024321749806404114, + -0.012801595032215118, + 0.013621717691421509, + -0.007259363308548927, + 0.007554094772785902, + 0.010014461353421211, + 0.006544959731400013, + 0.009354518726468086, + 0.02405264787375927, + 0.022604618221521378, + -0.0008665744680911303, + 0.0059298682026565075, + -0.01087302714586258, + 0.011584226042032242, + -0.022950608283281326, + -0.010225898586213589, + -0.018516821786761284, + 0.006804451812058687, + 0.05341045930981636, + -0.022194556891918182, + 0.01311554852873087, + 0.0038827662356197834, + 0.010584702715277672, + -0.022143300622701645, + 0.006304689683020115, + -0.006913374178111553, + 0.014659685082733631, + 0.01136638130992651, + 0.03167722001671791, + -0.018298977985978127, + -0.04359462112188339, + 0.008226851001381874, + -0.013467945158481598, + 0.04628564789891243, + -0.009476255625486374, + 0.0018276552436873317, + -0.01760699972510338, + 0.007566908840090036, + 0.019477901980280876, + 0.0029361017514020205, + 0.006766008213162422, + -0.020182695239782333, + -0.03116464428603649, + 0.0020615181419998407, + -0.021348806098103523, + 0.022489288821816444, + 0.011910993605852127, + -0.018350234255194664, + -0.006541755981743336, + -0.00847032479941845, + 0.0044049532152712345, + 0.016479330137372017, + -0.014083036221563816, + 0.0032660725992172956, + 0.004584355279803276, + -0.010264342650771141, + 0.007490022573620081, + -0.005856185220181942, + 0.021323177963495255, + 0.02120784856379032, + 0.00978380162268877, + -0.006192563567310572, + 0.012340276502072811, + -0.01590268313884735, + 0.03385566920042038, + 0.028140444308519363, + -0.015428549610078335, + 0.02154102362692356, + -0.004417767748236656, + 0.015864240005612373, + -0.01267985813319683, + -0.02005455084145069, + 0.003059440292418003, + -0.027345949783921242, + -0.0007003875798545778, + 0.003383004106581211, + 0.019618861377239227, + 0.010648774914443493, + 0.007650202605873346, + 0.022771205753087997, + 0.007707867305725813, + 0.002208883874118328, + -0.0005994741222821176, + -0.003447076305747032, + -0.014736571349203587, + -0.004158276133239269, + -0.023501627147197723, + -0.0009506690548732877, + 0.006291875150054693, + 0.0032900997903198004, + -0.0023802765645086765, + -0.005833759903907776, + -0.0037642328534275293, + -0.006503312848508358, + -0.007618166506290436, + -0.0026990349870175123, + 0.006365558132529259, + 0.027832897379994392, + -0.010386079549789429, + -0.0035303698386996984, + -0.006323911249637604, + 0.039237722754478455, + -0.018158018589019775, + -0.006125288084149361, + -0.006259839050471783, + 0.010462965816259384, + -0.02337348274886608, + -0.007336249575018883, + -0.02324534021317959, + 0.0076950532384216785, + -0.0255519337952137, + -0.007554094772785902, + 0.010052904486656189, + -0.020631199702620506, + 0.0075476872734725475, + -0.02553911879658699, + 0.003405429422855377, + 0.004244773183017969, + 0.02291216515004635, + -0.014159922488033772, + 0.007188884075731039, + -0.018504008650779724, + 0.024116719141602516, + -0.019477901980280876, + -0.010193862952291965, + -0.006605828180909157, + 0.002814364852383733, + -0.0341632179915905, + -0.0013134770561009645, + -0.018132390454411507, + 0.0005414088373072445, + 0.004215940833091736, + 0.006567385047674179, + 0.003943634685128927, + -0.025616005063056946, + -0.0025356514379382133, + 0.032112911343574524, + -0.006996667943894863, + 0.013288542628288269, + -0.05146266892552376, + 0.02156665176153183, + 0.012654229998588562, + 0.07037673890590668, + 0.017478855326771736, + -0.001832460635341704, + 0.010014461353421211, + 0.0028656222857534885, + 0.019336944445967674, + 0.016504960134625435, + -0.024116719141602516, + -0.013173213228583336, + -0.005612711422145367, + -0.006766008213162422, + -0.012391534633934498, + 0.014813457615673542, + -0.014775014482438564, + 0.011084464378654957, + 0.008867571130394936, + 0.004183904733508825, + -0.024155162274837494, + 0.0009602798381820321, + 0.013929263688623905, + 0.0012950563104823232, + 0.00708636874333024, + 0.0011228626826778054, + 0.048361580818891525, + 0.007099182810634375, + -0.013826748356223106, + 0.033778782933950424, + -0.0002660992322489619, + 0.005968311335891485, + -0.013134770095348358, + 0.008476732298731804, + 0.03685424104332924, + 0.006532145198434591, + 0.02140006422996521, + -0.0461062453687191, + 0.002151218941435218, + 0.008771463297307491, + -0.027345949783921242, + 0.029498770833015442, + -0.000551019620615989, + 0.027576610445976257, + 0.018619338050484657, + 0.009995239786803722, + -0.038571372628211975, + 0.01267985813319683, + -0.010008053854107857, + 0.009014937095344067, + 0.0167356189340353, + -0.016684360802173615, + -0.014928787015378475, + 0.020310839638113976, + -0.02667960152029991, + -0.03165159374475479, + -0.013749862089753151, + 0.013339800760149956, + -0.02538534626364708, + 0.0028960565105080605, + -0.02142569236457348, + 0.0035303698386996984, + -0.04385090991854668, + -0.036085378378629684, + -0.025654448196291924, + -0.010552666150033474, + -0.019541975110769272, + -0.004738127812743187, + 9.725936979521066e-05, + -0.02452678047120571, + 0.0187474824488163, + -0.023962946608662605, + 0.010917876847088337, + 0.030780212953686714, + -0.022758392617106438, + -0.018965326249599457, + -0.0006359150866046548, + 0.00936092622578144, + 0.01011697668582201, + 0.02819170244038105, + 0.0016866966616362333, + -0.0026061306707561016, + -0.005346812307834625, + -0.007836011238396168, + -0.020182695239782333, + -0.017030350863933563, + -0.0028480025939643383, + 0.006208581384271383, + 0.005250704474747181, + -0.005273129791021347, + -0.023681029677391052, + -0.003879562485963106, + 0.02188701182603836, + -0.00634953984990716, + 0.001218169811181724, + 0.003674532053992152, + 0.021771682426333427, + -0.03339435160160065, + -0.00634953984990716, + 0.026295168325304985, + 0.0015337247168645263, + 0.01161626260727644, + -0.024296121671795845, + 0.024629294872283936, + 0.016030827537178993, + -0.02901182323694229, + -0.01267985813319683, + 0.043415218591690063, + 0.0009899131255224347, + -0.0175685565918684, + 0.01385237742215395, + -0.009226375259459019, + -0.00847032479941845, + 0.050027456134557724, + -0.023258153349161148, + 0.03400944545865059, + 0.0020759343169629574, + -0.016158970072865486, + 0.008393438532948494, + 0.0256928913295269, + 0.015261962078511715, + 0.016325557604432106, + -0.007105590309947729, + 0.0049431584775447845, + -0.0338812991976738, + 0.04892541840672493, + 0.004001299384981394, + 0.012827224098145962, + 0.009995239786803722, + 0.000688774511218071, + 0.021092519164085388, + -0.018017061054706573, + 0.007387507241219282, + 0.01178285013884306, + 0.037725623697042465, + 0.011526561342179775, + 0.016325557604432106, + 0.00538525590673089, + 0.0013222869019955397, + 0.009322483092546463, + 0.007976969704031944, + -0.03247171267867088, + -0.02123347669839859, + -0.017786400392651558, + -0.006150916684418917, + -0.0019109488930553198, + 0.020438984036445618, + -0.0039468384347856045, + -0.02883242256939411, + -0.02091311663389206, + -0.006798044312745333, + 0.007490022573620081, + 0.03136967495083809, + -0.034752678126096725, + -0.007259363308548927, + -0.019157541915774345, + 0.0008825924596749246, + -0.013391057960689068, + -0.002186458557844162, + 0.016158970072865486, + -0.03631603717803955, + 0.024001389741897583, + 0.011129315011203289, + 0.005112949293106794, + 0.010475779883563519, + 0.0010139402002096176, + 0.009104638360440731, + 0.0011452878825366497, + -0.017286639660596848, + 0.0002230508252978325, + 0.009790209122002125, + -0.013416687026619911, + 0.025833850726485252, + -0.0010051302378997207, + 0.01210321020334959, + -0.01335261482745409, + -0.002856011502444744, + 0.004936751443892717, + 0.021681981161236763, + -0.028729906305670738, + -0.039929699152708054, + -0.024988099932670593, + -0.04323581978678703, + -0.03083146922290325, + 0.0053500160574913025, + -0.002854409860447049, + 0.010193862952291965, + -0.03621352091431618, + -0.013467945158481598, + 0.003873155452311039, + 0.015812981873750687, + -0.0022409199737012386, + -0.00030614426941610873, + 0.00937374122440815, + -0.013365429826080799, + 0.018145203590393066, + 0.034240104258060455, + 0.00904056616127491, + -0.0019445866346359253, + -0.00863691233098507, + -0.0235400702804327, + 0.00904056616127491, + 0.018696224316954613, + 0.0031058925669640303, + -0.004997619893401861, + 0.006778822746127844, + -0.004436989314854145, + -0.0011276680743321776, + 0.002461968455463648, + 0.008950864896178246, + -0.008354995399713516, + 0.016158970072865486, + -0.020541498437523842, + 0.013596088625490665, + -0.024642109870910645, + -0.028729906305670738, + -0.02107970416545868, + 0.011340752243995667, + -0.021951083093881607, + -0.016351187601685524, + 0.03862263262271881, + 0.01524914801120758, + -0.004782978445291519, + 0.005407680757343769, + 0.002683016937226057, + 0.0008962078136391938, + 0.005539028439670801, + 0.02637205459177494, + 0.0028896494768559933, + -0.029396256431937218, + -0.026077324524521828, + -0.02603888139128685, + -0.0038539336528629065, + -0.02419360540807247, + 0.020938744768500328, + -0.012961775064468384, + -0.025000913068652153, + -0.024296121671795845, + -0.004472229164093733, + 0.017837658524513245, + -0.009892724454402924, + -0.010052904486656189, + 0.03413758799433708, + 0.040211617946624756, + -0.01087302714586258, + 0.009815838187932968, + -0.009392962791025639, + -0.004955973010510206, + 0.01644088700413704, + 0.027602238580584526, + -0.009956796653568745, + 0.006823673378676176, + 0.009264818392693996, + -0.0006058813305571675, + 0.0045939660631120205, + -0.03385566920042038, + 0.020336467772722244, + 0.00321481516584754, + -0.006125288084149361, + -0.009271225892007351, + -0.029780687764286995, + -0.00022845690546091646, + 0.012116024270653725, + 0.00862409733235836, + 0.039237722754478455, + 0.006798044312745333, + -0.030472666025161743, + 0.005817742086946964, + -0.010302785784006119, + 0.016043640673160553, + 0.002447552280500531, + 0.015556693077087402, + 0.023117195814847946, + -0.01577453874051571, + -0.03313806280493736, + 0.009738950990140438, + -0.0046612415462732315, + 0.00606121588498354, + 0.007925712503492832, + -0.009219967760145664, + -0.0010619942331686616, + -0.03488082438707352, + -0.015659209340810776, + -0.010981949046254158, + 0.03303555026650429, + -0.00027711159782484174, + -0.012974590063095093, + -0.004366510082036257, + -0.024308934807777405, + -0.01806831732392311, + -0.02042616903781891, + 0.04987368360161781, + -0.006166934501379728, + -0.006407205015420914, + 0.00481501454487443, + -0.014634056016802788, + 0.0293706264346838, + 0.0102066770195961, + -0.00202948204241693, + -0.011917401105165482, + 0.019644489511847496, + -0.026961518451571465, + 0.010661588981747627, + 0.030242007225751877, + -0.0014328111428767443, + -0.00977739505469799, + -0.003716178936883807, + 0.009559549391269684, + -0.0225661750882864, + 0.017017535865306854, + 0.0033061178401112556, + -0.023117195814847946, + 0.0061445096507668495, + -0.00734265660867095, + 0.007976969704031944, + 0.004199923016130924, + -0.00205511087551713, + 0.02767912484705448, + -0.003354171756654978, + 0.014941602014005184, + -0.01508256047964096, + -0.01644088700413704, + 0.03603412210941315, + 0.0037097716704010963, + -0.002683016937226057, + 0.033778782933950424, + -0.019798263907432556, + 0.016299929469823837, + 0.008745834231376648, + 0.008540804497897625, + 0.000753247004467994, + -0.021489765495061874, + -0.022489288821816444, + 0.004199923016130924, + 0.02157946676015854, + -0.011949436739087105, + -0.0014272049302235246, + -0.0015313220210373402, + -0.013442316092550755, + -0.008585654199123383, + 0.030728954821825027, + -0.0011589032365009189, + -0.007912898436188698, + -0.0024219234474003315, + 0.01842712052166462, + -0.0050008236430585384, + -0.0026493791956454515, + 0.0016082084039226174, + -0.01740196906030178, + -0.015979569405317307, + -0.0033093213569372892, + -0.03083146922290325, + -0.016838135197758675, + 0.01377549022436142, + 0.02921685390174389, + 0.003312524873763323, + -0.028601761907339096, + 0.009046973660588264, + 0.018029874190688133, + -0.018773110583424568, + -0.00952751375734806, + 0.003043422242626548, + 0.005689598154276609, + 0.008329366333782673, + 0.018773110583424568, + -0.016709990799427032, + 0.0286786500364542, + -0.0007268172921612859, + 0.03198476508259773, + -0.0283967312425375, + -0.022860907018184662, + 0.0194394588470459, + -0.00419031223282218, + 0.02737157978117466, + 0.024770254269242287, + -0.035060226917266846, + 0.009405776858329773, + 0.028576133772730827, + 0.019170356914401054, + -0.013391057960689068, + 0.005029655992984772, + 0.010270749218761921, + 0.0014071824261918664, + -0.01855526491999626, + 0.01674843393266201, + 0.013480759225785732, + -0.001178925740532577, + 0.019977664574980736, + -0.016671547666192055, + 0.016133341938257217, + 0.003190787974745035, + 0.004859864711761475, + -0.03803316876292229, + 0.009886316955089569, + -0.014249623753130436, + -0.020144252106547356, + -0.0034983339719474316, + 0.0061861565336585045, + -0.026269540190696716, + -0.012141653336584568, + 0.0013455130392685533, + 0.022976236417889595, + 0.00870098453015089, + 0.007284991908818483, + 0.03185662254691124, + -0.0002414715418126434, + -0.011821293272078037, + -0.001729945302940905, + -0.0029296944849193096, + -0.031062129884958267, + 0.008034635335206985, + 0.0025756964460015297, + -0.011693148873746395, + 0.04667007923126221, + -0.026128580793738365, + -0.004084593150764704, + -0.023258153349161148, + -0.0009418590925633907, + -0.017363525927066803, + -0.02204078435897827, + -0.022617433220148087, + 0.007355471141636372, + -0.0030674494337290525, + 0.012532493099570274, + 0.0008241267059929669, + -0.004975194577127695, + -0.023014679551124573, + 0.0035367771051824093, + 0.002916879951953888, + -0.005712023004889488, + -0.028166072443127632, + -0.011622670106589794, + 0.006160527467727661, + -0.006964631844311953, + -0.018183646723628044, + -0.013749862089753151, + -0.0038283048197627068, + -0.010488594882190228, + 0.021476950496435165, + 0.20503056049346924, + 0.006977445911616087, + -0.0016370408702641726, + 0.021348806098103523, + -0.027653496712446213, + -0.003155548358336091, + 0.035598430782556534, + -0.018042689189314842, + 0.0008369411225430667, + 0.022796835750341415, + -0.04792589321732521, + 0.010616738349199295, + 0.017965802922844887, + 0.0033926148898899555, + 0.0074387649074196815, + -0.04467103257775307, + -0.04131365567445755, + 0.0023610549978911877, + 0.0067275650799274445, + 0.018939698114991188, + 0.0009274429176002741, + -0.009873502887785435, + 0.004299234598875046, + -0.015864240005612373, + 0.009662064723670483, + 0.01069362461566925, + -0.0056735798716545105, + 0.00535642309114337, + 0.018363049253821373, + 0.017658255994319916, + 0.00713762640953064, + -0.013455130159854889, + -0.004626002162694931, + -0.0012357896193861961, + 0.0175685565918684, + -0.010840990580618382, + 0.00919433869421482, + -0.021451322361826897, + 0.011219015344977379, + 0.010232306085526943, + 0.012468420900404453, + 0.0014400193467736244, + -0.029498770833015442, + -0.01319884229451418, + 0.00838062446564436, + 0.016005197539925575, + -0.014057407155632973, + 0.025282829999923706, + 0.0100336829200387, + 0.012647822499275208, + -0.015005674213171005, + 0.0021400065161287785, + 0.020951559767127037, + 0.026577085256576538, + -0.01518507581204176, + 0.019157541915774345, + 0.004430582281202078, + -0.0004268800257705152, + -0.0076309810392558575, + 0.008233258500695229, + -0.009245596826076508, + 0.02983194589614868, + -0.0004457011818885803, + 0.042056892067193985, + -0.013916448689997196, + 0.009841466322541237, + -0.01351920235902071, + 0.031267158687114716, + 0.027935413643717766, + -0.0047445353120565414, + -0.013967706821858883, + -0.024180790409445763, + -0.015313219279050827, + 0.012212132103741169, + -0.002928092610090971, + -0.018004246056079865, + 0.011340752243995667, + 0.01119979377835989, + 0.026295168325304985, + 0.03239482641220093, + -0.025577561929821968, + -0.01427525281906128, + -0.007144033443182707, + -0.021669166162610054, + 0.011750813573598862, + -0.02837110310792923, + 0.032087281346321106, + -0.005205853842198849, + -0.005109746009111404, + -0.013326985761523247, + -0.007566908840090036, + -0.009046973660588264, + 0.0008149163913913071, + -0.017683885991573334, + -0.0008209231309592724, + 0.0014328111428767443, + 0.011802071705460548, + 0.011347159743309021, + -0.0007244145963340998, + -0.015684837475419044, + -0.01119338721036911, + 0.06755756586790085, + 0.015800166875123978, + -0.0008577645639888942, + 0.0027294692117720842, + -0.00912385992705822, + -0.022348331287503242, + 0.00419351551681757, + 0.0023097973316907883, + -0.03367627039551735, + -0.002683016937226057, + -0.02934499830007553, + -0.0022441234905272722, + -0.019529160112142563, + 0.012365905568003654, + 0.028422361239790916, + 0.0026557864621281624, + -0.00017509689496364444, + -0.011776442639529705, + -0.02355288527905941, + -0.006939002778381109, + -0.011904587037861347, + -0.01235309150069952, + 0.004491450730711222, + 0.003700160887092352, + -0.016825320199131966, + -0.017619812861084938, + 0.00036400932003743947, + -0.006945410277694464, + -0.0324973426759243, + 0.025782592594623566, + -0.04308204725384712, + -0.011065242812037468, + -0.0008225249475799501, + 0.006593013647943735, + 0.026295168325304985, + 0.006461665965616703, + -0.02024676837027073, + -0.009899131953716278, + -0.0007208105525933206, + 0.013211656361818314, + -0.01028356421738863, + -0.017132865265011787, + -0.021861383691430092, + 0.012000694870948792, + -0.017683885991573334, + -0.008156372234225273, + -0.0024635703302919865, + -0.008034635335206985, + -0.029139967635273933, + 0.01676124893128872, + -0.006772415712475777, + 0.011046021245419979, + -0.03149781748652458, + 0.02403983287513256, + -0.0030145898927003145, + -0.006439241115003824, + -0.029114339500665665, + 0.022604618221521378, + 0.014980045147240162, + -0.0222201868891716, + 0.005193039774894714, + 0.00034038277226500213, + -0.02903745323419571, + -0.033778782933950424, + 0.020990002900362015, + -0.15889868140220642, + 0.02571852132678032, + 0.030447037890553474, + -0.024142347276210785, + -0.007778346538543701, + -0.0024571630638092756, + 0.006198970600962639, + 0.006074030417948961, + -0.00937374122440815, + 0.00010281561844749376, + 0.04362025111913681, + -0.0022713541984558105, + -0.048694755882024765, + -0.010469372384250164, + -0.020631199702620506, + 0.003991688601672649, + -0.020464612171053886, + 0.034727051854133606, + 0.00750924414023757, + 0.018196461722254753, + 0.012647822499275208, + -0.02436019293963909, + -0.01244279183447361, + 0.0009602798381820321, + 0.006288671400398016, + -0.008233258500695229, + -0.008765056729316711, + 0.012602971866726875, + 0.005209057591855526, + -0.005305165890604258, + 0.012897703796625137, + -0.010757696814835072, + 0.050873205065727234, + -0.005692801438271999, + -0.01535166334360838, + 0.005074506159871817, + 0.014403396286070347, + -0.012256982736289501, + -0.014698128215968609, + 0.031139016151428223, + 0.016466517001390457, + 0.0003594041627366096, + -0.008515175431966782, + 0.012891296297311783, + -0.030421409755945206, + -0.005548639222979546, + 0.00979661662131548, + 0.0006671501905657351, + -0.011590633541345596, + -0.01773514226078987, + 0.015261962078511715, + -0.022604618221521378, + 0.0031523448415100574, + 0.012769559398293495, + 0.006753194145858288, + 0.0053500160574913025, + 0.002034287666901946, + 0.018491193652153015, + -0.004020520951598883, + -0.0016530589200556278, + -0.00879068486392498, + -0.013403872959315777, + 0.01776077225804329, + -0.0015313220210373402, + 0.01176362857222557, + -0.024629294872283936, + -0.011334345676004887, + 0.008162778802216053, + -0.03236920014023781, + 0.010584702715277672, + -0.013506388291716576, + -0.01823490485548973, + 0.011987880803644657, + 0.00436010304838419, + 0.0003179575433023274, + 0.008495953865349293, + -0.008105114102363586, + 0.0005093727959319949, + 0.0049848053604364395, + 0.016479330137372017, + -0.01823490485548973, + 0.05010434240102768, + -0.012788780964910984, + -0.0018404696602374315, + -0.026756487786769867, + -0.004485043231397867, + -0.014710942283272743, + 0.005285943858325481, + -0.004651630762964487, + 0.0012197716860100627, + 0.019003769382834435, + -0.028242958709597588, + -0.03316369280219078, + 0.008149964734911919, + -0.00024547602515667677, + -0.003636088687926531, + 0.006311096716672182, + -0.0001025152814690955, + -0.01823490485548973, + -0.00970050785690546, + 0.006205378100275993, + -0.002420321572571993, + -0.03521399945020676, + 0.004318456165492535, + -0.001266223844140768, + 0.02537253126502037, + -0.00039484401349909604, + -0.004273605532944202, + 0.04682385176420212, + 0.007413135841488838, + -0.023168452084064484, + -0.0005690398975275457, + 0.019541975110769272, + 0.014544354751706123, + -0.005164206959307194, + 0.00838703103363514, + 0.0019301704596728086, + -0.008841942995786667, + 0.007836011238396168, + -0.01045655831694603, + 0.027832897379994392, + -0.003280489007011056, + -0.030959613621234894, + 0.010174641385674477, + 0.003443872556090355, + -0.03300992026925087, + -0.08980338275432587, + 0.018849996849894524, + 0.011020392179489136, + 0.03746933490037918, + 0.013314171694219112, + 0.015261962078511715, + 0.00018971333338413388, + -0.012878482230007648, + -0.00010712045332184061, + 0.01185332890599966, + -0.028473619371652603, + -0.025129057466983795, + 0.008566432632505894, + 0.01077051181346178, + 0.024167977273464203, + -0.023834802210330963, + -0.021002817898988724, + -0.020784972235560417, + -0.021515393629670143, + 0.02373228780925274, + 0.010898655280470848, + -0.020451797172427177, + -0.0006455258699133992, + -0.014377768151462078, + -0.04331270605325699, + 0.01508256047964096, + -0.026961518451571465, + 0.016889391466975212, + 0.007912898436188698, + 0.008258887566626072, + 0.00379626895301044, + -0.01524914801120758, + 0.02834547497332096, + -0.019195985049009323, + 0.01755574159324169, + -0.0016610678285360336, + -0.006669900380074978, + -0.02389887347817421, + 0.023629771545529366, + -0.014813457615673542, + -0.00638157594949007, + -0.007355471141636372, + 0.013147584162652493, + -0.02238677442073822, + -0.012436384335160255, + -0.009815838187932968, + 0.005542232189327478, + -0.0024940045550465584, + 0.005234686192125082, + -0.009117452427744865, + -0.04177497699856758, + -0.005116153042763472, + 0.003507944755256176, + -0.008085892535746098, + 0.001742759719491005, + 0.0019205596763640642, + -0.003674532053992152, + -0.02123347669839859, + -0.017030350863933563, + 0.01794017292559147, + 0.0040141139179468155, + 0.01153296884149313, + -0.02788415551185608, + 0.032599858939647675, + -0.0048342361114919186, + -0.009232781827449799, + -0.0494379922747612, + -0.0023194081149995327, + 0.01692783460021019, + -0.02205359935760498, + -0.014031779021024704, + 0.012884888797998428, + -0.00038122868863865733, + 0.011295902542769909, + -0.013967706821858883, + 0.006445648148655891, + -0.02903745323419571, + -0.016338372603058815, + 0.02767912484705448, + -0.032266683876514435, + -0.027269063517451286, + -0.019785448908805847, + 0.03636729344725609, + -0.03736681863665581, + 0.023604143410921097, + -0.009079009294509888, + 0.005084116943180561, + -0.014928787015378475, + 0.01972137577831745, + -0.025641633197665215, + 0.033291835337877274, + 0.0044049532152712345, + 0.018042689189314842, + -0.01992640644311905, + 0.021643538028001785, + 0.019336944445967674, + 0.007150440476834774, + -0.004856661427766085, + -0.009604400023818016, + 0.00031875845161266625, + -0.030754582956433296, + -0.012602971866726875, + -0.05010434240102768, + 0.011084464378654957, + 0.007611759472638369, + 0.011930215172469616, + -0.027756011113524437, + -0.002247327007353306, + 0.0007208105525933206, + 0.009424998424947262, + 0.0033317464403808117, + 0.015236333012580872, + -0.007336249575018883, + 0.001723538152873516, + 0.019016584381461143, + 0.008329366333782673, + -0.022271445021033287, + -0.029421884566545486, + 0.017709514126181602, + 0.019682932645082474, + 0.0023370280396193266, + 0.003985281568020582, + -0.020003294572234154, + -0.011046021245419979, + -0.0008233258267864585, + 0.010808954946696758, + -0.01872185245156288, + 0.015377291478216648, + -0.005061692092567682, + -0.0011653103865683079, + -0.00152411381714046, + -0.010386079549789429, + 0.01277596689760685, + -0.009649250656366348, + -0.009963203221559525, + 0.002681415295228362, + -0.014775014482438564, + -0.02670522965490818, + 0.0258979219943285, + 0.027448466047644615, + 0.0062117851339280605, + 0.08093581348657608, + -0.02523157373070717, + -0.0348551943898201, + -0.0054140882566571236, + -0.02237395942211151, + 0.005398069974035025, + -0.0029136764351278543, + 0.005481363739818335, + -0.005164206959307194, + 0.0188884399831295, + -0.007752717938274145, + 0.03303555026650429, + 0.006375168915838003, + 0.0048758829943835735, + 0.013173213228583336, + 0.025641633197665215, + -0.056127116084098816, + 0.0179145447909832, + 0.020669642835855484, + 0.011859736405313015, + -0.006250228267163038, + 0.04913044720888138, + -0.00046412189840339124, + 0.0210412610322237, + 0.02038772590458393, + 0.020169880241155624, + -0.021835753694176674, + -0.01708160899579525, + 0.0028480025939643383, + 1.5004372471594252e-05, + -0.0283967312425375, + -0.016146156936883926, + -0.028601761907339096, + -0.001946188509464264, + 0.02803792804479599, + -0.02419360540807247, + -0.010065718553960323, + 0.019208800047636032, + -0.0277047548443079, + -0.01518507581204176, + 0.020515870302915573, + 0.005148189142346382, + 0.009059787727892399, + -0.021835753694176674, + 0.011629076674580574, + 0.0043633063323795795, + 0.005875406786799431, + -0.0036264779046177864, + 0.013762676157057285, + -0.010046496987342834, + 0.006695528980344534, + 0.008681762963533401, + 0.012840038165450096, + 0.004690073896199465, + -0.01326291449368, + 0.019631676375865936, + 0.02955002896487713, + 0.009706915356218815, + 0.00929685402661562, + 0.0036296816542744637, + 0.016299929469823837, + -0.019862335175275803, + -0.0042960308492183685, + 0.007637388072907925, + -0.002742283744737506, + -0.028089186176657677, + 0.02140006422996521, + -0.011648298241198063, + -0.032907404005527496, + -0.006327114999294281, + 0.016953464597463608, + -0.026628343388438225, + 0.030652068555355072, + 0.025487860664725304, + -0.0036905501037836075, + -0.00912385992705822, + 0.03977592661976814, + 0.010424522683024406, + -0.004587558563798666, + -0.03488082438707352, + 0.015095374546945095, + 0.0215922798961401, + 0.010937098413705826, + -0.004155072383582592, + -0.00819481536746025, + 0.03621352091431618, + 0.004100610967725515, + 0.01772232912480831, + -0.011122907511889935, + 0.018837181851267815, + -0.0072401417419314384, + 0.004542708396911621, + -0.012532493099570274, + -0.004196719266474247, + 0.003927616402506828, + -0.011251051910221577, + -0.03844323009252548, + 0.024949656799435616, + 0.025436602532863617, + 0.022117670625448227, + 0.07985939830541611, + 0.043722767382860184, + 0.01170596294105053, + 0.001338304951786995, + 0.01277596689760685, + 0.012244168668985367, + 0.006134898867458105, + 0.028576133772730827, + -0.006070826668292284, + -0.04613187536597252, + 0.01368578989058733, + -0.020695270970463753, + 0.0028480025939643383, + -0.00836780946701765, + -0.0067275650799274445, + 0.027166549116373062, + -0.008854757063090801, + 0.021143775433301926, + -0.008265294134616852, + 0.013544831424951553, + 0.051155123859643936, + -0.0072401417419314384, + 0.006586606614291668, + 0.031420931220054626, + -0.03449638932943344, + -0.01806831732392311, + 0.020644014701247215, + -0.026141395792365074, + -0.0031283178832381964, + -0.013660160824656487, + -0.0049591767601668835, + 0.00861769076436758, + -0.05525573343038559, + -0.03213854134082794, + 0.012641414999961853, + -0.007035111077129841, + 0.006250228267163038, + -0.02819170244038105, + 0.03303555026650429, + 0.009034158661961555, + 0.030216379091143608, + 0.012000694870948792, + -0.0163896307349205, + -0.029575657099485397, + -0.017196938395500183, + -0.008643319830298424, + -0.016543403267860413, + -0.0233991127461195, + -0.02903745323419571 + ], + "metadata": { + "source": "Kreye_Marieke_BA_241_V2.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 17, + "has_images": true, + "image_count": 98, + "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", + "links": [], + "last_modified": "2025-05-05T23:00:23", + "_known_field_names": "frozenset({'is_continuation', 'sent_to', 'header_footer_type', 'email_message_id', 'filename', 'languages', 'detection_class_prob', 'sent_from', 'link_texts', 'cc_recipient', 'subject', 'image_mime_type', 'image_path', 'filetype', 'page_number', 'last_modified', 'signature', 'detection_origin', 'text_as_html', 'attached_to_filename', 'bcc_recipient', 'data_source', 'link_start_indexes', 'category_depth', 'emphasized_text_tags', 'parent_id', 'orig_elements', 'page_name', 'coordinates', 'url', 'link_urls', 'file_directory', 'links', 'table_as_cells', 'emphasized_text_contents', 'key_value_pairs', 'image_base64'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "Kreye_Marieke_BA_241_V2.pdf", + "detection_class_prob": 0.3422867953777313, + "parent_id": "e02392183bc6851689602ad4b9f6039f", + "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", + "id": "ce00eae5-7e07-454f-9e4f-f79ac36f92f4", + "processing_timestamp": "2025-05-05T23:15:46.977945", + "chunk_number": 4, + "total_chunks": 56, + "chunking_strategy": "hybrid", + "word_count": 446 + } +} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000005.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000005.json new file mode 100644 index 0000000000000000000000000000000000000000..4807f0116fc23b03ece80877befe71c96f3bca26 --- /dev/null +++ b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000005.json @@ -0,0 +1,1570 @@ +{ + "id": "61a115b2-0ff7-441a-f6d9-eb3d00000005", + "content": "Trotz der bereits erw\u00e4hnten Wechselwirkungen zwischen den einzelnen Zielen der Agenda 30, liegt der Fokus dieser Arbeit auf dem SDG 11, welches die Rahmenbedingungen einer nachhaltigen Stadtentwicklung vereint. Ziel der Bundesregierung ist es, \u201ein unseren St\u00e4dten und Gemeinden eine gemeinwohlorientierte, partnerschaftliche und resiliente Stadtentwicklung umzusetzen, die nachhaltige und leistungsf\u00e4hige Strukturen schafft\u201c (Die Bundesregierung 2020, S. 265). Die DNS definiert bestimmte Handlungsschwerpunkte, wie beispielsweise die\n4\nTheorieteil\nsichere und hochwertige Gestaltung \u00f6ffentlicher R\u00e4ume, die Entwicklung einer ressourcenschonenden und inklusiven Infrastruktur, sowie die Forcierung der W\u00e4rme- und Verkehrswende. Bei der Umsetzung der Ma\u00dfnahmen d\u00fcrfen St\u00e4dte nicht ausschlie\u00dflich eigenst\u00e4ndig betrachtet werden. Vielmehr darf die Verflechtung mit dem Umland und den l\u00e4ndlichen Regionen nicht au\u00dfer Acht gelassen werden (vgl. Die Bundesregierung 2020, S. 266). Die Bedeutung des st\u00e4dtischen Gr\u00fcns wird in den Schwerpunkten der Bundesregierung zur Umsetzung des SDG 11 nicht explizit benannt, obwohl es nach dem Unterziel SDG 11.7 Teil der Agenda 2030 ist. ## 2.1.2 Mehrwert nachhaltiger Stadtentwicklung\n\nDer Mehrwert nachhaltiger Stadtentwicklung ist schwer messbar, da viele Faktoren subjektiv beeinflusst werden. Bott et al. unterscheiden zwischen dem \u00f6konomischen, dem \u00f6kologischen Mehrwert und dem sozialen Mehrwert f\u00fcr Mensch und Gesellschaft. Au\u00dferdem zeigen sie die Komplexit\u00e4t einer nachhaltigen Stadtplanung auf: Zwischen den einzelnen Komponenten der Dimensionen gibt es unterschiedliche Wechselwirkungen, die in der Planung ber\u00fccksichtigt werden m\u00fcssen. In Abbildung 2 sind m\u00f6gliche Wechselwirkungen zwischen Stadtgr\u00fcn, Energiebedarf und Mobilit\u00e4t dargestellt. Dies macht die Planung deutlich komplexer und zeitintensiver, wird aber im Ergebnis die Resilienz der St\u00e4dte auf lange Sicht steigern. (Bott et al. 2018, 28 ff)\n\n[IMAGE: Verschattung Durchl\u00fcftung Stadtklima Verdunstung thermischer Komfort urbaner Wasserhaushalt Stadtgr\u00fcn Energiebedarf Wohlbefinden Biodiversit\u00e4t Freiraum FI Gesundheit Mobilit\u00e4t Versiegelung Dichte Verkehrsaufkommen]\n\nAbbildung 2: Dimensionen urbaner Nachhaltigkeit (eigene Darstellung nach Bott et al. 2018, S. 31)\nDie Wechselwirkungen, aber auch resultierende Interessenskonflikte zwischen den einzelnen Dimensionen, zeigt das folgende Beispiel (angelehnt an Bott et al. 2018, S. 31). Das Platzangebot in dem urbanen Raum ist begrenzt. Bei der Umstrukturierung freiwerdender Fl\u00e4chen entsteht ein Interessenskonflikt zwischen Entsiegelung und Nachverdichtung. Nachverdichtung bedeutet die Schaffung neuen Wohnraums, der vor allem in Zeiten von Wohnungsmangel dringend ben\u00f6tigt wird (Mehrwert f\u00fcr Mensch und Gesellschaft). In der Folge entsteht ein erh\u00f6hter Mobilit\u00e4tsbedarf nachverdichteten Gebieten, der zwar zu einer effizienteren Nutzung der bestehenden Verkehrssystemen f\u00fchrt, aber meist auch zu einer Erschlie\u00dfung neuer Verkehrswege zwingt und damit die Versiegelung erh\u00f6ht. Dies steht h\u00e4ufig im Widerspruch zu der \u00f6kologischen Dimension der nachhaltigen Stadtentwicklung. Den Versiegelungsgrad zu in den\n5\nTheorieteil\nsenken und das Gr\u00fcnangebot in der Stadt zu erh\u00f6hen, f\u00f6rdert den thermischen Komfort der Bev\u00f6lkerung (Mehrwert f\u00fcr Mensch und Gesellschaft), ist f\u00fcr den Erhalt der Biodiversit\u00e4t im urbanen Raum essenziell (Mehrwert \u00d6kologie) und senkt die Energiekosten (Mehrwert \u00d6konomie) (vgl. Bott et al. 2018, S. 31).", + "embedding": [ + 0.022238686680793762, + -0.0038702867459505796, + 0.012349762953817844, + 0.002724499674513936, + -0.003077675588428974, + 0.01529886294156313, + -0.017811782658100128, + 0.0017577416729182005, + -0.021574651822447777, + -0.03955569863319397, + 0.024634424597024918, + 0.012343253009021282, + -0.012050296179950237, + 0.011737808585166931, + -0.004465966019779444, + -0.007551779039204121, + 0.04038899764418602, + -0.023228231817483902, + 0.011477402411401272, + -0.00946576427668333, + -0.014765029773116112, + -0.003896327456459403, + 0.006526429671794176, + -0.01769459992647171, + -0.005761486478149891, + 0.02260325662791729, + 0.02019449882209301, + -0.021197061985731125, + -0.013866628520190716, + 0.007161169778555632, + 0.002595924073830247, + -0.005647559184581041, + -0.01145787164568901, + 0.01074826531112194, + -0.006363675929605961, + 0.006796601228415966, + -0.006770560517907143, + -0.007382514886558056, + 0.01580665446817875, + -0.01258412841707468, + 0.0043878438882529736, + -0.0051658074371516705, + 0.0008328928961418569, + -0.00023436556512024254, + -0.004156733397394419, + 0.03257681429386139, + 0.001728445990011096, + -0.003925622906535864, + -0.02906132861971855, + 0.014895233325660229, + 0.023631861433386803, + 0.031483106315135956, + -0.019335158169269562, + -0.005312285851687193, + -0.005650814156979322, + -0.007668961770832539, + -0.014765029773116112, + 0.020546047016978264, + 0.0020734842400997877, + -0.026483308523893356, + -0.020858535543084145, + -0.01846279762685299, + -0.022004321217536926, + 0.02618384175002575, + -0.03585793077945709, + -0.016041019931435585, + -0.041144177317619324, + 0.006034913007169962, + 0.012616679072380066, + -0.014908253215253353, + 0.0498417429625988, + 0.044269051402807236, + 0.03434757515788078, + -0.0003391383506823331, + 0.020728331059217453, + -0.0005700453766621649, + -0.004234855528920889, + -0.005481550004333258, + -0.011490422300994396, + 0.00934207160025835, + 0.005282990168780088, + -0.018293533474206924, + -0.032680973410606384, + 0.043800320476293564, + 0.01363226305693388, + 0.02232982963323593, + 0.0013809665106236935, + 0.02275949902832508, + 0.01762949861586094, + 0.00855434313416481, + 0.0007380887400358915, + 0.016509750857949257, + 0.006181391421705484, + 0.025610947981476784, + -0.01639256812632084, + -0.008769177831709385, + 0.010429267771542072, + -0.012187008745968342, + 0.012356272898614407, + -0.010123290121555328, + -0.00755828944966197, + 0.016001960262656212, + -0.0012108887312933803, + -0.011119343340396881, + -0.019074752926826477, + -0.004885870963335037, + -0.019074752926826477, + 0.009830333292484283, + 0.030337318778038025, + -0.024282876402139664, + -0.02136632613837719, + 0.04268057271838188, + -0.015533228404819965, + -0.02229076810181141, + 0.005396917928010225, + -0.016835259273648262, + 0.02874884195625782, + 0.00992798525840044, + 0.0028286620508879423, + 0.0011286980006843805, + 0.027681177482008934, + -0.006578511092811823, + 0.017330031841993332, + -0.02325427159667015, + 0.013541121035814285, + 0.01258412841707468, + 0.0008035972132347524, + 0.009185828268527985, + -0.04192539304494858, + -0.02924361452460289, + -0.011405790224671364, + 0.024465160444378853, + 0.014869192615151405, + -0.0013012171257287264, + -0.016574854031205177, + 0.010409737005829811, + -0.006578511092811823, + -0.0012800591066479683, + -0.029373817145824432, + -0.046768948435783386, + -0.0036489416379481554, + 0.01731701008975506, + -0.02584531344473362, + -0.01960858516395092, + 0.008489241823554039, + 0.01753835566341877, + 0.007102578412741423, + 0.014947314746677876, + 0.005907965358346701, + -0.012004724703729153, + -0.00556618208065629, + -0.01785084418952465, + 0.006926804315298796, + -0.0004386216460261494, + -0.016353508457541466, + -0.001752859097905457, + -0.0091402567923069, + 0.018879447132349014, + -0.011125854216516018, + -0.0035187385510653257, + 0.020155437290668488, + -0.02581927180290222, + 0.002171136438846588, + 0.00117508287075907, + 0.021600691601634026, + -0.0011726415250450373, + 0.012349762953817844, + 0.01580665446817875, + 0.00034768294426612556, + -0.010201412253081799, + -0.012903125956654549, + 0.03369655832648277, + -0.033149708062410355, + 0.02593645453453064, + -0.008970992639660835, + 0.017004523426294327, + 0.014621807262301445, + -0.0003999676264356822, + -0.035962093621492386, + -0.021756935864686966, + -0.011216996237635612, + 0.0020458160433918238, + 0.021066859364509583, + 0.03304554522037506, + -0.0145567050203681, + 0.00921837892383337, + 0.03393092378973961, + 0.02778533846139908, + 0.0009008425986394286, + 0.007538758683949709, + 0.01251902710646391, + 0.0015632507856935263, + 0.01371038518846035, + -0.008957972750067711, + -0.6220582723617554, + 0.011171424761414528, + 0.011666196398437023, + -0.02062417007982731, + 0.007493187673389912, + 0.016236325725913048, + 0.018319575116038322, + 0.012421374209225178, + 0.002958865137770772, + 0.04007650911808014, + -0.012317212298512459, + 0.0009350209147669375, + -0.03255077078938484, + -0.012050296179950237, + -0.0005549906636588275, + -0.006321359891444445, + 0.003325061406940222, + -0.010299064218997955, + 0.029451938346028328, + 0.020663229748606682, + -0.009550396353006363, + 0.01893152855336666, + 0.002195549663156271, + -0.005341581534594297, + 0.014231197535991669, + 0.01589779742062092, + 0.007415066007524729, + -0.03356635570526123, + 0.009289990179240704, + 0.004117672797292471, + -0.0077601042576134205, + 0.023879246786236763, + -0.02825406938791275, + 0.01677015796303749, + 0.04788869619369507, + 0.03025919757783413, + -0.012571108527481556, + 0.013762466609477997, + 0.011946133337914944, + 0.00450177164748311, + -7.181514229159802e-05, + 0.0029132941272109747, + 0.0040330407209694386, + -0.005660579074174166, + 0.01072873454540968, + 0.013476019725203514, + 0.04101397097110748, + -0.01911381259560585, + -0.01071571372449398, + -0.014869192615151405, + 0.011503443121910095, + -0.008547833189368248, + 0.019217975437641144, + 0.006633847486227751, + 0.017030563205480576, + -0.006637102458626032, + 0.014921274036169052, + -0.011230016127228737, + 0.0052048685029149055, + -0.000805224699433893, + 0.014009851962327957, + -0.003388535464182496, + -0.013606222346425056, + -0.03325386717915535, + -0.008463201113045216, + 0.037993259727954865, + -0.02578021213412285, + 0.007994469255208969, + -0.0018440012354403734, + -0.013020308688282967, + -0.01992107182741165, + 0.026209881529211998, + 0.004986778367310762, + -0.024478180333971977, + 0.027629096060991287, + 0.008489241823554039, + 0.0374203659594059, + -0.003297393210232258, + -0.0013288853224366903, + 0.02939985692501068, + -0.0038865620736032724, + -0.02075437270104885, + 0.003045124700292945, + 0.0016088219126686454, + 0.026847876608371735, + -0.028983207419514656, + -0.022394930943846703, + -0.003958174027502537, + 0.0021727639250457287, + 0.009921475313603878, + 0.027550972998142242, + 0.012571108527481556, + 0.0019660666584968567, + -0.027629096060991287, + -0.0008479476091451943, + 0.04971154034137726, + -0.010240472853183746, + 0.04153478518128395, + 0.006532940082252026, + -0.04202955588698387, + -0.0382276251912117, + 0.0012645975220948458, + 0.019061733037233353, + -0.0012458808487281203, + 0.013274204917252064, + -0.0017951751360669732, + -0.011900561861693859, + 0.011295118369162083, + 0.04166498780250549, + -0.023085007444024086, + -0.0032680975273251534, + 0.005266714841127396, + -0.02235586941242218, + -0.00988241471350193, + -0.010767795145511627, + -0.018072187900543213, + 0.03286325931549072, + -0.009752211160957813, + 0.016158202663064003, + 0.023540718480944633, + -0.004205559846013784, + 0.003619645955041051, + 0.02350165694952011, + -0.02760305441915989, + -0.008424139581620693, + 0.02440005913376808, + -0.010911018587648869, + 0.012532046996057034, + -0.019934093579649925, + -0.00829393696039915, + 0.009335561655461788, + 0.013671324588358402, + 0.035649605095386505, + -0.005116981454193592, + 0.04874803498387337, + 0.007740573491901159, + 0.007538758683949709, + -0.007981449365615845, + -0.023150108754634857, + -0.030832091346383095, + -0.0031753277871757746, + -0.002595924073830247, + 0.001749604009091854, + -0.06088296324014664, + -0.030988335609436035, + -0.02303292602300644, + -0.011275587603449821, + 0.0015705747064203024, + -0.01580665446817875, + 0.0031688176095485687, + -0.015572289004921913, + -0.004039550665766001, + -0.02710828371345997, + 0.012525537051260471, + -0.004560363013297319, + 0.0055922227911651134, + 0.004075356759130955, + -0.006194411776959896, + -0.016483711078763008, + -0.02028564177453518, + 0.00010528140410315245, + 0.005989341996610165, + -0.044269051402807236, + -0.011015181429684162, + -0.011028201319277287, + -0.011262566782534122, + -0.0054978253319859505, + 0.00934207160025835, + -0.020910615101456642, + -0.03109249658882618, + -0.01034463569521904, + -0.012219559401273727, + -0.010891488753259182, + 0.018085209652781487, + 0.003440616652369499, + -0.008079101331532001, + -0.03593605384230614, + -0.014504623599350452, + 0.008638975210487843, + 0.0031232465989887714, + 0.013749445788562298, + -0.019738787785172462, + -0.025702089071273804, + -0.012655740603804588, + 0.014752009883522987, + -0.007655941415578127, + 0.008521792478859425, + -0.006751030217856169, + 0.006526429671794176, + 0.007747083902359009, + 0.016314446926116943, + 0.03038940019905567, + -0.010220942087471485, + 0.0013231888879090548, + -0.015051476657390594, + -0.01338487770408392, + -0.006998416036367416, + -0.005781017243862152, + -0.021197061985731125, + 0.02096269652247429, + 0.047628290951251984, + -0.008007490076124668, + 0.00722627155482769, + 0.009674089029431343, + 0.003521993523463607, + -0.02235586941242218, + 0.00833950750529766, + 0.0007942388183437288, + 0.019152874127030373, + 0.0009976811707019806, + 0.0307279285043478, + -0.02003825455904007, + -0.03153518959879875, + -0.005061645060777664, + -0.012147948145866394, + 0.050961486995220184, + -0.011093303561210632, + 0.00875615794211626, + -0.013280714862048626, + 0.006757540162652731, + 0.0042088148184120655, + 0.007532248739153147, + 0.022460032254457474, + -0.021184042096138, + -0.022147545590996742, + -0.01589779742062092, + -0.007714532781392336, + 0.016262365505099297, + 0.00031818379648029804, + -0.016809219494462013, + -0.0012507634237408638, + 0.008925422094762325, + 0.006855192594230175, + -0.003951663617044687, + -0.015884777531027794, + 0.00324205681681633, + 0.015923837199807167, + -0.014986375346779823, + 0.021262165158987045, + -0.005670344457030296, + 0.024842748418450356, + 0.02374904416501522, + 0.0008520164410583675, + 0.0014542057178914547, + 0.01861904188990593, + -0.010318594984710217, + 0.03588397055864334, + 0.033670518547296524, + -0.0016519516939297318, + 0.021652773022651672, + -0.004999798722565174, + -0.0018798070959746838, + 0.005680109839886427, + -0.018020108342170715, + 0.005644303746521473, + -0.016535792499780655, + -0.0019351433729752898, + -0.011724787764251232, + 0.02229076810181141, + 0.0153639642521739, + -0.0016364901093766093, + 0.020949676632881165, + 0.014309319667518139, + -0.0035936052445322275, + 0.005715915467590094, + -0.007675472181290388, + -0.0106050418689847, + -0.012571108527481556, + -0.018983609974384308, + 0.007408555597066879, + 0.007109088823199272, + -0.002776580862700939, + -0.00927697028964758, + -0.0006815317901782691, + 0.0007100137299858034, + -0.00530252093449235, + -0.02275949902832508, + 0.005920985247939825, + 0.010461818426847458, + 0.026288002729415894, + -0.008346018381416798, + 0.006933314260095358, + -0.00946576427668333, + 0.030207116156816483, + -0.01936119981110096, + -0.012375803664326668, + -0.0019367709755897522, + 0.01945234090089798, + -0.021991301327943802, + -0.0010896370513364673, + -0.007695002481341362, + 0.00014922494301572442, + -0.022889703512191772, + -0.010110270231962204, + 0.010051678866147995, + -0.022954804822802544, + 0.007050497457385063, + -0.02973838523030281, + -0.005120236426591873, + 0.005126746371388435, + 0.016561832278966904, + -0.026561429724097252, + -0.0012971482938155532, + -0.013150512240827084, + 0.022316809743642807, + -0.0016779922880232334, + -0.021809017285704613, + -0.014231197535991669, + -0.0014924529241397977, + -0.03158726915717125, + -0.0015290725277736783, + -0.023111049085855484, + -0.005341581534594297, + 0.0014973354991525412, + 0.006073974072933197, + 0.004612444434314966, + -0.017837822437286377, + -0.011568544432520866, + 0.0373682864010334, + -0.0035968602169305086, + 0.014153075404465199, + -0.04820118471980095, + 0.021730896085500717, + 0.0013777114218100905, + 0.048097021877765656, + 0.01936119981110096, + -0.008619444444775581, + 0.01701754331588745, + 0.004801238887012005, + 0.0021597438026219606, + 0.007721043191850185, + -0.0324205681681633, + -0.004182774107903242, + -0.008502261713147163, + 0.004784963559359312, + -0.016848279163241386, + 0.02257721498608589, + -0.010214432142674923, + 0.019230995327234268, + 0.007662451826035976, + 0.0021727639250457287, + -0.01852789893746376, + 0.012532046996057034, + 0.008704076521098614, + -0.0008813121821731329, + -0.00813769269734621, + -0.004980267956852913, + 0.05770600959658623, + 0.010357655584812164, + -0.004592914134263992, + 0.04465965926647186, + 0.014830132015049458, + 0.006959354970604181, + -0.011386260390281677, + 0.005647559184581041, + 0.042107678949832916, + 0.009921475313603878, + 0.01677015796303749, + -0.04768037050962448, + 0.0014818739145994186, + 0.015507187694311142, + -0.018358634784817696, + 0.030467523261904716, + 0.012571108527481556, + 0.02955610118806362, + 0.016418609768152237, + 0.007083048112690449, + -0.017902923747897148, + 0.012929166667163372, + -0.014621807262301445, + 0.0063376352190971375, + 0.025181276723742485, + -0.007564799394458532, + -0.018085209652781487, + 0.008710586465895176, + -0.029451938346028328, + -0.025376582518219948, + -0.015155639499425888, + 0.0066729080863296986, + -0.02361883968114853, + 0.014569725841283798, + -0.012453925795853138, + 0.005794037599116564, + -0.028384273871779442, + -0.03973798081278801, + -0.023137088865041733, + -0.008424139581620693, + -0.022277748212218285, + -0.005035604350268841, + -0.0005549906636588275, + -0.005816822871565819, + 0.0070960684679448605, + -0.01843675784766674, + 0.011028201319277287, + 0.033983007073402405, + -0.019999194890260696, + -0.025519805029034615, + 0.0022069422993808985, + 0.0028188969008624554, + 0.011145384050905704, + 0.025220338255167007, + -0.002361558610573411, + 0.0025666283909231424, + -0.006119545083492994, + -0.002216707682237029, + -0.016757138073444366, + -0.016809219494462013, + -0.015416045673191547, + -0.019126834347844124, + 0.0021483509335666895, + -0.017473254352808, + -0.01207633689045906, + -0.0020279129967093468, + 0.02309802733361721, + -0.013723405078053474, + 0.0066110617481172085, + 0.009615497663617134, + 0.011776869185268879, + -0.012213049456477165, + 0.0003295765782240778, + 0.01330675557255745, + -0.004065591376274824, + 0.0307279285043478, + -0.024413079023361206, + 0.014335360378026962, + 0.013736425898969173, + -0.006386461667716503, + -0.014061933383345604, + 0.030858131125569344, + -0.0011425320990383625, + -0.018514879047870636, + 0.017837822437286377, + -0.0022932018619030714, + 0.004335762932896614, + 0.032498691231012344, + -0.031821634620428085, + 0.020559066906571388, + -0.0020311682019382715, + -0.01985597051680088, + 0.013658303767442703, + 0.02012939751148224, + 0.00926394946873188, + 0.026691632345318794, + -0.01344997901469469, + -0.0011563661973923445, + -0.024347977712750435, + 0.03518087416887283, + -0.002900273771956563, + 0.013645283877849579, + 0.01704358495771885, + 0.013593202456831932, + 0.020220540463924408, + -0.021548612043261528, + 0.00509419571608305, + 0.0010261631105095148, + 0.016158202663064003, + 0.01253855787217617, + 0.009823823347687721, + -0.0024217774625867605, + -0.0063766962848603725, + 0.013697365298867226, + 0.004016765393316746, + -0.02665257267653942, + -0.012733861804008484, + -0.013489039614796638, + 0.008743137121200562, + -0.002260651206597686, + 0.017915945500135422, + 0.010474838316440582, + -0.025923434644937515, + -0.02318917028605938, + 9.663510718382895e-05, + -0.008762667886912823, + 0.04088376834988594, + -0.026392165571451187, + -0.007825206033885479, + -0.0282280296087265, + 0.013267694972455502, + -0.009569927118718624, + -0.01778574101626873, + 0.012453925795853138, + -0.035675644874572754, + 0.008710586465895176, + 0.013319776393473148, + 0.010533429682254791, + 0.004749157465994358, + 0.0153639642521739, + 0.005266714841127396, + -0.00019703389261849225, + -0.02262929640710354, + 0.0025568632408976555, + 0.01663995534181595, + -0.00636042095720768, + 0.03393092378973961, + 0.007603860460221767, + 0.01639256812632084, + -0.005338326562196016, + 0.0017642518505454063, + 0.014335360378026962, + 0.0307539701461792, + -0.026144780218601227, + -0.038670316338539124, + -0.027290567755699158, + -0.02469952590763569, + -0.01762949861586094, + 0.009856374002993107, + -0.005582457408308983, + 0.0095438864082098, + -0.03971194103360176, + -0.017056604847311974, + 0.0071546598337590694, + 0.015507187694311142, + -0.017460234463214874, + 0.005862393882125616, + 0.008795218542218208, + -0.016665995121002197, + 0.017212849110364914, + 0.031170619651675224, + 0.0018993375124409795, + 0.011653176508843899, + -0.01837165653705597, + -0.022954804822802544, + -0.009641538374125957, + 0.02226472832262516, + -0.009908455424010754, + -0.006461328361183405, + 0.008300446905195713, + -0.00735647464171052, + 0.004293446894735098, + 0.00014444405678659678, + 0.010019127279520035, + -0.029451938346028328, + 0.014205156825482845, + -0.023579780012369156, + 0.012532046996057034, + -0.01258412841707468, + -0.030493563041090965, + -0.03492046892642975, + 0.016041019931435585, + -0.01775970123708248, + -0.01224560011178255, + 0.037133920937776566, + 0.0023241250310093164, + 0.011952643282711506, + 0.015832696110010147, + 0.006308339536190033, + 0.013593202456831932, + -0.0003381211427040398, + 0.03458194062113762, + 0.004615699406713247, + -0.038670316338539124, + -0.019868990406394005, + -0.034842345863580704, + -0.012961717322468758, + -0.026561429724097252, + 0.026288002729415894, + -0.0042088148184120655, + -0.03044148162007332, + -0.030311278998851776, + -0.004791473504155874, + 0.00855434313416481, + -0.015858735889196396, + -0.0028872534167021513, + 0.03770681470632553, + 0.029477979987859726, + -0.009608987718820572, + 0.006855192594230175, + -0.004111162386834621, + -0.00589819997549057, + 0.00781218521296978, + 0.008248365484178066, + -0.004739392548799515, + -0.0014183998573571444, + -0.004566873423755169, + -0.008951461873948574, + 0.025376582518219948, + -0.011073772795498371, + 0.011646666564047337, + 0.0030207117088139057, + -0.018983609974384308, + -0.012675270438194275, + -0.01917891576886177, + -0.00017536728410050273, + 0.00921837892383337, + 0.011405790224671364, + 0.037654731422662735, + 0.00242014997638762, + -0.019725767895579338, + 0.01312447153031826, + -0.015416045673191547, + 0.009289990179240704, + 0.009674089029431343, + 0.0030142015311867, + 0.020520007237792015, + 0.0018277259077876806, + -0.020949676632881165, + 0.003453637007623911, + -0.001525003695860505, + 0.013163532130420208, + -0.006438542623072863, + -0.007708022836595774, + -0.014074954204261303, + -0.023514676839113235, + -0.013541121035814285, + -0.0023794614244252443, + 0.02316312864422798, + -0.00036111014196649194, + -0.0071546598337590694, + -0.003001181175932288, + -0.015272822231054306, + -0.007473657373338938, + -0.0215876717120409, + 0.04020671546459198, + -0.019504422321915627, + -0.008892870508134365, + -0.009088175371289253, + -0.006034913007169962, + 0.027863461524248123, + -0.00768198212608695, + -0.0055596716701984406, + -0.014934293925762177, + 0.021418407559394836, + -0.03320178762078285, + 0.020220540463924408, + 0.028670720756053925, + 0.007668961770832539, + -0.00960247777402401, + 0.004664525855332613, + 0.003466657130047679, + -0.02744681015610695, + 0.022460032254457474, + 0.013274204917252064, + -0.022342849522829056, + 0.0029816506430506706, + -0.008997033350169659, + 0.003349474398419261, + -0.01411401480436325, + -0.004020020365715027, + 0.021756935864686966, + -0.00940066296607256, + 0.007551779039204121, + -0.006067464128136635, + -0.015884777531027794, + 0.029217572882771492, + 0.013072390109300613, + -0.018202392384409904, + 0.03528503701090813, + -0.024803688749670982, + 0.012453925795853138, + 0.016744116321206093, + 0.005719170439988375, + -0.004644995089620352, + -0.022655338048934937, + -0.01927005685865879, + -0.011861501261591911, + 0.021600691601634026, + -0.01627538539469242, + -0.0016609031008556485, + 0.01207633689045906, + -0.018020108342170715, + -0.008632464334368706, + 0.015533228404819965, + -1.595750745764235e-06, + -0.006041423417627811, + -0.006034913007169962, + 0.005549906753003597, + -0.007460637018084526, + 0.005937261041253805, + -0.0021906669717282057, + -0.031196659430861473, + -0.0030369870364665985, + -0.008202794939279556, + -0.03601417317986488, + -0.025545846670866013, + -0.0063181049190461636, + 0.029009247198700905, + 0.010637592524290085, + -0.02877488173544407, + 0.0020799944177269936, + 0.016848279163241386, + -0.0440346859395504, + -0.02501201257109642, + -0.0055336314253509045, + -0.010227452963590622, + 0.016744116321206093, + 0.013944750651717186, + -0.01954348385334015, + 0.03044148162007332, + -0.00045367638813331723, + 0.03729016333818436, + -0.015832696110010147, + -0.02059812843799591, + 0.0075127179734408855, + -0.005546651780605316, + 0.025623967871069908, + 0.016444649547338486, + -0.035675644874572754, + 0.002032795688137412, + 0.030337318778038025, + 0.007441106718033552, + -0.010891488753259182, + 0.005331816617399454, + -0.000490702863316983, + -0.004339017905294895, + -0.014530664309859276, + 0.021418407559394836, + 0.011854991316795349, + -0.010494369082152843, + 0.02100175805389881, + -0.01911381259560585, + 0.006073974072933197, + 0.013840588741004467, + 0.00334621942602098, + -0.03809742256999016, + 0.008332997560501099, + 0.0007140825618989766, + -0.023788103833794594, + -0.00014098553219810128, + 0.012525537051260471, + -0.010813366621732712, + -0.005116981454193592, + -0.0040558259934186935, + 0.024998992681503296, + 0.014387440867722034, + 0.003023966681212187, + 0.022655338048934937, + 0.006913783960044384, + -0.002937707118690014, + -0.020454905927181244, + -0.0037758895196020603, + -0.04166498780250549, + 0.005139766726642847, + 0.003779144724830985, + -0.009179317392408848, + 0.030467523261904716, + -0.03468610346317291, + 0.009778251871466637, + -0.016809219494462013, + 0.003863776568323374, + -0.004202304873615503, + -0.016600893810391426, + -0.031170619651675224, + 0.0043845889158546925, + 0.006724989507347345, + 0.0014957080129534006, + 0.00014800428471062332, + -0.01803312823176384, + -0.015168659389019012, + -0.009101196192204952, + -0.006939824670553207, + 0.00028298827237449586, + -0.012226070277392864, + -0.01511657889932394, + 0.018579980358481407, + -0.013723405078053474, + -0.005051879677921534, + -0.007460637018084526, + -0.0011124226730316877, + -0.017525335773825645, + 0.017616478726267815, + 0.21540798246860504, + 0.0018277259077876806, + -0.007265332154929638, + 0.010904508642852306, + -0.019244017079472542, + 0.002167881466448307, + 0.026444246992468834, + -0.020793432369828224, + 0.00942019373178482, + 0.029139451682567596, + -0.035805847495794296, + 0.023137088865041733, + 0.022186607122421265, + 0.0055596716701984406, + 0.014231197535991669, + -0.03486838564276695, + -0.03669122979044914, + 0.00735647464171052, + 0.01670505665242672, + 0.015572289004921913, + 0.016900360584259033, + -0.027837419882416725, + 0.004404119681566954, + -0.014517644420266151, + 0.020585108548402786, + 0.0016340487636625767, + -0.005621518474072218, + 0.0009187455289065838, + 0.025181276723742485, + 0.014009851962327957, + 3.158442268613726e-05, + -5.3708772611571476e-05, + -0.0011864756233990192, + 0.006835662294179201, + 0.010260003618896008, + -0.002236237982288003, + 0.010813366621732712, + -0.035623565316200256, + 0.011418811045587063, + 0.019165894016623497, + 0.010565980337560177, + -0.004671035800129175, + -0.016171224415302277, + -0.021418407559394836, + 0.014400461688637733, + 0.014257238246500492, + -0.019465360790491104, + 0.01296822726726532, + 0.010058188810944557, + -0.002949099987745285, + -0.014647847041487694, + -0.002853075275197625, + 0.007916348055005074, + 0.03882656246423721, + -0.0036359212826937437, + 0.015598329715430737, + 0.005455509293824434, + -0.016665995121002197, + -0.004228345118463039, + 0.021066859364509583, + -0.02893112599849701, + 0.022967824712395668, + -0.010963100008666515, + 0.03952965885400772, + -0.01805916801095009, + 0.012818493880331516, + -0.01877528615295887, + 0.02003825455904007, + 0.014127034693956375, + 0.0049314419738948345, + -0.01193311344832182, + -0.02809782698750496, + -0.019647646695375443, + 0.019556503742933273, + -0.006565490737557411, + -0.022433992475271225, + 0.02152257040143013, + 0.01184197049587965, + 0.02550678513944149, + 0.0399463064968586, + -0.024165693670511246, + -0.00423811050131917, + -0.008430649526417255, + -0.0382276251912117, + 0.008730117231607437, + -0.03900884464383125, + 0.03309762477874756, + -0.004436670336872339, + -0.013111450709402561, + -0.010579001158475876, + -0.01079383585602045, + -0.002084876876324415, + 0.005195103120058775, + -0.031014375388622284, + 0.0216137133538723, + -0.009862883947789669, + 0.012193519622087479, + 0.009101196192204952, + -0.01054645050317049, + -0.005130001809448004, + -0.004677545744925737, + 0.08609028160572052, + 0.01605404168367386, + -0.013436959125101566, + -0.00543597899377346, + -0.0060284030623734, + -0.011737808585166931, + 0.02578021213412285, + 0.00022988983255345374, + -0.020493965595960617, + -0.0050258394330739975, + -0.03291533887386322, + -0.002851447556167841, + -0.016418609768152237, + 0.003567564534023404, + 0.03145706653594971, + 0.0031395219266414642, + -0.0020734842400997877, + -0.006637102458626032, + -0.01719982735812664, + -0.006184646859765053, + -0.007447616662830114, + -0.005377387627959251, + -0.006109779700636864, + 0.0050486247055232525, + -0.016991503536701202, + -0.017798762768507004, + -0.007753593847155571, + -0.014856172725558281, + -0.0291134100407362, + 0.02676975540816784, + -0.024374017491936684, + -0.008651995100080967, + -0.007219761144369841, + -0.005979576613754034, + 0.02498597279191017, + 0.012877085246145725, + -0.028644679114222527, + -0.008534812368452549, + 0.0055368863977491856, + 0.004068846348673105, + -0.0034861876629292965, + -0.006415757350623608, + -0.005396917928010225, + 0.016939422115683556, + -0.01729097031056881, + -0.00906213466078043, + -0.008970992639660835, + -0.013827567920088768, + -0.026444246992468834, + 0.024686506018042564, + -0.012206539511680603, + 0.01071571372449398, + -0.03221224248409271, + 0.018332595005631447, + 0.004557108040899038, + -0.010461818426847458, + -0.02602759748697281, + 0.023970387876033783, + 0.016744116321206093, + -0.011588075198233128, + 0.008482730947434902, + -0.005442488938570023, + -0.015559269115328789, + -0.03088417276740074, + 0.01602800004184246, + -0.1629101037979126, + 0.021171022206544876, + 0.030780009925365448, + -0.036326661705970764, + 0.010787325911223888, + -0.00865850504487753, + 0.0021646262612193823, + 0.010318594984710217, + -0.02170485444366932, + 0.008332997560501099, + 0.03721204400062561, + -0.007317413575947285, + -0.036847472190856934, + -0.01568947173655033, + -0.008404609747231007, + 0.013801527209579945, + -0.021405387669801712, + 0.02587135322391987, + -0.007050497457385063, + 0.016561832278966904, + 0.01911381259560585, + -0.029321735724806786, + 0.007623390760272741, + -0.008567363023757935, + 0.0010595276253297925, + -0.0009187455289065838, + -0.0032941382378339767, + 0.030493563041090965, + 0.004583148751407862, + 0.0010937059996649623, + 0.00714814942330122, + -0.010019127279520035, + 0.05270621180534363, + -0.004524557385593653, + -0.011431830935180187, + 0.007141639478504658, + 0.028201989829540253, + -0.012668760493397713, + -0.008280916139483452, + 0.0366131067276001, + 0.03286325931549072, + 0.005956791341304779, + -0.0055922227911651134, + 0.010937059298157692, + -0.03791514039039612, + 0.009511335752904415, + 0.01738211140036583, + 0.001790292444638908, + -0.017160767689347267, + -0.004609189461916685, + 0.02186109870672226, + -0.005116981454193592, + -0.008625954389572144, + 0.009700129739940166, + 0.010233962908387184, + 0.010565980337560177, + 0.004612444434314966, + 0.01803312823176384, + -0.0095438864082098, + 0.002610571915283799, + 0.0038279707077890635, + -0.007883797399699688, + 0.01861904188990593, + -0.0011563661973923445, + -0.0007747084018774331, + -0.03307158499956131, + -0.002761933021247387, + -0.0020441885571926832, + -0.029790466651320457, + 0.008834279142320156, + -0.004192539490759373, + -0.01639256812632084, + 0.009224888868629932, + 0.016444649547338486, + 0.00367823732085526, + 0.0033624947536736727, + -0.003919112961739302, + 0.007532248739153147, + -0.0008861947571858764, + 0.008202794939279556, + -0.024308916181325912, + 0.04385240003466606, + -0.024126632139086723, + -0.017421172931790352, + -0.01855394057929516, + 0.002140213269740343, + -0.006939824670553207, + 0.0026301024481654167, + 0.015923837199807167, + 0.013313265517354012, + 0.017369091510772705, + -0.033800721168518066, + -0.017955005168914795, + -0.0024950166698545218, + -0.008404609747231007, + -0.008248365484178066, + 0.02316312864422798, + 0.011275587603449821, + -0.006913783960044384, + -0.01818937063217163, + -0.0010009362595155835, + -0.011034712195396423, + -0.0291134100407362, + -0.006155351176857948, + -0.0021874119993299246, + 0.023085007444024086, + -0.00761037040501833, + 0.002128820400685072, + 0.040128592401742935, + -0.0013150512240827084, + -0.019868990406394005, + -0.006002362351864576, + 0.019230995327234268, + 0.009049114771187305, + -0.005273225251585245, + 0.00471009686589241, + 0.017095666378736496, + -0.007408555597066879, + -0.0017675069393590093, + 0.0019416535506024957, + 0.04400864243507385, + -0.002189039485529065, + -0.03341011330485344, + 0.010233962908387184, + 0.0010448797838762403, + -0.04307118058204651, + -0.09739191085100174, + 0.01238231360912323, + 0.011295118369162083, + 0.03637874126434326, + 0.015129598788917065, + 0.013052859343588352, + 0.0003183872322551906, + -0.005331816617399454, + 0.011926602572202682, + 0.009127236902713776, + -0.04450341686606407, + -0.021639753133058548, + -0.003557799383997917, + -0.0051072160713374615, + 0.016197264194488525, + -0.019569523632526398, + -0.019009651616215706, + -0.01224560011178255, + -0.028514476493000984, + 0.024647444486618042, + 0.014908253215253353, + -0.015155639499425888, + -0.012466945685446262, + -0.01663995534181595, + -0.03234244883060455, + 0.006952845025807619, + -0.024035489186644554, + 0.01290963590145111, + 0.012590638361871243, + 0.0034601471852511168, + 0.018996629863977432, + -0.013462998904287815, + 0.0316133089363575, + -0.024308916181325912, + 0.010839407332241535, + -0.002485251519829035, + -0.006568745709955692, + -0.03010295331478119, + 0.009114216081798077, + -0.012206539511680603, + -0.003958174027502537, + 0.003961428999900818, + 0.013345816172659397, + -0.01929609850049019, + -0.021978281438350677, + -0.005904709920287132, + -0.011601095087826252, + -0.0019123578676953912, + 0.014231197535991669, + 7.242547144414857e-05, + -0.03468610346317291, + -0.016509750857949257, + 0.001254832255654037, + -0.0028709780890494585, + 0.004511537030339241, + -0.0017642518505454063, + -0.008977502584457397, + -0.014061933383345604, + -0.013580182567238808, + 0.020064296200871468, + -0.003069537691771984, + 0.01145787164568901, + -0.03335803002119064, + 0.02939985692501068, + 0.005325306206941605, + 0.005777762271463871, + -0.042133718729019165, + -0.010305574163794518, + 0.006405991967767477, + -0.02424381487071514, + -0.010149330832064152, + -0.0036001154221594334, + 0.00463848514482379, + -0.002049071015790105, + -0.03023315779864788, + 0.010533429682254791, + -0.031170619651675224, + -0.026392165571451187, + 0.017069624736905098, + -0.023801123723387718, + -0.012434395030140877, + -0.02402246929705143, + 0.027134323492646217, + -0.03374864161014557, + 0.016718076542019844, + -0.003945153672248125, + -0.004736137110739946, + -0.01213492825627327, + 0.009355091489851475, + -0.02343655563890934, + 0.007662451826035976, + 0.00642226729542017, + 0.030832091346383095, + -0.020428864285349846, + 0.01630142703652382, + 0.012297681532800198, + 0.011099813506007195, + -0.003124874085187912, + -0.004732882138341665, + 0.0017056604847311974, + -0.03143102675676346, + -0.014647847041487694, + -0.042159758508205414, + 0.019100792706012726, + 0.014205156825482845, + 0.007004925981163979, + -0.014283278957009315, + -0.0007669775513932109, + 0.004905401263386011, + 0.0120437853038311, + 0.004316232167184353, + 0.021327266469597816, + -0.018579980358481407, + 0.013762466609477997, + 0.020637189969420433, + -0.008632464334368706, + -0.022811580449342728, + -0.01587175577878952, + 0.02134028635919094, + 0.018241452053189278, + 0.010767795145511627, + 0.0009407172910869122, + -0.016080081462860107, + 0.003746593836694956, + -0.0015575544675812125, + 0.013423938304185867, + -0.022798560559749603, + 0.0074801673181355, + -0.011295118369162083, + 0.002498271642252803, + -0.00583635363727808, + -0.0066729080863296986, + 0.014231197535991669, + -0.016444649547338486, + -0.0037726345472037792, + 0.004007000010460615, + -0.01212190743535757, + -0.008033530786633492, + 0.015585309825837612, + 0.036847472190856934, + -0.002693576505407691, + 0.08364246040582657, + -0.03463402017951012, + -0.04226392135024071, + 0.0006974003044888377, + -0.025793232023715973, + 0.012727351859211922, + -0.00893844198435545, + 0.00013905283412896097, + -0.004381333943456411, + 0.020611148327589035, + -0.018358634784817696, + 0.03023315779864788, + 0.007792654912918806, + -0.0010375558631494641, + 0.0038833071012049913, + 0.035675644874572754, + -0.03671726956963539, + 0.014244217425584793, + 0.017668558284640312, + -0.0009146766969934106, + -0.014465562999248505, + 0.04434717074036598, + -0.001586850150488317, + 0.01731701008975506, + -0.0027700706850737333, + 0.025884373113512993, + -0.028879044577479362, + -0.01967368647456169, + 0.008567363023757935, + 0.011249546892940998, + -0.022134525701403618, + -0.028618639335036278, + -0.03338407352566719, + 0.001953046303242445, + 0.027004120871424675, + -0.01125605683773756, + -0.008469711057841778, + 0.026418207213282585, + -0.03127478063106537, + -0.0018846896709874272, + 0.032003920525312424, + 0.01463482715189457, + 0.0055922227911651134, + -0.01726492866873741, + 0.005582457408308983, + 0.00793587788939476, + 0.009504825808107853, + -0.014335360378026962, + 0.001296334550715983, + -0.00833950750529766, + 0.015429065562784672, + 0.01738211140036583, + 0.008665015920996666, + -0.0017740171169862151, + -0.011789890006184578, + 0.016171224415302277, + 0.02494691126048565, + 0.009856374002993107, + 0.0018928274512290955, + 0.004495261702686548, + 0.018319575116038322, + -0.011197465471923351, + 0.007076537702232599, + 0.01636652834713459, + -0.004824024625122547, + -0.02309802733361721, + 0.026353105902671814, + -0.009205358102917671, + -0.0212100837379694, + -0.00556618208065629, + 0.02361883968114853, + -0.03137894347310066, + 0.032498691231012344, + 0.012974738143384457, + -0.007317413575947285, + -0.019868990406394005, + 0.04635230079293251, + 0.013189572840929031, + -0.01224560011178255, + -0.0282280296087265, + 0.010246982797980309, + 0.023228231817483902, + -0.005491315387189388, + 0.00205395370721817, + -0.003508973168209195, + 0.03137894347310066, + 0.013866628520190716, + 0.006308339536190033, + -0.021353306248784065, + 0.025545846670866013, + -0.012408354319632053, + 0.003414575941860676, + -0.01238231360912323, + -0.011099813506007195, + 0.00023538277309853584, + -0.007297883275896311, + -0.03338407352566719, + 0.0101883914321661, + 0.030988335609436035, + 0.02365790121257305, + 0.08431951701641083, + 0.038305748254060745, + 0.014530664309859276, + -0.0021271929144859314, + 0.007284862920641899, + 0.007961918599903584, + 0.0035187385510653257, + 0.024959931150078773, + -0.003984214272350073, + -0.04937301203608513, + 0.006887743249535561, + -0.022316809743642807, + 0.008723607286810875, + -0.016418609768152237, + -0.009433213621377945, + 0.03255077078938484, + -0.020702291280031204, + 0.02791554294526577, + -0.00042153248796239495, + 0.021353306248784065, + 0.04226392135024071, + -0.01726492866873741, + 0.009914965368807316, + 0.023423535749316216, + -0.02958214096724987, + -0.019725767895579338, + 0.022095464169979095, + -0.016470691189169884, + -0.009042604826390743, + 0.0012645975220948458, + -0.011815930716693401, + 0.012675270438194275, + -0.062080834060907364, + -0.030467523261904716, + 0.01605404168367386, + -0.01238231360912323, + -0.0009675716864876449, + -0.019335158169269562, + 0.019100792706012726, + 0.009895434603095055, + 0.04059732332825661, + 0.01292265672236681, + -0.02361883968114853, + -0.03356635570526123, + -0.008144203573465347, + -0.009498314931988716, + -0.006907274015247822, + -0.025233358144760132, + -0.031509146094322205 + ], + "metadata": { + "source": "Kreye_Marieke_BA_241_V2.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 17, + "has_images": true, + "image_count": 98, + "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", + "links": [], + "last_modified": "2025-05-05T23:00:23", + "_known_field_names": "frozenset({'is_continuation', 'sent_to', 'header_footer_type', 'email_message_id', 'filename', 'languages', 'detection_class_prob', 'sent_from', 'link_texts', 'cc_recipient', 'subject', 'image_mime_type', 'image_path', 'filetype', 'page_number', 'last_modified', 'signature', 'detection_origin', 'text_as_html', 'attached_to_filename', 'bcc_recipient', 'data_source', 'link_start_indexes', 'category_depth', 'emphasized_text_tags', 'parent_id', 'orig_elements', 'page_name', 'coordinates', 'url', 'link_urls', 'file_directory', 'links', 'table_as_cells', 'emphasized_text_contents', 'key_value_pairs', 'image_base64'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "Kreye_Marieke_BA_241_V2.pdf", + "detection_class_prob": 0.3422867953777313, + "parent_id": "e02392183bc6851689602ad4b9f6039f", + "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", + "id": "ce00eae5-7e07-454f-9e4f-f79ac36f92f4", + "processing_timestamp": "2025-05-05T23:15:46.977945", + "chunk_number": 5, + "total_chunks": 56, + "chunking_strategy": "hybrid", + "word_count": 445 + } +} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000006.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000006.json new file mode 100644 index 0000000000000000000000000000000000000000..be45000ca95be7556813a23748e49a3c9eb07ff5 --- /dev/null +++ b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000006.json @@ -0,0 +1,1570 @@ +{ + "id": "61a115b2-0ff7-441a-f6d9-eb3d00000006", + "content": "Bott et al. 2018, S. 31). Die Erh\u00f6hung des Gr\u00fcnvolumens stellt einen wichtigen Faktor in der klimaresilienten Anpassung von St\u00e4dten dar und sollte deshalb verst\u00e4rkt in die Planung integriert werden. In Kapitel 2.3 wird auf die Wirkungsweise und den Mehrwert von Stadtgr\u00fcn n\u00e4her eingegangen. ## 2.2 Das Stadtklima\n\nDie klimatischen Bedingungen in einer Stadt unterschieden sich stark von denen des Umlands. Der Deutsche Wetterdienst (DWD) definiert das Stadtklima als \u201eein gegen\u00fcber dem Umland durch die Bebauung und anthropogene Emissionen modifiziertes Mesoklima\u201c (Deutscher Wetterdienst 2024b). Die Eigenschaften verwendeter Baustoffe hinsichtlich W\u00e4rmespeicherungskapazit\u00e4t und Reflexion, der hohe Versiegelungsgrad, das Fehlen von st\u00e4dtischem Gr\u00fcn, die Oberfl\u00e4chenrauigkeit und damit verbundenen geringeren Windgeschwindigkeiten sowie anthropogene Emissionen aus Verkehr und Geb\u00e4udeenergiebedarf beeinflussen das Stadtklima (vgl. Deutscher Wetterdienst 2024b; vgl. Mehra 2021, S. 76). Infolgedessen sind die Temperaturen in der Stadt im Vergleich zum Umland deutlich h\u00f6her. Die Temperaturdifferenz zwischen st\u00e4dtischen Raum und dem Umland kann 7-11 \u00b0C betragen (vgl. Feldmann et al. 2023, S. 9). Aufgrund unterschiedlicher Quartierstypologien weist das Klima einer Stadt eine gro\u00dfe Varianz verschiedener Mikroklimata auf, die abh\u00e4ngig von der Bebauungsstruktur und dem Vorhandensein blauer und gr\u00fcner Infrastruktur ist. Dadurch k\u00f6nnen beispielsweise lokal auftretende Hitzeinseln oder erh\u00f6hte Windgeschwindigkeiten in Stra\u00dfenschluchten entstehen (vgl. Deutscher Wetterdienst 2024b). Ebenso bildet sich um die Vegetation ein eigenes Klima aus, das sogenannte Bioklima. Das Bioklima wird von jeder Pflanze individuell gepr\u00e4gt und ist sowohl von H\u00f6he und Art der Vegetation als auch von der Interaktion der Pflanze mit der Umwelt abh\u00e4ngig (vgl. Feldmann et al. 2023, S. 9). Die heutige Bebauung in St\u00e4dten erweist sich aus klimatologischer Sicht als ineffizient, denn die Geb\u00e4ude sind an die mikroklimatischen Bedingungen in dem urbanen Raum nicht angepasst. Deshalb entstehen im Winter hohe Transmissionsw\u00e4rmeverluste, die die Lufttemperatur in der Stadt erh\u00f6hen. Im Sommer hingegen m\u00fcssen die Geb\u00e4ude mit hohem Energieaufwand gek\u00fchlt werden. (vgl. Mehra 2021, S. 76)\nDiese spezifischen klimatischen Bedingungen im urbanen Raum haben weitreichende Folgen auf den thermischen und lufthygienischen Komfort der Bev\u00f6lkerung.", + "embedding": [ + 0.029772551730275154, + 0.005844125058501959, + 0.020474936813116074, + -0.02714853174984455, + -0.005421506240963936, + 0.016374904662370682, + -0.017913993448019028, + 0.002855831291526556, + -0.01944046840071678, + -0.031639646738767624, + 0.009146229363977909, + 0.0061752814799547195, + -0.015504435636103153, + 0.00564858503639698, + -0.0054971990175545216, + -0.01867092214524746, + 0.04082372039556503, + -0.0036048758774995804, + 0.010533932596445084, + -0.004645653534680605, + -0.004248265642672777, + 0.014318578876554966, + 0.008338837884366512, + 0.002904716180637479, + -0.015138586051762104, + 0.02405773662030697, + 0.02574821189045906, + -0.02405773662030697, + -0.00645597605034709, + -0.0046740383841097355, + 0.008054989390075207, + -0.01388965267688036, + -0.041782498359680176, + 0.0006788709433749318, + -0.013700420036911964, + -0.009354384616017342, + -0.007405291777104139, + -0.025205746293067932, + 0.010502394288778305, + 0.005011502653360367, + 0.00669251661747694, + -0.013750881887972355, + 0.009941005147993565, + -0.006011280231177807, + 0.011511633172631264, + 0.03418797254562378, + 0.018898000940680504, + -0.0013151646126061678, + -0.017787838354706764, + 0.008546993136405945, + 0.028687620535492897, + 0.03085748478770256, + -0.009537309408187866, + 0.002480520401149988, + -0.027905460447072983, + -0.0019349005306139588, + -0.027476534247398376, + 0.010716857388615608, + 0.005219658371061087, + -0.025521133095026016, + -0.035449523478746414, + -0.010376239195466042, + -0.0009469501092098653, + 0.015264741145074368, + -0.03280026838183403, + -0.02055063098669052, + -0.01636228896677494, + 0.004528960213065147, + 0.019856778904795647, + -0.012943491339683533, + 0.04264035075902939, + 0.03597937151789665, + 0.01556751225143671, + -0.010067159309983253, + 0.0012867797631770372, + 0.0075188311748206615, + 0.007272828835994005, + 0.011177322827279568, + -0.020424475893378258, + 0.008799303323030472, + 0.0011267208028584719, + -0.03920893743634224, + -0.007550369948148727, + 0.04412897676229477, + 0.019566621631383896, + 0.016009055078029633, + 0.011044859886169434, + 0.0132841095328331, + 0.006206820253282785, + 0.006014434155076742, + -0.0061973584815859795, + 0.014217655174434185, + 0.010092390701174736, + 0.029066085815429688, + 0.0012378947576507926, + 0.0016936293104663491, + 0.00933546107262373, + -0.006291974801570177, + 0.024650665000081062, + -0.01801491715013981, + -0.01245148666203022, + 0.002996178576722741, + 0.003257949836552143, + -0.011562095023691654, + -0.050966572016477585, + 0.0027911767829209566, + 0.012855182401835918, + 0.01709398627281189, + 0.017598606646060944, + -0.020664170384407043, + -0.010584394447505474, + 0.030151017010211945, + -0.017346296459436417, + -0.038981858640909195, + 0.01978108659386635, + -0.01547920424491167, + 0.018090609461069107, + -0.0047528850845992565, + -0.0037404922768473625, + -0.011391785927116871, + 0.012703796848654747, + -0.0074305227026343346, + -0.00928499922156334, + -0.006566361524164677, + 0.013864421285688877, + 0.005125042051076889, + -0.011997329071164131, + -0.011063783429563046, + -0.036584917455911636, + -0.024310046806931496, + -0.022897111251950264, + 0.011019629426300526, + 0.015151201747357845, + 0.008326222188770771, + -0.03560090810060501, + 0.02659345045685768, + -0.020752478390932083, + 0.00324218044988811, + -0.027754073962569237, + -0.04463359713554382, + -0.01748506724834442, + 0.009512078016996384, + -0.031639646738767624, + -0.013877036981284618, + -0.0022014027927070856, + 0.022619571536779404, + 0.017888762056827545, + 0.017901377752423286, + -0.007361137308180332, + -0.023262960836291313, + -0.005897740833461285, + -0.0054404293186962605, + 0.0031317949760705233, + 0.00641182204708457, + -0.0007474676822312176, + 0.006742978468537331, + -0.016147825866937637, + -0.0043397280387580395, + -0.016122594475746155, + -0.004459575284272432, + 0.02767838165163994, + -0.016122594475746155, + 0.022770956158638, + 0.007354829926043749, + 0.012369486503303051, + -0.009404846467077732, + 0.0032074879854917526, + 0.002210864331573248, + 0.0015595897566527128, + -0.010937628336250782, + -0.012098253704607487, + 0.020046010613441467, + -0.03380950912833214, + 0.03681199625134468, + 0.006635746918618679, + 0.03010055609047413, + 0.0010959705105051398, + 0.02557159587740898, + -0.016576752066612244, + -0.02909131534397602, + -0.03085748478770256, + 0.006787132937461138, + 0.006938518490642309, + 0.016980446875095367, + -0.023187268525362015, + 0.003585952566936612, + 0.0359036810696125, + 0.020222628489136696, + 0.004245111718773842, + 0.004822270479053259, + 0.010849320329725742, + 0.009688694961369038, + 0.01624874956905842, + -0.016109978780150414, + -0.6354169249534607, + 0.01923861913383007, + 0.007007903885096312, + -0.01180178951472044, + 0.011032244190573692, + 0.009922081604599953, + 0.036004602909088135, + 0.015214279294013977, + -0.008023450151085854, + 0.03103410080075264, + 0.0046835001558065414, + 0.002717060735449195, + -0.012186561711132526, + 0.006888056639581919, + -0.0006891210796311498, + -0.023111574351787567, + 0.005216504447162151, + 0.01542874239385128, + 0.021622946485877037, + 0.014633966609835625, + -0.001966439187526703, + 0.011669326573610306, + -0.006414975970983505, + 0.003989648073911667, + 0.013549034483730793, + 0.028384849429130554, + -0.007954065687954426, + -0.03671107068657875, + -0.004560498986393213, + 0.030630405992269516, + -0.013031799346208572, + 0.027804536744952202, + -0.012287485413253307, + 0.01774999126791954, + 0.05424660071730614, + 0.02148417755961418, + -0.020020779222249985, + 0.012621795758605003, + 0.012041484005749226, + 0.005333197768777609, + 0.00821899063885212, + -0.012438871897757053, + -0.011858559213578701, + 0.004510037135332823, + 0.009221921674907207, + 0.012697489000856876, + 0.03398612514138222, + -0.016412749886512756, + -0.002016901271417737, + -0.009455308318138123, + 0.027022376656532288, + -0.01756075955927372, + 0.00984638836234808, + 0.024839896708726883, + 0.022897111251950264, + -0.002903139218688011, + 0.02565990388393402, + -0.002146210055798292, + -0.01590813137590885, + 0.0029362549539655447, + 0.0056958929635584354, + 0.002622444648295641, + -0.012533487752079964, + -0.029343625530600548, + -0.019453082233667374, + 0.042312346398830414, + -0.027249455451965332, + -0.014974584802985191, + 0.0019885164219886065, + -0.01878446154296398, + -0.016046900302171707, + 0.008963304571807384, + -0.0023811734281480312, + -0.013258878141641617, + 0.004128418397158384, + 0.007726986426860094, + 0.02704760618507862, + -0.007417907007038593, + -0.0009075267007574439, + 0.02916700951755047, + 0.012930875644087791, + -0.026139292865991592, + -0.02053801529109478, + -0.0035354907158762217, + 0.012066714465618134, + -0.03151348978281021, + -0.004166265018284321, + 0.007569293025881052, + 0.0017267449293285608, + 0.011782865971326828, + 0.021887872368097305, + 0.025130052119493484, + -0.01793922483921051, + -0.03186672553420067, + -0.011145783588290215, + 0.050234876573085785, + -0.006566361524164677, + 0.03570183366537094, + 0.010287931188941002, + -0.03698861226439476, + -0.020285705104470253, + 0.006503284443169832, + 0.012085638009011745, + 0.008761456236243248, + 0.005629661493003368, + 0.0029898707289248705, + -0.0071845208294689655, + 0.005629661493003368, + 0.023212498053908348, + -0.015353049151599407, + 0.019945086911320686, + -0.0014704929199069738, + 0.006301436573266983, + -0.010502394288778305, + -0.004976809956133366, + -0.01906200312077999, + 0.05278320237994194, + 0.010679011233150959, + 0.017623838037252426, + 0.012186561711132526, + 0.014167193323373795, + -0.0016100517241284251, + 0.017901377752423286, + -0.024928204715251923, + -0.011972098611295223, + 0.022884495556354523, + -0.016122594475746155, + 0.013448110781610012, + -0.016564136371016502, + -0.013536418788135052, + 0.007966681383550167, + 0.039360322058200836, + 0.03426366671919823, + -0.00017927792214322835, + 0.02026047371327877, + -0.004633038304746151, + 0.019856778904795647, + -0.0025483286008238792, + 0.013448110781610012, + -0.005020964425057173, + -0.007209751754999161, + -0.020235244184732437, + 0.0011085860896855593, + -0.03277503699064255, + -0.021950948983430862, + -0.0173715278506279, + -0.003194872522726655, + -0.001944362185895443, + -0.024095583707094193, + 0.0068628257140517235, + -0.03121071867644787, + -0.022796187549829483, + -0.010679011233150959, + 0.005307966843247414, + -0.008067605085670948, + 0.009026382118463516, + 0.011738711968064308, + -0.014381656423211098, + -0.0015248971758410335, + -0.023906350135803223, + -0.002111517358571291, + 0.0012323755072429776, + -0.02835961803793907, + -0.0032705652993172407, + -0.031185487285256386, + 0.006869133561849594, + 0.0022282106801867485, + 0.011454863473773003, + -0.022140182554721832, + -0.03976402059197426, + -0.0012394717196002603, + -0.02201402746140957, + 0.005446737166494131, + 0.011271938681602478, + -0.013612112030386925, + -0.029974400997161865, + -0.03706430643796921, + -0.011171014979481697, + -0.012205485254526138, + -0.00243952008895576, + 0.022228490561246872, + -0.01440688781440258, + -0.02220325917005539, + -0.021887872368097305, + 0.015151201747357845, + -0.0036458761896938086, + 0.014343810267746449, + 0.005635969340801239, + -0.007493600249290466, + 0.022165413945913315, + 0.02499128319323063, + 0.02360357902944088, + -0.00594504876062274, + 0.02462543360888958, + -0.016236133873462677, + -0.02843531034886837, + -0.009537309408187866, + 0.014179809018969536, + -0.021118327975273132, + 0.006698824465274811, + 0.025773443281650543, + 0.0008136989781633019, + 0.013309339992702007, + -0.01180809736251831, + 0.008931765332818031, + -0.031059332191944122, + 0.00690067233517766, + 0.009120997972786427, + 0.01277318224310875, + 0.009480539709329605, + 0.03148825839161873, + 0.008439761586487293, + -0.0448102131485939, + -0.011007013730704784, + -0.0049200402572751045, + 0.047156695276498795, + -0.00020027087884955108, + -0.0006217070622369647, + -0.009076843969523907, + -0.01783830113708973, + 0.00775852520018816, + -0.006380283273756504, + 0.01588289998471737, + -0.021812180057168007, + -0.032674115151166916, + 0.005553968716412783, + -0.0071845208294689655, + 0.018809692934155464, + 0.00020105934527236968, + -0.015025046654045582, + -0.009934697300195694, + 0.005235427524894476, + -0.010943936184048653, + 0.0030151016544550657, + -0.00295044737868011, + 0.015529666095972061, + 0.004311343189328909, + -0.029066085815429688, + 0.014331194572150707, + 0.010300545953214169, + 0.015617975033819675, + 0.01906200312077999, + 0.009360692463815212, + -0.026997145265340805, + 0.03567660227417946, + -0.006522207520902157, + 0.034894440323114395, + 0.01776260696351528, + -0.005623354110866785, + 0.007127751130610704, + -0.002195094944909215, + -0.008868688717484474, + 0.014533042907714844, + -0.022455569356679916, + 0.009657156653702259, + -0.020777709782123566, + 0.024373123422265053, + -0.02147156186401844, + 0.029318394139409065, + 0.011511633172631264, + 0.005289043299853802, + 0.004894809331744909, + -0.007733294274657965, + -0.013157954439520836, + 0.004282958339899778, + -0.002710753120481968, + -0.005658046342432499, + -0.021761717274785042, + -0.014886275865137577, + 0.008572224527597427, + 0.01035731565207243, + -0.006799748167395592, + -0.015226894058287144, + 0.0083199143409729, + -0.001919131143949926, + 0.004424882587045431, + -0.00543412147089839, + 0.014987200498580933, + 0.0033967201597988605, + 0.007348522078245878, + 0.00011511633056215942, + -0.01792660914361477, + -0.021408483386039734, + 0.04319543391466141, + -0.013776113279163837, + -0.016034286469221115, + -0.010388854891061783, + 0.0011677211150527, + -0.019024156033992767, + 0.004913732875138521, + -0.017674298956990242, + -0.01128455437719822, + -0.0338599719107151, + -0.017863530665636063, + 0.012993953190743923, + -0.013813959434628487, + 0.010041928850114346, + -0.021408483386039734, + 0.01185225136578083, + 0.005541353486478329, + 0.005465660244226456, + -0.018746616318821907, + -0.0061752814799547195, + -0.0051092728972435, + 0.01282364409416914, + 0.00831360649317503, + -0.017169680446386337, + 0.008118066936731339, + 0.006228897254914045, + -0.005456198938190937, + -0.010382547043263912, + -0.02871285192668438, + -0.016122594475746155, + 0.026139292865991592, + -0.00538996746763587, + 0.009474231861531734, + 0.014041038230061531, + -0.011827019974589348, + 0.04756039008498192, + -0.011000705882906914, + 0.010912397876381874, + -0.02601313777267933, + -0.011562095023691654, + 0.007348522078245878, + 0.02936885692179203, + -0.0030576789285987616, + 0.007815294899046421, + 0.022644801065325737, + 0.01282995194196701, + -0.007102519739419222, + 0.005118734203279018, + -0.03353196755051613, + 6.169762491481379e-05, + -0.006254128180444241, + -0.009505770169198513, + -0.02463804930448532, + 0.0069889803417027, + -0.015504435636103153, + -0.0032547959126532078, + 0.0050840419717133045, + -0.0070962123572826385, + -0.018822308629751205, + 0.009985159151256084, + 0.0248146653175354, + 0.0045068832114338875, + 0.009013766422867775, + 0.0018103226320818067, + 0.05787986144423485, + 0.011417017318308353, + 0.007493600249290466, + 0.026719603687524796, + 0.004860117100179195, + 0.016097363084554672, + -0.011101629585027695, + -0.0008830841979943216, + 0.030226709321141243, + 0.00347241316922009, + 0.012836259789764881, + -0.02974732220172882, + 0.005475122015923262, + 0.006071203853935003, + -0.03464213013648987, + 0.026719603687524796, + 0.002226633718237281, + 0.03244703635573387, + 0.022253721952438354, + 0.009783310815691948, + -0.028485773131251335, + 0.017308449372649193, + -0.015252125449478626, + 0.01776260696351528, + 0.020487552508711815, + -0.003063986776396632, + -0.0132841095328331, + 0.01547920424491167, + -0.013145338743925095, + -0.017220141366124153, + -0.01129086222499609, + 0.002512059174478054, + -0.01579459197819233, + 0.027829768136143684, + -0.016210902482271194, + -0.0058630481362342834, + -0.0018213611328974366, + -0.03095840848982334, + -0.035626139491796494, + -0.008420838043093681, + -0.017522912472486496, + -0.003273719223216176, + -0.004607806913554668, + -0.004178880713880062, + 0.017888762056827545, + -0.021219251677393913, + -0.0011716635199263692, + 0.038603395223617554, + -0.01747245155274868, + -0.016198286786675453, + 0.013675189577043056, + 0.013258878141641617, + 0.0033588737715035677, + 0.018607845529913902, + -0.032371342182159424, + -0.006023895926773548, + -0.01143593993037939, + -0.007569293025881052, + -0.010527624748647213, + 0.003060832852497697, + -0.0197053924202919, + -0.008382991887629032, + -0.0028116770554333925, + -0.014280732721090317, + -0.018241995945572853, + 0.006768209394067526, + 0.015491819940507412, + -0.011038552038371563, + -0.009941005147993565, + -0.003639568341895938, + 0.00492319418117404, + -0.01607213169336319, + -0.00515342690050602, + 0.015113354660570621, + 0.006172127556055784, + 0.014772736467421055, + -0.04342251271009445, + 0.02564728818833828, + 0.012483025901019573, + -0.0020941710099577904, + 0.012615488842129707, + 0.015226894058287144, + -0.007783756125718355, + -0.017585990950465202, + 0.0023307115770876408, + -0.014116731472313404, + -0.0018828616011887789, + 0.024297431111335754, + -0.022266337648034096, + 0.02666914276778698, + -0.006478053517639637, + -0.011208861134946346, + 0.005869355984032154, + 0.0005156580591574311, + -0.0023795964661985636, + 0.05137027055025101, + -0.017699530348181725, + -0.004399651661515236, + -0.0334310457110405, + 0.03393566235899925, + 0.012445179745554924, + 0.022228490561246872, + -0.0019175541820004582, + 0.004891655407845974, + 0.022455569356679916, + -0.04256465658545494, + -0.01922600343823433, + -0.003939186222851276, + 0.004759192932397127, + 0.012893029488623142, + 0.005790509283542633, + -0.014848429709672928, + -0.01142963208258152, + 0.01988201029598713, + 0.022644801065325737, + -0.04839301481842995, + -0.002434789203107357, + -0.03057994320988655, + 0.010716857388615608, + -0.005295351147651672, + 0.01810322515666485, + 0.0028652928303927183, + -0.02510482259094715, + -0.014810583554208279, + -0.011480094864964485, + 0.0028495234437286854, + 0.011909021064639091, + -0.020966941490769386, + -0.020512783899903297, + -0.028309155255556107, + 0.007316983304917812, + -0.010578086599707603, + -0.024183891713619232, + 0.017421988770365715, + -0.029040854424238205, + 0.001531993388198316, + 0.001522531732916832, + 0.013675189577043056, + 0.0060302033089101315, + 0.04052094742655754, + -0.0021619792096316814, + -0.023818042129278183, + -0.008458685129880905, + -0.00812437478452921, + -0.0022755186073482037, + -0.019453082233667374, + 0.028283925727009773, + 0.0017708991654217243, + -0.0025404440239071846, + 0.011391785927116871, + 0.012243331409990788, + 0.0033557198476046324, + 0.027552226558327675, + -0.020096473395824432, + -0.025697749108076096, + -0.027552226558327675, + -0.010477162897586823, + -0.006314051803201437, + 0.022632185369729996, + 3.111984915449284e-05, + 0.015945976600050926, + -0.017724761739373207, + -0.013700420036911964, + 0.017497682943940163, + -0.006055434234440327, + -0.011511633172631264, + -0.008200067095458508, + 0.01454565767198801, + -0.029949169605970383, + 0.029242701828479767, + 0.012956107035279274, + -0.009543617255985737, + -0.003251642221584916, + 0.008887611329555511, + -0.029015623033046722, + -0.018153687939047813, + 0.038805242627859116, + -0.004443805664777756, + -0.008357761427760124, + -0.012621795758605003, + -0.016097363084554672, + -0.004756039008498192, + -0.00826945248991251, + 0.011089013889431953, + -0.03121071867644787, + 0.01569366827607155, + 0.007670216728001833, + 0.0032957964576780796, + -0.0034282589331269264, + -0.01671552285552025, + -0.018279843032360077, + 0.01821676455438137, + -0.012527179904282093, + -0.0031191795133054256, + 0.05139549821615219, + -0.019453082233667374, + 0.025710364803671837, + 0.028233462944626808, + -0.0036868765018880367, + 0.019175542518496513, + -0.007121443282812834, + 0.037594154477119446, + 0.0030056401155889034, + -0.023490039631724358, + -0.009184075519442558, + -0.03986494243144989, + -0.014659197069704533, + -0.015315202996134758, + 0.005229120142757893, + -0.012192869558930397, + -0.02046232298016548, + -0.013700420036911964, + 0.006471745669841766, + 0.015958592295646667, + 0.005408890545368195, + 0.005301658995449543, + 0.04004155844449997, + 0.026694374158978462, + 0.0007841314654797316, + -0.014734890311956406, + -0.004803347401320934, + -0.0012694335309788585, + -0.0057747396640479565, + -0.0064402068965137005, + -0.009619309566915035, + 0.010451932437717915, + -0.004393343813717365, + 0.011057475581765175, + 0.045869916677474976, + 0.0017503990093246102, + 0.01850692182779312, + 0.01282995194196701, + 0.0035197213292121887, + 0.002830600133165717, + -0.029949169605970383, + 9.039662813847826e-07, + 0.020310936495661736, + 0.014192424714565277, + 0.024120813235640526, + 0.00357649102807045, + -0.01194686722010374, + 0.015416126698255539, + -0.01849430613219738, + 0.0024836743250489235, + 0.010281623341143131, + 0.013233647681772709, + 0.022051874548196793, + -0.004245111718773842, + -0.0043397280387580395, + 0.013662573881447315, + 0.017888762056827545, + 0.016475828364491463, + 0.0044091129675507545, + -0.0076197548769414425, + -0.005503506865352392, + 0.004223034717142582, + -0.00724759791046381, + 0.006560054142028093, + 0.023351268842816353, + 0.0029425625689327717, + -0.013952730223536491, + -0.011599941179156303, + -0.012281177565455437, + -0.009726541116833687, + -0.006049126852303743, + 0.019188158214092255, + -0.013599496334791183, + 0.006812363862991333, + 0.01282364409416914, + -0.012792104855179787, + 0.013549034483730793, + -0.010496086440980434, + -0.026744835078716278, + -0.007783756125718355, + 0.032472267746925354, + -0.039082784205675125, + 0.03436458855867386, + 0.033784277737140656, + 0.007638678420335054, + 0.005320582073181868, + 0.00989685021340847, + -0.0031144486274570227, + -0.01627397909760475, + 0.03010055609047413, + 0.0004415420989971608, + -0.03961263224482536, + 0.010861935093998909, + -0.007689140271395445, + 0.0103636234998703, + -0.013233647681772709, + -0.0028763313312083483, + 0.014520427212119102, + 0.0006729574524797499, + -0.011700865812599659, + -0.021421099081635475, + -0.019541392102837563, + 0.029318394139409065, + -0.005090349353849888, + -0.012848874554038048, + 0.05384290590882301, + -0.02899039164185524, + 0.015302587300539017, + 0.011095321737229824, + 0.02071463130414486, + -0.012943491339683533, + -0.017157064750790596, + -0.025533748790621758, + -0.010458240285515785, + 0.016967831179499626, + 0.002319672843441367, + -0.002800638321787119, + 0.009745464660227299, + -0.019831547513604164, + -0.022518645972013474, + 0.019251234829425812, + 0.017043525353074074, + 0.004323958419263363, + 0.007348522078245878, + 0.02062632329761982, + -0.012596565298736095, + 0.008565916679799557, + -0.005613892339169979, + -0.012880413793027401, + -0.005399429239332676, + 0.007525139022618532, + -0.048847172409296036, + 0.005266966298222542, + -0.006660977844148874, + 0.02687099017202854, + 0.018519537523388863, + -0.025483286008238792, + -0.007733294274657965, + 0.01579459197819233, + -0.05043672397732735, + -0.017787838354706764, + 0.01031316164880991, + -0.004456421360373497, + 0.0010604894487187266, + 0.00242848158814013, + -0.00018055917462334037, + 0.02407035231590271, + 0.006843902636319399, + 0.029141778126358986, + -0.025054359808564186, + -0.01496196910738945, + -0.006257282104343176, + -0.004052725620567799, + 0.032573189586400986, + 0.010912397876381874, + -0.013914884068071842, + -0.0032768731471151114, + 0.013662573881447315, + -0.005254351068288088, + 0.002001131884753704, + 0.012110868468880653, + -0.0010407777735963464, + -0.002210864331573248, + -0.009745464660227299, + 0.02843531034886837, + 0.0054971990175545216, + 0.012981337495148182, + 0.0074305227026343346, + -0.021509407088160515, + 0.0058504329062998295, + 0.019276466220617294, + 0.004882194101810455, + -0.025609441101551056, + 0.012981337495148182, + -0.003267411608248949, + -0.005232273600995541, + -0.0023795964661985636, + 0.028460541740059853, + -0.031463027000427246, + -0.014924122951924801, + -0.025886982679367065, + 0.01646321266889572, + 0.024839896708726883, + -0.007380060851573944, + 0.009928389452397823, + 0.011726096272468567, + -0.016942601650953293, + -0.03325442597270012, + 0.004979963880032301, + -0.03383474051952362, + 0.020109089091420174, + 0.005058811046183109, + 0.008654224686324596, + 0.02565990388393402, + -0.022972803562879562, + 0.023641426116228104, + -0.014041038230061531, + -0.006667285691946745, + -0.019188158214092255, + -0.025886982679367065, + -0.0020768246613442898, + 0.007878372445702553, + 0.010294238105416298, + -0.002423750702291727, + 0.009928389452397823, + -0.015138586051762104, + -0.014015807770192623, + 0.0032768731471151114, + -0.006982672959566116, + 0.007342214230448008, + -0.019162926822900772, + 0.005916663911193609, + 0.014469965361058712, + -0.025319285690784454, + 0.0021919410210102797, + -0.0060869730077683926, + 0.004049571696668863, + -0.02443620190024376, + 0.008868688717484474, + 0.19518683850765228, + 0.0009288153378292918, + -0.002732830122113228, + 0.011158399283885956, + -0.015756744891405106, + -0.012098253704607487, + 0.00980223435908556, + -0.005815740209072828, + -0.016791215166449547, + 0.01608474738895893, + -0.01185225136578083, + 0.02462543360888958, + 0.015933362767100334, + 0.005257504992187023, + 0.013347187079489231, + -0.024461431428790092, + -0.022909726947546005, + -0.013902268372476101, + 0.0024631740525364876, + 0.017888762056827545, + 0.019011540338397026, + -0.021307559683918953, + 0.018620461225509644, + -0.0077963718213140965, + 0.04498683288693428, + 0.005796817131340504, + 0.003910801373422146, + -0.002575136488303542, + 0.04597083851695061, + -0.002455289475619793, + 0.008111759088933468, + 0.0065285153687000275, + 0.0017425143159925938, + -0.013107492588460445, + 0.010470855049788952, + 0.004232496488839388, + 0.019074618816375732, + -0.028485773131251335, + 0.021622946485877037, + 0.019755855202674866, + -0.008017143234610558, + -0.012136099860072136, + -0.0067745172418653965, + -0.02564728818833828, + -0.001986939460039139, + 0.021824795752763748, + -0.01980631612241268, + 0.013877036981284618, + -0.009108382277190685, + -0.01912507973611355, + 2.725142621784471e-05, + -0.013321955688297749, + 0.010212237946689129, + 0.04728285223245621, + -0.01950354501605034, + 0.008591147139668465, + 0.0194152370095253, + -0.02240510657429695, + -0.004276650492101908, + -0.012533487752079964, + -0.02287187986075878, + 0.03466736152768135, + -0.013069646432995796, + 0.03057994320988655, + -0.004948425106704235, + 0.011309785768389702, + -0.029394088312983513, + 0.025155283510684967, + -0.00027458398835733533, + 0.008212682791054249, + -0.01482319924980402, + -0.019478313624858856, + -0.02526882290840149, + 0.03206857293844223, + -0.0006228897254914045, + -0.018645692616701126, + 0.019856778904795647, + 0.006266743876039982, + 0.019907239824533463, + 0.03446551412343979, + -0.02853623405098915, + 0.01699306257069111, + 0.006172127556055784, + -0.02798115275800228, + 0.013649958185851574, + -0.04357389733195305, + 0.026139292865991592, + -0.001528050983324647, + -0.023351268842816353, + -0.021358022466301918, + -0.014419503509998322, + 0.005304812919348478, + 0.0037783386651426554, + -0.010168083943426609, + 0.03375904634594917, + 0.006730363238602877, + 0.01277949009090662, + 0.01754814386367798, + -0.012565026059746742, + 0.009158844128251076, + -0.0026823682710528374, + 0.051445960998535156, + 0.03113502450287342, + -0.012224407866597176, + -0.0010155468480661511, + 0.00128283747471869, + -0.018607845529913902, + 0.015718897804617882, + 0.0024568664375692606, + -0.003936032298952341, + 0.0025814443361014128, + -0.025432825088500977, + 0.002401673700660467, + -0.01119624637067318, + 0.0003004063037224114, + 0.028410078957676888, + 0.016854291781783104, + -0.016677675768733025, + 0.0025861752219498158, + -0.010937628336250782, + -0.01542874239385128, + 0.024764204397797585, + 0.023464808240532875, + 0.00037353672087192535, + 0.024284815415740013, + -0.02173648588359356, + -0.051445960998535156, + 0.006679900921881199, + 0.0026807913091033697, + -0.01894846372306347, + 0.03333012014627457, + -0.026442063972353935, + -0.013006568886339664, + 0.013271493837237358, + 0.001017123693600297, + 0.02805684693157673, + 0.012230715714395046, + -0.04935178905725479, + -0.00153278186917305, + 0.01137917023152113, + 0.023262960836291313, + -0.019213389605283737, + -0.01700567826628685, + -0.017813069745898247, + 0.008622686378657818, + -0.006553746294230223, + 0.004276650492101908, + -0.0173715278506279, + -0.014507811516523361, + -0.012558719143271446, + 0.0032989501487463713, + -0.00939223077148199, + -0.013321955688297749, + -0.01556751225143671, + 0.01645059697329998, + 0.004147341940551996, + -0.017333680763840675, + -0.022606955841183662, + 0.01380134467035532, + 0.015605359338223934, + 0.0001386718067806214, + 0.003201180137693882, + -0.01710660196840763, + -0.020739862695336342, + -0.02052539959549904, + 0.006566361524164677, + -0.15572558343410492, + 0.008345145732164383, + 0.018431227654218674, + -0.04011725261807442, + 0.007682832423597574, + 0.003070294391363859, + -0.0077963718213140965, + 0.0007289386703632772, + -0.02185002528131008, + 0.002808523131534457, + 0.02853623405098915, + 0.011511633172631264, + -0.010981782339513302, + -0.008818225935101509, + -0.004156803246587515, + -0.0034755670931190252, + -0.00877407193183899, + 0.021408483386039734, + 0.01296872179955244, + 0.008010835386812687, + 0.018380766734480858, + -0.03075656108558178, + 0.012079330161213875, + -0.01440688781440258, + 0.00883084163069725, + -0.005358428694307804, + -0.005916663911193609, + 0.008433453738689423, + 0.0032074879854917526, + -0.029595935717225075, + -0.0014736467273905873, + -0.008427145890891552, + 0.03123595006763935, + -0.005853586830198765, + 0.006364514119923115, + -0.007840526290237904, + 0.012848874554038048, + -0.010433008894324303, + -0.008956996724009514, + 0.029873477295041084, + 0.020765094086527824, + -0.014533042907714844, + -0.017964456230401993, + 0.020474936813116074, + -0.03305257856845856, + 0.011927944608032703, + 0.004305035341531038, + 0.007323291152715683, + -0.020840786397457123, + 0.004708731081336737, + 0.01133501622825861, + -0.010634856298565865, + -0.005856740288436413, + 0.007367445155978203, + 0.013246262446045876, + 0.02454974129796028, + 0.002557790372520685, + 0.023212498053908348, + -0.006894364487379789, + 0.0007951700245030224, + 0.00975177250802517, + -0.017611222341656685, + 0.00511558074504137, + 0.014835814014077187, + 0.009020074270665646, + -0.009127305820584297, + 0.0019144003745168447, + 0.00933546107262373, + -0.0036206452641636133, + 0.006020742002874613, + -0.007884680293500423, + -0.018607845529913902, + 0.012842567637562752, + 0.0032390267588198185, + -0.0037562616635113955, + -0.004860117100179195, + -0.009518385864794254, + -0.010123929008841515, + 0.005727431736886501, + 0.001547762774862349, + -0.031538721174001694, + 0.05409521237015724, + -0.029797783121466637, + -0.01793922483921051, + -0.027930691838264465, + 0.003111294936388731, + -0.003210641909390688, + -0.0035922604147344828, + 0.004462729208171368, + 0.010376239195466042, + 0.016841676086187363, + -0.03199287876486778, + -0.039738789200782776, + -0.013738267123699188, + -0.009310230612754822, + -0.007764833047986031, + 0.005323735997080803, + 0.004724500235170126, + -0.003623798955231905, + -0.037770770490169525, + 0.012173946015536785, + -0.009467924013733864, + -0.030453788116574287, + 0.004238803870975971, + 0.008187452331185341, + 0.037871696054935455, + -0.011126860976219177, + 0.0026240216102451086, + 0.028082076460123062, + -0.006471745669841766, + -0.01932692900300026, + -0.019024156033992767, + 0.018292458727955818, + -0.01347334124147892, + -0.00413788016885519, + 0.007348522078245878, + 0.011864867061376572, + -0.013397648930549622, + -0.002840061904862523, + -0.01616043969988823, + 0.032472267746925354, + -0.009076843969523907, + -0.021231867372989655, + 0.009865311905741692, + 0.0051092728972435, + -0.022468185052275658, + -0.0845237746834755, + 0.01886015571653843, + 0.01997031830251217, + 0.016046900302171707, + 0.02414604462683201, + 0.009322846308350563, + -0.014419503509998322, + 0.0022739418782293797, + 0.003655337728559971, + 0.015163817442953587, + -0.0332796573638916, + -0.020512783899903297, + 0.004204111639410257, + -0.0019222850678488612, + 0.018910616636276245, + -0.005033579654991627, + 0.002133594360202551, + -0.024600202217698097, + -0.02516789920628071, + 0.024183891713619232, + 0.01756075955927372, + -0.01607213169336319, + -0.024474047124385834, + -0.01850692182779312, + -0.014091500081121922, + -0.0030844868160784245, + -0.02974732220172882, + 0.008237914182245731, + 0.024865128099918365, + -0.012237023562192917, + 0.020878633484244347, + -0.01537828054279089, + 0.019087234511971474, + -0.03426366671919823, + 0.027627918869256973, + 0.0021745949052274227, + 0.0006453610840253532, + -0.01671552285552025, + 0.012634411454200745, + -0.02433527633547783, + -0.021231867372989655, + 0.0068628257140517235, + 0.04488590732216835, + -0.036761533468961716, + 0.0035197213292121887, + -0.014041038230061531, + -0.007884680293500423, + -0.0020216319244354963, + -4.8737179895397276e-05, + -0.023855889216065407, + -0.03923416882753372, + -0.023754965513944626, + 0.0021619792096316814, + 0.004175726789981127, + 0.003819339210167527, + 0.009190383367240429, + 0.002545174676924944, + -0.01701829396188259, + -0.009890543296933174, + 0.012224407866597176, + -0.0028873698320239782, + 0.023174652829766273, + -0.038149237632751465, + 0.031008871272206306, + 0.015529666095972061, + -0.02259434014558792, + -0.02285926416516304, + -0.008572224527597427, + -0.008622686378657818, + -0.022417722269892693, + -0.008843457326292992, + 0.0076071396470069885, + 3.902916796505451e-05, + -0.006298282649368048, + -0.017144449055194855, + 0.010250084102153778, + -0.02909131534397602, + -0.018645692616701126, + 0.00324218044988811, + -0.023376500234007835, + -0.03020147979259491, + -0.020336167886853218, + 0.03792215883731842, + -0.010603317990899086, + 0.026139292865991592, + 0.014015807770192623, + -0.0033399504609405994, + -0.030176248401403427, + 0.016299210488796234, + -0.029520243406295776, + 0.00673667062073946, + -0.014078885316848755, + 0.019402621313929558, + -0.0034377204719930887, + 0.0014815314207226038, + -0.003544952254742384, + 0.0047623468562960625, + 0.0034597977064549923, + 0.011473787017166615, + 0.003164910711348057, + -0.01496196910738945, + -0.01821676455438137, + -0.03890616446733475, + 0.014785352163016796, + 0.010546548292040825, + -0.010962859727442265, + -0.012533487752079964, + -0.0038288007490336895, + 0.011745019815862179, + 0.01170717366039753, + 9.496112033957615e-05, + 0.005405736621469259, + -0.006963749416172504, + 0.022140182554721832, + 0.016286594793200493, + -0.026971913874149323, + -0.012432564049959183, + 0.002564097987487912, + 0.0028873698320239782, + 0.032093800604343414, + 0.008105451241135597, + -0.0056958929635584354, + -0.024322662502527237, + -0.002923639491200447, + -0.010439316742122173, + 0.023578347638249397, + -0.037594154477119446, + 0.008256836794316769, + -0.010559163987636566, + 0.004554191138595343, + -0.004645653534680605, + -0.008143297396600246, + 0.009941005147993565, + -0.006503284443169832, + -0.007260213606059551, + 0.009625617414712906, + -0.00515973474830389, + 0.005222812294960022, + 0.02265741676092148, + 0.04430559650063515, + -0.0022597494535148144, + 0.07054580748081207, + -0.028283925727009773, + -0.022644801065325737, + 0.02480204962193966, + -0.026719603687524796, + -0.008048681542277336, + -0.012173946015536785, + 0.016198286786675453, + -0.000672563211992383, + 0.017068754881620407, + -0.032749809324741364, + 0.034717824310064316, + 0.012382102198898792, + 0.011322400532662868, + -0.013233647681772709, + 0.0018639384070411325, + -0.029066085815429688, + 0.01082408893853426, + 0.008893919177353382, + 0.002819561632350087, + -0.0207272469997406, + 0.04796408861875534, + 0.009537309408187866, + 0.02417127601802349, + 0.00925346091389656, + 0.02137063816189766, + -0.038048312067985535, + -0.023641426116228104, + 0.007979296147823334, + 0.013233647681772709, + -0.021307559683918953, + -0.019478313624858856, + -0.02063893899321556, + 0.007739602122455835, + 0.02128232829272747, + -0.011663018725812435, + -0.002501020673662424, + 0.03734184429049492, + -0.010376239195466042, + 0.006459129974246025, + 0.02684575878083706, + 0.012583949603140354, + 0.028864236548542976, + -0.022606955841183662, + -0.005680123809725046, + 0.01942785270512104, + 0.006629439070820808, + -0.018721384927630424, + -0.004279804416000843, + -0.02249341644346714, + 0.009991466999053955, + 0.009234537370502949, + -0.0046835001558065414, + 0.0011117398971691728, + -0.0093417689204216, + 0.030125785619020462, + 0.02155986987054348, + -0.002231364604085684, + -0.015201663598418236, + 0.012432564049959183, + 0.03948647901415825, + -0.008906534872949123, + -0.0030576789285987616, + -0.0011369709391146898, + -0.01608474738895893, + -0.015781976282596588, + -0.002143056131899357, + -0.002299172803759575, + -0.037871696054935455, + -0.021130943670868874, + 0.03315350413322449, + -0.03375904634594917, + 0.03872954845428467, + 0.007178212981671095, + -0.013359801843762398, + -0.010086082853376865, + 0.04682869464159012, + -0.012653334997594357, + -0.003727876814082265, + -0.015554897487163544, + -0.008376684039831161, + 0.014242886565625668, + 0.0027596380095928907, + 0.016286594793200493, + -0.0031822570599615574, + 0.010180698707699776, + 0.013183185830712318, + -0.014886275865137577, + 0.0024332122411578894, + 0.01445734966546297, + 0.005494045093655586, + 0.017510298639535904, + 0.0038288007490336895, + -0.02593744359910488, + -0.012142407707870007, + -0.006906979717314243, + -0.022556493058800697, + 0.022152798250317574, + 0.016513673588633537, + 0.018620461225509644, + 0.07836741209030151, + 0.03123595006763935, + 0.0042608813382685184, + 0.012653334997594357, + 0.0006591592682525516, + 0.020979557186365128, + 0.008017143234610558, + 0.020676786080002785, + -0.006099588703364134, + -0.04786316305398941, + -0.0006571881240233779, + -0.012098253704607487, + 0.024019889533519745, + -0.01739675924181938, + -0.02202664315700531, + 0.018935848027467728, + 0.0037814925890415907, + 0.009316538460552692, + 0.011353939771652222, + 0.027627918869256973, + 0.022228490561246872, + -0.006585285067558289, + 0.020235244184732437, + 0.018052764236927032, + -0.04309450834989548, + -0.024877743795514107, + 0.02249341644346714, + -0.007480984553694725, + -0.006534823216497898, + 0.010950244031846523, + -0.008988535031676292, + 0.010571779683232307, + -0.08351453393697739, + -0.021320175379514694, + 0.015870284289121628, + -0.012104561552405357, + -0.015668436884880066, + -0.021030019968748093, + 0.013649958185851574, + 0.001558801275677979, + 0.0255463644862175, + 0.021963564679026604, + -0.04011725261807442, + -0.03807354345917702, + -0.011612556874752045, + -0.02185002528131008, + -0.005982895381748676, + -0.020008165389299393, + -0.020399244502186775 + ], + "metadata": { + "source": "Kreye_Marieke_BA_241_V2.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 17, + "has_images": true, + "image_count": 98, + "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", + "links": [], + "last_modified": "2025-05-05T23:00:23", + "_known_field_names": "frozenset({'is_continuation', 'sent_to', 'header_footer_type', 'email_message_id', 'filename', 'languages', 'detection_class_prob', 'sent_from', 'link_texts', 'cc_recipient', 'subject', 'image_mime_type', 'image_path', 'filetype', 'page_number', 'last_modified', 'signature', 'detection_origin', 'text_as_html', 'attached_to_filename', 'bcc_recipient', 'data_source', 'link_start_indexes', 'category_depth', 'emphasized_text_tags', 'parent_id', 'orig_elements', 'page_name', 'coordinates', 'url', 'link_urls', 'file_directory', 'links', 'table_as_cells', 'emphasized_text_contents', 'key_value_pairs', 'image_base64'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "Kreye_Marieke_BA_241_V2.pdf", + "detection_class_prob": 0.3422867953777313, + "parent_id": "e02392183bc6851689602ad4b9f6039f", + "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", + "id": "ce00eae5-7e07-454f-9e4f-f79ac36f92f4", + "processing_timestamp": "2025-05-05T23:15:46.977945", + "chunk_number": 6, + "total_chunks": 56, + "chunking_strategy": "hybrid", + "word_count": 322 + } +} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000007.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000007.json new file mode 100644 index 0000000000000000000000000000000000000000..fd8a8ebf05cd5a7c1c9836e91eb2b6ba4346ddbc --- /dev/null +++ b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000007.json @@ -0,0 +1,1570 @@ +{ + "id": "61a115b2-0ff7-441a-f6d9-eb3d00000007", + "content": "(vgl. Mehra 2021, S. 76)\nDiese spezifischen klimatischen Bedingungen im urbanen Raum haben weitreichende Folgen auf den thermischen und lufthygienischen Komfort der Bev\u00f6lkerung. Der hohe Versiegelungsgrad und die Bebauung f\u00fchren lokal zu steigenden Lufttemperaturen. Dieser W\u00e4rme- oder Hitzeinseleffekt f\u00fchrt vor allem im Sommer zu einer negativen Beeinflussung des thermischen Wohlbefindens der Menschen und steigert die Zahl der hitzebedingten Krankheits- und Todesf\u00e4lle. (vgl. Mehra 2021, S. 77)\nDoch nicht nur auf die Gesundheit der Bev\u00f6lkerung hat der W\u00e4rmeinseleffekt eine Auswirkung. Eine zunehmende Erw\u00e4rmung des urbanen Raums f\u00fchrt zu einem steigenden Energiebedarf f\u00fcr die K\u00fchlung im Sommer, was wiederum die Energiekosten und die CO2-Emissionen ansteigen l\u00e4sst. Hitzeperioden f\u00fchren zu einer Senkung des Grundwasserspiegels und gleichzeitig zu einem erh\u00f6hten Wasserbedarf, was vor allem in den Sommermonaten zu einem Problem f\u00fcr Mensch und Natur wird. Zunehmende\n6\nTheorieteil\nHitze f\u00fchrt dazu, dass Frei- und Gr\u00fcnfl\u00e4chen k\u00fcnstlich bew\u00e4ssert werden m\u00fcssen, was wiederum einen erh\u00f6hten Wasser- und Energiebedarf mit sich bringt. Freiraum und Gr\u00fcnfl\u00e4chen gewinnen aber immer mehr an Bedeutung, da ein steigender Bedarf an Kaltluftentstehungsgebieten und Erholungsfl\u00e4chen abzusehen ist. (vgl. Kampusch 2018, S. 10)\nEine durch Bebauung ver\u00e4nderte Oberfl\u00e4chenrauigkeit beeinflusst die Windzirkulation und damit den Luftaustausch. Dies f\u00fchrt entweder zu Windschneisen mit erh\u00f6hten Luftgeschwindigkeiten oder zu g\u00e4nzlich fehlender Frischluftzufuhr. Bei unzureichender Windzirkulation wird schadstoffbelastete Luft nicht abtransportiert, die Luftqualit\u00e4t sinkt und die Niederschlagsbildung wird beeintr\u00e4chtigt. Resultat k\u00f6nnen ausbleibende Niederschl\u00e4ge oder aber lokale Starkregenereignisse sein, die vor allem in St\u00e4dten auf Grund des hohen Versiegelungsgrades schnell zu \u00dcberschwemmungen f\u00fchren. Weitere Folgen sind im Vergleich zum Umland eine geringere Luftfeuchte, weniger Frosttage und eine verminderte Global- sowie Ultraviolette- (UV) Strahlung. (vgl. Mehra 2021, S. 77)\nIm Hinblick auf den Klimawandel und einer zu erwartenden Steigerung der klimatischen Bedingungen hin zu Extremen besteht akuter Handlungsbedarf. Ein wichtiger Faktor zur Erreichung einer klimaresilienten Stadt ist, wie bereits erw\u00e4hnt, die gr\u00fcne Infrastruktur, welche in Kapitel 2.3 n\u00e4her beleuchtet wird. ## 2.3 Gr\u00fcne Infrastruktur\n\nDas Wei\u00dfbuch Stadtgr\u00fcn der Bundesregierung und die Deutsche Anpassungsstrategie an den Klimawandel unterstreichen die besondere Bedeutung von gr\u00fcner Infrastruktur als effektive Klimaanpassungsstrategie (vgl. Feldmann et al. 2023, S. 7). Die Ausweitung der gr\u00fcnen Infrastruktur ist nicht nur f\u00fcr die nachhaltige Stadtentwicklung entscheidend, sondern wirkt auch dem W\u00e4rmeinseleffekt entgegen (vgl. Kampusch 2018, S. 26). Unter gr\u00fcner Infrastruktur, auch als Stadtgr\u00fcn oder urbanes Gr\u00fcn bezeichnet, wird die Vernetzung nat\u00fcrlicher und naturnah gestalteter Fl\u00e4chen in St\u00e4dten verstanden (vgl.", + "embedding": [ + 0.03013775683939457, + 0.00304851564578712, + 0.028429441154003143, + -0.03475276008248329, + 0.010186153464019299, + 0.013016349636018276, + -0.025102049112319946, + -0.00599822960793972, + 0.007712920196354389, + -0.03080068528652191, + 0.012767750769853592, + 0.004054063931107521, + -0.004028566647320986, + 0.012219560332596302, + -0.01039013173431158, + -0.022348344326019287, + 0.04110157862305641, + 0.0015123060438781977, + 0.016318244859576225, + 0.0012716756900772452, + -0.025981703773140907, + 0.004535324405878782, + 0.0014135041274130344, + -0.0011091306805610657, + -0.004863601643592119, + 0.01774609088897705, + 0.012213185429573059, + -0.03931676968932152, + -0.02183840051293373, + -0.004697869531810284, + 0.001574455527588725, + -0.0034580654464662075, + -0.02561199478805065, + 0.00818461924791336, + -0.015782801434397697, + 0.0036875407677143812, + -0.006323319394141436, + -0.008356725797057152, + 0.004847665783017874, + -0.011002065613865852, + 0.0028843770269304514, + -0.01205382775515318, + 0.009140766225755215, + -5.428126678452827e-05, + 0.005921737756580114, + 0.0349312424659729, + 0.02064002864062786, + 0.0035377442836761475, + -0.015362096950411797, + 0.016330992802977562, + 0.031132150441408157, + 0.02395467273890972, + -0.009395739063620567, + -0.005067579448223114, + -0.024005666375160217, + -0.0068715107627213, + -0.02758803218603134, + 0.018855221569538116, + 0.016815440729260445, + -0.019671132788062096, + -0.01842176727950573, + -0.013335064984858036, + -0.023546716198325157, + 0.007987015880644321, + -0.02858242392539978, + -0.005475535988807678, + -0.02960231527686119, + 0.005701824091374874, + 0.0047552380710840225, + -0.00600779103115201, + 0.05071404203772545, + 0.05680788680911064, + 0.0140234911814332, + 0.004898660350590944, + -0.0016780381556600332, + -0.010096913203597069, + 0.0009274627082049847, + 0.005679513793438673, + -0.01017977949231863, + 0.010536741465330124, + 0.0009776604129001498, + -0.03658856451511383, + -0.024910818785429, + 0.038908813148736954, + 0.01021802518516779, + 0.01032001432031393, + -0.0002045756409643218, + 0.022067874670028687, + 0.008694563992321491, + -0.0021832026541233063, + -0.02123921364545822, + 0.01054948940873146, + 0.014903145842254162, + 0.026950599625706673, + -0.007496193516999483, + -0.00359511305578053, + -0.0010852270061150193, + -0.009083397686481476, + 0.018727734684944153, + -0.009185386821627617, + -0.015757303684949875, + 0.003693914972245693, + -0.007075488567352295, + 0.0010525586549192667, + -0.04184099659323692, + 0.0043122232891619205, + -0.00036094553070142865, + 0.012238683179020882, + 0.028454938903450966, + -0.03301894664764404, + -0.014214720577001572, + 0.03572165593504906, + -0.028913889080286026, + -0.034880246967077255, + 0.015336599200963974, + -0.028913889080286026, + 0.022718055173754692, + -0.002379212761297822, + -0.009465856477618217, + -0.01810305193066597, + 0.014405949972569942, + -0.0011123177828267217, + -0.004780735354870558, + 0.005163194611668587, + 0.031846072524785995, + 0.021290209144353867, + -0.010441126301884651, + 0.011282536201179028, + -0.03225402906537056, + -0.025012807920575142, + -0.02590521238744259, + -0.0041911113075912, + 0.021761909127235413, + 0.007987015880644321, + -0.01196458749473095, + 0.027307560667395592, + -0.007483444642275572, + -0.00018087116768583655, + -0.030724193900823593, + -0.028327452018857002, + -0.006250014994293451, + 0.010817211121320724, + -0.039928704500198364, + -0.025560999289155006, + -0.002664463361725211, + 0.03189706802368164, + 0.016738949343562126, + 0.0082419877871871, + 0.009414861910045147, + -0.017873575910925865, + 0.0007665112498216331, + -0.014176474884152412, + 0.003034173510968685, + -0.002195951296016574, + -0.005373546853661537, + 0.03059670701622963, + -0.010587736032903194, + 0.004452458582818508, + -0.020742017775774002, + 0.001226258696988225, + 0.020627280697226524, + -0.03375836834311485, + 0.018714986741542816, + 0.0024063035380095243, + 0.020627280697226524, + -0.002167266793549061, + 0.012251432053744793, + 0.005093076732009649, + 0.01242353767156601, + -0.005258809309452772, + -0.01817954331636429, + 0.0329679511487484, + -0.03023974597454071, + 0.03281496837735176, + 0.004054063931107521, + 0.02579047530889511, + -0.0022485393565148115, + 0.022845542058348656, + -0.011830726638436317, + -0.030367232859134674, + -0.018765980377793312, + 0.018013810738921165, + 0.01566806435585022, + 0.018370773643255234, + -0.020487045869231224, + -0.0011888095177710056, + 0.038908813148736954, + 0.023138759657740593, + -1.948398676177021e-05, + -0.0026166560128331184, + 0.0038341498002409935, + 0.009465856477618217, + 0.012187688611447811, + -0.008375848643481731, + -0.6327399015426636, + 0.01792457140982151, + 0.009765448980033398, + -0.007209349423646927, + 0.011301659047603607, + 0.011531134136021137, + 0.03503322973847389, + 0.026338664814829826, + 0.0008437998476438224, + 0.02876090444624424, + -0.004599067382514477, + 0.010874579660594463, + -0.015132621861994267, + -0.002497137524187565, + 0.017491117119789124, + -0.017529362812638283, + 0.008898542262613773, + 0.004621377680450678, + 0.02395467273890972, + 0.010447501204907894, + 0.006948002148419619, + 0.02321525104343891, + -0.004573570564389229, + 0.008547955192625523, + 0.024362629279494286, + 0.023240748792886734, + -0.0024859823752194643, + -0.038194891065359116, + 0.01019890233874321, + 0.011033937335014343, + -0.0027552973479032516, + 0.037251491099596024, + -0.014597179368138313, + 0.006782270036637783, + 0.05614495649933815, + 0.018307030200958252, + -0.014979638159275055, + 0.02347022481262684, + 0.014533435925841331, + 0.008675441145896912, + -0.00808263011276722, + -0.00245251739397645, + 0.00418154988437891, + 0.007107360288500786, + 0.012844243086874485, + 0.020193826407194138, + 0.02766452357172966, + -0.01379401609301567, + 0.007891400717198849, + -0.01682818867266178, + 0.024859825149178505, + -0.007712920196354389, + 0.016751697286963463, + 0.03034173510968685, + 0.024324381723999977, + -0.001794369425624609, + 0.027995986863970757, + -0.008108127862215042, + -0.0022182613611221313, + 0.010989317670464516, + -0.0030787936411798, + 0.012512778863310814, + -0.01983686536550522, + -0.038194891065359116, + -0.01852375641465187, + 0.03419182077050209, + -0.022169863805174828, + -0.014367704279720783, + -0.016713451594114304, + -0.017758838832378387, + -0.00968895759433508, + 0.02000259794294834, + 0.004398276563733816, + -0.0033210176043212414, + 0.014660922810435295, + 0.009191760793328285, + 0.031106652691960335, + -0.002011096104979515, + -0.00996942725032568, + 0.040132682770490646, + 0.01024989690631628, + -0.015591572038829327, + -0.0006880275323055685, + -0.0008461902034468949, + 0.011448267847299576, + -0.04235094413161278, + -0.026032699272036552, + -0.007681048475205898, + -0.021532433107495308, + 0.0016668831231072545, + 0.025624742731451988, + 0.01452068705111742, + -0.008050758391618729, + -0.03623159974813461, + -0.011352653615176678, + 0.030826183035969734, + -0.0019330107606947422, + 0.02967880666255951, + -0.0027282063383609056, + -0.03972472622990608, + -0.009376616217195988, + -0.005625332240015268, + 0.01409998256713152, + 0.009000531397759914, + 0.010466624051332474, + 0.0017274391138926148, + -0.002312282333150506, + 0.014227469451725483, + 0.02604544721543789, + -0.02117547206580639, + 0.002901906380429864, + 0.004946467932313681, + 0.010523992590606213, + -0.016840938478708267, + 0.010243522934615612, + -0.013449802994728088, + 0.03391135111451149, + -0.010211651213467121, + 0.017797084525227547, + 0.0030293927993625402, + 0.027817506343126297, + 0.003336953464895487, + 0.01204745378345251, + -0.02618568204343319, + 0.00988018698990345, + 0.025854218751192093, + -0.004420586861670017, + 0.010256270878016949, + -0.01760585606098175, + -0.030010269954800606, + 0.01438045222312212, + 0.027817506343126297, + 0.03906179592013359, + -0.0009752700570970774, + 0.03475276008248329, + 0.0057974387891590595, + 0.028327452018857002, + -0.0010501682991161942, + 0.015961281955242157, + -0.01392150204628706, + -0.013653780333697796, + -0.011435518972575665, + 0.01986236311495304, + -0.026262173429131508, + -0.020206576213240623, + -0.025854218751192093, + -0.016178008168935776, + -0.0053321137093007565, + -0.016700703650712967, + -0.005443664267659187, + -0.027690019458532333, + -0.01387050747871399, + -0.008286608383059502, + 0.026899605989456177, + -0.006141651421785355, + -0.0005904208519496024, + 0.004063625354319811, + -0.02438812516629696, + -0.008726435713469982, + -0.023546716198325157, + 0.011531134136021137, + 0.021443191915750504, + -0.02484707534313202, + 0.007999763824045658, + -0.025956206023693085, + -0.006116154137998819, + -0.0013067343970760703, + 0.022947531193494797, + -0.00801251269876957, + -0.0403621569275856, + -0.0008326447568833828, + -0.02064002864062786, + 0.008732810616493225, + 0.012582896277308464, + -0.006737649906426668, + -0.024898070842027664, + -0.029245352372527122, + -0.010791713371872902, + -0.007496193516999483, + -0.006479490082710981, + 0.01814129762351513, + -0.0017306262161582708, + -0.021200967952609062, + -0.015578823164105415, + 0.0036142361350357533, + 0.008987782523036003, + 0.022067874670028687, + -0.00029740159516222775, + -0.003878770163282752, + 0.01432945765554905, + 0.0017816207837313414, + 0.021851148456335068, + -0.018587499856948853, + 0.016139762476086617, + 0.0027170514222234488, + -0.023967420682311058, + -0.0016971611184999347, + 0.025471758097410202, + -0.017210647463798523, + -0.0120347049087286, + 0.037735939025878906, + -0.0022867852821946144, + 0.009478605352342129, + -0.0095295999199152, + 0.025038305670022964, + -0.016458479687571526, + 0.00989930983632803, + 0.0019122941885143518, + 0.0140234911814332, + -0.0075025674887001514, + 0.024426370859146118, + 0.00497515220195055, + -0.03164209425449371, + -0.013398808427155018, + -0.010415629483759403, + 0.03299345076084137, + -0.011161424219608307, + 0.0006465945043601096, + -0.007107360288500786, + -0.026695627719163895, + 0.0036078616976737976, + -0.00719022611156106, + 0.03345239907503128, + -0.02389092929661274, + -0.021251963451504707, + 0.02183840051293373, + -0.014903145842254162, + 0.018816975876688957, + 0.017733341082930565, + -0.007426076103001833, + -0.002350528258830309, + 0.018625745549798012, + -0.014648173935711384, + 0.01042837742716074, + -0.003805465530604124, + 0.0286589153110981, + -0.004803045652806759, + -0.028735408559441566, + 0.037174999713897705, + 0.010453875176608562, + 0.022820044308900833, + 0.027001595124602318, + 0.0021130850072950125, + -0.021188220009207726, + 0.029551319777965546, + -0.0012350233737379313, + 0.024260640144348145, + 0.015081627294421196, + 0.009204509668052197, + 0.008388597518205643, + -0.0006995809962972999, + -0.002635778859257698, + 0.011658620089292526, + -0.013054595328867435, + 0.009905683808028698, + -0.02960231527686119, + 0.034319307655096054, + -0.017159653827548027, + 0.03475276008248329, + 0.021647170186042786, + 0.00358555163256824, + -0.013009974732995033, + 0.010963819921016693, + -0.013048220425844193, + -0.00621814327314496, + -0.0034580654464662075, + -0.009873812086880207, + -0.02551000565290451, + -0.01616526022553444, + 0.013207579031586647, + 0.004646874964237213, + -0.008318480104207993, + -0.007859528996050358, + 0.003987133502960205, + 0.012805997394025326, + 0.017440123483538628, + -0.0036206103395670652, + 0.025675736367702484, + 0.0010103287640959024, + 0.008318480104207993, + 0.0099503044039011, + -0.015374845825135708, + -0.012092073448002338, + 0.039469752460718155, + -0.005236499011516571, + -0.024056661874055862, + -0.016840938478708267, + 0.0034580654464662075, + -0.026019949465990067, + -0.005402231123298407, + -0.012181314639747143, + -0.003588738851249218, + -0.02756253443658352, + -0.01666245609521866, + 0.013590037822723389, + -0.016777195036411285, + 0.015094376169145107, + -0.01383226178586483, + 0.00411143247038126, + 0.008917665109038353, + 0.000279473839327693, + -0.013131086714565754, + -0.021787405014038086, + 0.0016907867975533009, + 0.01406173687428236, + 0.013462550938129425, + -0.007623679470270872, + 0.004487517289817333, + 0.00829298235476017, + -0.01016065664589405, + -0.007897774688899517, + -0.009593342430889606, + -0.007387829944491386, + 0.014444195665419102, + -0.011384525336325169, + 0.007273092400282621, + 0.0005697043379768729, + -0.02117547206580639, + 0.0338093601167202, + -0.008120875805616379, + 0.012340672314167023, + -0.03875583037734032, + -0.01718515157699585, + 0.013131086714565754, + 0.039750222116708755, + 0.0074579473584890366, + 0.0024413622450083494, + 0.026899605989456177, + 0.014036239124834538, + -0.0070117455907166, + 0.01002042181789875, + -0.03893430903553963, + -0.009567845612764359, + -0.017975565046072006, + 0.0007398188463412225, + -0.002130614360794425, + 0.019365165382623672, + -0.0063201324082911015, + 0.013411556370556355, + 0.008911291137337685, + 0.007107360288500786, + -0.02229735068976879, + -0.0018644868396222591, + 0.008598949760198593, + -0.0016589151928201318, + 0.0018071180675178766, + 0.00022290179913397878, + 0.04660898447036743, + 0.02191489189863205, + 0.004653249401599169, + 0.029168860986828804, + 0.016522221267223358, + 0.001026264508254826, + -0.010256270878016949, + -0.002715457696467638, + 0.019326919689774513, + 0.018039308488368988, + 0.012442661449313164, + -0.04224895313382149, + -0.007859528996050358, + 0.006301009561866522, + -0.02259056828916073, + 0.03041822649538517, + -0.012646638788282871, + 0.029627811163663864, + 0.014839403331279755, + 0.0025401641614735126, + -0.02117547206580639, + 0.0068651363253593445, + -0.017873575910925865, + -0.0016923804068937898, + 0.026950599625706673, + -0.00815274752676487, + 0.006744024343788624, + 0.017516614869236946, + -0.018128549680113792, + -0.03233052045106888, + -0.02353396825492382, + -0.006415747106075287, + -0.019224930554628372, + 0.019773121923208237, + -0.02329174429178238, + -0.006756772752851248, + -0.018396269530057907, + -0.02876090444624424, + -0.030673198401927948, + -0.01954364776611328, + -0.0199006088078022, + -0.005010210908949375, + -0.017988314852118492, + 0.0034676268696784973, + 0.005959983449429274, + -0.011843475513160229, + -0.0006768724997527897, + 0.033579885959625244, + -0.032585494220256805, + -0.01658596470952034, + 0.02508929930627346, + 0.0012485687620937824, + 0.003910641651600599, + 0.014762911014258862, + -0.017911821603775024, + 0.013118338771164417, + -0.010186153464019299, + -0.003289146116003394, + -0.014915894716978073, + -0.0020684648770838976, + -0.0289393849670887, + 0.010893702507019043, + -0.008120875805616379, + -0.013730272650718689, + -0.024604851379990578, + -0.018294282257556915, + 0.022539574652910233, + -0.00719022611156106, + -0.00404131505638361, + 0.011677742935717106, + 0.016611462458968163, + -0.017070412635803223, + 0.012856991030275822, + 0.007878651842474937, + 0.011116803623735905, + 0.018791478127241135, + -0.050051115453243256, + 0.029984774067997932, + 0.0055807121098041534, + 0.005775128491222858, + 0.0040030693635344505, + 0.014087233692407608, + -0.009382990188896656, + -0.01824328675866127, + 0.004398276563733816, + -0.012238683179020882, + -0.006610163487493992, + 0.02682311274111271, + -0.02363595739006996, + 0.018906215205788612, + -0.0004477955517359078, + -0.018957210704684258, + 0.008700938895344734, + 0.012627515941858292, + 0.0026660568546503782, + 0.021991383284330368, + -0.020066341385245323, + -0.02151968516409397, + -0.040668122470378876, + 0.03584914281964302, + 0.010778965428471565, + 0.010402880609035492, + -0.009077022783458233, + 0.004838104359805584, + 0.03539019078016281, + -0.0375574566423893, + -0.00825473666191101, + -0.01443144679069519, + 0.008611698634922504, + 0.03182057663798332, + 0.009019654244184494, + -0.016152512282133102, + -0.022718055173754692, + 0.0013202797854319215, + 0.0055265300907194614, + -0.04482417553663254, + -0.004289913456887007, + -0.0340898297727108, + 0.005456412676721811, + 0.00804438441991806, + 0.008299357257783413, + 0.008987782523036003, + -0.03023974597454071, + -0.011390899308025837, + 0.004353656433522701, + -0.006259576417505741, + 0.008930413983762264, + -0.019913356751203537, + -0.011524760164320469, + -0.018052058294415474, + 0.009618840180337429, + -0.01047937199473381, + -0.04089760035276413, + 0.018307030200958252, + -0.034599777311086655, + 0.016840938478708267, + 0.015553326345980167, + 0.02353396825492382, + -0.012602019123733044, + 0.04293737933039665, + 0.016279997304081917, + -0.01986236311495304, + -0.009051525965332985, + 0.007661925628781319, + 0.004713805392384529, + -0.014724665321409702, + 0.03610411658883095, + 0.01201558206230402, + 0.0044588325545191765, + 0.014979638159275055, + 0.003878770163282752, + 0.007018119562417269, + 0.03582364320755005, + -0.02766452357172966, + -0.020589035004377365, + -0.012780499644577503, + -0.0197603739798069, + 0.0025895650032907724, + 0.024643098935484886, + -0.013105589896440506, + 0.006673906929790974, + -0.015566075220704079, + -0.004551260266453028, + 0.029984774067997932, + -0.008975034579634666, + -0.012321549467742443, + -0.004054063931107521, + 0.01415097713470459, + -0.029423832893371582, + 0.023444727063179016, + -0.005609396379441023, + -0.005038895178586245, + -0.0098100695759058, + -0.014138228259980679, + -0.01208569947630167, + -0.04145853966474533, + 0.024859825149178505, + -0.0073559582233428955, + -0.01401074230670929, + -0.0024732339661568403, + 0.005679513793438673, + -0.005357610993087292, + -0.008159122429788113, + 0.013169332407414913, + -0.03151460736989975, + 0.0023983356077224016, + -0.015719057992100716, + -0.01180522982031107, + -0.017618604004383087, + -0.0024110842496156693, + -0.03921477869153023, + 0.019046450033783913, + -0.011097680777311325, + 0.010912825353443623, + 0.04196848347783089, + -0.011990084312856197, + 0.024196896702051163, + 0.00984194129705429, + 0.008822050876915455, + 0.01760585606098175, + -0.018625745549798012, + 0.04711892828345299, + 0.009331995621323586, + -0.021825650706887245, + -0.013143835589289665, + -0.03391135111451149, + -0.006693029776215553, + -0.013679278083145618, + 0.016955675557255745, + -0.015196364372968674, + -0.020091837272047997, + -0.015247358940541744, + 0.011677742935717106, + 0.022488579154014587, + 0.00592811219394207, + -0.004324972163885832, + 0.047730863094329834, + 0.019352417439222336, + -0.01028814259916544, + -0.008828424848616123, + -0.0201810784637928, + -0.013029097579419613, + 0.004315410740673542, + -0.006763147190213203, + -0.012812371365725994, + -0.007872277870774269, + 0.00991843268275261, + 0.013768518343567848, + 0.05091802030801773, + 0.007763914298266172, + 0.030545713379979134, + -0.005109012592583895, + -0.00704999128356576, + -0.004500265698879957, + -0.02812347374856472, + 0.0005254825227893889, + 0.019492652267217636, + 0.0017385941464453936, + 0.028735408559441566, + 0.0014772473368793726, + -0.017095910385251045, + 0.023100513964891434, + -0.007043616846203804, + 0.013959747739136219, + 0.023686951026320457, + -0.0036492948420345783, + 0.02015558071434498, + -0.004089122638106346, + -0.0034230067394673824, + -0.005191878881305456, + 0.008955910801887512, + 0.016458479687571526, + -0.0019011391559615731, + 0.0004916189936921, + -0.0046755592338740826, + 0.004057250916957855, + -0.012551024556159973, + -0.003738535102456808, + 0.014533435925841331, + 0.002643746789544821, + -0.014711916446685791, + -0.015464086085557938, + 0.0015752523904666305, + -0.003102697432041168, + -0.013373310677707195, + 0.03273847699165344, + -0.017593106254935265, + -0.009682582691311836, + -0.0009665053803473711, + -0.012429912574589252, + 0.018574751913547516, + -0.001487605506554246, + -0.015362096950411797, + -0.03115764632821083, + 0.0329679511487484, + -0.04686395823955536, + 0.019594641402363777, + 0.0363335907459259, + 0.010313640348613262, + 0.016611462458968163, + 0.013373310677707195, + 0.004254854749888182, + -0.014890397898852825, + 0.023457475006580353, + 0.0012342265108600259, + -0.0312341395765543, + 0.0008107330650091171, + -0.009006905369460583, + 0.0010517617920413613, + -0.016930177807807922, + 0.011773358099162579, + 0.026440653949975967, + 0.0039138286374509335, + -0.005450038705021143, + -0.01562981866300106, + -0.004713805392384529, + 0.03136162459850311, + 0.002866847673431039, + -0.014597179368138313, + 0.06807767599821091, + -0.035874638706445694, + 0.01197733636945486, + 0.010651478543877602, + 0.034497786313295364, + -0.025675736367702484, + -0.015298353508114815, + -0.01746562123298645, + -0.012251432053744793, + 0.006763147190213203, + 0.004736115224659443, + -0.002195951296016574, + 0.013424305245280266, + -0.022361094132065773, + -0.03207554668188095, + 0.013220326974987984, + 0.005182317458093166, + 0.013258573599159718, + 0.030826183035969734, + 0.011958213523030281, + -0.02014283277094364, + 0.025000059977173805, + -0.015374845825135708, + -0.01242353767156601, + -0.008165496401488781, + -0.004857227206230164, + -0.05257534235715866, + -0.0015266481786966324, + 0.00045257629244588315, + 0.027078086510300636, + 0.010186153464019299, + -0.022781798616051674, + -0.001759310718625784, + 0.018969958648085594, + -0.048750754445791245, + -0.014724665321409702, + -0.001834208844229579, + 0.0012421944411471486, + 0.007617305498570204, + 0.004324972163885832, + -0.021149974316358566, + 0.018370773643255234, + 0.005351236555725336, + 0.018995456397533417, + -0.0061065927147865295, + -0.019135691225528717, + 0.006269137840718031, + 0.0015386000741273165, + 0.033579885959625244, + 0.011849849484860897, + -0.014584430493414402, + -0.006858761887997389, + 0.021749159321188927, + -0.011951838620007038, + -0.013845009729266167, + 0.026772119104862213, + 0.005191878881305456, + 0.0012326330179348588, + -0.011390899308025837, + 0.009357493370771408, + 0.006275512278079987, + 0.009727203287184238, + 0.00022429617820307612, + -0.030749691650271416, + 0.0028732221107929945, + 0.023623207584023476, + 0.0008708906825631857, + -0.02487257309257984, + 0.014711916446685791, + -0.005583899095654488, + -0.006116154137998819, + -0.016955675557255745, + 0.028429441154003143, + -0.02205512672662735, + -0.010906451381742954, + -0.029729800298810005, + 0.023827185854315758, + 0.015081627294421196, + 0.0032062800601124763, + 0.00520462729036808, + 0.0012740660458803177, + -0.011397273279726505, + -0.02636416256427765, + -0.003289146116003394, + -0.011499262414872646, + 0.018714986741542816, + 0.015859292820096016, + 0.01180522982031107, + 0.014826654456555843, + -0.015081627294421196, + 0.01986236311495304, + -0.02227185294032097, + 0.008847547695040703, + -0.01594853401184082, + -0.011760609224438667, + -0.005093076732009649, + 0.004350469447672367, + 0.007158354856073856, + -0.0026198429986834526, + 0.0039807590655982494, + -0.014444195665419102, + -0.015005134977400303, + -0.01594853401184082, + 0.0013824293855577707, + -0.0006370330229401588, + -0.02067827433347702, + 0.008031635545194149, + 0.014813905581831932, + -0.021226465702056885, + -0.010224400088191032, + -0.012653013691306114, + 0.019454406574368477, + -0.024961814284324646, + 0.012168565765023232, + 0.17664499580860138, + 0.0018565190257504582, + -0.009637963026762009, + 0.02057628519833088, + -0.014125480316579342, + -0.016394736245274544, + 0.011059435084462166, + -0.007508941926062107, + -0.027231069281697273, + 0.026695627719163895, + -0.017733341082930565, + 0.01174786128103733, + -0.0029497137293219566, + 0.005587086081504822, + 0.01870223693549633, + -0.015017883852124214, + -0.0340898297727108, + 0.002152924658730626, + -0.00201587681658566, + 0.030724193900823593, + 0.029525822028517723, + -0.011467390693724155, + 0.0081017529591918, + -0.011741486378014088, + 0.013386059552431107, + 0.003888331586495042, + -0.0018246474210172892, + 0.007279466837644577, + 0.034038837999105453, + 0.015974031761288643, + 0.006686655338853598, + 0.0038341498002409935, + 9.138177119893953e-05, + -0.015005134977400303, + 0.0007577465730719268, + 0.011703240685164928, + 0.021200967952609062, + -0.02840394340455532, + 0.020232072100043297, + 0.02399291843175888, + -0.018294282257556915, + -0.010938323102891445, + -0.015043381601572037, + -0.024145901203155518, + -0.010804462246596813, + 0.01842176727950573, + -0.027893997728824615, + 0.002458891598507762, + -0.01204745378345251, + -0.0028015109710395336, + -0.018256034702062607, + -0.011167798191308975, + 0.016598714515566826, + 0.041203565895557404, + -0.008624446578323841, + 0.026262173429131508, + 0.019824117422103882, + -0.02646615169942379, + 0.01035826001316309, + -0.0029098743107169867, + -0.025459010154008865, + 0.039010800421237946, + -0.016101516783237457, + 0.02293478138744831, + -0.01007779035717249, + 0.011454642750322819, + -0.016879184171557426, + 0.02357221394777298, + -0.008248362690210342, + -0.004353656433522701, + -0.015833796933293343, + -0.00979094672948122, + -0.022565072402358055, + 0.02375069446861744, + -0.028709910809993744, + -0.008426843211054802, + 0.024260640144348145, + -0.0021385822910815477, + 0.018714986741542816, + 0.02103523723781109, + -0.020104587078094482, + 0.01566806435585022, + 0.0031983121298253536, + -0.027231069281697273, + 0.007610931061208248, + -0.03707301244139671, + 0.030112259089946747, + 0.017057664692401886, + -0.009351118467748165, + -0.0023648706264793873, + -0.0038532728794962168, + 0.012200437486171722, + 0.004704243969172239, + -0.006524110212922096, + 0.02590521238744259, + -0.008108127862215042, + 0.009453107602894306, + -0.011097680777311325, + -0.0039042674470692873, + 0.01612701453268528, + -0.003894705791026354, + 0.05660390853881836, + 0.03187157213687897, + -0.019747624173760414, + -0.0009370241896249354, + 0.010919200256466866, + -0.010466624051332474, + 0.027792008593678474, + 0.007515316363424063, + -0.012633890844881535, + -0.0018134923884645104, + -0.022246355190873146, + 0.007273092400282621, + -0.0033528890926390886, + -0.010415629483759403, + 0.01005866751074791, + -0.0024254266172647476, + -0.01817954331636429, + -0.010919200256466866, + -0.004978339187800884, + -0.02335548587143421, + 0.0069798738695681095, + 0.014125480316579342, + 0.0020812135189771652, + 0.013755769468843937, + -0.014737414196133614, + -0.046277519315481186, + 0.02007908932864666, + -0.00682051619514823, + -0.008394971489906311, + 0.024120405316352844, + -0.016853686422109604, + -0.010281768627464771, + -0.007158354856073856, + -0.000878061749972403, + 0.015145369805395603, + 0.02149418741464615, + -0.042682405561208725, + -0.00020228487846907228, + 0.008547955192625523, + 0.0033847608137875795, + -0.045359618961811066, + 0.008261110633611679, + -0.023546716198325157, + 0.013022723607718945, + -0.010453875176608562, + -0.009096146561205387, + -0.0013848197413608432, + -0.02484707534313202, + -0.016534971073269844, + 0.01383226178586483, + -0.01192634180188179, + 0.012805997394025326, + -0.01997710019350052, + 0.025204038247466087, + -0.007139231543987989, + -0.0020286254584789276, + -0.022641563788056374, + 0.012442661449313164, + 0.02932184562087059, + 0.004044502042233944, + 0.010281768627464771, + -0.009166263975203037, + -0.021251963451504707, + -0.0164839755743742, + -0.0002388375869486481, + -0.1580829918384552, + 0.005198253318667412, + 0.011346278712153435, + -0.041127074509859085, + 0.001987192314118147, + 0.0023680576123297215, + -0.011231541633605957, + -0.01965838484466076, + -0.010300891473889351, + 0.01424021739512682, + 0.03087717667222023, + -0.008834799751639366, + -0.015642566606402397, + -0.012576521374285221, + -0.011263413354754448, + -0.00046094259596429765, + -0.02335548587143421, + 0.021188220009207726, + 0.03814389556646347, + 0.006122528575360775, + 0.008286608383059502, + -0.03804190456867218, + 0.005870743189007044, + -0.005950422026216984, + 0.0036397334188222885, + -0.016802692785859108, + -0.01810305193066597, + 0.017733341082930565, + 0.007496193516999483, + -0.020563537254929543, + -0.011563005857169628, + 0.006441244389861822, + 0.04054063558578491, + -0.008796553127467632, + 0.003623797558248043, + -0.005845245905220509, + 0.022169863805174828, + -0.012863365933299065, + -0.011359027586877346, + 0.0338093601167202, + 0.041942987591028214, + -0.01397249661386013, + -0.015464086085557938, + 0.0280469823628664, + -0.038730330765247345, + -0.0011521573178470135, + 0.005478722974658012, + 0.012570147402584553, + -0.007247595116496086, + 0.010664227418601513, + 0.010594110004603863, + -0.023508470505475998, + -0.026772119104862213, + 0.014711916446685791, + -0.012576521374285221, + 0.0065145487897098064, + 0.00016364059410989285, + 0.018230538815259933, + -0.0007294605602510273, + -0.008598949760198593, + 0.0008147170301526785, + -0.01782258227467537, + -0.0017481556860730052, + 0.010702473111450672, + 0.010657853446900845, + -0.01782258227467537, + 0.0004836510925088078, + 0.004028566647320986, + -0.00804438441991806, + 0.005835684482008219, + -0.03663955628871918, + -0.014533435925841331, + 0.01997710019350052, + 0.010504869744181633, + 0.00602691387757659, + 0.014724665321409702, + -0.014801157638430595, + 0.010785339400172234, + -0.002855692757293582, + -0.002705896273255348, + -0.02522953413426876, + 0.05349324271082878, + -0.02183840051293373, + -0.020525291562080383, + -0.030443724244832993, + 0.005497845821082592, + -0.002376025542616844, + -0.003987133502960205, + 0.002449330175295472, + -0.00022728413750883192, + 0.02576497755944729, + -0.03959723934531212, + -0.03888331726193428, + -0.010517618618905544, + -0.005899427458643913, + -0.003668417688459158, + 0.027613528072834015, + 0.0035377442836761475, + -0.0075918082147836685, + -0.029933778569102287, + 0.01434220653027296, + -0.006622912362217903, + -0.023482972756028175, + -0.007426076103001833, + 0.007311338093131781, + 0.025943458080291748, + -0.015349348075687885, + 0.01626724936068058, + 0.04943918064236641, + 0.002597532933577895, + -0.018727734684944153, + -0.00958059448748827, + 0.02452835999429226, + -0.000361941521987319, + -0.011429145000874996, + -0.0007354365079663694, + 0.015961281955242157, + -0.013131086714565754, + 0.005899427458643913, + -0.01792457140982151, + 0.025841468945145607, + -0.0021322080865502357, + -0.030112259089946747, + 0.012347046285867691, + -0.010224400088191032, + -0.01930142380297184, + -0.08470188826322556, + 0.010192528367042542, + 0.0349312424659729, + 0.023546716198325157, + 0.015336599200963974, + 0.004541698843240738, + 0.006552794948220253, + 0.005854807328432798, + 0.00578787736594677, + 0.01722339726984501, + -0.04778185859322548, + -0.0189189650118351, + -0.0010676976526156068, + -0.0007991796010173857, + 0.009019654244184494, + -0.00802526157349348, + -0.007158354856073856, + -0.016178008168935776, + -0.035339199006557465, + 0.016063271090388298, + 0.013080092146992683, + -0.01736363209784031, + -0.016178008168935776, + -0.015464086085557938, + -0.0015633004950359464, + 0.002121052937582135, + -0.027995986863970757, + 0.014839403331279755, + 0.019275926053524017, + -0.012608393095433712, + 0.016675205901265144, + 0.002336186124011874, + 0.02738405391573906, + -0.03712400421500206, + 0.013934250921010971, + -0.009414861910045147, + -0.004701056517660618, + -0.025471758097410202, + 0.013258573599159718, + -0.020767515525221825, + -0.01902095228433609, + -0.011722363531589508, + 0.04227444902062416, + -0.014813905581831932, + 0.002385586965829134, + -0.00785315502434969, + -0.01782258227467537, + -0.004589505959302187, + 0.0002577613340690732, + -0.022029628977179527, + -0.031667593866586685, + -0.03105565719306469, + -0.001519477111287415, + 0.004044502042233944, + 0.02301127463579178, + 0.018676741048693657, + 0.003110665362328291, + -0.021749159321188927, + -0.0081017529591918, + 0.005010210908949375, + -0.004739302676171064, + 0.018154045566916466, + -0.030826183035969734, + 0.03842436522245407, + 0.0032397450413554907, + -0.01054948940873146, + -0.015502331778407097, + -0.013717523775994778, + 0.00031074779690243304, + -0.030086763203144073, + -0.013755769468843937, + -0.005038895178586245, + -0.0008852328755892813, + -0.005622144788503647, + -0.01742737554013729, + -0.0017051290487870574, + -0.03187157213687897, + -0.016802692785859108, + -0.0049018473364412785, + -0.020945996046066284, + -0.027792008593678474, + -0.02007908932864666, + 0.021940389648079872, + -0.017414625734090805, + 0.0191994346678257, + 0.009198134765028954, + 0.005236499011516571, + -0.016178008168935776, + 0.009574219584465027, + -0.011416396126151085, + 0.009574219584465027, + 0.0018198667094111443, + 0.013016349636018276, + -0.008318480104207993, + 0.004643687978386879, + 0.0048094200901687145, + -0.01030726544559002, + -0.01591028831899166, + 0.0022628814913332462, + -0.001359322457574308, + -0.021506935358047485, + -0.0056954496540129185, + -0.033885855227708817, + 0.01369202695786953, + 0.009682582691311836, + -0.007024493999779224, + -0.001867674058303237, + 0.00295927538536489, + 0.017631351947784424, + 0.013526294380426407, + -0.00689063360914588, + 0.008751933462917805, + 0.004554447252303362, + 0.024196896702051163, + 0.008822050876915455, + -0.013564540073275566, + -0.006852387450635433, + 0.003470814088359475, + 0.003700289409607649, + 0.02287103794515133, + 0.017516614869236946, + -0.006250014994293451, + -0.01220681145787239, + 0.0074579473584890366, + -0.007751165889203548, + 0.016432981938123703, + -0.03312093764543533, + 0.006275512278079987, + -0.00806350726634264, + 0.004382340703159571, + -0.0050452696159482, + -0.009484979324042797, + 0.013245824724435806, + -0.007891400717198849, + -0.016101516783237457, + -0.0033592635300010443, + -0.0049910880625247955, + -0.024260640144348145, + 0.005007023923099041, + 0.0349312424659729, + -0.00591855077072978, + 0.0641510933637619, + -0.027970490977168083, + -0.032840464264154434, + -0.0019999409560114145, + -0.01206657662987709, + 0.005131322890520096, + -0.017988314852118492, + 0.016381986439228058, + 0.01021802518516779, + 0.01636923849582672, + -0.006559169385582209, + 0.02774101495742798, + 0.014087233692407608, + -0.00343575538136065, + -0.009389364160597324, + 0.020742017775774002, + -0.012863365933299065, + 0.0099503044039011, + 0.023916427046060562, + -0.001342589850537479, + -0.016254501417279243, + 0.03301894664764404, + 0.0011497668456286192, + 0.016279997304081917, + 0.0036365462001413107, + 0.041407544165849686, + -0.04061713069677353, + -0.027154577895998955, + 0.0011824353132396936, + 0.020831258967518806, + -0.015782801434397697, + -0.024910818785429, + -0.007610931061208248, + 0.00781490933150053, + 0.027358556166291237, + -0.007151980418711901, + 0.00788502674549818, + 0.036078616976737976, + -0.014316709712147713, + 0.010587736032903194, + 0.03666505590081215, + 0.012780499644577503, + 0.0157318077981472, + -0.015757303684949875, + -0.015056129544973373, + 0.018753232434391975, + 0.010721595957875252, + -0.01816679537296295, + -0.014609928242862225, + -0.01979861967265606, + 0.014711916446685791, + 0.01708316244184971, + 0.006795018911361694, + 0.009198134765028954, + 0.003633358981460333, + 0.0203213132917881, + -0.0001954125618794933, + 0.011569379828870296, + -0.02081850916147232, + 0.016636960208415985, + 0.03508422523736954, + 0.007183852139860392, + -0.0014748568646609783, + 0.005644455086439848, + -0.022310098633170128, + -0.028786402195692062, + 0.009064274840056896, + -0.004054063931107521, + -0.042605914175510406, + -0.01714690402150154, + 0.02967880666255951, + -0.03419182077050209, + 0.02554825134575367, + -0.001937791472300887, + -0.011652246117591858, + -0.025216786190867424, + 0.048470284789800644, + -0.016611462458968163, + -0.01030726544559002, + -0.019964352250099182, + -0.007763914298266172, + 0.017032166942954063, + 0.012608393095433712, + -0.005886679049581289, + 0.0073432098142802715, + 0.011518385261297226, + 0.012398040853440762, + -0.009440358728170395, + -0.015757303684949875, + 0.002455704379826784, + -0.0005294664879329503, + 0.01243628654628992, + -0.0026899606455117464, + -0.030953669920563698, + -0.019314171746373177, + -0.027893997728824615, + -0.02413315325975418, + 0.010084165260195732, + 0.0169046800583601, + 0.02967880666255951, + 0.08281508833169937, + 0.032126542180776596, + 1.12982229438785e-06, + 0.012895237654447556, + -0.012735879048705101, + 0.0020780263002961874, + -0.00038982913247309625, + 0.005618957802653313, + -0.008031635545194149, + -0.04395727068185806, + 0.0028429441154003143, + -0.02089500240981579, + 0.02812347374856472, + -0.02113722451031208, + -0.026593638584017754, + 0.013475299812853336, + -0.005791064351797104, + 0.011652246117591858, + -0.010167030617594719, + 0.022845542058348656, + 0.031846072524785995, + -0.006492238957434893, + 0.016012277454137802, + 0.011499262414872646, + -0.03987770900130272, + -0.017134156078100204, + 0.013131086714565754, + -0.01831977814435959, + -0.0070117455907166, + 0.009351118467748165, + -0.015323851257562637, + -0.0006461960729211569, + -0.05976556986570358, + -0.024362629279494286, + 0.02297302708029747, + -0.010007672943174839, + -0.02173641137778759, + -0.015272856689989567, + 0.027995986863970757, + 0.006230892147868872, + 0.012321549467742443, + 0.017618604004383087, + -0.03969922661781311, + -0.049209702759981155, + -0.004350469447672367, + -0.00498471362516284, + -0.009484979324042797, + -0.020933248102664948, + -0.03467626869678497 + ], + "metadata": { + "source": "Kreye_Marieke_BA_241_V2.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 17, + "has_images": true, + "image_count": 98, + "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", + "links": [], + "last_modified": "2025-05-05T23:00:23", + "_known_field_names": "frozenset({'is_continuation', 'sent_to', 'header_footer_type', 'email_message_id', 'filename', 'languages', 'detection_class_prob', 'sent_from', 'link_texts', 'cc_recipient', 'subject', 'image_mime_type', 'image_path', 'filetype', 'page_number', 'last_modified', 'signature', 'detection_origin', 'text_as_html', 'attached_to_filename', 'bcc_recipient', 'data_source', 'link_start_indexes', 'category_depth', 'emphasized_text_tags', 'parent_id', 'orig_elements', 'page_name', 'coordinates', 'url', 'link_urls', 'file_directory', 'links', 'table_as_cells', 'emphasized_text_contents', 'key_value_pairs', 'image_base64'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "Kreye_Marieke_BA_241_V2.pdf", + "detection_class_prob": 0.3422867953777313, + "parent_id": "e02392183bc6851689602ad4b9f6039f", + "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", + "id": "ce00eae5-7e07-454f-9e4f-f79ac36f92f4", + "processing_timestamp": "2025-05-05T23:15:46.977945", + "chunk_number": 7, + "total_chunks": 56, + "chunking_strategy": "hybrid", + "word_count": 388 + } +} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000008.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000008.json new file mode 100644 index 0000000000000000000000000000000000000000..839d6eade996d5e5e03b759487ac63623783e7ef --- /dev/null +++ b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000008.json @@ -0,0 +1,1570 @@ +{ + "id": "61a115b2-0ff7-441a-f6d9-eb3d00000008", + "content": "Kampusch 2018, S. 26). Unter gr\u00fcner Infrastruktur, auch als Stadtgr\u00fcn oder urbanes Gr\u00fcn bezeichnet, wird die Vernetzung nat\u00fcrlicher und naturnah gestalteter Fl\u00e4chen in St\u00e4dten verstanden (vgl. Kampusch 2018, S. 18). Dies umfasst ein Netzwerk aus gro\u00dffl\u00e4chig begr\u00fcnten Freir\u00e4umen, begr\u00fcnten Geb\u00e4uden und der Begr\u00fcnung von Stra\u00dfenr\u00e4umen (vgl. Mehra 2021, S. 144). Zus\u00e4tzlich zu begr\u00fcnten Parkfl\u00e4chen oder zu Dach- und Fassadenbegr\u00fcnung sind insbesondere Stadtb\u00e4ume eine optimale Vegetationsform, um dem W\u00e4rmeinseleffekt entgegenzuwirken und einen K\u00fchlungseffekt im st\u00e4dtischen Raum zu erzielen (vgl. Kampusch 2018, S. 20). 7\nTheorieteil\nDie folgende Grafik des IPCC in Abbildung 3 veranschaulicht die Auswirkungen verschiedener st\u00e4dtischer Elemente auf die Temperatur im urbanen Raum. Die anthropogenen Einfl\u00fcsse, wie die zunehmende Urbanisierung, dunkle Oberfl\u00e4chen und Transmissionsw\u00e4rmeverluste, f\u00fchren zu einer Erh\u00f6hung der Temperatur um bis zu 2 \u00b0C gegen\u00fcber dem Umland. Im Gegensatz dazu steht die blaue und gr\u00fcne Infrastruktur, welche zu einer Reduktion der Temperatur um bis zu 3 \u00b0C beitr\u00e4gt. [IMAGE: COOLING \u20ac Local effect on temperature (C) \u2014> WARMING -3 -2 1 0 +1 +2 R T T T T T ' T ' T City geometry J Building density, city layout, heigh os and size Heat from human activities % Domestic/ industrial heating y Heat-retaining 2 Water ( : Sea, river, is lakes, irrigation Cities often lack vegetation and water Vegetation Parks, forests gardens | \u0131 | \u0131 | \u0131 | | N -3 -2 1 0 +1 +2 COOLING \u20ac Local effect on temperature ((C) \u2014> WARMING]\n\nAbbildung 3: Auswirkungen ausgew\u00e4hlter urbaner Elemente auf die Temperatur in der Stadt (Doblas-Reyes et al., S. 1463)\nDie vorliegende Arbeit fokussiert sich auf die gr\u00fcne Infrastruktur, speziell auf Stadtb\u00e4ume. In Kapitel 2.3.1 wird der K\u00fchlungseffekt durch Stadtb\u00e4ume, in Kapitel 2.3.2 der Mehrwert dieser f\u00fcr den urbanen Raum und in Kapitel 2.3.3 m\u00f6gliche Herausforderungen des st\u00e4dtischen Gr\u00fcns erl\u00e4utert. ## 2.3.1 K\u00fchlungseffekt durch Stadtb\u00e4ume\n\nStadtb\u00e4ume beeinflussen durch Verschattung und Verdunstung \u201edie Lufttemperatur, die Strahlungsverh\u00e4ltnisse, die W\u00e4rmespeicherung der verschatteten Bereiche, die Windgeschwindigkeit, die relative Luftfeuchtigkeit, die Oberfl\u00e4chenalbedo sowie die Oberfl\u00e4chenrauheit des Bodens\u201c (vgl. Mehra 2021, S. 121). Winde in der Stadt sind essenziell, um Frischluft zuzuf\u00fchren und k\u00fchlere Luft aus dem Umland in die erw\u00e4rmten St\u00e4dte zu transportieren. Die Verwirbelung bodennaher Winde f\u00f6rdert die Zufuhr von Kaltluft ins Stadtinnere, wobei eine m\u00f6glichst heterogene Oberfl\u00e4che in Bodenn\u00e4he die Verwirbelung beg\u00fcnstigt. Neben der Bebauung beeinflusst auch die Vegetation ma\u00dfgeblich die Oberfl\u00e4chenrauheit in der Stadt. Pflanzen tragen zur Verwirbelung der Luft bei und k\u00f6nnen gezielt als Steuerungselemente der\n8\nTheorieteil\nWindrichtung eingesetzt werden, d\u00fcrfen jedoch nicht zu einer Windstille f\u00fchren. (vgl. Feldmann et al. 2023, S. 18)\nDurch die Verschattung haben Stadtb\u00e4ume einen direkten Einfluss auf die Temperaturen in der Stadt und den Energiebedarf der Geb\u00e4ude. Der Schattenwurf der B\u00e4ume tr\u00e4gt ma\u00dfgeblich zur Reduktion der thermischen Aufheizung des st\u00e4dtischen Raums bei. Er h\u00e4ngt von der Form, der Gr\u00f6\u00dfe und der Belaubungsdichte der Baumkorne ab. \u00dcber den Blattfl\u00e4chenindex (Leaf Area Index, LAI), der das Verh\u00e4ltnis der Blattfl\u00e4che pro Bodenfl\u00e4che angibt und somit den \u00dcberdeckungsgrad der Baumkrone misst, kann der Verschattungseffekt bestimmt werden. Je h\u00f6her der \u00dcberdeckungsgrad des Baums, desto st\u00e4rker wird die eintreffende solare Strahlung abgeschw\u00e4cht und desto sp\u00fcrbarer ist der Schatten.", + "embedding": [ + 0.02073516882956028, + 0.003420662833377719, + 0.037016116082668304, + -0.026072554290294647, + 0.0047134109772741795, + 0.008639653213322163, + -0.03266429156064987, + -0.009906802326440811, + 0.000547178031411022, + -0.03322746604681015, + 0.00548138003796339, + 0.002339106285944581, + -0.01068757101893425, + 0.01579456590116024, + -0.006649333517998457, + -0.00988120399415493, + 0.046922918409109116, + 0.009996399283409119, + 0.005993359722197056, + 0.0033470657654106617, + -0.018828045576810837, + 0.00807647593319416, + 0.0005179792060516775, + -0.0014223429607227445, + -0.008959640748798847, + 0.023384662345051765, + 0.013093874789774418, + -0.02959241345524788, + -0.01275468897074461, + 0.0026542935520410538, + 0.010252389125525951, + -0.013605854474008083, + -0.018584854900836945, + -0.008249268867075443, + -0.011225149966776371, + -0.0015231389552354813, + -0.0006447741179727018, + -0.016946520656347275, + 0.00691812252625823, + -0.0037950477562844753, + 0.01790648140013218, + -0.009478019550442696, + 0.0016295346431434155, + -0.01601215824484825, + 0.00682852603495121, + 0.024127032607793808, + 0.007430102210491896, + 0.0011039557866752148, + -0.010924361646175385, + 0.022079113870859146, + 0.028466058894991875, + 0.023141471669077873, + -0.0193784236907959, + -0.0014191430527716875, + -0.023909442126750946, + 0.0025230988394469023, + -0.031742725521326065, + 0.010130793787539005, + 0.00988120399415493, + -0.014604214578866959, + -0.015346584841609001, + -0.019301626831293106, + -0.008166072890162468, + 0.016396142542362213, + -0.03683692216873169, + 0.00015219389752019197, + -0.010329185985028744, + -0.0011719530448317528, + 0.00025358982384204865, + -0.020978359505534172, + 0.037656091153621674, + 0.052529092878103256, + 0.028107672929763794, + -0.00030778764630667865, + -0.008889243938028812, + -0.007321306504309177, + -0.0012527498183771968, + 0.0038398460019379854, + -0.011385143734514713, + 0.014860204420983791, + -0.0007527698180638254, + -0.016895322129130363, + -0.02232230454683304, + 0.04602695256471634, + 0.013298667035996914, + 0.0004795807763002813, + -0.0007143713301047683, + 0.013298667035996914, + 0.005750169511884451, + 0.0026750927790999413, + -0.005820566788315773, + 0.015128993429243565, + 0.0039358423091471195, + 0.02223270758986473, + -0.009887603111565113, + -0.0024703009985387325, + -0.00700131943449378, + -0.007206111215054989, + 0.023000678047537804, + -0.0025646970607340336, + -0.016895322129130363, + 0.014642613008618355, + -0.009580415673553944, + -0.0013031477574259043, + -0.03586416319012642, + 0.002756689442321658, + -0.00596136087551713, + 0.022808685898780823, + 0.033099472522735596, + -0.03320186957716942, + -0.007839685305953026, + 0.03693931922316551, + -0.017893683165311813, + -0.04049757495522499, + 0.010399582795798779, + -0.023282267153263092, + 0.02620054967701435, + -0.0024990998208522797, + -0.010444381274282932, + -0.0011719530448317528, + 0.0190456360578537, + 0.007762888912111521, + -0.0003707851283252239, + -0.007590095512568951, + 0.020351184532046318, + 0.017087314277887344, + 0.011903522536158562, + 0.0004251829523127526, + -0.036350540816783905, + -0.026546135544776917, + -0.022360702976584435, + 0.018687250092625618, + -0.004534217994660139, + 0.003420662833377719, + -0.015551376156508923, + 0.01878964714705944, + -0.008089276030659676, + 0.007538897916674614, + -0.025573374703526497, + -0.03821926563978195, + -0.00856285635381937, + 0.002079916652292013, + -0.05055797100067139, + -0.01776568777859211, + -0.007954880595207214, + 0.030001996085047722, + 0.025637371465563774, + 0.019314425066113472, + -0.0035806563682854176, + -0.023461459204554558, + -0.0012343504931777716, + -0.012140313163399696, + 0.0029934800695627928, + -0.01314507331699133, + -0.003961441107094288, + 0.009375624358654022, + -0.008799646981060505, + -1.119330136134522e-05, + -0.025381382554769516, + 0.014284227043390274, + 0.031742725521326065, + -0.008818846195936203, + 0.010527578182518482, + 0.0015687370905652642, + 0.023026276379823685, + 0.006367744877934456, + 0.002113515278324485, + 0.01000919844955206, + 0.005292587913572788, + -0.006962921004742384, + 0.004291027784347534, + 0.04090715944766998, + -0.044235024601221085, + 0.029464418068528175, + 0.007122914306819439, + 0.022962279617786407, + 0.00981080625206232, + 0.02797967754304409, + -0.015692170709371567, + -0.029208429157733917, + -0.015666572377085686, + 0.00312627456150949, + 0.01125714834779501, + 0.025432581081986427, + -0.016447341069579124, + -0.0004467820981517434, + 0.036657728254795074, + 0.0228726826608181, + -0.0004267828771844506, + 0.008498859591782093, + 0.0004511818988248706, + 0.01286348421126604, + 0.0055101788602769375, + -0.006290947552770376, + -0.6418174505233765, + 0.017228109762072563, + 0.014860204420983791, + -0.012549896724522114, + 0.01067477185279131, + 0.018034476786851883, + 0.03153793513774872, + 0.02634134329855442, + 0.00043958236346952617, + 0.021016757935285568, + 0.0011007558787241578, + 0.006834926083683968, + -0.0005435781786218286, + 0.00748769985511899, + 0.006159753073006868, + -0.00855005718767643, + 0.002691092202439904, + 0.00796768069267273, + 0.027877282351255417, + 0.00527978828176856, + -0.0029598812106996775, + 0.021720729768276215, + -0.00700771901756525, + -0.0006339745596051216, + 0.030360382050275803, + 0.03755369409918785, + -0.0023743046913295984, + -0.04182872176170349, + 0.00421103136613965, + 0.013426661491394043, + -0.006604535039514303, + 0.03988320007920265, + -0.008428461849689484, + 0.01779128611087799, + 0.05857045203447342, + 0.02931082434952259, + -0.01743290014564991, + 0.013362663798034191, + 0.004447821527719498, + 0.005647773388773203, + -0.008876443840563297, + -0.01681852526962757, + -0.004553417209535837, + 0.0056637730449438095, + -0.008306866511702538, + 0.015410581603646278, + 0.03386744111776352, + -0.02800527773797512, + -0.0012983479537069798, + -0.008057276718318462, + 0.024946199730038643, + -0.006281347945332527, + 0.008409262634813786, + 0.006751729175448418, + 0.03412343189120293, + -0.003097475739195943, + 0.0202103890478611, + -0.003183872438967228, + 0.002847885712981224, + 0.002607895527034998, + 0.0019823205657303333, + -3.829846536973491e-05, + -0.01200591865926981, + -0.014373824000358582, + -0.02381984516978264, + 0.03125634789466858, + -0.034456219524145126, + -0.012965880334377289, + -0.003724650712683797, + -0.020658371970057487, + 0.004588616080582142, + 0.012927481904625893, + 0.004959801211953163, + -0.007647693157196045, + 0.009030037559568882, + 0.009862004779279232, + 0.038680050522089005, + -0.01144914049655199, + -0.015871362760663033, + 0.03394423797726631, + 0.0029230827931314707, + -0.030872361734509468, + -0.019301626831293106, + -0.00952281802892685, + 0.012428301386535168, + -0.03130754455924034, + -0.016856923699378967, + -0.00914523284882307, + -0.01646013930439949, + -0.001345546101219952, + 0.020107993856072426, + 0.028363661840558052, + -0.014834605157375336, + -0.03911523148417473, + -0.01307467557489872, + 0.036683328449726105, + -0.00042278305045329034, + 0.022744687274098396, + -0.0035518575459718704, + -0.03514739125967026, + -0.007801287341862917, + 0.013669852167367935, + 0.011577135883271694, + -0.0007463700603693724, + 0.02367904968559742, + 0.0050461976788938046, + -0.0013311465736478567, + 0.01153233740478754, + 0.029464418068528175, + -0.03220351040363312, + -0.0012119513703510165, + 0.0006183751975186169, + -0.0008231669780798256, + -0.002883084351196885, + -0.003369464771822095, + -0.013695450499653816, + 0.03658093139529228, + -0.014041037298738956, + 0.01807287521660328, + 0.010521178133785725, + 0.01567937061190605, + 0.006834926083683968, + 0.008441261947154999, + -0.02997639775276184, + 0.00518379220739007, + 0.020811965689063072, + -0.00949081964790821, + -0.00040758366230875254, + -0.022719088941812515, + -0.011193151585757732, + 0.003452661447227001, + 0.03199871629476547, + 0.03750249743461609, + 0.0027934880927205086, + 0.04239189997315407, + 0.009554816409945488, + 0.018508058041334152, + -0.002329506678506732, + -0.0024607013911008835, + -0.015039396472275257, + -0.016024956479668617, + -0.002388704102486372, + 0.008543657138943672, + -0.029720408841967583, + -0.01878964714705944, + -0.019672811031341553, + -0.019583214074373245, + 0.009734009392559528, + -0.021387942135334015, + 0.003452661447227001, + -0.025266187265515327, + -0.00017129312618635595, + 0.0009663612581789494, + 0.013785047456622124, + 0.0055709765292704105, + -0.001164753339253366, + 0.0017887282883748412, + -0.031077153980731964, + -0.012690691277384758, + -0.007468500640243292, + 0.012172311544418335, + 0.014783407561480999, + -0.02004399709403515, + 0.005010999273508787, + -0.026238948106765747, + -0.00814687367528677, + 0.003756649326533079, + 0.014425021596252918, + -0.015743369236588478, + -0.0323571041226387, + -0.004182232078164816, + -0.029080433771014214, + 0.00952281802892685, + -0.0018799245590344071, + -0.01547457929700613, + -0.02358945459127426, + -0.027826083824038506, + -0.011295546777546406, + -0.008364464156329632, + 0.002531098434701562, + 0.03161473199725151, + -0.00022639092640019953, + -0.01765049248933792, + -0.03292027860879898, + 0.010745168663561344, + 0.014079435728490353, + 0.02567576989531517, + 0.007878083735704422, + -0.0030926759354770184, + 0.005826966371387243, + 0.006130954250693321, + 0.03425142541527748, + -0.006498939357697964, + 0.014745009131729603, + -0.018060075119137764, + -0.018136871978640556, + 0.0004543817776720971, + 0.02417823113501072, + -0.023499857634305954, + -0.0020527176093310118, + 0.0323571041226387, + 0.0022287105675786734, + 0.01843126118183136, + -0.004259029403328896, + 0.019493618980050087, + -0.02106795459985733, + 0.011967520229518414, + 0.0034718606621026993, + 0.008844445459544659, + 0.004118234850466251, + 0.03614575043320656, + 0.01231310609728098, + -0.033125072717666626, + -0.021029556170105934, + -0.009599614888429642, + 0.04121434688568115, + -0.024997398257255554, + 0.005145393777638674, + -0.011506738141179085, + -0.01690812222659588, + 0.008511658757925034, + -0.006886123679578304, + 0.012383503839373589, + -0.023973438888788223, + -0.020837564021348953, + 0.01985200308263302, + -0.006073356606066227, + 0.019493618980050087, + 0.006326146423816681, + -0.01923762820661068, + -0.009094035252928734, + 0.00201911898329854, + -0.03263869136571884, + 0.01479620672762394, + -0.007122914306819439, + 0.016805725172162056, + 0.0016975319012999535, + -0.03463540971279144, + 0.04979000240564346, + 0.0004815806751139462, + 0.03151233494281769, + 0.043646249920129776, + 0.007423702161759138, + -0.02273188903927803, + 0.0437486469745636, + 0.009286027401685715, + 0.015320985578000546, + 0.026571733877062798, + 0.008806047029793262, + -0.010706770233809948, + -0.00423343013972044, + 0.0021567135117948055, + 0.008345264941453934, + -0.009030037559568882, + 0.013324265368282795, + -0.014245828613638878, + 0.02731410413980484, + -0.00036878520040772855, + 0.018840843811631203, + 0.006847725249826908, + 0.00788448378443718, + -0.013849044218659401, + 0.013401062227785587, + 0.0013567456044256687, + 0.008236469700932503, + 0.0040862360037863255, + -0.00225910940207541, + -0.01940402202308178, + -0.027851684018969536, + -0.0036158550065010786, + 0.01712571270763874, + -0.009292427450418472, + -0.016357744112610817, + 0.00731490645557642, + -0.0026958920061588287, + 0.010098795406520367, + -0.008940441533923149, + 0.018175270408391953, + 0.00855005718767643, + 0.008006079122424126, + 0.005113394930958748, + -0.01976240798830986, + -0.0043678246438503265, + 0.03345785662531853, + -0.006089355796575546, + -0.02629014663398266, + -0.0002759889466688037, + 0.00911963451653719, + -0.022283906117081642, + -0.009695610962808132, + -0.01662653312087059, + -0.006150153465569019, + -0.025253387168049812, + -0.006098955404013395, + 0.00673892954364419, + -0.029208429157733917, + 0.022002317011356354, + -0.013426661491394043, + 0.00864605326205492, + -0.001080756657756865, + 0.0017823284724727273, + -0.010348385199904442, + -0.02462621219456196, + -0.001715131220407784, + 0.018776847049593925, + 0.008102075196802616, + -0.010303586721420288, + 0.008863644674420357, + 0.0053597851656377316, + -0.0057597691193223, + -0.014412222430109978, + -0.0016527337720617652, + -0.013721049763262272, + 0.007890883833169937, + -0.017202509567141533, + 0.010732369497418404, + -0.0018527257489040494, + -0.013964240439236164, + 0.03839845955371857, + 0.0013575456105172634, + 0.0004255829262547195, + -0.030181189998984337, + -0.008511658757925034, + 0.004700611345469952, + 0.04976440593600273, + 0.006617334671318531, + -0.006274948362261057, + 0.01893044076859951, + 0.004582216031849384, + -0.015551376156508923, + 0.0012335504870861769, + -0.023282267153263092, + -0.012562695890665054, + -0.017138512805104256, + -0.007615694776177406, + -0.00988120399415493, + 0.01964721269905567, + -0.01814967207610607, + 0.001433542463928461, + 0.008294067345559597, + -0.007999679073691368, + -0.023256666958332062, + 0.005737369880080223, + 0.014847404323518276, + 0.004022238776087761, + -0.01576896756887436, + -0.01286348421126604, + 0.05127474293112755, + 0.02503579668700695, + 0.01179472729563713, + 0.030001996085047722, + 0.010802767239511013, + 0.012473099865019321, + -0.017701691016554832, + 0.0018063276074826717, + 0.014105034060776234, + 0.014949800446629524, + 0.01382344588637352, + -0.03284348174929619, + -0.0023215068504214287, + 0.01854645647108555, + -0.020530376583337784, + 0.02365345135331154, + 0.004790207836776972, + 0.027442099526524544, + 0.031179549172520638, + 0.003478260478004813, + -0.026418140158057213, + 0.0017311305273324251, + -0.028184469789266586, + 0.003964641131460667, + 0.012165912427008152, + -0.013388263061642647, + -0.010482779704034328, + 0.011884323321282864, + -0.010073196142911911, + -0.026213349774479866, + -0.0032286704517900944, + -0.006636533886194229, + -0.025330184027552605, + 0.019109632819890976, + -0.0033150671515613794, + 0.008473260328173637, + -0.021605534479022026, + -0.03481460362672806, + -0.03619694709777832, + 0.0014831405133008957, + -0.024421419948339462, + -0.003116674954071641, + -0.01679292693734169, + 0.00312627456150949, + 0.010226789861917496, + -0.003484660293906927, + -0.010943560861051083, + 0.026021355763077736, + -0.021989518776535988, + -0.026443740352988243, + 0.003414263017475605, + 0.011685931123793125, + 0.011692331172525883, + 0.014604214578866959, + -0.0069757201708853245, + 0.007718090433627367, + -0.012274707667529583, + -0.012729089707136154, + -0.01629374735057354, + 0.0024095033295452595, + -0.03345785662531853, + 0.010175592266023159, + -0.007679692003875971, + -0.00968921184539795, + -0.027928480878472328, + -0.008978839963674545, + 0.02733970433473587, + -0.020133592188358307, + -0.008070076815783978, + 0.010028397664427757, + 0.0006903723115101457, + -0.021695129573345184, + 0.007180511951446533, + 0.016524137929081917, + 0.00019469219841994345, + 0.034072235226631165, + -0.05012279003858566, + 0.031768325716257095, + 0.013196270912885666, + 0.005679772235453129, + -0.0021727129351347685, + 0.019557615742087364, + 0.005737369880080223, + -0.014834605157375336, + -0.0010111595038324594, + -0.012031517922878265, + -0.011007558554410934, + 0.021055156365036964, + -0.02989960089325905, + 0.015922561287879944, + 0.00264789373613894, + 0.0007931682048365474, + 0.0026318945456296206, + 0.005692571867257357, + -0.003673452651128173, + 0.022027917206287384, + -0.014693810604512691, + -0.02584216371178627, + -0.031000357121229172, + 0.03555697575211525, + 0.01121235080063343, + 0.007692491635680199, + 0.004393423907458782, + -0.015512977726757526, + 0.03614575043320656, + -0.029413221403956413, + -0.00806367676705122, + -0.016383342444896698, + 0.00904923677444458, + 0.015615373849868774, + -0.0022575093898922205, + -0.025854963809251785, + -0.019173631444573402, + 0.004771008621901274, + 0.004841405898332596, + -0.05176112428307533, + 0.012639492750167847, + -0.047230105847120285, + 0.02001839689910412, + 0.005958160851150751, + 0.02059437334537506, + -0.006226950325071812, + -0.02339746244251728, + -0.009567616507411003, + 0.008991639129817486, + 0.022783085703849792, + 0.024306224659085274, + -0.02892684005200863, + -0.013375463895499706, + -0.012242709286510944, + 0.019608814269304276, + -0.019058436155319214, + -0.04502859339118004, + 0.017663292586803436, + -0.03519858792424202, + 0.024664610624313354, + 0.007878083735704422, + 0.011359544470906258, + -0.003391864011064172, + 0.037988875061273575, + 0.010924361646175385, + -0.020248787477612495, + -0.012012318708002567, + 0.0014863404212519526, + -0.00341106322593987, + -0.014053836464881897, + 0.025662971660494804, + 0.0070269182324409485, + 0.006201351527124643, + 0.01276748813688755, + -0.003766248933970928, + 0.01067477185279131, + 0.03455861285328865, + -0.019941600039601326, + -0.02009519375860691, + -0.023384662345051765, + -0.002971080830320716, + -0.006130954250693321, + 0.024075834080576897, + -0.016639333218336105, + 0.005442981608211994, + -3.9748407289152965e-05, + -0.0018655251478776336, + 0.008882843889296055, + -0.009561216458678246, + -0.008070076815783978, + -0.008210870437324047, + 0.007596495561301708, + -0.03594096004962921, + 0.03527538478374481, + 0.0004267828771844506, + -0.0015559375751763582, + 0.004371024668216705, + -0.00799327902495861, + -0.02204071544110775, + -0.03332986310124397, + 0.025611773133277893, + -0.016344944015145302, + -0.013977039605379105, + 0.00021479139104485512, + -0.01978800632059574, + -0.002575896680355072, + -0.007641293574124575, + 0.03783528134226799, + -0.01873844861984253, + 0.013669852167367935, + -0.004159833304584026, + -0.017944879829883575, + -0.020747968927025795, + -0.013234669342637062, + -0.02964361198246479, + 0.01479620672762394, + -0.01928882673382759, + -0.013772247359156609, + 0.031153950840234756, + -0.0016543336678296328, + 0.02232230454683304, + 0.016383342444896698, + 0.0019167230930179358, + 0.03821926563978195, + -0.01582016609609127, + 0.03366265073418617, + 0.002350305672734976, + -0.017637692391872406, + -0.0025742966681718826, + -0.015832964330911636, + -0.004540618043392897, + -0.01617855206131935, + 0.014463420026004314, + -0.004876604303717613, + -0.012940281070768833, + -0.010655572637915611, + 0.02223270758986473, + 0.017944879829883575, + 0.010130793787539005, + 0.0007639693794772029, + 0.04415822774171829, + 0.03545457869768143, + 0.007295707240700722, + -0.018751248717308044, + -0.021451938897371292, + -0.009951600804924965, + -0.012639492750167847, + 0.005033398047089577, + -0.01067477185279131, + 0.0016351344529539347, + 0.008351664990186691, + 0.0072573088109493256, + 0.05298987403512001, + 0.0005351785221137106, + 0.02128554694354534, + -0.006719730328768492, + -0.016472939401865005, + -0.012146713212132454, + -0.02614935114979744, + 0.016997719183564186, + 0.01843126118183136, + 0.008690851740539074, + 0.03358585387468338, + 0.00312627456150949, + -0.02298787795007229, + 0.01400263886898756, + -0.014207430183887482, + 0.011276347562670708, + 0.015320985578000546, + 0.0002591896045487374, + 0.02111915312707424, + -0.0023727049119770527, + 0.0058845640160143375, + -0.016396142542362213, + 0.021003957837820053, + 0.02351265773177147, + -0.003465461079031229, + -0.0016703329747542739, + -0.0016863323980942369, + 0.00971481017768383, + -0.018712850287556648, + -0.0008155672694556415, + 0.006847725249826908, + 0.002511899219825864, + -0.011314745992422104, + -0.013810645788908005, + -0.0011767528485506773, + -0.00981080625206232, + -0.013311466202139854, + 0.0320243164896965, + -0.023320665583014488, + -0.010265188291668892, + -0.006434942129999399, + -0.014655412174761295, + 0.023781446740031242, + -0.004844605922698975, + -0.020479178056120872, + -0.011583535932004452, + 0.026571733877062798, + -0.035377781838178635, + 0.02006959542632103, + 0.03486580029129982, + 0.005334185902029276, + -0.0010327586205676198, + 0.01314507331699133, + -0.0004727810446638614, + -0.01976240798830986, + 0.02614935114979744, + -0.0044094230979681015, + -0.027237307280302048, + -0.003798247780650854, + -0.01432262547314167, + 0.0031502735801041126, + -0.01710011437535286, + -0.0036318544298410416, + 0.019557615742087364, + -0.006550137419253588, + 7.199711399152875e-05, + -0.01334986463189125, + -0.021746328100562096, + 0.01928882673382759, + 0.005494179669767618, + -0.019941600039601326, + 0.04351825639605522, + -0.025253387168049812, + 0.00877404771745205, + -0.009919602423906326, + 0.02189992181956768, + -0.023615052923560143, + -0.022360702976584435, + -0.010834765620529652, + -0.016997719183564186, + 0.01200591865926981, + -0.008895643055438995, + 0.001908723497763276, + 0.01757369562983513, + -0.02415263094007969, + -0.03061637282371521, + 0.022744687274098396, + 0.0009855604730546474, + 0.013452260755002499, + 0.014924201183021069, + 0.01845685951411724, + -0.019813604652881622, + 0.019839204847812653, + -0.0107707679271698, + -0.012780287303030491, + -0.012332305312156677, + -0.00903643760830164, + -0.04579656198620796, + 0.0048254067078232765, + 0.0015287386486306787, + 0.018508058041334152, + 0.022296706214547157, + -0.031409941613674164, + 0.005586976185441017, + 0.007090915460139513, + -0.04354385286569595, + -0.01364425290375948, + 0.007142113521695137, + -0.0008775648311711848, + -0.0004539818037301302, + 0.012095514684915543, + -0.00877404771745205, + 0.014706610701978207, + -0.006617334671318531, + 0.030001996085047722, + 0.005110194906592369, + -0.008236469700932503, + -0.0035454577300697565, + 0.007922882214188576, + 0.028722047805786133, + 0.007250909227877855, + -0.009721210226416588, + -0.01843126118183136, + 0.018610453233122826, + -0.00838366337120533, + 0.006546937394887209, + 0.020888762548565865, + -0.0009375623776577413, + 0.005062196869403124, + -0.012741888873279095, + 0.009721210226416588, + 0.007110114675015211, + 0.006012558937072754, + 0.002953481627628207, + -0.03916642814874649, + -0.004255829378962517, + 0.01748409867286682, + 0.010354784317314625, + -0.0266997292637825, + 0.005420582834631205, + -0.001229550689458847, + -0.009938801638782024, + 0.003967840690165758, + 0.010405982844531536, + -0.024971798062324524, + -0.007890883833169937, + -0.013413862325251102, + 0.026802124455571175, + 0.0252021886408329, + 0.002980680437758565, + 0.014834605157375336, + 0.011071556247770786, + -0.020696770399808884, + -0.01648573949933052, + -0.0022607094142585993, + -0.023026276379823685, + 0.01582016609609127, + 0.0203767828643322, + 0.0028062874916940928, + 0.02961801178753376, + -0.016728928312659264, + 0.026046955958008766, + -0.020863164216279984, + 0.005820566788315773, + -0.02104235626757145, + -0.01286348421126604, + 0.004361425060778856, + 0.011589935049414635, + -0.0017695290734991431, + 0.008313266560435295, + 0.007788487710058689, + -0.017676090821623802, + -0.005135794170200825, + -0.008434861898422241, + 0.0008383663953281939, + 0.0007943681557662785, + -0.013669852167367935, + 0.0002949881600216031, + 0.009190031327307224, + -0.018828045576810837, + -0.009375624358654022, + -0.01112915389239788, + 0.01798327825963497, + -0.027518896386027336, + 0.012537097558379173, + 0.18103593587875366, + -7.604694837937132e-05, + 0.006642933469265699, + 0.01103315781801939, + -0.019672811031341553, + -0.012383503839373589, + 0.012857084162533283, + 0.008575656451284885, + -0.022309506312012672, + 0.012069916352629662, + -0.021797526627779007, + 0.009945200756192207, + -0.001759929466061294, + 0.003673452651128173, + 0.024357423186302185, + -0.026725327596068382, + -0.02417823113501072, + 0.0025134992320090532, + 0.004255829378962517, + 0.022053515538573265, + 0.032101113349199295, + -0.025189390406012535, + 0.010661972686648369, + -0.00537898438051343, + 0.02109355479478836, + 0.012210709974169731, + 0.004243029747158289, + 0.004889403935521841, + 0.022911081090569496, + 0.014706610701978207, + 0.013401062227785587, + 0.0018047275952994823, + 0.007871684618294239, + -0.03192191943526268, + 0.0004727810446638614, + 0.01821366883814335, + 0.012530697509646416, + -0.011833125725388527, + 0.022629491984844208, + 0.031461138278245926, + -0.011186751537024975, + -0.018674451857805252, + -0.013887442648410797, + -0.008652453310787678, + -0.021464738994836807, + 0.012965880334377289, + -0.023320665583014488, + 0.0008927641902118921, + -0.003654253436252475, + 0.008108475245535374, + -0.014412222430109978, + -0.009567616507411003, + 0.019084034487605095, + 0.036017756909132004, + -0.009855604730546474, + 0.01631934568285942, + 0.013247468508780003, + -0.015218589454889297, + 0.020133592188358307, + -0.007666892372071743, + -0.02995079942047596, + 0.04577096551656723, + -0.019442420452833176, + 0.030488377436995506, + -0.0033342663664370775, + -0.0015191390411928296, + -0.015922561287879944, + 0.015013798139989376, + 0.007596495561301708, + -0.003971040714532137, + -0.01854645647108555, + -0.00614055385813117, + -0.021464738994836807, + 0.020159192383289337, + -0.010885963216423988, + -0.008473260328173637, + 0.011858724057674408, + -0.0023215068504214287, + 0.020197590813040733, + 0.015384983271360397, + -0.02664853073656559, + 0.00824286974966526, + 0.009177232161164284, + -0.021797526627779007, + 0.012396303005516529, + -0.03512179106473923, + 0.021669531241059303, + 0.007590095512568951, + 0.002155113499611616, + -0.018469659611582756, + 0.0061885518953204155, + 0.008095675148069859, + 0.002614295110106468, + -0.008588455617427826, + 0.025752566754817963, + -0.004991800058633089, + 0.0213751420378685, + 0.006636533886194229, + -0.007103715091943741, + 0.019493618980050087, + -0.0015967360232025385, + 0.04513099044561386, + 0.04505419358611107, + -0.020197590813040733, + -0.01236430462449789, + 0.011289147660136223, + -0.00682852603495121, + 0.00940762273967266, + 0.002188712125644088, + -0.005922962445765734, + -0.003964641131460667, + -0.03094915859401226, + 0.0005483779823407531, + -0.001531138550490141, + 0.005708571057766676, + 0.019160831347107887, + -0.005286187864840031, + -0.031102752313017845, + -0.002655893564224243, + -0.005615775007754564, + -0.02565017156302929, + 0.013093874789774418, + 0.019020037725567818, + -0.010156393051147461, + 0.025586174800992012, + -0.009823606349527836, + -0.051249146461486816, + 0.017202509567141533, + 0.0017855283804237843, + -0.001155153731815517, + 0.02795407921075821, + -0.025586174800992012, + -0.0061981515027582645, + 0.004585416056215763, + 0.0004511818988248706, + 0.023269467055797577, + 0.010892363265156746, + -0.03719530999660492, + 0.0067645288072526455, + 0.0015151392435654998, + -0.0006603735382668674, + -0.04047197848558426, + 0.003711851080879569, + -0.02189992181956768, + 0.010911562480032444, + -0.011999518610537052, + 0.0025086994282901287, + -0.0022767086047679186, + -0.022386303171515465, + -0.01086676400154829, + -0.0008567656623199582, + -0.004319826606661081, + 0.004604615271091461, + -0.011186751537024975, + 0.008985240012407303, + 0.0030590773094445467, + -0.008313266560435295, + -0.02861965261399746, + 0.006674932315945625, + 0.016690529882907867, + -0.004687812179327011, + 0.005820566788315773, + -0.006591735873371363, + -0.019480818882584572, + -0.010572375729680061, + 0.0036766526754945517, + -0.15973760187625885, + 0.00441262312233448, + 0.026392541825771332, + -0.02995079942047596, + 0.002081516431644559, + -0.0011503539280965924, + -0.021080754697322845, + -0.01957041583955288, + -0.010610774159431458, + 0.0041374340653419495, + 0.02964361198246479, + -0.0032110712490975857, + -0.018392862752079964, + -0.009170832112431526, + -0.01054677739739418, + 0.0009023637976497412, + -0.0041470336727797985, + 0.027518896386027336, + 0.022271106019616127, + 0.00595496129244566, + 0.014335425570607185, + -0.025906160473823547, + 0.011237949132919312, + -0.006841325666755438, + 0.007999679073691368, + -0.008364464156329632, + -0.01926322840154171, + 0.015218589454889297, + 0.00748769985511899, + -0.02256549522280693, + -0.0023471058811992407, + 0.006438141688704491, + 0.013682651333510876, + -0.013324265368282795, + 0.009017238393425941, + -0.012594695203006268, + 0.010597974993288517, + -0.011999518610537052, + -0.018162472173571587, + 0.031000357121229172, + 0.03911523148417473, + -0.01314507331699133, + -0.025522176176309586, + 0.014514617621898651, + -0.031768325716257095, + -0.0022079115733504295, + 0.01690812222659588, + 0.0069437213242053986, + 0.0009511618409305811, + -0.0022479097824543715, + 0.008223670534789562, + -0.009279628284275532, + -0.006098955404013395, + 0.015538576990365982, + -0.005590175744146109, + 0.03345785662531853, + 0.005154993385076523, + 0.019532017409801483, + -0.009196431376039982, + -0.0018527257489040494, + 0.0037950477562844753, + -0.018559256568551064, + -0.007526098284870386, + 0.017535297200083733, + 0.002718291012570262, + -0.012332305312156677, + 0.004863805137574673, + 0.007250909227877855, + -0.015871362760663033, + 0.002847885712981224, + -0.02767249010503292, + -0.01707451604306698, + 0.028235668316483498, + 0.0019295226084068418, + -0.011231550015509129, + 0.0036510536447167397, + -0.0061789522878825665, + 0.014258627779781818, + -0.004755009431391954, + 0.003459061263129115, + -0.03128194436430931, + 0.0657893642783165, + -0.02140074223279953, + -0.008806047029793262, + -0.02445981837809086, + 0.001080756657756865, + 0.007359704934060574, + -0.015039396472275257, + 0.009964399971067905, + 0.0032190708443522453, + 0.013977039605379105, + -0.030513975769281387, + -0.025829363614320755, + -0.0192120298743248, + 0.004396623466163874, + -0.005938961636275053, + 0.021311145275831223, + -0.005599775351583958, + 0.0021183150820434093, + -0.03624814748764038, + 0.013964240439236164, + -0.016370544210076332, + -0.02056877501308918, + -0.007218910381197929, + 0.0022271107882261276, + 0.02061997354030609, + -0.016229748725891113, + 0.012697090394794941, + 0.04996919631958008, + 0.004051037598401308, + -0.013861844316124916, + -0.00881244707852602, + 0.023947840556502342, + -0.014079435728490353, + -0.020555974915623665, + -0.004159833304584026, + 0.014373824000358582, + -0.01679292693734169, + -0.005426982417702675, + -0.017061715945601463, + 0.03361145034432411, + 0.012530697509646416, + -0.02634134329855442, + 0.006700531113892794, + 0.003012679284438491, + -0.019109632819890976, + -0.07633613795042038, + 0.009868403896689415, + 0.024421419948339462, + 0.019800806418061256, + 0.01940402202308178, + -0.007366104517132044, + -0.005820566788315773, + 0.0036702528595924377, + 0.010418782010674477, + 0.01995440013706684, + -0.04344145953655243, + -0.0313587412238121, + -0.006313346792012453, + -0.008716450072824955, + -0.0009599615004844964, + 0.0014967400347813964, + -0.013669852167367935, + -0.014962599612772465, + -0.02090156264603138, + 0.028542855754494667, + 0.011013958603143692, + -0.008882843889296055, + -0.02662293240427971, + 0.0013999438378959894, + -0.004956601187586784, + 0.011717930436134338, + -0.03366265073418617, + 0.01116115227341652, + 0.02223270758986473, + 0.012069916352629662, + 0.011775528080761433, + -0.014412222430109978, + 0.03156353533267975, + -0.021887121722102165, + 0.0024015037342906, + -0.012377103790640831, + -0.004851005505770445, + -0.02517659030854702, + 0.0030046794563531876, + -0.02253989689052105, + -0.020146392285823822, + -0.006790127605199814, + 0.05688091740012169, + -0.03187072277069092, + -0.005148593336343765, + -0.009062036871910095, + -0.014757808297872543, + -0.012133913114666939, + 0.0021567135117948055, + -0.027774885296821594, + -0.032433900982141495, + -0.026827724650502205, + -0.0003655853506643325, + 0.009362824261188507, + 0.013593055307865143, + 0.01779128611087799, + 0.006380544044077396, + -0.022936679422855377, + -0.009631614200770855, + 0.0014783407095819712, + -0.007263708859682083, + 0.018008878454566002, + -0.031742725521326065, + 0.032741088420152664, + -0.007225310429930687, + -0.013413862325251102, + -0.03524978831410408, + -0.015180191025137901, + -0.001106355688534677, + -0.01873844861984253, + -0.01893044076859951, + 0.002326306654140353, + 0.00440622353926301, + -0.0067645288072526455, + -0.017036117613315582, + -0.0027966878842562437, + -0.034430619329214096, + -0.009426821954548359, + 0.002212711377069354, + -0.030693169683218002, + -0.03258749470114708, + -0.031025955453515053, + 0.04106075316667557, + -0.012325906194746494, + 0.02425502799451351, + -0.0017327305395156145, + -0.0035742567852139473, + -0.020005598664283752, + 0.011916321702301502, + -0.019173631444573402, + 0.013746649026870728, + -0.011621934361755848, + 0.017612094059586525, + -0.01036758441478014, + -0.002031918615102768, + -0.006326146423816681, + 0.016063356772065163, + -0.001595136011019349, + -0.004073436837643385, + 5.249789319350384e-05, + -0.02456221543252468, + 7.764688780298457e-05, + -0.03499379754066467, + 0.017228109762072563, + 0.015039396472275257, + -0.003647853620350361, + -0.009279628284275532, + 0.011122753843665123, + 0.014348224736750126, + 0.009836405515670776, + -5.954761218163185e-05, + -0.00023739048629067838, + -0.013132273219525814, + 0.019148031249642372, + 0.005346985533833504, + -0.009650813415646553, + 0.0005843765684403479, + -0.005999759305268526, + 0.006578936241567135, + 0.0115195382386446, + 0.019032835960388184, + 0.004220630973577499, + -0.010258788242936134, + 0.012901882641017437, + -0.016498537734150887, + 0.008998039178550243, + -0.021221548318862915, + 0.00451821880415082, + -0.017996078357100487, + -0.015205790288746357, + -0.00807647593319416, + -0.01765049248933792, + 0.0001306947524426505, + 0.0033982638269662857, + -0.01690812222659588, + 0.008985240012407303, + -0.005618974566459656, + -0.02612375281751156, + 0.022616693750023842, + 0.0316915288567543, + 0.012869884259998798, + 0.05467940866947174, + -0.031742725521326065, + -0.035761766135692596, + 0.009426821954548359, + -0.028056474402546883, + -0.0063997432589530945, + -0.009529218077659607, + 0.009862004779279232, + 0.002427102765068412, + 0.01665213145315647, + -0.020056795328855515, + 0.03199871629476547, + 0.009989999234676361, + 0.005558176897466183, + -0.008607654832303524, + 0.010738769546151161, + -0.03652973473072052, + 0.01257549598813057, + 0.020107993856072426, + -0.0030654771253466606, + -0.030744366347789764, + 0.026776526123285294, + 0.001566337188705802, + 0.013785047456622124, + 0.0037950477562844753, + 0.04249429702758789, + -0.03926882520318031, + -0.028542855754494667, + 0.004627014510333538, + 0.021106353029608727, + -0.029413221403956413, + -0.027262907475233078, + -0.006719730328768492, + 0.010130793787539005, + 0.01646013930439949, + -0.009113234467804432, + -0.0011911522597074509, + 0.03926882520318031, + -0.013401062227785587, + -0.0008719650213606656, + 0.031102752313017845, + 0.0010295587126165628, + 0.013567456044256687, + -0.008025278337299824, + -0.006649333517998457, + 0.03722090646624565, + 0.005638173781335354, + -0.015218589454889297, + -0.005599775351583958, + -0.013529057614505291, + 0.015512977726757526, + 0.015231389552354813, + 0.0012535497080534697, + 0.00027058913838118315, + 0.0026542935520410538, + 0.027723688632249832, + -0.00016339344438165426, + 0.010181991383433342, + -0.012485899031162262, + 0.014066635631024837, + 0.030437178909778595, + -0.00403823796659708, + 0.0020991158671677113, + 0.0002609895309433341, + -0.017330504953861237, + -0.01646013930439949, + 0.010431582108139992, + 0.0016031357226893306, + -0.0387568473815918, + -0.015807365998625755, + 0.032689888030290604, + -0.026904521510004997, + 0.0313587412238121, + 0.004895803518593311, + -0.008902043104171753, + -0.01497539971023798, + 0.04336466267704964, + -0.006572536658495665, + 0.001251949812285602, + -0.027928480878472328, + -0.005138993728905916, + 0.031077153980731964, + 0.004940601997077465, + 0.01171153038740158, + 0.011570735834538937, + 0.00798047985881567, + 0.02087596245110035, + -0.011404342949390411, + -0.01333706546574831, + 0.007218910381197929, + -0.0029486818239092827, + 0.014041037298738956, + -0.006015758961439133, + -0.026162151247262955, + -0.0017007318092510104, + -0.01250509824603796, + -0.0017871283926069736, + 0.01429702714085579, + 0.01547457929700613, + 0.03125634789466858, + 0.08847004920244217, + 0.025803765282034874, + 0.0005619774456135929, + -0.004342225845903158, + -0.009746809490025043, + 0.007071716245263815, + -0.002740690018981695, + 0.0008215670823119581, + 0.0004979800432920456, + -0.04866364970803261, + -0.0015031397342681885, + -0.014565816149115562, + 0.027186110615730286, + -0.031742725521326065, + -0.026546135544776917, + 0.017688890919089317, + -0.006790127605199814, + 0.021503137424588203, + -0.008505258709192276, + 0.019583214074373245, + 0.03353465348482132, + -0.008505258709192276, + 0.02629014663398266, + 0.0203767828643322, + -0.045284584164619446, + -0.01601215824484825, + 0.0040958356112241745, + -0.014463420026004314, + 0.014834605157375336, + 0.01462981291115284, + -0.009375624358654022, + 0.0022015117574483156, + -0.0673765018582344, + -0.013093874789774418, + 0.031384341418743134, + -0.008870044723153114, + -0.01978800632059574, + -0.018111273646354675, + 0.0228726826608181, + 0.012626693584024906, + 0.013426661491394043, + 0.018917640671133995, + -0.037374500185251236, + -0.04602695256471634, + -0.0011439541121944785, + -0.010399582795798779, + -0.015397782437503338, + -0.029694808647036552, + -0.044567812234163284 + ], + "metadata": { + "source": "Kreye_Marieke_BA_241_V2.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 17, + "has_images": true, + "image_count": 98, + "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", + "links": [], + "last_modified": "2025-05-05T23:00:23", + "_known_field_names": "frozenset({'is_continuation', 'sent_to', 'header_footer_type', 'email_message_id', 'filename', 'languages', 'detection_class_prob', 'sent_from', 'link_texts', 'cc_recipient', 'subject', 'image_mime_type', 'image_path', 'filetype', 'page_number', 'last_modified', 'signature', 'detection_origin', 'text_as_html', 'attached_to_filename', 'bcc_recipient', 'data_source', 'link_start_indexes', 'category_depth', 'emphasized_text_tags', 'parent_id', 'orig_elements', 'page_name', 'coordinates', 'url', 'link_urls', 'file_directory', 'links', 'table_as_cells', 'emphasized_text_contents', 'key_value_pairs', 'image_base64'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "Kreye_Marieke_BA_241_V2.pdf", + "detection_class_prob": 0.3422867953777313, + "parent_id": "e02392183bc6851689602ad4b9f6039f", + "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", + "id": "ce00eae5-7e07-454f-9e4f-f79ac36f92f4", + "processing_timestamp": "2025-05-05T23:15:46.977945", + "chunk_number": 8, + "total_chunks": 56, + "chunking_strategy": "hybrid", + "word_count": 515 + } +} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000009.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000009.json new file mode 100644 index 0000000000000000000000000000000000000000..2f443348c1f8292ac0f83d9097c2939df0c6d30a --- /dev/null +++ b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000009.json @@ -0,0 +1,1570 @@ +{ + "id": "61a115b2-0ff7-441a-f6d9-eb3d00000009", + "content": "\u00dcber den Blattfl\u00e4chenindex (Leaf Area Index, LAI), der das Verh\u00e4ltnis der Blattfl\u00e4che pro Bodenfl\u00e4che angibt und somit den \u00dcberdeckungsgrad der Baumkrone misst, kann der Verschattungseffekt bestimmt werden. Je h\u00f6her der \u00dcberdeckungsgrad des Baums, desto st\u00e4rker wird die eintreffende solare Strahlung abgeschw\u00e4cht und desto sp\u00fcrbarer ist der Schatten. (vgl. Feldmann et al. 2023, S. 20) Folglich ist der LAI bei einer Sonneneinstrahlung von 90\u00b0 am geringsten. Eine Zunahme des LAI um eine Einheit kann an hei\u00dfen Sommertagen eine Abnahme der Oberfl\u00e4chentemperatur von 1,2 Kelvin bewirken (vgl. Mehra 2021, S. 122). Die Strahlungsintensit\u00e4t nimmt durch die Laubschichten exponentiell ab (Feldmann et al. 2023, S. 20). Bei vollbelaubter Baumkrone k\u00f6nnen B\u00e4ume bis zu 90 % der Strahlung absorbieren (vgl. Kampusch 2018, S. 27). Ein gro\u00dfer Teil dieser absorbierten Strahlung wird f\u00fcr die Photosynthese genutzt, w\u00e4hrend nur ein kleiner Teil wieder an die Umgebung abgegeben wird. Durch den Verschattungseffekt, abh\u00e4ngig von Baumart und Belaubungsdichte, kann die Lufttemperatur lokal unter B\u00e4umen um bis zu 10\u201312 \u00b0C sinken (vgl. Kampusch 2018, S. 27; vgl. Feldmann et al. 2023, S. 21). Es ist zu beachten, dass der tats\u00e4chliche K\u00fchlungseffekt nicht nur durch den Baum selbst erzielt wird. Die tats\u00e4chliche Temperatur der Bodenfl\u00e4che im Baumschatten wird zus\u00e4tzlich von der Beschaffenheit und F\u00e4rbung des Bodenmaterials und damit von seinem Reflexions- bzw. Absorptionsverm\u00f6gen beeinflusst. Durch die Verwendung geeigneter Baumaterialien und die Gestaltung der Umgebung der Vegetation kann der K\u00fchlungseffekt weiter gesteigert werden. (Feldmann et al. 2023, S. 21)\nEin weiterer Beitrag zur K\u00fchlung des Stadtklimas ist die Verdunstung. Die Verdunstung beschreibt den physikalischen Prozess, bei welchem Wasser von dem fl\u00fcssigen in den gasf\u00f6rmigen Aggregatzustand \u00fcbergeht. Dieser Phasen\u00fcbergang erfordert Energie, die der Umgebung entzogen wird. Diese Energieentnahme f\u00fchrt zu einer Temperaturabsenkung, die auch als \"Verdunstungsk\u00e4lte\" bezeichnet wird.", + "embedding": [ + 0.021320512518286705, + 0.003650291357189417, + 0.034950822591781616, + -0.028333669528365135, + -0.013413144275546074, + 0.02199755609035492, + -0.02424585446715355, + -0.00939558818936348, + -0.011924924328923225, + -0.014154060743749142, + 0.008578024804592133, + 0.008756866678595543, + -0.0147161353379488, + 0.03443984314799309, + 0.009178423322737217, + 0.01483110524713993, + 0.03911528363823891, + -0.005218351725488901, + 0.015840284526348114, + 0.005630326922982931, + -0.01734766736626625, + 0.015559247694909573, + -0.0066810231655836105, + 0.017271019518375397, + -0.01801193691790104, + -0.001970454817637801, + 0.025663815438747406, + -0.026749642565846443, + -0.002438317984342575, + 0.007077030371874571, + 0.03801668435335159, + -0.010538899339735508, + -0.017935289070010185, + -0.002973246853798628, + -0.009274231269955635, + -0.0020710532553493977, + -0.005943300202488899, + -0.02097560279071331, + 0.01770535111427307, + -0.00653411727398634, + 0.01411573775112629, + -0.0052726431749761105, + -0.009376426227390766, + -0.005096994806081057, + 0.007632717955857515, + 0.012640291824936867, + 0.008175631053745747, + -6.496991409221664e-05, + -0.015316532924771309, + 0.03226819261908531, + 0.027669399976730347, + 0.021473804488778114, + -0.01101155299693346, + -0.01483110524713993, + -0.01224428415298462, + 0.007089804857969284, + -0.005550486966967583, + 0.003541708691045642, + 0.009203971363604069, + -0.008744092658162117, + -0.02289176546037197, + -0.0010546883568167686, + -0.010641094297170639, + 0.01765425316989422, + -0.027694949880242348, + -0.007632717955857515, + -0.0125700319185853, + 0.01117761991918087, + -0.0005952082574367523, + -0.012301769107580185, + 0.03694363310933113, + 0.05447014048695564, + 0.019723709672689438, + -0.008009563200175762, + -0.011350074782967567, + -0.008098984137177467, + 0.0047201490961015224, + 0.014154060743749142, + -0.007632717955857515, + -0.004046298563480377, + 0.010794387198984623, + -0.009695786982774734, + -0.02095005288720131, + 0.04261547699570656, + 0.021767616271972656, + 0.0024638669565320015, + -0.006795993074774742, + 0.02910013496875763, + -0.018803950399160385, + 0.005793200805783272, + -0.001898598624393344, + 0.005448291543871164, + 0.018918920308351517, + 0.023428291082382202, + -0.011037101969122887, + 0.001812371308915317, + 0.016261840239167213, + 0.0203496553003788, + 0.005780426319688559, + -0.03086300566792488, + -0.008865449577569962, + -0.006083819083869457, + -0.02397759258747101, + -0.0031089752446860075, + -0.037531256675720215, + 0.0014842282980680466, + 0.0009700577356852591, + 0.02945781871676445, + 0.015559247694909573, + -0.030224284157156944, + -0.02148658037185669, + 0.038169976323843, + -0.0012391189811751246, + -0.02669854462146759, + 0.01741153933107853, + -0.03834881633520126, + 0.022010330110788345, + -0.005576035473495722, + -0.021077798679471016, + 0.00035828264662995934, + 0.035078566521406174, + 0.009389201179146767, + -0.006923737470060587, + -0.02238078974187374, + 0.015661442652344704, + 0.007664653938263655, + 0.013987992890179157, + -0.018088582903146744, + -0.032293740659952164, + -0.009638302028179169, + 0.0022211528848856688, + 0.016261840239167213, + -0.0025309326592832804, + 0.0010946083348244429, + -0.011637499555945396, + 0.01609577238559723, + -0.014102962799370289, + -0.004646696615964174, + -0.01767980121076107, + -0.022942863404750824, + 0.0003834322851616889, + -0.004461467266082764, + -0.039268575608730316, + -0.03175721690058708, + 0.002307380083948374, + 0.016261840239167213, + 0.0060742381028831005, + 0.008686607703566551, + -0.00264430558308959, + -0.029049038887023926, + -0.013540888205170631, + -0.021588774397969246, + 0.014371225610375404, + -0.012103766202926636, + 0.015559247694909573, + 0.004723343066871166, + 0.0015337291406467557, + 0.00949778314679861, + -0.008028725162148476, + -0.003346898825839162, + 0.04174681380391121, + -0.009676625020802021, + -0.0011888197623193264, + 0.0016526909312233329, + -0.0025325294118374586, + 0.009759658947587013, + -0.009759658947587013, + -0.005148092284798622, + 0.007913755252957344, + -0.012384803034365177, + 0.009382814168930054, + 0.03574283421039581, + -0.036151617765426636, + 0.03862985596060753, + -0.01196963433176279, + 0.015009947121143341, + 0.002917358884587884, + 0.01752650924026966, + 0.0036279361229389906, + -0.037505704909563065, + -0.033877771347761154, + 0.0093189412727952, + 0.01225705910474062, + 0.0006514955894090235, + -0.03188496083021164, + 0.017028305679559708, + 0.014026316814124584, + 0.02220194786787033, + -0.009957662783563137, + -0.01612132228910923, + -0.007568845525383949, + 0.01647900603711605, + -0.00016017929010558873, + -0.02091173082590103, + -0.6389255523681641, + 0.015444277785718441, + -0.0008303375216200948, + -0.0022866218350827694, + 0.0006007970659993589, + 0.014026316814124584, + 0.04113364219665527, + 0.007409165147691965, + -0.00041277354466728866, + 0.019762031733989716, + 0.0077285259030759335, + -0.013528114184737206, + -0.0006303379195742309, + 0.005627133417874575, + -0.002631531096994877, + -0.0168750137090683, + -0.01140117272734642, + 0.004174042958766222, + 0.02244466170668602, + -0.004512564744800329, + -0.023415517061948776, + 0.022661825641989708, + -0.0018075808184221387, + -0.0005692602135241032, + 0.008846287615597248, + 0.0255871694535017, + 0.005279030185192823, + -0.0354873463511467, + -0.00020578797557391226, + 0.0018235489260405302, + -4.266457835910842e-05, + 0.027132874354720116, + 0.002740113763138652, + 0.031629472970962524, + 0.05303940549492836, + 0.006115755066275597, + -0.00029880175134167075, + -0.001351693645119667, + 0.004646696615964174, + 0.00467543862760067, + -0.026647446677088737, + -0.02088618092238903, + 0.009063453413546085, + -0.011350074782967567, + -0.01532930787652731, + -0.00849499087780714, + 0.050893303006887436, + -0.023594358935952187, + -0.001467461814172566, + -0.015418728813529015, + 0.034567587077617645, + 0.0029540853574872017, + 0.005671843886375427, + -0.004704181104898453, + 0.008456667885184288, + 0.020183589309453964, + 0.021614324301481247, + -0.019366025924682617, + -0.014843879267573357, + 0.01083271112293005, + -0.011912149377167225, + 0.0019241474801674485, + -0.0012510950909927487, + -0.007083417382091284, + -0.025957627221941948, + 0.046345606446266174, + -0.024373598396778107, + -0.0010562851093709469, + 0.022738473489880562, + -0.022035880014300346, + -0.001350895268842578, + 0.00839279592037201, + 0.008213954046368599, + -0.007588007487356663, + 0.003161669708788395, + -0.008258664049208164, + 0.04404621198773384, + -0.004311367869377136, + -0.012097378261387348, + 0.026826288551092148, + -0.006591602228581905, + -0.016593975946307182, + -0.02055404707789421, + -0.00264430558308959, + 0.012934103608131409, + -0.018510138615965843, + 0.0025660621467977762, + -0.0032271386589854956, + -0.013770828023552895, + -0.005579229444265366, + 0.025523297488689423, + 0.031782764941453934, + -0.02436082437634468, + -0.017756447196006775, + -0.016440682113170624, + 0.037710096687078476, + -0.03219154477119446, + 0.007077030371874571, + 0.0033820285461843014, + -0.03566619008779526, + -0.013132106512784958, + 0.02313447929918766, + 0.0050874138250947, + 0.0028343251906335354, + 0.027337266132235527, + 0.004793602041900158, + -0.004787215031683445, + -0.008890998549759388, + 0.04614121466875076, + -0.0338011234998703, + -0.01678559184074402, + -0.007160064298659563, + -0.008731317706406116, + 0.005221545230597258, + -0.0016287389444187284, + -0.019966423511505127, + 0.04302425682544708, + -0.002505383687093854, + 0.010679417289793491, + -0.0021508934441953897, + 0.017960838973522186, + -0.00731974421069026, + 0.02088618092238903, + -0.03377557545900345, + -0.0006391203496605158, + 0.016977207735180855, + 0.007996789179742336, + 0.001271853456273675, + -0.013489791192114353, + -0.008143695071339607, + 0.0021189574617892504, + 0.030096540227532387, + 0.03050532191991806, + -0.012978813610970974, + 0.03730131685733795, + -0.002534126164391637, + 0.011490593664348125, + -0.011694984510540962, + 0.000803191855084151, + -0.023479389026761055, + -0.02756720408797264, + -0.005180028732866049, + 0.004180429968982935, + -0.017935289070010185, + -0.02091173082590103, + -0.023121705278754234, + -0.007683815434575081, + 0.018382394686341286, + -0.017871417105197906, + 0.015904156491160393, + -0.030633065849542618, + -0.005981623660773039, + -0.011484206654131413, + 0.013502565212547779, + 0.01099877804517746, + 0.012889392673969269, + -0.004375239834189415, + -0.01222512312233448, + -0.0199280995875597, + -0.014677812345325947, + 0.007683815434575081, + 0.020873406901955605, + -0.022878991439938545, + -0.01888059638440609, + -0.02912568487226963, + -0.01888059638440609, + 0.019966423511505127, + 0.015163240022957325, + -0.02723507024347782, + -0.04215559735894203, + 0.002095005474984646, + -0.016593975946307182, + 0.012327318079769611, + 0.0035576769150793552, + -0.0048319255001842976, + -0.022189171984791756, + -0.01594248041510582, + -0.00879519060254097, + -0.000465068849734962, + -0.01411573775112629, + 0.02616201899945736, + 0.007817947305738926, + -0.001252691843546927, + -0.013821925967931747, + 0.01071135327219963, + 0.020490175113081932, + 0.01741153933107853, + 0.024258628487586975, + -0.005576035473495722, + 0.014422323554754257, + 0.018855048343539238, + 0.04276876896619797, + -0.007875432260334492, + 0.0029524886049330235, + -0.014933300204575062, + -0.008335310965776443, + 0.004544501192867756, + 0.007683815434575081, + -0.012787197716534138, + 0.005384419113397598, + 0.010308959521353245, + 0.01890614628791809, + 0.04833841696381569, + 0.00326705863699317, + 0.015840284526348114, + -0.028027083724737167, + 0.014345676638185978, + -0.0017181598814204335, + 0.019544867798686028, + 0.019608739763498306, + 0.034235455095767975, + -0.002513367682695389, + -0.03298356011509895, + -0.018752852454781532, + -0.008801577612757683, + 0.047597501426935196, + -0.012084604240953922, + -0.008463054895401001, + 0.011554465629160404, + -0.02741391211748123, + 0.005560067482292652, + 0.001467461814172566, + 0.014141286723315716, + -0.02424585446715355, + 0.001195207005366683, + 0.006019946653395891, + -0.004170848987996578, + 0.007421939633786678, + -0.00849499087780714, + -0.015533698722720146, + -0.0027385170105844736, + -0.021256640553474426, + -0.0260087251663208, + 0.022406337782740593, + -0.0008335310849361122, + 0.014243481680750847, + 0.013655858114361763, + -0.023211127147078514, + 0.047904085367918015, + 0.013873022980988026, + 0.003956877626478672, + 0.03584503009915352, + -0.007900980301201344, + -0.02634086087346077, + 0.05030567944049835, + 0.01939157396554947, + 0.017015531659126282, + 0.022495759651064873, + -0.009299780242145061, + 0.0048383125104010105, + -0.0106091583147645, + 0.009382814168930054, + 0.009338103234767914, + -0.000474649656098336, + 0.010289797559380531, + -0.008629122748970985, + 0.023990366607904434, + 0.0070450943894684315, + 0.012953264638781548, + 0.023147255182266235, + 0.013170430436730385, + 0.0004838312743231654, + 0.008418344892561436, + -0.00892932154238224, + -0.003979232627898455, + -0.0031185559928417206, + -0.008667445741593838, + -0.016159644350409508, + -0.013809151016175747, + -0.010328121483325958, + 0.016427908092737198, + -0.0006415155366994441, + -0.009242295287549496, + -0.013061847537755966, + 0.014230707660317421, + -0.0006542899645864964, + 0.0029812310822308064, + 0.020745662972331047, + 0.029892150312662125, + 0.010762451216578484, + -0.007390003651380539, + -0.024386374279856682, + -0.014613940380513668, + 0.030939653515815735, + -0.014486195519566536, + -0.010200376622378826, + 0.0006307371659204364, + 0.003474642988294363, + -0.012250672094523907, + -0.0033341243397444487, + -0.007830721326172352, + -0.011343687772750854, + -0.011963247321546078, + -0.007275033742189407, + 0.0008155670948326588, + -0.01756483130156994, + -0.0003510970273055136, + -0.007230323273688555, + 0.01567421667277813, + 0.005943300202488899, + 0.004748891573399305, + 0.006636312697082758, + -0.009197584353387356, + -0.028308121487498283, + 0.03262587636709213, + 0.01532930787652731, + -0.003298994852229953, + 0.00446466077119112, + -0.000247304851654917, + -0.005119349807500839, + -0.02148658037185669, + -0.019378799945116043, + -0.004803183022886515, + 0.005988010670989752, + -0.00014940087567083538, + 0.005317353643476963, + 0.018918920308351517, + -0.01285745669156313, + 0.04052047058939934, + 0.0023600745480507612, + -0.02255963161587715, + 0.002095005474984646, + 0.005620745941996574, + 0.00896125752478838, + 0.032319288700819016, + 0.005774039309471846, + -0.007077030371874571, + 0.021920910105109215, + 0.005227932706475258, + -0.021742068231105804, + -0.0015999964671209455, + -0.04399511218070984, + 0.012774422764778137, + 0.0077987853437662125, + -0.023249449208378792, + -0.0023345258086919785, + 0.006099787075072527, + -0.008341697975993156, + 0.013719730079174042, + 0.010468639433383942, + 0.01158001460134983, + -0.0381188802421093, + -0.010372831486165524, + 0.009740497916936874, + -0.024220306426286697, + -0.006211563013494015, + 0.0010459058685228229, + 0.056054167449474335, + 0.004343303851783276, + 0.01411573775112629, + 0.02649415284395218, + 0.006265854462981224, + 0.01303629856556654, + -0.012665840797126293, + -0.005432323552668095, + 0.011164845898747444, + -0.0013125719269737601, + 0.028895745053887367, + -0.009267844259738922, + -0.002997199073433876, + 0.019314927980303764, + -0.03653484955430031, + 0.01158001460134983, + -0.016312938183546066, + 0.03134843334555626, + 0.02894684299826622, + -0.005314160138368607, + -0.01057722233235836, + 0.017271019518375397, + -0.019161634147167206, + 0.0009173632715828717, + 0.019404347985982895, + -0.017603155225515366, + -0.004867054987698793, + 0.01481833029538393, + -0.013796376995742321, + -0.009242295287549496, + -0.009861854836344719, + -0.0003145701775792986, + -0.006396792363375425, + 0.0006778428214602172, + 0.006125336047261953, + 0.01578918658196926, + -0.018063034862279892, + -0.0390130877494812, + -0.018944470211863518, + 0.011675822548568249, + -0.0125700319185853, + -0.01156723964959383, + -0.02103947475552559, + 0.015137691050767899, + 0.006233918480575085, + -0.0007504973327741027, + -0.001429936964996159, + 0.03845101222395897, + 6.666652188869193e-05, + -0.01561034470796585, + -0.009446686133742332, + 0.020183589309453964, + -0.00489899143576622, + 0.011541691608726978, + -0.018407942727208138, + -0.0009181616478599608, + -0.013643084093928337, + -0.014869428239762783, + -0.017360441386699677, + 0.00010124728578375652, + -0.0312206894159317, + -0.001418759347870946, + 0.007230323273688555, + -0.004164461977779865, + -0.013119332492351532, + -0.006706572137773037, + 0.015457051806151867, + -0.020477399230003357, + 0.008590799756348133, + 0.010928519070148468, + -0.004678632598370314, + -0.013387595303356647, + 0.018650658428668976, + 0.018114132806658745, + 0.006326532922685146, + 0.015150466002523899, + -0.038195524364709854, + 0.03119514137506485, + 0.005889009218662977, + 0.011286202818155289, + 0.009389201179146767, + 0.0029125683940947056, + -0.004621147643774748, + -0.011701371520757675, + 0.001361274509690702, + 0.007051481399685144, + -0.007677428424358368, + 0.021090572699904442, + -0.012097378261387348, + 0.029049038887023926, + -0.009235908277332783, + -0.002075843745842576, + 0.013528114184737206, + 0.0032510906457901, + -0.0069684479385614395, + 0.027848241850733757, + 0.004017556086182594, + -0.014511744491755962, + -0.042385537177324295, + 0.032651424407958984, + 0.00978520791977644, + 0.015546472743153572, + 0.005818749777972698, + -0.003525740699842572, + 0.010091794654726982, + -0.024233080446720123, + 0.0009572833077982068, + 0.00836085993796587, + -0.005569648463279009, + 0.025906529277563095, + -0.0073580676689744, + -0.03119514137506485, + -0.018075808882713318, + 0.009970436803996563, + 0.01663229800760746, + -0.04629451036453247, + 0.0046658581122756, + -0.028972391039133072, + 0.023006735369563103, + 0.004787215031683445, + 0.011605563573539257, + 0.0050938013009727, + -0.022074203938245773, + -0.004576437175273895, + 0.020068619400262833, + 0.020158039405941963, + 0.023568810895085335, + -0.03781229257583618, + -0.02945781871676445, + -0.012461449950933456, + 0.0012183606158941984, + -0.014562842436134815, + -0.025076191872358322, + 0.017807545140385628, + -0.016683395951986313, + 0.03277916833758354, + -0.014958849176764488, + 0.02115444466471672, + -0.006467051804065704, + 0.01828019879758358, + -0.007300582714378834, + -0.01756483130156994, + -0.0025325294118374586, + 0.0010395186254754663, + -0.0027305330149829388, + -0.025280583649873734, + 0.0142818046733737, + 0.015955254435539246, + 0.0033916092943400145, + 0.03050532191991806, + 0.006917349994182587, + 0.02996879629790783, + 0.03814442828297615, + -0.01138839777559042, + -0.027081776410341263, + -0.014843879267573357, + -0.012934103608131409, + 0.0006530924001708627, + 0.011663048528134823, + -0.013553663156926632, + 0.019519317895174026, + -0.0036822273395955563, + 0.0006063858745619655, + 0.04644780233502388, + -0.0077987853437662125, + -0.011950472369790077, + -0.028716903179883957, + 0.00346506224013865, + -0.026928484439849854, + 0.022751247510313988, + 0.012940490618348122, + -0.01122233085334301, + -0.008015950210392475, + -0.001871453016065061, + 0.0005572842201218009, + -0.022789571434259415, + 0.0260087251663208, + -0.004889410454779863, + -0.004199591465294361, + -0.006687410641461611, + -0.022495759651064873, + -0.007185612805187702, + -0.0022259431425482035, + 0.03329014778137207, + -0.003289413871243596, + 0.0011648676590994, + -0.0019640675745904446, + -0.010347282513976097, + -0.016734493896365166, + -0.02095005288720131, + -0.0320638008415699, + 0.026800738647580147, + 0.0018331296741962433, + -0.002133328700438142, + 0.03947296738624573, + 0.004560469184070826, + 0.0255871694535017, + 0.018331296741962433, + 0.013144881464540958, + 0.03280472010374069, + -0.009414750151336193, + 0.03466978296637535, + 0.009599979035556316, + -0.017424313351511955, + -0.021077798679471016, + -0.03934522345662117, + 0.0013389191590249538, + -0.01732211746275425, + 0.005825136788189411, + 0.0029508916195482016, + -0.008169243112206459, + -0.015482600778341293, + 0.016108548268675804, + 0.01872730441391468, + 0.00960636604577303, + 0.008629122748970985, + 0.03237038850784302, + 0.01830574870109558, + 0.004499790724366903, + -0.019634287804365158, + -0.008916547521948814, + -0.005215158220380545, + -0.019532091915607452, + 0.009912951849400997, + -0.014486195519566536, + -0.00918481033295393, + -0.008341697975993156, + 0.005643101409077644, + 0.04524700716137886, + 0.007083417382091284, + 0.006987609434872866, + -0.008903772570192814, + -0.001107382820919156, + -0.004461467266082764, + -0.020669016987085342, + 0.0035225471947342157, + 0.01081993617117405, + -0.010340895503759384, + 0.04062266647815704, + -0.017028305679559708, + -0.01651732809841633, + -0.005975236184895039, + -0.004260269924998283, + 0.005371645092964172, + 0.008635509759187698, + -0.012333705089986324, + 0.013477016240358353, + -0.013719730079174042, + 0.006687410641461611, + -0.012218736112117767, + 0.003691808320581913, + 0.01716882549226284, + 0.007607168983668089, + 0.0011688596569001675, + 0.0008510959451086819, + 0.02229136787354946, + -0.003120152745395899, + 0.016249066218733788, + 0.005486614536494017, + -0.023785974830389023, + 0.005703779868781567, + -0.024284178391098976, + -0.011382010765373707, + 0.00018453053780831397, + -0.021026700735092163, + -0.001546503626741469, + -0.021052248775959015, + 0.00469779409468174, + 0.008175631053745747, + -0.02008139342069626, + 0.01941712386906147, + 0.005681424867361784, + -0.020720114931464195, + -0.03237038850784302, + 0.021869812160730362, + -0.036458201706409454, + 0.035436250269412994, + 0.04435279592871666, + -0.0039025861769914627, + 0.004435918293893337, + 0.004531726706773043, + 0.003017957555130124, + -0.01941712386906147, + 0.033392343670129776, + -0.007013158407062292, + -0.02705622836947441, + -0.012263446114957333, + 0.008265051990747452, + 0.0186634324491024, + -0.01627461425960064, + -0.02304505929350853, + 0.009631915017962456, + -2.2118214474176057e-05, + -0.0034810302313417196, + -0.00813730712980032, + -0.01723269745707512, + 0.018765628337860107, + -0.013285400345921516, + -0.0069684479385614395, + 0.03773564472794533, + -0.014792782254517078, + 0.010232312604784966, + -0.0019640675745904446, + 0.02496122196316719, + -0.021090572699904442, + -0.02487180195748806, + -0.014984398148953915, + -0.01930215395987034, + 0.014562842436134815, + 0.01000876072794199, + -0.004410369787365198, + -0.004241108428686857, + -0.013936895877122879, + -0.017360441386699677, + 0.025855431333184242, + -0.01225705910474062, + 0.019353250041604042, + 0.017807545140385628, + 0.017424313351511955, + -0.025152839720249176, + 0.024463020265102386, + 0.00965107697993517, + -0.018893372267484665, + 0.011286202818155289, + -0.013400369323790073, + -0.0554920919239521, + -0.004001588094979525, + 0.0017644672188907862, + 0.024041464552283287, + 0.03382667154073715, + -0.026289762929081917, + -0.0037333250511437654, + -0.011892987415194511, + -0.050842203199863434, + -0.005068252328783274, + 0.013157655484974384, + 0.006087012588977814, + -0.011548078618943691, + 0.014358451589941978, + -0.01243590097874403, + 0.017718125134706497, + 0.00609020609408617, + 0.029764406383037567, + -0.016913335770368576, + -0.018254650756716728, + -0.009791594929993153, + 0.012442287988960743, + 0.028691353276371956, + -0.013285400345921516, + -0.013566437177360058, + -0.019583189859986305, + 0.004739311058074236, + -0.02420753240585327, + -0.005470646545290947, + 0.020515723153948784, + -0.005748490337282419, + -0.005029928870499134, + 0.0017548863543197513, + 0.019902551546692848, + 0.006783218588680029, + 0.01926383003592491, + -0.008878223598003387, + -0.041849009692668915, + 0.012090991251170635, + 0.01605745032429695, + 0.014205158688127995, + -0.05153202265501022, + 0.0008303375216200948, + 0.004573243670165539, + -0.0028742451686412096, + 0.002176442416384816, + 0.019736483693122864, + -0.034056611359119415, + -0.0097532719373703, + -0.01306823454797268, + 0.03364783152937889, + 0.010034309700131416, + -0.004755279049277306, + 0.009299780242145061, + -0.010743290185928345, + -0.02892129309475422, + -0.01119039487093687, + -0.008054274134337902, + -0.024194756522774696, + 0.009938500821590424, + 0.019097762182354927, + 0.0028039859607815742, + 0.01899556629359722, + -0.02409256249666214, + 0.013566437177360058, + -0.015176014974713326, + 0.01981312967836857, + -0.018982792273163795, + -0.02667299471795559, + -0.016555652022361755, + 0.03604942187666893, + 0.021550452336668968, + -0.011426721699535847, + -0.0023057833313941956, + 0.0028439059387892485, + -0.015176014974713326, + -0.008686607703566551, + 0.008839900605380535, + 0.01071135327219963, + -0.02616201899945736, + 0.008622735738754272, + 0.011056262999773026, + -0.01279358472675085, + 0.001047502737492323, + -0.008067048154771328, + 0.005531325004994869, + -0.02723507024347782, + 0.008456667885184288, + 0.18998122215270996, + -0.016926109790802002, + -0.011094585992395878, + 0.00978520791977644, + -0.025306131690740585, + -0.01759038120508194, + 0.025663815438747406, + 0.004550888203084469, + -0.014754458330571651, + 0.018688980489969254, + -0.012384803034365177, + -0.009900177828967571, + -0.005818749777972698, + 0.004601985681802034, + 0.013694181106984615, + -0.007913755252957344, + -0.005065058823674917, + 0.009382814168930054, + 0.007811559829860926, + 0.02805263362824917, + 0.03221709653735161, + -0.02810373157262802, + -0.0024894156958907843, + 0.005758071318268776, + 0.045298103243112564, + 0.0040303305722773075, + 0.012110153213143349, + 0.0036758403293788433, + 0.026724092662334442, + 0.0072622597217559814, + 0.004592405166476965, + 0.011171232908964157, + -0.01794806495308876, + -0.026851836591959, + -0.014064639806747437, + -0.00949778314679861, + 0.010851872153580189, + -0.016926109790802002, + 0.03254922851920128, + 0.03326459601521492, + 0.001871453016065061, + -0.02892129309475422, + -0.007421939633786678, + -0.02442469634115696, + -0.021358834579586983, + 0.023875396698713303, + 0.00223552412353456, + -0.008769641630351543, + -0.011382010765373707, + 0.006936511490494013, + -0.021716518327593803, + 0.0031457017175853252, + 0.002192410407587886, + 0.039600711315870285, + -0.01207821723073721, + -0.002669854322448373, + 0.01974925771355629, + 0.002447898732498288, + 0.015176014974713326, + -0.007409165147691965, + -0.014128511771559715, + 0.03661149740219116, + -0.021167218685150146, + 0.013010749593377113, + -0.0070450943894684315, + -0.005448291543871164, + -0.0372757650911808, + 0.02741391211748123, + -0.0009924130281433463, + -0.0027385170105844736, + -0.0052502877078950405, + -0.015980802476406097, + -0.03653484955430031, + 0.011171232908964157, + -0.00020918117661494762, + -0.021857038140296936, + -0.0034618687350302935, + 0.013949669897556305, + 0.005253481678664684, + 0.014000767841935158, + -0.009057066403329372, + 0.0030754422768950462, + -0.012883005663752556, + -0.01403909083455801, + 0.003190412186086178, + -0.047035425901412964, + 0.018944470211863518, + 0.005825136788189411, + 0.005908170714974403, + -0.01812690682709217, + -0.0067576696164906025, + 0.010238699615001678, + 0.011503367684781551, + -0.005310966167598963, + 0.01888059638440609, + -0.0029812310822308064, + 0.017909741029143333, + 0.009529720060527325, + -0.017781997099518776, + 0.010391993448138237, + 0.0004758472496178001, + 0.005968849174678326, + 0.05237513408064842, + -0.01246783696115017, + 0.005821943283081055, + -0.0025037869345396757, + -0.012269833125174046, + 0.010245087556540966, + 0.012161251157522202, + -0.003136120969429612, + 0.004049492068588734, + -0.02224026992917061, + 0.018139680847525597, + -0.006981222424656153, + 0.005358870606869459, + 0.0106091583147645, + 0.0034586749970912933, + -0.013413144275546074, + 0.009210359305143356, + -0.019276604056358337, + -0.01750095933675766, + 0.005668650381267071, + 0.015188788995146751, + 0.009440298192203045, + 0.014179609715938568, + -0.017909741029143333, + -0.05840466171503067, + 0.01240396499633789, + -0.004493403248488903, + 0.0016183597035706043, + 0.03758235275745392, + -0.022649051621556282, + 0.0027001937851309776, + 0.016606749966740608, + -0.00024051843502093107, + 0.01788419298827648, + -0.006259467452764511, + -0.02255963161587715, + 0.012557257898151875, + 0.007964853197336197, + 0.005234319716691971, + -0.03086300566792488, + 0.0007381221512332559, + -0.019008342176675797, + 0.01618519425392151, + 0.0012606758391484618, + 0.019187184050679207, + -0.010136504657566547, + -0.024884575977921486, + -0.0050490908324718475, + -0.015776412561535835, + -0.00010978020145557821, + -0.023990366607904434, + -0.02268737554550171, + 0.018893372267484665, + 0.009817143902182579, + -0.016593975946307182, + -0.032319288700819016, + 0.014550067484378815, + 0.027465010061860085, + -0.006039108615368605, + 0.008162856101989746, + -0.012997975572943687, + -0.02876800112426281, + -0.0006974036805331707, + 0.007300582714378834, + -0.1593226045370102, + 0.006211563013494015, + 0.019366025924682617, + -0.0260087251663208, + 0.014562842436134815, + 4.1716473788255826e-05, + 0.013847474940121174, + 0.005052284337580204, + -0.019008342176675797, + 0.01196963433176279, + 0.017002757638692856, + 0.01690056174993515, + -0.011382010765373707, + -0.014780007302761078, + -0.02295563742518425, + 0.007996789179742336, + 0.0010203570127487183, + 0.030965201556682587, + 0.024680186063051224, + 0.019276604056358337, + 0.009912951849400997, + -0.010960455052554607, + 0.01738598942756653, + -0.011465044692158699, + 0.015469826757907867, + -0.007019545417279005, + -0.015482600778341293, + 0.002631531096994877, + 0.011100973933935165, + -0.01767980121076107, + -0.012027119286358356, + 0.01663229800760746, + -0.004649890121072531, + -0.027311716228723526, + 0.024616314098238945, + -0.0225085336714983, + -0.0004818352754227817, + -0.003797197248786688, + -0.010475026443600655, + 0.038042232394218445, + 0.02591930516064167, + 0.01138839777559042, + -0.022521307691931725, + 0.020362431183457375, + -0.027132874354720116, + 0.013106558471918106, + 0.016427908092737198, + 0.010570835322141647, + -0.002623547101393342, + -0.023083383217453957, + 0.01508659403771162, + -0.027465010061860085, + 0.005668650381267071, + 0.009018742479383945, + 0.0005836314521729946, + 0.029176782816648483, + 0.027107326313853264, + 0.01968538574874401, + 0.0005061865085735917, + -0.003918554168194532, + 0.0025660621467977762, + -0.015367630869150162, + -0.007243097759783268, + 0.013553663156926632, + 0.0009093792177736759, + -0.018382394686341286, + -0.0010874227154999971, + 0.010379218496382236, + -0.004432724788784981, + -0.01135646179318428, + 0.000513771316036582, + -0.010494188405573368, + 0.036509301513433456, + -0.01678559184074402, + -0.012052668258547783, + 0.015035496093332767, + 0.0006151683046482503, + -0.009376426227390766, + 0.0037269380409270525, + -0.001096205203793943, + -0.03418435528874397, + 0.06530284881591797, + -0.018931694328784943, + -0.003592806402593851, + -0.034235455095767975, + 0.011132909916341305, + 0.0015640683704987168, + 0.004078234545886517, + -0.003209573682397604, + -0.005691005382686853, + -0.001516164280474186, + -0.038399916142225266, + -0.026954032480716705, + -0.021269414573907852, + 0.005892202723771334, + 0.005687811877578497, + 0.03239593654870987, + -0.005853879265487194, + 0.003102588001638651, + -0.004902184940874577, + 0.010500575415790081, + -0.007390003651380539, + -0.018676206469535828, + 0.0034139645285904408, + -0.005978430155664682, + 0.0020199555438011885, + -0.022125300019979477, + 0.015201563015580177, + 0.038195524364709854, + -0.004828731995075941, + -0.014575616456568241, + -0.020745662972331047, + 0.017092177644371986, + -0.01765425316989422, + -0.025817109271883965, + 0.005269449669867754, + -0.005770845804363489, + -0.024220306426286697, + -0.004962863400578499, + -0.02178039215505123, + 0.03065861575305462, + -0.008424731902778149, + -0.019647061824798584, + 0.010072632692754269, + 0.008897385559976101, + -0.02068179100751877, + -0.07746410369873047, + 0.00017275410937145352, + 0.009695786982774734, + 0.013732505030930042, + 0.024526892229914665, + 0.0063393074087798595, + -0.0064159538596868515, + 0.010130117647349834, + -0.002634724834933877, + 0.027669399976730347, + -0.035615090280771255, + -0.02930452674627304, + -0.020937278866767883, + -0.00031856217538006604, + 0.003321350086480379, + 0.0009245488909073174, + -0.009676625020802021, + -0.022368013858795166, + -0.0028566804248839617, + 0.02636640891432762, + 0.01723269745707512, + -0.007671040948480368, + -0.012416739016771317, + -0.007760461885482073, + -0.013285400345921516, + -0.01905944012105465, + -0.023683780804276466, + 0.012161251157522202, + 0.028359219431877136, + -0.0036981955636292696, + 0.009734109975397587, + -0.013221527449786663, + 0.011541691608726978, + -0.016645073890686035, + -0.014550067484378815, + 0.0017469023587182164, + -0.012110153213143349, + -0.009095389395952225, + 0.011714145541191101, + -0.032344840466976166, + -0.012691388837993145, + -0.0028071794658899307, + 0.03857875615358353, + -0.04366297647356987, + 0.011171232908964157, + -0.022316917777061462, + -0.013285400345921516, + -0.006853478029370308, + 0.02001752145588398, + -0.017219921573996544, + -0.02613646909594536, + -0.025932079181075096, + -0.024079786613583565, + 0.028308121487498283, + 0.010685805231332779, + 0.0010602771071717143, + 0.0061444975435733795, + -0.02181871421635151, + -0.019008342176675797, + -0.006585215218365192, + -0.010736902244389057, + 0.027771595865488052, + -0.02792488969862461, + 0.028027083724737167, + 0.007830721326172352, + -0.012851069681346416, + -0.02151212841272354, + -0.013579212129116058, + 4.261467620381154e-05, + -0.007460263092070818, + -0.018688980489969254, + 0.012174025177955627, + 0.007549684029072523, + 0.007466650102287531, + -0.02912568487226963, + -0.010858259163796902, + -0.05978430062532425, + -0.010034309700131416, + -0.00025049844407476485, + -0.020783986896276474, + -0.01810135692358017, + -0.021499354392290115, + 0.02651970274746418, + -0.017130501568317413, + 0.03119514137506485, + 0.011963247321546078, + -0.007613555993884802, + -0.03541070222854614, + 0.015342081896960735, + -0.025357229635119438, + -0.007613555993884802, + 0.007690202444791794, + 0.017041079699993134, + -0.013949669897556305, + -0.027618302032351494, + 0.005349289625883102, + -0.0020407140254974365, + -0.013885797932744026, + 0.009842692874372005, + 0.009082614444196224, + -0.02963666059076786, + -0.016427908092737198, + -0.034899722784757614, + 0.024526892229914665, + 0.00771575141698122, + -0.0035289344377815723, + -0.004605179652571678, + -0.0030674582812935114, + 0.025753237307071686, + 0.0020039875525981188, + 0.009127325378358364, + -0.008993193507194519, + -0.002574046142399311, + 0.00894209649413824, + -0.02331332117319107, + -0.0029828278347849846, + -0.004688213113695383, + -0.029355624690651894, + -0.004962863400578499, + 0.01879117637872696, + 0.01630016416311264, + 0.014179609715938568, + -0.01225705910474062, + 0.020145265385508537, + -0.017603155225515366, + -0.005349289625883102, + -0.02910013496875763, + 0.0034842239692807198, + -0.004975637886673212, + -0.007332518696784973, + 0.0008534911321476102, + -0.004391207825392485, + -0.00792652927339077, + -0.010698579251766205, + -0.016696171835064888, + 0.014575616456568241, + -0.01999197155237198, + -0.01897001825273037, + 0.02043907716870308, + 0.03541070222854614, + 0.012154863215982914, + 0.03983065113425255, + -0.03911528363823891, + -0.035436250269412994, + 0.021563226357102394, + -0.03288136422634125, + -0.02529335767030716, + -0.0039600711315870285, + 0.006808767560869455, + 0.007664653938263655, + 0.01765425316989422, + -0.0277204979211092, + 0.04330529272556305, + 0.006412760354578495, + 0.020145265385508537, + 0.0018331296741962433, + 0.025778785347938538, + -0.03566619008779526, + 0.014550067484378815, + -0.0015936092240735888, + -0.004630728159099817, + -0.030070992186665535, + 0.01852291263639927, + 0.01411573775112629, + 0.023785974830389023, + -0.02088618092238903, + 0.031808312982320786, + -0.012691388837993145, + -0.03329014778137207, + 0.0009748481679707766, + -0.002264266600832343, + -0.018918920308351517, + -0.017309343442320824, + 0.006732121109962463, + 0.007255872245877981, + 0.0011009955778717995, + 0.006597989704459906, + -0.007830721326172352, + 0.018075808882713318, + -0.014384000562131405, + 0.010794387198984623, + 0.017552057281136513, + 0.014677812345325947, + 0.014422323554754257, + -0.01378360204398632, + -0.009702173992991447, + 0.044991519302129745, + 0.007223936263471842, + -0.03298356011509895, + -0.005553680472075939, + -0.004257076419889927, + 0.01378360204398632, + 0.006872639525681734, + 0.004320948384702206, + 0.0034331262577325106, + -0.001467461814172566, + 0.024437472224235535, + -0.0034618687350302935, + 0.008769641630351543, + -0.030019894242286682, + 8.74249599291943e-05, + 0.039958395063877106, + -0.0009644689271226525, + -0.001449897070415318, + 0.0010578818619251251, + -0.007869044318795204, + -0.01573808863759041, + 0.025344455614686012, + 0.0008734511793591082, + -0.04113364219665527, + -0.006514955777674913, + 0.007875432260334492, + -0.004633922129869461, + 0.016504554077982903, + -0.005639907903969288, + 0.005914557725191116, + -0.012295382097363472, + 0.0329069122672081, + -0.015457051806151867, + 0.010538899339735508, + -0.01636403612792492, + 0.0015584796201437712, + 0.015750864520668983, + 0.004886216949671507, + 0.00628501595929265, + 0.0003039913426619023, + 0.008028725162148476, + 0.013719730079174042, + -0.011158458888530731, + -0.004777634050697088, + 0.021946458145976067, + -0.007817947305738926, + 0.03147617727518082, + 0.005751683842390776, + -0.03349453583359718, + -0.006604376714676619, + -0.006700184661895037, + -0.007338906172662973, + 0.03349453583359718, + 0.028538061305880547, + 0.007153676822781563, + 0.09739220142364502, + 0.012876618653535843, + -0.015648668631911278, + 0.0036981955636292696, + -0.016555652022361755, + 0.02589375525712967, + -0.010947680100798607, + 0.002898197155445814, + 0.005908170714974403, + -0.05247732996940613, + 0.007185612805187702, + -0.002808776218444109, + 0.025548845529556274, + -0.0389619916677475, + -0.03477197885513306, + 0.00042834237683564425, + 0.008692994713783264, + 0.006077431607991457, + 0.004889410454779863, + -0.0045189522206783295, + 0.04624341055750847, + 0.000675447634421289, + 0.013949669897556305, + 0.0216398723423481, + -0.02502509392797947, + -0.023632682859897614, + 0.008935708552598953, + -0.013413144275546074, + -0.004835119005292654, + -0.0069045755080878735, + -0.011912149377167225, + 0.0035991936456412077, + -0.05738270655274391, + -0.012985200621187687, + 0.03622826561331749, + -0.029534466564655304, + -0.002880632411688566, + -0.025037869811058044, + -0.005920945201069117, + 0.024769606068730354, + 0.006623538210988045, + 0.02280234545469284, + -0.0251400638371706, + -0.03298356011509895, + -0.002673048060387373, + 4.5508881157729775e-05, + 0.007562458515167236, + -0.023619908839464188, + -0.04838951304554939 + ], + "metadata": { + "source": "Kreye_Marieke_BA_241_V2.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 17, + "has_images": true, + "image_count": 98, + "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", + "links": [], + "last_modified": "2025-05-05T23:00:23", + "_known_field_names": "frozenset({'is_continuation', 'sent_to', 'header_footer_type', 'email_message_id', 'filename', 'languages', 'detection_class_prob', 'sent_from', 'link_texts', 'cc_recipient', 'subject', 'image_mime_type', 'image_path', 'filetype', 'page_number', 'last_modified', 'signature', 'detection_origin', 'text_as_html', 'attached_to_filename', 'bcc_recipient', 'data_source', 'link_start_indexes', 'category_depth', 'emphasized_text_tags', 'parent_id', 'orig_elements', 'page_name', 'coordinates', 'url', 'link_urls', 'file_directory', 'links', 'table_as_cells', 'emphasized_text_contents', 'key_value_pairs', 'image_base64'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "Kreye_Marieke_BA_241_V2.pdf", + "detection_class_prob": 0.3422867953777313, + "parent_id": "e02392183bc6851689602ad4b9f6039f", + "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", + "id": "ce00eae5-7e07-454f-9e4f-f79ac36f92f4", + "processing_timestamp": "2025-05-05T23:15:46.977945", + "chunk_number": 9, + "total_chunks": 56, + "chunking_strategy": "hybrid", + "word_count": 286 + } +} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000010.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000010.json new file mode 100644 index 0000000000000000000000000000000000000000..7b77d0d20a4d545e00faaf2b15b8284b6261b268 --- /dev/null +++ b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000010.json @@ -0,0 +1,1570 @@ +{ + "id": "61a115b2-0ff7-441a-f6d9-eb3d00000010", + "content": "Dieser Phasen\u00fcbergang erfordert Energie, die der Umgebung entzogen wird. Diese Energieentnahme f\u00fchrt zu einer Temperaturabsenkung, die auch als \"Verdunstungsk\u00e4lte\" bezeichnet wird. (vgl. Deutscher Wetterdienst 2022)\nDie Verdunstung kann in die Transpiration und die Evaporation unterteilt werden. Transpiration beschreibt den Vorgang, bei dem Pflanzen \u00fcber ihre Wurzeln Wasser aus dem Boden aufnehmen und dieses haupts\u00e4chlich \u00fcber ihre Bl\u00e4tter in Form von Wasserdampf an die Umgebung abgeben. Die f\u00fcr diesen Prozess ben\u00f6tigte Energie wird der eingestrahlten Globalstrahlung und somit der Umgebung entnommen. \u00dcber die Transpiration verlieren B\u00e4ume pro Tag bis zu 500 l Wasser, was einer K\u00fchlleistung von bis zu 350 kWh entspricht. (vgl. Mehra 2021, S. 121). Die Evaporation beschreibt die Verdunstung von Wasserfl\u00e4chen und von sowohl bewachsenen als auch von versiegelten Oberfl\u00e4chen, bevor das Oberfl\u00e4chenwasser abgeleitet wird. B\u00e4ume tragen durch ihr Bl\u00e4tterdach zu einer Erh\u00f6hung der Gesamtoberfl\u00e4che f\u00fcr die Verdunstung, speziell nach Regenereignissen, bei. (vgl. Kampusch 2018, S. 18)\n9\nTheorieteil\nEine genaue Aufteilung der Verdunstungsmengen nach Transpiration und Evaporation ist kaum m\u00f6glich. Deshalb werden die beiden Verdunstungsprozesse unter dem Begriff Evapotranspiration zusammengefasst (vgl. Mehra 2021, S. 118). Die Teilprozesse sind in Abbildung 4 schematisch dargestellt. [IMAGE: Evapotranspiration \"nn N ! 4 Qr Globalstrahlung \\ Transpiration Evaporation n\\\\ DD nassen Bl\u00e4ttern 060 ua | Wasseraufnahme AS Evaporation des Bodens Evaporation von Wasserfl\u00e4chen \u2014 \u00fcber die Wurzeln]\n\nAbbildung 4: Schematische Darstellung Evapotranspiration (eigene Darstellung nach Zhang et al. 2020)\nWie der Verschattungseffekt ist auch der K\u00fchlungseffekt von der Art und den Eigenschaften der Pflanzen, aber auch von dem Verh\u00e4ltnis von begr\u00fcnten zu bebauten bzw. versiegelten Fl\u00e4chen, abh\u00e4ngig. Eine erh\u00f6hte Sonneneinstrahlung sowie hohe Lufttemperaturen in Verbindung mit niedriger relativer Luftfeuchtigkeit f\u00f6rdern die Verdunstung. Im Gegensatz dazu f\u00fchrt ein Anstieg der Luftfeuchtigkeit zu einer Abnahme der Verdunstungsmenge. (vgl. Deutscher Wetterdienst 2022)\nDie Verdunstung ist eng mit dem Vorhandensein unversiegelter Fl\u00e4chen verbunden. In St\u00e4dten sind auf Grund des hohen Grads an Versiegelung kaum Verdunstungspotentiale vorhanden, da die versiegelte Oberfl\u00e4che das Einsickern des Regenwassers in die oberen Bodenschichten und somit eine Zwischenspeicherung der Wassermengen verhindert.", + "embedding": [ + 0.015511935576796532, + -0.008213676512241364, + 0.037344012409448624, + -0.01046459935605526, + -0.002849706681445241, + 0.03185150772333145, + -0.008721544407308102, + -0.01559971459209919, + -0.010370549745857716, + -0.026333924382925034, + 0.015261135995388031, + 0.029193036258220673, + -0.02235875464975834, + 0.02084141969680786, + 0.003614644519984722, + 0.018897725269198418, + 0.04464226961135864, + 0.002946891589090228, + 0.01674085110425949, + -0.002656904747709632, + -0.005075550172477961, + 0.011066517792642117, + 0.00953037291765213, + 0.010376820340752602, + -0.010966198518872261, + 0.012445913627743721, + 0.018082628026604652, + -0.016765931621193886, + -0.015185896307229996, + 0.015825433656573296, + 0.009856411255896091, + -0.0030221312772482634, + -0.009668312035501003, + -0.02390117011964321, + 0.006326411850750446, + -0.027562839910387993, + -0.016427353024482727, + -0.0280393585562706, + 0.01056491956114769, + -0.02044014073908329, + 0.004809075966477394, + -0.0051100351847708225, + -0.007323338650166988, + 0.006527051329612732, + 0.00584989320486784, + 0.012339324690401554, + -0.008489555679261684, + 0.01954980380833149, + -0.004144458100199699, + 0.04047900438308716, + 0.027512680739164352, + 0.010370549745857716, + -0.004135053139179945, + -0.021343018859624863, + -0.01343030110001564, + 0.004686811473220587, + -0.017744049429893494, + 0.001479715690948069, + 0.01633957214653492, + -0.00871527474373579, + -0.027738399803638458, + 0.001539280521683395, + -0.008201136253774166, + 0.01580035500228405, + -0.03787069022655487, + -0.0011223267065361142, + -0.02788887917995453, + -0.0031522333156317472, + -0.011373747140169144, + -0.01807008869946003, + 0.038046251982450485, + 0.033456623554229736, + 0.01113548781722784, + 0.004370177164673805, + -0.00036894925870001316, + -0.013267281465232372, + 0.016164014115929604, + 0.007404848467558622, + -0.020164262503385544, + 0.0032133657950907946, + 0.00700983963906765, + -0.02469118870794773, + -0.013793960213661194, + 0.04516895115375519, + 0.013367601670324802, + 0.014082379639148712, + 0.005787193309515715, + 0.02250923588871956, + 0.011944315396249294, + -0.0061790673062205315, + 0.015775274485349655, + 0.014609057456254959, + -0.000599958875682205, + 0.03649129346013069, + -0.010953658260405064, + 0.004229102749377489, + 0.0191109050065279, + 0.0446171909570694, + 0.013656020164489746, + -0.03669193387031555, + -0.028841916471719742, + 0.018734706565737724, + -0.007762237451970577, + -0.0023778907489031553, + -0.045896265655756, + 0.008301456458866596, + 0.01728007011115551, + 0.021731756627559662, + 0.002736847149208188, + -0.0400024838745594, + -0.020615700632333755, + 0.02543104626238346, + -0.010251420550048351, + -0.03190166875720024, + 0.0160511527210474, + -0.02449055016040802, + 0.049984294921159744, + 0.002841869369149208, + -0.020766180008649826, + -0.006401651538908482, + 0.010865878313779831, + -0.001023574499413371, + 0.00542980432510376, + -0.03145023062825203, + 0.029644474387168884, + -0.0006556049920618534, + 0.013706180267035961, + -0.011925505474209785, + -0.03405854105949402, + -0.017016731202602386, + 0.003247850574553013, + 0.015361455269157887, + 0.005727628245949745, + -0.011342396959662437, + -0.018433745950460434, + 0.022734954953193665, + -0.021142378449440002, + -0.00043889874359592795, + -0.012928702868521214, + -0.02092919871211052, + -0.010878418572247028, + -0.01325474213808775, + -0.029995594173669815, + -0.02859111689031124, + 0.005599093623459339, + 0.018885185942053795, + 0.022045256569981575, + 0.018784865736961365, + -0.0021364963613450527, + -0.003714964259415865, + -0.0026757146697491407, + -0.01773150824010372, + 0.021117299795150757, + -0.04429115355014801, + 0.0035080548841506243, + 0.007931526750326157, + -0.014872397296130657, + -0.0037902039475739002, + -0.005834218114614487, + 0.019913462921977043, + 0.041156161576509476, + -0.02054046094417572, + -0.0028042492922395468, + -0.014583977870643139, + -0.0028152219019830227, + 0.00958053208887577, + -0.0029406214598566294, + 0.005395319312810898, + 1.760983286658302e-05, + -0.017493249848484993, + -0.0006818605470471084, + 0.029443835839629173, + -0.03420902043581009, + 0.03571381792426109, + -0.017543409019708633, + 0.008483285084366798, + -0.007461278233677149, + 0.02518024668097496, + -0.02123015932738781, + -0.039225008338689804, + -0.02823999896645546, + 0.015524474903941154, + 0.0009279572986997664, + 0.007624297868460417, + -0.027086321264505386, + 0.0033262253273278475, + 0.008683924563229084, + 0.017957227304577827, + -0.01158065628260374, + 0.0182205680757761, + -0.014508738182485104, + 0.020377440378069878, + 0.005636713933199644, + -0.004470496904104948, + -0.6400397419929504, + 0.0005748789408244193, + -0.004856100771576166, + -0.013656020164489746, + 0.0030315362382680178, + 0.014257938601076603, + 0.02528056688606739, + 0.013706180267035961, + -0.01649005152285099, + 0.04308731481432915, + 0.009806252084672451, + -0.015123195946216583, + -0.00463038170710206, + 0.0057715182192623615, + -0.004517522174865007, + -0.023035913705825806, + -0.026133283972740173, + -0.001989151816815138, + 0.027813639491796494, + -0.008533445186913013, + -0.024014031514525414, + 0.028716517612338066, + -0.0026584723964333534, + 0.000854285026434809, + 0.023449731990695, + 0.012903622351586819, + 0.006802930496633053, + -0.028666356578469276, + 0.00844566524028778, + 0.006395381409674883, + -0.007893906906247139, + -0.001497741905041039, + -0.009191793389618397, + 0.02566930651664734, + 0.044316232204437256, + 0.011549307033419609, + 0.008251296356320381, + 0.013630940578877926, + -0.0008652575197629631, + 0.00304250861518085, + -0.010383090004324913, + 0.014383338391780853, + 0.0089848842471838, + -0.01674085110425949, + -0.006552130915224552, + -0.015123195946216583, + 0.03914976865053177, + -0.032603904604911804, + 0.0003111478581558913, + -0.015888134017586708, + 0.032704226672649384, + 0.028967317193746567, + 0.013518081046640873, + 0.005743303336203098, + 0.0038560389075428247, + 0.03333122283220291, + 0.014972716569900513, + -0.01875978522002697, + 0.000704981095623225, + 0.00271490216255188, + 0.007900177501142025, + 0.010803178884088993, + 0.012521154247224331, + -0.01738039031624794, + -0.04158252105116844, + 0.029343515634536743, + -0.04326287657022476, + 0.004614706616848707, + 0.02556898631155491, + -0.017041809856891632, + -0.020753640681505203, + 0.006633640732616186, + 0.009618151932954788, + -0.011718596331775188, + 0.018433745950460434, + -0.009718472138047218, + 0.018383586779236794, + -0.013417760841548443, + 0.013104261830449104, + 0.03992724418640137, + -0.010301580652594566, + -0.023687992244958878, + -0.022722413763403893, + -0.009837601333856583, + 0.036516375839710236, + -0.02469118870794773, + 0.0004353718541096896, + 0.00576524855569005, + -0.010753018781542778, + 0.01111040823161602, + 0.01692895032465458, + 0.027512680739164352, + -0.01210106536746025, + -0.014583977870643139, + -0.01919868402183056, + 0.04780234023928642, + -0.029268275946378708, + 0.002616149839013815, + -0.00881559494882822, + -0.019913462921977043, + -0.0005360834766179323, + -0.0007817883742973208, + 0.02054046094417572, + -0.011354937218129635, + 0.026534562930464745, + 0.01593829318881035, + -0.03538777679204941, + -0.010251420550048351, + 0.05437328293919563, + -0.015210975892841816, + -0.0035111899487674236, + -0.02084141969680786, + -0.01330490130931139, + 0.007116429507732391, + -0.01496017724275589, + -0.009756091982126236, + 0.04246031865477562, + -0.020114101469516754, + 0.010922308079898357, + -0.004661731421947479, + 0.008909644559025764, + -0.025782166048884392, + 0.012458453886210918, + -0.010658969171345234, + -0.009398702532052994, + 0.010358010418713093, + 0.013593320734798908, + -0.00953037291765213, + -0.015424155630171299, + -0.0055959587916731834, + 0.008056926541030407, + 0.028616197407245636, + 0.014370798133313656, + 0.003034671302884817, + 0.01439587865024805, + -0.018057547509670258, + 0.001901371986605227, + 0.003592699533328414, + 0.000707724189851433, + -0.018082628026604652, + -0.009292113594710827, + -0.003959493711590767, + 0.009323462843894958, + -0.013630940578877926, + -0.008307726122438908, + -0.01929900422692299, + -0.0009013098897412419, + 0.011016358621418476, + -0.027863798663020134, + 0.011818915605545044, + -0.023675451055169106, + -0.006533320993185043, + -0.013192041777074337, + 0.017493249848484993, + 0.02156873792409897, + 0.016565293073654175, + 0.00022454372083302587, + -0.025982804596424103, + -0.01717974990606308, + -0.02413943037390709, + 0.023311791941523552, + 0.008947264403104782, + -0.026634883135557175, + 0.001169351628050208, + -0.031374990940093994, + -0.028515877202153206, + 0.006476891227066517, + 0.0004240075359120965, + -0.03027147240936756, + -0.029268275946378708, + 0.006166527047753334, + -0.01840866729617119, + 0.007486358284950256, + 0.01130477711558342, + -0.003171043237671256, + 0.004454822279512882, + -0.008320266380906105, + -0.0019405593629926443, + 0.009185523726046085, + -0.008583605289459229, + 0.016728311777114868, + -0.01224527508020401, + -0.011342396959662437, + -0.011079058051109314, + 0.0018010522471740842, + 0.016866251826286316, + 0.01659037172794342, + 0.013944439589977264, + -0.01259012334048748, + 0.024503089487552643, + 0.020716020837426186, + 0.03837228938937187, + 0.0008323400979861617, + 0.0007688565528951585, + -0.009611882269382477, + -0.029167955741286278, + 0.012345594353973866, + 0.02082888036966324, + -0.008614955469965935, + 0.015273676253855228, + 0.028265077620744705, + 0.003526864806190133, + 0.02454070933163166, + -0.002457832917571068, + 0.012075984850525856, + -0.017242450267076492, + 0.005379644688218832, + -0.004373312462121248, + 0.015123195946216583, + 0.020966818556189537, + 0.015386535786092281, + -0.00224622106179595, + -0.03348170220851898, + -0.014583977870643139, + -0.007680727634578943, + 0.0575835146009922, + -0.0017540274420753121, + -0.012991402298212051, + 0.013003942556679249, + -0.021217618137598038, + 0.004931340925395489, + -0.0191109050065279, + 0.01970028318464756, + -0.023537512868642807, + 0.0016521402867510915, + 0.022496694698929787, + 0.0013715585228055716, + -0.007686997763812542, + -0.002503290306776762, + -0.01832088641822338, + 0.0069220601581037045, + -0.016427353024482727, + -0.010972468182444572, + 0.010038240812718868, + 0.00472756614908576, + 0.016954030841588974, + 0.0036648043897002935, + -0.015888134017586708, + 0.045595306903123856, + 0.005012850742787123, + 0.000707724189851433, + 0.026885682716965675, + 0.008307726122438908, + -0.025706926360726357, + 0.025456126779317856, + 0.014458578079938889, + 0.019813142716884613, + 0.007204208988696337, + -0.013881740160286427, + -0.002276003360748291, + 0.0013292361982166767, + 0.012928702868521214, + 0.0014130971394479275, + -0.007680727634578943, + 0.00304250861518085, + -0.0265094842761755, + 0.012602663598954678, + -0.009931650944054127, + 0.01766880974173546, + 0.029845112934708595, + 0.005784058477729559, + -0.01414507906883955, + 0.016352113336324692, + -0.003755719168111682, + 0.009894031099975109, + -0.005890647880733013, + -0.0032384456135332584, + -0.020126642659306526, + -0.005843623075634241, + 0.003655399428680539, + 0.014659217558801174, + -0.006545861251652241, + -0.02023950219154358, + 0.010972468182444572, + 0.011925505474209785, + 0.014132538810372353, + 0.00328860548324883, + -0.0007712077931500971, + 0.018546607345342636, + 0.006884440314024687, + -0.01353062130510807, + -0.005125710275024176, + -0.014107459224760532, + 0.04524419084191322, + -0.015737654641270638, + -0.014922556467354298, + 0.0034202751703560352, + -0.0027007947210222483, + -0.0012195114977657795, + 0.0011035167844966054, + -0.026434244588017464, + -0.015737654641270638, + -0.0016474376898258924, + -0.001942126895301044, + -0.014558898285031319, + -0.02237129583954811, + 0.02265971526503563, + -0.014257938601076603, + 0.016452431678771973, + 0.017455630004405975, + -0.00656467117369175, + -0.007806127425283194, + -0.007655648048967123, + -0.008803054690361023, + 0.02178191766142845, + 0.021242698654532433, + 0.006470621097832918, + -0.0009561722399666905, + -0.005197815131396055, + -0.016803551465272903, + -0.029744794592261314, + -0.016013532876968384, + -0.007486358284950256, + -0.012966322712600231, + -0.02992035448551178, + 0.007868827320635319, + 0.02097935974597931, + 0.001275157555937767, + 0.04316255450248718, + 0.0013605860294774175, + -0.009981811046600342, + 0.012853463180363178, + -0.01157438661903143, + 0.007661917712539434, + 0.030497191473841667, + 0.0015024443855509162, + -0.009035044349730015, + 0.024854207411408424, + -0.005294999573379755, + -0.010126020759344101, + 0.0094300527125597, + -0.042284756898880005, + 0.018835024908185005, + 0.006379706785082817, + -0.003404600080102682, + 0.0037525841034948826, + 0.020364901050925255, + -0.012533693574368954, + 0.013066641986370087, + 0.003981438465416431, + -0.0010431682458147407, + -0.02296067401766777, + 0.0018966695060953498, + -0.013392681255936623, + -0.004881180822849274, + -0.016527671366930008, + -0.008608684875071049, + 0.051464010030031204, + 0.00372123415581882, + 0.02696092240512371, + 0.013505540788173676, + -0.00025079926126636565, + 0.018145328387618065, + 0.003504919819533825, + -0.016954030841588974, + 0.012602663598954678, + 0.006784120574593544, + 0.013593320734798908, + -0.012307974509894848, + -0.010640159249305725, + 0.012953782454133034, + -0.01496017724275589, + 0.02859111689031124, + -0.0007782615139149129, + 0.018308347091078758, + 0.031023871153593063, + 0.007624297868460417, + -0.026384083554148674, + 0.004019058309495449, + -0.010577459819614887, + -0.004122512880712748, + 0.020904120057821274, + -0.009267033077776432, + -0.008627494797110558, + 0.006028587464243174, + -0.007235559169203043, + -0.022797653451561928, + -0.014935096725821495, + -0.006608561147004366, + -0.015925753861665726, + 0.021794456988573074, + -0.01722991093993187, + -0.004953285679221153, + -0.020026322454214096, + -0.0280393585562706, + -0.02286035381257534, + 0.004241642542183399, + 0.0003954007406719029, + -0.0060160476714372635, + -0.0008793649612925947, + 0.013066641986370087, + 0.0055614737793803215, + 0.008721544407308102, + -0.00047691049985587597, + 0.020151721313595772, + -0.0032541207037866116, + -0.02240891568362713, + -0.01039563026279211, + 0.006740230601280928, + 0.00236378307454288, + 0.003370115300640464, + -0.03488617762923241, + 0.004461091943085194, + -0.020527921617031097, + -0.0049344757571816444, + -0.008658844977617264, + 0.006357761565595865, + -0.018157867714762688, + -0.008828134275972843, + -0.0017273799749091268, + 0.003968898672610521, + -0.010025701485574245, + -0.009185523726046085, + 0.020904120057821274, + -0.019085824489593506, + 0.008307726122438908, + 0.02168159745633602, + -0.003755719168111682, + -0.013656020164489746, + 0.01766880974173546, + 0.019035665318369865, + -0.0037306391168385744, + 0.014872397296130657, + -0.023863550275564194, + 0.028265077620744705, + -0.0009718472138047218, + 0.017217369750142097, + -0.006828010082244873, + 0.0007520059589296579, + -0.014583977870643139, + -0.003965763375163078, + 0.002340270671993494, + 0.002252490958198905, + -0.012433374300599098, + 0.03884880617260933, + 0.0027399819809943438, + 0.021832076832652092, + -0.01483477745205164, + -0.00022121280198916793, + 0.006602291017770767, + 0.012182574719190598, + 0.005131980404257774, + 0.030296552926301956, + 0.01001943089067936, + -0.009605612605810165, + -0.03240326792001724, + 0.03756973147392273, + 0.003486109897494316, + 0.011975665576756, + 0.006323276553303003, + 0.00982506200671196, + 0.00017722495249472558, + -0.021606357768177986, + 0.0034767049364745617, + -0.001292400062084198, + 0.01116056740283966, + 0.007492628414183855, + -0.002691389760002494, + -0.02716156095266342, + -0.002909271512180567, + 0.008527175523340702, + 0.010075860656797886, + -0.028892075642943382, + 0.011975665576756, + -0.020753640681505203, + 0.012307974509894848, + -0.007956607267260551, + 0.019386783242225647, + 0.0024499953724443913, + -0.018722165375947952, + -0.011492877267301083, + 0.023951331153512, + 0.011624546721577644, + 0.015248595736920834, + -0.023286713287234306, + -0.04862998053431511, + -0.009035044349730015, + 0.003906198777258396, + -0.023311791941523552, + -0.03649129346013069, + 0.01926138438284397, + -0.025757085531949997, + 0.012602663598954678, + -0.004573951940983534, + 0.013467920944094658, + -0.009022504091262817, + 0.018195487558841705, + 0.0020784989465028048, + -0.010163640603423119, + -0.004410932306200266, + -0.0038403638172894716, + -0.014232859015464783, + -0.02716156095266342, + 0.026785362511873245, + 0.015373995527625084, + 0.0015369292814284563, + 0.024992147460579872, + -0.004163268022239208, + 0.037695132195949554, + 0.03373250365257263, + 0.0039156037382781506, + -0.027261881157755852, + -0.007072539534419775, + -0.02010156214237213, + -0.020063942298293114, + 0.020553000271320343, + 0.013066641986370087, + 0.020816339179873466, + 0.0030221312772482634, + -0.015825433656573296, + 0.043664153665304184, + 0.001262617646716535, + -0.0073045287281274796, + -0.022496694698929787, + -0.0013715585228055716, + -0.02479150891304016, + 0.015762735158205032, + -0.0004839642206206918, + -0.01738039031624794, + -0.012402024120092392, + 0.007774777710437775, + -0.00450498191639781, + -0.03370742127299309, + 0.00844566524028778, + -0.023324333131313324, + -0.018684545531868935, + -0.010188720189034939, + 0.00024021868011914194, + -0.02018934115767479, + 0.006122637540102005, + 0.023424651473760605, + -0.03047211281955242, + 0.016627991572022438, + -0.015311296097934246, + -0.028841916471719742, + 0.0018637521425262094, + -0.01827072724699974, + -0.04200888052582741, + 0.025255486369132996, + -0.005294999573379755, + 0.014458578079938889, + 0.039425645023584366, + -0.009436322376132011, + -0.004968960769474506, + -0.0002553058147896081, + -0.00492507079616189, + 0.024678649380803108, + 0.006621100939810276, + 0.05051097273826599, + 0.025105006992816925, + -0.004968960769474506, + -0.027236800640821457, + -0.06651196628808975, + -0.0031726108863949776, + 0.0014663919573649764, + 0.007022379897534847, + -0.015662414953112602, + -0.008614955469965935, + -0.016314493492245674, + 0.004790266044437885, + 0.018835024908185005, + -0.013756340369582176, + -0.003445354988798499, + 0.04215935990214348, + 0.01959996297955513, + -0.004705621395260096, + 0.005338889546692371, + 0.0002114159578923136, + -0.005884378217160702, + 0.0048404261469841, + -0.009912841022014618, + -0.0037682591937482357, + -0.0010259257396683097, + -0.01283465325832367, + -0.013342521153390408, + 0.058034952729940414, + -0.0014068272430449724, + 0.02630884386599064, + 0.010665238834917545, + 0.019085824489593506, + 0.0011709191603586078, + -0.013568241149187088, + -0.005570878740400076, + 0.021455878391861916, + -0.01256504375487566, + 0.02518024668097496, + -0.01845882646739483, + -0.022346215322613716, + 0.003940683789551258, + -0.0045645469799637794, + -0.011354937218129635, + 0.013104261830449104, + -0.021756837144494057, + 0.01396952010691166, + 0.007743427529931068, + -0.005784058477729559, + -0.010289040394127369, + 0.012991402298212051, + 0.02013918198645115, + 0.008734084665775299, + -0.0006822524010203779, + -0.0030879660043865442, + 0.020891578868031502, + -0.0035707547795027494, + 0.006527051329612732, + 0.01259012334048748, + -0.01712959073483944, + -0.014320638962090015, + -0.006185336969792843, + -0.01043951977044344, + -0.005323214456439018, + -0.013593320734798908, + 0.0096808522939682, + -0.03375758230686188, + -0.013931899331510067, + 0.010514759458601475, + 0.004893721081316471, + 0.01763118989765644, + -0.02869143709540367, + -0.00843939557671547, + -0.025217866525053978, + 0.03215246647596359, + -0.03709321469068527, + 0.023662911728024483, + 0.027738399803638458, + 0.007925257086753845, + 0.0032321757171303034, + 0.009818791411817074, + -0.003037806134670973, + -0.023424651473760605, + 0.03679225221276283, + -0.0071289693005383015, + -0.027613000944256783, + -0.0021678463090211153, + 0.0024468605406582355, + 0.01523605640977621, + -0.010953658260405064, + -0.023336872458457947, + 0.012978862971067429, + -0.014797157607972622, + 0.0028700842522084713, + -0.012966322712600231, + -0.020176801830530167, + 0.029042556881904602, + 0.01473445724695921, + 3.4362441510893404e-05, + 0.04012788459658623, + -0.019863301888108253, + 0.0055959587916731834, + 0.014320638962090015, + -0.003818419063463807, + -0.032603904604911804, + -0.012571313418447971, + -0.016414811834692955, + -0.03313058614730835, + 0.007705807685852051, + 0.011756216175854206, + -0.012709253467619419, + 0.016916410997509956, + -0.007737157866358757, + -0.0006046613561920822, + 0.01939932443201542, + -0.001708570052869618, + 0.02839047834277153, + 0.00841431599110365, + 0.013417760841548443, + -0.012107335031032562, + -0.00972474180161953, + 0.009731011465191841, + -0.0194996427744627, + -0.004392122384160757, + -0.011467796750366688, + -0.04148219898343086, + 0.001117624226026237, + -0.004172672983258963, + 0.024565789848566055, + 0.03450997918844223, + -0.024528170004487038, + -0.002725874539464712, + 0.00883440487086773, + -0.046397864818573, + -0.0066775307059288025, + -0.0012767250882461667, + 0.005987832788378, + -0.007624297868460417, + 0.01488493662327528, + -0.02104206010699272, + 0.016063693910837173, + 0.00714777922257781, + 0.02548120729625225, + -0.02691076137125492, + -0.0035519448574632406, + -0.00619787722826004, + 0.0017587299225851893, + 0.01211987528949976, + -0.011543036438524723, + -0.024703728035092354, + -0.013844120316207409, + 0.009643232449889183, + -0.03676717355847359, + 0.012866002507507801, + -0.002777602057904005, + -0.010088400915265083, + -0.0007402497576549649, + -0.010364280082285404, + 0.019374243915081024, + 0.007599218282848597, + 0.017844367772340775, + 0.02262209542095661, + -0.03714337199926376, + -0.008245025761425495, + 0.020214421674609184, + 0.0009083636105060577, + -0.06044262647628784, + 0.0030472110956907272, + 0.02385101094841957, + -0.006991029717028141, + -0.014220318756997585, + 0.02518024668097496, + -0.03195182606577873, + -0.013342521153390408, + -0.006765310652554035, + 0.025155168026685715, + 0.022822733968496323, + -0.006871900055557489, + -0.012333054095506668, + 0.00827010627835989, + -0.01590067334473133, + -0.022045256569981575, + -0.004053543321788311, + -0.03945072740316391, + 0.0007335878908634186, + 0.021543657407164574, + 0.014759537763893604, + 0.025907564908266068, + -0.03726877272129059, + 0.01227035466581583, + -0.0020565539598464966, + 0.012728063389658928, + -0.0039971135556697845, + -0.008345345966517925, + -0.007987956516444683, + 0.03797100856900215, + 0.0225593950599432, + -0.006859360262751579, + 0.02494198828935623, + 0.0017038675723597407, + -0.005247974768280983, + -0.003276065457612276, + 0.004762051161378622, + 0.0033419004175812006, + -0.013806500472128391, + 0.003912468906491995, + -0.007893906906247139, + -0.006201012060046196, + -0.0029374866280704737, + -0.01315442193299532, + -0.0023465408012270927, + -0.027136482298374176, + 0.019236303865909576, + 0.1911090463399887, + -0.022082876414060593, + 0.004805941134691238, + 0.02148095704615116, + -0.005809138063341379, + 0.006664990913122892, + 0.0016239252872765064, + -0.004351367242634296, + 0.005780923180282116, + 0.015085576102137566, + -0.014997797086834908, + -0.002841869369149208, + -0.014696837402880192, + 0.010370549745857716, + -0.00959934201091528, + -0.009881491772830486, + -0.022283514961600304, + 0.012696713209152222, + 0.0015972779365256429, + 0.032955024391412735, + 0.03303026407957077, + -0.03862308710813522, + 0.005768383387476206, + -0.0024782102555036545, + 0.05627935752272606, + -0.012953782454133034, + 0.0071791294030845165, + -0.0017164075979962945, + 0.0242021307349205, + 1.6005598808987997e-05, + -0.012176305055618286, + 0.012301704846322536, + -0.015173356048762798, + -0.01659037172794342, + -0.017443088814616203, + -0.007423658389598131, + 0.016903871670365334, + -0.024277370423078537, + 0.02220827527344227, + 0.034083619713783264, + 0.0045614116825163364, + -9.444160241400823e-05, + -0.002011096803471446, + -0.019487103447318077, + -0.022847814485430717, + 0.03230294585227966, + -0.006828010082244873, + -0.003749449271708727, + -0.014182698912918568, + -0.022697335109114647, + -0.02087903954088688, + -0.006683800835162401, + 0.0016270603518933058, + 0.027337120845913887, + -0.012728063389658928, + 0.006940870080143213, + 0.007041189819574356, + 0.005718223284929991, + 0.01827072724699974, + 0.004545737057924271, + -0.02023950219154358, + 0.0321023054420948, + -0.0179697684943676, + 0.011586926877498627, + -0.01837104745209217, + 0.003818419063463807, + -0.017806747928261757, + -0.00031173566821962595, + -0.0004847479867748916, + -0.00044438496115617454, + -0.016164014115929604, + -0.011486606672406197, + -0.02398895099759102, + 0.027713319286704063, + -0.0016364653129130602, + -0.011166837997734547, + -0.0072104791179299355, + 0.01837104745209217, + 0.006119502242654562, + 0.012659093365073204, + -0.017242450267076492, + 0.012546233832836151, + -0.02388863079249859, + -0.031274668872356415, + 0.010326660238206387, + -0.026584723964333534, + 0.027713319286704063, + -0.00036640206235460937, + -0.0017289475072175264, + -0.00030918847187422216, + 1.4278904018283356e-05, + 0.0021960611920803785, + -0.022885434329509735, + -0.010872148908674717, + 0.020803799852728844, + -0.00841431599110365, + 0.02701108157634735, + 0.0010980305960401893, + -0.00492507079616189, + 0.0010557081550359726, + -0.005617903545498848, + 0.034836020320653915, + 0.05286848917603493, + -0.0011646491475403309, + 0.0032854704186320305, + 0.01389427948743105, + -0.0035550796892493963, + 0.008846944198012352, + 0.0033544402103871107, + -0.0031083435751497746, + 0.00712269963696599, + -0.0006830361671745777, + 0.013091722503304482, + -0.0034484900534152985, + -0.006909519899636507, + 0.026735203340649605, + -0.012063445523381233, + -0.003332495456561446, + -9.453957318328321e-05, + -0.01284092292189598, + -0.01016991026699543, + -0.011085327714681625, + 0.005012850742787123, + -0.01470937766134739, + 0.014935096725821495, + -0.013718720525503159, + -0.02788887917995453, + 0.020063942298293114, + -0.015725115314126015, + -0.012646553106606007, + 0.04017804563045502, + -0.0124208340421319, + 0.006320141721516848, + 0.004313747398555279, + -9.066981874639168e-05, + 0.025004688650369644, + -0.008426855318248272, + -0.027738399803638458, + -0.0022556260228157043, + 0.021267779171466827, + 0.0011662166798487306, + -0.02676028199493885, + -0.0028700842522084713, + 0.006796660367399454, + 0.01429555844515562, + -0.0023434057366102934, + 0.0036522643640637398, + -0.022158116102218628, + -0.024528170004487038, + -0.005294999573379755, + -0.02107967995107174, + 0.007103889714926481, + -0.0018574821297079325, + -0.015812894329428673, + 0.005056740250438452, + -0.004683676641434431, + -0.03079815022647381, + -0.009172983467578888, + 0.004392122384160757, + 0.006439271382987499, + -0.00426985789090395, + 0.005589688662439585, + -0.00953037291765213, + -0.032704226672649384, + 0.013781419955193996, + 0.008238756097853184, + -0.1543920338153839, + -0.004495576955378056, + 0.0035519448574632406, + -0.016452431678771973, + 0.017756588757038116, + 0.016602912917733192, + 0.004495576955378056, + 0.007680727634578943, + -0.027964118868112564, + -0.0006704961997456849, + 0.017932148650288582, + 0.01496017724275589, + -0.01753086969256401, + -0.02102951891720295, + -0.014094918966293335, + 0.007862557657063007, + -0.006878170184791088, + 0.021067138761281967, + 0.01916106417775154, + 0.018672006204724312, + 0.022107956930994987, + -0.010232610628008842, + 0.015687495470046997, + -0.014583977870643139, + 0.0020330415572971106, + 0.008608684875071049, + -0.01113548781722784, + 0.009398702532052994, + -0.011505416594445705, + -0.007317068986594677, + -0.013355061411857605, + 0.00640792166814208, + -0.00029743227059952915, + -0.01684117130935192, + -0.00782493781298399, + -0.01615147292613983, + 0.005069280508905649, + -0.016615452244877815, + 0.0011912966147065163, + 0.03368234261870384, + 0.020866500213742256, + 0.003410870209336281, + -0.008238756097853184, + 0.015173356048762798, + -0.032854706048965454, + -0.001210890244692564, + 0.005251110065728426, + 0.024804048240184784, + 0.005015985574573278, + -0.005621038842946291, + 0.027537761256098747, + -0.010458329692482948, + -0.03262898698449135, + 0.022383835166692734, + 0.014772077091038227, + 0.012239004485309124, + 0.012558774091303349, + 0.01399459969252348, + 0.004827885888516903, + 0.0024108081124722958, + 0.0014021246461197734, + 0.0009444160386919975, + -0.009035044349730015, + 0.013505540788173676, + 0.005526989232748747, + -0.021455878391861916, + 0.0142704788595438, + -0.004301207605749369, + -0.003903063712641597, + -0.01399459969252348, + 0.005824813153594732, + -0.03114927001297474, + 0.0140196792781353, + -0.009561722166836262, + -0.009492752142250538, + 0.010408169589936733, + -0.011731135658919811, + 0.007022379897534847, + 0.0021490363869816065, + -0.018233107402920723, + -0.035187140107154846, + 0.0626998171210289, + -0.0231989324092865, + -0.011536766774952412, + -0.024565789848566055, + 0.002871651668101549, + -0.016327032819390297, + 0.0005110035417601466, + -0.008245025761425495, + 0.001070599420927465, + -0.0005662577459588647, + -0.0323781855404377, + -0.013706180267035961, + -0.0021364963613450527, + 0.01875978522002697, + 0.0015439830021932721, + 0.01340522151440382, + -0.00670261075720191, + 0.00698476005345583, + -0.01600099354982376, + 0.02321147359907627, + -0.0039156037382781506, + -0.021443337202072144, + -0.004831021185964346, + 0.004849831108003855, + 0.004235372878611088, + -0.009687121957540512, + 0.0030221312772482634, + 0.027663160115480423, + -0.004614706616848707, + -0.018847566097974777, + -0.011593196541070938, + 0.023713070899248123, + -0.005113170016556978, + -0.003205528249964118, + 0.003081696107983589, + 0.023023374378681183, + -0.01424539927393198, + 0.005636713933199644, + -0.009147903881967068, + 0.04516895115375519, + -0.017104510217905045, + -0.01852152682840824, + 0.01343030110001564, + -0.0003138909814879298, + -0.02711140178143978, + -0.08251295983791351, + -0.013643480837345123, + 0.013367601670324802, + 0.02536834590137005, + 0.0316007100045681, + -0.009868951514363289, + -0.002824626863002777, + 0.01085960865020752, + 0.011543036438524723, + 0.010640159249305725, + -0.028841916471719742, + -0.017756588757038116, + -0.005624173674732447, + -0.01041444018483162, + 0.022697335109114647, + -0.008646304719150066, + -0.004501847084611654, + -0.018333427608013153, + -0.023876091465353966, + 0.03792085126042366, + 0.0029515940696001053, + 0.007799857296049595, + -0.019436944276094437, + -0.012615203857421875, + -0.0160511527210474, + 0.0012179439654573798, + -0.017568489536643028, + 0.023374492302536964, + 0.022672254592180252, + -0.010389359667897224, + 0.0010713831288740039, + -0.00700983963906765, + -0.0002721564087551087, + -0.028666356578469276, + 0.003796474076807499, + 0.013041562400758266, + -0.007699537556618452, + -0.030572431161999702, + 0.01773150824010372, + -0.027186641469597816, + -0.015336375683546066, + -0.003335630288347602, + 0.05372120440006256, + -0.018082628026604652, + 0.008809324353933334, + -0.014232859015464783, + -0.021104758605360985, + -0.009674581699073315, + -0.0028982991352677345, + -0.022433994337916374, + -0.03862308710813522, + -0.02686060220003128, + 0.0015118493465706706, + 0.003464164910838008, + 0.006740230601280928, + 0.017568489536643028, + -0.003520594909787178, + -0.023512432351708412, + -0.019825682044029236, + -0.007862557657063007, + -0.015963373705744743, + 0.017944687977433205, + -0.02418958954513073, + 0.021292857825756073, + 0.01243964396417141, + -0.03212738782167435, + -0.025907564908266068, + -0.0030566160567104816, + -0.00377766415476799, + -0.01239575445652008, + -0.01345538068562746, + -0.0015118493465706706, + 0.014333178289234638, + 0.011122947558760643, + -0.027236800640821457, + -0.005583418998867273, + -0.026685042306780815, + 0.004376447293907404, + -0.0022540586069226265, + -0.04296191409230232, + -0.014797157607972622, + -0.024252289906144142, + 0.01557463500648737, + -0.00619787722826004, + 0.026885682716965675, + 0.005520719103515148, + 0.008307726122438908, + -0.03777037188410759, + 0.0197504423558712, + -0.039375487715005875, + -0.014772077091038227, + -0.00471502635627985, + 0.02133047766983509, + -0.02405165135860443, + -0.006235497072339058, + 0.011812645941972733, + 0.005461154039949179, + -0.02013918198645115, + 0.01011975109577179, + 0.012276624329388142, + -0.012257814407348633, + -0.012157495133578777, + -0.030773071572184563, + -0.0010517894988879561, + 0.0038936587516218424, + 0.00014969581388868392, + 0.00607247743755579, + 0.008752894587814808, + 0.01488493662327528, + 0.019863301888108253, + 0.008176056668162346, + 0.006050532683730125, + -0.010276500135660172, + 0.00562730897217989, + -0.002001691609621048, + -0.029493995010852814, + -0.015837974846363068, + -0.0012853463413193822, + 0.003539404831826687, + 0.02148095704615116, + 0.0024123755283653736, + 0.007034919690340757, + -0.027387280017137527, + 0.006614830810576677, + -0.0005356915644370019, + 0.013768880628049374, + -0.027537761256098747, + 0.0029108391609042883, + 0.0027007947210222483, + -0.027312040328979492, + 0.002271300880238414, + 0.004229102749377489, + -0.004436012357473373, + -0.010959927923977375, + -0.006229226943105459, + 0.008219946175813675, + 0.0007206560694612563, + 0.01689133048057556, + -0.0077120778150856495, + 0.029042556881904602, + -0.0030926684848964214, + 0.0591384693980217, + -0.042635876685380936, + -0.029694633558392525, + 0.012533693574368954, + -0.022107956930994987, + -0.02304845303297043, + -0.01496017724275589, + 0.011731135658919811, + -0.0009820358827710152, + 0.02314877323806286, + -0.011793836019933224, + 0.05723239481449127, + 0.026233604177832603, + 0.023637831211090088, + 0.004301207605749369, + 0.0015079306904226542, + -0.03373250365257263, + 0.004338827449828386, + -0.016753392294049263, + 0.008031846955418587, + -0.04123140126466751, + 0.03027147240936756, + 0.02117999829351902, + 0.018722165375947952, + -0.0018841295968741179, + 0.010878418572247028, + -0.012220194563269615, + -0.054774560034275055, + -0.017004190012812614, + -0.001579251722432673, + -0.028515877202153206, + 0.0038058790378272533, + -0.0005725277005694807, + 0.026283763349056244, + 0.01812024787068367, + 0.013806500472128391, + -0.0017117050010710955, + -0.012326784431934357, + 0.001890399493277073, + 0.012784493155777454, + 0.028616197407245636, + 0.0036804794799536467, + 0.023562591522932053, + -0.03689257428050041, + 0.008646304719150066, + 0.042334917932748795, + 0.004436012357473373, + -0.035187140107154846, + -0.0071352394297719, + -0.009028773754835129, + 0.02971971407532692, + 0.015524474903941154, + 0.01496017724275589, + -0.007931526750326157, + 0.0004851398407481611, + 0.025706926360726357, + -0.003821553895249963, + 0.025105006992816925, + -0.035964615643024445, + -0.010978737846016884, + 0.03556333854794502, + 0.003520594909787178, + 0.020026322454214096, + 0.006809200160205364, + -0.011053978465497494, + -0.009486482478678226, + 0.022471614181995392, + -0.0007641540141776204, + -0.05693143606185913, + -0.020327281206846237, + 0.013229661621153355, + -0.014433498494327068, + 0.004044138360768557, + -0.006392246577888727, + 0.00021690219000447541, + -0.017744049429893494, + 0.024452928453683853, + -0.016063693910837173, + -0.004718161188066006, + -0.02197001688182354, + 0.001146622933447361, + 0.02163143828511238, + 0.03012099303305149, + 0.014257938601076603, + 0.011906695552170277, + 0.010853338986635208, + 0.007392308674752712, + -0.0027587921358644962, + -0.005686873570084572, + 0.01429555844515562, + -0.0005827164277434349, + 0.01325474213808775, + 0.004805941134691238, + -0.018483906984329224, + -0.01654021255671978, + -0.008050656877458096, + -0.01411999948322773, + 0.03528745844960213, + 0.01995108276605606, + 0.004131917841732502, + 0.08582351356744766, + 0.03568873554468155, + -0.017167210578918457, + -0.008107086643576622, + 0.0027415496297180653, + 0.029293354600667953, + 0.014897476881742477, + 0.009499022737145424, + -0.0013072912115603685, + -0.03486109897494316, + 0.014997797086834908, + -0.011129218153655529, + 0.015286215580999851, + -0.02671012282371521, + -0.03227786719799042, + 0.019424403086304665, + -0.00011178202112205327, + 0.008201136253774166, + -0.015486855059862137, + 0.030572431161999702, + 0.046774063259363174, + -0.00846447516232729, + 0.017267530784010887, + 0.024465469643473625, + -0.021907316520810127, + -0.028892075642943382, + 0.015060496516525745, + 0.005075550172477961, + -0.003451625118032098, + 0.017844367772340775, + -0.010088400915265083, + 0.00026294737472198904, + -0.08040624856948853, + -0.015888134017586708, + 0.035763975232839584, + -0.0160511527210474, + -0.0168286319822073, + -0.037344012409448624, + 0.012659093365073204, + 0.02701108157634735, + 0.017054351046681404, + 0.02385101094841957, + -0.014383338391780853, + -0.024716269224882126, + -0.00010521813237573951, + -0.014446037821471691, + 0.00670261075720191, + -0.024302449077367783, + -0.012583853676915169 + ], + "metadata": { + "source": "Kreye_Marieke_BA_241_V2.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 17, + "has_images": true, + "image_count": 98, + "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", + "links": [], + "last_modified": "2025-05-05T23:00:23", + "_known_field_names": "frozenset({'is_continuation', 'sent_to', 'header_footer_type', 'email_message_id', 'filename', 'languages', 'detection_class_prob', 'sent_from', 'link_texts', 'cc_recipient', 'subject', 'image_mime_type', 'image_path', 'filetype', 'page_number', 'last_modified', 'signature', 'detection_origin', 'text_as_html', 'attached_to_filename', 'bcc_recipient', 'data_source', 'link_start_indexes', 'category_depth', 'emphasized_text_tags', 'parent_id', 'orig_elements', 'page_name', 'coordinates', 'url', 'link_urls', 'file_directory', 'links', 'table_as_cells', 'emphasized_text_contents', 'key_value_pairs', 'image_base64'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "Kreye_Marieke_BA_241_V2.pdf", + "detection_class_prob": 0.3422867953777313, + "parent_id": "e02392183bc6851689602ad4b9f6039f", + "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", + "id": "ce00eae5-7e07-454f-9e4f-f79ac36f92f4", + "processing_timestamp": "2025-05-05T23:15:46.977945", + "chunk_number": 10, + "total_chunks": 56, + "chunking_strategy": "hybrid", + "word_count": 330 + } +} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000011.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000011.json new file mode 100644 index 0000000000000000000000000000000000000000..bdcf31dd23f3b8b9914c01c55e77a7781456e323 --- /dev/null +++ b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000011.json @@ -0,0 +1,1570 @@ +{ + "id": "61a115b2-0ff7-441a-f6d9-eb3d00000011", + "content": "Deutscher Wetterdienst 2022)\nDie Verdunstung ist eng mit dem Vorhandensein unversiegelter Fl\u00e4chen verbunden. In St\u00e4dten sind auf Grund des hohen Grads an Versiegelung kaum Verdunstungspotentiale vorhanden, da die versiegelte Oberfl\u00e4che das Einsickern des Regenwassers in die oberen Bodenschichten und somit eine Zwischenspeicherung der Wassermengen verhindert. Ohne eine Erh\u00f6hung des Gr\u00fcnanteils kann dieses K\u00fchlpotential nicht oder nur zu einem geringen Teil genutzt werden. Dabei stellen B\u00e4ume die wirksamste Vegetationsform zur Erzielung von K\u00fchlungseffekten dar. Je mehr B\u00e4ume gepflanzt werden, desto sp\u00fcrbarer ist der Effekt. (vgl. Feldmann et al. 2023, S. 24)\n\n## 2.3.2 Mehrwert Stadtgr\u00fcn\n\nBis zu welchem Grad die Elemente der gr\u00fcnen Infrastruktur \u00d6kosystemdienstleistungen gew\u00e4hrleisten, ist abh\u00e4ngig von der Qualit\u00e4t und Quantit\u00e4t des st\u00e4dtischen Gr\u00fcns. Die \u00d6kosystemdienstleistungen k\u00f6nnen nach den drei Dimensionen der Nachhaltigkeit in soziale, \u00f6konomische und \u00f6kologische \u00d6kosystemdienstleistung unterteilt werden (vgl. Feldmann et al. 2023, S. 13). 10\nTheorieteil\nDie Bev\u00f6lkerung in St\u00e4dten leidet unter suboptimalen klimatischen Bedingungen, L\u00e4rm und verschmutzter Luft. Diese Lebensumst\u00e4nde k\u00f6nnen chronischen Stress als Folge haben, welcher durch eine Zunahme des Stadtgr\u00fcns verringert werden kann. Als soziale \u00d6kosystemdienstleistung f\u00f6rdert urbanes Gr\u00fcn die psychische und physische Gesundheit der Menschen, stellt einen emotionalen Ausgleich her und f\u00f6rdert die Kreativit\u00e4t (vgl. Feldmann et al. 2023, S. 13). Der \u00f6konomische Mehrwert von Stadtgr\u00fcn kann nach Kampusch an verschiedenen Faktoren gemessen werden. Gr\u00fcne St\u00e4dte steigern die Lebensqualit\u00e4t und die Wettbewerbsf\u00e4higkeit, was sich positiv auf Wohnstandorts- und Investitionsentscheidungen auswirkt. Dar\u00fcber hinaus f\u00fchrt eine geringe Hitzebelastung der Bev\u00f6lkerung zu einer Entlastung des Gesundheitssystems und einer h\u00f6heren Produktivit\u00e4t auch w\u00e4hrend Hitzeperioden. Dies hat aus volkswirtschaftlicher Sicht eine positive Wirkung (vgl. Kampusch 2018, S. 26). Durch den Verschattungseffekt der B\u00e4ume k\u00f6nnen insbesondere in den Sommermonaten Energiekosten zum K\u00fchlen der Geb\u00e4ude eingespart werden (vgl. Feldmann et al. 2023, S. 14). Auch in der \u00f6kologischen Dimension bietet Stadtgr\u00fcn zahlreiche Vorteile.", + "embedding": [ + 0.03020949475467205, + -0.002805398777127266, + 0.023558219894766808, + -0.018864726647734642, + -0.0073319608345627785, + 0.027460819110274315, + -0.02433614619076252, + -0.0024099526926875114, + -0.01111138891428709, + -0.02503628097474575, + -0.0063238972797989845, + 0.0252437274903059, + -0.009134158492088318, + 0.00341963698156178, + -0.00250395224429667, + 0.002683847676962614, + 0.047531332820653915, + 0.001811921363696456, + 0.015986397862434387, + 0.005523280706256628, + -0.00914712343364954, + 0.01204490102827549, + 0.012505174614489079, + -0.009834292344748974, + -0.008278438821434975, + 0.020952165126800537, + 0.02044651098549366, + -0.021535608917474747, + -0.0067031364887952805, + 0.012284762226045132, + 0.012550554238259792, + -0.018968449905514717, + -0.022067192941904068, + -0.013639651238918304, + -0.007578304503113031, + -0.0059511405415833, + -0.004479562398046255, + -0.0025169176515191793, + 0.01763300970196724, + -0.013834132812917233, + 0.017568182200193405, + -0.018436867743730545, + 0.0061002434231340885, + -0.016868047416210175, + 0.014845438301563263, + 0.03345085680484772, + -0.006139139644801617, + 0.008589609526097775, + -0.01651798188686371, + 0.026786616072058678, + 0.03700339049100876, + 0.0182034894824028, + -0.01061221957206726, + 0.001142580178566277, + -0.02549007162451744, + 0.014339786022901535, + -0.027253372594714165, + -0.0018686451949179173, + 0.002983673708513379, + -0.016647635027766228, + -0.02628096379339695, + -0.012362554669380188, + -0.006466517224907875, + 0.010210290551185608, + -0.04685712978243828, + -0.01353592798113823, + -0.026916271075606346, + -0.014715783298015594, + 0.0005352299194782972, + -0.01398971863090992, + 0.03513636440038681, + 0.04504196718335152, + 0.024738075211644173, + -0.017853422090411186, + 0.0006478672148659825, + -0.0039025999139994383, + 0.0047096991911530495, + 0.014404612593352795, + -0.011137319728732109, + 0.0018929553916677833, + -0.0005895227077417076, + -0.025736413896083832, + -0.022404294461011887, + 0.028316538780927658, + 0.03070218116044998, + 0.02507517673075199, + -0.0055913496762514114, + 0.022287605330348015, + 0.01231069304049015, + 0.0064438278786838055, + 0.010592770762741566, + 0.01780156046152115, + -0.003918806556612253, + 0.026164274662733078, + -0.00928974337875843, + 0.0025655380450189114, + 0.010009326040744781, + 0.007636649068444967, + 0.025892000645399094, + -0.011610559187829494, + -0.023065531626343727, + 0.012265314348042011, + -0.015778951346874237, + -0.007364374585449696, + -0.043563906103372574, + -0.00019589981820899993, + -0.002761640353128314, + 0.014832472428679466, + 0.01260241586714983, + -0.02992425486445427, + -0.023973112925887108, + 0.033787958323955536, + -0.0142749585211277, + -0.030520664528012276, + 0.02445283532142639, + -0.03000204637646675, + 0.026216136291623116, + 0.010962286032736301, + -0.017775628715753555, + -0.012712622061371803, + 0.011266974732279778, + 0.007027273066341877, + -0.003860462224110961, + -0.027460819110274315, + 0.023272980004549026, + 0.014417578466236591, + 0.012920069508254528, + -0.0004890405107289553, + -0.0455346554517746, + -0.019046243280172348, + -0.007870026864111423, + 0.0227673277258873, + 0.007597752846777439, + -0.004038737155497074, + -0.02016127109527588, + 0.028835156932473183, + -0.011805040761828423, + -0.0077079590409994125, + -0.019305553287267685, + -0.025140004232525826, + -0.011156768538057804, + 0.006670723203569651, + -0.0331137552857399, + -0.02127630077302456, + 0.011033596470952034, + 0.03835179656744003, + 0.02135409228503704, + 0.011059527285397053, + -0.010553875006735325, + -0.027383025735616684, + -0.013626686297357082, + -0.02790164388716221, + 0.005818245001137257, + -0.017516320571303368, + 0.005526522174477577, + -0.005046800710260868, + -0.022313537076115608, + -0.00683927396312356, + -0.024012010544538498, + 0.012984896078705788, + 0.030391011387109756, + -0.022235743701457977, + 0.00487176701426506, + -0.008278438821434975, + 0.017529286444187164, + 0.0008010215824469924, + -0.000845185131765902, + 0.00775982066988945, + 0.00775982066988945, + -0.007766303606331348, + 0.007805199827998877, + 0.04073743894696236, + -0.047946225851774216, + 0.022093122825026512, + -0.0024731592275202274, + 0.023117393255233765, + 0.012654277496039867, + 0.020472442731261253, + -9.13532312551979e-06, + -0.03293223679065704, + -0.027823852375149727, + 0.010197324678301811, + 0.01067704614251852, + 0.01837204024195671, + -0.029768669977784157, + 0.006923549342900515, + 0.03485112637281418, + 0.022495051845908165, + 0.005332040600478649, + 0.006469758693128824, + -0.006628585513681173, + 0.00010336906416341662, + 0.015817847102880478, + -0.012686691246926785, + -0.6273202300071716, + 0.009451812133193016, + 0.004022530280053616, + 0.0005652125109918416, + 0.00833678338676691, + 0.007863543927669525, + 0.04143757373094559, + 0.014249027706682682, + -0.014949161559343338, + 0.026812545955181122, + 0.012971931137144566, + -0.0015558537561446428, + -0.026293929666280746, + 0.00883595272898674, + 0.00560755655169487, + -0.011014148592948914, + 0.005225075408816338, + 0.005357971414923668, + 0.029664944857358932, + -0.0005947899189777672, + -0.01651798188686371, + 0.023285945877432823, + -0.013873029500246048, + 0.0030112252570688725, + 0.026164274662733078, + 0.0264884103089571, + -0.006067829672247171, + -0.02701999433338642, + -0.0054843844845891, + 0.004152184817939997, + -0.004699974786490202, + 0.034410297870635986, + -0.031220799311995506, + 0.026916271075606346, + 0.05673680081963539, + 0.03456588461995125, + -0.0033191547263413668, + 0.008116370998322964, + -0.00258660688996315, + 0.01444350928068161, + -0.0038863930385559797, + -0.005221834406256676, + 0.0064146555960178375, + -0.005497349891811609, + 0.009976912289857864, + 0.005108386743813753, + 0.043926939368247986, + -0.027123717591166496, + -0.012284762226045132, + -0.0076172007247805595, + 0.03319154679775238, + 0.00027511059306561947, + 0.02127630077302456, + -0.0024682972580194473, + 0.023363737389445305, + 0.005234799813479185, + 0.020044583827257156, + -0.009276778437197208, + 0.002335401251912117, + -0.006573482416570187, + -0.007033755537122488, + -5.1481943955877796e-05, + -0.011818005703389645, + -0.02016127109527588, + -0.030520664528012276, + 0.05435115844011307, + -0.035654980689287186, + -0.016129016876220703, + 0.0012973551638424397, + -0.01109194103628397, + -0.016193844377994537, + 0.006495689507573843, + 0.015843776986002922, + -0.013976752758026123, + 0.016699496656656265, + 0.010482564568519592, + 0.02416759543120861, + -0.012965448200702667, + -0.020874371752142906, + 0.0356031209230423, + -0.006524861790239811, + -0.03150603920221329, + 0.004029013216495514, + 0.007746855262666941, + 0.011318836361169815, + -0.03303596377372742, + -0.008855401538312435, + 0.0016725427703931928, + -0.008161749690771103, + 0.004602733999490738, + 0.019603757187724113, + 0.0356031209230423, + -0.0169717725366354, + -0.012090280652046204, + -0.01717921905219555, + 0.04291563481092453, + -0.019214794039726257, + 0.022754361853003502, + 0.01280986238270998, + -0.041826535016298294, + -0.009309192188084126, + 0.012758000753819942, + 0.011986556462943554, + 0.0037956349551677704, + 0.004161908756941557, + 0.010962286032736301, + -0.017529286444187164, + -0.014417578466236591, + 0.03977799415588379, + -0.019642654806375504, + 0.0032851204741746187, + 0.006485965568572283, + -0.010067670606076717, + -0.007273616269230843, + -0.011104905977845192, + -0.014417578466236591, + 0.04244887828826904, + -0.010132498107850552, + -0.00469673378393054, + 0.014469440095126629, + -0.0009553914424031973, + -0.009036917239427567, + 0.012232900597155094, + -0.021885676309466362, + 0.0066318269819021225, + 0.012518140487372875, + -0.008427541702985764, + -0.0008848918369039893, + -0.023363737389445305, + -0.01924072578549385, + -0.0006531344261020422, + 0.03464367613196373, + 0.037936899811029434, + -0.0007515908218920231, + 0.03236175701022148, + -0.003429361153393984, + 0.021367058157920837, + 0.003293223911896348, + -0.004255908541381359, + -0.015597433783113956, + -0.0008929952164180577, + -0.0014375441242009401, + 0.010852079838514328, + -0.032335828989744186, + -0.015701157972216606, + -0.006048381794244051, + -0.012362554669380188, + -0.0039609442465007305, + -0.02594386227428913, + 0.006521620322018862, + -0.02027796022593975, + -0.006359552498906851, + -0.014002684503793716, + 0.00790244061499834, + -0.0039901165291666985, + 0.006644792389124632, + 0.004518458619713783, + -0.026812545955181122, + -0.014391647651791573, + -0.02839433215558529, + 0.016530945897102356, + 0.00881650485098362, + -0.03054659627377987, + -0.0035914292093366385, + -0.022028297185897827, + -0.014287923462688923, + 0.0009399949922226369, + 0.015454813838005066, + -0.015039919875562191, + -0.029457498341798782, + -0.002760019851848483, + -0.025062210857868195, + 0.014197166077792645, + 0.010113049298524857, + -0.017620043829083443, + -0.013769306242465973, + -0.02896481193602085, + -0.002416435396298766, + -0.000905960681848228, + 0.007377339992672205, + 0.024971453472971916, + -0.016206810250878334, + -0.013393308036029339, + -0.02769419737160206, + 0.014871369116008282, + -0.008874849416315556, + 0.019629688933491707, + 0.006968928501009941, + -0.0013945960672572255, + 0.007552373688668013, + 0.0326988585293293, + 0.03734049201011658, + -0.002262470778077841, + 0.008868366479873657, + -0.022002365440130234, + -0.02197643555700779, + -0.01672542840242386, + 0.022689534351229668, + -0.017451493069529533, + 0.01562336552888155, + 0.04421217739582062, + 0.004810181446373463, + 0.019772307947278023, + -0.020303891971707344, + 0.012427382171154022, + -0.007895957678556442, + 0.0024050907231867313, + -0.0004359631857369095, + 0.01812569610774517, + -0.0019302311120554805, + 0.028783295303583145, + 0.011766144074499607, + -0.041281986981630325, + -0.011493870057165623, + -0.0103464275598526, + 0.05901871994137764, + -0.013834132812917233, + -0.022170916199684143, + -0.011124354787170887, + -0.020290926098823547, + 0.0006636689067818224, + -0.018773969262838364, + 0.012855242006480694, + -0.027720129117369652, + -0.01795714534819126, + 0.013127516023814678, + -0.010890976525843143, + 0.020083479583263397, + 0.002863743342459202, + -0.018929554149508476, + -0.0032332586124539375, + 0.0027729852590709925, + -0.018307212740182877, + 0.011850419454276562, + 0.008719263598322868, + 0.017853422090411186, + 0.011046561412513256, + -0.027875714004039764, + 0.038922276347875595, + 0.0008848918369039893, + 0.005983554292470217, + 0.03005390800535679, + 0.010787253268063068, + -0.029950184747576714, + 0.036355115473270416, + 0.009970429353415966, + 0.02826467715203762, + 0.012796897441148758, + -0.002625503344461322, + 0.016582807525992393, + -0.012751518748700619, + 0.006022450514137745, + 0.00592845119535923, + -0.01310158520936966, + 0.013419238850474358, + -0.028653640300035477, + 0.028005369007587433, + -0.013069171458482742, + 0.02574937976896763, + 0.015610399655997753, + 0.004732388537377119, + -0.003400188870728016, + 0.009477742947638035, + -0.02156154066324234, + -0.0007941336953081191, + -0.005633487366139889, + -0.002011265140026808, + -0.019720446318387985, + -0.021094784140586853, + -0.01262186374515295, + 0.025710484012961388, + -0.010754839517176151, + -0.026786616072058678, + 0.0036141187883913517, + -0.002716261427849531, + 0.00746161537244916, + 0.005014386959373951, + 0.024180561304092407, + -0.008570161648094654, + -0.0012625105446204543, + -0.002567158779129386, + -0.007993198931217194, + -0.01295248232781887, + 0.03415099158883095, + -0.004939835984259844, + -0.019305553287267685, + -0.00042704943916760385, + 0.0043725972063839436, + -0.010249187238514423, + -0.015001023188233376, + -0.016868047416210175, + -0.006333621218800545, + -0.0314541757106781, + -0.0021587470546364784, + -0.0015307331923395395, + -0.019214794039726257, + 0.018099766224622726, + -0.022987740114331245, + -0.0007937285117805004, + 0.012608898803591728, + 0.014806541614234447, + -0.002674123737961054, + -0.024725109338760376, + 0.0007868406246416271, + 0.02569751814007759, + 0.019681550562381744, + -0.01262186374515295, + 0.010981734842061996, + 0.001656336011365056, + -0.00862850621342659, + -0.012466278858482838, + -0.0021571265533566475, + -0.014430543407797813, + 0.013471100479364395, + -0.006826308555901051, + 0.008861883543431759, + 0.007318995427340269, + -0.006615620106458664, + 0.04091895371675491, + 0.0054714190773665905, + -0.006554034072905779, + -0.018268316984176636, + -0.00516348984092474, + 0.01198007445782423, + 0.04029661417007446, + 0.005743693560361862, + 0.004615699406713247, + 0.019292587414383888, + 0.015908604487776756, + -0.010553875006735325, + 0.0016595773631706834, + -0.040867093950510025, + -0.0036011531483381987, + -0.00960091408342123, + -0.0021862986031919718, + -0.004317494109272957, + 0.008518299087882042, + -0.017373699694871902, + 0.005212110001593828, + 0.0009634948801249266, + -0.00638548331335187, + -0.026047585532069206, + 0.0072671337984502316, + -0.0007633407367393374, + 0.0008994779782369733, + -0.0032818790059536695, + -0.013613720424473286, + 0.06716102361679077, + 0.021120715886354446, + 0.021367058157920837, + 0.03459181636571884, + 0.02226167544722557, + 0.014365716837346554, + -0.006291483528912067, + 0.004531424026936293, + 0.015247367322444916, + 0.005682107526808977, + 0.02532152086496353, + -0.02901667356491089, + 0.002102023223415017, + 0.014793576672673225, + -0.02061506174504757, + 0.03277665376663208, + 0.009328640066087246, + 0.029976116493344307, + 0.025088142603635788, + -0.007111548446118832, + -0.024776970967650414, + 0.01621977612376213, + -0.017620043829083443, + -0.008187680505216122, + 0.014469440095126629, + -0.009626844897866249, + -0.008356231264770031, + 0.00939346756786108, + -0.015039919875562191, + -0.026229102164506912, + -0.014715783298015594, + -0.0014934575883671641, + -0.023519322276115417, + 0.018307212740182877, + 0.0010088739218190312, + -0.00715044466778636, + -0.014949161559343338, + -0.04216363653540611, + -0.025269659236073494, + -0.006171553395688534, + -0.01506585069000721, + 0.00365301501005888, + -0.017788594588637352, + 0.016116052865982056, + 0.005075972992926836, + -0.002455331850796938, + 0.011241043917834759, + 0.03923344612121582, + -0.011532765813171864, + -0.012505174614489079, + -0.0053741782903671265, + 0.008764643222093582, + 0.0018556797876954079, + 0.0152084706351161, + -0.014339786022901535, + 0.004213770851492882, + -0.028783295303583145, + 0.0022802981548011303, + -0.02271546609699726, + 0.002722744131460786, + -0.029768669977784157, + -0.001967506716027856, + -0.004965766798704863, + -0.0025590553414076567, + -0.03111707605421543, + -0.023350771516561508, + 0.02301366999745369, + -0.008615540340542793, + -0.005555694457143545, + 0.008434023708105087, + 0.0065475511364638805, + -0.006534585729241371, + 0.0033839819952845573, + 0.019253689795732498, + -0.0025849861558526754, + 0.028238745406270027, + -0.043434251099824905, + 0.027175579220056534, + 0.019137000665068626, + 0.0011847178684547544, + -0.009711120277643204, + 0.022378362715244293, + -0.00242615956813097, + -0.030676251277327538, + -0.0026092964690178633, + -0.007312512956559658, + -0.005581625271588564, + 0.02984646148979664, + -0.01850169524550438, + 0.02139298990368843, + -0.011824488639831543, + 0.0005822296370752156, + 0.014184200204908848, + 0.006041898857802153, + -0.009490707889199257, + 0.026462480425834656, + -0.007545890752226114, + -0.011195664294064045, + -0.029742738232016563, + 0.04333052784204483, + 0.0010348048526793718, + 0.022443190217018127, + 0.0070791346952319145, + 0.004975490737706423, + 0.013911926187574863, + -0.025969792157411575, + 0.009698155336081982, + -0.010865045711398125, + -0.0006737981457263231, + 0.011869868263602257, + 0.008200646378099918, + -0.024608420208096504, + -0.01825535111129284, + 0.01243386510759592, + 0.016751358285546303, + -0.0484129823744297, + 0.008427541702985764, + -0.017594113945961, + 0.008434023708105087, + 0.0023078497033566236, + 0.014495370909571648, + 0.016284603625535965, + -0.02384345978498459, + -0.00713747926056385, + 0.0054649366065859795, + 0.010994699783623219, + 0.012777449563145638, + -0.033917613327503204, + -0.03619953244924545, + -0.01784045621752739, + 0.01937037892639637, + -0.02305256761610508, + -0.02694220095872879, + 0.027331164106726646, + -0.02880922518670559, + 0.028368400409817696, + 0.006761481054127216, + 0.012570002116262913, + -0.014028615318238735, + 0.025230761617422104, + 0.0003223129315301776, + -0.022157950326800346, + -0.010884493589401245, + -0.011487387120723724, + -0.0007730648503638804, + -0.012362554669380188, + 0.035525329411029816, + 0.005468177609145641, + 0.00591872725635767, + 0.011409594677388668, + 0.016129016876220703, + 0.01850169524550438, + 0.036355115473270416, + -0.013808201998472214, + -0.028757363557815552, + -0.026708822697401047, + -0.011707799509167671, + -0.009717603214085102, + 0.02010940946638584, + -0.011143802665174007, + 0.010216773487627506, + -0.006761481054127216, + -0.01808680035173893, + 0.038014695048332214, + -0.00591872725635767, + -0.01564929634332657, + 5.885097925784066e-05, + 0.007688510697335005, + -0.035240087658166885, + 0.028160953894257545, + 0.008641471154987812, + -0.012453312985599041, + -0.007474580779671669, + -0.004369356203824282, + -0.012628346681594849, + -0.03345085680484772, + 0.02173009142279625, + -0.004693492315709591, + -0.012595932930707932, + 0.001215510768815875, + -0.011040079407393932, + -0.017788594588637352, + 0.00044649760820902884, + 0.017892317846417427, + -0.037885040044784546, + 0.015104747377336025, + -0.012446830049157143, + -0.010339944623410702, + 0.003317533992230892, + -0.01262186374515295, + -0.034954849630594254, + 0.01708845980465412, + -0.025801241397857666, + -0.003093880135565996, + 0.04395287111401558, + 0.0014294406864792109, + 0.01854059100151062, + 0.0025363657623529434, + -0.0005174024263396859, + 0.02777199074625969, + 0.01094932109117508, + 0.03879262134432793, + 0.019046243280172348, + -0.020213134586811066, + -0.016375361010432243, + -0.038222141563892365, + -0.004570320714265108, + -0.015584468841552734, + 0.010022291913628578, + -0.00833678338676691, + -0.008181197568774223, + -0.012232900597155094, + 0.02458249032497406, + 0.010255669243633747, + -0.008479403331875801, + 0.0008751677814871073, + 0.035525329411029816, + 0.034539952874183655, + 0.007273616269230843, + -0.009367536753416061, + -0.02478993684053421, + -0.00031907157972455025, + -0.0022154708858579397, + -0.009173054248094559, + -0.00823954213410616, + 0.001941575901582837, + -0.005789072718471289, + 0.0005101093556731939, + 0.04768691956996918, + 0.0018070593941956758, + 0.030261356383562088, + -0.004311011638492346, + 0.007338443771004677, + -0.017477424815297127, + -0.024362077936530113, + 0.0017017150530591607, + 0.015001023188233376, + 0.016154948621988297, + 0.03920751437544823, + 0.003918806556612253, + -0.035784635692834854, + 0.021885676309466362, + -0.012725587002933025, + 0.011364215053617954, + 0.0188258308917284, + 0.002267332747578621, + 0.018216455355286598, + -0.0036141187883913517, + 0.0004671612987294793, + -0.001622301759198308, + 0.016505016013979912, + 0.01867024600505829, + -0.0009067710489034653, + -0.0006916256388649344, + 0.0044017694890499115, + 0.006259070243686438, + -0.013328480534255505, + 2.8539179766085e-05, + 0.014715783298015594, + -0.00533852307125926, + -0.007189340889453888, + -0.009017469361424446, + -0.015675226226449013, + -0.010878010652959347, + -0.015234401449561119, + 0.023389669135212898, + -0.025217797607183456, + 0.0025023315101861954, + 0.007986715994775295, + -0.016116052865982056, + 0.01990196295082569, + -0.01899438165128231, + -0.01986306719481945, + -0.010119532234966755, + 0.02512703835964203, + -0.03365830332040787, + 0.025062210857868195, + 0.0372626967728138, + 0.015078816562891006, + 0.005092179868370295, + 0.007675545290112495, + -0.002324056578800082, + -0.027123717591166496, + 0.022559879347682, + -0.0006158587639220059, + -0.020666925236582756, + 0.0031619486398994923, + -0.01846279762685299, + 0.010741873644292355, + -0.016323499381542206, + -0.006677205674350262, + 0.0297945998609066, + -0.004683768376708031, + 0.004110047128051519, + -0.01627163775265217, + -0.014067511074244976, + 0.036484770476818085, + 0.004067909438163042, + -0.018073834478855133, + 0.05144689977169037, + -0.03192093223333359, + -0.003782669547945261, + 0.01076132245361805, + 0.013885995373129845, + -0.028523985296487808, + -0.009010986424982548, + -0.029457498341798782, + -0.0347733311355114, + 0.008291403762996197, + -0.014054546132683754, + -0.00546169513836503, + 0.017205148935317993, + -0.018812865018844604, + -0.022339466959238052, + 0.02790164388716221, + 0.00867388490587473, + 0.010495530441403389, + 0.01908513903617859, + 0.015662262216210365, + -0.018177557736635208, + 0.010100084356963634, + 0.0011539248516783118, + -0.018449833616614342, + -0.015182539820671082, + 0.005873348098248243, + -0.03407319635152817, + 0.0004590578901115805, + 0.010878010652959347, + 0.0285499170422554, + 0.027953505516052246, + -0.026994062587618828, + 0.0026725030038505793, + 0.01444350928068161, + -0.03181720897555351, + -0.01791824959218502, + 0.001773025025613606, + -0.007688510697335005, + -0.002437504241243005, + 0.03210245072841644, + -0.02143188565969467, + 0.021613402292132378, + 0.0029512601904571056, + 0.02950935997068882, + -0.011124354787170887, + -0.01475467998534441, + -0.012161590158939362, + -0.005179696716368198, + 0.03129859268665314, + -0.00025444693164899945, + -0.009886153973639011, + -0.004823146853595972, + 0.014184200204908848, + -0.011824488639831543, + 0.00020126832532696426, + 0.0014432164607569575, + -0.004664320033043623, + 0.0024034699890762568, + -0.011818005703389645, + 0.004333700984716415, + 0.006456793285906315, + 0.002854019170626998, + -0.0010988217545673251, + -0.029872393235564232, + 0.001273855334147811, + 0.025917930528521538, + 0.012103245593607426, + -0.04250073805451393, + -0.005960864946246147, + 0.0025882276240736246, + -0.007377339992672205, + -0.007915406487882137, + 0.01750335469841957, + -0.03282851353287697, + -0.008570161648094654, + -0.014456475153565407, + 0.015493710525333881, + 0.02429725043475628, + 0.0024731592275202274, + 0.0033013273496180773, + 0.018281282857060432, + -0.021496713161468506, + -0.02784978225827217, + 0.0014480785466730595, + -0.023026635870337486, + 0.011370697990059853, + 0.015428883023560047, + 0.007805199827998877, + 0.022754361853003502, + -0.02958715334534645, + 0.020329821854829788, + -0.008122853003442287, + -0.0003302137483842671, + -0.012297727167606354, + -0.0035298431757837534, + -0.013873029500246048, + 0.021587470546364784, + 0.009529604576528072, + -0.009814844466745853, + 0.017723767086863518, + 0.002615779172629118, + -0.016868047416210175, + -0.006586447823792696, + -0.005507074296474457, + -0.009244364686310291, + -0.015260332264006138, + -0.004499010741710663, + 0.01791824959218502, + -0.018151627853512764, + -0.01933148317039013, + -0.004061426501721144, + 0.013231240212917328, + -0.014573163352906704, + 0.02516593411564827, + 0.19562268257141113, + -0.0026870891451835632, + -0.01277096662670374, + 0.031765349209308624, + -0.009989878162741661, + 0.001585836405865848, + 0.010942838154733181, + 0.005643211305141449, + -0.001941575901582837, + 0.018968449905514717, + -0.012842276133596897, + 0.0057501764968037605, + -0.00838216207921505, + 0.0027195026632398367, + 0.020329821854829788, + -0.021055888384580612, + -0.015571502968668938, + -0.0038442553486675024, + 0.003549291519448161, + 0.03365830332040787, + 0.015636330470442772, + -0.014184200204908848, + 0.01903327740728855, + -0.006955963093787432, + 0.025295589119195938, + -0.002416435396298766, + 0.021496713161468506, + -0.0018735072808340192, + 0.023000705987215042, + 0.0005571090732701123, + 0.006975410971790552, + 0.002534745028242469, + 0.0048134224489331245, + -0.013808201998472214, + -0.00016085259267129004, + -0.005215351469814777, + 0.011779109947383404, + -0.017438527196645737, + 0.026410618796944618, + 0.033010032027959824, + 0.019020313397049904, + -0.022196847945451736, + -0.012394968420267105, + -0.014404612593352795, + -0.02093919925391674, + 0.02578827738761902, + -0.010307530872523785, + 0.005419557448476553, + -0.013179377652704716, + -0.014158269390463829, + -0.01969451643526554, + -0.010975251905620098, + 0.014482405968010426, + 0.03298410028219223, + -0.012245865538716316, + 0.011331801302731037, + 0.005387143697589636, + -0.027616403996944427, + 0.011416076682507992, + -0.0032672928646206856, + -0.02735709585249424, + 0.03824807330965996, + -0.0219375379383564, + 0.02259877696633339, + -0.016790255904197693, + 0.009587949141860008, + -0.031143005937337875, + 0.012420899234712124, + -0.0034131542779505253, + 0.0003371016646269709, + -0.014975092373788357, + -0.015441848896443844, + -0.02478993684053421, + 0.020329821854829788, + -0.019396310672163963, + -0.01651798188686371, + 0.0038766690995544195, + 0.012855242006480694, + 0.02392125129699707, + 0.01646611839532852, + -0.023610081523656845, + 0.017360735684633255, + -0.01111138891428709, + -0.040867093950510025, + 0.005850658286362886, + -0.04081523045897484, + 0.035525329411029816, + 0.0037146008107811213, + -0.012161590158939362, + -0.004035495687276125, + -0.009322157129645348, + 0.009970429353415966, + -0.011364215053617954, + -0.021717125549912453, + 0.02847212366759777, + -0.0003494593547657132, + 0.019318517297506332, + 0.005195903591811657, + -0.0012454934185370803, + 0.011137319728732109, + -0.006356311030685902, + 0.04664968326687813, + 0.03679594025015831, + -0.02930191345512867, + 6.938540900591761e-05, + 0.010022291913628578, + -0.00790244061499834, + 0.014482405968010426, + -0.0013354411348700523, + -0.006767963990569115, + -0.007597752846777439, + -0.02582717314362526, + 0.00729306461289525, + -0.0031036040745675564, + 0.005643211305141449, + 0.023402633145451546, + 0.0008881331887096167, + -0.006615620106458664, + -0.0002165635087294504, + -0.0038150830660015345, + -0.014728749170899391, + 0.012608898803591728, + 0.0034844642505049706, + -0.0012187521206215024, + 0.012505174614489079, + -0.012414416298270226, + -0.04727202281355858, + 0.010113049298524857, + -0.012103245593607426, + -0.012343106791377068, + 0.017451493069529533, + -0.0238045621663332, + -0.0018070593941956758, + 0.005270454566925764, + -0.0030679490882903337, + 0.0314541757106781, + 0.0008484265417791903, + -0.0285499170422554, + -0.012699656188488007, + 0.00227543618530035, + 0.013808201998472214, + -0.03521415591239929, + 4.299869397073053e-05, + -0.020926233381032944, + 0.020809544250369072, + 0.0015493710525333881, + 0.0003863298334181309, + -0.012271796353161335, + -0.012466278858482838, + -0.008006163872778416, + 0.015364056453108788, + -0.013795237056910992, + -0.016038259491324425, + -0.021470781415700912, + 0.008913745172321796, + -0.00838216207921505, + -0.024180561304092407, + -0.032283965498209, + 0.011033596470952034, + 0.02118554152548313, + -0.010087118484079838, + 0.007130996324121952, + -0.003782669547945261, + -0.029768669977784157, + -0.009523121640086174, + 0.012051383964717388, + -0.16170507669448853, + 0.016453154385089874, + 0.005503832828253508, + -0.02392125129699707, + 0.014988058246672153, + -0.004236460197716951, + -0.003249465487897396, + -0.012213451787829399, + -0.01903327740728855, + 0.006336862687021494, + 0.03542160615324974, + 0.003704876871779561, + -0.02014830708503723, + -0.023739736527204514, + -0.014119372703135014, + -0.0052542476914823055, + -0.006754998583346605, + 0.03192093223333359, + 0.019668584689497948, + 0.018099766224622726, + 0.025567863136529922, + -0.023532288148999214, + 0.00862850621342659, + -0.014119372703135014, + 0.012725587002933025, + -0.00652810325846076, + -0.02267656847834587, + 0.01734776981174946, + 0.000893805583473295, + -0.025308554992079735, + 0.008122853003442287, + -0.0014367337571457028, + 0.031091144308447838, + -0.014106407761573792, + -0.0018329902086406946, + -0.016336465254426003, + 0.023065531626343727, + -0.015714123845100403, + -0.004479562398046255, + 0.04071150720119476, + 0.027953505516052246, + 0.007338443771004677, + -0.024271318688988686, + 0.0027243648655712605, + -0.03511043265461922, + 0.0023062292020767927, + 0.013782271184027195, + 0.010702977888286114, + -0.004544389434158802, + -0.0016498533077538013, + 0.01461206004023552, + -0.023065531626343727, + -0.009477742947638035, + 0.017970111221075058, + -0.0006932463147677481, + 0.018981415778398514, + 0.01277096662670374, + 0.01535109058022499, + -0.0030047425534576178, + 0.0033774992916733027, + 0.0020955405198037624, + -0.019940858706831932, + -0.004084116313606501, + 0.012252348475158215, + -0.00026639943826012313, + -0.0215226449072361, + 0.0049041807651519775, + -0.006090519484132528, + -0.005957623478025198, + 0.00028605019906535745, + -0.01829424686729908, + -0.005348247475922108, + 0.025982758030295372, + -0.003899358445778489, + -0.002901019062846899, + 0.007442167494446039, + -0.005678866524249315, + 0.004210529383271933, + -0.001334630767814815, + 0.006126174237579107, + -0.03500670939683914, + 0.051343176513910294, + -0.026708822697401047, + -0.010067670606076717, + -0.016453154385089874, + 0.011273457668721676, + 0.0014116131933405995, + -0.0058830720372498035, + 0.007182858418673277, + 0.007118030916899443, + 0.0043661147356033325, + -0.040659643709659576, + -0.018761003389954567, + 0.002640089485794306, + 0.00456383777782321, + -0.005581625271588564, + 0.02040761522948742, + -0.008174714632332325, + -0.0026870891451835632, + -0.024932557716965675, + 0.007396788336336613, + -0.006434103474020958, + -0.02467324770987034, + -0.007960785180330276, + 0.001295734429731965, + 0.026579169556498528, + -0.0038150830660015345, + 0.01233662385493517, + 0.028238745406270027, + 0.0042397016659379005, + -0.0022316777613013983, + -0.00502735236659646, + 0.0372367687523365, + -0.013795237056910992, + -0.009367536753416061, + 0.0001559905504109338, + 0.017231080681085587, + -0.022793257609009743, + 0.0055005913600325584, + -0.020264996215701103, + 0.04543093219399452, + -0.0010129256406798959, + -0.029898323118686676, + 0.000998339499346912, + 0.007746855262666941, + -0.020640993490815163, + -0.08593498915433884, + 0.012485726736485958, + 0.02031685784459114, + 0.02880922518670559, + 0.014365716837346554, + 0.009380501694977283, + 0.0023710562381893396, + 0.0152084706351161, + 0.005759900435805321, + 0.016621705144643784, + -0.045923616737127304, + -0.011066010221838951, + 0.005267213098704815, + -0.011370697990059853, + 0.008006163872778416, + -0.013730409555137157, + -0.013561858795583248, + -0.017516320571303368, + -0.027538612484931946, + 0.030676251277327538, + 0.015143643133342266, + -0.0055978321470320225, + -0.02412869967520237, + -0.008887814357876778, + -0.008894297294318676, + 0.008161749690771103, + -0.021328162401914597, + 0.010275118052959442, + 0.019603757187724113, + 0.0035395673476159573, + 0.028575846925377846, + -0.011143802665174007, + 0.023026635870337486, + -0.03295816853642464, + 0.005487625952810049, + -0.006453551817685366, + -0.01036587543785572, + -0.03054659627377987, + 0.008032095618546009, + -0.0213151965290308, + -0.017282942309975624, + -0.00970463827252388, + 0.05310647562146187, + -0.045171622186899185, + 0.0007191771874204278, + -0.011694834567606449, + -0.018475763499736786, + -0.013062689453363419, + 0.003947978839278221, + -0.01933148317039013, + -0.04714236781001091, + -0.023778632283210754, + -0.0015177677851170301, + 0.020433546975255013, + 0.008135818876326084, + 0.024725109338760376, + 0.0031068455427885056, + -0.013950821943581104, + -0.01646611839532852, + 0.0005380660877563059, + -0.002625503344461322, + 0.018735073506832123, + -0.033580511808395386, + 0.03549939766526222, + 0.013497031293809414, + -0.012219934724271297, + -0.0312467310577631, + -0.009263812564313412, + -0.009192503057420254, + -0.025114072486758232, + -0.01492323074489832, + 0.004437424708157778, + 0.006482724100351334, + 0.002290022326633334, + -0.023895321413874626, + 0.002644951455295086, + -0.03409912809729576, + -0.012926551513373852, + -0.0058765895664691925, + -0.027097785845398903, + -0.022702500224113464, + -0.02375270053744316, + 0.021743057295680046, + -0.009646293707191944, + 0.019020313397049904, + 0.00029152000206522644, + 0.002730847569182515, + -0.0258660688996315, + 0.006735550239682198, + -0.019525965675711632, + 0.001407561474479735, + 0.006080795079469681, + 0.033295270055532455, + -0.014287923462688923, + -0.0014334924053400755, + 0.008881332352757454, + 0.01204490102827549, + -0.011934694834053516, + 0.012077314779162407, + 0.002324056578800082, + -0.019979756325483322, + -0.018864726647734642, + -0.037184905260801315, + 0.015104747377336025, + 0.0005340143688954413, + -0.0069883763790130615, + -0.0025396072305738926, + 0.004054944030940533, + 0.013172895647585392, + 0.0145861292257905, + 0.014806541614234447, + -0.003046880243346095, + -0.0014326820382848382, + 0.016025293618440628, + 0.007571821566671133, + -0.010242704302072525, + -0.01667356677353382, + -0.0038183245342224836, + 0.014521301724016666, + 0.026631031185388565, + 0.012485726736485958, + -0.008855401538312435, + -0.021704159677028656, + 0.0018232661532238126, + -0.019175898283720016, + 0.0058765895664691925, + -0.03407319635152817, + 0.009691672399640083, + -0.014962127432227135, + -0.009672224521636963, + -0.007675545290112495, + -0.010385324247181416, + 0.002267332747578621, + 0.00411652959883213, + -0.004346666391938925, + 0.00182650750502944, + -0.0028702260460704565, + 0.0038734276313334703, + 0.009659258648753166, + 0.038222141563892365, + -0.0029075017664581537, + 0.05064304172992706, + -0.03923344612121582, + -0.025762345641851425, + 0.02226167544722557, + -0.027590474113821983, + -0.013121034018695354, + -0.015402952209115028, + 0.007215271703898907, + 0.011532765813171864, + 0.012991379015147686, + -0.021120715886354446, + 0.0359920859336853, + 0.015467779710888863, + 0.006657757796347141, + -0.003516877768561244, + 0.02701999433338642, + -0.026968132704496384, + 0.008304369635879993, + 0.01940927654504776, + 0.0037956349551677704, + -0.028705501928925514, + 0.030105771496891975, + 0.01279041450470686, + 0.02673475444316864, + 0.00485231913626194, + 0.034202851355075836, + -0.021198507398366928, + -0.025230761617422104, + 2.3107366359909065e-05, + 0.013049723580479622, + -0.02764233574271202, + -0.020459476858377457, + -0.010048222728073597, + 0.018735073506832123, + 0.01978527382016182, + -0.010301048867404461, + -0.021250369027256966, + 0.03249141201376915, + -0.02093919925391674, + 0.00989263691008091, + 0.033710166811943054, + 0.00023074446653481573, + 0.013691512867808342, + -0.03295816853642464, + 0.008758160285651684, + 0.0318690724670887, + -0.0022802981548011303, + -0.022041261196136475, + -0.0021862986031919718, + -0.010975251905620098, + 0.014404612593352795, + 0.02235243283212185, + 0.0026870891451835632, + 0.0020501615945249796, + -0.0020955405198037624, + 0.017308874055743217, + 0.015104747377336025, + 0.014015649445354939, + -0.013717444613575935, + -0.0007629356114193797, + 0.026060551404953003, + 0.0029139844700694084, + 0.005711279809474945, + 0.004930111579596996, + 0.005494108889251947, + -0.0027551576495170593, + 0.012589449994266033, + -0.005870106630027294, + -0.034280646592378616, + -0.0233767032623291, + 0.018397970125079155, + -0.017477424815297127, + 0.022209811955690384, + -0.0001062559022102505, + -0.0022997462656348944, + -0.025645656511187553, + 0.033087823539972305, + -0.011915246956050396, + -0.014197166077792645, + -0.025969792157411575, + -0.01231069304049015, + 0.012997861951589584, + 0.021613402292132378, + 0.002179815899580717, + 0.011247525922954082, + 0.00715044466778636, + 0.00928974337875843, + 0.003390464698895812, + -0.012349589727818966, + 0.010210290551185608, + -0.0034617746714502573, + 0.02243022620677948, + -0.010664081200957298, + -0.026786616072058678, + -0.014819507487118244, + -0.006139139644801617, + -0.013808201998472214, + 0.02259877696633339, + 0.017205148935317993, + 0.024141663685441017, + 0.08183790743350983, + 0.03479926288127899, + -0.0003150198608636856, + -0.006845756433904171, + -0.007208789233118296, + 0.014210131019353867, + 0.006473000161349773, + 0.01293303444981575, + 0.012181038968265057, + -0.05471419170498848, + 0.014650956727564335, + -0.020991060882806778, + 0.028238745406270027, + -0.02416759543120861, + -0.03368423506617546, + 0.016855083405971527, + -0.014054546132683754, + 0.02197643555700779, + -0.02446580119431019, + 0.016375361010432243, + 0.041411641985177994, + -0.015636330470442772, + 0.02701999433338642, + 0.017490388825535774, + -0.03422878310084343, + -0.016284603625535965, + 0.0019626447465270758, + -0.012907103635370731, + -0.010411255061626434, + 0.012524622492492199, + -0.003085776697844267, + -0.0017373700393363833, + -0.07048017531633377, + -0.011811523698270321, + 0.023039601743221283, + -0.010404772125184536, + -0.003782669547945261, + -0.03272479027509689, + 0.01767190545797348, + 0.024932557716965675, + 0.01621977612376213, + 0.016154948621988297, + -0.027720129117369652, + -0.029327843338251114, + -0.0084858862683177, + -0.01725701242685318, + -0.009276778437197208, + -0.020135341212153435, + -0.028238745406270027 + ], + "metadata": { + "source": "Kreye_Marieke_BA_241_V2.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 17, + "has_images": true, + "image_count": 98, + "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", + "links": [], + "last_modified": "2025-05-05T23:00:23", + "_known_field_names": "frozenset({'is_continuation', 'sent_to', 'header_footer_type', 'email_message_id', 'filename', 'languages', 'detection_class_prob', 'sent_from', 'link_texts', 'cc_recipient', 'subject', 'image_mime_type', 'image_path', 'filetype', 'page_number', 'last_modified', 'signature', 'detection_origin', 'text_as_html', 'attached_to_filename', 'bcc_recipient', 'data_source', 'link_start_indexes', 'category_depth', 'emphasized_text_tags', 'parent_id', 'orig_elements', 'page_name', 'coordinates', 'url', 'link_urls', 'file_directory', 'links', 'table_as_cells', 'emphasized_text_contents', 'key_value_pairs', 'image_base64'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "Kreye_Marieke_BA_241_V2.pdf", + "detection_class_prob": 0.3422867953777313, + "parent_id": "e02392183bc6851689602ad4b9f6039f", + "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", + "id": "ce00eae5-7e07-454f-9e4f-f79ac36f92f4", + "processing_timestamp": "2025-05-05T23:15:46.977945", + "chunk_number": 11, + "total_chunks": 56, + "chunking_strategy": "hybrid", + "word_count": 295 + } +} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000012.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000012.json new file mode 100644 index 0000000000000000000000000000000000000000..17c1e2f27298e7be25b7c67539f0b42405f98a85 --- /dev/null +++ b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000012.json @@ -0,0 +1,1570 @@ +{ + "id": "61a115b2-0ff7-441a-f6d9-eb3d00000012", + "content": "2023, S. 14). Auch in der \u00f6kologischen Dimension bietet Stadtgr\u00fcn zahlreiche Vorteile. Die urbane Vegetation tr\u00e4gt zu einer Regulation des Stadtklimas bei, indem sie eine k\u00fchlere Lufttemperatur durch Verschattung und Verdunstung schafft. Dies tr\u00e4gt nicht nur zu einem erh\u00f6hten thermischen Komfort der Bev\u00f6lkerung bei (soziale \u00d6kosystemdienstleistung), sondern senkt zudem den K\u00fchlbedarf der Geb\u00e4ude (\u00f6konomische \u00d6kosystemdienstleistung) (vgl. Feldmann et al. 2023, S. 14). Pflanzen steigern durch ihre Filterwirkung die Luftqualit\u00e4t. Sie nehmen Luftschadstoffe auf, wandeln CO2-Emissionen in Sauerstoff um und reduzieren die Ozonbildung (vgl. Kampusch 2018, S. 25). So konnte beispielswiese nachgewiesen werden, dass in Leipzig 11 t/ha und in Hamburg sogar 27,4 t/ha CO2-Emissionen durch st\u00e4dtisches Gr\u00fcn gebunden wurden (vgl. Feldmann et al. 2023, S. 27). Ein weiterer \u00f6kologischer Mehrwert st\u00e4dtischen Gr\u00fcns ist die D\u00e4mpfung des Schallpegels (vgl. Mehra 2021, S. 115). Die beiden letztgenannten Punkte wirken zudem direkt gesundheitsf\u00f6rdernd. St\u00e4dtisches Gr\u00fcn stellt Lebensraum f\u00fcr verschiedene Lebewesen dar und leistet somit einen wichtigen Beitrag zum Erhalt der Biodiversit\u00e4t sowie zum Arten- und Naturschutz (vgl. Bott et al. 2018, S. 83). Des Weiteren wirkt sich Stadtgr\u00fcn auf den Wasserhaushalt der Stadt aus. Gr\u00fcnfl\u00e4chen stellen eine unversiegelte Fl\u00e4che dar und haben somit die F\u00e4higkeit Regenwasser durch Versickerung aufzunehmen, dies f\u00fchrt zu einer Entlastung der Kanalisation, einer Reduktion des \u00dcberschwemmungsrisikos und einer erh\u00f6hten Grundwasseranreicherung. (vgl. Mehra 2021, S. 115; vgl. Kampusch 2018, S. 25)\n\n## 2.3.3 Herausforderung gr\u00fcner Infrastruktur im urbanen Raum\n\nUrbane Vegetation steht vor Herausforderungen durch anthropogene Einfl\u00fcsse wie beispielsweise Emissionen, versiegelte Oberfl\u00e4chen und verdichtete B\u00f6den. Diese von den nat\u00fcrlichen Gegebenheiten abweichenden Zust\u00e4nde stellen Stressfaktoren f\u00fcr die Pflanzen dar, auf welche diese mit Anpassungsstrategien reagieren. Zun\u00e4chst reversible Anpassungsstrategien k\u00f6nnen schnell irreversible Folgen nach sich ziehen und die positiven Auswirkungen der Pflanzen auf ihre Umwelt reduzieren.", + "embedding": [ + 0.031862612813711166, + -0.006472491193562746, + 0.02022295445203781, + -0.004323483910411596, + -0.006615758407860994, + 0.01677180640399456, + -0.032524824142456055, + 0.003925519995391369, + -0.021700197830796242, + -0.024769296869635582, + 0.002141047967597842, + -0.0037535992451012135, + -0.005749788135290146, + 0.011805213056504726, + -0.0049092876724898815, + -0.013435274362564087, + 0.05521834269165993, + -0.002063046908006072, + 0.007010539062321186, + 0.013626297004520893, + -0.012104482389986515, + 0.01087556779384613, + 0.005565132480114698, + -0.004708713386207819, + -0.010003230534493923, + 0.02837326191365719, + 0.031429629772901535, + -0.026896018534898758, + -0.00291787413880229, + 0.0018863508012145758, + -0.007227031514048576, + -0.023151971399784088, + -0.02268078178167343, + 0.002819179091602564, + -0.01633882150053978, + -0.006768576800823212, + -6.282861431827769e-05, + -0.013600828126072884, + 0.014517737552523613, + -0.0015695712063461542, + 0.01940792240202427, + -0.013830055482685566, + 0.005768890492618084, + -0.007239766418933868, + -0.00010337122512282804, + 0.026692261919379234, + -0.011677864007651806, + -0.004266177304089069, + -0.019382452592253685, + 0.016746336594223976, + 0.038484737277030945, + 0.02180207520723343, + -0.012989554554224014, + 0.005667011719197035, + -0.023202911019325256, + -0.007742793299257755, + -0.021458234637975693, + 0.00841774046421051, + 0.011066591367125511, + -0.016924625262618065, + -0.02628474496304989, + -0.012066277675330639, + -0.011321288533508778, + 0.012849471531808376, + -0.04459746927022934, + -0.005561948753893375, + -0.013740911148488522, + 0.004409444518387318, + -0.001587081584148109, + -0.030181612819433212, + 0.031047582626342773, + 0.03858661651611328, + 0.021763870492577553, + -0.006997804157435894, + -0.002989507745951414, + -0.005670195445418358, + -0.008646967820823193, + 0.012391015887260437, + -0.014454063028097153, + 0.006692167371511459, + -0.011232144199311733, + -0.029341110959649086, + -0.02512587420642376, + 0.03863755613565445, + 0.01874570921063423, + 0.022005833685398102, + 0.00011162898590555415, + 0.0200828704982996, + 0.017726922407746315, + 0.0005607316852547228, + -0.0031486935913562775, + 0.016810011118650436, + 0.00419295160099864, + 0.01763777807354927, + -0.004352137446403503, + -0.0019468413665890694, + -0.004705529659986496, + -0.003514820709824562, + 0.033263448625802994, + -0.02199309878051281, + -0.011365859769284725, + 0.0221713874489069, + -0.010544462129473686, + -0.0010132171446457505, + -0.04612565413117409, + -0.012225463055074215, + 0.005390028469264507, + 0.01709017902612686, + 0.026615852490067482, + -0.022935478016734123, + -0.013256986625492573, + 0.024463661015033722, + -0.025456979870796204, + -0.026030048727989197, + 0.022999152541160583, + -0.03644716367125511, + 0.032295599579811096, + 0.018783913925290108, + -0.008226717822253704, + -0.004527241922914982, + 0.022031303495168686, + -0.0012456282274797559, + 0.01535823754966259, + -0.020859695971012115, + 0.023075561970472336, + 0.007488096132874489, + 0.021853014826774597, + 0.007819202728569508, + -0.0454634390771389, + -0.013435274362564087, + -0.013371599838137627, + 0.019573476165533066, + 0.016453435644507408, + -0.001423120265826583, + -0.01959894597530365, + 0.017459489405155182, + -0.02334299311041832, + 0.010143313556909561, + -0.02567347325384617, + -0.050404567271471024, + -0.006685799919068813, + 0.005275414790958166, + -0.0438588485121727, + -0.015065336599946022, + -0.009188199415802956, + 0.032524824142456055, + 0.02709977701306343, + 0.013651766814291477, + 0.0030038345139473677, + -0.010760954581201077, + -0.003950989339500666, + -0.011556883342564106, + -0.002618605038151145, + -0.017039239406585693, + 0.002868526615202427, + 0.0038713966496288776, + -0.02107618935406208, + -0.005246761254966259, + -0.022820863872766495, + 0.013498948886990547, + 0.03950352594256401, + -0.018261784687638283, + 0.005479172337800264, + -0.001616530935280025, + 0.021216273307800293, + -0.005396395921707153, + -0.0016825930215418339, + 0.021279945969581604, + -0.0005113841034471989, + -0.009003544226288795, + -0.0086342329159379, + 0.028959065675735474, + -0.02844967134296894, + 0.03402753919363022, + 0.005886687897145748, + 0.023393932729959488, + -0.0029656297992914915, + 0.02192942425608635, + -0.012575672008097172, + -0.024438191205263138, + -0.014963457360863686, + 0.02223506011068821, + 0.015027131885290146, + 0.024412721395492554, + -0.018592892214655876, + 0.007596342358738184, + 0.0329323410987854, + 0.036956556141376495, + -3.720966196851805e-05, + 0.0027873418293893337, + -0.004785122815519571, + 0.005218107718974352, + 0.001751042902469635, + -0.023750508204102516, + -0.6361315846443176, + 0.01318057719618082, + 0.025087669491767883, + -0.013008656911551952, + 0.028984535485506058, + 0.022871803492307663, + 0.02382691763341427, + 0.004250258672982454, + -0.0007398156449198723, + 0.02671772986650467, + 0.009232771582901478, + 0.0023336627054959536, + -0.013537153601646423, + -3.3727472327882424e-05, + 0.02279539406299591, + -0.0077873654663562775, + 0.014657820574939251, + -0.0129322474822402, + 0.02819497510790825, + 0.01567661017179489, + -0.015014396980404854, + 0.015600200742483139, + 0.0019309227354824543, + -0.003814089810475707, + 0.030028793960809708, + 0.03960540518164635, + -0.006412000861018896, + -0.028780777007341385, + 0.005982199218124151, + 0.008761581964790821, + 0.007016906514763832, + 0.03672732785344124, + -0.029086414724588394, + 0.016606254503130913, + 0.06143295019865036, + 0.038000814616680145, + -0.029290171340107918, + 0.01163965929299593, + 0.005848483182489872, + 0.005456886254251003, + -0.0030770599842071533, + -0.010136946104466915, + -0.0061350176110863686, + 0.00485516432672739, + 0.00741805462166667, + 0.019013142213225365, + 0.04368055984377861, + -0.02329205349087715, + -0.006526614539325237, + -0.018261784687638283, + 0.0240943506360054, + -0.0004783530894201249, + 0.015829427167773247, + 0.009608450345695019, + 0.03471522033214569, + -0.010550829581916332, + 0.021305415779352188, + -0.0011716068256646395, + -0.003295144299045205, + 0.0008349290583282709, + 0.0003356828819960356, + 0.0049092876724898815, + -0.020044665783643723, + -0.02181481011211872, + -0.02057952992618084, + 0.055574916303157806, + -0.030487248674035072, + -0.007494463585317135, + -0.0023511729668825865, + -0.027074307203292847, + -0.011442269198596478, + 0.02038850635290146, + 0.010525359772145748, + -0.025469714775681496, + 0.017306670546531677, + 0.005915341433137655, + 0.02806762605905533, + -0.0060363225638866425, + -0.026386624202132225, + 0.04064966365695, + 0.0037854362744838, + -0.030741944909095764, + -0.0271507166326046, + 0.010385275818407536, + 0.012734857387840748, + -0.025788085535168648, + -0.01738307997584343, + 0.0028796696569770575, + -0.0066412282176315784, + 0.006615758407860994, + 0.025813555344939232, + 0.027685580775141716, + -0.015218154527246952, + -0.02414529025554657, + -0.010862832888960838, + 0.025609798729419708, + -0.018694771453738213, + 0.02709977701306343, + 0.00272685126401484, + -0.03354361280798912, + -0.007456258870661259, + 0.011257614009082317, + 0.01725573092699051, + 0.008863461203873158, + 0.003804538631811738, + -0.00046482228208333254, + -0.013422539457678795, + 0.017102913931012154, + 0.02143276482820511, + -0.015816692262887955, + 0.0030706925317645073, + 0.008787051774561405, + -0.0085132522508502, + -0.015383707359433174, + -0.015702079981565475, + -0.01081826165318489, + 0.044571999460458755, + -0.006020403932780027, + 0.006609390955418348, + 0.009627551771700382, + 0.023253848776221275, + -0.0019532088190317154, + 0.016109595075249672, + -0.027201656252145767, + 0.004036949947476387, + 0.02401794120669365, + -0.020108340308070183, + -0.0004520874354057014, + -0.03023255057632923, + -0.007411687169224024, + -0.003680373774841428, + 0.016147799789905548, + 0.03705843538045883, + 0.0018911262741312385, + 0.038790374994277954, + 0.00035299433511681855, + 0.024794766679406166, + 0.008093002252280712, + -0.002440317068248987, + 0.005141698755323887, + -0.001908636768348515, + -0.0061127315275371075, + 0.012021705508232117, + -0.03845926746726036, + -0.031302280724048615, + -0.019153226166963577, + -0.008207615464925766, + 0.0008842766401357949, + -0.02439998649060726, + 0.0011548923794180155, + -0.026743199676275253, + -0.016988299787044525, + -0.01677180640399456, + 0.01455594226717949, + -0.0017001035157591105, + 0.013333396054804325, + -0.011716068722307682, + -0.033823780715465546, + 0.00023022234381642193, + -0.018631096929311752, + 0.014937987551093102, + 0.007876508869230747, + -0.02089790068566799, + -0.012397383339703083, + -0.008436842821538448, + -0.0008938278187997639, + -0.0036358018405735493, + 0.01768871769309044, + -0.018350929021835327, + -0.031200401484966278, + -0.005832564551383257, + -0.029901444911956787, + 0.015714814886450768, + 0.02173840068280697, + -0.009984128177165985, + -0.018809383735060692, + -0.042483482509851456, + -0.0072716036811470985, + -0.005469621159136295, + 0.008596029132604599, + 0.025355100631713867, + -0.010092374868690968, + -0.012734857387840748, + -0.02591543458402157, + -0.004071970470249653, + 0.007462626323103905, + 0.010913772508502007, + 0.01585489697754383, + 0.0027157082222402096, + 0.016606254503130913, + 0.021088924258947372, + 0.03181167319417, + 0.00014466002176050097, + 0.014097487553954124, + -0.0253041610121727, + -0.02837326191365719, + -0.013206047005951405, + 0.010811894200742245, + -0.017128383740782738, + 0.006781311705708504, + 0.0355047807097435, + -0.014734230004251003, + 0.0035721275489777327, + -0.011837050318717957, + 0.007405319716781378, + -0.015612934716045856, + 0.0012663223315030336, + 0.01213631872087717, + 0.01120667438954115, + 0.014364918693900108, + 0.02850061096251011, + 0.014683290384709835, + -0.03285593166947365, + -0.011244879104197025, + 0.00025907476083375514, + 0.03690561652183533, + -0.010480787605047226, + -0.018325459212064743, + -0.013155107386410236, + -0.002359132282435894, + 0.011970765888690948, + -0.018414603546261787, + 0.014046547934412956, + -0.024310842156410217, + -0.028042156249284744, + 0.017535898834466934, + -0.01265208050608635, + 0.03677826747298241, + 0.002427582163363695, + -0.01542191207408905, + -0.010480787605047226, + 0.012486527673900127, + -0.015740282833576202, + 0.010913772508502007, + -0.0043744235299527645, + 0.01903861202299595, + 0.009232771582901478, + -0.03267764300107956, + 0.03828098252415657, + 0.010830996558070183, + 0.019064081832766533, + 0.03624340519309044, + 0.02033756673336029, + -0.009582980535924435, + 0.0277110505849123, + 0.012085380032658577, + 0.026997897773981094, + 0.03733860328793526, + -0.005275414790958166, + 0.005832564551383257, + -0.0027953011449426413, + -0.016924625262618065, + 0.005039819981902838, + -0.02941752038896084, + 0.018605627119541168, + -0.020197484642267227, + 0.017892474308609962, + -0.010703647509217262, + 0.02082149125635624, + 0.006883190479129553, + 0.011696966364979744, + -0.0061190989799797535, + 0.0009073585970327258, + -0.0004676080425269902, + 0.010200620628893375, + 0.0011517086531966925, + -0.004533609375357628, + -0.01277942955493927, + -0.026641322299838066, + -0.002430765889585018, + 0.009188199415802956, + -0.0001827650994528085, + -0.01677180640399456, + 0.005179903469979763, + -0.004533609375357628, + 0.011505943723022938, + -0.0038809478282928467, + 0.003931887447834015, + -0.00766638433560729, + 0.011174837127327919, + -0.0017765125958248973, + 0.0009192975121550262, + -0.0042916471138596535, + 0.06306301057338715, + -0.003836375894024968, + -0.022515228018164635, + -0.007857407443225384, + 0.011773375794291496, + -0.013740911148488522, + -0.012250932864844799, + -0.012333709746599197, + -0.0008651743992231786, + -0.030436309054493904, + 0.0005663032061420381, + 0.005765706766396761, + -0.014059282839298248, + 0.010028700344264507, + -0.004247074946761131, + 0.012696652673184872, + -0.0013952627778053284, + 0.004326667636632919, + -0.002312968485057354, + -0.01725573092699051, + 0.0005670991376973689, + 0.02273171953856945, + -0.001590265310369432, + -0.01738307997584343, + -0.00044731187517754734, + -0.005698848515748978, + -0.031123992055654526, + -0.0156638752669096, + -0.015498321503400803, + -0.004562262445688248, + 0.01818537712097168, + -0.018389133736491203, + 0.008303127251565456, + -0.0001964948751265183, + -0.010665442794561386, + 0.03980916365981102, + 0.00044333221740089357, + 0.007481728680431843, + -0.038255512714385986, + -0.013651766814291477, + 0.008042062632739544, + 0.04220331832766533, + 0.0050652893260121346, + 0.0007322542951442301, + 0.018580157309770584, + -0.004352137446403503, + -0.01188798900693655, + 0.0015783263370394707, + -0.039223361760377884, + -0.01628788188099861, + -0.015612934716045856, + -0.014530472457408905, + -0.010098742321133614, + 0.02850061096251011, + -0.02156011387705803, + 0.019242368638515472, + 0.002497623907402158, + -0.008226717822253704, + -0.018389133736491203, + -0.0024514601100236177, + 0.002911506686359644, + 0.01725573092699051, + -0.0027411780320107937, + -0.01584216207265854, + 0.06255362182855606, + 0.016669929027557373, + 0.009162729606032372, + 0.034918978810310364, + 0.022642577067017555, + 0.020439445972442627, + -0.017663247883319855, + 0.006552084349095821, + 0.029774095863103867, + 0.011263981461524963, + 0.027609171345829964, + -0.035173676908016205, + 0.011149367317557335, + 0.023814182728528976, + -0.015625670552253723, + 0.031913552433252335, + 0.008748847059905529, + 0.027074307203292847, + 0.03794987499713898, + 0.00044850577251054347, + -0.03440958634018898, + 0.007392584811896086, + -0.018656566739082336, + -0.00031339688575826585, + 0.029595809057354927, + -0.006227345205843449, + -0.009264608845114708, + 0.0019325145985931158, + -0.0037249457091093063, + -0.027303533628582954, + -0.016568049788475037, + 0.005762523040175438, + -0.02911188453435898, + 0.019891846925020218, + -0.015638405457139015, + 0.006071343086659908, + -0.02254069782793522, + -0.019942786544561386, + -0.030487248674035072, + -0.016389761120080948, + -0.029010005295276642, + -0.013065963983535767, + 0.00027598824817687273, + -0.001800390426069498, + 0.011525046080350876, + -0.00854508951306343, + 0.00866607017815113, + 0.025724411010742188, + -0.026819609105587006, + -0.01554926112294197, + 0.0024880727287381887, + 0.012830369174480438, + 0.0050684730522334576, + 0.018147172406315804, + -0.003931887447834015, + 0.011295818723738194, + -0.008143940940499306, + 0.004941124469041824, + -0.02432357706129551, + -0.005148066207766533, + -0.018516482785344124, + 0.001192301046103239, + -0.006915027741342783, + -0.013498948886990547, + -0.02636115439236164, + -0.017370345070958138, + 0.02592816948890686, + -0.015536526218056679, + -0.011480473913252354, + 0.0018879426643252373, + 0.01579122245311737, + -0.0005659052403643727, + -0.012059910222887993, + 0.012919512577354908, + -0.004126093816012144, + 0.030054263770580292, + -0.0443427748978138, + 0.021025249734520912, + 0.0073289102874696255, + 0.0008114491938613355, + -0.013702706433832645, + 0.03150603547692299, + 0.004119726363569498, + -0.017179323360323906, + -0.0015767344739288092, + -0.013588093221187592, + -0.00047556732897646725, + 0.029264701530337334, + -0.02052859030663967, + 0.01990458182990551, + 0.00442217942327261, + 0.005838932003825903, + 0.006297387182712555, + -0.0013100984506309032, + -0.011244879104197025, + 0.030691007152199745, + -0.017472224310040474, + -0.008857093751430511, + -0.02316470630466938, + 0.03901960328221321, + -0.005902606528252363, + 0.01407201774418354, + 0.0001387900410918519, + -0.003922336269170046, + 0.02420896477997303, + -0.034485992044210434, + 0.01351168379187584, + 0.005103494040668011, + 0.010671810247004032, + 0.023699570447206497, + 0.008003857918083668, + -0.01996825635433197, + -0.010697280056774616, + 0.009633919224143028, + 0.018274519592523575, + -0.04582001641392708, + -0.008761581964790821, + -0.02962127886712551, + 0.01351168379187584, + 0.007137887645512819, + 0.011404064483940601, + 0.011092061176896095, + -0.02844967134296894, + -0.012798531912267208, + 0.007048743776977062, + 0.01050625741481781, + 0.016695398837327957, + -0.038128163665533066, + -0.02906094491481781, + -0.015230889432132244, + 0.01609686017036438, + -0.030028793960809708, + -0.036829207092523575, + 0.00419295160099864, + -0.038790374994277954, + 0.026819609105587006, + 0.0056001534685492516, + 0.00678767915815115, + -0.012951349839568138, + 0.02679413929581642, + 0.009048116393387318, + -0.010773689486086369, + -0.01422483567148447, + -0.007647281978279352, + 0.0036421692930161953, + -0.013804585672914982, + 0.032219190150499344, + 0.0008914400241337717, + 0.00836043432354927, + -0.0034575138706713915, + 0.000986155471764505, + 0.008163043297827244, + 0.018325459212064743, + -0.040700603276491165, + -0.017828799784183502, + -0.027863867580890656, + -0.008073899894952774, + -0.010277030058205128, + 0.019624415785074234, + -0.0004536792985163629, + 0.002099659526720643, + -0.011314921081066132, + -0.003397023305296898, + 0.021674728021025658, + -0.004272544756531715, + -0.006698534823954105, + -0.0038809478282928467, + 0.009965025819838047, + -0.021267211064696312, + 0.04077701270580292, + 0.013269721530377865, + -0.009875881485641003, + 0.0013944668462499976, + -0.01621147431433201, + -0.024591010063886642, + -0.043833378702402115, + 0.014581412076950073, + 0.0009336242219433188, + -0.011251246556639671, + 0.006832250859588385, + -0.008373168297111988, + -0.01714111864566803, + -0.006459756288677454, + 0.018172642216086388, + -0.02610645815730095, + -0.0019834539853036404, + -0.004495404660701752, + -0.005908973980695009, + -0.008793419227004051, + 0.002690238645300269, + -0.03313609957695007, + 0.0013904871884733438, + -0.014568677172064781, + -0.005304068326950073, + 0.0448266975581646, + -0.010964712128043175, + 0.025265956297516823, + 0.020363036543130875, + 0.005087575409561396, + 0.012690285220742226, + 0.0022683965507894754, + 0.03410394862294197, + 0.004734183195978403, + -0.02334299311041832, + 0.00010406766523374245, + -0.035428375005722046, + 0.0022238243836909533, + -0.014887047931551933, + 0.009411059319972992, + -0.005469621159136295, + -0.018210846930742264, + -0.01585489697754383, + 0.02077055163681507, + 0.0073480126447975636, + -0.014543207362294197, + -0.006262366194278002, + 0.0385611467063427, + 0.04424089565873146, + 0.004336218815296888, + -0.003492534626275301, + -0.01793067902326584, + -0.009945923462510109, + -0.00173512427136302, + 0.0022238243836909533, + 0.0036740063223987818, + -0.011416799388825893, + 0.007099682930856943, + -0.004680060315877199, + 0.03407847881317139, + 0.006275101099163294, + 0.024985790252685547, + 0.00949383620172739, + 0.0061190989799797535, + -0.016631724312901497, + -0.009022646583616734, + -0.003291960572823882, + 0.027507292106747627, + 0.009385589510202408, + 0.025839025154709816, + 0.014212100766599178, + -0.019331512972712517, + 0.013537153601646423, + -0.017650512978434563, + 0.0013268128968775272, + 0.007901978679001331, + -0.003048406448215246, + 0.016478905454277992, + -0.00023201318981591612, + -0.0077937329187989235, + -0.005549214314669371, + 0.025329630821943283, + 0.016542579978704453, + -0.0008699499303475022, + -0.005157617386430502, + 0.00011700150207616389, + 0.01470876019448042, + -0.01158235315233469, + 0.001478039426729083, + 0.019191430881619453, + 0.005265863612294197, + -0.022209592163562775, + -0.002141047967597842, + -0.009130892343819141, + -0.005896239075809717, + -0.008284024894237518, + 0.018019823357462883, + -0.017599573358893394, + 0.010913772508502007, + 0.01707744412124157, + -0.0018322275718674064, + 0.031429629772901535, + -0.012104482389986515, + -0.006361061241477728, + -0.006077710539102554, + 0.02316470630466938, + -0.030563658103346825, + 0.018911262974143028, + 0.03489350900053978, + 0.010824629105627537, + -0.0015361421974375844, + 0.016860950738191605, + -0.007940183393657207, + -0.02610645815730095, + 0.014110221527516842, + -0.00930918101221323, + -0.031225869432091713, + 0.016326086595654488, + -0.034129418432712555, + -0.004613202065229416, + -0.016669929027557373, + -0.00029807526152580976, + 0.0334162674844265, + -0.0012997513404116035, + 0.003029304090887308, + -0.01866930164396763, + -0.011958030983805656, + 0.019688090309500694, + -0.0022094978485256433, + -0.013358864933252335, + 0.049971580505371094, + -0.032779522240161896, + 0.008226717822253704, + -0.0015456932596862316, + 0.013626297004520893, + -0.014250305481255054, + -0.006762209348380566, + -0.03219372034072876, + -0.03066553734242916, + 0.010245192795991898, + -0.009907718747854233, + -0.018643831834197044, + 0.009984128177165985, + -0.014823374338448048, + -0.027507292106747627, + 0.03733860328793526, + 0.0008651743992231786, + -0.001169219147413969, + 0.009532040916383266, + 0.016427965834736824, + 0.0009137259912677109, + 0.005135331302881241, + -0.007227031514048576, + -0.012696652673184872, + -0.010181518271565437, + -0.009079953655600548, + -0.03428223729133606, + 0.008175778202712536, + -0.0013753646053373814, + 0.022018568590283394, + 0.023457607254385948, + -0.029748626053333282, + 0.004791490267962217, + 0.007284338586032391, + -0.04368055984377861, + -0.028347792103886604, + -0.0021330886520445347, + -0.006698534823954105, + -0.006997804157435894, + 0.003982826601713896, + -0.0055237445048987865, + 0.016784541308879852, + -0.00788924377411604, + 0.03041083924472332, + -0.013549888506531715, + -0.0164661705493927, + -0.005036636255681515, + -0.012798531912267208, + 0.02327931858599186, + 0.007596342358738184, + -0.02512587420642376, + -0.007093315478414297, + 0.01665719412267208, + -0.006357877515256405, + 0.005100310314446688, + 0.014543207362294197, + -0.01526909414678812, + 0.0034447789657860994, + -0.011843417771160603, + 0.007901978679001331, + 0.010716382414102554, + 0.0021267211996018887, + -0.001166035421192646, + -0.025826290249824524, + 0.004466751124709845, + 0.021050719544291496, + -0.007730058394372463, + -0.025227751582860947, + 0.008067532442510128, + 0.004253442399203777, + -0.014696025289595127, + 0.011741538532078266, + 0.014046547934412956, + -0.032168250530958176, + -0.00989498384296894, + -0.014696025289595127, + 0.025151344016194344, + 0.023979736492037773, + 0.0027682397048920393, + 0.012448322959244251, + 0.008888930082321167, + -0.010977447032928467, + -0.03257576376199722, + 1.1808347153419163e-05, + -0.0032633072696626186, + 0.010729117318987846, + 0.015167214907705784, + -0.004689611028879881, + 0.032906871289014816, + -0.027227124199271202, + 0.01572754979133606, + -0.01053809467703104, + 0.006408817134797573, + -0.0039000501856207848, + -0.00097899220418185, + -0.002736402442678809, + 0.002497623907402158, + 0.004126093816012144, + 0.006176406051963568, + 0.006991436704993248, + -0.018936732783913612, + -0.019000407308340073, + -0.013817320577800274, + -0.007061478216201067, + -0.00967849139124155, + -0.005202189087867737, + -0.000975808419752866, + 0.005444151349365711, + -0.02531689591705799, + -0.007564505096524954, + -0.006300570908933878, + 0.005539663136005402, + -0.021763870492577553, + 0.01971356011927128, + 0.1868458241224289, + 0.00820124801248312, + -0.011824315413832664, + 0.015078071504831314, + -0.009220036678016186, + -0.010168783366680145, + 0.02059226483106613, + -0.010576299391686916, + -0.018019823357462883, + 0.017051974311470985, + -0.013142372481524944, + 0.0172684658318758, + 0.0010307275224477053, + 0.0015273869503289461, + 0.014657820574939251, + -0.02456554025411606, + -0.027787458151578903, + 0.0011970766354352236, + 0.01097107958048582, + 0.026131927967071533, + 0.011881621554493904, + -0.0235340166836977, + 0.014135691337287426, + -0.0019070449052378535, + 0.026768669486045837, + 0.008093002252280712, + 0.0016714499797672033, + 0.0004875062732025981, + 0.021343620494008064, + 0.0072652362287044525, + 0.009009911678731441, + -0.0043680560775101185, + 0.01695009507238865, + -0.01627514697611332, + 0.017153853550553322, + 0.005078024230897427, + 0.018223581835627556, + -0.011404064483940601, + 0.025176813825964928, + 0.009264608845114708, + 0.002137864241376519, + -0.018261784687638283, + -0.00015739488299004734, + -0.030512718483805656, + -0.02432357706129551, + 0.02236240915954113, + -0.01090740505605936, + 0.007284338586032391, + -0.012792164459824562, + -0.016236942261457443, + -0.01609686017036438, + -0.0010617687366902828, + 0.01130218617618084, + 0.03731313347816467, + -0.007195194251835346, + 0.010136946104466915, + 0.019458862021565437, + -0.018108967691659927, + 0.0017223894828930497, + 0.0011811580043286085, + -0.027812927961349487, + 0.03751688823103905, + -0.008003857918083668, + 0.016491640359163284, + -0.009500203654170036, + -0.00599175039678812, + -0.02438725158572197, + 0.022999152541160583, + -0.0043839747086167336, + 0.008939869701862335, + -0.009602082893252373, + -0.003258531680330634, + -0.01874570921063423, + 0.02745635248720646, + -0.0200828704982996, + -0.020044665783643723, + 0.012059910222887993, + -0.008143940940499306, + 0.021534644067287445, + 0.016975564882159233, + -0.026437563821673393, + 0.016810011118650436, + -0.00331106293015182, + -0.027430882677435875, + 0.016848215833306313, + -0.04375696927309036, + 0.024412721395492554, + 0.005084391683340073, + -0.01554926112294197, + -0.012632978148758411, + -0.00517671974375844, + 0.0036326181143522263, + 0.0002443500852677971, + -0.02962127886712551, + 0.01725573092699051, + 0.01339706964790821, + 0.021292680874466896, + 0.016491640359163284, + -0.006959599442780018, + 0.01035343948751688, + 0.0067367395386099815, + 0.04599830508232117, + 0.02445092611014843, + -0.026513973250985146, + -0.002699789823964238, + 0.021967628970742226, + -0.014263040386140347, + 0.019624415785074234, + -0.004266177304089069, + -0.00741805462166667, + -0.013040494173765182, + -0.025215018540620804, + -0.006749474443495274, + -0.011022019200026989, + 0.015803957358002663, + 0.0237759780138731, + 0.01274759229272604, + -0.022655311971902847, + 0.012486527673900127, + -0.00820124801248312, + -0.01947159692645073, + 0.015294563956558704, + 0.006389714777469635, + 0.005561948753893375, + 0.011308553628623486, + -0.024043411016464233, + -0.04872356355190277, + 0.015587465837597847, + -0.008239452727138996, + -0.01757410354912281, + 0.021330885589122772, + -0.018108967691659927, + -0.007156990002840757, + 0.010951977223157883, + -0.0007839896716177464, + 0.021649258211255074, + 0.008952604606747627, + -0.04523421451449394, + -0.005654276814311743, + 0.0011684232158586383, + 0.008857093751430511, + -0.03114946186542511, + 0.001133402343839407, + -0.024552805349230766, + 0.005374109838157892, + 0.003998745232820511, + 0.004718264564871788, + -0.011512311175465584, + -0.0067431069910526276, + -0.008220350369811058, + 0.010582666844129562, + -0.00766638433560729, + -0.0032012248411774635, + -0.009423794224858284, + 0.01000959798693657, + -0.009602082893252373, + -0.009353753179311752, + -0.024183494970202446, + 0.011779743246734142, + 0.011652394197881222, + -0.010837364010512829, + 0.006762209348380566, + -0.010665442794561386, + -0.019153226166963577, + -0.0156638752669096, + 0.00397645914927125, + -0.15770848095417023, + 0.010958344675600529, + 0.016186004504561424, + -0.03232106938958168, + 0.004581364803016186, + -0.003931887447834015, + -0.012881307862699032, + -0.016020450741052628, + -0.018631096929311752, + 0.006443837657570839, + 0.044011667370796204, + -0.004858348052948713, + -0.024438191205263138, + -0.036166995763778687, + -0.01044258289039135, + 0.009595715440809727, + -0.0030436308588832617, + 0.030054263770580292, + 0.020808756351470947, + 0.011837050318717957, + 0.01090740505605936, + -0.014797904528677464, + -0.0031025295611470938, + -0.0093983244150877, + 0.011747905984520912, + 0.004014663863927126, + -0.008093002252280712, + 0.017344875261187553, + -0.0055046421475708485, + -0.013626297004520893, + 0.0007935407920740545, + -0.003217143239453435, + 0.03193902224302292, + -0.0048965527676045895, + -0.0054982746951282024, + -0.005937627051025629, + 0.018401868641376495, + -0.010092374868690968, + -0.014275775291025639, + 0.031174931675195694, + 0.029162824153900146, + -0.0013244252186268568, + -0.024349046871066093, + 0.010945609770715237, + -0.030487248674035072, + 0.000487904209876433, + 0.0037185782566666603, + 0.010773689486086369, + -0.0055714999325573444, + 0.0037758853286504745, + 0.014937987551093102, + -0.016415230929851532, + -0.009124524891376495, + 0.021776605397462845, + 0.010589034296572208, + 0.020006461068987846, + 0.004750101827085018, + 0.017739655449986458, + -0.004151563625782728, + 0.0012376689119264483, + 0.010964712128043175, + -0.02482023648917675, + -0.0017733288696035743, + 0.01971356011927128, + -0.008436842821538448, + -0.014874313026666641, + 0.005823013372719288, + 0.004205686505883932, + -0.01455594226717949, + 0.016669929027557373, + -0.013435274362564087, + -0.022706251591444016, + 0.03109852224588394, + 0.011786110699176788, + -0.004695978481322527, + -0.000412291003158316, + -0.00943016167730093, + 0.008411373011767864, + -0.013651766814291477, + 0.01366450171917677, + -0.02057952992618084, + 0.037695176899433136, + -0.02358495630323887, + -0.007991123013198376, + -0.022578902542591095, + 0.002543787704780698, + 0.0100414352491498, + 0.004804225172847509, + 0.0003627444675657898, + 0.008506884798407555, + 0.028704369440674782, + -0.040267620235681534, + -0.035657599568367004, + -0.009907718747854233, + 0.0002970803470816463, + -0.02173840068280697, + 0.017242996022105217, + 0.002709341002628207, + -0.011079326272010803, + -0.03392565995454788, + 0.013142372481524944, + 0.003966907970607281, + -0.02518954873085022, + -0.0003036467533092946, + 0.011162102222442627, + 0.0235340166836977, + -0.006915027741342783, + 0.005612888373434544, + 0.04951312392950058, + 0.005434600170701742, + -0.02138182520866394, + -0.010964712128043175, + 0.021152598783373833, + 0.004756469279527664, + -0.02499852515757084, + 0.0005627215141430497, + 0.012333709746599197, + -0.022273264825344086, + -0.002503991359844804, + -0.0162242092192173, + 0.020235687494277954, + 0.006978701800107956, + -0.024412721395492554, + 0.00881252158433199, + 0.0027650559786707163, + -0.01996825635433197, + -0.09000997245311737, + 0.00823308527469635, + 0.014326714910566807, + 0.03023255057632923, + 0.008863461203873158, + -0.009016279131174088, + -0.005399579647928476, + 0.013842790387570858, + 0.009188199415802956, + 0.009926821105182171, + -0.025342365726828575, + -0.02555885910987854, + 0.004839245695620775, + -0.02021021954715252, + 0.024603744968771935, + -0.009041748940944672, + -0.013639031909406185, + -0.014937987551093102, + -0.01990458182990551, + 0.014645085670053959, + 0.011429534293711185, + -0.01299592200666666, + -0.0055269282311201096, + -0.011181204579770565, + -0.009506571106612682, + 0.00694049708545208, + -0.024731092154979706, + 0.006259182468056679, + 0.023177441209554672, + -0.0006753454217687249, + 0.024591010063886642, + -0.012117216363549232, + 0.03407847881317139, + -0.028271382674574852, + 0.014976192265748978, + 0.0035784950014203787, + 0.004062419291585684, + -0.024680154398083687, + -0.011684231460094452, + -0.01917869597673416, + -0.028653429821133614, + -0.00906085129827261, + 0.0465841069817543, + -0.04171939194202423, + -0.002671136287972331, + -0.015931306406855583, + -0.015039866790175438, + -0.009837677702307701, + -0.0027602803893387318, + -0.021241741254925728, + -0.04528515413403511, + -0.023457607254385948, + -0.00241166353225708, + 0.005262679886072874, + 0.023024622350931168, + 0.00786377489566803, + -0.0017080627148970962, + -0.013448009267449379, + -0.0053613749332726, + 0.00022644168348051608, + -0.01548558659851551, + 0.014135691337287426, + -0.04179580137133598, + 0.02918829396367073, + -7.999082299647853e-05, + -0.012894042767584324, + -0.03407847881317139, + -0.01714111864566803, + 0.0029067310970276594, + -0.025648003444075584, + -0.011563250795006752, + -0.0018592891283333302, + 0.0009933188557624817, + 0.013651766814291477, + -0.01249926257878542, + 0.005141698755323887, + -0.02783839777112007, + -0.030436309054493904, + -0.004813775885850191, + -0.022833598777651787, + -0.02175113558769226, + -0.026590382680296898, + 0.032830461859703064, + -0.013740911148488522, + 0.021178068593144417, + -0.002234967425465584, + -0.008621498011052608, + -0.01351168379187584, + 0.02131815068423748, + -0.024476395919919014, + -0.002819179091602564, + -0.007545403204858303, + 0.023495811969041824, + -0.020350301638245583, + 0.01302775926887989, + -0.004622753243893385, + -0.0012798531679436564, + -0.00955751072615385, + 0.004832878243178129, + 0.0020519038662314415, + -0.031200401484966278, + -0.008525987155735493, + -0.037389542907476425, + 0.011327655985951424, + 0.0013769564684480429, + 0.007577240001410246, + -0.017344875261187553, + 0.007564505096524954, + 0.013384334743022919, + 0.011429534293711185, + 0.012575672008097172, + -0.0033206141088157892, + -0.009602082893252373, + 0.013282456435263157, + 0.019624415785074234, + -0.0026695444248616695, + -0.009385589510202408, + 0.001738307997584343, + 0.0208851657807827, + 0.027736518532037735, + 0.010245192795991898, + -0.007074213121086359, + -0.020413976162672043, + 0.002247702330350876, + -0.003938254434615374, + 0.0044508324936032295, + -0.03407847881317139, + 0.0031232237815856934, + -0.015039866790175438, + -0.010149681009352207, + -0.010359806939959526, + -0.007621812168508768, + 0.013002289459109306, + 0.007679118774831295, + -0.012492895126342773, + 0.008761581964790821, + 0.005450518801808357, + -0.013053229078650475, + 0.016810011118650436, + 0.033874720335006714, + -0.015803957358002663, + 0.06041416525840759, + -0.024438191205263138, + -0.03311062976717949, + 0.022044038400053978, + -0.03023255057632923, + -0.0030802437104284763, + -0.0011373820016160607, + 0.0078319376334548, + 0.0049793291836977005, + 0.03058912791311741, + -0.023763243108987808, + 0.030258020386099815, + 0.020439445972442627, + 0.005265863612294197, + 0.00032851952710188925, + 0.029315641149878502, + -0.0382300429046154, + 0.007628179620951414, + 0.01824904978275299, + -0.0013029350666329265, + -0.02175113558769226, + 0.034918978810310364, + 0.0025740331038832664, + 0.00964665412902832, + 0.010359806939959526, + 0.02538057044148445, + -0.02906094491481781, + -0.027074307203292847, + 0.00628146855160594, + 0.026921488344669342, + -0.023916061967611313, + -0.027940277010202408, + -0.021356355398893356, + 0.005921708885580301, + 0.012722122482955456, + -0.01505260169506073, + 0.0015464891912415624, + 0.034384116530418396, + -0.010837364010512829, + 0.006959599442780018, + 0.03158244490623474, + 0.00914999470114708, + 0.020044665783643723, + -0.017179323360323906, + -0.0009129300597123802, + 0.01813443750143051, + 0.0100414352491498, + -0.027609171345829964, + -0.011989868246018887, + 0.007214296609163284, + 0.01097107958048582, + 0.009200934320688248, + -0.003177346894517541, + 0.005014350172132254, + 0.006832250859588385, + 0.023763243108987808, + 0.012518364936113358, + 0.0032696747221052647, + -0.005495090968906879, + 0.009920453652739525, + 0.03384925052523613, + -0.0027045654132962227, + 0.004797857720404863, + 0.0032442049123346806, + -0.011130264960229397, + -0.009379222057759762, + -0.00400829641148448, + -0.0010689321206882596, + -0.04036949947476387, + -0.012040807865560055, + 0.03718578442931175, + -0.0375932976603508, + 0.042789120227098465, + 0.009067218750715256, + -0.014912517741322517, + -0.011614189483225346, + 0.04062419384717941, + -0.015803957358002663, + -0.008035695180296898, + -0.026157397776842117, + 0.0018338194349780679, + 0.03041083924472332, + 0.012359179556369781, + 0.009048116393387318, + -0.004081521648913622, + 0.014263040386140347, + 0.016606254503130913, + -0.0037249457091093063, + -0.0038904990069568157, + 0.009111790917813778, + 0.002141047967597842, + 0.013689971528947353, + -0.014759699814021587, + -0.02788933739066124, + -0.00820124801248312, + -0.004807408433407545, + -0.02543151006102562, + 0.019853642210364342, + 0.014122956432402134, + 0.0033269815612584352, + 0.08089181780815125, + 0.02758370153605938, + 0.0029974670615047216, + 0.0005627215141430497, + -0.008608764037489891, + 0.008984441868960857, + -0.002247702330350876, + 0.020923370495438576, + -0.006615758407860994, + -0.035657599568367004, + 0.006864088121801615, + -0.022069508209824562, + 0.017803329974412918, + -0.02788933739066124, + -0.02089790068566799, + 0.020617734640836716, + -0.015218154527246952, + 0.024858441203832626, + -0.005148066207766533, + 0.03397659957408905, + 0.03637075424194336, + -0.01170333381742239, + 0.018045293167233467, + 0.031913552433252335, + -0.04714444279670715, + -0.018147172406315804, + 0.016618989408016205, + -0.009130892343819141, + 0.002930609043687582, + 0.009162729606032372, + -0.0014541614800691605, + 0.011696966364979744, + -0.06652689725160599, + -0.014199365861713886, + 0.013486213982105255, + -0.006179589778184891, + -0.014403123408555984, + -0.022566167637705803, + 0.025202283635735512, + 0.013358864933252335, + 0.015103541314601898, + 0.009621184319257736, + -0.02911188453435898, + -0.03677826747298241, + -0.012180890887975693, + -0.010773689486086369, + -0.010716382414102554, + -0.012397383339703083, + -0.019879112020134926 + ], + "metadata": { + "source": "Kreye_Marieke_BA_241_V2.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 17, + "has_images": true, + "image_count": 98, + "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", + "links": [], + "last_modified": "2025-05-05T23:00:23", + "_known_field_names": "frozenset({'is_continuation', 'sent_to', 'header_footer_type', 'email_message_id', 'filename', 'languages', 'detection_class_prob', 'sent_from', 'link_texts', 'cc_recipient', 'subject', 'image_mime_type', 'image_path', 'filetype', 'page_number', 'last_modified', 'signature', 'detection_origin', 'text_as_html', 'attached_to_filename', 'bcc_recipient', 'data_source', 'link_start_indexes', 'category_depth', 'emphasized_text_tags', 'parent_id', 'orig_elements', 'page_name', 'coordinates', 'url', 'link_urls', 'file_directory', 'links', 'table_as_cells', 'emphasized_text_contents', 'key_value_pairs', 'image_base64'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "Kreye_Marieke_BA_241_V2.pdf", + "detection_class_prob": 0.3422867953777313, + "parent_id": "e02392183bc6851689602ad4b9f6039f", + "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", + "id": "ce00eae5-7e07-454f-9e4f-f79ac36f92f4", + "processing_timestamp": "2025-05-05T23:15:46.977945", + "chunk_number": 12, + "total_chunks": 56, + "chunking_strategy": "hybrid", + "word_count": 284 + } +} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000013.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000013.json new file mode 100644 index 0000000000000000000000000000000000000000..d1d7f831cb81d928c7dec6fcfeaa7a37e82b60cc --- /dev/null +++ b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000013.json @@ -0,0 +1,1570 @@ +{ + "id": "61a115b2-0ff7-441a-f6d9-eb3d00000013", + "content": "Diese von den nat\u00fcrlichen Gegebenheiten abweichenden Zust\u00e4nde stellen Stressfaktoren f\u00fcr die Pflanzen dar, auf welche diese mit Anpassungsstrategien reagieren. Zun\u00e4chst reversible Anpassungsstrategien k\u00f6nnen schnell irreversible Folgen nach sich ziehen und die positiven Auswirkungen der Pflanzen auf ihre Umwelt reduzieren. (vgl. Feldmann et al. 2023, 30 f)\n11\nTheorieteil\nResilienz und Resistenz gegen\u00fcber sich ver\u00e4ndernden klimatischen Bedingungen spielen auch bei der Vegetation eine bedeutende Rolle, um die Widerstandsf\u00e4higkeit der Pflanze zu erh\u00f6hen. Unter Resilienz wird die zeitweise Anpassung der Pflanze an eine Extremsituation beschrieben. Ist die Extremsituation \u00fcberstanden, weist diese keine bleibenden Sch\u00e4den auf und kehrt zu einer vollen Leistungsf\u00e4higkeit zur\u00fcck. So k\u00f6nnen Pflanzen beispielsweise bei extremer Trockenheit und Wassermangel ihre Bl\u00e4tter einrollen, um den Verlust von Wasser \u00fcber die Verdunstung zu reduzieren (vgl. Feldmann et al. 2023, S. 31). Resistente Ver\u00e4nderungen an den Eigenschaften der Pflanze ver\u00e4ndern ihre Leistung dauerhaft. Zum Beispiel w\u00fcrde eine geringere Blattgr\u00f6\u00dfe oder eine breitere Wachsschicht auf der Blattoberfl\u00e4che die Verdunstung reduzieren. Da diese Ver\u00e4nderung irreversibel ist, kann die Pflanze ihre urspr\u00fcnglichen Leistungen nur noch in einem geringeren Ma\u00dfe ausf\u00fchren (vgl. Feldmann et al. 2023, S. 33). B\u00e4ume stellen eine essenzielle Komponente der nachhaltigen Stadtentwicklung dar, da sie Mehrwert in allen drei Dimensionen der Nachhaltigkeit bieten. Deshalb d\u00fcrfen die Bed\u00fcrfnisse dieser nicht au\u00dfer Acht gelassen werden, um auch in Zukunft von der gr\u00fcnen Infrastruktur profitieren zu k\u00f6nnen. Um Platz f\u00fcr einen steigenden Gr\u00fcnanteil im urbanen Raum zu schaffen, ist unter andrem eine Ver\u00e4nderung in dem Mobilit\u00e4tsverhalten notwendig. ## 2.4 Mobilit\u00e4tsver\u00e4nderung\n\nMobilit\u00e4t kann als das \u201eBed\u00fcrfnis nach Beweglichkeit und dem Potential zur Fortbewegung\u201c definiert werden (Bott et al. 2018, S. 114). Durch das Bed\u00fcrfnis nach einer Ortsver\u00e4nderung von Personen oder G\u00fctern entsteht Verkehr. Je nach Art des eigenen Mobilit\u00e4tsbed\u00fcrfnisses und dem Zweck der Ortsver\u00e4nderung unterscheidet sich die Wahl des Verkehrsmittels. Die prozentuale Verteilung des Verkehrsaufkommens auf unterschiedliche Verkehrsmittel wird als Modal Split bezeichnet (vgl. Bott et al. 2018, S. 117).", + "embedding": [ + 0.009352934546768665, + -0.0037102820351719856, + 0.011686238460242748, + -0.00041736566345207393, + -0.002142696175724268, + 0.03333666920661926, + -0.02017815038561821, + -0.00531401764601469, + -0.017062697559595108, + -0.028209974989295006, + 0.022333992645144463, + 0.018784740939736366, + -0.0037891543470323086, + 0.02272835373878479, + -0.004834211431443691, + 0.006861885543912649, + 0.05768190696835518, + 0.0025239121168851852, + 0.009103172458708286, + -0.0028870529495179653, + 0.004574590362608433, + 0.016379136592149734, + 0.017391331493854523, + -0.0030037180986255407, + -0.007617744617164135, + 0.017549075186252594, + 0.030286943539977074, + -0.029130151495337486, + 0.010844934731721878, + -0.01225806213915348, + 0.015104035846889019, + -0.001570872263982892, + -0.018009163439273834, + 0.002198563888669014, + -0.02899869717657566, + -0.02389829233288765, + -0.0010080859065055847, + -0.03959386795759201, + 0.016247684136033058, + -0.009517251513898373, + -0.005320590455085039, + -0.002164057455956936, + -0.019244829192757607, + -0.0049656652845442295, + -0.01037170086055994, + 0.014262732118368149, + -0.015984775498509407, + -0.006099454127252102, + -0.019271120429039, + 0.027132054790854454, + 0.03362587094306946, + 0.02491048537194729, + -0.00953039713203907, + 0.015682432800531387, + 0.0015445816097781062, + -0.013631753623485565, + 0.002093401039019227, + 0.0071116480976343155, + 0.006290061865001917, + -0.023530220612883568, + -0.0243057981133461, + 0.008649656549096107, + -0.01235665287822485, + 0.008465621620416641, + -0.04080324247479439, + -0.004755339585244656, + -0.011015824042260647, + -0.002469687256962061, + 0.0029018414206802845, + -0.009852458722889423, + 0.0437215156853199, + 0.038805145770311356, + 0.028367718681693077, + -0.01347400899976492, + 0.025948969647288322, + 0.01146276667714119, + 0.00602386798709631, + 0.01347400899976492, + -0.01523548923432827, + 0.013736916705965996, + 0.015380089171230793, + -0.01752278581261635, + -0.007144511211663485, + 0.042880214750766754, + 0.025002503767609596, + 0.0004888436524197459, + 0.004209806211292744, + 0.01998097077012062, + 0.0061454628594219685, + 0.005915418732911348, + -0.007387700956314802, + 0.016076793894171715, + -0.012527542188763618, + 0.01941571943461895, + 0.0022051366977393627, + -0.0020884715486317873, + 0.003937039989978075, + 0.004939374513924122, + 0.008334167301654816, + -0.02868320792913437, + -0.017286168411374092, + 0.0259358249604702, + -0.009924758225679398, + -0.004199947230517864, + -0.02690858207643032, + 0.0027802467811852694, + -0.008859982714056969, + 0.017259877175092697, + 0.02044105902314186, + -0.02042791247367859, + -0.03181180730462074, + 0.02343820407986641, + -0.0204936396330595, + -0.030208071693778038, + 0.011252441443502903, + -0.022715207189321518, + 0.04169712960720062, + -0.00565579766407609, + -0.006848740391433239, + -0.019534027203917503, + 0.023503931239247322, + -0.007584881503134966, + 0.02180817723274231, + -0.017864564433693886, + 0.00965527817606926, + 0.003214044263586402, + 0.00517270527780056, + 0.012113463133573532, + -0.042012616991996765, + -0.020059842616319656, + -0.011298449710011482, + 0.019455155357718468, + 0.0025584185495972633, + -0.006717286538332701, + -0.010706908069550991, + 0.0141181331127882, + -0.027079472318291664, + -0.015669286251068115, + -0.03756948187947273, + -0.029366767033934593, + 0.0034473745618015528, + -0.0011625441256910563, + -0.04138164222240448, + -0.020349040627479553, + 0.0031105242669582367, + -0.0022741497959941626, + 0.01799601875245571, + 0.016536882147192955, + -0.0029609957709908485, + -0.015485251322388649, + -0.00564593868330121, + -0.01531436201184988, + 0.01034541055560112, + -0.010818643495440483, + 0.0007192984921857715, + -0.004653462674468756, + -0.025554608553647995, + -0.006934185512363911, + -0.026133006438612938, + -0.016773497685790062, + 0.03246907517313957, + -0.010910660959780216, + -0.007814925163984299, + 0.01732560433447361, + 0.009793304838240147, + -0.0018222775543108582, + -0.0030809473246335983, + 0.020677674561738968, + 0.010792353190481663, + -0.0068355947732925415, + -0.009109744802117348, + 0.01615566574037075, + -0.03509815037250519, + 0.035702839493751526, + 0.01368433516472578, + 0.014735965058207512, + -0.006888176314532757, + 0.03031323477625847, + -0.013750062324106693, + -0.009799877181649208, + -0.019783789291977882, + 0.013125657103955746, + 0.02572549879550934, + 0.01844296045601368, + -0.021729305386543274, + -0.006717286538332701, + 0.018258925527334213, + 0.01808803528547287, + -0.008721956051886082, + 0.010286255739629269, + -0.003513101488351822, + 0.016181956976652145, + -0.000932500057388097, + -0.017956582829356194, + -0.6330812573432922, + 0.002021101303398609, + 0.011364176869392395, + -0.0028656916692852974, + 0.030707595869898796, + 0.03278456628322601, + 0.02834142930805683, + -0.004400414414703846, + -0.013842079788446426, + 0.04677124321460724, + 0.004042202606797218, + -0.013500300236046314, + -0.004679753445088863, + -0.008505057543516159, + -0.018219489604234695, + -0.01814061775803566, + 0.005077401176095009, + -0.0070590665563941, + 0.04077695310115814, + 0.007624317426234484, + -0.0006449449574574828, + 0.009398942813277245, + -0.009044017642736435, + 0.012323789298534393, + 0.011804547160863876, + 0.010273110121488571, + -0.002285652095451951, + -0.01631341129541397, + 0.01123272255063057, + 0.02033589594066143, + -0.008662802167236805, + 0.02063823863863945, + -0.017417622730135918, + 0.027289798483252525, + 0.05789223313331604, + 0.015735013410449028, + -0.0195603184401989, + 0.027947066351771355, + 0.02955080382525921, + 0.022846661508083344, + -0.0052154273726046085, + -0.006681136786937714, + -0.016878660768270493, + -0.00010269824269926175, + -0.0005705914227291942, + -0.0009727577562443912, + 0.022294556722044945, + -0.028157392516732216, + -0.01146276667714119, + -0.02221568301320076, + 0.029261603951454163, + 0.014104987494647503, + 0.007275965064764023, + 0.011554785072803497, + 0.03612349182367325, + 0.01390780694782734, + 0.023306749761104584, + -0.02044105902314186, + 0.00010084967652801424, + -0.002178845927119255, + -0.009109744802117348, + 0.003077660920098424, + -0.00017766795645002276, + -0.020099278539419174, + -0.014985727146267891, + 0.04072437062859535, + -0.034467171877622604, + -0.006017295643687248, + 0.023162150755524635, + -0.036307524889707565, + -0.008669374510645866, + 0.02257060818374157, + -0.005721524357795715, + -0.01365804485976696, + 0.005977859254926443, + 0.02247859165072441, + 0.017811983823776245, + 0.007952951826155186, + 0.007966097444295883, + 0.03985677659511566, + -0.0021689869463443756, + -0.019100230187177658, + -0.011830837465822697, + -0.005659083835780621, + 0.03617607057094574, + -0.01941571943461895, + -0.0033537137787789106, + 0.005866123829036951, + -0.005583498161286116, + 0.0027966785710304976, + 0.026763983070850372, + 0.003937039989978075, + -0.012336933985352516, + -0.02435838058590889, + 0.0004157224902883172, + 0.028551753610372543, + -0.016826080158352852, + 0.026422204449772835, + 0.011449621990323067, + -0.028472881764173508, + -0.025041939690709114, + 0.008307876996695995, + 0.020454203709959984, + -0.003976475913077593, + -0.0028098239563405514, + 0.0028607621788978577, + -0.022807225584983826, + 0.018863612785935402, + 0.04295908659696579, + -0.008754819631576538, + -0.000999048468656838, + -0.0063722203485667706, + 0.005839833058416843, + -0.01225806213915348, + -0.007013057358562946, + -0.025028793141245842, + 0.04748109355568886, + -0.00787407997995615, + 0.006993339397013187, + -0.008209286257624626, + 0.004364264663308859, + -0.020467348396778107, + 0.010838361456990242, + -0.01311908382922411, + 0.00519570941105485, + 0.020717110484838486, + 0.0025617049541324377, + -0.005031392443925142, + -0.010759489610791206, + -0.01447305828332901, + 0.001282495679333806, + 0.009589551016688347, + 0.02506823092699051, + 0.008748247288167477, + 0.014249586500227451, + -0.006444520317018032, + 0.01390780694782734, + 0.0039436123333871365, + 0.008064687252044678, + -0.028656916692852974, + -0.009997057728469372, + -0.008570784702897072, + 0.0017943436978384852, + -0.04159196838736534, + -0.04080324247479439, + -0.013618608936667442, + -0.0019504450028762221, + -0.0009226410184055567, + -0.007256247103214264, + 0.0018387093441560864, + -0.015366943553090096, + -0.00897171813994646, + -6.161894270917401e-05, + 0.015156617388129234, + 0.013592317700386047, + 0.01523548923432827, + -0.02650107629597187, + -0.01345429103821516, + -0.01712842285633087, + -0.01482798345386982, + 0.0015076101990416646, + 0.0018436388345435262, + -0.03617607057094574, + -0.0053534540347754955, + -0.014381039887666702, + -0.020980019122362137, + -0.013644899241626263, + 0.016168810427188873, + -0.021518979221582413, + -0.04132905974984169, + -0.0110618332400918, + -0.0369122140109539, + -0.011015824042260647, + 0.013500300236046314, + -0.010457145981490612, + -0.004735621158033609, + -0.042012616991996765, + 0.007407418917864561, + 0.004916370380669832, + 0.012159472331404686, + 0.011285304091870785, + -0.030497269704937935, + -0.020756546407938004, + -0.024594996124505997, + 0.00955668743699789, + 0.017286168411374092, + 0.02237342856824398, + 0.02512081153690815, + -0.008787683211266994, + 0.026514220982789993, + 0.01166652049869299, + 0.03317892551422119, + -0.0029232027009129524, + 0.015524688176810741, + -0.016142521053552628, + -0.02802594006061554, + -0.012770731933414936, + 0.013986678794026375, + -0.009011154994368553, + 0.02857804484665394, + 0.03751689940690994, + -0.009313498623669147, + 0.008472193963825703, + -0.010305973701179028, + 0.01485427375882864, + -0.029524512588977814, + -0.007013057358562946, + -0.009136036038398743, + 0.024266362190246582, + 0.02583066187798977, + 0.02079598419368267, + 0.0011945859296247363, + -0.03914692625403404, + -0.015222344547510147, + -0.012626132927834988, + 0.036517851054668427, + 0.0044825728982687, + 0.0026405772659927607, + -0.0028624054975807667, + -0.0014739251928403974, + -0.004574590362608433, + -0.010253392159938812, + 0.02721092663705349, + -0.01121300458908081, + -0.005126696079969406, + 0.006332784425467253, + -0.012205480597913265, + 0.008998009376227856, + 0.005129982717335224, + -0.011995154432952404, + 8.382744454138447e-06, + 0.006743577308952808, + -0.0003274019982200116, + -0.010516299866139889, + 0.005534202791750431, + 0.015669286251068115, + 0.023779982700943947, + -0.007696616929024458, + 0.041355349123477936, + -0.0014821410877630115, + 0.026777129620313644, + 0.026409057900309563, + -0.0029084142297506332, + -0.012422379106283188, + 0.034730080515146255, + 0.014236440882086754, + 0.02828884683549404, + 0.034835245460271835, + -0.016392283141613007, + 0.002985643222928047, + -0.011009251698851585, + 0.012185762636363506, + 0.0002472973719704896, + -0.013750062324106693, + 0.0006617874605581164, + -0.018942484632134438, + 0.03546622022986412, + -0.0013917665928602219, + 0.021440107375383377, + 0.0027473834343254566, + 0.012343507260084152, + 0.018101181834936142, + 0.001994810765609145, + 0.005590070504695177, + 0.021768741309642792, + -0.01095667015761137, + -0.007210238371044397, + -0.01645801030099392, + -0.01449934858828783, + 0.011035542003810406, + -0.0064740972593426704, + -0.018863612785935402, + -0.002929775509983301, + 0.018824176862835884, + -0.010884370654821396, + 0.008071260526776314, + 0.0072431014850735664, + -0.004400414414703846, + 0.007828070782124996, + -0.0002074504445772618, + 0.004906511399894953, + -0.001485427375882864, + -0.0074928635731339455, + 0.028394009917974472, + -0.012902185320854187, + -0.02669825591146946, + -0.0013695837697014213, + 0.013460864312946796, + -0.005777392536401749, + -0.0026537226513028145, + -0.015248634852468967, + -0.00543889869004488, + -0.02134808897972107, + -0.010969815775752068, + 0.014407331123948097, + 0.001039306167513132, + 0.02124292589724064, + -0.00978673156350851, + 0.033599577844142914, + -0.0009456454426981509, + 0.01414442341774702, + -0.00015384196012746543, + -0.0027506696060299873, + -0.004282105714082718, + 0.02710576355457306, + 0.0001705817849142477, + -0.011193286627531052, + -0.011751965619623661, + -0.0141181331127882, + -0.012626132927834988, + -0.014683383516967297, + -0.027736742049455643, + -0.0018387093441560864, + -0.012474960647523403, + -0.0037694363854825497, + 0.01835094392299652, + 0.002634004456922412, + 0.002228141063824296, + 0.047007862478494644, + -0.013079647906124592, + 0.008531348779797554, + -0.019836371764540672, + 0.0016653547063469887, + 0.009937903843820095, + 0.032390203326940536, + 0.00030193282873369753, + -0.004423418547958136, + 0.004755339585244656, + -0.0076900445856153965, + -0.018981922417879105, + -0.0004592665354721248, + -0.044457659125328064, + 0.006191471591591835, + -0.023451348766684532, + -0.0029084142297506332, + -0.003730000229552388, + 0.014381039887666702, + -0.008307876996695995, + -0.003506528679281473, + 0.008623366244137287, + 0.004420132376253605, + -0.0075520179234445095, + -0.02115090750157833, + -0.0010376630816608667, + -0.00437083700671792, + -0.026067279279232025, + 0.005889127962291241, + 0.04882192239165306, + 0.00039867457235231996, + 0.00802525132894516, + 0.011765110306441784, + -0.0029379914049059153, + 0.004298537503927946, + -0.013671189546585083, + 0.00495580630376935, + 0.008781110867857933, + 0.0017319031758233905, + 0.017062697559595108, + -0.012770731933414936, + -0.014486202970147133, + 0.01365804485976696, + -0.014946291223168373, + 0.013132229447364807, + -0.01799601875245571, + 0.02614615112543106, + 0.024174343794584274, + 0.013217674568295479, + -0.011745392344892025, + 0.01590590365231037, + -0.014275876805186272, + -0.007847788743674755, + 0.01743076741695404, + -0.004410273395478725, + -0.009274061769247055, + 0.007328546606004238, + -0.00825529545545578, + -0.03593945503234863, + -0.00401262566447258, + 0.026579948142170906, + -0.005915418732911348, + 0.03123341128230095, + -0.0061257448978722095, + -0.017798837274312973, + -0.010660898871719837, + -0.025344282388687134, + -0.031522609293460846, + 0.009267489425837994, + -0.017391331493854523, + -0.014565075747668743, + -0.01179797388613224, + -0.018732158467173576, + 0.01712842285633087, + -0.019047647714614868, + -0.019810080528259277, + 0.019021358340978622, + -0.028972405940294266, + -0.01921853795647621, + -0.007952951826155186, + 0.018061745911836624, + 0.008491911925375462, + 0.012080599553883076, + -0.014275876805186272, + -0.0003621139912866056, + 0.005129982717335224, + -0.00955668743699789, + -0.011955718509852886, + -0.010595172643661499, + -0.017614802345633507, + -0.006171753630042076, + 0.007407418917864561, + -0.020730257034301758, + -0.0027112336829304695, + 0.005563780199736357, + 0.023556511849164963, + -0.025896389037370682, + -0.015012018382549286, + -0.011035542003810406, + 9.874435636447743e-05, + -0.018219489604234695, + -0.002597854705527425, + 0.01931055635213852, + 0.002727665239945054, + 0.02700060047209263, + -0.01284303143620491, + 0.03567654639482498, + -0.011936000548303127, + 0.010897516272962093, + -0.004245955962687731, + 0.012895612977445126, + -0.01814061775803566, + -0.005376458168029785, + 3.7407833588076755e-05, + 0.00283447140827775, + -0.019021358340978622, + 0.007913515903055668, + -0.003284700680524111, + 0.024279506877064705, + -0.006526678800582886, + 0.012645850889384747, + 0.011160423047840595, + 0.011719102039933205, + 0.007144511211663485, + 0.030917922034859657, + -0.0002514052903279662, + 0.009280635043978691, + -0.03225874900817871, + 0.03139115497469902, + 9.232571756001562e-05, + 0.007085357327014208, + 0.011929428204894066, + -0.008570784702897072, + 0.012415806762874126, + -0.03338925167918205, + 0.002814753446727991, + -0.006901321932673454, + 0.02292553335428238, + 0.022767789661884308, + -0.008399894461035728, + -0.00978015922009945, + -0.021124618127942085, + 0.026763983070850372, + 0.012389515526592731, + -0.021887049078941345, + -0.001367940567433834, + -0.009891894645988941, + -0.016734061762690544, + 0.014065551571547985, + -0.0015108964871615171, + 0.025554608553647995, + -0.021637286990880966, + -0.025094520300626755, + 0.014157569035887718, + -0.012540687806904316, + 0.016734061762690544, + -0.02297811582684517, + -0.02287295274436474, + -0.00531073147431016, + 0.01345429103821516, + -0.019652334973216057, + -0.028315138071775436, + 0.00810412410646677, + -0.02303069643676281, + 0.010549163445830345, + 0.013736916705965996, + 0.01286932174116373, + 0.01118671428412199, + 0.025002503767609596, + 0.009306925348937511, + -0.009142608381807804, + -0.0037661499809473753, + 0.008288159035146236, + -0.014236440882086754, + -0.033915068954229355, + 0.033652160316705704, + 0.02232084609568119, + 0.023766838014125824, + 0.013178238645195961, + 0.0033454978838562965, + 0.013605463318526745, + 0.04280133917927742, + -0.02577808126807213, + -0.034782662987709045, + -0.033757321536540985, + -0.026317041367292404, + -0.014052405953407288, + 0.018166908994317055, + 0.007335119415074587, + 0.02343820407986641, + -0.023122714832425117, + -0.003118740161880851, + 0.007006485015153885, + -0.010167947970330715, + -0.00767032615840435, + -0.0065332516096532345, + 0.017851419746875763, + -0.020099278539419174, + 0.03659672290086746, + 0.015130327083170414, + 0.0020687533542513847, + -0.011429904028773308, + 0.0016037357272580266, + -0.017036406323313713, + -0.03796384483575821, + 0.012008300051093102, + -0.024884194135665894, + 0.0011929427273571491, + -0.010082502849400043, + 0.006947330664843321, + -0.012080599553883076, + -0.004351119045168161, + 0.01957346312701702, + -0.021637286990880966, + 0.012658996507525444, + 0.007479718420654535, + 0.007308828644454479, + -0.00011296806769678369, + -0.00940551608800888, + -0.03404651954770088, + 0.02639591321349144, + 0.001206088112667203, + -0.012672141194343567, + 0.03933096304535866, + -0.02435838058590889, + 0.0179302915930748, + 0.017312459647655487, + 0.0007168337469920516, + 0.022754644975066185, + -0.010910660959780216, + 0.0396464504301548, + 0.0017664097249507904, + -0.04811207205057144, + -0.029445640742778778, + -0.04416846111416817, + 0.009891894645988941, + -0.013697480782866478, + 0.021387524902820587, + -0.00874167401343584, + 0.0029166301246732473, + -0.042065199464559555, + 0.002441753400489688, + -0.010121938772499561, + -0.016931243240833282, + -0.004781630355864763, + 0.029235314577817917, + 0.02577808126807213, + 0.010634608566761017, + -0.00825529545545578, + -0.004436564166098833, + -0.01284303143620491, + 0.009037445299327374, + 0.004867075011134148, + 0.014446767047047615, + 0.011199859902262688, + -0.007808352820575237, + -0.019941532984375954, + 0.03367844969034195, + 0.018180053681135178, + 0.013513445854187012, + 0.010884370654821396, + -0.003641268936917186, + -0.0037234274204820395, + -0.006730432156473398, + 0.006815876811742783, + 0.012494678609073162, + -0.0041407933458685875, + 0.02949822135269642, + 0.01681293547153473, + 0.003940326161682606, + 0.013644899241626263, + -0.01936313696205616, + -0.00851162988692522, + -1.2179369832665543e-06, + -0.008531348779797554, + 0.020980019122362137, + -0.02873579040169716, + -0.004922942724078894, + -0.0007291575311683118, + 0.0025584185495972633, + -0.00012827009777538478, + 0.0010261607822030783, + -0.003007004503160715, + -0.014722820371389389, + 0.016852371394634247, + 0.0038253040984272957, + 0.018074890598654747, + 0.033205218613147736, + -0.02134808897972107, + -0.018666433170437813, + -0.00778206204995513, + -0.015485251322388649, + -0.011193286627531052, + -0.0124881062656641, + 0.009280635043978691, + -0.017825128510594368, + -0.013040211983025074, + 0.018732158467173576, + 0.008551066741347313, + 0.03428313881158829, + -0.029024988412857056, + -0.017798837274312973, + -0.020677674561738968, + 0.04103986173868179, + -0.03546622022986412, + 0.024700159206986427, + 0.032179877161979675, + 0.010772635228931904, + 0.00040812281076796353, + 0.03275827318429947, + 0.0010894229635596275, + -0.011035542003810406, + 0.008399894461035728, + -0.0004904867964796722, + -0.0326005294919014, + 0.008873128332197666, + -0.026435349136590958, + -0.0032978460658341646, + -0.016379136592149734, + -0.005504625849425793, + 0.003864740254357457, + -0.008169850334525108, + 0.007946379482746124, + -0.023517075926065445, + 0.0008219967130571604, + 0.007151084020733833, + -0.00792008824646473, + 0.013842079788446426, + 0.0445365309715271, + -0.028472881764173508, + 0.009385798126459122, + 0.0012537401635199785, + 0.006267057731747627, + -0.014420476742088795, + -0.0029034847393631935, + -0.03817416727542877, + -0.025948969647288322, + 0.030339526012539864, + 0.009274061769247055, + -0.020822273567318916, + 0.008215859532356262, + -0.023569656535983086, + -0.012067453935742378, + 0.011732247658073902, + 0.0005923634744249284, + 0.004038916435092688, + 0.004436564166098833, + 0.011272159405052662, + 0.012836459092795849, + 0.02134808897972107, + 0.011988582089543343, + -0.011035542003810406, + -0.006191471591591835, + 0.001182262203656137, + -0.02017815038561821, + 0.01589275896549225, + -0.01824578084051609, + 0.03599203750491142, + 0.029235314577817917, + -0.005780678708106279, + -0.010213956236839294, + 0.013033639639616013, + -0.05389603599905968, + -0.023149006068706512, + 0.01428902242332697, + -0.003683991264551878, + -0.013723771087825298, + -0.015261780470609665, + 0.0031105242669582367, + 0.023556511849164963, + 0.0033241366036236286, + 0.02965596690773964, + -0.006572687532752752, + -0.007722907699644566, + 0.00042270595440641046, + -0.004673180636018515, + 0.030339526012539864, + 0.011817691847682, + -0.027841905131936073, + -0.009412088431417942, + 0.019678626209497452, + -0.024292653426527977, + 0.010654326528310776, + 0.013276828452944756, + -0.00874167401343584, + -0.0010951741132885218, + 0.00940551608800888, + 0.026080423966050148, + 0.02542315609753132, + 0.005258149933069944, + 0.039567578583955765, + -0.02517339400947094, + -0.013335983268916607, + 0.011285304091870785, + 0.00810412410646677, + -0.028104811906814575, + 0.012185762636363506, + 0.006421515718102455, + 0.018311507999897003, + 0.006582546513527632, + 0.02813110314309597, + -0.018626997247338295, + -0.012580123730003834, + -0.021637286990880966, + 0.01246181596070528, + 0.0037234274204820395, + 0.00695390347391367, + 0.008952000178396702, + -0.004798061680048704, + -0.03183809667825699, + -0.015038308687508106, + -0.00471261702477932, + -0.017246732488274574, + 0.0022593613248318434, + 0.020769692957401276, + -0.021952776238322258, + 0.04479943960905075, + -0.015577269718050957, + 0.025843806564807892, + -0.005208855029195547, + 0.02221568301320076, + -0.00899143610149622, + -0.010509727522730827, + 0.0031006652861833572, + 0.00802525132894516, + 0.022044794633984566, + 0.0032025419641286135, + -0.0006913645775057375, + -0.020769692957401276, + -0.006556255742907524, + 1.629050893825479e-05, + -0.02466072328388691, + -0.0015256850747391582, + 0.0030891632195562124, + -0.02370111085474491, + 0.010450572706758976, + -0.010450572706758976, + 0.01580074056982994, + 0.01768052950501442, + -0.0186007060110569, + -0.015616705641150475, + 0.013441146351397038, + 0.18182682991027832, + -0.008938854560256004, + 0.007854362018406391, + 0.008577357046306133, + 0.002599498024210334, + -0.010444000363349915, + 0.024502979591488838, + -0.010759489610791206, + -0.010259965434670448, + 0.029524512588977814, + 0.002162414137274027, + 0.0010869582183659077, + 0.016484299674630165, + 0.010595172643661499, + -0.006921039894223213, + -0.01403926033526659, + -0.03415168449282646, + 0.016681481152772903, + -0.00011307076783850789, + 0.021716158837080002, + 0.01824578084051609, + -0.02976112812757492, + -0.004311683122068644, + -0.021440107375383377, + 0.05202939361333847, + 0.011863701045513153, + -0.003614978166297078, + -0.006322925444692373, + 0.012343507260084152, + -0.004038916435092688, + -0.007808352820575237, + 0.004341260064393282, + -0.003177894512191415, + -0.010338837280869484, + 0.017759401351213455, + 0.006375506985932589, + 0.009444952011108398, + -0.0050445375964045525, + 0.025147102773189545, + 0.01202801801264286, + 0.01556412409991026, + -0.0018600705079734325, + -0.0020539648830890656, + -0.014091841876506805, + -0.01299420278519392, + 0.03083905018866062, + -0.017286168411374092, + 0.012343507260084152, + -0.004065207205712795, + -0.021137762814760208, + -0.014078696258366108, + 0.0027671013958752155, + -0.024121763184666634, + 0.02084856480360031, + -0.0076900445856153965, + 0.008899418637156487, + 0.014236440882086754, + -0.019849516451358795, + -0.004528581630438566, + 0.014131277799606323, + -0.014341603964567184, + 0.009280635043978691, + -0.016392283141613007, + 0.01403926033526659, + -0.020651383325457573, + 0.002822969341650605, + -0.04080324247479439, + 0.0004999350639991462, + -0.015182907693088055, + -0.020454203709959984, + -0.023201586678624153, + -0.03296859934926033, + -0.016011066734790802, + 0.023464495316147804, + -0.006651559844613075, + -0.029287895187735558, + -0.009517251513898373, + -0.0043905554339289665, + 0.016891807317733765, + 0.019586609676480293, + -0.019836371764540672, + -0.011863701045513153, + -0.034072812646627426, + -0.02655365690588951, + 0.02109832689166069, + -0.03906805440783501, + 0.029682256281375885, + -0.01474911067634821, + -0.032889727503061295, + -0.014197004958987236, + -0.0007879009353928268, + 0.006467524450272322, + -0.005826687440276146, + -0.02079598419368267, + 0.010614890605211258, + 0.00673700449988246, + -0.0076900445856153965, + 0.02527855522930622, + -0.017956582829356194, + -0.0037760089617222548, + -0.009313498623669147, + 0.08865240961313248, + 0.02685600146651268, + -0.017088986933231354, + -0.003263339400291443, + 0.006868458352982998, + -0.0019110088469460607, + 0.03486153483390808, + -0.0019126520492136478, + -0.02003355138003826, + -0.006171753630042076, + -0.015090890228748322, + 0.0019241542322561145, + -0.02400345541536808, + -0.0013523304369300604, + 0.013618608936667442, + 0.002964282175526023, + 0.007972669787704945, + 0.009057163260877132, + -0.006615410093218088, + -0.0017368326662108302, + 0.008419612422585487, + 0.008347312919795513, + 0.00542575353756547, + 0.006191471591591835, + -0.016011066734790802, + -0.0543166883289814, + 0.002491048537194729, + 0.0033504273742437363, + -0.0032731983810663223, + 0.025515172630548477, + -0.032442785799503326, + -0.0029330619145184755, + 0.009852458722889423, + 0.010680616833269596, + 0.036517851054668427, + 0.013973533175885677, + -0.0445365309715271, + 0.009385798126459122, + 0.008419612422585487, + 0.0011970506748184562, + -0.01911337487399578, + -0.0028689780738204718, + 0.007256247103214264, + 0.010154802352190018, + 0.0020243877079337835, + -0.0010869582183659077, + 0.0006367291207425296, + -0.02726350724697113, + -0.007460000459104776, + -0.0063163526356220245, + -0.008873128332197666, + -0.012948194518685341, + -0.008557639084756374, + 0.00389760360121727, + 0.021795032545924187, + -0.040698081254959106, + -0.016523735597729683, + 0.030392106622457504, + 0.014512494206428528, + -0.011035542003810406, + -0.008242149837315083, + -0.017417622730135918, + -0.009076881222426891, + -0.002599498024210334, + 0.008189568296074867, + -0.16521106660366058, + 0.01824578084051609, + 0.0355713851749897, + -0.03664930537343025, + 0.031207120046019554, + -0.020270168781280518, + 0.007335119415074587, + 0.016195101663470268, + -0.017588511109352112, + 0.011962290853261948, + 0.031969550997018814, + -0.010286255739629269, + -0.012093745172023773, + -0.04151309281587601, + 0.006434660870581865, + 0.010647754184901714, + 0.008156705647706985, + 0.03969903290271759, + -0.008196141570806503, + 0.016878660768270493, + -0.010733198374509811, + -0.02053307555615902, + 0.011653374880552292, + -0.021282361820340157, + 0.0008400716469623148, + 0.0028870529495179653, + 0.0031302424613386393, + 0.023214731365442276, + 0.005192423239350319, + -0.011581075377762318, + -0.007151084020733833, + -0.008288159035146236, + 0.02159785106778145, + -0.004163797479122877, + -0.007420564070343971, + -0.011903136968612671, + -0.004577876999974251, + -0.006211189553141594, + -0.00028016080614179373, + 0.04088211804628372, + 0.018521834164857864, + 0.014683383516967297, + -0.014604511670768261, + 0.008169850334525108, + -0.0510566383600235, + -0.0016908238176256418, + -0.0010442357743158937, + 0.016996970400214195, + -0.012284353375434875, + -0.01436789520084858, + -0.005889127962291241, + -0.007663753814995289, + -0.010766061954200268, + 0.011515348218381405, + 0.03938354179263115, + 0.011489057913422585, + 0.0019553746096789837, + 0.0070590665563941, + -0.001596341491676867, + 0.005724810995161533, + -0.0031121675856411457, + -0.009891894645988941, + 0.021545270457863808, + 0.010660898871719837, + -0.014446767047047615, + -0.02710576355457306, + 0.013460864312946796, + 0.01449934858828783, + -0.029945164918899536, + 0.012087171897292137, + -0.01390780694782734, + -0.02028331346809864, + 0.006477383431047201, + -0.010069357231259346, + 0.011147278361022472, + 0.0005106156459078193, + -0.01595848612487316, + -0.008117268793284893, + -0.01556412409991026, + -0.01895563118159771, + -0.026001552119851112, + 0.06225649639964104, + -0.029209023341536522, + -0.02416119910776615, + -0.006901321932673454, + -0.0030037180986255407, + 0.017496494576334953, + -0.008163277991116047, + 0.009596123360097408, + 0.004982097074389458, + 0.010121938772499561, + -0.03252165764570236, + -0.011699384078383446, + -0.03746431693434715, + 0.0058759828098118305, + -0.0002670154208317399, + 0.011160423047840595, + -0.0072431014850735664, + 0.00922148022800684, + -0.008163277991116047, + 0.008090978488326073, + -0.012323789298534393, + -0.015143471769988537, + 0.008721956051886082, + -0.015511542558670044, + -0.005862837191671133, + 0.007137938402593136, + -0.012553833425045013, + 0.03998823091387749, + -0.0259358249604702, + -0.026724547147750854, + -0.016747208312153816, + 0.006273630075156689, + 0.02012556977570057, + 0.0031598194036632776, + 0.00300043192692101, + 0.02807852067053318, + -0.013460864312946796, + 0.007315400987863541, + -0.007157656829804182, + 0.039725322276353836, + -0.009385798126459122, + 0.00012015694665024057, + -0.0014443481341004372, + 0.020099278539419174, + -0.023911437019705772, + -0.08965145796537399, + 0.002270863624289632, + 0.003966616932302713, + 0.012363225221633911, + 0.006710713729262352, + 0.006247339304536581, + -0.007578308694064617, + 0.005501339212059975, + -0.00437083700671792, + 0.00011389234714442864, + -0.02211051993072033, + -0.007946379482746124, + -0.010312546975910664, + -0.01334912795573473, + 0.02338562160730362, + -0.01368433516472578, + -0.007177374791353941, + 0.007644035387784243, + -0.016129374504089355, + 0.02170301415026188, + -0.007578308694064617, + -0.02970854751765728, + -0.013250538147985935, + -0.010930378921329975, + 0.001585660851560533, + 0.02364853024482727, + -0.017772547900676727, + -0.0009398942929692566, + 0.013960388489067554, + -0.0030168634839355946, + -0.013020494021475315, + -0.013447718694806099, + 0.023819418624043465, + -0.03575541824102402, + 0.030076617375016212, + 0.024476688355207443, + -0.01428902242332697, + -0.011502203531563282, + 0.0007817390142008662, + -0.008288159035146236, + -0.008294731378555298, + -0.0024729736614972353, + 0.020966872572898865, + -0.03985677659511566, + 0.006046872586011887, + -0.023872001096606255, + -0.002198563888669014, + 0.008767965249717236, + -0.002400674158707261, + -0.018784740939736366, + -0.014788546599447727, + -0.00957640539854765, + -0.01108155120164156, + -0.001306321588344872, + 0.026882292702794075, + -0.008833692409098148, + -0.0016218106029555202, + -0.016234537586569786, + -0.011528493836522102, + -0.0032370486296713352, + -0.006362361367791891, + 0.011949146166443825, + -0.03943612426519394, + 0.01971806213259697, + 0.013644899241626263, + -0.018324652686715126, + -0.030917922034859657, + -0.0005163667374290526, + 0.0016678194515407085, + -0.008616792969405651, + -0.012251489795744419, + 0.007039348129183054, + 0.018206344917416573, + 0.010963242501020432, + -0.024082327261567116, + 0.018508687615394592, + -0.03680704906582832, + -0.0181931983679533, + 0.006178326439112425, + -0.038200460374355316, + -0.008182995952665806, + -0.02623816765844822, + 0.026974309235811234, + -0.042880214750766754, + 0.031969550997018814, + 0.011633656919002533, + 0.002785176271572709, + -0.017614802345633507, + 0.014078696258366108, + -0.021584706380963326, + -0.0006728788721375167, + -0.005320590455085039, + 0.025620335713028908, + -0.038910310715436935, + 0.011791401542723179, + -0.0031581763178110123, + 0.009129462763667107, + -0.015248634852468967, + 0.009339788928627968, + 0.007591453846544027, + -0.009274061769247055, + -0.004571304190903902, + -0.029209023341536522, + 0.01906079426407814, + 0.011226150207221508, + 0.003733286401256919, + -0.016536882147192955, + 0.017207296565175056, + 0.02414805442094803, + 0.019428864121437073, + 0.013855225406587124, + -0.018771596252918243, + -0.016011066734790802, + -0.0018304934492334723, + 0.0028656916692852974, + -0.02501564845442772, + -0.003864740254357457, + -0.013276828452944756, + 0.00932664331048727, + 0.0023973877541720867, + 0.004019198473542929, + 0.006654846016317606, + -0.020007260143756866, + 0.008629938587546349, + 0.013973533175885677, + 0.004334687255322933, + -0.034072812646627426, + -0.015984775498509407, + -0.009826167486608028, + -0.005691947415471077, + -0.020454203709959984, + -0.008182995952665806, + -0.0020687533542513847, + -0.0036084053572267294, + -0.016011066734790802, + 0.01062146294862032, + -0.02211051993072033, + 0.016931243240833282, + 0.011120987124741077, + 0.02894611656665802, + -0.005392889957875013, + 0.0749812200665474, + -0.03349441662430763, + -0.029235314577817917, + 0.008321022614836693, + -0.034782662987709045, + -0.015682432800531387, + 0.0007722908048890531, + -0.02207108400762081, + -0.003562396625056863, + 0.02191334031522274, + -0.022084230557084084, + 0.053843457251787186, + 0.018587559461593628, + 0.010483436286449432, + 0.0012069097720086575, + 0.0020079559180885553, + -0.037884969264268875, + 0.014302168041467667, + 0.008695665746927261, + -0.006477383431047201, + -0.030155491083860397, + 0.028262555599212646, + 0.0073614101856946945, + 0.004761911928653717, + -0.009747295640408993, + -0.004144079517573118, + -0.01773311011493206, + -0.020204441621899605, + -0.000541014363989234, + 0.006306493654847145, + -0.02339876815676689, + -0.013960388489067554, + -0.0050806873477995396, + 0.014183859340846539, + 0.01661575399339199, + 0.002778603695333004, + 0.016642045229673386, + 0.017864564433693886, + -0.013250538147985935, + 0.01707584224641323, + 0.021466396749019623, + 0.006378793157637119, + 0.005399462766945362, + -0.030891630798578262, + -0.0013375418493524194, + 0.01595848612487316, + 0.019297409802675247, + -0.03267940133810043, + 0.022097375243902206, + 0.0038713128305971622, + 0.0011937643866986036, + -0.00037217841600067914, + 0.02115090750157833, + 0.010871225036680698, + -0.004006052855402231, + 0.014078696258366108, + 0.01495943684130907, + -0.007381128147244453, + 0.005360026843845844, + 0.009845885448157787, + 0.03988306596875191, + -0.006635128054767847, + 0.0167077723890543, + 0.019639190286397934, + -0.028656916692852974, + 0.000773523177485913, + 0.00684216758236289, + 0.01925797387957573, + -0.034677498042583466, + -0.004121074918657541, + 0.028420301154255867, + -0.030129199847579002, + 0.02813110314309597, + -0.0010236960370093584, + -0.014065551571547985, + 0.00017140337149612606, + 0.030444689095020294, + 0.0020901146344840527, + 0.0027950352523475885, + -0.01368433516472578, + 0.022912388667464256, + 0.048033200204372406, + 0.008721956051886082, + 0.004919656552374363, + -0.006280202884227037, + 0.016694625839591026, + 0.01594533957540989, + -0.006720573175698519, + -0.02338562160730362, + -0.003315920941531658, + -0.0013860154431313276, + 0.017141569405794144, + 0.0037825817707926035, + -0.01874530501663685, + -0.012074027210474014, + -0.01844296045601368, + -0.029524512588977814, + 0.021058890968561172, + 0.009517251513898373, + -0.008097550831735134, + 0.09538283944129944, + 0.03252165764570236, + -0.0019537312909960747, + -0.0027095903642475605, + -0.014381039887666702, + 0.028919825330376625, + -0.003271555295214057, + 0.01773311011493206, + -0.014512494206428528, + -0.023556511849164963, + -0.00565579766407609, + -0.009431806392967701, + 0.015603560023009777, + -0.011554785072803497, + -0.00907030887901783, + 0.04001452028751373, + -0.02451612427830696, + 0.0167077723890543, + 0.005458617117255926, + 0.01376320794224739, + 0.03546622022986412, + -0.019231684505939484, + 0.0207828376442194, + 0.011153850704431534, + -0.024884194135665894, + -0.03699108585715294, + 0.0008593788952566683, + -0.023622239008545876, + -0.0055670663714408875, + 0.009898466989398003, + -0.003953471314162016, + 0.01840352453291416, + -0.08449847251176834, + -0.019941532984375954, + 0.02140066958963871, + -0.021689869463443756, + -0.009168898686766624, + -0.015537832863628864, + -0.00662198243662715, + -0.0030250793788582087, + 0.011995154432952404, + 0.0195603184401989, + -0.021847613155841827, + -0.04748109355568886, + 0.0034539473708719015, + 0.007157656829804182, + 0.010108793154358864, + -0.020270168781280518, + -0.030549852177500725 + ], + "metadata": { + "source": "Kreye_Marieke_BA_241_V2.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 17, + "has_images": true, + "image_count": 98, + "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", + "links": [], + "last_modified": "2025-05-05T23:00:23", + "_known_field_names": "frozenset({'is_continuation', 'sent_to', 'header_footer_type', 'email_message_id', 'filename', 'languages', 'detection_class_prob', 'sent_from', 'link_texts', 'cc_recipient', 'subject', 'image_mime_type', 'image_path', 'filetype', 'page_number', 'last_modified', 'signature', 'detection_origin', 'text_as_html', 'attached_to_filename', 'bcc_recipient', 'data_source', 'link_start_indexes', 'category_depth', 'emphasized_text_tags', 'parent_id', 'orig_elements', 'page_name', 'coordinates', 'url', 'link_urls', 'file_directory', 'links', 'table_as_cells', 'emphasized_text_contents', 'key_value_pairs', 'image_base64'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "Kreye_Marieke_BA_241_V2.pdf", + "detection_class_prob": 0.3422867953777313, + "parent_id": "e02392183bc6851689602ad4b9f6039f", + "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", + "id": "ce00eae5-7e07-454f-9e4f-f79ac36f92f4", + "processing_timestamp": "2025-05-05T23:15:46.977945", + "chunk_number": 13, + "total_chunks": 56, + "chunking_strategy": "hybrid", + "word_count": 313 + } +} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000014.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000014.json new file mode 100644 index 0000000000000000000000000000000000000000..c385621d358dd2e116a6c4c02d0cc236714b7853 --- /dev/null +++ b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000014.json @@ -0,0 +1,1570 @@ +{ + "id": "61a115b2-0ff7-441a-f6d9-eb3d00000014", + "content": "Bott et al. 2018, S. 117). In den letzten Jahrzenten stand der motorisierte Individualverkehr h\u00e4ufig im Vordergrund der Stadtplanung. Als Folge entstanden monofunktionale Stra\u00dfenr\u00e4ume mit einer klaren Trennung der einzelnen Verkehrsteilnehmer (vgl. Kampusch 2018, S. 14). Stra\u00dfenfl\u00e4chen verbrauchen eine gro\u00dfe Menge der Ressource Boden, obwohl der angebotene Platz h\u00e4ufig nur in kurzen Zeitintervallen komplett ausgelastet ist (vgl. Bott et al. 2018, S. 115). Hier besteht Handlungsbedarf, um die Gr\u00f6\u00dfe des Stra\u00dfenraums g\u00e4nzlich und effizient zu nutzen und nicht nur auf die Funktion der Ortsverbindung zu beschr\u00e4nken (vgl. Kampusch 2018, S. 14). Der aktuelle Ergebnisbericht Mobilit\u00e4t in Deutschland zeigt auf, dass der PKW noch immer eine dominante Rolle bei der allt\u00e4glichen Verkehrsmittelwahl der Bev\u00f6lkerung darstellt. Trotz einer Ausweitung des Alternativangebots ist kein R\u00fcckgang in der MIV- Nutzung zu verzeichnen (vgl. infas Institut f\u00fcr angewandte Sozialwissenschaft GmbH 2018, S. 45). In dem ganzheitlichen Konzept einer nachhaltigen Stadtentwicklung spielt der Bereich Verkehr und Mobilit\u00e4t somit eine entscheidende Rolle. Diesen nachhaltig zu gestalten, er\u00f6ffnet einige Handlungsfelder und Herausforderungen, wie beispielsweise die Vermeidung verkehrsbedingter Emissionen, die Reduktion des Fl\u00e4chenverbrauchs, die\n12\nTheorieteil\nSteigerung der Sicherheit im Stra\u00dfenraum und die Befriedigung der individuellen Mobilit\u00e4tsbed\u00fcrfnisse (vgl. Bott et al. 2018, S. 114). Ziel muss es sein, den Anteil des MIV zu senken und ein hohes Ma\u00df an Integration und Vernetzung verschiedener alternativer Mobilit\u00e4tsformen zu schaffen (vgl. Bott et al. 2018, S. 117). Nur durch eine Schaffung von Alternativen zum MIV kann die Bereitschaft der Bev\u00f6lkerung, auf den eigenen PKW zu verzichten und auf nachhaltige Mobilit\u00e4tsformen auszuweichen, weiter gesteigert und auf lange Sicht eine 80/20 Verteilung im Modal Split erreicht werden. Diese Verteilung bedeutet, dass 80 % der Verkehrsteilnehmer ein nicht motorisiertes Verkehrsmittel und 20 % ein motorisiertes Verkehrsmittel w\u00e4hlen (vgl. Bott et al. 2018, S. 231). Neben der Ausweitung des Mobilit\u00e4tsangebots kann auch die Stadtplanung den Trend einer autoarmen Stadt unterst\u00fctzen.", + "embedding": [ + 0.01375611312687397, + -0.002291605109348893, + 0.01634916104376316, + -0.009866543114185333, + -0.015234149992465973, + 0.016452882438898087, + -0.027278851717710495, + 0.0023110529873520136, + -0.01592130772769451, + -0.022676194086670876, + 0.005733874626457691, + 0.01275779027491808, + 0.0011085275327786803, + 0.012427177280187607, + -0.010890796780586243, + 0.004709621425718069, + 0.049630917608737946, + -0.0006972865085117519, + 0.026967687532305717, + 0.0068456437438726425, + -0.0001595331559656188, + 0.02516551874577999, + 0.01903296448290348, + -0.018579181283712387, + -0.0025914262514561415, + 0.03500613197684288, + 0.025113658979535103, + -0.02167787216603756, + -0.001284368452616036, + -0.013431982137262821, + 0.02751222625374794, + -0.010443496517837048, + -0.01239476352930069, + -0.00644048023968935, + -0.002228399505838752, + -0.005720909684896469, + 0.0008038445375859737, + -0.004774447530508041, + 0.020835131406784058, + -0.009672064334154129, + 0.004268803168088198, + -0.002889626659452915, + -0.0070790178142488, + -0.025321101769804955, + -0.0030970703810453415, + 0.02303922176361084, + -0.002578460844233632, + 0.015493454411625862, + -0.029742246493697166, + 0.02018686942756176, + 0.018877381458878517, + 0.029405150562524796, + 0.0010274947853758931, + 0.004887893330305815, + -0.01177891530096531, + -0.005669048521667719, + -0.021262984722852707, + 0.030208995565772057, + -0.004900858271867037, + -0.02473766729235649, + -0.024257952347397804, + 0.0020031286403536797, + -0.019395990297198296, + 0.009172903373837471, + -0.0328020416200161, + -0.01478036679327488, + -0.014261757954955101, + 0.006962330546230078, + 0.015623107552528381, + 0.004391972906887531, + 0.017943883314728737, + 0.02823827974498272, + 0.021729731932282448, + -0.009892473928630352, + 0.022896602749824524, + -0.006028833799064159, + 0.010612044483423233, + -0.00672895647585392, + -0.00881635956466198, + -0.009847095236182213, + 0.0072799790650606155, + -0.013509773649275303, + -0.016491778194904327, + 0.06041799113154411, + 0.017477136105298996, + 0.010903761722147465, + 0.007701348979026079, + 0.031324006617069244, + 0.008252371102571487, + 0.006349723320454359, + -0.011292719282209873, + 0.014339548535645008, + -0.005908905528485775, + 0.0108583839610219, + 0.006158486008644104, + 0.001583379227668047, + 0.00040192226879298687, + 0.0032558944076299667, + 0.026137912645936012, + -0.00150963943451643, + 0.000658390810713172, + 0.008459814824163914, + -0.018501389771699905, + -0.0069947438314557076, + -0.04322608932852745, + -0.004359560087323189, + -0.009983230382204056, + 0.004861962981522083, + 0.006609028205275536, + -0.0215093232691288, + -0.014508097432553768, + 0.03710649907588959, + -0.014365479350090027, + -0.006304345093667507, + 0.009542412124574184, + -0.01179836317896843, + 0.016621429473161697, + 5.40386899956502e-05, + -0.006949365604668856, + -0.004904099740087986, + 0.026345355436205864, + 0.00337420217692852, + 0.015169324353337288, + -0.009334968402981758, + 0.025735989212989807, + 0.0075652142986655235, + -0.0005502121057361364, + 0.007053087465465069, + -0.022805847227573395, + -0.015454558655619621, + -0.01800871081650257, + 0.008634845726191998, + 0.0029998309910297394, + -7.115685093594948e-06, + -0.007928241044282913, + 0.006161727476865053, + -0.03433194011449814, + -0.006184416823089123, + -0.029742246493697166, + -0.04659705236554146, + -0.013652391731739044, + 0.0007138982182368636, + -0.028290141373872757, + -0.024115335196256638, + 0.002077678684145212, + 0.020199835300445557, + 0.022377993911504745, + 0.021989036351442337, + 0.014598853886127472, + -0.024037543684244156, + -0.005425950512290001, + -0.03897349536418915, + 0.012271594256162643, + -0.0010874590370804071, + -0.003507095854729414, + 0.008044927380979061, + -0.015519385226070881, + 0.006002903450280428, + -0.01039163488894701, + -0.00286369607783854, + 0.007610592525452375, + -0.012122494168579578, + 0.012349385768175125, + 0.007947688922286034, + 0.040477462112903595, + 0.004887893330305815, + 0.0014553475193679333, + 0.02206682786345482, + 0.011850223876535892, + -0.0077661750838160515, + -0.007882862351834774, + 0.02057582698762417, + -0.04937161132693291, + 0.008317197673022747, + -0.008096789009869099, + 0.012855029664933681, + 0.022598402574658394, + 0.01826801523566246, + -0.020251695066690445, + -0.017412308603525162, + -0.00042461141129024327, + 0.016725152730941772, + 0.02844572439789772, + 0.020122043788433075, + -0.010009161196649075, + 0.0021036092657595873, + 0.029820038005709648, + 0.005208782851696014, + -0.004051635507494211, + -0.004174805246293545, + 0.00909511186182499, + 0.0035492328461259604, + 0.014676645398139954, + -0.02257247269153595, + -0.6393416523933411, + 0.006359447259455919, + 0.011085275560617447, + -0.020160939544439316, + 0.02473766729235649, + 0.030338648706674576, + 0.024180160835385323, + 0.004709621425718069, + 0.004528108052909374, + 0.037962205708026886, + -0.007267013657838106, + 0.016258403658866882, + -0.018384702503681183, + -0.01143533643335104, + -0.01522118505090475, + -0.005808424670249224, + 0.0113899577409029, + -0.027201062068343163, + 0.03726208209991455, + -0.00901083741337061, + -0.010339774191379547, + 0.014132104814052582, + -0.006258966866880655, + 0.0094775864854455, + -0.0014658818254247308, + 0.009639651514589787, + 0.007630040403455496, + -0.013036542572081089, + 0.01177891530096531, + 0.011707606725394726, + -0.020368382334709167, + 0.020899957045912743, + -0.02201496809720993, + 0.008401472121477127, + 0.046778563410043716, + 0.005040234886109829, + -0.007675418630242348, + 0.03765103965997696, + 0.006975295953452587, + 0.020796235650777817, + 0.00269838934764266, + 0.009659099392592907, + -0.007902310229837894, + -0.006310827564448118, + 0.01371721737086773, + 0.0071373614482581615, + 0.0430186465382576, + -0.03184261545538902, + 0.004485970828682184, + -0.018760694190859795, + 0.016245437785983086, + 0.014624783769249916, + 0.004667484201490879, + 0.007241083309054375, + 0.016245437785983086, + 0.005095337051898241, + 0.008939528837800026, + -0.01311433408409357, + -0.0026919066440314054, + 0.007980101741850376, + 0.00536760687828064, + -0.003155413782224059, + -0.0006292189937084913, + -0.008544089272618294, + -0.009302555583417416, + 0.03142772614955902, + -0.027538157999515533, + -0.005403261166065931, + 0.005095337051898241, + -0.03028678707778454, + -0.02453022263944149, + 0.018475458025932312, + -0.012673516757786274, + -0.014145070686936378, + 0.033242858946323395, + 0.004926789086312056, + 0.03155738115310669, + -0.001528276945464313, + -0.011143619194626808, + 0.018332840874791145, + 0.0065539260394871235, + -0.018631041049957275, + -0.01673811674118042, + 0.005552361719310284, + 0.02937922067940235, + -0.02533406764268875, + -0.022857706993818283, + -0.013004129752516747, + -8.148852066369727e-05, + 0.004041911568492651, + 0.0336318165063858, + 0.0016166026471182704, + 0.008083823136985302, + -0.017153004184365273, + 0.0009918403811752796, + 0.04112572222948074, + 0.0002724725054576993, + 0.06052171438932419, + 0.015817586332559586, + -0.04436703026294708, + -0.028601305559277534, + -0.009736890904605389, + 0.03160924091935158, + -0.0010242535499855876, + 0.017062248662114143, + 0.008044927380979061, + -0.013795008882880211, + 0.0005972111248411238, + 0.014663679525256157, + -0.034824617207050323, + 0.0023240181617438793, + -0.009866543114185333, + 0.019525643438100815, + -0.006929917726665735, + -0.014248792082071304, + -0.024906214326620102, + 0.018047606572508812, + 0.0034260631073266268, + 0.003319100011140108, + -0.00408729026094079, + -0.005831114016473293, + -0.01448216661810875, + 0.02180752344429493, + -0.010035091079771519, + -0.010780592449009418, + 0.011221409775316715, + 0.019655294716358185, + 0.01452106237411499, + -0.03083132766187191, + -0.005461604800075293, + -0.00405487697571516, + 0.010618526488542557, + 0.050875578075647354, + 0.002137643052265048, + 0.04032187908887863, + 0.0016093096928671002, + 0.020627686753869057, + -0.011325132101774216, + -0.02423202246427536, + -0.022209446877241135, + -0.009172903373837471, + -0.004268803168088198, + 0.0031959302723407745, + -0.05388351157307625, + -0.015195254236459732, + -0.030183065682649612, + 0.001443192595615983, + 0.017049282789230347, + -0.009898955933749676, + -0.0066965436562895775, + -0.005912146531045437, + -0.024608014151453972, + -0.017101144418120384, + -0.0016514466842636466, + -0.016673291102051735, + -0.0018394426442682743, + -0.012958751060068607, + -0.008440367877483368, + 0.006722474005073309, + -0.020173903554677963, + -0.004414662253111601, + 0.006352964788675308, + -0.022468751296401024, + -0.0020420243963599205, + 0.005526430904865265, + -0.009970265440642834, + -0.007506870664656162, + 0.017619753256440163, + -0.0008168097701855004, + -0.04843811318278313, + -0.01155850663781166, + -0.006968813482671976, + -0.004411420784890652, + 0.014054314233362675, + -0.029197707772254944, + -0.017943883314728737, + -0.021911244839429855, + -0.005062923766672611, + 0.002627080539241433, + -0.0077661750838160515, + -0.0034293043427169323, + -0.013885765336453915, + -0.012770755216479301, + -0.003656195942312479, + 0.010612044483423233, + -0.023985683917999268, + 0.01083893608301878, + 0.003798813559114933, + -0.02717513032257557, + 0.021146297454833984, + 0.03036457858979702, + 0.02462098002433777, + -0.018255049362778664, + 0.006291379686444998, + -0.0008994631352834404, + 0.003902535419911146, + -0.011143619194626808, + 0.01243365928530693, + -0.002302949782460928, + 0.015493454411625862, + 0.03726208209991455, + 0.021729731932282448, + 0.009185868315398693, + -0.008758015930652618, + 0.028342001140117645, + -0.03015713393688202, + -0.017399344593286514, + -0.017904987558722496, + 0.0344875231385231, + 0.0030257615726441145, + 0.018592145293951035, + 0.012492002919316292, + -0.027590017765760422, + -0.01912372000515461, + -0.01984977349638939, + 0.04493750259280205, + -0.013665356673300266, + 0.007986584678292274, + -0.004268803168088198, + 0.005720909684896469, + 0.0033774434123188257, + -0.0025476685259491205, + 0.03798813745379448, + -0.014572923071682453, + -0.01153905875980854, + 0.002627080539241433, + 0.0077078319154679775, + 0.01949971169233322, + -0.013127299956977367, + -0.0027842840645462275, + -0.01907186023890972, + 0.022209446877241135, + 0.010086951777338982, + 0.013088404200971127, + 0.017269691452383995, + 0.013269917108118534, + 0.002325638895854354, + -0.005844079423695803, + 0.044392962008714676, + -0.0034163391683250666, + 0.021327810361981392, + 0.04161840304732323, + 0.009898955933749676, + -0.0029009710997343063, + 0.03905128687620163, + -0.0027745601255446672, + 0.022326132282614708, + 0.028886541724205017, + -0.0031586552504450083, + 0.02453022263944149, + -0.0042525967583060265, + -0.006677095778286457, + -0.0055069830268621445, + -0.008660776540637016, + -0.008096789009869099, + -0.007662453223019838, + 0.01699742116034031, + -0.012602207250893116, + 0.017567891627550125, + 0.022040897980332375, + 0.002170056104660034, + 0.0069882613606750965, + 0.0007596816867589951, + -0.015065602026879787, + -0.014935949817299843, + -0.0019869222305715084, + -0.018968136981129646, + -0.007429079152643681, + -0.003409856464713812, + -0.0021895039826631546, + -0.00184754584915936, + -0.01826801523566246, + 0.0061325556598603725, + 0.005523189902305603, + 0.018203189596533775, + -0.009322003461420536, + -0.014793331734836102, + 0.0034422697499394417, + 0.023998647928237915, + 0.026267563924193382, + 0.012692964635789394, + -0.012167871929705143, + -0.021159261465072632, + 0.026682451367378235, + -0.014235827140510082, + -0.039180938154459, + -0.010171226225793362, + 0.016154682263731956, + -0.014793331734836102, + -0.028471654281020164, + -0.008187545463442802, + 0.007234600838273764, + -0.020835131406784058, + 0.004690173547714949, + -0.0037566765677183867, + 0.010002678260207176, + 0.03591369837522507, + -0.0052152653224766254, + -0.000852464116178453, + 0.0052574025467038155, + -0.011305684223771095, + -0.003215378150343895, + -0.0208740271627903, + -0.013341225683689117, + 0.035369157791137695, + -0.005785735789686441, + 0.00400301581248641, + -0.015428628772497177, + -0.012492002919316292, + -0.018332840874791145, + -0.003088966943323612, + -0.018112432211637497, + 0.007234600838273764, + -0.015960203483700752, + -0.0187347624450922, + 0.01899406872689724, + 0.006715991068631411, + -0.01831987500190735, + 0.06041799113154411, + -0.006916952319443226, + 0.005173128563910723, + -0.03946617245674133, + 0.013613495975732803, + 0.015558280982077122, + 0.03049422986805439, + -0.006949365604668856, + 0.0014861399540677667, + 0.023493004962801933, + -0.017943883314728737, + -0.011688158847391605, + -0.0088358074426651, + -0.04488563910126686, + 0.012492002919316292, + 0.0004870066186413169, + 0.006949365604668856, + -0.010702800936996937, + 0.018514353781938553, + -0.008219958283007145, + 0.03308727592229843, + 0.004178046714514494, + -0.00877098087221384, + -0.021651940420269966, + -0.002947970060631633, + -0.018618077039718628, + 0.005672289989888668, + -0.03295762464404106, + -0.015234149992465973, + 0.03137586638331413, + 0.013431982137262821, + -0.016751082614064217, + 0.020135007798671722, + 0.03547288104891777, + 0.012673516757786274, + -0.020809201523661613, + 0.03982919827103615, + 0.020899957045912743, + 0.016452882438898087, + 0.017490100115537643, + -0.03129807487130165, + -0.011526092886924744, + 0.0011595780961215496, + 0.007455009501427412, + 0.0366397500038147, + 0.023350385949015617, + 0.021029610186815262, + 0.00576952937990427, + -0.014611818827688694, + -0.005212024319916964, + 0.0107546616345644, + -0.023104047402739525, + 0.004139150958508253, + 0.010560182854533195, + 0.022818811237812042, + -0.005766287911683321, + 0.014948914758861065, + -0.0034066152293235064, + -0.030935049057006836, + -0.005293056834489107, + 0.003226722590625286, + -0.01716597005724907, + 0.006923435255885124, + -0.01205118466168642, + -0.029820038005709648, + -0.01878662407398224, + -0.014300652779638767, + -0.02393382228910923, + 0.006800265517085791, + -0.02436167560517788, + -0.006239518988877535, + -0.006113107781857252, + -0.020510999485850334, + -0.009328486397862434, + -0.009159937500953674, + -0.011221409775316715, + 0.03394298255443573, + -0.018773658201098442, + -0.015156358480453491, + -0.018618077039718628, + -0.008563537150621414, + 0.02176862768828869, + 0.02743443474173546, + -0.02044617384672165, + -0.007383700925856829, + 0.02456911839544773, + -0.0077596926130354404, + -0.006139038130640984, + -0.02303922176361084, + -0.03028678707778454, + -0.038428954780101776, + 0.015013741329312325, + -0.025282206013798714, + -0.016543637961149216, + 0.006806747987866402, + 0.030779466032981873, + -0.003627024358138442, + -0.005435674451291561, + 0.012031737715005875, + -0.009678547270596027, + -0.03230936452746391, + -0.00913400761783123, + 0.0033223412465304136, + -0.0035913698375225067, + 0.013535704463720322, + -0.030001550912857056, + 0.03985513001680374, + 0.001555828144773841, + 0.018073536455631256, + -0.014248792082071304, + 0.013185642659664154, + -0.00943220779299736, + -0.012025254778563976, + -0.0009010837529785931, + 0.015298976562917233, + 0.010106399655342102, + -0.0008954114746302366, + -0.008531124331057072, + 0.008641328662633896, + -0.0069882613606750965, + 0.009529447183012962, + 0.012595725245773792, + 0.0011182514717802405, + -0.001610930310562253, + 0.013081921264529228, + -0.011597402393817902, + -0.014728506095707417, + -0.015052637085318565, + 0.025476684793829918, + 0.0065117888152599335, + 0.004362801089882851, + 0.010845418088138103, + 0.009944334626197815, + 0.009555377997457981, + -0.04099607095122337, + 0.025826746597886086, + 0.00981468241661787, + 0.037754762917757034, + 0.013678321614861488, + -0.004942995496094227, + -0.009905438870191574, + -0.01041108276695013, + 0.013224538415670395, + -0.0002842222456820309, + -0.0032834454905241728, + -0.008524641394615173, + -0.03083132766187191, + 0.009860060177743435, + 0.008874703198671341, + -0.0010874590370804071, + -0.002484462922438979, + -0.02563226781785488, + -0.02001832239329815, + 0.017684578895568848, + -0.025735989212989807, + 0.031401798129081726, + -0.03526543825864792, + -0.001969094853848219, + -0.0029285221826285124, + 0.01640102081000805, + -0.0249191801995039, + -0.03990698978304863, + -0.00941275991499424, + -0.04109979048371315, + 0.005824631545692682, + 0.01968122459948063, + 0.026293495669960976, + 0.007675418630242348, + 0.011740019544959068, + -0.01177243236452341, + -0.0010898900218307972, + -0.012304007075726986, + -0.012783721089363098, + 0.0010461322963237762, + -0.03474682569503784, + 0.03422821685671806, + 0.03420228883624077, + 0.03453938290476799, + 0.02337631769478321, + 0.008265336975455284, + 0.00810975395143032, + 0.02009611204266548, + -0.037884414196014404, + -0.014935949817299843, + -0.01759382337331772, + -0.021146297454833984, + -0.00168710108846426, + 0.0034325458109378815, + -0.009043251164257526, + 0.005646359641104937, + -0.04838625341653824, + -0.007811553776264191, + 0.018449528142809868, + -0.014987810514867306, + -0.01382093969732523, + 0.012154906988143921, + 0.006916952319443226, + -0.02167787216603756, + 0.016025029122829437, + 0.005763046443462372, + -0.020173903554677963, + -0.0019318198319524527, + -0.005824631545692682, + -0.0227799154818058, + -0.02035541832447052, + 0.01251793373376131, + 0.0035913698375225067, + -0.007027157116681337, + 0.02261136844754219, + -0.01707521267235279, + 0.016037994995713234, + 0.002072816714644432, + -0.0011547161266207695, + -0.02048506960272789, + 0.0059413183480501175, + -0.01664736121892929, + 0.0066965436562895775, + -0.007325357291847467, + -0.019240407273173332, + -0.037547316402196884, + 0.024128301069140434, + 0.004881410859525204, + -0.012705929577350616, + 0.02099071443080902, + -0.0323612242937088, + 0.017477136105298996, + 0.021664906293153763, + -0.005801942199468613, + 0.0025428065564483404, + -0.002204089891165495, + 0.02836793288588524, + -0.001500725862570107, + -0.01962936483323574, + -0.010501839220523834, + -0.047297172248363495, + 0.011642780154943466, + -0.025411859154701233, + 0.024685805663466454, + 0.012803168967366219, + 0.008394989185035229, + -0.013406052254140377, + 0.003646472003310919, + 0.0006397532997652888, + -0.03402077406644821, + -0.025748955085873604, + 0.026073085144162178, + 0.04561169445514679, + 0.0018848208710551262, + -0.003077622503042221, + -0.0004683690785896033, + -0.0023159149568527937, + 0.02346707321703434, + 0.009678547270596027, + 0.003226722590625286, + -0.011947463266551495, + 0.0010542356176301837, + -0.02453022263944149, + 0.03708057105541229, + -0.00838850624859333, + 0.005474570207297802, + 0.009406276978552341, + -0.02205386385321617, + -0.013833904638886452, + -0.017554927617311478, + 0.006330275442451239, + 0.0215093232691288, + -0.00467396667227149, + 0.014858158305287361, + 0.01789202354848385, + 0.0022235377691686153, + -0.0030419679824262857, + 0.0029674179386347532, + -0.009419242851436138, + -0.005461604800075293, + 0.000643399718683213, + 0.021561184898018837, + -0.002792387269437313, + -0.010800040327012539, + 0.0004359559970907867, + -0.005623670294880867, + -0.0017859609797596931, + -0.007694866508245468, + -0.0014172621304169297, + -0.03399484232068062, + -0.003176482394337654, + 0.0048781693913042545, + 0.011240857653319836, + 0.017917953431606293, + -0.010702800936996937, + -0.013017094694077969, + -0.00911455973982811, + -0.022637298330664635, + -0.02108146995306015, + -0.020925888791680336, + 0.02635832130908966, + -0.020329486578702927, + -0.016712186858057976, + 0.009172903373837471, + -0.0018605111399665475, + 0.018216153606772423, + -0.019538607448339462, + -0.005464846268296242, + -0.0062265535816550255, + 0.023622656241059303, + -0.03944024071097374, + 0.034176357090473175, + 0.04247410595417023, + 0.013652391731739044, + 0.0037339874543249607, + 0.014235827140510082, + -0.0027567329816520214, + -0.0180994663387537, + 0.007850449532270432, + 0.013665356673300266, + -0.0302349254488945, + 0.014106174930930138, + -0.01860511116683483, + -0.0002836144994944334, + -0.010307361371815205, + -0.003727504750713706, + 0.01733451895415783, + 0.0008236975409090519, + 0.005776011850684881, + -0.011694640852510929, + -0.020005356520414352, + 0.0215093232691288, + -0.010261982679367065, + 0.01754196174442768, + 0.019836807623505592, + -0.015195254236459732, + 0.005772770382463932, + 0.0017324794316664338, + 0.010508322156965733, + -0.010346257127821445, + -0.026734312996268272, + -0.0180994663387537, + -0.028186418116092682, + 0.017010387033224106, + -0.018890345469117165, + 0.0028231798205524683, + -0.0013564876280725002, + -0.017879057675600052, + -0.01776237040758133, + -0.001742203370667994, + 0.005801942199468613, + 0.010398117825388908, + 0.014806297607719898, + 0.002277019200846553, + -0.007869897410273552, + 0.013315295800566673, + 0.004272044636309147, + -0.00777265802025795, + -0.00029029970755800605, + -0.008064375258982182, + -0.008531124331057072, + 0.002171676605939865, + -0.017645683139562607, + 0.03721022233366966, + 0.011707606725394726, + -0.0249191801995039, + 0.0050207870081067085, + -0.0013516256585717201, + -0.04867148771882057, + -0.015376768074929714, + 0.002930142916738987, + -0.0006361068226397038, + 0.0005259023164398968, + 0.003123000729829073, + -0.012012289837002754, + 0.02197607234120369, + 0.014598853886127472, + 0.025074763223528862, + -0.015026706270873547, + -0.017347482964396477, + 0.011318649165332317, + -9.863200830295682e-06, + 0.01209656335413456, + -0.0012584379874169827, + -0.029353290796279907, + -0.003111656289547682, + 0.005049958825111389, + -0.002205710392445326, + 0.0168288741260767, + 0.030779466032981873, + 0.006476134527474642, + 0.003996533341705799, + 0.007383700925856829, + 0.015778690576553345, + 0.007701348979026079, + -0.0033936500549316406, + 0.025191450491547585, + -0.0315055176615715, + -0.024724701419472694, + 0.004991615191102028, + -0.007286461535841227, + -0.01802167482674122, + -0.0003589749103412032, + -0.005788977257907391, + 0.004184529185295105, + -0.008420919999480247, + 0.04102199897170067, + -0.006975295953452587, + -0.0052703674882650375, + -0.007973618805408478, + 0.0257619209587574, + 0.018890345469117165, + 0.00843388494104147, + 0.015778690576553345, + -0.0015339492820203304, + -0.0022186757996678352, + 0.000342970946803689, + 0.005156921688467264, + -0.02078326977789402, + -0.01445623580366373, + 0.0187347624450922, + -0.010748178698122501, + 0.039492104202508926, + -0.009043251164257526, + 0.011182514019310474, + -0.00774024473503232, + 0.009581307880580425, + -0.0029382461216300726, + -0.007526318542659283, + -0.0015161220217123628, + 0.0135227395221591, + -0.0015793276252225041, + -0.005600980948656797, + 0.022987360134720802, + -0.0015517764259129763, + -0.0033353064209222794, + -0.0060320752672851086, + -0.013509773649275303, + 0.0015088290674611926, + -0.006093659903854132, + -0.02440057136118412, + 0.0087320851162076, + -0.01597316935658455, + 0.016284333541989326, + 0.021146297454833984, + -0.013211573474109173, + -0.004093772731721401, + 0.001167681417427957, + 0.1886700838804245, + -0.016063924878835678, + -0.0020258177537471056, + 0.013276400044560432, + -0.015817586332559586, + -0.024633944034576416, + 0.03793627396225929, + -0.029275499284267426, + 0.0032639976125210524, + 0.018177257850766182, + -0.013289364986121655, + 0.018838485702872276, + 0.020601756870746613, + 0.0031148975249379873, + 0.02056286111474037, + -0.015726828947663307, + -0.01575275883078575, + -0.020770305767655373, + 0.00807085819542408, + 0.026293495669960976, + 0.009484068490564823, + -0.03360588848590851, + 0.0030273820739239454, + -0.0013872800627723336, + 0.017477136105298996, + 0.004340112209320068, + -0.003921983297914267, + -0.004505418706685305, + 0.01004805602133274, + 0.0005733064608648419, + -0.00021838316752109677, + -0.00017330871196463704, + 0.030053412541747093, + -0.010955622419714928, + 0.006793782580643892, + 0.011286236345767975, + -0.00840795412659645, + -0.017451204359531403, + 0.03350216522812843, + 0.02950887195765972, + 0.00469665601849556, + -0.002573598874732852, + 0.012641103006899357, + -0.025619301944971085, + -0.005626911763101816, + 0.01664736121892929, + -0.009445172734558582, + 0.004255838226526976, + -0.006310827564448118, + -0.02265026420354843, + -0.01955157332122326, + 0.002093885326758027, + 0.008356093429028988, + 0.022209446877241135, + -0.009503516368567944, + -0.002398568205535412, + 0.005254161078482866, + 0.006495582405477762, + 0.008012514561414719, + -0.0020922645926475525, + -0.012141942046582699, + 0.005536154843866825, + -0.014611818827688694, + 0.03057202138006687, + -0.007973618805408478, + 0.0020906440913677216, + -0.02857537567615509, + 0.00032271278905682266, + 0.013224538415670395, + -0.0221446193754673, + -0.002210572361946106, + -0.022857706993818283, + -0.024595048278570175, + -0.0024488086346536875, + -0.0014188828645274043, + -0.04128130525350571, + 0.012790203094482422, + 0.025567442178726196, + 0.009237729012966156, + 0.013289364986121655, + -0.030520161613821983, + -0.01686776988208294, + 0.0016344297910109162, + -0.022222410887479782, + 0.02069251425564289, + -0.03376147150993347, + 0.008971941657364368, + 0.000995081732980907, + -0.0022186757996678352, + -0.02810862846672535, + -0.012420694343745708, + -0.017619753256440163, + 0.0020533690694719553, + -0.019097790122032166, + 0.004554038401693106, + 0.006203864701092243, + 0.019525643438100815, + 0.004495694767683744, + -0.01852731965482235, + 0.0015461042057722807, + -0.018073536455631256, + 0.0647224485874176, + 0.03389112278819084, + -0.020899957045912743, + 0.0036302655935287476, + 0.008245889097452164, + 0.0036626786459237337, + 0.003743711393326521, + -0.018916277214884758, + -0.04037373885512352, + 0.0011182514717802405, + -0.021690836176276207, + 0.0023499487433582544, + -0.016193578019738197, + 0.01772347465157509, + -0.006865091621875763, + -0.009918403811752796, + -0.011480715125799179, + -0.004048394504934549, + -0.0007762933964841068, + -0.01699742116034031, + 0.0022948463447391987, + -0.0014083485584706068, + -0.00951648224145174, + 0.00134190171957016, + 0.004667484201490879, + -0.05315745994448662, + 0.023791205137968063, + -0.018293945118784904, + 0.008511676453053951, + 0.003332065185531974, + -0.0289643332362175, + 0.009360899217426777, + 0.010936174541711807, + 0.0069882613606750965, + 0.025658197700977325, + 0.009685030207037926, + -0.03803999722003937, + -0.0037145395763218403, + -0.015687933191657066, + 0.013976522721350193, + -0.010657422244548798, + 0.01631026528775692, + 0.004631829913705587, + 0.014391410164535046, + 0.001319212606176734, + -0.0008281543268822134, + -0.005892699118703604, + -0.024050509557127953, + -0.019694190472364426, + -0.004709621425718069, + -0.0019269579788669944, + -0.01207063253968954, + -0.022753985598683357, + 0.020848097279667854, + 0.011318649165332317, + -0.009782269597053528, + -0.01245959009975195, + 0.031920406967401505, + -0.0005271178088150918, + -0.008861737325787544, + -0.00711143109947443, + -0.002904212335124612, + -0.006385377608239651, + -0.018812553957104683, + 0.003912259358912706, + -0.16242845356464386, + 0.018592145293951035, + 0.02462098002433777, + -0.04581913724541664, + 0.018618077039718628, + -0.017101144418120384, + 0.012958751060068607, + -0.0018232360016554594, + -0.021833455190062523, + -0.01183725893497467, + 0.04447075352072716, + -0.023493004962801933, + -0.020640652626752853, + -0.00843388494104147, + 0.02367451786994934, + 0.01716597005724907, + -0.01481926254928112, + 0.029353290796279907, + -0.0032785835210233927, + 0.004495694767683744, + 0.021431531757116318, + -0.02082216553390026, + 0.026137912645936012, + -0.016841839998960495, + -0.0042007360607385635, + 0.001627136836759746, + -0.015415663830935955, + 0.04117758199572563, + 0.0004922737134620547, + -0.017321553081274033, + -0.0015550177777186036, + 0.0008792049484327435, + 0.030390508472919464, + -0.0003196740581188351, + 0.00134919467382133, + -0.006113107781857252, + -0.00941275991499424, + 0.0010753041133284569, + -0.008440367877483368, + 0.03899942338466644, + -0.0006101763574406505, + 0.01664736121892929, + -0.006806747987866402, + -0.0025654956698417664, + -0.028264209628105164, + 0.003116518259048462, + -0.0012568173697218299, + -0.0032413084991276264, + -0.01852731965482235, + -0.003993292339146137, + -0.017438240349292755, + 0.00813568476587534, + -0.010722248815000057, + 0.019097790122032166, + 0.01314026489853859, + 0.016893699765205383, + 0.003627024358138442, + 0.011305684223771095, + 0.0016238956013694406, + 0.008064375258982182, + -0.005299539305269718, + -0.009594272822141647, + 0.011992841958999634, + -0.00740963127464056, + -0.0155453160405159, + -0.020225765183568, + 0.017062248662114143, + 0.004424386192113161, + -0.03049422986805439, + 0.003578404663130641, + -0.02648797258734703, + 0.005513465963304043, + 0.03438379988074303, + 0.007364253047853708, + 0.01290040835738182, + 0.004962443374097347, + 0.01113713625818491, + -0.003286686958745122, + -0.003759917803108692, + -0.004489212296903133, + -0.032387156039476395, + 0.055594924837350845, + -0.031064700335264206, + -0.02201496809720993, + -0.021963106468319893, + -0.0005449450109153986, + -7.660123628738802e-07, + -0.017101144418120384, + 0.009983230382204056, + 0.01007398683577776, + 0.007020674180239439, + -0.03409856557846069, + -0.029353290796279907, + -0.012906890362501144, + 0.002171676605939865, + 0.00016419253370258957, + 0.006871574092656374, + -0.014611818827688694, + -0.00834961049258709, + -0.0215093232691288, + -0.0024261195212602615, + -0.02346707321703434, + -0.015649037435650826, + -0.015687933191657066, + 0.00476796505972743, + 0.009179385378956795, + 0.0006053143879398704, + 0.012349385768175125, + 0.03640637919306755, + -0.011111205443739891, + -0.0257619209587574, + -0.008758015930652618, + 0.006540960632264614, + 0.01597316935658455, + -5.489966497407295e-05, + 0.002477980451658368, + 0.005821390077471733, + -0.0052703674882650375, + 0.02469877153635025, + 0.020005356520414352, + 0.04203328862786293, + -0.005588016007095575, + -0.021651940420269966, + 0.015571245923638344, + 0.025956397876143456, + -0.018332840874791145, + -0.09516482055187225, + -0.00969151221215725, + 0.030675744637846947, + 0.012245663441717625, + 0.003721022279933095, + 0.03070167452096939, + -0.01903296448290348, + 0.025748955085873604, + -0.00151207041926682, + 0.018345806747674942, + -0.01988866925239563, + -0.040010713040828705, + -0.014572923071682453, + -0.009970265440642834, + 0.039284657686948776, + -0.025956397876143456, + -0.012388281524181366, + -0.016764048486948013, + -0.026254599913954735, + 0.013172677718102932, + 0.009736890904605389, + -0.003332065185531974, + 0.0030533126555383205, + -0.0019593709148466587, + -0.02849758416414261, + 0.003909017890691757, + -0.035291366279125214, + 0.021729731932282448, + 0.007908793166279793, + -0.009082146920263767, + -0.01668625697493553, + -0.009179385378956795, + 0.035887766629457474, + -0.030131204053759575, + 0.029482942074537277, + 0.011908567510545254, + 0.003380684880539775, + -0.020588790997862816, + 0.010573148727416992, + -0.02257247269153595, + -0.003601093776524067, + 0.013574600219726562, + 0.008129201829433441, + -0.035706255584955215, + -0.010728730820119381, + -0.03946617245674133, + -0.007215152960270643, + -0.0007406389922834933, + -0.008997872471809387, + -0.013782043941318989, + -0.037754762917757034, + -0.0154415937140584, + -0.03806592896580696, + -0.01968122459948063, + 0.011039896868169308, + -0.008077341131865978, + 0.002233261475339532, + -0.023181838914752007, + -0.013950591906905174, + 0.015363802202045918, + -0.020848097279667854, + 0.0010882692877203226, + -0.018929241225123405, + 0.03879198059439659, + 0.0060774534940719604, + -0.010462944395840168, + -0.031531449407339096, + -0.012673516757786274, + -0.0018345806747674942, + -0.01912372000515461, + -0.014352514408528805, + -0.002205710392445326, + 0.011338097043335438, + -0.006177933886647224, + -0.0302349254488945, + 0.000574521953240037, + -0.025074763223528862, + 0.0038668811321258545, + 0.006644682493060827, + -0.011039896868169308, + -0.023155909031629562, + -0.02797897532582283, + 0.030260857194662094, + -0.0183069109916687, + 0.020420243963599205, + 0.02777153067290783, + -0.00201771454885602, + 0.003413097932934761, + 0.0047290693037211895, + -0.0040581184439361095, + 0.00974985584616661, + 0.015311941504478455, + 0.022766951471567154, + -0.02372637763619423, + 0.004816584289073944, + 0.006113107781857252, + 0.025061797350645065, + 0.009231247007846832, + 0.007655970752239227, + 0.010151778347790241, + -0.018125398084521294, + -0.006570132449269295, + -0.03733987361192703, + 0.021068505942821503, + 0.03368367999792099, + 0.0037793656811118126, + -0.022857706993818283, + 0.014961880631744862, + 0.01819022372364998, + 0.008524641394615173, + 0.003161896485835314, + 0.029482942074537277, + -0.003095449646934867, + 0.022624334320425987, + 0.014650714583694935, + 0.0035103370901197195, + -0.02274102158844471, + -0.0013751251390203834, + 0.019525643438100815, + 0.013017094694077969, + -0.014624783769249916, + 0.006800265517085791, + 0.006314069032669067, + 0.00841443706303835, + 0.02244281955063343, + 0.0015687933191657066, + -0.024685805663466454, + -0.010618526488542557, + -0.0163880567997694, + 0.012213250622153282, + 0.00302414083853364, + -0.011493680067360401, + 0.010689835995435715, + -0.023104047402739525, + 0.0008427402353845537, + 0.009464620612561703, + -0.0062200711108744144, + 0.0013151608873158693, + 0.0029220397118479013, + 0.032464947551488876, + -0.004855480045080185, + 0.0702715665102005, + -0.020601756870746613, + -0.03147958964109421, + 0.020290590822696686, + -0.03739173337817192, + -0.008466297760605812, + -0.004249355290085077, + 0.01314026489853859, + -0.007811553776264191, + -0.003821502672508359, + -0.00875153299421072, + 0.015104497782886028, + 0.0020792994182556868, + -0.008965459652245045, + -0.01575275883078575, + 0.013250469230115414, + -0.013017094694077969, + 0.007396665867418051, + 0.01763271912932396, + -0.006605786737054586, + -0.02303922176361084, + 0.04708972945809364, + 0.01073521375656128, + 0.0006506926729343832, + -0.016491778194904327, + 0.013224538415670395, + -0.03466903790831566, + -0.0315055176615715, + 0.01315971277654171, + 0.009548895061016083, + -0.021613044664263725, + -0.03640637919306755, + -0.007753210142254829, + 0.01511746272444725, + 0.024815458804368973, + 0.004262320697307587, + -0.014339548535645008, + 0.03866232931613922, + -0.0029106950387358665, + 0.003821502672508359, + 0.02751222625374794, + 0.02354486472904682, + -0.00903028529137373, + -0.01643991656601429, + -0.018747728317975998, + 0.016764048486948013, + 0.01780126616358757, + -0.022676194086670876, + 0.011765950359404087, + -0.014002452604472637, + 0.003776124445721507, + -0.0042590792290866375, + 0.006657647900283337, + -0.003139207372441888, + 0.0002108876360580325, + 0.0064113084226846695, + 0.01796981506049633, + -0.014469201676547527, + 0.012038219720125198, + 0.0028004904743283987, + 0.030079342424869537, + 0.013665356673300266, + 0.0027226991951465607, + 0.012109528295695782, + -0.010605561546981335, + 0.007001226302236319, + 0.01049535721540451, + 6.43703606328927e-05, + -0.02311701327562332, + -0.016284333541989326, + 0.023752309381961823, + -0.0093673812225461, + 0.031790755689144135, + 0.008122718892991543, + -0.01955157332122326, + -0.018164293840527534, + 0.03438379988074303, + 0.010936174541711807, + -0.011013966053724289, + -0.0168288741260767, + 0.01418396644294262, + 0.030053412541747093, + 0.031583309173583984, + 0.004129427019506693, + -0.0034714413341134787, + 0.01643991656601429, + 0.010002678260207176, + -0.006586338859051466, + -0.024076439440250397, + 0.005318987183272839, + -0.008608915843069553, + 0.011966911144554615, + -0.012654068879783154, + -0.018968136981129646, + 0.0045864516869187355, + -0.01049535721540451, + -0.02410236932337284, + 0.016919629648327827, + 0.038766048848629, + 0.0187347624450922, + 0.10294395685195923, + 0.012310490012168884, + 0.009613720700144768, + -0.0031781031284481287, + 0.00915345549583435, + -0.0035686807241290808, + 0.01686776988208294, + 0.003144069341942668, + -0.003730746218934655, + -0.027019547298550606, + -4.451734639587812e-05, + -0.009121041744947433, + 0.019266337156295776, + -0.021094435825943947, + 0.003555715549737215, + 0.03428008034825325, + -0.03308727592229843, + -0.010125847533345222, + 0.0176716148853302, + 0.012744825333356857, + 0.027538157999515533, + -0.025152554735541344, + 0.006213588640093803, + 0.020848097279667854, + -0.026008259505033493, + -0.005143956746906042, + 0.013652391731739044, + -0.00709198322147131, + -0.004602658096700907, + -0.00871263723820448, + -0.010521287098526955, + -0.011746502481400967, + -0.07950281351804733, + -0.02546371892094612, + 0.04138502851128578, + -0.02283177711069584, + -0.007701348979026079, + -0.02137967199087143, + 0.013302329927682877, + -0.02091292291879654, + -1.3724916243518237e-05, + 0.0370546393096447, + -0.010942657478153706, + -0.026941755786538124, + 0.0055491202510893345, + -0.01179836317896843, + 0.006479375530034304, + -0.021742697805166245, + -0.039751406759023666 + ], + "metadata": { + "source": "Kreye_Marieke_BA_241_V2.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 17, + "has_images": true, + "image_count": 98, + "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", + "links": [], + "last_modified": "2025-05-05T23:00:23", + "_known_field_names": "frozenset({'is_continuation', 'sent_to', 'header_footer_type', 'email_message_id', 'filename', 'languages', 'detection_class_prob', 'sent_from', 'link_texts', 'cc_recipient', 'subject', 'image_mime_type', 'image_path', 'filetype', 'page_number', 'last_modified', 'signature', 'detection_origin', 'text_as_html', 'attached_to_filename', 'bcc_recipient', 'data_source', 'link_start_indexes', 'category_depth', 'emphasized_text_tags', 'parent_id', 'orig_elements', 'page_name', 'coordinates', 'url', 'link_urls', 'file_directory', 'links', 'table_as_cells', 'emphasized_text_contents', 'key_value_pairs', 'image_base64'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "Kreye_Marieke_BA_241_V2.pdf", + "detection_class_prob": 0.3422867953777313, + "parent_id": "e02392183bc6851689602ad4b9f6039f", + "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", + "id": "ce00eae5-7e07-454f-9e4f-f79ac36f92f4", + "processing_timestamp": "2025-05-05T23:15:46.977945", + "chunk_number": 14, + "total_chunks": 56, + "chunking_strategy": "hybrid", + "word_count": 304 + } +} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000015.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000015.json new file mode 100644 index 0000000000000000000000000000000000000000..2ce3cf33a8816543f079a63e7168cb9cb3ec20cd --- /dev/null +++ b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000015.json @@ -0,0 +1,1570 @@ +{ + "id": "61a115b2-0ff7-441a-f6d9-eb3d00000015", + "content": "2018, S. 231). Neben der Ausweitung des Mobilit\u00e4tsangebots kann auch die Stadtplanung den Trend einer autoarmen Stadt unterst\u00fctzen. Die \u201eStadt der kurzen Wege\u201c oder die kompakte Stadt sind beispielweise Planungsans\u00e4tze, die Wohnen und Arbeiten vereinen und so den Pendelverkehr reduzieren. Dies setzt aber wiederum ein fl\u00e4chendeckendes \u00d6PNV- und Sharingangebot, eine Nachverdichtung im urbanen Raum, die M\u00f6glichkeit zur Deckung des t\u00e4glichen Grundbedarfs in einem kleinen Radius und eine funktionierende soziale Infrastruktur, in Form lokaler Bildungs- und Freizeitangebote, voraus. (vgl. Bott et al. 2018, S. 117)\nEine Senkung des MIV-Anteils im Modal Split bedeutet nicht nur, dass die Menge des flie\u00dfenden Verkehrs abnimmt, sondern auch, dass der Bedarf nach Parkraum sinkt. Sinkt der Parkraumbedarf, werden Fl\u00e4chen frei, die anderweitig genutzt werden k\u00f6nnen. Dieses Fl\u00e4chenpotential wird im Rahmen dieser Arbeit modellhaft bestimmt und zur Pflanzung von Stra\u00dfenb\u00e4umen genutzt (vgl. Kapitel 5.3). ## 2.5 Aktueller Stand der Forschung\n\nDie Analyse und Simulation der Auswirkungen von Stadtgr\u00fcn auf den urbanen Raum sind in der Forschung pr\u00e4sent. Verschiedene Studien befassen sich mit dieser Thematik. Beispielsweise analysierten Donovan und Butry in ihrer Studie den Effekt von B\u00e4umen auf Einfamilienh\u00e4user in Sacramento, Kalifornien. Sie haben herausgefunden, dass B\u00e4ume auf der Nordseite eines Geb\u00e4udes den sommerliche Strombedarf leicht erh\u00f6hten, w\u00e4hrend B\u00e4ume auf der Ost- und S\u00fcdseite zu einer Reduktion des Strombedarfs beitrugen. In Summe war \u00fcber das Jahr mit einer Verringerung des Strombedarfs zu rechnen. (vgl. Donovan und Butry 2009)\nCalcernao und Martinelli widmeten sich mit ihrer Analyse der Wechselwirkung zwischen dem st\u00e4dtischen Mikroklima und dem Geb\u00e4udeenergiebedarf. Sie untersuchten den Verschattungseffekt von B\u00e4umen an zwei Geb\u00e4uden in den Sommermonaten. Das Ergebnis deckt sich mit der oben aufgef\u00fchrten Studie: Die Anzahl an B\u00e4umen verringert den Energiebedarf im Sommer proportional. (vgl. Calcerano und Martinelli 2016)\nMit Hilfe eines Mikroklimamodells haben Erell und Zhou nachgewiesen, dass der UHI in St\u00e4dten zu einem Anstieg des erforderlichen K\u00fchlbedarfs f\u00fchrt. Sie haben analysiert, dass mit einer Erh\u00f6hung des Baumbestands die Temperatur im Schnitt um 0,3\u00b0C pro Jahr gesenkt werden kann und sich eine Einsparung des Geb\u00e4udeenergiebedarfs gegen\u00fcber dem Status Quo um 2-3% ergibt. (vgl. Erell und Zhou 2022)\n13\nTheorieteil\nWeitere Betrachtungen des Einflusses von Stadtgr\u00fcn auf die Lufttemperatur haben Schwab et al. durchgef\u00fchrt.", + "embedding": [ + 0.021303175017237663, + 0.003367254976183176, + 0.02302096225321293, + -0.021719608455896378, + -0.01220670621842146, + 0.01726897433400154, + -0.029774993658065796, + 0.001361542264930904, + -0.014210792258381844, + -0.02831747569143772, + 0.0037121139466762543, + 0.004447379149496555, + -0.004037452396005392, + 0.004554741084575653, + -0.011412879452109337, + -0.014262845739722252, + 0.04185156151652336, + 0.006864645518362522, + 0.02406204678118229, + 0.012011502869427204, + -0.009734132327139378, + 0.014080656692385674, + 0.018518276512622833, + 0.0073591601103544235, + 0.004053719341754913, + 0.03115442767739296, + 0.03063388727605343, + -0.030269507318735123, + -0.007606417406350374, + 0.002405879320576787, + 0.02484285831451416, + -0.015694336965680122, + -0.025181211531162262, + -0.007046835031360388, + -0.002407505875453353, + -0.014392981305718422, + 0.0031980788335204124, + -0.007651965133845806, + 0.028473637998104095, + -0.01183582004159689, + 0.008914278820157051, + -0.0038422492798417807, + -0.0024286529514938593, + -0.008543392643332481, + 0.004066733177751303, + 0.01220019906759262, + 0.016384053975343704, + 0.002264356939122081, + -0.022292204201221466, + 0.025636686012148857, + 0.02332027442753315, + 0.019858671352267265, + -0.017997734248638153, + 0.010625559836626053, + -0.030009236186742783, + 0.005267232656478882, + -0.026469552889466286, + 0.020079901441931725, + -0.001217579934746027, + -0.007638951297849417, + -0.017047744244337082, + -0.008842704817652702, + -0.012453963048756123, + 0.025480521842837334, + -0.02831747569143772, + -0.01503064576536417, + -0.01525187585502863, + -0.015238862484693527, + 0.006955740042030811, + -0.015186808072030544, + 0.030790049582719803, + 0.042658403515815735, + 0.015499132685363293, + -0.006767043843865395, + 0.011959448456764221, + -0.011015966534614563, + 0.0013932627625763416, + 0.009695091284811497, + -0.028265422210097313, + 0.0036925936583429575, + -0.0009711358579806983, + -0.01918196678161621, + -0.02896815352141857, + 0.04734328016638756, + 0.019155940040946007, + 0.009252631105482578, + -0.006318076513707638, + 0.022123027592897415, + 0.011881367303431034, + 0.005000454839318991, + 0.008458804339170456, + 0.017542259767651558, + 3.027174352610018e-05, + 0.016956649720668793, + 0.010183099657297134, + 0.008608460426330566, + 0.0001791395916370675, + -0.0004843478964176029, + 0.018609371036291122, + -0.0023619586136192083, + -0.013364911079406738, + 0.005634865257889032, + -0.013651209883391857, + -0.006675948854535818, + -0.032039348036050797, + 0.0034128024708479643, + -0.0009068814688362181, + -0.005032988730818033, + 0.008510858751833439, + -0.0284996647387743, + -0.01871347799897194, + 0.021810702979564667, + -0.01719089411199093, + -0.023892870172858238, + 0.00830914918333292, + -0.02580586075782776, + 0.016371039673686028, + 0.003588485298678279, + -0.007404707372188568, + -0.008823184296488762, + 0.031648945063352585, + 0.011341305449604988, + 0.007202997803688049, + -0.006477492395788431, + 0.020873727276921272, + 0.021329201757907867, + 0.007528336253017187, + -0.010423850268125534, + -0.044662490487098694, + -0.028291448950767517, + -0.030217453837394714, + 0.013508060947060585, + 0.007196490652859211, + 0.001259873853996396, + -0.02135522849857807, + 0.018804574385285378, + -0.013963534496724606, + 0.003920330666005611, + -0.026547633111476898, + -0.055802084505558014, + -0.015004618093371391, + 0.009187563322484493, + -0.03183113411068916, + -0.010905351489782333, + 0.005312779918313026, + 0.023762734606862068, + 0.021680567413568497, + 0.01303306594491005, + 0.0009930962696671486, + -0.03063388727605343, + -0.007821140810847282, + -0.024829845875501633, + 0.006383144296705723, + 0.0005953697254881263, + 0.008231068029999733, + -0.004961414262652397, + -0.012948477640748024, + 0.0010768709471449256, + -0.03698449581861496, + 0.005794281139969826, + 0.02836952917277813, + -0.020066887140274048, + 0.01617583818733692, + -0.0006941913161426783, + 0.002513241022825241, + 8.392720337724313e-05, + -0.0008564539602957666, + 0.016110770404338837, + 0.010586519725620747, + -0.01665733940899372, + -0.00965605117380619, + 0.02928047813475132, + -0.043829623609781265, + 0.014210792258381844, + 0.003539684461429715, + 0.03144072741270065, + 0.007268065121024847, + 0.021238107234239578, + -0.012102597393095493, + -0.02497299388051033, + -0.013820385560393333, + 0.006955740042030811, + 0.012883409857749939, + 0.016423095017671585, + -0.020431267097592354, + -0.0017389350105077028, + 0.02792706899344921, + 0.008738595992326736, + 0.0009890295332297683, + 0.008302642032504082, + 0.009812213480472565, + -0.003386775264516473, + 0.013703263364732265, + -0.00937625952064991, + -0.6404746770858765, + 0.015694336965680122, + 0.012044036760926247, + -0.01257108524441719, + 0.00789922196418047, + 0.029905127361416817, + 0.02714625559747219, + 0.014627225697040558, + -0.011946435086429119, + 0.03201332315802574, + -0.006620641332119703, + 0.019038816913962364, + -0.013508060947060585, + 0.005888629239052534, + 0.0050492556765675545, + -0.008491338230669498, + -0.0007116782944649458, + -0.01366422325372696, + 0.03825982287526131, + 0.008348189294338226, + -0.01775047555565834, + 0.021251119673252106, + 0.006884165573865175, + -0.0066889626905322075, + 0.021133998408913612, + 0.024816831573843956, + -0.004375804681330919, + -0.0278489887714386, + 0.014796401374042034, + 0.0168395284563303, + -0.002012219512835145, + 0.03412151709198952, + -0.01654021628201008, + 0.02010592818260193, + 0.04976379871368408, + 0.022864799946546555, + -0.01561625488102436, + 0.025870928540825844, + 0.0014819175703451037, + 0.015199821442365646, + -0.01678747497498989, + -0.006988273933529854, + -0.01411969680339098, + -0.007196490652859211, + 0.014301886782050133, + 0.02283877320587635, + 0.03227359429001808, + -0.019025804474949837, + 0.0033640016335994005, + -0.015590228140354156, + 0.03472014144062996, + 0.01048241090029478, + 0.01292245090007782, + 0.00039813315379433334, + 0.00939578004181385, + 0.015603241510689259, + 0.020288117229938507, + -0.008452298119664192, + -0.01486146915704012, + -0.0031850652303546667, + 0.005745480302721262, + 0.003284293692559004, + -0.01804978772997856, + -0.005068776197731495, + -0.009428313933312893, + 0.04999804124236107, + -0.0278489887714386, + -0.012135131284594536, + 0.002911780960857868, + -0.024387385696172714, + -0.01631898619234562, + 0.024309303611516953, + -0.01570734940469265, + -0.010469397529959679, + 0.01958538591861725, + 0.008667021058499813, + 0.039925556629896164, + -0.0035364311188459396, + -0.030477724969387054, + 0.03872831165790558, + 0.007307106163352728, + -0.015316943638026714, + -0.014822429046034813, + -0.001725921523757279, + 0.024999020621180534, + -0.026964066550135612, + -0.027875015512108803, + -0.009181056171655655, + -0.011686163954436779, + -0.004954907577484846, + 0.02384081669151783, + 0.015525160357356071, + -0.018635397776961327, + -0.025298332795500755, + -0.004483166616410017, + 0.04055020958185196, + -0.01218067854642868, + 0.03872831165790558, + 0.016605284065008163, + -0.05559386685490608, + -0.011783765628933907, + 0.0007515322649851441, + 0.019949765875935555, + 0.005517743527889252, + 0.0036795800551772118, + -0.0037348875775933266, + -0.005556784104555845, + -0.009460847824811935, + 0.025025049224495888, + -0.01771143637597561, + 0.005247712135314941, + -0.0033119474537670612, + 0.003809715621173382, + -0.008946812711656094, + -0.007840661332011223, + -0.026092158630490303, + 0.03825982287526131, + -0.006005751434713602, + 0.019390182569622993, + 0.011842326261103153, + 0.004854052793234587, + -0.005335553549230099, + 0.009883788414299488, + -0.02088674157857895, + 0.005683666095137596, + 0.005527503788471222, + -0.0009564956417307258, + -0.0021992891561239958, + -0.021940838545560837, + -0.0183100588619709, + -0.0006754843634553254, + 0.021120984107255936, + 0.053667861968278885, + 0.005758494138717651, + 0.04380359500646591, + -0.003271280089393258, + 0.014796401374042034, + -0.010196113027632236, + -0.0018088828073814511, + -0.02328123338520527, + -0.01557721383869648, + -0.011660137213766575, + 0.004811758641153574, + -0.035266708582639694, + -0.009851254522800446, + -0.0317530520260334, + -0.014145724475383759, + 0.010619053617119789, + -0.015941593796014786, + -0.0027930322103202343, + -0.03167496994137764, + -0.011087541468441486, + -0.013429978862404823, + 0.007697512395679951, + -0.006122873164713383, + 0.008758116513490677, + -0.01131527777761221, + -0.012375881895422935, + -0.008113945834338665, + -0.011647123843431473, + -0.0018088828073814511, + 0.02214905433356762, + -0.019090872257947922, + 0.003523417515680194, + -0.02322917990386486, + -0.004476659931242466, + 0.00795778352767229, + 0.022773705422878265, + -0.00705984840169549, + -0.03050375171005726, + -0.008172506466507912, + -0.02805720455944538, + 0.003972385078668594, + 4.698983048001537e-06, + -0.022656582295894623, + -0.03953515365719795, + -0.03425165265798569, + -0.002270863624289632, + -0.001862563774921, + -0.007886208593845367, + 0.016995690762996674, + -0.021107971668243408, + -0.016071729362010956, + -0.020600443705916405, + 0.02844761125743389, + 0.0013566621346399188, + 0.02183672972023487, + -0.0034648566506803036, + -0.01614980958402157, + 0.014926536940038204, + 0.020899754017591476, + 0.039873503148555756, + -0.0023066510912030935, + 0.021329201757907867, + -0.003219225909560919, + -0.012317321263253689, + -0.0014819175703451037, + 0.010677614249289036, + -0.006929713301360607, + 0.00854989979416132, + 0.02192782424390316, + 0.004431112203747034, + 0.01551214698702097, + -0.01048241090029478, + 0.013521074317395687, + -0.0255846306681633, + 0.002347318222746253, + 0.0014713440323248506, + 0.0217065941542387, + 0.002700310666114092, + 0.03490233048796654, + 0.003487630281597376, + -0.03308043256402016, + -0.012037529610097408, + 0.0020805406384170055, + 0.0417734831571579, + -0.013189228251576424, + -0.005413635168224573, + -0.00672149658203125, + -0.001271260785870254, + 0.013911480084061623, + 0.006376637611538172, + 0.020353185012936592, + -0.005098056513816118, + -0.023424383252859116, + 0.010820763185620308, + 0.0008816677145659924, + 0.025506550446152687, + -0.0023993724025785923, + -0.003451843047514558, + -0.012896424159407616, + 0.002967088483273983, + -0.013098133727908134, + 0.002579935360699892, + 0.007170463912189007, + 0.021173039451241493, + 0.010931378230452538, + -0.021394269540905952, + 0.03529273718595505, + 0.007339639589190483, + 0.019910724833607674, + 0.036646146327257156, + -0.00023810722632333636, + -0.01172520499676466, + 0.042398132383823395, + 0.0015754523919895291, + 0.03380919247865677, + 0.030295534059405327, + -0.0005656825960613787, + 0.02423122152686119, + -0.012018009088933468, + -0.0061066062189638615, + 0.022110015153884888, + -0.012623139657080173, + 0.013508060947060585, + -0.007931755855679512, + 0.026990093290805817, + -0.008133466355502605, + 0.02831747569143772, + 0.027172284200787544, + 0.00965605117380619, + 0.007072862237691879, + 0.01283135637640953, + -0.005651132203638554, + -0.010000909678637981, + 0.0021098211873322725, + -0.0025408947840332985, + -0.004941894207149744, + -0.010580012574791908, + -0.008979346603155136, + 0.01875251904129982, + -0.0053778477013111115, + -0.008113945834338665, + -0.0059732175432145596, + 0.011510481126606464, + 0.008042370900511742, + 0.00021818022651132196, + 0.020483320578932762, + 0.015147767029702663, + 0.011289251036942005, + -3.1405982099386165e-06, + -0.020210037007927895, + -0.02605311945080757, + 0.03414754569530487, + -0.025740792974829674, + -0.026521606370806694, + -0.010475904680788517, + 0.017568286508321762, + -0.015473105944693089, + -0.010671107098460197, + -0.006799577735364437, + -0.0008572673541493714, + -0.02175864763557911, + -0.002911780960857868, + -0.003660059766843915, + -0.017073772847652435, + 0.019377170130610466, + -0.009434821084141731, + -0.0016047328244894743, + 0.008588939905166626, + -0.010710148140788078, + 0.003852009540423751, + -0.029696911573410034, + -0.013377925381064415, + 0.02792706899344921, + 0.006012258119881153, + -0.0012021262664347887, + -0.019116898998618126, + -0.011152608320116997, + -0.018323073163628578, + -0.005348567385226488, + -0.012610126286745071, + -0.0009939095471054316, + 0.008484832011163235, + -0.01910388469696045, + 0.012558071874082088, + 0.004945147316902876, + -0.006044792011380196, + 0.06756632775068283, + -0.005218431819230318, + -0.00024136061256285757, + -0.03568314388394356, + -0.0058430819772183895, + 0.018036775290966034, + 0.04146115854382515, + 0.007944770157337189, + 0.0065588271245360374, + 0.016071729362010956, + 0.004531967453658581, + -0.0007454321603290737, + -0.003516910830512643, + -0.02959280274808407, + 0.0004693009832408279, + -0.0062367417849600315, + -0.013573127798736095, + -0.014926536940038204, + 0.017112812027335167, + -0.03576122224330902, + 0.02148536406457424, + 0.003725127549842, + -0.010521451942622662, + -0.011302264407277107, + -0.0004054532910231501, + 0.006083832588046789, + 0.0012330334866419435, + -0.015277902595698833, + -0.009558449499309063, + 0.05278294160962105, + 0.021511390805244446, + 0.007183477282524109, + 0.0304516963660717, + 0.013254296034574509, + 0.018648410215973854, + -0.016123782843351364, + 0.007658471819013357, + 0.023567531257867813, + 0.014965577982366085, + 0.016436107456684113, + -0.041174858808517456, + -0.0027019374538213015, + 0.013482033275067806, + -0.010846790857613087, + 0.027432555332779884, + 0.004434365779161453, + 0.02701612189412117, + 0.011796778999269009, + -0.004226149059832096, + -0.0153820114210248, + 0.011497467756271362, + -0.01726897433400154, + 0.00499394815415144, + 0.015733376145362854, + 0.0007295719115063548, + -0.012141638435423374, + 0.014041615650057793, + -0.017034731805324554, + -0.03706257790327072, + -0.007495802361518145, + 0.009018387645483017, + -0.018388140946626663, + 0.006714989431202412, + -0.015954606235027313, + 0.010690627619624138, + -0.01762034185230732, + -0.028655827045440674, + -0.030737994238734245, + 0.010319741442799568, + -0.01613679714500904, + -0.011419386602938175, + -0.01159506943076849, + -0.007450255099684, + -0.007027314510196447, + -0.019077857956290245, + 0.0038064620457589626, + 0.03607355058193207, + -0.026079146191477776, + -0.024660669267177582, + 0.011692671105265617, + 0.011165622621774673, + 0.007105396129190922, + 0.019038816913962364, + -0.007469775155186653, + 0.0004705210158135742, + 0.013989562168717384, + -0.021862756460905075, + -0.01919497922062874, + -0.002329424722120166, + -0.029306504875421524, + 0.0018609371036291122, + -0.002971968613564968, + -0.005075282882899046, + -0.021251119673252106, + -0.0061131129041314125, + 0.015993647277355194, + -0.004548234399408102, + -0.004047212656587362, + 0.010417343117296696, + -0.011816299520432949, + -0.016683366149663925, + -0.007534842938184738, + 0.0015477986307814717, + 0.004571008030325174, + 0.018023760989308357, + -0.03542287275195122, + 0.03258591890335083, + 0.00972762517631054, + -0.0010166832944378257, + 0.001080937683582306, + 0.017047744244337082, + -0.0017942426493391395, + -0.012981011532247066, + -0.006799577735364437, + 0.008380723185837269, + 0.0012135131983086467, + 0.01613679714500904, + -0.021511390805244446, + 0.024114100262522697, + -0.0009605623199604452, + 0.004330257419496775, + 0.008296135812997818, + 0.004235909320414066, + 0.005599078256636858, + 0.028655827045440674, + -0.016696378588676453, + -0.019819630309939384, + -0.02309904433786869, + 0.03347083926200867, + 0.006614134646952152, + 0.014445035718381405, + -0.0006014698301441967, + -0.0024335330817848444, + 0.025337373837828636, + -0.033835217356681824, + 0.00813997257500887, + -0.015811458230018616, + 0.01627994515001774, + 0.019806616008281708, + 0.005527503788471222, + -0.017724448814988136, + -0.01627994515001774, + 0.008556406013667583, + 0.008517365902662277, + -0.03269002586603165, + 0.00694923335686326, + -0.03927488252520561, + 0.011191649362444878, + 0.006916699465364218, + 0.011523494496941566, + 0.012232732959091663, + -0.023463422432541847, + -0.016084741801023483, + 0.017464177682995796, + -0.0037186206318438053, + 0.026300376281142235, + -0.024387385696172714, + -0.01131527777761221, + -0.017477191984653473, + 0.016774460673332214, + -0.02627434954047203, + -0.03675025328993797, + 0.00696224719285965, + -0.02719831094145775, + 0.01678747497498989, + 0.004636075813323259, + 0.02967088483273983, + 0.01015707291662693, + 0.02148536406457424, + -0.002335931407287717, + 0.00317530520260334, + -0.00863448716700077, + -0.0009329085587523878, + 0.003255013143643737, + -0.016345012933015823, + 0.03336673229932785, + 0.015811458230018616, + 0.009903308004140854, + 0.006415678188204765, + 0.023658625781536102, + 0.008588939905166626, + 0.026131199672818184, + -0.031050320714712143, + -0.020327158272266388, + -0.007977303117513657, + -0.017984719946980476, + -0.014874482527375221, + 0.02214905433356762, + -0.004349777474999428, + 0.0029898621141910553, + -0.018205950036644936, + -0.008322162553668022, + 0.0317530520260334, + -0.009226604364812374, + -0.007398200687021017, + 0.0033347210846841335, + -0.002848339732736349, + -0.0275366622954607, + 0.0353187620639801, + 0.011569041758775711, + -0.01709979958832264, + -0.008374216966331005, + -0.00452546076849103, + -0.015629269182682037, + -0.033913299441337585, + 0.02541545405983925, + -0.00027125110500492156, + -0.008829690515995026, + 0.015108726918697357, + -0.005413635168224573, + 0.009968375787138939, + -0.0025766820181161165, + 0.023086030036211014, + -0.021329201757907867, + 0.003230612725019455, + -0.010000909678637981, + 0.004222895484417677, + -0.006080579478293657, + -0.012915943749248981, + -0.028473637998104095, + 0.0050492556765675545, + -0.00598297780379653, + -0.0013037945609539747, + 0.034043435007333755, + -0.01971552148461342, + 0.02915034256875515, + 0.020509347319602966, + 0.01875251904129982, + 0.01700870506465435, + 2.229078017990105e-05, + 0.03875434026122093, + 0.0009434820967726409, + -0.02605311945080757, + -0.015551187098026276, + -0.019728535786271095, + -0.0011037113144993782, + -0.020873727276921272, + 0.014601198025047779, + 0.007886208593845367, + -0.014340927824378014, + -0.01193992793560028, + 0.005059015937149525, + 0.01853128895163536, + -0.00547219580039382, + -0.008888252079486847, + 0.04981585219502449, + 0.04320497065782547, + 0.009734132327139378, + -0.012759781442582607, + -0.00998789630830288, + -0.017672395333647728, + 0.01268170028924942, + -0.00023627719201613218, + -0.00941530056297779, + -0.00401467876508832, + 0.006536053493618965, + 0.00012159531615907326, + 0.041304994374513626, + 0.00789922196418047, + 0.014314900152385235, + -0.0015656922478228807, + -0.016956649720668793, + -0.01379435881972313, + -0.02162851393222809, + 0.004291216842830181, + 0.018127869814634323, + -0.007567376829683781, + 0.02423122152686119, + 0.009181056171655655, + -0.00609033927321434, + 0.01639706827700138, + -0.009337219409644604, + -0.002740978030487895, + 0.007671485189348459, + -0.0017161613795906305, + 0.024530533701181412, + -0.018986763432621956, + 4.186193473287858e-05, + -0.01283135637640953, + 0.008888252079486847, + 0.024530533701181412, + -0.0011777258478105068, + 0.00103376351762563, + -0.021199066191911697, + -0.010105018503963947, + -0.005208671558648348, + 0.018999777734279633, + 0.012031023390591145, + -0.004366044420748949, + 0.0004762144526466727, + -0.014041615650057793, + -0.009688585065305233, + -0.010859804227948189, + -0.005163124296814203, + 0.030009236186742783, + -0.020613456144928932, + 0.004574261140078306, + 0.008699554949998856, + -0.006067565642297268, + 0.018726492300629616, + -0.01464023906737566, + -0.028083231300115585, + -0.019207993522286415, + 0.031050320714712143, + -0.030607860535383224, + 0.03919680044054985, + 0.02792706899344921, + 0.010163579136133194, + 0.010339261963963509, + 0.007651965133845806, + 0.0016584137920290232, + -0.02614421397447586, + 0.019520318135619164, + 0.0017210413934662938, + -0.03807763382792473, + 0.015329957008361816, + -0.01146493386477232, + 0.015733376145362854, + -0.008257094770669937, + 0.0014445035485550761, + 0.022734664380550385, + 0.001986192539334297, + -0.006858138833194971, + -0.010658093728125095, + -0.01535598374903202, + 0.025389427319169044, + 0.0011061513796448708, + -0.01229129359126091, + 0.03956117853522301, + -0.022604528814554214, + 0.012805328704416752, + 0.0012696341145783663, + 0.02714625559747219, + -0.015772417187690735, + -0.02354150451719761, + -0.01722993515431881, + -0.026352429762482643, + 0.006272529251873493, + -0.00961701013147831, + 0.0061651673167943954, + -0.0061651673167943954, + -0.026964066550135612, + -0.021433310583233833, + 0.028994180262088776, + 0.00804887805134058, + 0.017893625423312187, + 0.002997995587065816, + 0.017633354291319847, + -0.017815543338656425, + 0.013716277666389942, + 0.0033038139808923006, + -0.0036080055870115757, + -0.001869070460088551, + 0.007385187316685915, + -0.04604192450642586, + 0.01111356820911169, + -0.0015355984214693308, + 0.034043435007333755, + 0.015902552753686905, + -0.03810366243124008, + 0.00475319754332304, + 0.0025929489638656378, + -0.048228200525045395, + -0.029332531616091728, + 0.010580012574791908, + -0.003360748291015625, + 0.0007836594595573843, + -0.0011321784695610404, + -0.011386852711439133, + 0.02967088483273983, + 0.006503519602119923, + 0.018648410215973854, + -0.025129156187176704, + -0.004479913040995598, + -0.008914278820157051, + -0.012564578093588352, + 0.0317530520260334, + 0.004362791310995817, + -0.019429223611950874, + -0.004001665394753218, + -0.0018772039329633117, + -0.003438829444348812, + -0.00696224719285965, + 0.02636544406414032, + -0.009441327303647995, + 0.0035429378040134907, + -0.0037413944955915213, + 0.011048500426113605, + 0.012401909567415714, + -0.0004810945247299969, + 0.013989562168717384, + -0.019806616008281708, + 0.0008767876424826682, + 0.03159688785672188, + -0.0016275065718218684, + -0.025051075965166092, + -0.003959371242672205, + -0.009662557393312454, + -0.00023302380577661097, + -0.007242038380354643, + 0.014002575539052486, + -0.026300376281142235, + -0.0027848987374454737, + -0.012356361374258995, + 0.02862980030477047, + 0.012434442527592182, + 0.004528713878244162, + 0.015238862484693527, + -0.007150943391025066, + -0.0010158699005842209, + -0.029254451394081116, + 0.009441327303647995, + -0.021472349762916565, + 0.0012021262664347887, + 0.023177124559879303, + -0.002544148126617074, + 0.024699710309505463, + -0.030009236186742783, + 0.014978591352701187, + -0.013013545423746109, + 0.012278280220925808, + -0.02484285831451416, + -0.014692293480038643, + -0.0036633131094276905, + 0.013482033275067806, + 0.004248922690749168, + -0.008205040358006954, + 0.01270122081041336, + 0.006194447632879019, + -0.013208748772740364, + -0.001743815140798688, + -0.0043335105292499065, + -0.0019731789361685514, + -0.01087281759828329, + 0.0006096033030189574, + 0.0038845434319227934, + -0.01059302594512701, + -0.008406750857830048, + 0.003523417515680194, + 0.008257094770669937, + -0.014874482527375221, + 0.013059093616902828, + 0.202074334025383, + -0.00978618673980236, + -0.00795778352767229, + 0.014132711105048656, + -0.017308015376329422, + -0.017945678904652596, + 0.02941061370074749, + -0.01046289037913084, + -0.0158765260130167, + 0.01962442696094513, + -0.024257250130176544, + 0.010566999204456806, + 0.00014060729881748557, + 0.0020756605081260204, + 0.009701598435640335, + -0.02766679786145687, + -0.01804978772997856, + -0.012857383117079735, + -0.00535182049497962, + 0.026443524286150932, + 0.0187915600836277, + -0.0260661318898201, + -0.005683666095137596, + 0.0006112299743108451, + 0.02018401026725769, + 0.007378680631518364, + 0.002358705271035433, + 0.011751231737434864, + 0.024660669267177582, + 0.0062432484701275826, + 0.000516881758812815, + 0.003241999540477991, + 0.011543015018105507, + -0.018648410215973854, + 0.010697134770452976, + 0.009174549952149391, + 0.0008466938161291182, + -0.012167665176093578, + 0.03505849093198776, + 0.02136824280023575, + -0.008146479725837708, + -0.020092913880944252, + -0.008667021058499813, + -0.006871152203530073, + -0.014236818999052048, + 0.022266177460551262, + -0.01866142451763153, + 0.001313554821535945, + -0.013885453343391418, + -0.013469019904732704, + -0.027042148634791374, + -0.010645080357789993, + 0.024777790531516075, + 0.03131059184670448, + -0.01945525035262108, + 0.004697890020906925, + 0.004987441468983889, + -0.00952591560781002, + 0.00911598838865757, + -0.004096013493835926, + -0.02441341243684292, + 0.018999777734279633, + -0.014848455786705017, + 0.016852540895342827, + -0.024465465918183327, + -0.006532799918204546, + -0.03438178822398186, + 0.008588939905166626, + 0.004704396706074476, + -0.014887496829032898, + -0.0030907171312719584, + -0.027380499988794327, + -0.021602485328912735, + 0.009545436128973961, + -0.020821673795580864, + -0.02954074926674366, + 0.023476436734199524, + 0.00201709964312613, + 0.017776504158973694, + 0.01657925732433796, + -0.026885986328125, + 0.010619053617119789, + 0.006578347180038691, + -0.027354473248124123, + 0.02175864763557911, + -0.04398578405380249, + 0.009571462869644165, + 0.0015990394167602062, + -0.004346524365246296, + -0.02201891876757145, + -0.014327913522720337, + 0.0019422717159613967, + 0.005101310089230537, + -0.01871347799897194, + 0.007326626218855381, + -0.011894380673766136, + 0.015199821442365646, + 0.010410836897790432, + -0.018127869814634323, + 0.0034193091560155153, + 0.0028743669390678406, + 0.0569993294775486, + 0.03318454325199127, + -0.024725737050175667, + -0.00793826300650835, + 0.008263601921498775, + -0.011289251036942005, + 0.0153820114210248, + -0.00225622346624732, + -0.01512174028903246, + 0.00511106988415122, + -0.036646146327257156, + 0.010599533095955849, + -0.007697512395679951, + 0.006139140110462904, + 0.012460470199584961, + -0.006747523322701454, + -0.012115610763430595, + -0.004681623075157404, + -0.0012078196741640568, + -0.01255156472325325, + 0.010039950720965862, + 0.00902489386498928, + 0.004017932340502739, + 0.01402860227972269, + -0.009630023501813412, + -0.04786382243037224, + 0.013338884338736534, + -0.01884361356496811, + 0.0011769125703722239, + 0.014392981305718422, + -0.02584490180015564, + 0.0032924271654337645, + 0.01791965216398239, + -0.001678747357800603, + 0.02519422397017479, + -0.000567715906072408, + -0.05663495138287544, + 0.01778951659798622, + -0.011380345560610294, + 0.012330334633588791, + -0.02384081669151783, + 0.0016689872136339545, + -0.011627603322267532, + 0.011172128841280937, + 0.0008247334626503289, + 0.005146857351064682, + -0.0016632938059046865, + -0.015993647277355194, + -0.018895668908953667, + 0.01617583818733692, + -0.00164784025400877, + -0.013169708661735058, + -0.020170995965600014, + 0.02175864763557911, + 0.01535598374903202, + -0.0007612924091517925, + -0.030425669625401497, + 0.02136824280023575, + 0.01220019906759262, + -0.0024221462663263083, + 0.002059393562376499, + -0.004531967453658581, + -0.013937507756054401, + -0.018075814470648766, + -0.0048377858474850655, + -0.16417889297008514, + 0.01503064576536417, + 0.02618325501680374, + -0.04656246677041054, + 0.004691383335739374, + 0.007105396129190922, + -0.007118409499526024, + -0.0022952640429139137, + -0.01983264461159706, + -0.005634865257889032, + 0.05174185708165169, + -0.005664145573973656, + -0.02571476623415947, + -0.0011557654943317175, + -0.001660040463320911, + 0.00965605117380619, + -0.01353408768773079, + 0.03607355058193207, + 0.012798822484910488, + 0.016332000494003296, + 0.006184687837958336, + -0.03524068370461464, + 0.010033443570137024, + -0.01270122081041336, + 0.007638951297849417, + 0.005875615868717432, + -0.01752924546599388, + 0.021238107234239578, + 0.00913550890982151, + -0.024816831573843956, + -0.007664978504180908, + 0.0008727209060452878, + 0.03242975473403931, + -0.010345769114792347, + 0.008907771669328213, + -0.003988651558756828, + 0.004183854907751083, + -0.005094803404062986, + -0.010059471242129803, + 0.03927488252520561, + 0.020808659493923187, + -0.002861353335902095, + -0.014145724475383759, + 0.009454340673983097, + -0.03995158523321152, + -0.0047206636518239975, + 0.016501175239682198, + 0.00013684557052329183, + -0.014614212326705456, + -0.0028922604396939278, + -0.005423395428806543, + -0.010801242664456367, + 0.005618598312139511, + 0.020340172573924065, + 0.0045157005079090595, + 0.021433310583233833, + 0.00047906115651130676, + 0.012694713659584522, + -0.0037088606040924788, + 0.0047141569666564465, + -0.006968753878027201, + -0.014731333591043949, + -0.0010134298354387283, + 0.01788061112165451, + 0.0004054532910231501, + -0.03149278089404106, + 0.013065599836409092, + 0.011321784928441048, + -0.021862756460905075, + 0.007704019080847502, + -0.025259291753172874, + 0.001766588888131082, + 0.039222825318574905, + -0.010065977461636066, + -0.002202542731538415, + 0.01087281759828329, + 0.010879323817789555, + 0.0073656667955219746, + -0.005488462746143341, + 0.003134637838229537, + -0.020730579271912575, + 0.05913355201482773, + -0.026547633111476898, + -0.007684498559683561, + -0.025168197229504585, + 0.006285542622208595, + 0.008094425313174725, + -0.01266217976808548, + 0.012161158956587315, + 0.0015599988400936127, + 0.012044036760926247, + -0.03615162894129753, + -0.019168952479958534, + -0.017073772847652435, + 0.011048500426113605, + -0.0063668773509562016, + 0.012753275223076344, + -0.018388140946626663, + -0.013364911079406738, + -0.028005151078104973, + 0.007580390200018883, + -0.019598400220274925, + -0.025467509403824806, + -0.010319741442799568, + 0.004486419726163149, + 0.022422339767217636, + -0.0028564732056111097, + -0.0011183515889570117, + 0.03295029699802399, + -0.008914278820157051, + -0.012362868525087833, + -0.015954606235027313, + 0.018986763432621956, + 0.0027263378724455833, + -0.013495046645402908, + 0.008582433685660362, + 0.026521606370806694, + -0.01840115338563919, + -0.001236286829225719, + -0.014184764586389065, + 0.034746166318655014, + -0.006890672259032726, + -0.021641526371240616, + 0.007931755855679512, + 0.011933421716094017, + -0.027094202116131783, + -0.08037165552377701, + 0.005078536458313465, + 0.024816831573843956, + 0.021107971668243408, + 0.011048500426113605, + 0.01693062297999859, + -0.012590605765581131, + 0.025246279314160347, + 0.0034420827869325876, + 0.0117447255179286, + -0.04164334759116173, + -0.022175082936882973, + -0.0020447534043341875, + -0.016943637281656265, + 0.01784157194197178, + -0.01862238347530365, + -0.012616632506251335, + -0.02114701271057129, + -0.020379213616251945, + 0.025558603927493095, + 0.0067540304735302925, + -0.001815389608964324, + -0.020392226055264473, + -0.003481123596429825, + 0.00012911878002341837, + 0.012395402416586876, + -0.034954383969306946, + 0.017203908413648605, + 0.010885830968618393, + 0.0007791860261932015, + 0.009590983390808105, + -0.018036775290966034, + 0.03172702342271805, + -0.02545449510216713, + 0.021420296281576157, + 0.002340811537578702, + 0.0031964522786438465, + -0.021342214196920395, + 0.007033821661025286, + -0.025701753795146942, + -0.002669403562322259, + 0.00610335310921073, + 0.035084519535303116, + -0.029488693922758102, + -0.01281183585524559, + -0.030555805191397667, + -0.01870046555995941, + 0.002937807934358716, + 0.0022545969113707542, + -0.024348344653844833, + -0.03037361614406109, + -0.025441482663154602, + -0.012785809114575386, + 0.011386852711439133, + 0.01578543148934841, + 0.005800787825137377, + -0.0059667108580470085, + -0.01159506943076849, + -0.004118787124752998, + -0.008588939905166626, + -0.01583748497068882, + 0.0173210296779871, + -0.019858671352267265, + 0.028395557776093483, + 0.00905092153698206, + -0.016735419631004333, + -0.026912013068795204, + -0.014679279178380966, + 0.0065002660267055035, + -0.024335330352187157, + -0.026092158630490303, + 0.006477492395788431, + 0.012122117914259434, + -0.009883788414299488, + -0.030347589403390884, + -0.003069570055231452, + -0.024088073521852493, + -0.018388140946626663, + 0.00778860691934824, + -0.028031177818775177, + -0.027901042252779007, + -0.028265422210097313, + 0.02805720455944538, + -0.025701753795146942, + 0.024816831573843956, + -0.0036177656147629023, + -0.0011590189533308148, + -0.013215255923569202, + 0.014080656692385674, + -0.0158765260130167, + 0.016110770404338837, + -0.0045807682909071445, + 0.01366422325372696, + -0.02636544406414032, + 0.0031720518600195646, + 0.0062432484701275826, + 0.01600666157901287, + 0.004668609704822302, + 0.005098056513816118, + 0.01997579261660576, + -0.03232564777135849, + -0.021212080493569374, + -0.04172142595052719, + 0.01039782352745533, + 0.01661829836666584, + -0.0017633354291319847, + -0.007619431242346764, + 0.000848320487421006, + 0.01604570262134075, + 0.013046079315245152, + 0.006022018380463123, + 0.010345769114792347, + -0.009922828525304794, + 0.017594313248991966, + 0.007261558435857296, + -0.0234894510358572, + -0.013013545423746109, + -0.0074242278933525085, + 0.019221007823944092, + 0.004531967453658581, + 0.011458426713943481, + 0.013651209883391857, + -0.012967998161911964, + 0.005397368222475052, + -0.013690249994397163, + 0.010345769114792347, + -0.02732844650745392, + 0.004340017680078745, + -0.015980634838342667, + 0.0030907171312719584, + 0.000675077666528523, + -0.011699177324771881, + 0.002431906294077635, + -0.012707727029919624, + -0.010540972463786602, + -0.0038780367467552423, + -0.011146102100610733, + -0.005823561921715736, + 0.013469019904732704, + 0.035214655101299286, + 0.012284787371754646, + 0.05991436541080475, + -0.033783163875341415, + -0.0336790569126606, + 0.012109104543924332, + -0.02922842465341091, + -0.008035864681005478, + -0.001361542264930904, + 0.013781344518065453, + -0.0003304220736026764, + 0.01070364098995924, + -0.020353185012936592, + 0.04250223934650421, + 0.006126126740127802, + -0.01428887341171503, + -0.025597644969820976, + 0.022994935512542725, + -0.013482033275067806, + -0.002083793981000781, + 0.010046456940472126, + -0.010514944791793823, + -0.025949010625481606, + 0.025129156187176704, + 0.011874860152602196, + 0.00017537786334287375, + 0.010690627619624138, + 0.028473637998104095, + -0.022656582295894623, + -0.030269507318735123, + 0.01892169564962387, + 0.014653252437710762, + -0.01220019906759262, + -0.026092158630490303, + -0.01046289037913084, + 0.005963457282632589, + 0.0264044851064682, + -0.014366954565048218, + -0.010671107098460197, + 0.030399642884731293, + -0.00659136101603508, + 0.0012387268943712115, + 0.03581327944993973, + 0.01148445438593626, + 0.010326248593628407, + -0.012122117914259434, + -0.013286829926073551, + 0.022955894470214844, + 0.02174563519656658, + -0.022565487772226334, + -0.0018218964105471969, + -0.00840024370700121, + 0.006275782361626625, + 0.015863511711359024, + 0.0019097378244623542, + -0.005865855608135462, + -0.0047857314348220825, + 0.009389272890985012, + 0.018557315692305565, + -0.005332300439476967, + -0.015694336965680122, + 0.002280623884871602, + 0.030946211889386177, + 0.0013948894338682294, + -0.0010728042107075453, + 0.007248545065522194, + -0.02862980030477047, + -0.013325870968401432, + 0.010514944791793823, + -0.0034290694165974855, + -0.030685940757393837, + -0.01574639044702053, + 0.02049633488059044, + -0.017906639724969864, + 0.02341136895120144, + -0.0016388933872804046, + -0.0074177212081849575, + -0.0217065941542387, + 0.04695287346839905, + -0.007216011174023151, + -0.011165622621774673, + -0.03006129153072834, + 0.0024205194786190987, + 0.020990848541259766, + 0.0011972462525591254, + -0.005065522622317076, + 0.005986230913549662, + 0.023658625781536102, + 0.018127869814634323, + 0.005511236842721701, + -0.007931755855679512, + 0.011783765628933907, + -0.019520318135619164, + 0.02571476623415947, + -0.024999020621180534, + -0.03110237419605255, + -0.001164712361060083, + -0.01074918918311596, + -0.016345012933015823, + 0.013950521126389503, + 0.015368997119367123, + 0.02566271275281906, + 0.09983992576599121, + 0.0314146988093853, + 0.008621473796665668, + -0.008608460426330566, + -0.002710070926696062, + 0.008640994317829609, + 0.013716277666389942, + 0.008152986876666546, + 0.008055385202169418, + -0.05455278232693672, + -3.2136722438735887e-06, + -0.006649922113865614, + 0.019247034564614296, + -0.034355759620666504, + -0.013137174770236015, + 0.008888252079486847, + -0.018947722390294075, + 0.009864267893135548, + 0.004577514715492725, + 0.025389427319169044, + 0.019025804474949837, + -0.008100932464003563, + 0.014262845739722252, + 0.02954074926674366, + -0.044532354921102524, + -0.006464479025453329, + 0.010807749815285206, + -0.025688739493489265, + -0.0045157005079090595, + -0.0024286529514938593, + -0.011731711216270924, + 0.005768254399299622, + -0.06485950946807861, + -0.022773705422878265, + 0.03859817609190941, + -0.0002600675798021257, + -0.01626693271100521, + -0.03219551220536232, + 0.023242192342877388, + -0.004561247769743204, + 0.01022213976830244, + 0.023033976554870605, + -0.03084210306406021, + -0.020912768319249153, + -0.00965605117380619, + -0.02332027442753315, + 0.0015957860741764307, + -0.024634642526507378, + -0.036125604063272476 + ], + "metadata": { + "source": "Kreye_Marieke_BA_241_V2.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 17, + "has_images": true, + "image_count": 98, + "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", + "links": [], + "last_modified": "2025-05-05T23:00:23", + "_known_field_names": "frozenset({'is_continuation', 'sent_to', 'header_footer_type', 'email_message_id', 'filename', 'languages', 'detection_class_prob', 'sent_from', 'link_texts', 'cc_recipient', 'subject', 'image_mime_type', 'image_path', 'filetype', 'page_number', 'last_modified', 'signature', 'detection_origin', 'text_as_html', 'attached_to_filename', 'bcc_recipient', 'data_source', 'link_start_indexes', 'category_depth', 'emphasized_text_tags', 'parent_id', 'orig_elements', 'page_name', 'coordinates', 'url', 'link_urls', 'file_directory', 'links', 'table_as_cells', 'emphasized_text_contents', 'key_value_pairs', 'image_base64'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "Kreye_Marieke_BA_241_V2.pdf", + "detection_class_prob": 0.3422867953777313, + "parent_id": "e02392183bc6851689602ad4b9f6039f", + "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", + "id": "ce00eae5-7e07-454f-9e4f-f79ac36f92f4", + "processing_timestamp": "2025-05-05T23:15:46.977945", + "chunk_number": 15, + "total_chunks": 56, + "chunking_strategy": "hybrid", + "word_count": 359 + } +} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000016.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000016.json new file mode 100644 index 0000000000000000000000000000000000000000..ac277177225f33d17140014e55968365d58c59c2 --- /dev/null +++ b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000016.json @@ -0,0 +1,1570 @@ +{ + "id": "61a115b2-0ff7-441a-f6d9-eb3d00000016", + "content": "Erell und Zhou 2022)\n13\nTheorieteil\nWeitere Betrachtungen des Einflusses von Stadtgr\u00fcn auf die Lufttemperatur haben Schwab et al. durchgef\u00fchrt. In \u00fcber 290 europ\u00e4ischen St\u00e4dten werteten sie mittels Satellitendaten die Oberfl\u00e4chentemperaturen aus. Sie zeigen auf, dass st\u00e4dtisches Gr\u00fcn zu einer Abk\u00fchlung des urbanen Raums beitr\u00e4gt. Durch st\u00e4dtische B\u00e4ume stellt sich eine zwei- bis viermal st\u00e4rkere Verringerung der Temperatur ein als bei baumlosen st\u00e4dtischen Gr\u00fcnfl\u00e4chen. (vgl. Schwaab et al. 2021)\nMoss et al. benutzten zwei methodische Ans\u00e4tze, um die \u00d6kosystemdienstleistung der Evapotranspiration der B\u00e4ume in der Stadt London aufzuzeigen und monet\u00e4r zu bewerten. Der Verschattungseffekt wird in die Betrachtung nicht miteinbezogen Als ersten Ansatz bestimmten sie die K\u00fchlleistung der Evapotranspiration \u00fcber die Enthalpie, welche sie anschlie\u00dfend mit der Leistung eines maschinellen Verdunstungsk\u00fchlsystems gleichsetzten, um potenzielle Einsparungseffekte aufzuzeigen. In einem zweiten Ansatz simulierten Moss et al. die Energieeinsparung von Geb\u00e4uden auf Grund der durch die Evapotranspiration abgek\u00fchlten Luft. F\u00fcr diese Simulation wurde ein einzelstehendes Geb\u00e4ude bzw. ein einziger Stra\u00dfenzug betrachtet. In beiden Ans\u00e4tzen konnten sie eine Reduktion des Energiebedarfs und somit eine Verringerung der Energiekosten feststellen. (vgl. Moss et al. 2019)\nIn verschiedenen Studien wird der Mehrwert eines erh\u00f6hten Gr\u00fcnanteils best\u00e4tigt, jedoch findet selten eine Verkn\u00fcpfung zwischen mehreren Wechselwirkungen statt. So wird der Effekt auf den Geb\u00e4udeenergiebedarf nicht auf Quartiersebene bzw. dichteren Bebauungsstrukturen betrachtet. Des Weiteren wird das Mobilit\u00e4tsverhalten der Bewohner des untersuchten Quartiers nicht mit in die Betrachtung einbezogen. Eine ganzheitliche Betrachtung einer Vielzahl, der f\u00fcr die Entwicklung einer nachhaltigen Quartiersstruktur relevanten Komponenten ist entscheidend, um sowohl den Status Quo bestm\u00f6glich abzubilden als auch m\u00f6gliche Zukunftsszenarien zu simulieren. Im Rahmen dieser Arbeit werden die Wechselwirkungen zwischen einer Ver\u00e4nderung des Mobilit\u00e4tsverhaltens, dem Anteil an Stadtgr\u00fcn in Form von B\u00e4umen und dem thermischen Geb\u00e4udeenergiebedarf betrachtet. 14\nMethodik und Toolerl\u00e4uterung\n\n## 3 Methodik und Toolerl\u00e4uterung\n\nDieses Kapitel dient einer \u00dcbersicht \u00fcber die angewandte Methodik. Zun\u00e4chst wird auf die einzelnen Schritte und anschlie\u00dfend auf die ben\u00f6tigten Tools eingegangen.", + "embedding": [ + 0.025293977931141853, + 0.0021640690974891186, + 0.020401298999786377, + -0.04030943661928177, + 0.0027156309224665165, + 0.020557034760713577, + -0.026293277740478516, + -0.007390928920358419, + -0.02321751043200493, + -0.02391831763088703, + -0.007105414289981127, + -0.003757109632715583, + -0.0071573262102901936, + 0.01672854647040367, + 0.0027367202565073967, + -0.014094027690589428, + 0.039842233061790466, + -0.0009798334212973714, + 0.016611745581030846, + 0.018571412190794945, + -0.006602519657462835, + 0.014119983650743961, + 0.005583752878010273, + 0.0044936067424714565, + 0.0043151602149009705, + 0.027513204142451286, + 0.024619124829769135, + -0.026059675961732864, + -0.010414785705506802, + 0.008682232350111008, + 0.017143839970231056, + -0.018272919580340385, + -0.03314562141895294, + -0.011816401965916157, + -0.015313953161239624, + -0.01831185445189476, + 0.0019726448226720095, + 0.007884089834988117, + 0.017909538000822067, + -0.008085248060524464, + 0.008824990130960941, + -0.015612444840371609, + 0.005311216227710247, + -0.007877601310610771, + 0.009571220725774765, + 0.017416376620531082, + 0.02323048748075962, + -0.00937655195593834, + -0.01876608096063137, + 0.03275628387928009, + 0.02792849764227867, + 0.03003092110157013, + -0.007248171605169773, + -0.003504039952531457, + -0.0308615081012249, + 0.016170496121048927, + -0.012050004675984383, + 0.019804315641522408, + 0.0019191107712686062, + 0.0033483048900961876, + -0.027513204142451286, + -0.014197851531207561, + -0.01339321956038475, + 0.01335428562015295, + -0.03283415362238884, + -0.010220116935670376, + -0.01912946254014969, + -0.007397417910397053, + 0.007351994980126619, + -0.006897767540067434, + 0.03176996484398842, + 0.03992009907960892, + 0.02738342434167862, + -0.008876901119947433, + 0.009123481810092926, + -0.01198511477559805, + -0.0027675428427755833, + -0.003523506922647357, + -0.009551753289997578, + 0.010103315114974976, + -0.0038382215425372124, + -0.00717030419036746, + -0.024632103741168976, + 0.04947185516357422, + 0.016585789620876312, + 0.004847255535423756, + -0.00466880900785327, + 0.028499525040388107, + 0.00277889845892787, + 0.009902157820761204, + 0.00791004579514265, + 0.020686814561486244, + 0.004853744525462389, + 0.025994785130023956, + -0.009902157820761204, + -0.007767288945615292, + 0.01528799720108509, + 0.008870412595570087, + 0.009662065654993057, + -0.011180483736097813, + -0.026500925421714783, + 0.005145747680217028, + -0.013808513060212135, + -0.008013869635760784, + -0.051548320800065994, + -0.001000922522507608, + 0.0062261600978672504, + 0.013179084286093712, + 0.0124133862555027, + -0.03480679914355278, + -0.01718277484178543, + 0.035144224762916565, + -0.015690311789512634, + -0.02578713931143284, + 0.006232649087905884, + -0.02633221261203289, + 0.03236694633960724, + -0.009791845455765724, + -0.021374644711613655, + 0.005616197362542152, + 0.02533291094005108, + 0.014094027690589428, + 0.002443094504997134, + -0.009097525849938393, + 0.02829187922179699, + -0.006748521700501442, + 0.003880399977788329, + -0.012199250049889088, + -0.038933780044317245, + -0.026046697050333023, + -0.022737326100468636, + 0.012685922905802727, + 0.005762199405580759, + 0.008403207175433636, + -0.02868121676146984, + 0.03449532762169838, + -0.010038426145911217, + 0.013153128325939178, + -0.02565735951066017, + -0.040517084300518036, + -0.01357491035014391, + -0.0018136651488021016, + -0.03563738614320755, + -0.028992686420679092, + 0.007974935695528984, + 0.030757684260606766, + 0.008863923139870167, + 0.029719451442360878, + -0.0006760688265785575, + -0.029226290062069893, + -0.011569821275770664, + -0.013782557100057602, + 0.010323939844965935, + 0.0007433918071910739, + 0.007059991825371981, + 0.007507730275392532, + -0.016456009820103645, + -0.002232203260064125, + -0.02337324433028698, + 0.012828679755330086, + 0.02556651458144188, + -0.01335428562015295, + 0.012731345370411873, + 0.0025582737289369106, + 0.015949871391057968, + -0.0022857373114675283, + 0.015365864150226116, + -0.006956168450415134, + 0.008039825595915318, + -0.006897767540067434, + -0.023580892011523247, + 0.024943573400378227, + -0.03927120566368103, + 0.024567214772105217, + -0.006359183695167303, + 0.013289396651089191, + 0.013808513060212135, + 0.011180483736097813, + 0.003223392413929105, + -0.03413194417953491, + -0.034002166241407394, + 0.009681533090770245, + 0.013315352611243725, + 0.01610560715198517, + -0.01710490696132183, + -0.0014348719269037247, + 0.017818693071603775, + 0.013380241580307484, + -0.00357541861012578, + 0.005476684775203466, + 0.022944973781704903, + 0.01763700135052204, + 0.015690311789512634, + 0.0003794015501625836, + -0.632492184638977, + 0.009091037325561047, + -0.004714231472462416, + -0.011368663050234318, + 0.008974235504865646, + 0.009162415750324726, + 0.022360967472195625, + 0.017260640859603882, + -0.010148738510906696, + 0.04155531898140907, + -0.009616643190383911, + -0.007008079905062914, + -0.0072741275653243065, + -0.0035624406300485134, + -0.005642153322696686, + -0.011342707090079784, + -0.005230104085057974, + 0.002214358653873205, + 0.028862908482551575, + 0.01663770154118538, + -0.024268722161650658, + 0.027071954682469368, + 0.005927667953073978, + -0.0029086777940392494, + 0.01351002138108015, + 0.036364149302244186, + -0.006709587760269642, + -0.031951654702425, + 0.011491953395307064, + 0.01347108744084835, + -0.0062294043600559235, + 0.036493927240371704, + -0.008545964024960995, + 0.023282399401068687, + 0.04594185948371887, + 0.01746828854084015, + -0.019934093579649925, + 0.017143839970231056, + 0.00012835979578085244, + 0.005275527015328407, + -0.020816592499613762, + -0.020141741260886192, + 0.00911699328571558, + -0.0029865452088415623, + -0.0038219993002712727, + 0.010369363240897655, + 0.032886065542697906, + -0.0219326950609684, + -0.011550353839993477, + -0.009623131714761257, + 0.012517210096120834, + 0.004545518662780523, + 0.010752211324870586, + 0.01074572280049324, + 0.01572924666106701, + 0.007475285325199366, + 0.02239990048110485, + 0.008052803575992584, + -0.008442141115665436, + -0.004600674845278263, + -0.0018315098714083433, + -0.0027156309224665165, + -0.0033207267988473177, + -0.013328329659998417, + -0.02217927575111389, + 0.04461811110377312, + -0.0307836402207613, + -0.010408296249806881, + -0.006956168450415134, + -0.03654583916068077, + -0.008812012150883675, + 0.017338508740067482, + -0.003935555927455425, + -0.011264840140938759, + 0.007105414289981127, + 0.00972695555537939, + 0.03465106338262558, + -0.0015662735095247626, + -0.012659966945648193, + 0.02156931348145008, + -0.0018963994225487113, + -0.01710490696132183, + -0.010038426145911217, + 0.0017228196375072002, + 0.02496952936053276, + -0.027876585721969604, + -0.02216629683971405, + 0.0017098417738452554, + -0.001614940701983869, + 0.010220116935670376, + 0.02313964255154133, + 0.02413894236087799, + -0.02239990048110485, + -0.011569821275770664, + -0.00136592669878155, + 0.033924300223588943, + -0.005025702062994242, + 0.024100009351968765, + 0.017377443611621857, + -0.05258655548095703, + -0.004736943170428276, + 0.00537286140024662, + 0.02382747270166874, + -0.0011380019132047892, + 0.00036013746284879744, + -0.0029751895926892757, + -0.005252815783023834, + 0.004954323172569275, + 0.03511826694011688, + -0.012251161970198154, + 0.008980724960565567, + 0.0028178321663290262, + -0.006602519657462835, + 0.0016822636825963855, + -0.013010370545089245, + -0.0217769593000412, + 0.04282715544104576, + -0.017766781151294708, + 0.008312361314892769, + -0.0014997615944594145, + 0.009181882254779339, + -0.009856734424829483, + 0.013062282465398312, + -0.0268643070012331, + 0.009175393730401993, + 0.02133570984005928, + -0.010317451320588589, + -0.005574019160121679, + -0.017753802239894867, + -0.004376805387437344, + 0.0016725301975384355, + 0.023892361670732498, + 0.04274928942322731, + -0.008383740670979023, + 0.03244481608271599, + -0.011251862160861492, + 0.0241259653121233, + -0.013860424980521202, + 0.0015378842363134027, + -0.015313953161239624, + -0.01267294492572546, + 0.0020148230250924826, + 0.005875756032764912, + -0.026189453899860382, + -0.0200508963316679, + -0.03200356662273407, + -0.012926014140248299, + 0.008286405354738235, + -0.009655577130615711, + 0.0241259653121233, + -0.030627906322479248, + 0.003265570616349578, + 0.00028429768281057477, + 0.0035689296200871468, + 0.0004992446047253907, + 0.006472740788012743, + -0.004772632382810116, + -0.026513902470469475, + -0.02399618551135063, + -0.017585089430212975, + 0.010499142110347748, + 0.023619825020432472, + -0.02528100088238716, + -0.005009479355067015, + -0.026137543842196465, + -0.013042815960943699, + 0.0010787900537252426, + 0.014820791780948639, + -0.015080350451171398, + -0.033171579241752625, + -0.0035202624276280403, + -0.025177177041769028, + 0.005739487707614899, + -0.0003822404833044857, + -0.023814493790268898, + -0.023256443440914154, + -0.026968130841851234, + -0.015781158581376076, + -0.0043508498929440975, + -0.00717030419036746, + 0.02868121676146984, + -0.00269454182125628, + -0.007676443085074425, + -0.018272919580340385, + 0.020816592499613762, + 0.00968802161514759, + 0.028992686420679092, + 0.010434252209961414, + -0.009999492205679417, + 0.019090529531240463, + 0.008513519540429115, + 0.03992009907960892, + 0.0027999875601381063, + 0.01426274050027132, + 0.0018574657151475549, + -0.012575610540807247, + 0.008766588754951954, + 0.013075260445475578, + -0.019246263429522514, + 0.015534577891230583, + 0.04002392292022705, + 0.002035912126302719, + 0.029719451442360878, + 0.003809021320194006, + 0.005771932657808065, + -0.017727846279740334, + 0.003289904212579131, + 0.006865323055535555, + 0.008734144270420074, + 0.006956168450415134, + 0.036571796983480453, + -0.006329983472824097, + -0.04287906736135483, + -0.014405498281121254, + -0.013626822270452976, + 0.03192569687962532, + -0.01282219123095274, + -0.009220816195011139, + -0.012173295021057129, + -0.006949679460376501, + 0.015872003510594368, + -0.005992557387799025, + 0.01270538941025734, + -0.021699093282222748, + -0.01535288617014885, + 0.016248364001512527, + -0.001581684686243534, + 0.02647496946156025, + 0.01610560715198517, + -0.01335428562015295, + -0.018779059872031212, + -0.005437750834971666, + -0.01452229917049408, + 0.011933202855288982, + 0.0023992941714823246, + 0.017130862921476364, + 0.011569821275770664, + -0.023256443440914154, + 0.03125084564089775, + 0.009259750135242939, + 0.006943190470337868, + 0.0355595164000988, + 0.009538775309920311, + -0.031198933720588684, + 0.03646797314286232, + 0.0009660443756729364, + 0.022425856441259384, + 0.022438833490014076, + 0.004133469425141811, + 0.014236784540116787, + -0.009052103385329247, + -0.00644678482785821, + 0.012504232116043568, + -0.01524906326085329, + 0.02299688570201397, + -0.02132273279130459, + 0.012056493200361729, + -0.011161016300320625, + 0.015041416510939598, + 0.028499525040388107, + 0.008448629640042782, + 0.00798142421990633, + 0.0067030987702310085, + -0.003220147918909788, + 0.002910299925133586, + -0.008403207175433636, + -0.014652078971266747, + -0.01648196578025818, + -0.005593486130237579, + -0.010252561420202255, + 0.021374644711613655, + -0.003312615677714348, + -0.011290796101093292, + -0.0023830716963857412, + 0.006553852465003729, + 0.01945391111075878, + 0.0016108850250020623, + 0.015781158581376076, + 0.0013975604670122266, + 0.007936001755297184, + -0.015923915430903435, + -0.018973728641867638, + -0.005074369255453348, + 0.017688913270831108, + -0.011316751129925251, + -0.013600866310298443, + 0.0011063681449741125, + 0.008234494365751743, + -0.02027152106165886, + -0.004337871912866831, + -0.008150137960910797, + -0.011848846450448036, + -0.02254265733063221, + -0.011881290934979916, + -0.004042624030262232, + -0.020985307171940804, + 0.01528799720108509, + -0.017442332580685616, + 0.011323240585625172, + 0.014314652420580387, + 0.008331828750669956, + -0.0004684220184572041, + -0.023931296542286873, + -0.016520900651812553, + 0.041788920760154724, + 0.00630078325048089, + -0.011238884180784225, + 0.003160125110298395, + 0.0012929259100928903, + -0.017727846279740334, + -0.005528596695512533, + -0.005603219382464886, + -0.01535288617014885, + 0.015093328431248665, + -0.015378842130303383, + 0.015949871391057968, + -0.002334404503926635, + -0.000381226564059034, + 0.05393626168370247, + -0.0006521407631225884, + -0.005440995562821627, + -0.045812077820301056, + -0.011855335906147957, + 0.017649980261921883, + 0.03875208646059036, + 0.021205931901931763, + 0.010044914670288563, + 0.019882183521986008, + -0.0018363764975219965, + -0.005827088840305805, + 0.0035494628828018904, + -0.02860334888100624, + -0.0009765889262780547, + -0.0019061329076066613, + -0.012685922905802727, + -0.004149691667407751, + 0.0016481966013088822, + -0.018117185682058334, + 0.006362428423017263, + 0.004477384500205517, + 0.008325339294970036, + -0.009772378019988537, + 0.004892678000032902, + -0.0019288442563265562, + -0.010836568661034107, + -0.0018558434676378965, + -0.013795535080134869, + 0.04957567900419235, + 0.021595269441604614, + 0.009902157820761204, + 0.03527400270104408, + 0.02376258186995983, + 0.012108405120670795, + -0.013315352611243725, + -0.0029751895926892757, + 0.025916919112205505, + 0.01718277484178543, + 0.028499525040388107, + -0.0451112724840641, + 0.02134868875145912, + 0.01293250359594822, + -0.010466697625815868, + 0.022789238020777702, + -0.0034651062451303005, + 0.015236085280776024, + 0.02141357772052288, + 0.005350150167942047, + -0.013042815960943699, + 0.0031276801601052284, + -0.02132273279130459, + -0.004052357282489538, + 0.020141741260886192, + -0.013678734190762043, + -0.006871812045574188, + 0.004182136617600918, + -0.009285706095397472, + -0.026228388771414757, + -0.009791845455765724, + -0.0013180705718696117, + -0.009194860234856606, + 0.0031130800489336252, + -0.017766781151294708, + 0.013808513060212135, + -0.014781857840716839, + -0.035663340240716934, + -0.03397621214389801, + 6.18986232439056e-05, + -0.018493544310331345, + 7.711980288149789e-06, + -0.010252561420202255, + -0.007605064660310745, + -0.010038426145911217, + -0.00794897973537445, + -0.013769579119980335, + 0.025397801771759987, + -0.015690311789512634, + -0.0177018903195858, + 0.011109104380011559, + 0.020998284220695496, + 0.008701699785888195, + 0.02155633457005024, + -0.009681533090770245, + 0.009129971265792847, + -0.021465489640831947, + -0.007124881260097027, + -0.01640409789979458, + 0.012244673445820808, + -0.031147021800279617, + 0.0015808736206963658, + -0.004094535484910011, + -0.008104714564979076, + -0.01142706349492073, + -0.004837521817535162, + 0.03436554968357086, + -0.014055093750357628, + -0.013756602071225643, + 0.015197151340544224, + -0.0003224203537683934, + -0.0036792419850826263, + 0.006651187315583229, + 0.001988867064937949, + 0.011388130486011505, + 0.029304157942533493, + -0.04420281574130058, + 0.032730329781770706, + 0.0062715825624763966, + 0.005797888617962599, + -0.002237070119008422, + 0.010161716490983963, + 0.016443032771348953, + -0.019389022141695023, + 0.010265539400279522, + -0.00538908364251256, + 0.0008743877406232059, + 0.02958967164158821, + -0.022036518901586533, + 0.007475285325199366, + 0.0028145876713097095, + 0.0010520231444388628, + 0.006897767540067434, + 0.005148991942405701, + 0.017675936222076416, + 0.03459915146231651, + -0.005067880265414715, + -0.016209429129958153, + -0.032652463763952255, + 0.03231503441929817, + 0.018714169040322304, + 0.0036662640050053596, + 0.00637540640309453, + -0.01792251504957676, + 0.03820701315999031, + -0.0270200427621603, + -0.011446530930697918, + -0.01006438210606575, + 0.0049218786880373955, + 0.0003485789929982275, + 0.002812965540215373, + -0.0350923128426075, + -0.01746828854084015, + -0.009603665210306644, + 0.009921624325215816, + -0.03304180130362511, + 0.005262549035251141, + -0.03236694633960724, + 0.014236784540116787, + -0.009331128560006618, + 0.032340992242097855, + 0.01566435769200325, + -0.02503442019224167, + -0.01588498242199421, + 0.001899643917568028, + 0.004646097309887409, + 0.021543357521295547, + -0.027253644540905952, + -0.012212228029966354, + -0.01463910099118948, + 0.01823398657143116, + -0.023658759891986847, + -0.03851848468184471, + 0.022347988560795784, + -0.027331512421369553, + 0.029771361500024796, + -0.004993257112801075, + 0.023697692900896072, + -0.00718977116048336, + 0.03275628387928009, + 0.0066836318001151085, + -0.01953177899122238, + -0.006073669530451298, + -0.0108884796500206, + 0.0014616389526054263, + -0.004548762924969196, + 0.0435539186000824, + 0.00016252824570983648, + -0.0027675428427755833, + 0.005489662755280733, + 0.012101915664970875, + 0.0004903222434222698, + 0.032496728003025055, + -0.02194567210972309, + -0.006119091995060444, + -0.010265539400279522, + -0.006498696282505989, + -0.01161524374037981, + 0.015949871391057968, + -0.00019274247460998595, + 0.007066480815410614, + -0.018130162730813026, + -0.0054993960075080395, + 0.02663070522248745, + -0.002040778985247016, + -0.00907156988978386, + 0.007105414289981127, + 0.0029654561076313257, + -0.03444341570138931, + 0.022724349051713943, + 0.000388323882361874, + -0.014327630400657654, + -0.008065780624747276, + -0.004662320017814636, + -0.027746805921196938, + -0.04643502086400986, + 0.028032319620251656, + -0.01694917120039463, + -0.012646988965570927, + -0.0032834152225404978, + -0.003293148707598448, + 0.003779820865020156, + 0.0032071699388325214, + 0.029018642380833626, + -0.010849546641111374, + 0.008448629640042782, + -0.0033612828701734543, + -0.010427763685584068, + -0.012322540394961834, + 0.005882245022803545, + -0.01175800058990717, + 0.029849229380488396, + -0.0012556143337860703, + 0.007514219265431166, + 0.03010878898203373, + -0.011362174525856972, + 0.036208413541316986, + 0.02398320659995079, + 0.014937592670321465, + 0.030134744942188263, + 0.005418284330517054, + 0.03353496268391609, + 0.010272028855979443, + -0.02611158788204193, + -0.02268541418015957, + -0.024619124829769135, + -0.015378842130303383, + -0.00918837171047926, + 0.014327630400657654, + 0.0008857434731908143, + -0.015378842130303383, + -0.011933202855288982, + 0.006826389115303755, + 0.014976526610553265, + -0.003961511887609959, + 0.008643298409879208, + 0.040361348539590836, + 0.032704371958971024, + 0.003070901846513152, + -0.02058299072086811, + -0.0109663475304842, + -0.019233286380767822, + 0.00047004426596686244, + -0.0035299959126859903, + 0.0010869012912735343, + -0.0035072844475507736, + -0.0010455341544002295, + 0.020518101751804352, + 0.04197061434388161, + 0.010505631566047668, + 0.01732553169131279, + 0.005470195785164833, + 0.0012750811874866486, + -0.0017065972788259387, + -0.026890262961387634, + 0.004506584722548723, + 0.01672854647040367, + 0.015158217400312424, + 0.04077664390206337, + -0.009733445011079311, + -0.024255743250250816, + 0.022075451910495758, + -0.004211336839944124, + -0.005191170610487461, + 0.007929513230919838, + 0.0011112348875030875, + 0.021660158410668373, + -0.004636364057660103, + 0.0036987089551985264, + -0.006735543720424175, + 0.008980724960565567, + 0.0268643070012331, + -0.019622623920440674, + -0.004438450559973717, + -0.009934602305293083, + -0.0037181759253144264, + -0.013062282465398312, + 0.013834469020366669, + 0.0011428686557337642, + -0.022737326100468636, + -0.016910238191485405, + -0.010739234276115894, + -0.007663465570658445, + -0.011329729110002518, + -0.016326231881976128, + 0.01361384429037571, + -0.038388706743717194, + 0.01017469447106123, + 0.009305172599852085, + -0.007442840375006199, + 0.04116598144173622, + -0.007163815200328827, + -0.02435956709086895, + -0.01688428223133087, + 0.023165598511695862, + -0.025138242170214653, + 0.02594287507236004, + 0.036883264780044556, + -0.00047653322690166533, + 0.005470195785164833, + 0.010713278315961361, + -0.013717668130993843, + -0.03205547854304314, + 0.01566435769200325, + -0.0019596668425947428, + -0.030004965141415596, + -0.007650487590581179, + 0.0017147085163742304, + 0.008604365400969982, + -0.02064787968993187, + -0.007793244440108538, + 0.024100009351968765, + 0.0004513884778134525, + -0.005801132880151272, + -0.005486418027430773, + -0.006897767540067434, + 0.02979731746017933, + -0.00802684761583805, + -0.024177875369787216, + 0.050354354083538055, + -0.030731728300452232, + 0.00809173658490181, + 0.011673644185066223, + 0.016365164890885353, + -0.028395703062415123, + -0.025916919112205505, + -0.00964908767491579, + -0.029459891840815544, + 0.008552453480660915, + -0.012517210096120834, + -0.00043962724157609046, + 0.004217825829982758, + -0.01164768822491169, + -0.027123864740133286, + 0.02217927575111389, + 0.0010349896037951112, + 0.011719067580997944, + 0.012757301330566406, + 0.01914244145154953, + -0.019077550619840622, + 0.0015240951906889677, + -0.02072574757039547, + -0.01351002138108015, + 0.0027496980037540197, + 0.0018801770638674498, + -0.05313162878155708, + -0.01002544816583395, + 0.0011623355094343424, + 0.02058299072086811, + 0.028810996562242508, + -0.032263122498989105, + -1.3966478945803829e-05, + 0.01028500683605671, + -0.04085450991988182, + -0.028655260801315308, + -0.004895922727882862, + -0.0198951605707407, + -0.0123744523152709, + 0.012614544481039047, + -0.008429163135588169, + 0.01437954232096672, + 0.0009765889262780547, + 0.006063935812562704, + -0.02346409112215042, + -0.028395703062415123, + -0.018052294850349426, + -0.01731255277991295, + 0.03651988506317139, + -0.005054902285337448, + -0.01929817534983158, + -0.014184873551130295, + 0.015015460550785065, + -0.009220816195011139, + -0.015872003510594368, + 0.017195751890540123, + -0.012140849605202675, + -0.002470672596246004, + -0.029537759721279144, + 0.017416376620531082, + -0.008870412595570087, + 0.009538775309920311, + -0.0017228196375072002, + -0.028239967301487923, + 0.016598766669631004, + 0.020453210920095444, + 0.009032636880874634, + -0.036571796983480453, + -0.0019596668425947428, + 0.003481328720226884, + -0.010953369550406933, + -0.0036532862577587366, + 0.013522999361157417, + -0.03161422908306122, + -0.003439150517806411, + -0.005966601427644491, + 0.031121065840125084, + 0.03496253117918968, + 0.007669954095035791, + 0.010907947085797787, + 0.02164718136191368, + -0.024787839502096176, + -0.018869904801249504, + 0.0005183059256523848, + -0.024268722161650658, + 0.010453719645738602, + 0.017948471009731293, + 0.0008021980756893754, + 0.022633502259850502, + -0.02844761312007904, + 0.018065273761749268, + -0.00039704341907054186, + 0.012192761525511742, + -0.01513226144015789, + -0.01929817534983158, + 0.002934633521363139, + 0.0049024117179214954, + 0.0160536952316761, + -0.006362428423017263, + 0.008876901119947433, + -0.004646097309887409, + -0.010810612700879574, + 0.004736943170428276, + -0.007760799955576658, + 0.0011801801156252623, + -0.026150520890951157, + 0.0008265316719189286, + -0.0019272220088168979, + -0.00452280743047595, + 0.004516318440437317, + -0.0023554936051368713, + 0.009973536245524883, + -0.025397801771759987, + 0.014613145031034946, + 0.19186565279960632, + -0.0035299959126859903, + -0.01206298265606165, + 0.009298684075474739, + -0.007507730275392532, + -0.005853044800460339, + 0.022296076640486717, + -0.004860233515501022, + -0.017273619771003723, + 0.0123744523152709, + -0.0177018903195858, + 0.01198511477559805, + -0.003046568250283599, + 0.0021916471887379885, + 0.010148738510906696, + -0.026578793302178383, + -0.02557949163019657, + -0.00023035818594507873, + 0.011290796101093292, + 0.020024940371513367, + 0.01680641435086727, + -0.03034239076077938, + 0.0056778425350785255, + -0.004814810585230589, + 0.03545569255948067, + 0.006813411135226488, + -0.0024625614751130342, + 0.002803232055157423, + 0.02351600117981434, + -0.001969400327652693, + -0.0017795980675145984, + 0.010356385260820389, + 0.00918837171047926, + -0.008338317275047302, + -0.007546664215624332, + 0.010278517380356789, + 0.019272219389677048, + -0.010713278315961361, + 0.034157902002334595, + 0.012815701775252819, + -0.0030676573514938354, + -0.032185256481170654, + -0.007442840375006199, + -0.006729054730385542, + -0.015223107300698757, + 0.029771361500024796, + -0.01762402430176735, + 0.001515983953140676, + -0.00907805934548378, + -0.008052803575992584, + -0.025761183351278305, + -0.011362174525856972, + 0.011907246895134449, + 0.0399460569024086, + -0.009610154666006565, + 0.0027156309224665165, + 0.014937592670321465, + -0.016910238191485405, + 0.00787111185491085, + -0.007345505990087986, + -0.02359386906027794, + 0.034080032259225845, + -0.015859026461839676, + 0.018779059872031212, + -0.01754615642130375, + -0.005093835759907961, + -0.0404132604598999, + 0.008974235504865646, + -0.009668555110692978, + 0.005561041180044413, + -0.011511420831084251, + -0.0199730284512043, + -0.015145239420235157, + 0.0201287642121315, + -0.02519015409052372, + -0.02057001367211342, + 0.017857626080513, + 0.0025955853052437305, + 0.012848147191107273, + 0.021958651021122932, + -0.019012661650776863, + 0.028810996562242508, + 0.010181182995438576, + -0.0268643070012331, + 0.008675743825733662, + -0.045059360563755035, + 0.024567214772105217, + 0.006583053153008223, + -0.0016790191875770688, + -0.007656976580619812, + -0.015339908190071583, + 0.01732553169131279, + 0.002329537644982338, + -0.011388130486011505, + 0.02277626097202301, + -0.015236085280776024, + 0.02088148333132267, + 0.0029962786938995123, + -0.011641199700534344, + 0.010103315114974976, + -0.010700300335884094, + 0.052093394100666046, + 0.03542973846197128, + -0.03130275756120682, + -0.0034975509624928236, + 0.01373064611107111, + -0.014184873551130295, + 0.027357468381524086, + 0.01297143753618002, + 0.001782842562533915, + 0.009824289940297604, + -0.0344693697988987, + 0.019765380769968033, + 0.006742032710462809, + -0.005681087262928486, + 0.017818693071603775, + 0.001726064132526517, + -0.014535277150571346, + 0.005843311082571745, + -0.02125784382224083, + -0.02374960482120514, + 0.016741525381803513, + 0.003416439052671194, + 0.0007620475953444839, + 0.026150520890951157, + -0.013328329659998417, + -0.0443325936794281, + -0.0043119159527122974, + -0.018960749730467796, + -0.0027480758726596832, + 0.02534588985145092, + -0.015067372471094131, + -0.005369617138057947, + 0.010044914670288563, + -0.007624531630426645, + 0.01829887554049492, + 0.003481328720226884, + -0.033405181020498276, + 0.0022013806737959385, + 0.004344360902905464, + 0.016092628240585327, + -0.023438135161995888, + -0.005006235092878342, + -0.008182582445442677, + 0.014885680750012398, + -0.005544818937778473, + -0.0030108788050711155, + -0.007313061505556107, + -0.013639800250530243, + -0.023775560781359673, + -0.0027902540750801563, + 0.0005183059256523848, + -0.010109804570674896, + -0.017260640859603882, + 0.024009162560105324, + -0.003903111210092902, + -0.0029508559964597225, + -0.022205231711268425, + 0.011206438764929771, + -0.0013959382195025682, + -0.0035267514176666737, + 0.004895922727882862, + -0.0012531810207292438, + -0.02307475171983242, + -0.01680641435086727, + 0.013224506750702858, + -0.16300274431705475, + 0.0070015909150242805, + 0.030134744942188263, + -0.03568929806351662, + 0.016611745581030846, + 0.0006922912434674799, + 0.003997201099991798, + -0.005797888617962599, + -0.012984414584934711, + 0.005181436892598867, + 0.04114002734422684, + 0.014029137790203094, + -0.020686814561486244, + -0.014457409270107746, + -0.010791145265102386, + -0.0009563109488226473, + -0.01150493137538433, + 0.0197394248098135, + 0.031432535499334335, + 0.025138242170214653, + 0.011634711176156998, + -0.022192252799868584, + 0.014755901880562305, + -0.003903111210092902, + 0.016300275921821594, + 0.0024057829286903143, + -0.011485464870929718, + 0.01633920893073082, + 0.00459418585523963, + -0.027097908779978752, + -0.013445131480693817, + 0.001155846519395709, + 0.012685922905802727, + 0.0034034610725939274, + 0.012050004675984383, + -0.012796235270798206, + 0.02315261960029602, + 0.005895223002880812, + -0.011173994280397892, + 0.029174378141760826, + 0.02352898009121418, + -0.006235893350094557, + -0.02836974710226059, + 0.009889179840683937, + -0.04583803564310074, + -0.009058592841029167, + 0.016092628240585327, + 0.00896125752478838, + -0.008299383334815502, + -0.011271328665316105, + 0.004402761347591877, + -0.010408296249806881, + -0.009279217571020126, + 0.011848846450448036, + -0.002555029233917594, + 0.013192062266170979, + -0.001956422347575426, + 0.017494244500994682, + 0.004915389697998762, + 0.0003514178970362991, + 0.0005969845806248486, + -0.015106305480003357, + -0.0018120429012924433, + 0.012316051870584488, + 0.0005531840724870563, + -0.019272219389677048, + -0.0002530695637688041, + 0.012212228029966354, + -0.01649494469165802, + 0.003984223119914532, + -0.033171579241752625, + -0.014094027690589428, + 0.024995485320687294, + 0.0012434475356712937, + -0.009895668365061283, + 0.006845856085419655, + -5.632217289530672e-05, + 0.003345060395076871, + 0.007079458795487881, + 0.0026556081138551235, + -0.013977226801216602, + 0.052456777542829514, + -0.018662257120013237, + -0.007014568895101547, + -0.0020148230250924826, + 0.009960558265447617, + -0.0027480758726596832, + -0.0049445899203419685, + 0.0040750689804553986, + 0.007618042640388012, + 0.008078758604824543, + -0.034988489001989365, + -0.021815894171595573, + -0.009597176685929298, + 0.0053793503902852535, + -0.004282715730369091, + 0.01958369091153145, + -0.003387238597497344, + -0.006936701480299234, + -0.02088148333132267, + 0.014029137790203094, + -0.021296776831150055, + -0.021141041070222855, + -0.002188402693718672, + 0.010129271075129509, + 0.009091037325561047, + -0.007124881260097027, + 0.009564731270074844, + 0.03600076586008072, + -0.012231695465743542, + -0.03433959186077118, + -0.010395319201052189, + 0.02557949163019657, + -0.006326738744974136, + -0.007773777935653925, + 0.004159425385296345, + 0.020076852291822433, + -0.028992686420679092, + -0.0004221881681587547, + 0.004772632382810116, + 0.04223017022013664, + -0.007579108700156212, + -0.016468988731503487, + 0.02088148333132267, + -0.001516795135103166, + -0.03374260663986206, + -0.07319550216197968, + 0.013834469020366669, + 0.013899358920753002, + 0.02966753952205181, + 0.030991287901997566, + -0.0060898917727172375, + -0.005113302730023861, + 0.018740125000476837, + 0.002409027423709631, + 0.020933395251631737, + -0.052612513303756714, + -0.020453210920095444, + -0.004185381345450878, + -0.022412877529859543, + 0.008215026929974556, + -0.00998651422560215, + -0.0008492430206388235, + -0.03888186812400818, + -0.01153737585991621, + 0.03535187244415283, + 0.02578713931143284, + -0.013159616850316525, + -0.013821491040289402, + -0.01074572280049324, + -0.0003242453676648438, + 0.010382341220974922, + -0.038855910301208496, + 0.013548954389989376, + 0.017507221549749374, + 0.0036889754701405764, + 0.015872003510594368, + -0.01807825081050396, + 0.007267638575285673, + -0.03667562082409859, + 0.012387430295348167, + 0.0008751988643780351, + 0.006125580985099077, + -0.02647496946156025, + 0.02110210806131363, + -0.02390534058213234, + -0.019557734951376915, + -0.0029930341988801956, + 0.03805127739906311, + -0.03836274892091751, + 0.004211336839944124, + -0.00877956673502922, + -0.025813095271587372, + 0.0030855019576847553, + 0.002048890106379986, + -0.027123864740133286, + -0.036208413541316986, + -0.019843248650431633, + 0.016520900651812553, + 0.019350087270140648, + 0.016598766669631004, + 0.01898670569062233, + -0.0010966347763314843, + -0.020816592499613762, + -0.022257143631577492, + -0.00903912540525198, + -0.01373064611107111, + 0.013743624091148376, + -0.02966753952205181, + 0.03327540308237076, + 0.0020002229139208794, + -0.014042115770280361, + -0.03057599440217018, + -0.010259050875902176, + -0.004337871912866831, + -0.018272919580340385, + -0.023801516741514206, + 0.005703798495233059, + -0.0001295764814130962, + 0.00027882264112122357, + -0.032185256481170654, + -0.005210637114942074, + -0.027954453602433205, + -0.009603665210306644, + -0.0012483142782002687, + -0.022062474861741066, + -0.02625434473156929, + -0.02722768858075142, + 0.01854545623064041, + -0.010272028855979443, + 0.03010878898203373, + 0.004710987210273743, + 0.006897767540067434, + -0.007215727120637894, + 0.0008751988643780351, + -0.022335011512041092, + 0.006398117635399103, + -0.009681533090770245, + 0.027357468381524086, + -0.007721866015344858, + 0.002224092138931155, + 0.0009035880793817341, + 0.0019255997613072395, + -0.0056940652430057526, + 0.006203448865562677, + -0.0005239837919361889, + -0.028421657159924507, + -0.02125784382224083, + -0.05092538148164749, + 0.006761499680578709, + 0.01875310391187668, + -0.013068771921098232, + -0.006255360320210457, + 0.003299637697637081, + 0.02785062976181507, + 0.014652078971266747, + 0.006339716725051403, + -0.002947611501440406, + 0.0029881675727665424, + 0.012549654580652714, + 0.0008662765612825751, + -0.017442332580685616, + -0.00450009573251009, + -0.013107704930007458, + -0.00047612766502425075, + 0.013367263600230217, + 0.024541258811950684, + 0.008675743825733662, + -0.02269839309155941, + 0.013068771921098232, + -0.005629175342619419, + 0.021011263132095337, + -0.021686114370822906, + 0.013016860000789165, + -0.012698900885879993, + -0.011563331820070744, + -0.017364464700222015, + -0.004824543837457895, + -0.016001783311367035, + 0.0020229341462254524, + -0.008604365400969982, + 0.008500541560351849, + -0.010726256296038628, + -0.005548063199967146, + 0.013445131480693817, + 0.039972010999917984, + 0.009272728115320206, + 0.05554552376270294, + -0.021374644711613655, + -0.02792849764227867, + 0.010220116935670376, + -0.03753216192126274, + -0.0014081050176173449, + -0.012348496355116367, + 0.016546856611967087, + 0.011433552950620651, + 0.012419875711202621, + -0.02852548100054264, + 0.042256128042936325, + -0.002339271130040288, + 0.0006042846944183111, + -0.010031936690211296, + 0.026358168572187424, + -0.022867105901241302, + 0.01074572280049324, + 0.007734843995422125, + -0.0072741275653243065, + -0.03353496268391609, + 0.030887464061379433, + 0.0069756354205310345, + 0.00975940003991127, + 0.0008042258559726179, + 0.038025323301553726, + -0.01823398657143116, + -0.029615627601742744, + -0.0016392742982134223, + 0.00915592722594738, + -0.025903940200805664, + -0.02307475171983242, + -0.006025002337992191, + -0.0003641930525191128, + 0.037194736301898956, + -0.010920925065875053, + -0.004156180657446384, + 0.03623437136411667, + 0.002065112581476569, + 0.011887780390679836, + 0.03420981392264366, + 0.012926014140248299, + 0.02639710158109665, + -0.011959158815443516, + 0.003971245605498552, + 0.026371145620942116, + 0.010265539400279522, + -0.018182074651122093, + 0.0009911891538649797, + -0.020595967769622803, + 0.007812711410224438, + 0.019233286380767822, + 0.004422228317707777, + 0.0012410142226144671, + -0.008481075055897236, + 0.026578793302178383, + 0.004564985632896423, + 0.011822890490293503, + -0.01870119199156761, + 0.0123744523152709, + 0.03626032546162605, + -0.007631020620465279, + 0.0015030060894787312, + 0.0031552582513540983, + -0.023477068170905113, + -0.014055093750357628, + -0.005603219382464886, + -0.00937655195593834, + -0.05191170424222946, + -0.018519500270485878, + 0.006871812045574188, + -0.012984414584934711, + 0.024307655170559883, + 0.004844010807573795, + -0.0025225842837244272, + -0.021063173189759254, + 0.047473251819610596, + -0.022970929741859436, + -0.012536676600575447, + -0.025761183351278305, + -0.008552453480660915, + 0.018856925889849663, + 0.010362873785197735, + -0.006307272240519524, + -0.005301482975482941, + 0.013990203849971294, + 0.01070678886026144, + 0.005366372410207987, + -0.001179369050078094, + 0.01822100766003132, + -0.011219416745007038, + 0.02979731746017933, + -0.0036013745702803135, + -0.028473569080233574, + -0.013769579119980335, + -0.005625931080430746, + -0.006735543720424175, + 0.00877956673502922, + 0.013230995275080204, + 0.03239290416240692, + 0.10486163944005966, + 0.0307057723402977, + 0.00455849664285779, + -0.010077359154820442, + -0.003387238597497344, + 0.030082833021879196, + 0.012627522461116314, + 0.017675936222076416, + -0.012251161970198154, + -0.059802282601594925, + -0.01066785492002964, + -0.024411479011178017, + 0.007773777935653925, + -0.02805827558040619, + -0.02300986275076866, + 0.012400408275425434, + -0.007085947785526514, + 0.009123481810092926, + 0.004516318440437317, + 0.028032319620251656, + 0.03003092110157013, + -0.0026912973262369633, + 0.030446214601397514, + 0.02338622324168682, + -0.034080032259225845, + -0.003753865137696266, + 0.012439342215657234, + -0.021141041070222855, + 0.004143202677369118, + 0.013782557100057602, + -0.015482665970921516, + 0.007682932075113058, + -0.07361079752445221, + -0.008688721805810928, + 0.029537759721279144, + -0.0038219993002712727, + -0.008474585600197315, + -0.041347671300172806, + 0.020544057711958885, + 0.0029735672287642956, + 0.014678034000098705, + 0.02049214579164982, + -0.0358709879219532, + -0.019025638699531555, + -0.023554936051368713, + -0.0077478219754993916, + -0.004308671224862337, + -0.021205931901931763, + -0.044514287263154984 + ], + "metadata": { + "source": "Kreye_Marieke_BA_241_V2.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 17, + "has_images": true, + "image_count": 98, + "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", + "links": [], + "last_modified": "2025-05-05T23:00:23", + "_known_field_names": "frozenset({'is_continuation', 'sent_to', 'header_footer_type', 'email_message_id', 'filename', 'languages', 'detection_class_prob', 'sent_from', 'link_texts', 'cc_recipient', 'subject', 'image_mime_type', 'image_path', 'filetype', 'page_number', 'last_modified', 'signature', 'detection_origin', 'text_as_html', 'attached_to_filename', 'bcc_recipient', 'data_source', 'link_start_indexes', 'category_depth', 'emphasized_text_tags', 'parent_id', 'orig_elements', 'page_name', 'coordinates', 'url', 'link_urls', 'file_directory', 'links', 'table_as_cells', 'emphasized_text_contents', 'key_value_pairs', 'image_base64'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "Kreye_Marieke_BA_241_V2.pdf", + "detection_class_prob": 0.3422867953777313, + "parent_id": "e02392183bc6851689602ad4b9f6039f", + "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", + "id": "ce00eae5-7e07-454f-9e4f-f79ac36f92f4", + "processing_timestamp": "2025-05-05T23:15:46.977945", + "chunk_number": 16, + "total_chunks": 56, + "chunking_strategy": "hybrid", + "word_count": 313 + } +} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000017.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000017.json new file mode 100644 index 0000000000000000000000000000000000000000..72df41544b6191d7fd0e7664a5397c20a7b40573 --- /dev/null +++ b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000017.json @@ -0,0 +1,1570 @@ +{ + "id": "61a115b2-0ff7-441a-f6d9-eb3d00000017", + "content": "14\nMethodik und Toolerl\u00e4uterung\n\n## 3 Methodik und Toolerl\u00e4uterung\n\nDieses Kapitel dient einer \u00dcbersicht \u00fcber die angewandte Methodik. Zun\u00e4chst wird auf die einzelnen Schritte und anschlie\u00dfend auf die ben\u00f6tigten Tools eingegangen. ## 3.1 Methodik\n\nF\u00fcr die Aufstellung m\u00f6glicher Baumpflanzungsszenarien zur Beantwortung der Forschungsfragen wurden Geoinformationsdaten ben\u00f6tigt. Die Daten waren von den Gemeinden bereitgestellt worden oder wurden bei dem Landesamt f\u00fcr Geoinformation und Landentwicklung erworben. Die Aufbereitung der Daten und die Vorbereitung dieser f\u00fcr die Simulation erfolgten mittels der Geoinformationssoftware ArcGIS Pro. Der f\u00fcr die Simulation verfolgte Ansatz zur Identifikation der Potentialfl\u00e4chen zur Pflanzung neuer B\u00e4ume sah diese ausschlie\u00dflich im Parkraum vor, da die Fahrbahnbreite als versiegelte Fl\u00e4che auch bei einer ver\u00e4nderten Verkehrsmittelwahl bestehen bleibt. Als weitere Grundlage wurden die von der Firma Drees & Sommer, Praxispartner des Forschungsprojekts CGSC, definierten Quartiersarchetypen herangezogen. Jedem Quartiersarchetyp sind Stra\u00dfenquerschnitte nach der Richtlinie f\u00fcr die Anordnung von Stadtstra\u00dfen 06 (RASt 06) zugeordnet. \u00dcber den Stra\u00dfenquerschnitt wurde die Parkplatzfl\u00e4che im Stra\u00dfenraum bestimmt, welche die maximale Potentialfl\u00e4che des Quartiers f\u00fcr Pflanzungen darstellt. Als letzter Input- Parameter f\u00fcr die Berechnung der Potentialfl\u00e4che wurde eine Reduktion des MIV angenommen. Je nach definiertem Mobilit\u00e4tsszenario reduziert sich der MIV-Anteil um einen bestimmten Prozentwert. \u00dcber diese Reduktion wurde die Potentialfl\u00e4che je Szenario bestimmt und anschlie\u00dfend \u00fcber den minimal ben\u00f6tigten Fl\u00e4chenbedarf eines Baumes die szenariospezifische Anzahl der neuen B\u00e4ume errechnet. Eine detailliertere Erl\u00e4uterung der Annahmen und des Vorgehens zur Bestimmung der Potentialfl\u00e4che erfolgt in Kapitel 4 und in Kapitel 5.3. Mit Hilfe eines Python-Skripts werden die B\u00e4ume in einem vorher definierten Abstand in dem gew\u00e4hlten Gebietsausschnitt automatisch gepflanzt. Nach Durchlaufen des Skripts wird eine neue Datei generiert, welche zur weiteren Verwendung mit einer CityGML des gew\u00e4hlten Gebietsausschnitts verbunden wird. Die Simulation der Geb\u00e4udeenergiebedarfe unter Ber\u00fccksichtigung der Verschattung sowie der Evapotranspiration der B\u00e4ume erfolgt mit dem Tool SimStadt. Zur Beantwortung der Forschungsfrage werden abschlie\u00dfend die verschiedenen Szenarien hinsichtlich einer Ver\u00e4nderung des Geb\u00e4udeenergiebedarfs und der Evapotranspiration verglichen. F\u00fcr den Energiebedarf wurde festgelegt, dass die Heizperiode typischerweise von Oktober bis April andauert. Entsprechend geht die K\u00fchlperiode von Mai bis September. Die Darstellung und Auswertung der Ergebnisse basieren auf dieser Annahme. 15\nMethodik und Toolerl\u00e4uterung\nUm den Heiz- und K\u00fchlbedarf zu bewerten, werden die CO2e-Emissionen f\u00fcr die einzelnen Szenarien ermittelt. Hierf\u00fcr wurde angenommen, dass alle Wohngeb\u00e4ude mit Gas beheizt werden und ein Emissionsfaktor von 0,202 kg CO2e/kWh (vgl. Bundesamt f\u00fcr Wirtschaft und Ausfuhrkontrolle 2021, S. 6) angesetzt. \ud835\udc3b\ud835\udc52\ud835\udc56\ud835\udc67\ud835\udc4f\ud835\udc52\ud835\udc51\ud835\udc4e\ud835\udc5f\ud835\udc53 [\ud835\udc58\ud835\udc4a\u210e] \u2217 0,202 \ud835\udc58\ud835\udc54 \ud835\udc58\ud835\udc4a\u210e = [\ud835\udc58\ud835\udc54] \ud835\udc36\ud835\udc422\ud835\udc52\nF\u00fcr den K\u00fchlbedarf wurde \u00fcber eine Leistungszahl (COP, Coefficient of Performance) von 4 die erforderliche Strommenge ermittelt (vgl. Wolf K\u00e4ltetechnik GmbH 2024).", + "embedding": [ + 0.01955992914736271, + -0.004463760647922754, + 0.00997820682823658, + -0.04128730669617653, + -0.012932020239531994, + 0.015436484478414059, + -0.02156878635287285, + -0.013401194475591183, + -0.02287718653678894, + -0.02204456739127636, + 0.0007557995850220323, + 0.015410051681101322, + 0.002603585133329034, + 0.014128083363175392, + -0.002094762632623315, + 0.0032561332918703556, + 0.03528716787695885, + -0.0052137780003249645, + 0.03108442761003971, + 0.029049137607216835, + -0.004077187739312649, + 0.02212386578321457, + 0.017286747694015503, + 0.0014075218932703137, + 0.0033651667181402445, + 0.022930052131414413, + 0.019348470494151115, + -0.03245890885591507, + -0.008537644520401955, + 0.002169103594496846, + 0.004827205091714859, + -0.02693454921245575, + -0.019137011840939522, + 0.0010762916645035148, + -0.025890473276376724, + -0.01175578124821186, + 0.020405763760209084, + -0.007526607718318701, + 0.021489489823579788, + -0.0055772229097783566, + 0.0035650613717734814, + 0.0020418979693204165, + -0.013044357299804688, + -0.027516061440110207, + 0.01005750335752964, + 0.005352547857910395, + -0.0019130402943119407, + -0.009390086866915226, + -0.028229733929038048, + 0.0277275200933218, + 0.02796541154384613, + 0.038511913269758224, + -0.016850614920258522, + 0.007480350788682699, + -0.019229523837566376, + 0.004592618439346552, + -0.008940737694501877, + 0.0030116343405097723, + 0.008081686682999134, + -0.011973847635090351, + -0.03415057808160782, + -0.0018651316640898585, + -0.013625869527459145, + 0.011042107827961445, + -0.02492569200694561, + -0.008927521295845509, + -0.011253566481173038, + 0.007724849972873926, + -0.0015925482148304582, + 0.004083795938640833, + 0.016044428572058678, + 0.04065293073654175, + 0.038987696170806885, + -0.017062073573470116, + 0.028256166726350784, + -0.002603585133329034, + 0.012608224526047707, + -0.017128152772784233, + 0.011048716492950916, + 0.011623620055615902, + 0.018714094534516335, + -0.013850543648004532, + -0.01322938408702612, + 0.04887338727712631, + 0.009991423226892948, + 0.008405482396483421, + -0.019467415288090706, + 0.03967493772506714, + 0.005623479373753071, + 0.011015675961971283, + 0.023247240111231804, + 0.0217670276761055, + 0.00773145817220211, + 0.00911254808306694, + -0.0017940948018804193, + -0.009436343796551228, + 0.012561967596411705, + 0.01578010432422161, + 0.012509102933108807, + -0.015608293935656548, + -0.02709314413368702, + -0.0007351493113674223, + -0.023524777963757515, + -0.005620175506919622, + -0.0431375727057457, + -0.015608293935656548, + 0.0009317398071289062, + 0.012806466780602932, + 0.01250249519944191, + -0.013414409942924976, + -0.007837187498807907, + 0.03655591979622841, + -0.018317608162760735, + -0.012026713229715824, + 0.027674656361341476, + -0.037851106375455856, + 0.032353177666664124, + -0.010341651737689972, + -0.013354937545955181, + 0.0036179260350763798, + 0.037058133631944656, + -0.005187345668673515, + 0.023048996925354004, + -0.007857011631131172, + 0.020339682698249817, + -0.011583970859646797, + 0.012099402025341988, + -0.017934339120984077, + -0.04165736213326454, + -0.03837975114583969, + -0.014881405048072338, + -0.0014884709380567074, + -0.002180667594075203, + 0.017207451164722443, + -0.016929911449551582, + 0.0164012648165226, + -0.01422059629112482, + 0.014445271342992783, + -0.034177009016275406, + -0.04919057711958885, + -0.008412091061472893, + 0.010632406920194626, + -0.015370403416454792, + -0.023286888375878334, + -0.008385658264160156, + 0.01952028088271618, + -0.0003508479567244649, + 0.027991844341158867, + 0.008286537602543831, + -0.035630788654088974, + -0.010288787074387074, + 0.0017181017901748419, + 0.017696449533104897, + 0.004404287785291672, + -0.0014488224405795336, + -0.011134621687233448, + -0.005084920674562454, + -0.0013794375117868185, + -0.016493776813149452, + -0.015079647302627563, + 0.02146305702626705, + -0.006010052282363176, + -0.01538361981511116, + 0.006700597237795591, + 0.016123725101351738, + 0.007526607718318701, + 0.017299963161349297, + -0.0017511422047391534, + 0.0017726185033097863, + -0.011868118308484554, + -0.010407731868326664, + 0.012654480524361134, + -0.016586290672421455, + 0.025612933561205864, + 0.002628365298733115, + 0.005673040170222521, + 0.0008978734258562326, + 0.007216027472168207, + 0.0004939542850479484, + -0.04570150747895241, + -0.03150734305381775, + 0.015251457691192627, + -0.0018139190506190062, + 0.013255815953016281, + -0.029128434136509895, + -0.010487029328942299, + 0.011960632167756557, + 0.005022143945097923, + -0.0007768628420308232, + 0.014749242924153805, + 0.01538361981511116, + 0.005233602598309517, + 0.021555569022893906, + 0.004932934883981943, + -0.6212655901908875, + 0.009753531776368618, + -0.009872477501630783, + -0.010890122503042221, + 0.006598171778023243, + 0.016943126916885376, + 0.0198771171271801, + 0.0026101930998265743, + -0.014564217068254948, + 0.03261750191450119, + 0.010771176777780056, + -0.01755107007920742, + 0.0032082246616482735, + -0.0014909489545971155, + -0.02327367104589939, + -0.028414761647582054, + -0.0057523371651768684, + -0.02373623661696911, + 0.016150157898664474, + 0.014167731627821922, + -0.024780314415693283, + 0.00790987629443407, + -0.00640984158962965, + 0.01307739783078432, + 0.0018469594651833177, + 0.013196343556046486, + 0.015225025825202465, + -0.014643513597548008, + 0.011808645911514759, + -0.004305166658014059, + -0.003312302054837346, + 0.0302121601998806, + -0.005626783240586519, + 0.0072358520701527596, + 0.040441472083330154, + -0.0026168012991547585, + -0.018793391063809395, + 0.010090543888509274, + 0.003842600854113698, + 0.009733707644045353, + -0.0371638648211956, + -0.01185490284115076, + 0.000994516653008759, + 0.014299893751740456, + 0.0009441300062462687, + 0.008028822019696236, + 0.02536182664334774, + -0.022626079618930817, + -0.016982775181531906, + -0.015687590464949608, + 0.00653869891539216, + -0.0001743914617691189, + -0.0017395780887454748, + -0.0033651667181402445, + 0.019943198189139366, + 0.008524428121745586, + 0.009694059379398823, + -0.026049066334962845, + 0.00526664312928915, + -0.0005761423381045461, + -0.0034989805426448584, + -0.007652161177247763, + -0.007638945244252682, + -0.01770966500043869, + -0.03348977118730545, + 0.04855620115995407, + -0.026960982009768486, + -0.027701087296009064, + 0.012423197738826275, + -0.03911985829472542, + -0.015727240592241287, + 0.012978277169167995, + -0.008967169560492039, + -0.028652651235461235, + 0.01830439269542694, + 0.0006959138554520905, + 0.02579795941710472, + -0.010645623318850994, + 0.003641054267063737, + -0.010110368020832539, + -5.7872359320754185e-05, + -0.00423908606171608, + -0.012647872790694237, + -0.0082006324082613, + 0.022956483066082, + -0.03452062979340553, + -0.020418979227542877, + -0.003799648256972432, + 0.0077578905038535595, + 0.026181228458881378, + 0.04400983825325966, + 0.021753812208771706, + -0.016493776813149452, + -0.012885763309895992, + -0.004589314106851816, + 0.02355121076107025, + 0.0003423813614062965, + 0.016665587201714516, + -0.00014940464461687952, + -0.04887338727712631, + -0.019388118758797646, + 0.004483584780246019, + 0.03211528807878494, + -0.006383409257978201, + 0.01644091308116913, + 0.0029521614778786898, + -0.018489418551325798, + 0.00790987629443407, + 0.02844119258224964, + -0.005002319347113371, + -0.0009028294589370489, + -0.00455627404153347, + -0.017260314896702766, + -0.00432829512283206, + -0.0031454479321837425, + -0.026881685480475426, + 0.03692597150802612, + -0.009297573938965797, + 0.0010680315317586064, + 0.005957187619060278, + 0.008762319572269917, + -0.003465940011665225, + 0.01198706403374672, + -0.013335113413631916, + 0.004067275673151016, + 0.014088435098528862, + 0.0021311070304363966, + -0.01691669411957264, + -0.01506643183529377, + -0.0012720561353489757, + -0.008669805712997913, + 0.005352547857910395, + 0.027225306257605553, + -0.013837328180670738, + 0.02401377633213997, + 0.01019627321511507, + 0.016731668263673782, + -0.018172230571508408, + 0.004123444203287363, + -0.026908118277788162, + -0.027383899316191673, + -0.016176588833332062, + 0.022930052131414413, + -0.03703170269727707, + -0.019229523837566376, + -0.015304322354495525, + 0.0024020385462790728, + 0.009786572307348251, + 0.0081015108153224, + 0.012132442556321621, + -0.01047381293028593, + -0.006019964348524809, + 0.010810825042426586, + 0.010216097347438335, + 0.007936309091746807, + 0.0027919155545532703, + -0.011319647543132305, + -0.017379261553287506, + -0.009105939418077469, + -0.021278031170368195, + 0.009773355908691883, + 0.013652301393449306, + -0.03779824078083038, + -0.005646607838571072, + -0.008412091061472893, + -0.010341651737689972, + 0.01198706403374672, + 0.02090797759592533, + -0.01459064893424511, + -0.038432616740465164, + -0.002803479554131627, + -0.018159015104174614, + -0.008669805712997913, + 0.011319647543132305, + -0.02828259952366352, + -0.011319647543132305, + -0.01810614950954914, + -0.0006240509101189673, + -0.018687661737203598, + -0.011279999278485775, + 0.016903478652238846, + -0.00023582599533256143, + -0.007083865813910961, + -0.0034196835476905107, + 0.034097712486982346, + 0.024780314415693283, + 0.01703564077615738, + 0.025414690375328064, + -0.0061488221399486065, + 0.010097152553498745, + 0.012561967596411705, + 0.043243300169706345, + -0.0006641124491579831, + 0.02059078961610794, + -0.005580526776611805, + 0.0044274162501096725, + 0.011425376869738102, + 0.012053145095705986, + -0.0217670276761055, + 0.03227388113737106, + 0.039622072130441666, + 0.017009207978844643, + 0.037216730415821075, + -0.00877553503960371, + 0.011009068228304386, + -0.02275824174284935, + 0.010870298370718956, + -0.002777047222480178, + 0.032908257097005844, + 0.008326185867190361, + 0.03771894425153732, + -0.0007144990959204733, + -0.0429261140525341, + -0.008716062642633915, + -0.004777644760906696, + 0.013639084994792938, + -0.018211878836154938, + -0.00339655508287251, + -0.0038888573180884123, + 0.011042107827961445, + 0.021952055394649506, + -0.0017825306858867407, + 0.02369658835232258, + -0.011233742348849773, + 0.00044934969628229737, + 0.014973917976021767, + 0.001922952476888895, + 0.02441026270389557, + 0.02756892703473568, + -0.014709594659507275, + -0.02409307472407818, + 0.008934129029512405, + -0.010209489613771439, + 0.014722811058163643, + 0.02649841643869877, + 0.015317538753151894, + 0.03134874999523163, + -0.011630227789282799, + 0.035710085183382034, + 0.009244709275662899, + 0.02035289816558361, + 0.022388188168406487, + 0.01683739759027958, + -0.016625938937067986, + 0.03333117440342903, + -0.006617995910346508, + 0.022863971069455147, + 0.023300103843212128, + -0.006611388176679611, + 0.0025259400717914104, + 3.826751708402298e-06, + -0.000970562337897718, + 0.005861370358616114, + 0.0016016343142837286, + 0.011273391544818878, + -0.017247099429368973, + 0.00925131794065237, + 0.004473672714084387, + 0.025242879986763, + 0.027542494237422943, + 0.017181018367409706, + 0.019705306738615036, + -0.010216097347438335, + -0.00564991170540452, + -0.006145518273115158, + -0.020617222413420677, + -0.029868539422750473, + -0.019137011840939522, + -0.013302072882652283, + -0.00030789541779085994, + 0.02484639547765255, + -0.0029653776437044144, + -0.02228245884180069, + 0.0022550085559487343, + -0.008412091061472893, + -0.003356906585395336, + 0.009654410183429718, + -0.007652161177247763, + 0.00400119461119175, + -2.6871153750107624e-05, + -0.012172090820968151, + -0.010328435339033604, + -0.010678663849830627, + 0.01723388209939003, + -0.009039859287440777, + -0.003730263328179717, + -0.0019774690736085176, + 0.017762528732419014, + -0.022335324436426163, + -0.005065096542239189, + -0.013513531535863876, + 0.0023293495178222656, + -0.013090614229440689, + -0.01794755645096302, + 0.0014851668383926153, + -0.0092909662052989, + 0.020128224045038223, + -0.013500315137207508, + 0.0022137081250548363, + 0.026445552706718445, + -0.003961546346545219, + 0.004926326684653759, + -0.012799859046936035, + -0.03494354709982872, + 0.0477103665471077, + 0.008081686682999134, + -0.010097152553498745, + 0.0009317398071289062, + 0.0012984884670004249, + -0.023300103843212128, + -0.007817363366484642, + -0.001324920798651874, + -0.011709524318575859, + 0.018238311633467674, + -0.019652441143989563, + 0.003928505815565586, + 0.0015570297837257385, + 0.0008788751438260078, + 0.03943704441189766, + 0.005240210331976414, + -0.01952028088271618, + -0.022784672677516937, + -0.004995711613446474, + 0.02500499039888382, + 0.011306432075798512, + 0.03573651611804962, + 0.019216308370232582, + 0.020683303475379944, + -0.004959367215633392, + -0.0015801580157130957, + -0.014075218699872494, + -0.043084707111120224, + 0.01936168596148491, + -0.00256393663585186, + -0.009773355908691883, + 0.009568505920469761, + 0.01856871508061886, + -0.012489278800785542, + 0.007486958988010883, + -0.0017511422047391534, + 0.00313553586602211, + 0.00045100171701051295, + -0.005124568939208984, + -0.005392196588218212, + -0.0151060800999403, + -0.014313110150396824, + -0.015449699945747852, + 0.048767659813165665, + 0.02480674721300602, + -0.004516625311225653, + 0.03158663958311081, + 0.03420344367623329, + 0.00661469204351306, + -0.01731318049132824, + -0.012436414137482643, + 0.01652020961046219, + 0.008035429753363132, + 0.03264393284916878, + -0.028731949627399445, + 0.011835078708827496, + 0.010480420663952827, + -0.009608154185116291, + 0.022256026044487953, + -0.007790931034833193, + 0.01727353222668171, + 0.022467484697699547, + 0.012152266688644886, + -0.011365904472768307, + 0.019295604899525642, + -0.012852723710238934, + 0.0016916694585233927, + 0.011174269951879978, + 0.010771176777780056, + -0.011061932891607285, + 0.002048505935817957, + -0.0013876976445317268, + -0.03695240616798401, + 0.0053128995932638645, + 0.012178698554635048, + -0.002516028005629778, + 0.011901158839464188, + -0.01326903235167265, + -0.0007661247509531677, + -0.010791000910103321, + -0.04337546229362488, + -0.025467555969953537, + 0.024304533377289772, + -0.005276555195450783, + -0.012608224526047707, + 0.00123488565441221, + -0.017128152772784233, + -0.005144393537193537, + -0.016031211242079735, + -0.02172737941145897, + 0.01826474443078041, + -0.01755107007920742, + -0.027146009728312492, + -0.00689223175868392, + 0.02540147490799427, + 0.004919718485325575, + 0.011015675961971283, + 0.005114656873047352, + -0.0014166079927235842, + -0.00745391845703125, + -0.01794755645096302, + -0.02011500671505928, + 0.00011285368236713111, + -0.016216237097978592, + -0.01880660653114319, + 0.020921193063259125, + -0.03520787134766579, + -0.018674444407224655, + 0.010275570675730705, + 0.02788611501455307, + -0.023260455578565598, + 0.003779824124649167, + 0.016031211242079735, + -0.0010226010344922543, + 0.003406467381864786, + 0.005947275552898645, + -0.012713953852653503, + 0.0016231106128543615, + 0.028256166726350784, + -0.04448562115430832, + 0.030106430873274803, + -0.015013566240668297, + 0.005613567307591438, + -0.01184829417616129, + 0.0019840772729367018, + 0.0012051493395119905, + -0.02812400460243225, + -0.01340780220925808, + 0.0007186291040852666, + 0.0030347625724971294, + 0.02859978750348091, + -0.01782860979437828, + 0.01999606192111969, + -0.012218346819281578, + 0.014273460954427719, + 0.008894480764865875, + -0.003029806539416313, + 0.00012111378600820899, + 0.03853834420442581, + -0.0011878031073138118, + 0.0217670276761055, + -0.0310051292181015, + 0.04321686923503876, + 0.013876976445317268, + -0.004460456781089306, + 0.032353177666664124, + -0.0171942338347435, + 0.022071000188589096, + -0.027833249419927597, + 0.006707204971462488, + -0.010890122503042221, + 0.009370262734591961, + 0.01870087720453739, + -0.010797609575092793, + -0.036978837102651596, + -0.023419048637151718, + -0.0038062564563006163, + 0.02480674721300602, + -0.006508962716907263, + 0.012152266688644886, + -0.020960841327905655, + 0.007156555075198412, + 0.001478558755479753, + 0.012786642648279667, + 0.009469384327530861, + -0.021899189800024033, + -0.02504463866353035, + 0.019626010209321976, + 0.002715922426432371, + 0.0007372143445536494, + -0.009687450714409351, + -0.00948260072618723, + -0.008887873031198978, + -0.01088351383805275, + -0.01955992914736271, + -0.020683303475379944, + 0.02556006796658039, + -0.005484709516167641, + 0.019097361713647842, + 0.009211668744683266, + 0.028150437399744987, + 0.00653869891539216, + 0.013612653128802776, + 0.009092723950743675, + -0.018595147877931595, + 0.0016437608283013105, + -0.004681827500462532, + -0.000529472716152668, + -0.033701229840517044, + 0.027542494237422943, + -0.0029075569473206997, + 0.007896659895777702, + 0.005534270312637091, + -0.0020171175710856915, + 0.02137054316699505, + 0.027304602786898613, + -0.010143408551812172, + -0.028996272012591362, + -0.015621510334312916, + 0.0060860454104840755, + -0.0062182070687413216, + 0.009039859287440777, + 0.017286747694015503, + 0.009548680856823921, + -0.015621510334312916, + 0.013890192843973637, + 0.033939119428396225, + 0.007698417641222477, + 0.0013819155283272266, + 0.012601615861058235, + 0.011445201002061367, + -0.03356906771659851, + 0.026326606050133705, + 0.0010440772166475654, + 0.005497925914824009, + -0.00883500836789608, + -0.010559718124568462, + -0.026524849236011505, + -0.02748962864279747, + 0.00997820682823658, + -0.016652371734380722, + 0.00012999340833630413, + 0.01699599251151085, + -0.0006488312501460314, + -0.0020369419362396, + 0.009931949898600578, + 0.00891430489718914, + -0.013956272974610329, + 0.02303578145802021, + -0.020300034433603287, + -0.00952224899083376, + -0.012357116676867008, + -0.001766010420396924, + -0.005749032832682133, + 0.03060864470899105, + -0.004130052402615547, + 0.004721475765109062, + 0.031031562015414238, + -0.011028892360627651, + 0.036344461143016815, + 0.016150157898664474, + -0.008590509183704853, + 0.0314016155898571, + 0.026088714599609375, + 0.05082938075065613, + 0.0068724071606993675, + -0.015634726732969284, + -0.030635077506303787, + -0.04181595519185066, + 0.0034791561774909496, + 0.0007599296513944864, + 0.01881982386112213, + 0.005187345668673515, + 0.006469313986599445, + -0.026630578562617302, + -0.0005720122717320919, + 0.007182987406849861, + -0.027516061440110207, + -0.000684349681250751, + 0.04480280727148056, + 0.014603865332901478, + 0.011332863941788673, + -0.017141370102763176, + -0.00976014044135809, + -0.036106571555137634, + 0.006958312354981899, + 0.008801967836916447, + -0.009079507552087307, + 0.004348119255155325, + -0.014154516160488129, + 0.006779894232749939, + 0.04311113804578781, + 0.02252035029232502, + 0.016652371734380722, + -0.000639332109130919, + -0.0171942338347435, + 0.00556070264428854, + -0.026485200971364975, + -0.00045967483310960233, + 0.014630298130214214, + -0.0052170823328197, + 0.030397186055779457, + 0.004919718485325575, + -0.016850614920258522, + 0.015079647302627563, + -0.0036740945652127266, + -0.0162955354899168, + -0.0017494902713224292, + 0.0007735588005743921, + 0.024753881618380547, + 0.003902073483914137, + -0.0013166607823222876, + -0.023366184905171394, + 0.0008945693843998015, + 0.02528252825140953, + -0.005412020720541477, + -0.006241335067898035, + -0.027701087296009064, + -0.002719226526096463, + -0.00956189725548029, + 0.01581975258886814, + -0.014854972250759602, + -0.01478889212012291, + -0.011240351013839245, + -0.007480350788682699, + -0.012106009759008884, + -0.007083865813910961, + -0.008266713470220566, + 0.006442881654947996, + -0.03317258134484291, + 0.004324990790337324, + 0.005362459924072027, + -0.00741427019238472, + 0.03568365424871445, + -0.015647942200303078, + -0.01555542927235365, + -0.011306432075798512, + 0.01846298575401306, + -0.03779824078083038, + 0.015912266448140144, + 0.04966636002063751, + 0.0007954480824992061, + 0.00608274107798934, + 0.0060166604816913605, + -0.018833039328455925, + -0.02417237125337124, + 0.019943198189139366, + -0.011108188889920712, + -0.024938909336924553, + -0.0025953250005841255, + 0.01928238943219185, + 0.021595219150185585, + -0.036582354456186295, + -0.019652441143989563, + 0.015766888856887817, + 0.004856941755861044, + 0.011550930328667164, + -0.009271142072975636, + 0.003776520024985075, + 0.01659950613975525, + 6.146679425000912e-06, + -0.008616941049695015, + 0.0425296276807785, + -0.020300034433603287, + 0.0063933213241398335, + 0.008808575570583344, + 0.007519999518990517, + -0.001719753840006888, + -0.027357468381524086, + -0.019467415288090706, + -0.001965905074030161, + 0.02452920749783516, + -0.008610333316028118, + 0.011227134615182877, + -0.024991773068904877, + 0.005342635791748762, + -0.02681560441851616, + 0.016969559714198112, + 0.006403233390301466, + -0.003945026081055403, + 0.017141370102763176, + 0.018396906554698944, + -0.006317328196018934, + 0.00658825971186161, + -0.010956203565001488, + -0.022229595109820366, + 0.013024533167481422, + -0.0018717397470027208, + -0.03771894425153732, + -0.008986993692815304, + -0.019216308370232582, + 0.028652651235461235, + 0.03068794123828411, + -0.04998354613780975, + -0.01161701139062643, + -0.013123654760420322, + -0.0377718061208725, + -0.03383338823914528, + -0.02417237125337124, + -0.008094903081655502, + -0.009172020480036736, + 0.0069847446866333485, + -0.015396835282444954, + 0.024264885112643242, + -0.010777784511446953, + 0.027621790766716003, + -0.03351620212197304, + -0.007064041681587696, + -0.0014636905398219824, + 0.007387837860733271, + 0.02836189605295658, + -0.002801827620714903, + -0.019137011840939522, + -0.013493707403540611, + 0.01216548215597868, + -0.001982425106689334, + -0.00014269331586547196, + 0.01703564077615738, + -0.013064182363450527, + -0.015753671526908875, + -0.001038295216858387, + 0.024714233353734016, + 0.0025556765031069517, + 0.010678663849830627, + 0.014498136006295681, + -0.03983353078365326, + 0.014075218699872494, + 0.026842037215828896, + -4.550801531877369e-05, + -0.03005356527864933, + -0.019850684329867363, + 0.007156555075198412, + -0.016308750957250595, + -0.0038888573180884123, + 0.033225446939468384, + -0.018740525469183922, + -0.0048040770925581455, + -0.01735282875597477, + 0.03475852310657501, + 0.019612792879343033, + 0.006089349277317524, + 0.01327564101666212, + 0.01952028088271618, + -0.02878481335937977, + -0.020141439512372017, + 0.015542213805019855, + -0.03367479518055916, + 0.0019939893390983343, + 0.019665658473968506, + -0.021595219150185585, + 0.03060864470899105, + -0.024661369621753693, + 0.013454059138894081, + 0.0033684708178043365, + 0.0011225482448935509, + -0.0016652371268719435, + -0.011233742348849773, + -0.01289897970855236, + 0.018912335857748985, + 0.010401124134659767, + -0.007572864182293415, + 0.01418094802647829, + 0.01116105355322361, + -0.01751142181456089, + -0.009158804081380367, + -0.024476343765854836, + -0.0105332862585783, + -0.036820244044065475, + 0.004562881775200367, + 0.0003157425089739263, + -0.02055114135146141, + 0.0023574340157210827, + 0.024436693638563156, + -0.005550790578126907, + -0.019824251532554626, + 0.008392266929149628, + 0.19232167303562164, + -0.01307739783078432, + -0.009475992061197758, + 0.01518537662923336, + -0.0037599997594952583, + -0.003604709869250655, + 0.03549862653017044, + -0.0012927064672112465, + 0.010539893992245197, + 0.01171613298356533, + -0.01116105355322361, + -0.0022037960588932037, + 0.0008524428121745586, + -0.0004753690445795655, + 0.006832758896052837, + -0.0149078369140625, + -0.016982775181531906, + -0.02323402278125286, + -0.001941124675795436, + 0.02780681662261486, + 0.023181159049272537, + -0.03412414714694023, + -0.004724780097603798, + -0.0076125129126012325, + 0.0455164834856987, + 0.009931949898600578, + -0.0068393670953810215, + 0.0071169063448905945, + 0.02484639547765255, + -0.00891430489718914, + -0.013705166056752205, + 0.01802685298025608, + 0.007764498703181744, + -0.005273250862956047, + -0.004248998127877712, + 0.004301862791180611, + 0.025414690375328064, + -0.005230298265814781, + 0.04012428596615791, + 0.02192562259733677, + 0.004658699035644531, + -0.01216548215597868, + -0.002446643076837063, + -0.012746993452310562, + -0.02631339058279991, + 0.024397045373916626, + -0.001922952476888895, + 0.004635571036487818, + -0.006000140216201544, + -0.0016652371268719435, + -0.026960982009768486, + -0.009099331684410572, + 0.013090614229440689, + 0.02733103558421135, + -0.02630017325282097, + -0.013956272974610329, + 0.00745391845703125, + -0.004942846950143576, + 0.00741427019238472, + 0.03364836424589157, + -0.030106430873274803, + 0.02055114135146141, + -0.0019840772729367018, + 0.017524639144539833, + -0.02693454921245575, + -0.018476203083992004, + -0.04337546229362488, + 0.017894690856337547, + 0.0007781019085086882, + -0.015766888856887817, + -0.022533565759658813, + -0.029762810096144676, + -0.013341721147298813, + 0.016084076836705208, + -0.01971852220594883, + -0.042503196746110916, + 0.011484850198030472, + 0.000385540392016992, + 0.02035289816558361, + 0.007804146967828274, + -0.0014719506725668907, + 0.025414690375328064, + -0.012661089189350605, + -0.036027275025844574, + 0.002103022765368223, + -0.03864407539367676, + 0.016890263184905052, + -0.011729349382221699, + -0.017881475389003754, + -0.03713743016123772, + -0.014934269711375237, + 0.02019430510699749, + -0.002344217849895358, + 0.0006364411092363298, + 0.020656870678067207, + 0.004790860693901777, + 0.006492442451417446, + 0.022189944982528687, + -0.018991632387042046, + 0.011808645911514759, + -0.02989497222006321, + 0.0653935968875885, + 0.03296112269163132, + -0.011194094084203243, + -0.012211739085614681, + 0.02448955923318863, + 0.01410165149718523, + 0.030027132481336594, + 0.0022252723574638367, + 0.00047784706111997366, + 0.005785377696156502, + -0.03364836424589157, + 0.026564497500658035, + -0.0009978206362575293, + -0.005289771128445864, + 0.014669946394860744, + 0.002365694148465991, + -0.011266782879829407, + -0.013341721147298813, + -0.00689223175868392, + -0.028652651235461235, + 0.004453848581761122, + 0.010526677593588829, + 0.006651036441326141, + 0.017498206347227097, + -0.020286817103624344, + -0.04609799385070801, + -0.01767001673579216, + -0.016929911449551582, + -0.003773215925320983, + 0.025137150660157204, + -0.005963795818388462, + -0.0037236553616821766, + 0.01866122893989086, + 0.014881405048072338, + 0.007077258080244064, + -0.013440842740237713, + -0.049084845930337906, + -0.00578868156298995, + 0.012152266688644886, + 0.019771387800574303, + -0.019137011840939522, + -0.006059613078832626, + -0.0010721615981310606, + 0.03132231906056404, + -0.007222635671496391, + 0.005276555195450783, + -0.0020633742678910494, + -0.011524498462677002, + -0.020762600004673004, + -0.013202951289713383, + 0.003670790698379278, + 0.0014917749213054776, + -0.020300034433603287, + 0.018092934042215347, + -0.010625799186527729, + -0.020974058657884598, + -0.027198873460292816, + 0.0032809136901050806, + -0.008081686682999134, + -0.001390175661072135, + -0.012740385718643665, + -0.0016156765632331371, + -0.024740666151046753, + 0.00029674425604753196, + 0.00132657284848392, + -0.16662944853305817, + 0.0016371527453884482, + 0.04078509286046028, + -0.04276752099394798, + 0.0244499109685421, + 0.015053215436637402, + 0.00609265360981226, + 3.084632771788165e-05, + -0.008689630776643753, + 0.000507170450873673, + 0.024119505658745766, + 0.02480674721300602, + 0.001543813617900014, + -0.005408716853708029, + 0.0058349380269646645, + -0.0015776799991726875, + -0.01185490284115076, + 0.031031562015414238, + 0.022705376148223877, + 0.038961261510849, + 0.012667696923017502, + -0.02504463866353035, + 0.009006818756461143, + 0.0030281543731689453, + 0.0048172930255532265, + -0.00023809752019587904, + -0.005765553098171949, + 0.01135929673910141, + 0.0026845340617001057, + -0.020577574148774147, + -0.017960771918296814, + 0.006109173409640789, + 0.01574045605957508, + 0.004268822260200977, + -0.009872477501630783, + -0.025335393846035004, + -0.012271211482584476, + 0.002625061431899667, + -0.015542213805019855, + 0.0385647788643837, + 0.010044287890195847, + 0.0013777854619547725, + -0.014722811058163643, + -0.009931949898600578, + -0.04784252867102623, + -0.006905447691679001, + 0.01763036847114563, + 0.001967557007446885, + -0.013460666872560978, + -0.015238241292536259, + 0.0014661686727777123, + -0.01382411178201437, + 0.004480280913412571, + 0.013731598854064941, + 0.005226994398981333, + 0.0171942338347435, + 0.009205061011016369, + 0.02468780241906643, + -0.0059043229557573795, + -0.002557328436523676, + -0.0020931106992065907, + -0.007480350788682699, + 0.014167731627821922, + 0.0014248681254684925, + -0.004572794307023287, + -0.029551351442933083, + 0.007685201708227396, + 0.018740525469183922, + -0.010791000910103321, + -0.005901019088923931, + -0.007447310723364353, + -0.010837257839739323, + 0.023101860657334328, + -0.00833940226584673, + -0.0026217573322355747, + -0.011828470043838024, + 0.002028681803494692, + -0.0022186641581356525, + 0.015238241292536259, + -0.006175254471600056, + -0.022705376148223877, + 0.05035359784960747, + -0.011445201002061367, + -0.02114586904644966, + 0.0006484182085841894, + 0.005250122863799334, + -0.006555219180881977, + 0.003799648256972432, + 0.011907767504453659, + 0.012020104564726353, + -0.00997820682823658, + -0.032088857144117355, + 0.0002775395114440471, + -0.02259964682161808, + 0.027066711336374283, + 0.0017098417738452554, + 0.011306432075798512, + -0.025903688743710518, + -0.009138979949057102, + -0.004648786969482899, + 0.014286677353084087, + 0.0038987696170806885, + -0.034573495388031006, + -0.0035584531724452972, + 0.01834404096007347, + 0.0008557468536309898, + -0.018159015104174614, + 0.006786502432078123, + 0.02812400460243225, + 0.010169841349124908, + -0.018780173733830452, + -0.021396975964307785, + 0.026590930297970772, + -0.00787022802978754, + 0.008497996255755424, + 0.002426818711683154, + -0.0036146219354122877, + -0.026445552706718445, + 0.0025986291002482176, + 0.005372372455894947, + 0.033225446939468384, + 0.0007182161207310855, + -0.01743212528526783, + 0.012561967596411705, + -0.007420878391712904, + -0.02741033211350441, + -0.08912983536720276, + 0.007665377575904131, + 0.0058217220939695835, + 0.018119366839528084, + 0.019507063552737236, + 0.0006153777940198779, + -0.012786642648279667, + 0.0103350430727005, + -0.007374621462076902, + 0.01999606192111969, + -0.04593940079212189, + -0.028546921908855438, + -0.000771906808950007, + -0.00976014044135809, + 0.01250249519944191, + -0.010282178409397602, + -0.020736167207360268, + -0.02192562259733677, + 0.0019328645430505276, + 0.02271859347820282, + 0.0231547262519598, + -0.008055253885686398, + -0.016573075205087662, + 0.00048610716476105154, + 0.0016949735581874847, + 0.016586290672421455, + -0.043534055352211, + 0.014603865332901478, + 0.026802388951182365, + 0.021344110369682312, + 0.010909946635365486, + -0.026088714599609375, + 0.011246958747506142, + -0.02599620260298252, + 0.005825025960803032, + 0.00402432307600975, + -0.009727099910378456, + -0.043005410581827164, + 0.014577433466911316, + -0.023220807313919067, + -0.015476132743060589, + -0.0017362741054967046, + 0.01838368922472, + -0.04776323214173317, + 0.012178698554635048, + -0.0036773986648768187, + -0.012033320963382721, + 0.004400983918458223, + -0.01574045605957508, + -0.02748962864279747, + -0.028229733929038048, + -0.00741427019238472, + -0.0016652371268719435, + 0.029313459992408752, + 0.011418769136071205, + 0.0016883654752746224, + 0.0063437605276703835, + -0.006479226518422365, + -0.014075218699872494, + -0.008815184235572815, + -0.018912335857748985, + 0.018740525469183922, + -0.03245890885591507, + 0.02039254643023014, + -0.005712688434869051, + 0.003945026081055403, + -0.031295884400606155, + -0.002644885564222932, + -0.007268892135471106, + -0.004120140336453915, + -0.013837328180670738, + 0.007255676202476025, + 0.001125026261433959, + 0.004037539474666119, + -0.03306685388088226, + -0.031031562015414238, + -0.027621790766716003, + -0.0011820209911093116, + 0.013460666872560978, + -0.017643583938479424, + -0.0033932512160390615, + -0.030027132481336594, + 0.03941061347723007, + -0.009000210091471672, + 0.023683372884988785, + 0.010619190521538258, + 0.0017957468517124653, + -0.02031324990093708, + 0.018595147877931595, + -0.02559971809387207, + 0.009119155816733837, + -0.004533145576715469, + 0.03245890885591507, + -0.010064112022519112, + -0.0010192969348281622, + 0.004318383056670427, + -0.005385588388890028, + 0.016031211242079735, + -0.004721475765109062, + 0.011564146727323532, + -0.029287027195096016, + -0.00956189725548029, + -0.05619514733552933, + 0.0185819324105978, + 0.026485200971364975, + -0.010890122503042221, + -0.030502915382385254, + -0.004714868031442165, + 0.018317608162760735, + 0.009819612838327885, + 0.01778896152973175, + 0.0018023549346253276, + -0.004813989158719778, + 0.0011770649580284953, + -0.004338207188993692, + -0.008669805712997913, + -0.019057713449001312, + -0.014854972250759602, + 0.0063602807931602, + -0.0004592618206515908, + 0.021357327699661255, + 0.0009631282300688326, + -0.026286957785487175, + 0.01126017514616251, + 0.004820597358047962, + 0.0011101580457761884, + -0.023643724620342255, + -2.8471549740061164e-05, + -0.013169911690056324, + -0.006555219180881977, + -0.006191774737089872, + -0.00211458676494658, + 0.008821791969239712, + 0.006429665721952915, + -0.015872618183493614, + 0.028705516830086708, + -0.003005026141181588, + -0.0064957463182508945, + 0.02437061443924904, + 0.031375180929899216, + 0.014088435098528862, + 0.05336688458919525, + -0.0032577854581177235, + -0.02287718653678894, + 0.014405623078346252, + -0.03187739849090576, + -0.01088351383805275, + -0.004503409378230572, + 0.016031211242079735, + 0.005848154425621033, + 0.0036278381012380123, + -0.02401377633213997, + 0.0427410863339901, + 0.009264533407986164, + 0.009469384327530861, + -0.015608293935656548, + 0.022824322804808617, + -0.023617291823029518, + -0.00023995604715310037, + 0.017484990879893303, + -0.008927521295845509, + -0.03782467171549797, + 0.042688220739364624, + 0.004447240382432938, + 0.024106290191411972, + 0.007024393416941166, + 0.005223690532147884, + -0.01885947212576866, + -0.026511631906032562, + -0.007295324467122555, + 0.007301932666450739, + -0.03309328481554985, + -0.03156020864844322, + -0.01770966500043869, + -0.0025441122706979513, + 0.038432616740465164, + -0.01624266989529133, + -0.01735282875597477, + 0.017960771918296814, + 0.009674235247075558, + 0.004215957596898079, + 0.0401507169008255, + 0.0217670276761055, + 0.014365974813699722, + -0.025216449052095413, + 0.007771106902509928, + 0.0162955354899168, + -0.006191774737089872, + -0.00845834705978632, + 0.0080486461520195, + -0.0037434794940054417, + 0.0014075218932703137, + 0.006535395048558712, + 0.02255999855697155, + 0.006670860573649406, + -0.008768927305936813, + 0.02070973441004753, + 0.00897377822548151, + -0.001522337319329381, + -0.01644091308116913, + 0.022216377779841423, + 0.030159294605255127, + -0.010857081972062588, + 0.012066361494362354, + 0.013837328180670738, + -0.042027413845062256, + -0.006925271824002266, + -0.0115773631259799, + 0.003355254651978612, + -0.041630927473306656, + 0.01076456904411316, + 0.013242600485682487, + -0.009674235247075558, + 0.015238241292536259, + 0.00604309281334281, + 0.0013141826493665576, + -0.008207240141928196, + 0.021621650084853172, + -0.009324006736278534, + -0.011365904472768307, + -0.0325910709798336, + 0.018291177228093147, + -0.005914235021919012, + 0.013982705771923065, + -0.002887732582166791, + 0.0009730403544381261, + 0.00773145817220211, + 0.009264533407986164, + 0.0016421088948845863, + 0.010387907736003399, + 0.03084653615951538, + -0.02852049097418785, + 0.011194094084203243, + 0.00911254808306694, + -0.015832969918847084, + -0.013084006495773792, + -0.011412161402404308, + -0.011762388981878757, + 0.019176660105586052, + -0.006261159665882587, + 0.03454706445336342, + 0.11302466690540314, + 0.037216730415821075, + -0.013117047026753426, + 0.0039813704788684845, + -0.006806326564401388, + 0.03309328481554985, + 0.0057523371651768684, + -0.0017114937072619796, + -0.010962811298668385, + -0.06433630734682083, + -0.007857011631131172, + -0.009079507552087307, + 0.00644948985427618, + -0.03306685388088226, + -0.007989173755049706, + 0.01850263588130474, + -0.01094298716634512, + 0.018991632387042046, + -0.007876835763454437, + 0.004718171898275614, + 0.022626079618930817, + -0.011583970859646797, + 0.030476482585072517, + 0.041789524257183075, + -0.028573354706168175, + -0.012013496831059456, + 0.016163373365998268, + -0.013995922170579433, + 0.008392266929149628, + 0.0036773986648768187, + -0.01139894500374794, + 0.008709454908967018, + -0.07416913658380508, + -0.02248070202767849, + 0.021582001820206642, + -0.012548751197755337, + -0.005094832740724087, + -0.022771457210183144, + 0.022612864151597023, + -0.00887465663254261, + 0.011702916584908962, + 0.012700737453997135, + -0.022982915863394737, + -0.02701384760439396, + -0.02164808288216591, + -0.008094903081655502, + 0.005626783240586519, + -0.026524849236011505, + -0.05352548137307167 + ], + "metadata": { + "source": "Kreye_Marieke_BA_241_V2.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 17, + "has_images": true, + "image_count": 98, + "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", + "links": [], + "last_modified": "2025-05-05T23:00:23", + "_known_field_names": "frozenset({'is_continuation', 'sent_to', 'header_footer_type', 'email_message_id', 'filename', 'languages', 'detection_class_prob', 'sent_from', 'link_texts', 'cc_recipient', 'subject', 'image_mime_type', 'image_path', 'filetype', 'page_number', 'last_modified', 'signature', 'detection_origin', 'text_as_html', 'attached_to_filename', 'bcc_recipient', 'data_source', 'link_start_indexes', 'category_depth', 'emphasized_text_tags', 'parent_id', 'orig_elements', 'page_name', 'coordinates', 'url', 'link_urls', 'file_directory', 'links', 'table_as_cells', 'emphasized_text_contents', 'key_value_pairs', 'image_base64'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "Kreye_Marieke_BA_241_V2.pdf", + "detection_class_prob": 0.3422867953777313, + "parent_id": "e02392183bc6851689602ad4b9f6039f", + "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", + "id": "ce00eae5-7e07-454f-9e4f-f79ac36f92f4", + "processing_timestamp": "2025-05-05T23:15:46.977945", + "chunk_number": 17, + "total_chunks": 56, + "chunking_strategy": "hybrid", + "word_count": 422 + } +} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000018.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000018.json new file mode 100644 index 0000000000000000000000000000000000000000..f669ff403cfd192a459ee216c47f6c2615b27375 --- /dev/null +++ b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000018.json @@ -0,0 +1,1570 @@ +{ + "id": "61a115b2-0ff7-441a-f6d9-eb3d00000018", + "content": "\ud835\udc3b\ud835\udc52\ud835\udc56\ud835\udc67\ud835\udc4f\ud835\udc52\ud835\udc51\ud835\udc4e\ud835\udc5f\ud835\udc53 [\ud835\udc58\ud835\udc4a\u210e] \u2217 0,202 \ud835\udc58\ud835\udc54 \ud835\udc58\ud835\udc4a\u210e = [\ud835\udc58\ud835\udc54] \ud835\udc36\ud835\udc422\ud835\udc52\nF\u00fcr den K\u00fchlbedarf wurde \u00fcber eine Leistungszahl (COP, Coefficient of Performance) von 4 die erforderliche Strommenge ermittelt (vgl. Wolf K\u00e4ltetechnik GmbH 2024). \u00dcber den Emissionsfaktor des deutschen Strommixes von 0,442 kg CO2e/kWh (vgl. Icha und Lauf 2023, S. 17), wurden die CO2e-Emissionen des K\u00fchlbedarfs bestimmt. \ud835\udc3e\u00fc\u210e\ud835\udc59\ud835\udc4f\ud835\udc52\ud835\udc51\ud835\udc4e\ud835\udc5f\ud835\udc53 [\ud835\udc58\ud835\udc4a\u210e] \u2217 1 4 \u2217 0,442 \ud835\udc58\ud835\udc54 \ud835\udc58\ud835\udc4a\u210e = [\ud835\udc58\ud835\udc54] \ud835\udc36\ud835\udc422\ud835\udc52\nDie Evapotranspiration ermittelt SimStadt in Litern. Mittels der spezifischen Verdampfungsw\u00e4rme von Wasser von 2262 kJ/kg (vgl. Tipler und Mosca 2015, S. 571) und der Annahme, dass 1 l Wasser eine Masse von 1 kg hat, erfolgt die Berechnung der Energiemenge der Evapotranspiration in kWh. \ud835\udc44\ud835\udc38\ud835\udc47 = \ud835\udc5a\ud835\udc38\ud835\udc47 \u2217 2262 \ud835\udc58\ud835\udc3d \ud835\udc58\ud835\udc54 \u2217 1 3600 \ud835\udc58\ud835\udc4a\u210e \ud835\udc58\ud835\udc3d \ud835\udc5a\ud835\udc56\ud835\udc61 \ud835\udc46\ud835\udc62\ud835\udc5a \ud835\udc38\ud835\udc47\ud835\udc50 = \ud835\udc5a\ud835\udc38\ud835\udc47\n\ud835\udc46\ud835\udc62\ud835\udc5a \ud835\udc38\ud835\udc47\ud835\udc50 = \ud835\udc40\ud835\udc52\ud835\udc5b\ud835\udc54\ud835\udc52 \ud835\udc51\ud835\udc52\ud835\udc5f \ud835\udc38\ud835\udc63\ud835\udc4e\ud835\udc5d\ud835\udc5c\ud835\udc61\ud835\udc5f\ud835\udc4e\ud835\udc5b\ud835\udc60\ud835\udc5d\ud835\udc56\ud835\udc5f\ud835\udc4e\ud835\udc61\ud835\udc56\ud835\udc5c\ud835\udc5b [\ud835\udc59]\n\ud835\udc5a\ud835\udc38\ud835\udc47 = \ud835\udc40\ud835\udc4e\ud835\udc60\ud835\udc60\ud835\udc52 \ud835\udc51\ud835\udc52\ud835\udc5f \ud835\udc38\ud835\udc63\ud835\udc4e\ud835\udc5d\ud835\udc5c\ud835\udc61\ud835\udc5f\ud835\udc4e\ud835\udc5b\ud835\udc60\ud835\udc5d\ud835\udc56\ud835\udc5f\ud835\udc4e\ud835\udc61\ud835\udc56\ud835\udc5c\ud835\udc5b [\ud835\udc58\ud835\udc54]\n\ud835\udc44\ud835\udc38\ud835\udc47 = \ud835\udc38\ud835\udc5b\ud835\udc52\ud835\udc5f\ud835\udc54\ud835\udc56\ud835\udc52\ud835\udc5a\ud835\udc52\ud835\udc5b\ud835\udc54\ud835\udc52 \ud835\udc51\ud835\udc52\ud835\udc5f \ud835\udc38\ud835\udc63\ud835\udc4e\ud835\udc5d\ud835\udc5c\ud835\udc61\ud835\udc5f\ud835\udc4e\ud835\udc5b\ud835\udc60\ud835\udc5d\ud835\udc56\ud835\udc5f\ud835\udc4e\ud835\udc61\ud835\udc56\ud835\udc5c\ud835\udc5b [\ud835\udc58\ud835\udc4a\u210e]\nDurch die Globalstrahlung wird in das System Stadt Energie eingebracht. \u00dcber die Evapotranspiration entziehen die Pflanzen diesem System Energie. Dieser Energieentzug wird in das Verh\u00e4ltnis zu der Globalstrahlung im jeweiligen Gebietsausschnitt gesetzt. Eine reduzierte Globalstrahlung f\u00fchrt zu einer geringeren Erw\u00e4rmung der Stadt. Des Weiteren f\u00fchrt die Evapotranspiration zu einer Absenkung der umgebenden Lufttemperatur. Die Temperaturver\u00e4nderung \u2206T wird \u00fcber die Energiemenge, welche durch die Evapotranspiration freigesetzt wird, bestimmt (vgl. Tipler und Mosca 2015, S. 568). F\u00fcr die Berechnung wurde die Annahme getroffen, dass es sich bei dem Gebietsausschnitt um einen leeren mit Luft gef\u00fcllten Volumenk\u00f6rper mit einer H\u00f6he von 15,0 m handelt. Die H\u00f6he wurde so gew\u00e4hlt, da die h\u00f6chsten Bestandsb\u00e4ume in Gromb\u00fchl eine H\u00f6he von 15,0 m aufweisen. Diese Annahme wurde f\u00fcr Grafenb\u00fchl \u00fcbernommen, damit f\u00fcr alle Berechnungen die gleichen Ausgangsparameter gelten. \u2206\ud835\udc47 = \ud835\udc44\ud835\udc38\ud835\udc47 \ud835\udc5a\ud835\udc3f \u2217 \ud835\udc50 \ud835\udc5a\ud835\udc56\ud835\udc61 \ud835\udc5a\ud835\udc3f = \ud835\udc49\ud835\udc3a\ud835\udc34 \u2217 \ud835\udf0c \ud835\udc62\ud835\udc5b\ud835\udc51 \ud835\udc44\ud835\udc38\ud835\udc47 = \ud835\udc46\ud835\udc62\ud835\udc5a \ud835\udc38\ud835\udc47\ud835\udc50 \u2217 2262 \ud835\udc58\ud835\udc3d \ud835\udc58\ud835\udc54\n\ud835\udc50 = \ud835\udc60\ud835\udc5d\ud835\udc52\ud835\udc67\ud835\udc56\ud835\udc53\ud835\udc56\ud835\udc60\ud835\udc50\u210e\ud835\udc52 \ud835\udc4a\u00e4\ud835\udc5f\ud835\udc5a\ud835\udc52\ud835\udc58\ud835\udc4e\ud835\udc5d\ud835\udc4e\ud835\udc67\ud835\udc56\ud835\udc61\u00e4\ud835\udc61 \ud835\udc3f\ud835\udc62\ud835\udc53\ud835\udc61 = 1,005 [ \ud835\udc58\ud835\udc3d \ud835\udc58\ud835\udc54 \u2217 \ud835\udc3e ] (vgl.Paschotta 2023)\n\ud835\udc44\ud835\udc38\ud835\udc47 = \ud835\udc38\ud835\udc5b\ud835\udc52\ud835\udc5f\ud835\udc54\ud835\udc56\ud835\udc52\ud835\udc5a\ud835\udc52\ud835\udc5b\ud835\udc54\ud835\udc52 \ud835\udc51\ud835\udc52\ud835\udc5f \ud835\udc38\ud835\udc63\ud835\udc4e\ud835\udc5d\ud835\udc5c\ud835\udc61\ud835\udc5f\ud835\udc4e\ud835\udc5b\ud835\udc60\ud835\udc5d\ud835\udc56\ud835\udc5f\ud835\udc4e\ud835\udc61\ud835\udc56\ud835\udc5c\ud835\udc5b [\ud835\udc58\ud835\udc3d]\n\ud835\udf0c = \ud835\udc37\ud835\udc56\ud835\udc50\u210e\ud835\udc61\ud835\udc52 \ud835\udc51\ud835\udc52\ud835\udc5f \ud835\udc3f\ud835\udc62\ud835\udc53\ud835\udc61 = 1,225 [ \ud835\udc58\ud835\udc54 \ud835\udc5a3](vgl.Deutscher Wetterdienst 2024a)\n\ud835\udc5a\ud835\udc3f = \ud835\udc40\ud835\udc4e\ud835\udc60\ud835\udc60\ud835\udc52 \ud835\udc51\ud835\udc52\ud835\udc5f \ud835\udc3f\ud835\udc62\ud835\udc53\ud835\udc61 [\ud835\udc58\ud835\udc54]\n\u2206\ud835\udc47 = \ud835\udc47\ud835\udc52\ud835\udc5a\ud835\udc5d\ud835\udc52\ud835\udc5f\ud835\udc4e\ud835\udc61\ud835\udc62\ud835\udc5f\u00e4\ud835\udc5b\ud835\udc51\ud835\udc52\ud835\udc5f\ud835\udc62\ud835\udc5b\ud835\udc54 [\ud835\udc3e]\n\n## \ud835\udc49\ud835\udc3a\ud835\udc34 = \ud835\udc49\ud835\udc5c\ud835\udc59\ud835\udc62\ud835\udc52\ud835\udc5a\ud835\udc52\ud835\udc5b \ud835\udc51\ud835\udc52\ud835\udc60 \ud835\udc3a\ud835\udc52\ud835\udc4f\ud835\udc56\ud835\udc52\ud835\udc61\ud835\udc60\ud835\udc4e\ud835\udc62\ud835\udc60\ud835\udc60\ud835\udc50\u210e\ud835\udc5b\ud835\udc56\ud835\udc61\ud835\udc61\ud835\udc60 [\ud835\udc5a3]\n\n16\nMethodik und Toolerl\u00e4uterung\n\n## 3.2 Toolvorstellung\n\nWie in Kapitel 3.1 erw\u00e4hnt, ist das Python-Skript f\u00fcr die automatische Pflanzung der B\u00e4ume relevant und das Tool SimStadt wird f\u00fcr die Simulation und Analyse des Energiebedarfs sowie der Evapotranspiration verwendet. ## 3.2.1 Funktionsweise Python-Skript\n\nDas Python-Skript erm\u00f6glicht es, automatisch B\u00e4ume zu OpenStreetMap (OSM) -Daten hinzuzuf\u00fcgen. Da es sich bei OSM-Daten um \u00f6ffentlich verf\u00fcgbare Daten handelt, ist auch nur der \u00f6ffentliche Raum abgebildet, dementsprechend werden neue B\u00e4ume nur in diesem gepflanzt. F\u00fcr die Ausf\u00fchrung des Skripts sind die Koordinaten des gew\u00fcnschten Gebietes erforderlich. Diese Koordinaten k\u00f6nnen mithilfe des Region-Choosers, einem Bestandteil des SimStadt-Installationspakets, ermittelt werden. Zus\u00e4tzlich wird eine Shapefile (shp) -Datei ben\u00f6tigt, die die vorhandenen B\u00e4ume enth\u00e4lt, wie beispielsweise ein st\u00e4dtisches Baumkataster. Vor dem Start des Skripts m\u00fcssen Parameter wie der Abstand zwischen den neuen B\u00e4umen, der Mindestabstand zu bestehenden B\u00e4umen sowie Baumart, Baumh\u00f6he und Kronenbreite definiert werden. Beim Starten des Skripts werden aus den OSM-Daten die in dem Gebietsausschnitt vorliegenden Stra\u00dfentypen ausgelesen.", + "embedding": [ + 0.030113831162452698, + -0.008068062365055084, + 0.008126573637127876, + -0.01469284575432539, + -0.004459863528609276, + 0.01898367702960968, + -0.01178678311407566, + -0.013223560526967049, + -0.0071968939155340195, + -0.022104280069470406, + 0.010967624373733997, + 0.017592407763004303, + -0.015368976630270481, + 0.006689795758575201, + -0.009472334757447243, + 0.007703992072492838, + 0.021519167348742485, + -0.005214009899646044, + 0.019126703962683678, + 0.023495549336075783, + -0.0035984469577670097, + 0.031180039048194885, + 0.01705930382013321, + 0.009712881408631802, + -0.0020641498267650604, + 0.0022494355216622353, + 0.021103087812662125, + -0.02405465766787529, + -0.013379591517150402, + 0.0053407843224704266, + 0.01010945811867714, + -0.030087826773524284, + -0.017020296305418015, + -0.019113700836896896, + -0.02712325192987919, + -0.009797397069633007, + 1.306600734096719e-05, + -0.013457606546580791, + 0.04046383500099182, + -0.002395713934674859, + 0.017176326364278793, + 0.007990047335624695, + 0.003354649757966399, + -0.009140769951045513, + 0.01124067697674036, + -0.0049539594911038876, + -0.009017246775329113, + -0.0068978359922766685, + -0.003582193749025464, + 0.02456175722181797, + 0.014939893037080765, + 0.030581923201680183, + -0.009576354175806046, + -0.005750363692641258, + -0.018853651359677315, + 0.00948533695191145, + -0.017176326364278793, + -0.015264956280589104, + 0.005649594124406576, + 0.0005647969082929194, + -0.005305027589201927, + -0.017462382093071938, + -0.017371363937854767, + 0.0029450703877955675, + -0.03521081805229187, + -0.0034066596999764442, + -0.020452961325645447, + -0.010467027314007282, + -0.005480561405420303, + -0.007899030111730099, + 0.015499001368880272, + 0.03172614425420761, + 0.01932174153625965, + -0.004888946656137705, + 0.015394981019198895, + 0.0019893853459507227, + 0.002272190060466528, + 0.002109658671543002, + 0.005074232816696167, + -0.0020478966180235147, + 0.02281941846013069, + -0.02756533771753311, + -0.015577016398310661, + 0.04712112620472908, + 0.00961536169052124, + 0.016708236187696457, + -0.021831227466464043, + 0.03638104721903801, + -0.0016407552175223827, + 0.023521555587649345, + 0.021077081561088562, + 0.023287510499358177, + -0.005292024929076433, + 0.013483610935509205, + 0.009140769951045513, + 0.003297763643786311, + -0.0004311147495172918, + 0.04064587131142616, + 0.016604214906692505, + -0.04402652755379677, + -0.023521555587649345, + 0.0115657402202487, + -0.027773378416895866, + -0.010623057372868061, + -0.04251823574304581, + -0.004414354916661978, + 0.018671616911888123, + 0.037005167454481125, + 0.014913888648152351, + -0.008282603695988655, + -0.017956476658582687, + 0.03671910986304283, + -0.018749631941318512, + -0.017709430307149887, + 0.013100037351250648, + -0.028917599469423294, + 0.036953154951334, + -0.012020828202366829, + -0.03336445987224579, + -0.0018073499668389559, + 0.025862008333206177, + 0.0072554051876068115, + -0.005890140775591135, + -0.02181822620332241, + 0.020700009539723396, + 0.019763827323913574, + 0.003965768031775951, + -0.023040462285280228, + -0.03838343173265457, + -0.04113996773958206, + -0.0076714856550097466, + -0.014419792219996452, + 0.0015830565243959427, + 0.019672809168696404, + -0.039007555693387985, + 0.026681168004870415, + -0.011871298775076866, + 0.005496814381331205, + -0.038175392895936966, + -0.026187071576714516, + 0.00023506114666815847, + 0.013704653829336166, + -0.020582986995577812, + -0.015551012009382248, + -0.00200888910330832, + 0.015876075252890587, + 0.00870518572628498, + 0.019334744662046432, + 0.01469284575432539, + -0.012547429651021957, + -0.008451636880636215, + -0.006328975781798363, + 0.017293348908424377, + -0.006709299515932798, + 0.0001940219517564401, + -0.007879526354372501, + -0.010005437768995762, + 0.0056268395856022835, + 0.0002834142651408911, + 0.0030929739587008953, + 0.012833485379815102, + 0.003341647097840905, + -0.012944006361067295, + -0.02513386681675911, + -0.0012263000244274735, + 0.005565077532082796, + 0.004999468103051186, + -0.00819808803498745, + -0.010376009158790112, + -0.014718850143253803, + -0.0023940885439515114, + 0.005854383576661348, + -0.019295737147331238, + 0.022377334535121918, + -0.006569522432982922, + 0.01648719236254692, + -0.019854845479130745, + 0.021168099716305733, + 0.0010678317630663514, + -0.028449509292840958, + -0.02779938466846943, + 0.025601958855986595, + -0.00412179809063673, + 0.01890566200017929, + -0.02870956063270569, + -0.018177520483732224, + -0.0019357498968020082, + 0.002038144739344716, + -0.0036016975063830614, + 0.007235901430249214, + 0.007749500684440136, + 0.018502583727240562, + 0.006341978441923857, + 4.594053825712763e-05, + -0.6366032958030701, + 0.014679842628538609, + -0.017605409026145935, + -0.021012069657444954, + -0.008588163182139397, + 0.021779218688607216, + 0.017163323238492012, + -0.00592914829030633, + -0.011520231142640114, + 0.030087826773524284, + 0.002091780072078109, + -0.019581792876124382, + -0.004014527425169945, + 0.003705717623233795, + 0.0018772385083138943, + -0.03856546804308891, + -0.012040331959724426, + -0.010707573965191841, + 0.015368976630270481, + 0.004531377460807562, + -0.010714074596762657, + 0.013100037351250648, + 0.0017927221488207579, + 0.022611379623413086, + 0.004346091765910387, + 0.007782007101923227, + 0.00011295937292743474, + -0.025914018973708153, + 0.01087010558694601, + 0.009797397069633007, + 0.010291493497788906, + 0.026655161753296852, + -0.005483812186866999, + 0.004456613212823868, + 0.051151905208826065, + -0.006910838186740875, + 0.0013742035953328013, + 0.005412298254668713, + -0.002182797761633992, + 0.0030994752887636423, + -0.0208040289580822, + -0.017111314460635185, + 0.012196362018585205, + -0.003065343713387847, + 0.01186479814350605, + 0.006046170834451914, + 0.016669228672981262, + -0.027903404086828232, + -0.0007232650532387197, + -0.03112802840769291, + 0.008334614336490631, + 0.02088204398751259, + 0.014809868298470974, + -0.017436377704143524, + 0.006302970461547375, + 0.021610185503959656, + 0.01973782293498516, + -0.013756664469838142, + 0.015837067738175392, + -0.010278490372002125, + 0.00136851507704705, + -0.00012189860717626289, + 0.013483610935509205, + 0.002528989687561989, + -0.02597903087735176, + 0.03198619559407234, + -0.029177650809288025, + -0.019516779109835625, + 0.015238950960338116, + -0.04030780494213104, + -0.016552206128835678, + 0.006709299515932798, + 0.004957209806889296, + -0.01497890055179596, + 0.013730659149587154, + 0.004599640611559153, + 0.03237627074122429, + -0.007209896109998226, + 0.01972481980919838, + 0.012638447806239128, + -0.012222367338836193, + -0.0038552465848624706, + -0.01010945811867714, + -0.01607111282646656, + 0.022208301350474358, + -0.030087826773524284, + -0.011663259007036686, + 0.0034489179961383343, + 0.01010945811867714, + 0.04805730655789375, + 0.025328904390335083, + 0.03947564586997032, + -0.006371234077960253, + -0.007469946518540382, + -0.001674074213951826, + 0.01906169205904007, + -0.022000260651111603, + 0.01864561066031456, + 0.006475253961980343, + -0.05471459776163101, + -0.006819820962846279, + 0.0031368574127554893, + 0.013171550817787647, + -0.006728803273290396, + 0.01807350106537342, + 0.010714074596762657, + -0.02089504711329937, + 0.0061111836694180965, + 0.030347878113389015, + -0.01596709154546261, + -0.01231988612562418, + -0.01764441654086113, + -0.016617218032479286, + -0.0024152176920324564, + -0.018632609397172928, + -0.020270925015211105, + 0.03445667400956154, + -0.02255936898291111, + 0.009062754921615124, + 0.019282734021544456, + 0.01890566200017929, + -0.013548623770475388, + 0.010590551421046257, + -0.0215451717376709, + -0.009101762436330318, + 0.021272119134664536, + 0.010766085237264633, + -0.01605810970067978, + -0.03778531774878502, + -0.0017715931171551347, + 0.006832823157310486, + 0.017592407763004303, + 0.00903675053268671, + -0.017189329490065575, + 0.03926760330796242, + 0.006878332234919071, + 0.015798060223460197, + -0.017878461629152298, + 0.002897936152294278, + -0.014796865172684193, + -0.013886689208447933, + -0.012950507923960686, + 0.008614168502390385, + -0.03396257758140564, + -0.001164538087323308, + -0.003146609291434288, + 0.013165049254894257, + 0.007456944324076176, + -0.0011929810279980302, + -0.0012466164771467447, + -0.02032293565571308, + -0.014055722393095493, + -0.007534959353506565, + 0.01490088552236557, + 0.003663459559902549, + 0.005028723739087582, + -0.005119741428643465, + -0.010512535460293293, + -0.023027459159493446, + -0.024847812950611115, + 0.0067548081278800964, + 0.02805943414568901, + -0.026200074702501297, + -0.001245803781785071, + -0.015472996979951859, + 0.001193793723359704, + -0.0007659295806661248, + 0.017527393996715546, + -0.019009681418538094, + -0.0413220040500164, + -0.0038714997936040163, + -0.014952896162867546, + 0.010337001644074917, + 0.01260594092309475, + -0.023157484829425812, + -0.008334614336490631, + -0.02787739969789982, + 0.01115616038441658, + -0.00802905485033989, + -0.018268538638949394, + 0.009023747406899929, + -0.01207283791154623, + -0.022832421585917473, + -0.005805624183267355, + 0.035080794245004654, + 0.034586697816848755, + 0.02314448170363903, + 0.009283797815442085, + -0.01336658839136362, + 0.00416405638679862, + 0.0017342108767479658, + 0.027669358998537064, + -0.001987759955227375, + 0.009270795620977879, + 0.0061111836694180965, + -0.003245753701776266, + 0.014120734296739101, + 0.024457735940814018, + -0.008256599307060242, + 0.01582406461238861, + 0.027695363387465477, + 0.010688070207834244, + 0.04270026832818985, + -0.006237958092242479, + 0.015863072127103806, + -0.02497783675789833, + 0.02439272403717041, + 0.006406990811228752, + 0.036433055996894836, + 0.013977707363665104, + 0.03612099587917328, + -0.01002494152635336, + -0.036953154951334, + -0.0017585905734449625, + 0.00237295962870121, + 0.02746131829917431, + -0.022949444130063057, + -0.005399295594543219, + 0.015459993854165077, + 0.005451305769383907, + 0.007235901430249214, + 0.00439485115930438, + 0.022091278806328773, + -0.008087566122412682, + 0.006504509598016739, + 0.017371363937854767, + 0.015303963795304298, + 0.016539203003048897, + 0.010597052052617073, + -0.028449509292840958, + -0.014029717072844505, + -0.01024598442018032, + -0.015420986339449883, + 0.0014002086827531457, + 0.03157011419534683, + 0.0011832291493192315, + 0.0327923521399498, + -0.004846688825637102, + 0.028423504903912544, + -0.005168500822037458, + 0.0004449299303814769, + 0.021428149193525314, + 0.01873662881553173, + -0.029333680868148804, + 0.02798141911625862, + -0.008893722668290138, + 0.029567725956439972, + 0.013041526079177856, + -0.0027337793726474047, + 0.009153773076832294, + -0.00757396686822176, + -0.0006940094172023237, + -0.0030832220800220966, + 0.005373290739953518, + 0.004888946656137705, + -0.01269695907831192, + -0.0060526723973453045, + -0.006563020870089531, + 0.023352522403001785, + 0.03193418309092522, + 0.008841712027788162, + 0.0026135060470551252, + 0.01107814535498619, + 0.0026167568285018206, + 0.003523682476952672, + -0.01231988612562418, + -0.020452961325645447, + -0.024444734677672386, + 0.00776250334456563, + 0.0038194896187633276, + 0.0026102554984390736, + -0.014263762161135674, + -0.01148772519081831, + 0.004671154543757439, + 0.017748437821865082, + 0.0019308739574626088, + -0.0014465301064774394, + -0.0017000793013721704, + 0.004606142174452543, + -0.007079870905727148, + -0.01705930382013321, + -0.01838556118309498, + -0.014952896162867546, + 0.015407984144985676, + -0.008913226425647736, + 0.0019129954744130373, + -0.0104020144790411, + -0.006049421615898609, + -0.0013628264423459768, + 0.004573635756969452, + -0.010798591189086437, + -0.015381978824734688, + -0.022923439741134644, + -0.002423344412818551, + -0.01938675530254841, + -0.011624251492321491, + 0.012462913990020752, + -0.013795671984553337, + 0.012664452195167542, + 0.02646012417972088, + -0.00378698343411088, + 0.012553931213915348, + -0.010883107781410217, + -0.017878461629152298, + 0.041504036635160446, + 0.009303301572799683, + 0.0048109316267073154, + -0.008165581151843071, + -0.002644387073814869, + -0.016435183584690094, + -0.022182295098900795, + -0.02497783675789833, + -0.016383172944188118, + 0.010818094946444035, + -0.015407984144985676, + 0.004342840984463692, + 0.011182165704667568, + 0.0031937435269355774, + 0.04043783247470856, + 0.0013490112032741308, + -0.025081858038902283, + -0.0034781736321747303, + -0.01588907651603222, + 0.007853521034121513, + -0.010954621247947216, + 0.02298845164477825, + 0.000888234528247267, + 0.004937706049531698, + -0.020374946296215057, + -0.0003279072407167405, + -0.013392593711614609, + -0.010610055178403854, + 0.006478504743427038, + 0.004820683505386114, + -0.0011442216346040368, + 0.012183359824120998, + 0.027851393446326256, + -0.011130155064165592, + 0.005314779467880726, + -0.004879194777458906, + -0.009732385165989399, + -0.024756794795393944, + 0.0079510398209095, + -0.007840518839657307, + -0.017748437821865082, + -0.0015919958241283894, + -0.005513067822903395, + 0.038929540663957596, + 0.02798141911625862, + 0.01832054741680622, + 0.01691627688705921, + 0.03157011419534683, + 0.01673424057662487, + -0.00256149610504508, + -0.01739736832678318, + 0.02638210915029049, + 0.007014858536422253, + 0.018346553668379784, + -0.011253679171204567, + -0.007352923974394798, + 0.031102024018764496, + -0.00639073783531785, + 0.034248631447553635, + -0.0032668826170265675, + 0.023209495469927788, + 0.028371494263410568, + 0.016162129119038582, + -0.004632147029042244, + 0.0029987057205289602, + -0.0286315456032753, + 0.009686876088380814, + 0.007151384837925434, + 0.0031628625001758337, + 0.0008215965935960412, + 0.0027987919747829437, + -0.006722301710397005, + -0.048005297780036926, + 0.005083984695374966, + -0.009927422739565372, + 0.010577548295259476, + 0.014575823210179806, + -0.024821806699037552, + -0.0002094624360324815, + -0.011968817561864853, + -0.042258184403181076, + -0.021766215562820435, + 0.02205227129161358, + 0.00832811277359724, + -0.01016146782785654, + 0.01514793373644352, + 0.004401352256536484, + 0.012417404912412167, + -0.006169694941490889, + -0.007053866051137447, + 0.022871429100632668, + -0.02357356622815132, + -0.039085570722818375, + -0.01087010558694601, + 0.017514392733573914, + 0.015928084030747414, + 0.018853651359677315, + -0.0007395182037726045, + -0.009998936206102371, + -0.012488918378949165, + -0.0140687245875597, + -0.024678779765963554, + 0.013860683888196945, + -0.018346553668379784, + -0.023079469799995422, + 0.022663388401269913, + -0.010115958750247955, + -0.004359094426035881, + -0.0036959657445549965, + 0.012833485379815102, + -0.0019259980181232095, + 0.014536815695464611, + 0.03138807788491249, + -0.0016635096399113536, + -0.00528552383184433, + -0.0002832110913004726, + 0.006046170834451914, + 0.0019194966880604625, + 0.02163618989288807, + -0.01988084986805916, + 0.03411860764026642, + -0.018697621300816536, + 0.007964042015373707, + -0.011117152869701385, + 0.014809868298470974, + -0.01399070955812931, + -0.008510148152709007, + -0.0010759583674371243, + -0.012560432776808739, + -0.01682525873184204, + 0.013496614061295986, + -0.002374584786593914, + 0.02265038713812828, + -0.02738330326974392, + 0.017449378967285156, + -0.004589888732880354, + -0.010258986614644527, + -0.006663790438324213, + 0.0249648354947567, + 0.017020296305418015, + 0.011208171024918556, + -0.03539285436272621, + 0.04223217815160751, + 0.00597140658646822, + 0.027253277599811554, + 0.015850069001317024, + 0.00288330833427608, + 0.012983014807105064, + -0.017020296305418015, + 0.011968817561864853, + 0.00018691120203584433, + -0.0040502846240997314, + 0.016448184847831726, + -0.007840518839657307, + -0.03560089319944382, + -0.027591343969106674, + -0.012957009486854076, + 0.032168228179216385, + -0.017865460366010666, + 0.021961253136396408, + -0.015316965989768505, + 0.016617218032479286, + -0.011754276230931282, + 0.017592407763004303, + 0.004648400004953146, + -0.022364331409335136, + -0.005145746748894453, + -0.005773118231445551, + 0.015186941251158714, + 0.01115616038441658, + -0.004729665815830231, + -0.03003581613302231, + -0.01431577280163765, + 0.001150722848251462, + -0.021454155445098877, + -0.022754406556487083, + -0.015264956280589104, + 0.0064427475444972515, + 0.011091147549450397, + 0.00620220135897398, + 0.033260442316532135, + 0.010219979099929333, + 0.025523943826556206, + 0.015186941251158714, + -0.01307403203099966, + 0.006215203553438187, + 0.002701273187994957, + 0.007879526354372501, + -0.017033299431204796, + 0.012469414621591568, + 0.004775174893438816, + 0.02105107717216015, + 0.008549155667424202, + -0.006576023530215025, + 0.008750694803893566, + 0.027409307658672333, + -0.013301576487720013, + -0.03385855630040169, + -0.013899692334234715, + -0.003552938112989068, + -0.011149659752845764, + 0.005441553890705109, + 0.016708236187696457, + 0.024769797921180725, + -0.012820483185350895, + -0.009979432448744774, + 0.02912564016878605, + 0.0005221323808655143, + 0.0056983535178005695, + -0.0003730097378138453, + 0.00029093134799040854, + -0.02631709724664688, + 0.04077589511871338, + 0.0060136644169688225, + -0.00010676286183297634, + -0.01904868893325329, + -0.006254211068153381, + -0.015512004494667053, + -0.03021785244345665, + 0.020921051502227783, + -0.017176326364278793, + 0.0015058540739119053, + 0.0027370301540941, + 0.0022689395118504763, + -0.006735304370522499, + 0.01315854862332344, + 0.02239033579826355, + -0.005175002384930849, + 0.015759052708745003, + -0.009959928691387177, + -0.013262568041682243, + -0.00857516098767519, + -0.015590019524097443, + -0.02730528824031353, + 0.018762633204460144, + -0.013535621576011181, + 0.012196362018585205, + 0.033754538744688034, + -0.013535621576011181, + 0.027929408475756645, + 0.015433989465236664, + -0.0027695363387465477, + 0.043168358504772186, + 0.014744855463504791, + 0.06137188524007797, + 0.03112802840769291, + -0.00916027370840311, + -0.012599440291523933, + -0.057471130043268204, + 0.0021454154048115015, + -0.01939975656569004, + 0.005867386236786842, + 0.007359425071626902, + -0.005903143435716629, + -0.01177377998828888, + 0.0052237617783248425, + 0.005152247846126556, + -0.009894915856420994, + -0.002177921822294593, + 0.055494748055934906, + 0.006185947917401791, + -0.002607004949823022, + -0.023586567491292953, + 0.006611780263483524, + -0.025081858038902283, + -3.098256274824962e-05, + -0.006325725000351667, + -0.009069256484508514, + 0.005584581755101681, + -0.0037544770166277885, + -0.021376140415668488, + 0.037499263882637024, + 0.02015390247106552, + 0.01691627688705921, + 0.00294344499707222, + 0.009933924302458763, + 0.0038942540995776653, + -0.023261504247784615, + -0.018164517357945442, + 0.026200074702501297, + -0.008048558607697487, + 0.027929408475756645, + 0.005314779467880726, + -0.01016146782785654, + 0.0056528449058532715, + -0.021519167348742485, + -0.011110651306807995, + -0.0029093134216964245, + -0.005802373867481947, + 0.016682229936122894, + -0.0037902339827269316, + -0.0067548081278800964, + 0.0030994752887636423, + 0.0015107301296666265, + 0.01331457868218422, + 0.0003421287692617625, + -0.015342971310019493, + -0.02004988305270672, + 0.005100237671285868, + 0.0019552537705749273, + 0.013704653829336166, + -0.01613612473011017, + -0.02106407843530178, + -0.023950638249516487, + -0.015121928416192532, + -0.015017908066511154, + -0.02930767647922039, + 0.006702797953039408, + 0.009751888923346996, + -0.03835742920637131, + -0.007782007101923227, + 0.008185084909200668, + 0.0053245313465595245, + 0.03846144676208496, + -0.006328975781798363, + -0.010525538586080074, + -0.011416210792958736, + 0.026707172393798828, + -0.028449509292840958, + 0.025367913767695427, + 0.04345441609621048, + 0.013717656955122948, + 0.0012384898727759719, + 0.0073074153624475, + -0.013249565847218037, + -0.021597182378172874, + 0.024522749707102776, + -0.0031482346821576357, + -0.029931796714663506, + 0.00035635026870295405, + 0.0013522618683055043, + 0.022455349564552307, + -0.01306753046810627, + -0.0002572060620877892, + 0.024171682074666023, + 0.015056915581226349, + 0.0010166344000026584, + -0.026603152975440025, + 0.009478835389018059, + 0.007925034500658512, + 0.007235901430249214, + 0.0043103345669806, + 0.018957670778036118, + -0.01031749788671732, + 0.011715268716216087, + 0.005383042618632317, + -0.0017585905734449625, + -0.014224754646420479, + -0.00767798675224185, + -0.03352048993110657, + -0.0016952032456174493, + 0.03648506477475166, + -0.001594433793798089, + 0.009296800009906292, + -0.008646674454212189, + -0.0013416972942650318, + -0.030841972678899765, + 0.020452961325645447, + -0.006507760379463434, + 0.00538954371586442, + -0.018190523609519005, + 0.029671747237443924, + -0.021129092201590538, + -0.00919278059154749, + 0.005061230156570673, + -0.01806049793958664, + -0.012261374853551388, + 0.005574829876422882, + -0.029437700286507607, + 0.004648400004953146, + -0.005308277904987335, + 0.029437700286507607, + 0.025094859302043915, + -0.051411956548690796, + -0.004957209806889296, + -0.012547429651021957, + -0.03861748054623604, + -0.03313041478395462, + -0.020908048376441002, + 0.0017862209351733327, + -0.0009727508877404034, + 0.022091278806328773, + -0.013574629090726376, + 0.021116089075803757, + -0.013730659149587154, + 0.022832421585917473, + -0.0374472513794899, + 0.0037999858614057302, + -0.010935117490589619, + 0.013496614061295986, + 0.007710493169724941, + 0.0004303020832594484, + -0.013204056769609451, + -0.004521625582128763, + 0.004151053726673126, + 0.0008394750766456127, + 0.019425762817263603, + 0.004232319537550211, + -0.023365525528788567, + -0.03013983741402626, + 0.0067548081278800964, + 0.024327712133526802, + 0.013496614061295986, + 0.013600634410977364, + 0.014016714878380299, + -0.036094989627599716, + 0.004365595523267984, + 0.028527524322271347, + 0.008997742086648941, + -0.047251150012016296, + -0.03370252624154091, + 0.013301576487720013, + -0.004342840984463692, + -0.006088429130613804, + 0.017943475395441055, + -0.03149209916591644, + -0.0013530745636671782, + -0.021922245621681213, + 0.034742727875709534, + 0.02188323810696602, + -0.01581106148660183, + 0.013009019196033478, + 0.03105001337826252, + -0.017280345782637596, + -0.020335938781499863, + 0.012657951563596725, + -0.03297438472509384, + 0.0009426825563423336, + 0.012248371727764606, + -0.012280878610908985, + 0.024184683337807655, + -0.025029847398400307, + 0.024015650153160095, + -0.005721108056604862, + 0.004173808265477419, + -0.010831097140908241, + -0.028111444786190987, + -0.01748838648200035, + 0.014588825404644012, + 0.031804159283638, + -0.02473078854382038, + 0.01939975656569004, + 0.0071968939155340195, + 0.000538791820872575, + 0.00653701601549983, + -0.020960059016942978, + -0.025823000818490982, + -0.022962447255849838, + -0.0030490905046463013, + 0.01452381256967783, + -0.020023878663778305, + -0.01848958060145378, + 0.01323656365275383, + 0.011468221433460712, + -0.023079469799995422, + 0.010428019799292088, + 0.17985083162784576, + -0.021779218688607216, + -0.0024639770854264498, + 0.03495077043771744, + -0.002686645369976759, + -0.013886689208447933, + 0.02573198266327381, + 0.013925696723163128, + -0.006748307030647993, + 0.017592407763004303, + -0.025770990177989006, + -0.007879526354372501, + 0.003978770691901445, + 0.0016854513669386506, + -0.0015424237353727221, + -0.01674724370241165, + -0.019464770331978798, + -0.002948320936411619, + -0.003327019279822707, + 0.013964704237878323, + 0.02239033579826355, + -0.027357298880815506, + -0.016695233061909676, + -0.008165581151843071, + 0.03682313114404678, + 0.0009597483440302312, + -0.0017797197215259075, + -0.0018463575979694724, + 0.03489875793457031, + -0.009719382040202618, + -0.007580467965453863, + 0.021597182378172874, + 0.0021795472130179405, + -0.017709430307149887, + -0.00948533695191145, + 0.012872492894530296, + 0.027955414727330208, + 0.0017374615417793393, + 0.040255796164274216, + 0.027175262570381165, + -0.005236763972789049, + -0.012001324445009232, + -0.006049421615898609, + -0.019009681418538094, + -0.02915164642035961, + 0.01972481980919838, + -0.010720576159656048, + -0.0010036318562924862, + -0.009641367010772228, + -0.002738655311986804, + -0.025328904390335083, + -0.02146715670824051, + 0.005584581755101681, + 0.041920118033885956, + -0.012423906475305557, + -0.02271539904177189, + 0.012657951563596725, + 0.0033741535153239965, + 0.014458799734711647, + 0.020543979480862617, + -0.024353716522455215, + 0.025927020236849785, + -0.013730659149587154, + 0.00886771734803915, + -0.030321871861815453, + -0.004336339887231588, + -0.04946157708764076, + 0.0019926358945667744, + -0.00016121090447995812, + -0.022520361468195915, + -0.026681168004870415, + -0.029619736596941948, + -0.010636059567332268, + 0.014406790025532246, + -0.026434119790792465, + -0.021506164222955704, + -0.003881251672282815, + 0.005275771953165531, + 0.014341777190566063, + 0.020856039598584175, + -0.010284991934895515, + 0.009095261804759502, + -0.011975319124758244, + -0.01460182759910822, + 0.008718188852071762, + -0.03731722757220268, + 0.015577016398310661, + -0.011344697326421738, + -0.018047494813799858, + -0.017540397122502327, + -0.0009727508877404034, + 0.004713412839919329, + 0.002868680516257882, + 0.009056254290044308, + 0.014419792219996452, + -0.010974125005304813, + 0.015368976630270481, + 0.008159080520272255, + -0.01336658839136362, + 0.027019232511520386, + -0.0239766426384449, + 0.06412842124700546, + 0.028267474845051765, + -0.016682229936122894, + -0.011136656627058983, + -0.010558044537901878, + -0.005161999724805355, + 0.014107732102274895, + 0.014224754646420479, + -0.010902611538767815, + -0.009738885797560215, + -0.03136207535862923, + 0.014497807249426842, + 0.00515874894335866, + -0.006280216388404369, + 0.021506164222955704, + -0.012417404912412167, + -0.009595857933163643, + 0.0020056383218616247, + -0.005464308429509401, + -0.008230593986809254, + -0.0013490112032741308, + -0.0015708666760474443, + -0.01077258586883545, + 0.02382061257958412, + -0.02255936898291111, + -0.04553481936454773, + 0.005613837391138077, + -0.02430170588195324, + 0.010356505401432514, + 0.022520361468195915, + 0.006787314545363188, + -0.0011401582742109895, + 0.019204718992114067, + 0.008594664745032787, + 0.020465964451432228, + -0.021779218688607216, + -0.03544486314058304, + 0.006592276506125927, + 0.015681037679314613, + 0.0053407843224704266, + -0.025510940700769424, + -0.008302107453346252, + -0.017436377704143524, + 0.02371659316122532, + -0.011097649112343788, + 8.172285743057728e-05, + -0.0011986696626991034, + -0.013035024516284466, + -0.013340584002435207, + -0.016292154788970947, + -0.008633672259747982, + 0.008269601501524448, + -0.0027289034333080053, + 0.020244920626282692, + -0.012638447806239128, + -0.0140687245875597, + -0.03141408413648605, + 0.015394981019198895, + -0.015225948765873909, + -0.016799254342913628, + -0.012514923699200153, + -0.018762633204460144, + -0.02056998386979103, + 0.0026021290104836226, + 0.009719382040202618, + -0.16351966559886932, + -0.005864135455340147, + 0.010603553615510464, + -0.03430064395070076, + 0.02023191750049591, + 0.010044445283710957, + 0.003102725837379694, + 0.008048558607697487, + -0.015303963795304298, + -0.010226480662822723, + 0.031596120446920395, + 0.01270346064120531, + -0.014705847948789597, + -0.007853521034121513, + 0.0023258253931999207, + 0.008471140637993813, + -0.013886689208447933, + 0.022364331409335136, + 0.015616023913025856, + 0.025445928797125816, + 0.015616023913025856, + -0.015485999174416065, + 0.022754406556487083, + 0.00200888910330832, + 0.009667372331023216, + 0.005106738768517971, + -0.0015334844356402755, + 0.005217260215431452, + 0.0021519167348742485, + -0.01024598442018032, + 0.005786120425909758, + -0.004336339887231588, + 0.015564014203846455, + 0.008984739892184734, + -0.0005786120309494436, + -0.02172720804810524, + 0.003747975919395685, + -0.0203099325299263, + 0.0013538871426135302, + 0.04472866281867027, + 0.019828839227557182, + 0.0015968717634677887, + -0.01031749788671732, + 0.007847019471228123, + -0.03440466150641441, + 0.0008321611676365137, + 0.009127767756581306, + -0.0023323267232626677, + -0.01591508276760578, + -0.013100037351250648, + 0.021454155445098877, + -0.021831227466464043, + -0.02614806406199932, + 0.019191715866327286, + -0.013009019196033478, + 0.03365051746368408, + 0.004420856013894081, + 0.02538091503083706, + 0.002941819839179516, + 0.0025452428963035345, + -0.009355312213301659, + -0.011429212987422943, + 0.00873769260942936, + 0.0026265087071806192, + 0.003370902733877301, + -0.02605704590678215, + 0.02038794755935669, + 0.024873817339539528, + -0.01965980790555477, + 0.005659346003085375, + 0.00046199571806937456, + -0.011520231142640114, + 0.011442216113209724, + -0.006696296855807304, + 0.006101431790739298, + -0.0015448617050424218, + -0.017345359548926353, + 0.014718850143253803, + 0.016279153525829315, + -0.006221705116331577, + -0.03822740167379379, + 0.06823721528053284, + -0.009290299378335476, + -0.017631415277719498, + 0.0027857895474880934, + 0.006524013355374336, + -0.0051977564580738544, + 0.0038682492449879646, + 0.009576354175806046, + -0.0042485729791224, + -0.017020296305418015, + -0.024015650153160095, + -0.002907688030973077, + -0.008926228620111942, + 0.012944006361067295, + 0.0037642288953065872, + 0.010258986614644527, + 0.0038422441575676203, + 0.011994822882115841, + -0.01369165163487196, + 0.011949313804507256, + -0.005331032443791628, + -0.02662915736436844, + -0.005493564065545797, + 0.016708236187696457, + 0.002104782732203603, + -0.028319483622908592, + 0.007417936809360981, + 0.024925827980041504, + -0.005649594124406576, + -0.022039268165826797, + -0.028683554381132126, + 0.034092601388692856, + 0.008718188852071762, + 0.004105545114725828, + 0.017748437821865082, + 0.0020576484967023134, + -0.023027459159493446, + 0.009049752727150917, + 0.003357900306582451, + 0.03146609291434288, + -0.017501389607787132, + -0.022286316379904747, + 0.01599309779703617, + -0.02089504711329937, + -0.024743791669607162, + -0.07536259293556213, + -0.01231988612562418, + 0.008711687289178371, + 0.02298845164477825, + 0.0208040289580822, + 0.0010442647617310286, + -0.0029531968757510185, + 0.028085438534617424, + -0.012196362018585205, + 0.01647419109940529, + -0.03981371223926544, + -0.029333680868148804, + -0.007125379983335733, + -0.002485106233507395, + 0.007326919119805098, + -0.012443410232663155, + -0.02072601392865181, + -0.031596120446920395, + -0.018164517357945442, + 0.0255629513412714, + 0.01544699165970087, + -0.007092873565852642, + -0.013178052380681038, + 0.0023485799320042133, + -0.0036894644144922495, + 0.018281539902091026, + -0.043818484991788864, + 0.01640917733311653, + 0.018099505454301834, + 0.02912564016878605, + 0.018099505454301834, + -0.022117283195257187, + 0.004713412839919329, + -0.025029847398400307, + 0.003029586747288704, + 0.015876075252890587, + -0.010167969390749931, + -0.03638104721903801, + 0.016357168555259705, + -0.03206421062350273, + -0.013132543303072453, + -0.006832823157310486, + 0.030087826773524284, + -0.01739736832678318, + 0.012970011681318283, + -0.010824596509337425, + -0.021259117871522903, + 0.004264825955033302, + -0.00969987828284502, + -0.022741403430700302, + -0.03986572101712227, + -0.012488918378949165, + -0.020166905596852303, + 0.033000390976667404, + -0.007346422877162695, + 0.011760777793824673, + -0.0023128229659050703, + -0.013925696723163128, + -0.006569522432982922, + -0.012540929019451141, + -0.012391399592161179, + 0.02639511227607727, + -0.025927020236849785, + 0.021350134164094925, + 0.003965768031775951, + 0.0012864366872236133, + -0.02722727321088314, + -0.004999468103051186, + 0.002715901006013155, + -0.004030780401080847, + -0.01244991086423397, + 0.0056105866096913815, + 0.013860683888196945, + -0.004456613212823868, + -0.03729122132062912, + -0.011708767153322697, + -0.019698815420269966, + -0.012001324445009232, + 0.0036374544724822044, + -0.024834809824824333, + -0.016760244965553284, + -0.024834809824824333, + 0.010467027314007282, + -0.016357168555259705, + 0.006419993471354246, + 0.019282734021544456, + -0.002636260585859418, + -0.034014586359262466, + 0.01382167637348175, + -0.042414214462041855, + 0.0060136644169688225, + -0.011669759638607502, + 0.030321871861815453, + -0.013483610935509205, + -0.0005981158465147018, + 0.003312391461804509, + -0.006176196038722992, + 0.011331694200634956, + 0.013587631285190582, + 0.003881251672282815, + -0.021246114745736122, + -0.02540692128241062, + -0.05193205922842026, + 0.0040112766437232494, + 0.0076584829948842525, + -0.015876075252890587, + -0.009277296252548695, + -0.006663790438324213, + 0.028735565021634102, + 0.013704653829336166, + 0.0163961760699749, + -0.0014180871658027172, + 0.006624782923609018, + -0.013210558332502842, + -0.013080533593893051, + -0.016201138496398926, + -0.014549817889928818, + -0.0026330098044127226, + 0.005903143435716629, + 0.015512004494667053, + 0.009563351981341839, + 0.01307403203099966, + -0.017449378967285156, + 0.011578742414712906, + -0.004420856013894081, + 0.0019259980181232095, + -0.01764441654086113, + 0.008692183531820774, + 0.00730091379955411, + -0.0018983676563948393, + -0.003144984133541584, + -0.011585243977606297, + -0.009303301572799683, + 0.004736167378723621, + -0.005617087706923485, + 0.024184683337807655, + 0.005552075337618589, + 0.009472334757447243, + 0.011929810047149658, + 0.029671747237443924, + 0.01715032197535038, + 0.029177650809288025, + -0.027435313910245895, + -0.018931666389107704, + 0.003913757856935263, + -0.03198619559407234, + -0.017748437821865082, + -0.0048401872627437115, + 0.01564203016459942, + -0.0044826180674135685, + 0.020361943170428276, + -0.00878320075571537, + 0.04384449124336243, + 0.0140687245875597, + 0.022364331409335136, + -0.001841481658630073, + 0.0189706739038229, + -0.028163453564047813, + 0.011949313804507256, + 0.01452381256967783, + 0.013626638799905777, + -0.031024008989334106, + 0.027903404086828232, + 0.01369165163487196, + 0.02855353057384491, + -0.004664653446525335, + 0.010213477537035942, + -0.029567725956439972, + -0.03812338411808014, + -0.02055698074400425, + 0.002623257925733924, + -0.02229931950569153, + -0.0035139305982738733, + -0.03003581613302231, + 0.002941819839179516, + 0.029489710927009583, + 0.0064134919084608555, + -0.014094729907810688, + 0.009504840709269047, + 0.007008357439190149, + 0.002964574145153165, + 0.05845932289958, + 0.015004905872046947, + -0.0013132543535903096, + -0.028579534962773323, + -0.005415548570454121, + 0.028683554381132126, + 0.0166432224214077, + -0.020413953810930252, + 0.0068263220600783825, + -0.016539203003048897, + 0.008276103064417839, + 0.003523682476952672, + 0.012209364213049412, + -0.0053537869825959206, + -0.017787445336580276, + 0.03614700213074684, + 0.008874218910932541, + 0.0034619204234331846, + -0.03385855630040169, + -0.006293218582868576, + 0.03089398331940174, + -0.009641367010772228, + 0.010252485983073711, + 0.005867386236786842, + -0.03539285436272621, + -0.008061560802161694, + 0.0017569652991369367, + 0.002876807237043977, + -0.044078536331653595, + -0.010441021993756294, + 0.010460525751113892, + -0.0005343222292140126, + 0.014367782510817051, + 0.004645149689167738, + 0.007326919119805098, + -0.012651450000703335, + 0.03682313114404678, + -0.008555657230317593, + -0.00420631468296051, + -0.022442346438765526, + 0.015720045194029808, + 8.395766781177372e-05, + 0.008360618725419044, + 0.0016399426385760307, + 0.015004905872046947, + 0.02431470900774002, + 0.012033830396831036, + -0.007788508199155331, + 0.00953734666109085, + 0.032090213149785995, + -0.02798141911625862, + 0.006962848361581564, + 0.005613837391138077, + -0.011793283745646477, + -0.02547193318605423, + -0.0056690978817641735, + -0.007235901430249214, + 0.03544486314058304, + -0.0030604677740484476, + 0.016344165429472923, + 0.11764678359031677, + 0.0359649658203125, + -0.008906724862754345, + -0.000939431949518621, + 0.0034911760594695807, + 0.04189411178231239, + 0.006969349924474955, + 0.0019390005618333817, + -0.008958734571933746, + -0.059811584651470184, + -0.0011466596042737365, + -0.010577548295259476, + -0.002520863199606538, + -0.04514474421739578, + -0.006130687426775694, + 0.022169293835759163, + 0.002554994774982333, + 0.0036212012637406588, + -0.02172720804810524, + 0.013080533593893051, + 0.02798141911625862, + 0.012371895834803581, + 0.019698815420269966, + 0.022923439741134644, + -0.02540692128241062, + -0.009959928691387177, + 0.02222130261361599, + 0.002109658671543002, + 0.01864561066031456, + -0.0036309531424194574, + -0.016175132244825363, + 0.000291134521830827, + -0.06288018077611923, + -0.024288704618811607, + 0.018333550542593002, + -0.0023648329079151154, + -0.011949313804507256, + -0.009062754921615124, + 0.03219423443078995, + 0.005275771953165531, + 0.018684618175029755, + 0.03812338411808014, + -0.024600764736533165, + -0.022286316379904747, + -0.014393787831068039, + -0.010720576159656048, + 0.007502452936023474, + -0.021103087812662125, + -0.05221811309456825 + ], + "metadata": { + "source": "Kreye_Marieke_BA_241_V2.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 17, + "has_images": true, + "image_count": 98, + "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", + "links": [], + "last_modified": "2025-05-05T23:00:23", + "_known_field_names": "frozenset({'is_continuation', 'sent_to', 'header_footer_type', 'email_message_id', 'filename', 'languages', 'detection_class_prob', 'sent_from', 'link_texts', 'cc_recipient', 'subject', 'image_mime_type', 'image_path', 'filetype', 'page_number', 'last_modified', 'signature', 'detection_origin', 'text_as_html', 'attached_to_filename', 'bcc_recipient', 'data_source', 'link_start_indexes', 'category_depth', 'emphasized_text_tags', 'parent_id', 'orig_elements', 'page_name', 'coordinates', 'url', 'link_urls', 'file_directory', 'links', 'table_as_cells', 'emphasized_text_contents', 'key_value_pairs', 'image_base64'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "Kreye_Marieke_BA_241_V2.pdf", + "detection_class_prob": 0.3422867953777313, + "parent_id": "e02392183bc6851689602ad4b9f6039f", + "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", + "id": "ce00eae5-7e07-454f-9e4f-f79ac36f92f4", + "processing_timestamp": "2025-05-05T23:15:46.977945", + "chunk_number": 18, + "total_chunks": 56, + "chunking_strategy": "hybrid", + "word_count": 509 + } +} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000019.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000019.json new file mode 100644 index 0000000000000000000000000000000000000000..421d50cf2cf089057b280e45811663399e5a67b3 --- /dev/null +++ b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000019.json @@ -0,0 +1,1570 @@ +{ + "id": "61a115b2-0ff7-441a-f6d9-eb3d00000019", + "content": "Vor dem Start des Skripts m\u00fcssen Parameter wie der Abstand zwischen den neuen B\u00e4umen, der Mindestabstand zu bestehenden B\u00e4umen sowie Baumart, Baumh\u00f6he und Kronenbreite definiert werden. Beim Starten des Skripts werden aus den OSM-Daten die in dem Gebietsausschnitt vorliegenden Stra\u00dfentypen ausgelesen. Die Eignung zur Pflanzung zus\u00e4tzlicher B\u00e4ume h\u00e4ngt vom jeweiligen Stra\u00dfentyp ab. Ein geeigneter Stra\u00dfentyp ist der Typ \u201eresidential\u201c (Wohn- und Siedlungsstra\u00dfen). Anhand des Stra\u00dfentyps wird entschieden, ob sich die Stra\u00dfe zur Bepflanzung eignet und ob der Befehl zum B\u00e4ume pflanzen ausgef\u00fchrt wird. Zudem ist die Klassifizierung der Stra\u00dfen notwendig, da jedem Stra\u00dfentyp eine Breite zugeordnet werden kann. Das Skript positioniert die neuen B\u00e4ume beidseitig versetzt entlang der Stra\u00dfe. Sollte es Stra\u00dfen ohne Klassifikationsattribute geben, werden diese von vergleichbaren Stra\u00dfen in der Umgebung \u00fcbernommen. Beispielsweise wird einer Stra\u00dfe mit dem Attribut \u201eresidential\u201c, aber ohne Information zur tats\u00e4chlichen Breite, eine Standardbreite von 6,5 Metern zugewiesen. 17\nMethodik und Toolerl\u00e4uterung\nAls Output liefert das Skript verschiedene Dateiformate, unter anderem eine shp-Datei mit den neuen B\u00e4umen, welche f\u00fcr die Simulation in SimStadt notwendig ist. Des Weiteren wird ein HTML-Link zu OSM generiert, welcher die neu gepflanzten B\u00e4ume, sowie die Bestandsb\u00e4ume visualisiert. Diese Output-Datei ist in Abbildung 5 dargestellt. [IMAGE: ]\n\n\n[IMAGE: @ Bestandsb\u00e4ume \u00a9 Neupflanzungen]\n\nAbbildung 5: Neupflanzungen im Fallstudiengebiet (Datengrundlage: CGSC und eigene Berechnung)\n\n## 3.2.2 SimStadt\n\nSimStadt ist eine Modellierungsplattform f\u00fcr urbane Energiesysteme, die an der HfT Stuttgart entwickelt und stetig weiterentwickelt wird. Die Verrechnung unterschiedlicher Daten erfolgt in sog. Workflows. Unterschiedliche Workflows erm\u00f6glichen es beispielsweise den Energiebedarf bestehender Stadtquartiere, ihr Potential zur Nutzung erneuerbarer Energien und den Wasserhaushalt zu berechnen. F\u00fcr die Durchf\u00fchrung der Simulationen m\u00fcssen verschiedene Vorgaben, in Form von Inputdaten, in das Tool eingespeist werden. Wesentliche Komponente ist eine CityGML- Datei, welche Informationen zu der Geb\u00e4udegeometrie, dem Baujahr und der Geb\u00e4udenutzung enth\u00e4lt. Des Weiteren werden meteorologische Daten ben\u00f6tigt, die in st\u00fcndlicher Aufl\u00f6sung unter anderem die solare Strahlung, die Niederschlagsmenge, die relative Feuchte und die Temperatur enthalten. Speziell f\u00fcr die im Rahmen dieser Arbeit durchgef\u00fchrten Simulationen muss die CityGML mit Baumdaten angereichert werden. Im Idealfall k\u00f6nnen diese aus dem st\u00e4dtischen Baum-/ Gr\u00fcnkataster, aus dem Amtlichen Liegenschaftskatasterinformationssystem (ALKIS) oder aus OSM-Daten gewonnen werden. Ist dies nicht der Fall, m\u00fcssen Luftbilder zur Identifikation des Baumbestands herangezogen werden und die Daten manuell in die Datei \u00fcbertragen werden. Das 3D-Geb\u00e4udemodell, welches mit den Gr\u00fcndaten angereichert wurde, flie\u00dft nun in den SimStadt-Workflow ein. 18\nMethodik und Toolerl\u00e4uterung\nAus den in der CityGML hinterlegten Daten zur Baumh\u00f6he und Kronenbreite, werden in dem Modell 3D-B\u00e4ume generiert. Beispielhaft ist Abbildung 6 das 3D-Geb\u00e4udemodell mit Gr\u00fcndaten des Fallstudiengebiets Gromb\u00fchl dargestellt.", + "embedding": [ + 0.017666196450591087, + -0.0012327012373134494, + -0.010567450895905495, + -0.021766798570752144, + -0.007152524311095476, + 0.029174769297242165, + -0.03035789355635643, + 0.014910055324435234, + -0.0038955712225288153, + -0.03541306033730507, + 0.011387571692466736, + -0.0037375972606241703, + -0.005414810497313738, + 0.0010604424169287086, + 0.005391282495111227, + 0.025208614766597748, + 0.028233647346496582, + -0.004046822898089886, + 0.03708019107580185, + 0.01872831955552101, + -0.01482938788831234, + 0.021592019125819206, + 0.029981445521116257, + -0.01035233773291111, + 0.005266919732093811, + 0.021511351689696312, + 0.00831548124551773, + -0.01546128373593092, + -0.013666430488228798, + 0.012059801258146763, + 0.00482997065410018, + -0.02125590294599533, + -0.006073595490306616, + -0.0038048201240599155, + -0.019400550052523613, + -0.00931038148701191, + -0.001414203317835927, + -0.015864621847867966, + 0.024670829996466637, + 0.013343759812414646, + 0.009969166480004787, + 0.0022385248448699713, + -0.008214646950364113, + -0.0461418479681015, + 0.008980989456176758, + -0.00211752369068563, + -0.011111957021057606, + -0.007562584243714809, + -0.021430684253573418, + 0.016187291592359543, + 0.006426515989005566, + 0.03272414207458496, + -0.025423727929592133, + 0.017975423485040665, + -0.016590628772974014, + 0.017020856961607933, + 0.002618334721773863, + -0.02098701149225235, + -0.016886411234736443, + -0.007374360226094723, + -0.0055257282219827175, + -0.005814787000417709, + -0.011703519150614738, + 0.014063045382499695, + -0.022452471777796745, + -0.0016015872824937105, + -0.017814086750149727, + -0.017840975895524025, + -0.007347470615059137, + -0.009095268324017525, + 0.014210936613380909, + 0.02855631895363331, + 0.015474728308618069, + -0.010607784613966942, + 0.03006211295723915, + 0.0025595147162675858, + 0.004507300443947315, + -0.017666196450591087, + 0.008537317626178265, + 0.003045200603082776, + 0.02030133828520775, + -0.017316637560725212, + -0.03861287608742714, + 0.0615762434899807, + 0.03681129962205887, + 0.0024704441893845797, + -0.010648118332028389, + 0.030438560992479324, + 0.008987711742520332, + -0.001207492663525045, + 0.02418682537972927, + 0.030546117573976517, + -0.01133379340171814, + 0.013834487646818161, + 0.0029275603592395782, + 0.007649973966181278, + 0.004907276947051287, + 0.018069535493850708, + 0.007636529393494129, + -0.017235970124602318, + -0.017585529014468193, + 0.00810709036886692, + -0.01525961421430111, + 0.002018369734287262, + -0.02309781312942505, + 0.010446449741721153, + -0.00427201995626092, + 0.02057022973895073, + 0.017733419314026833, + -0.025262393057346344, + -0.02963188663125038, + 0.03339637070894241, + -0.02543717250227928, + 0.004561078734695911, + 0.011125401593744755, + -0.019494662061333656, + 0.04253869503736496, + -0.00024263291561510414, + -0.016187291592359543, + -0.0013452997663989663, + 0.029578108340501785, + 0.02686229906976223, + 0.011522017419338226, + -0.014466383494436741, + 0.00853059533983469, + 0.022304581478238106, + 0.010923733003437519, + -0.011212791316211224, + -0.04439404979348183, + -0.025504395365715027, + 0.018822431564331055, + 0.006376098841428757, + 0.0019175353227183223, + 0.006181152071803808, + -0.024254048243165016, + 0.00957255158573389, + -0.030384782701730728, + -0.0032048551365733147, + -0.047486308962106705, + -0.040495119988918304, + 0.00020082862465642393, + 0.01594528928399086, + -0.01972321979701519, + -0.009754053317010403, + 0.001113380421884358, + 0.022734809666872025, + 0.02281547710299492, + 0.006870187819004059, + 0.01634862646460533, + -0.01763930730521679, + -0.0069911889731884, + -0.01765275187790394, + 0.006644990760833025, + -0.022586919367313385, + -0.0008323044166900218, + -0.03051922842860222, + 0.003868682077154517, + -0.0006617261096835136, + -0.018432538956403732, + -0.005186252295970917, + 0.025652285665273666, + 0.01566295325756073, + -0.01113212388008833, + -0.007528972811996937, + 0.022842366248369217, + 0.010977511294186115, + -0.010816176421940327, + -0.0008323044166900218, + -0.016442738473415375, + -0.015541951172053814, + -0.010338893160223961, + -0.00654079532250762, + -0.03272414207458496, + 0.021887799724936485, + -0.005192974582314491, + 0.01749141700565815, + -0.018956877291202545, + -0.0008629749063402414, + -0.007629807107150555, + -0.02110801264643669, + -0.02574639767408371, + 0.019682886078953743, + 0.0030653674621134996, + 0.03019655868411064, + -0.04926099255681038, + 0.007643251679837704, + 0.016160402446985245, + 0.003905654652044177, + 0.0012100135209038854, + 0.025827065110206604, + 0.0063088759779930115, + 0.005687063559889793, + 0.0071189128793776035, + -0.00797264464199543, + -0.6165153384208679, + 0.0006852541700936854, + -0.014452938921749592, + -0.022465916350483894, + 0.01566295325756073, + 0.032374583184719086, + 0.018432538956403732, + 0.004480411298573017, + -0.0003239306970499456, + 0.033503927290439606, + -0.001820061937905848, + -0.01942743919789791, + 0.020328227430582047, + 0.012691697105765343, + 0.0021830659825354815, + -0.026620296761393547, + -0.003095617750659585, + -0.026808520779013634, + 0.02338014915585518, + 0.014076489955186844, + -0.011488405987620354, + 0.013807598501443863, + -0.010930455289781094, + 0.012920254841446877, + 0.004359409678727388, + 0.008806209079921246, + -0.0012217775220051408, + -0.021605463698506355, + 0.017598973587155342, + 0.0104867834597826, + -0.013021090067923069, + 0.0321325808763504, + -0.012120301835238934, + 0.008597818203270435, + 0.057273972779512405, + 0.015582284890115261, + -0.02363559603691101, + 0.011582517996430397, + 0.012200969271361828, + 0.007226469460874796, + -0.005408088210970163, + -0.023944823071360588, + -0.007939033210277557, + 0.010883399285376072, + 0.012832865118980408, + 0.000977254007011652, + 0.02324570342898369, + -0.019548440352082253, + -0.0028721014969050884, + -0.01126656960695982, + 0.0129404217004776, + 0.01132034882903099, + 0.011414460837841034, + -0.028206758201122284, + 0.02687574364244938, + 0.015125168487429619, + 0.041624464094638824, + -0.02671440877020359, + 0.006281986832618713, + -0.009303659200668335, + 0.006678602192550898, + 0.027050523087382317, + -0.007750808726996183, + -0.010540561750531197, + -0.010466616600751877, + 0.039930444210767746, + -0.012140468694269657, + -0.03256280720233917, + 0.00709874602034688, + -0.040764011442661285, + -0.010318726301193237, + 0.011380849406123161, + -0.005999650340527296, + -0.013491650111973286, + 0.0007390325190499425, + 0.00812053494155407, + 0.003707346972078085, + -0.00018034662934951484, + -0.003942627459764481, + 0.00440646568313241, + 0.010661562904715538, + -0.010298559442162514, + -0.008907043375074863, + -0.020462673157453537, + 0.028583208099007607, + -0.025544729083776474, + -0.015730176120996475, + -0.009317103773355484, + 0.008779319934546947, + 0.024966612458229065, + 0.011461516842246056, + 0.021995356306433678, + -0.011911910958588123, + -0.01021789200603962, + 0.0065744067542254925, + 0.015286503359675407, + -0.008060034364461899, + 0.03135279566049576, + -0.0023007062263786793, + -0.059801556169986725, + -0.0125975850969553, + 0.02809920161962509, + 0.00825498066842556, + 0.003925821743905544, + 0.029739443212747574, + -0.0025477507151663303, + -0.024133047088980675, + 0.014022711664438248, + 0.03258969634771347, + -0.016993967816233635, + 0.005781175568699837, + 0.013310148380696774, + -0.003599790157750249, + -0.003324175952002406, + -0.021350014954805374, + -0.027480751276016235, + 0.00531733687967062, + -0.03608529269695282, + 0.019212326034903526, + 0.004712330177426338, + -0.0044636051170527935, + -0.011636296287178993, + 0.0031409934163093567, + -0.010480061173439026, + 0.01433193776756525, + 0.024267492815852165, + 0.019077880308032036, + -0.006453405134379864, + -0.020059334114193916, + -0.01419749204069376, + -0.006604657042771578, + -0.0028956294991075993, + 0.011159013025462627, + -0.007179413456469774, + 0.024106157943606377, + 0.005818148143589497, + -0.0013192507904022932, + -0.0076029179617762566, + -0.0005201377207413316, + -0.018714874982833862, + -0.015636064112186432, + -0.010923733003437519, + -0.005532450508326292, + -0.03385348990559578, + -0.013888265937566757, + 0.005428255070000887, + 0.002283900510519743, + -0.0008180195582099259, + 0.00812053494155407, + -0.0011780825443565845, + -0.02114834636449814, + -0.02995455637574196, + -0.00027666453388519585, + 0.0057005081325769424, + -0.006248375400900841, + 0.00024179262982215732, + -0.008759153075516224, + -0.013276536948978901, + -0.011871577240526676, + -0.018082980066537857, + 0.01776030845940113, + 0.019118214026093483, + -0.02614973671734333, + -0.012543806806206703, + -0.0031241877004504204, + 0.0008054152131080627, + 0.0005100542912259698, + 0.021860910579562187, + -0.00908854603767395, + -0.048481207340955734, + -0.004823248367756605, + -0.017235970124602318, + 0.013404260389506817, + 0.001662087976001203, + -0.025544729083776474, + -0.009209547191858292, + -0.027440417557954788, + 0.018580429255962372, + -0.013041256926953793, + 0.005381199065595865, + 0.0005457664956338704, + -0.00022981852816883475, + -0.005787897855043411, + -0.01667129620909691, + 0.02561195194721222, + 0.02379693277180195, + 0.022560030221939087, + -0.012073245830833912, + -0.015703286975622177, + 0.009431382641196251, + 0.007858365774154663, + 0.03092256747186184, + 0.002441874472424388, + 0.015084834769368172, + -0.006944132968783379, + 0.012920254841446877, + -0.01006327848881483, + 0.02155168540775776, + -0.002436832757666707, + 0.02965877577662468, + 0.03283169865608215, + 0.016684740781784058, + 0.03328881412744522, + 0.003962794318795204, + 0.01985766552388668, + -0.03605840355157852, + 0.02223735861480236, + -0.0018772014882415533, + 0.025383394211530685, + -0.004362770821899176, + 0.015515062026679516, + -0.0029578106477856636, + -0.039527107030153275, + 0.002463721903041005, + 0.024576717987656593, + 0.02629762701690197, + -0.011999300681054592, + -0.017572084441781044, + 0.028152979910373688, + 0.02113490179181099, + -0.005199696868658066, + 0.01578395441174507, + 0.012503473088145256, + -0.009061656892299652, + 0.004961055237799883, + 0.021484462544322014, + 0.01722252555191517, + 0.018405649811029434, + -0.004920721519738436, + -0.03901621326804161, + -0.010123779997229576, + -0.01160268485546112, + -0.01875520870089531, + -0.00468544103205204, + 0.036031514406204224, + 0.0033140925224870443, + 0.030142780393362045, + -0.003004866885021329, + 0.019225770607590675, + -0.009471716359257698, + 0.017733419314026833, + 0.021350014954805374, + 0.010708619840443134, + -0.0167654100805521, + 0.03874732181429863, + -0.004984583240002394, + 0.046088069677352905, + 0.03732219338417053, + -0.007481916807591915, + 0.0046652741730213165, + -0.006722297053784132, + -0.006046706344932318, + 0.00754913967102766, + 0.0025208613369613886, + 0.011064901016652584, + 8.25056922622025e-05, + 0.014802498742938042, + 0.009122157469391823, + 0.02463049627840519, + 0.021793687716126442, + 0.008342370390892029, + 0.011851410381495953, + 0.005102223716676235, + 0.01132034882903099, + -0.009821276180446148, + 0.012570695951581001, + -0.008839820511639118, + -0.002315831370651722, + -0.0014226061757653952, + -0.014708385802805424, + 0.018082980066537857, + -0.009733886457979679, + -0.0017948533641174436, + 0.009834720753133297, + -0.0010150668676942587, + -0.008335648104548454, + -0.00810709036886692, + -0.0023712902329862118, + 0.03103012405335903, + -0.011306904256343842, + -0.006688685622066259, + -0.021847466006875038, + -0.013189147226512432, + 0.014842832460999489, + -0.018916543573141098, + 0.0017183872405439615, + -0.0036334015894681215, + 0.006705491337925196, + 0.0010142265819013119, + -0.003334259381517768, + -0.012335414998233318, + -0.0029258797876536846, + -0.020247559994459152, + 0.004823248367756605, + 0.0016864562639966607, + -0.028287425637245178, + 0.033235035836696625, + 0.003808181267231703, + -0.0030435200314968824, + 0.029443660750985146, + -0.001274715643376112, + 0.02155168540775776, + -0.015205835923552513, + -0.03396104648709297, + 0.05566062033176422, + -0.008893598802387714, + -0.018983766436576843, + -0.0038283481262624264, + -0.009996055625379086, + -0.019803887233138084, + -0.013444594107568264, + -0.030411671847105026, + -0.012926977127790451, + 0.004154379479587078, + -0.002806558972224593, + 0.012570695951581001, + 0.0049812220968306065, + -0.005720674991607666, + 0.03863976523280144, + -0.001820061937905848, + -0.01399582251906395, + -0.015582284890115261, + -0.019951777532696724, + 0.02925543673336506, + 0.004618218168616295, + 0.02058367431163788, + 0.016563739627599716, + 0.0010797689901664853, + -0.027279082685709, + -0.010903566144406796, + -0.010150669142603874, + -0.022721365094184875, + 0.0025477507151663303, + -0.000311956595396623, + -0.010527117177844048, + -0.002273817081004381, + 0.033235035836696625, + -0.016738519072532654, + 0.0037947366945445538, + -0.003576262155547738, + -0.008127257227897644, + -0.02110801264643669, + 0.0006726498831994832, + -0.002157857408747077, + -0.02165924198925495, + -0.008732263930141926, + 0.0027359749656170607, + 0.056037068367004395, + 0.022170135751366615, + 0.009263325482606888, + 0.017383860424160957, + 0.015837732702493668, + 0.017666196450591087, + 0.0018133396515622735, + -0.02042233943939209, + 0.011434627696871758, + 0.01833842694759369, + 0.040898457169532776, + -0.0018351870821788907, + -0.005088779143989086, + 0.010224614292383194, + 0.006443321704864502, + 0.002487249905243516, + -0.003626679303124547, + 0.021780243143439293, + 0.010271670296788216, + 0.0013973974855616689, + -0.02139035053551197, + 0.011992578394711018, + -0.029551219195127487, + 0.0037510418333113194, + 0.0051190294325351715, + 0.017235970124602318, + -0.02309781312942505, + -0.0019024100620299578, + -0.005287086591124535, + -0.021995356306433678, + -0.00535094877704978, + 0.007663419004529715, + 0.0024267493281513453, + -0.00017267900693695992, + -0.012409360148012638, + -0.0016923382645472884, + -0.009787664748728275, + -0.05063234269618988, + -0.03885487839579582, + 0.032401472330093384, + -0.012678252533078194, + -0.020624008029699326, + 0.007596195675432682, + -0.008611262775957584, + 0.016335181891918182, + -0.01399582251906395, + 0.0001185855217045173, + 0.020086223259568214, + -0.021027345210313797, + -0.04345292970538139, + -0.006624823901802301, + 0.01887620985507965, + 0.008476817049086094, + 0.024563273414969444, + 0.0013537026243284345, + 0.002283900510519743, + -0.004093878902494907, + -0.026553073897957802, + -0.030035223811864853, + 0.012543806806206703, + 0.0048669432289898396, + -0.010419560596346855, + 0.01902410015463829, + -0.0322132483124733, + -0.00012572796549648046, + 0.011837964877486229, + 0.0405488982796669, + -0.009431382641196251, + 0.004749302752315998, + 0.017814086750149727, + -0.006355931982398033, + 0.0009671705192886293, + -0.02082567662000656, + 0.024563273414969444, + 0.016052845865488052, + 0.02198191173374653, + -0.019817331805825233, + 0.024307826533913612, + -0.009962444193661213, + 0.00037728893221355975, + -0.01050022803246975, + 0.022734809666872025, + -0.02222391404211521, + -0.0036098735872656107, + -0.009075101464986801, + -0.014385716058313847, + -0.007219747174531221, + 0.013115202076733112, + -0.013585763052105904, + 0.036165960133075714, + -0.012590862810611725, + 0.018405649811029434, + 0.014654607512056828, + -0.00901460088789463, + 0.021242458373308182, + 0.024549828842282295, + 0.0004987104330211878, + 0.014264714904129505, + -0.020207224413752556, + 0.04243113845586777, + 0.01874176412820816, + 0.0007449145778082311, + 0.023111257702112198, + -0.0014242867473512888, + 0.005092140287160873, + -0.015273058786988258, + 0.01567639783024788, + -0.011696796864271164, + 0.006624823901802301, + 0.022694475948810577, + 0.00010729416680987924, + -0.004060267470777035, + -0.021726464852690697, + 0.005236669443547726, + 0.009686830453574657, + -0.019077880308032036, + 0.02296336740255356, + -0.018015757203102112, + 0.010728786699473858, + -0.011206069029867649, + 0.017935089766979218, + -0.00213600997813046, + -0.020341672003269196, + -0.016173847019672394, + 0.007811309304088354, + 0.004503939300775528, + 0.02265414223074913, + -0.019333327189087868, + -0.013054701499640942, + -0.025638841092586517, + -0.007952477782964706, + -0.012563973665237427, + -0.022331470623612404, + -0.014520161785185337, + 0.0024116241838783026, + 0.009727164171636105, + 0.01691330038011074, + 0.027668975293636322, + 0.03076123259961605, + 0.030250336974859238, + 0.028475651517510414, + -0.012832865118980408, + 0.002144412836059928, + -0.004302270244807005, + -0.0037140692584216595, + -0.03968844190239906, + 0.016550295054912567, + 0.0028300872072577477, + 0.025853954255580902, + 0.01595873385667801, + 0.015743620693683624, + -0.006944132968783379, + 0.014533606357872486, + -0.020462673157453537, + -0.0237834881991148, + -0.010796009562909603, + -0.021309681236743927, + -0.008261702954769135, + -0.005004750099033117, + -0.0010108654387295246, + 0.011488405987620354, + -0.022412138059735298, + 0.0054618665017187595, + 0.014694941230118275, + -0.010318726301193237, + -0.014896610751748085, + 0.014775609597563744, + 0.006392904557287693, + -0.02979322150349617, + 0.046088069677352905, + 0.010251503437757492, + 0.020919788628816605, + -0.01876865327358246, + 0.004359409678727388, + -0.022909589111804962, + -0.017545195296406746, + 0.030680565163493156, + -0.013491650111973286, + 0.0061072069220244884, + 0.0030199920292943716, + -0.01532683800905943, + -0.01083634328097105, + 0.01719563640654087, + 0.019750108942389488, + 0.0012007703771814704, + -0.0075760288164019585, + -0.0020351754501461983, + -0.007421416230499744, + -0.01560917403548956, + -0.0010100251529365778, + -0.004409826826304197, + 0.013518539257347584, + -0.00706513412296772, + 0.0022687753662467003, + 0.026270737871527672, + -0.014721830375492573, + 0.015972178429365158, + 0.014762165024876595, + -0.010607784613966942, + 0.03525172546505928, + 0.01482938788831234, + 0.041328683495521545, + 0.024401938542723656, + -0.03119145892560482, + -0.007542417384684086, + -0.038935545831918716, + 0.007199580315500498, + -0.019481217488646507, + 0.016832632943987846, + 0.019239215180277824, + 0.012032912112772465, + -0.005401365924626589, + 0.0008268425590358675, + 0.01819053664803505, + -0.025101058185100555, + -0.006288709118962288, + 0.027937866747379303, + 0.021161790937185287, + 0.006423154845833778, + -0.028610097244381905, + -0.004598051309585571, + -0.03186368942260742, + -0.013135368935763836, + -0.0058685652911663055, + 0.0002634300326462835, + 0.01104473415762186, + -0.0115287397056818, + -0.02239869348704815, + 0.03535928204655647, + -0.0049812220968306065, + 0.02702363394200802, + 0.011555628851056099, + -0.011306904256343842, + -0.0048534986563026905, + -0.01097078900784254, + -0.014789054170250893, + 0.00845665019005537, + 0.01461427379399538, + 0.02293647825717926, + 0.026754742488265038, + -0.020207224413752556, + 0.01973666436970234, + -0.010997678153216839, + -0.010829620994627476, + -0.019118214026093483, + 0.011669907718896866, + 0.025248948484659195, + -0.011051456443965435, + 0.0020486200228333473, + -0.0039930446073412895, + -0.002391457324847579, + 0.01182452030479908, + 0.026781631633639336, + -0.017545195296406746, + -0.016993967816233635, + -0.009377604350447655, + -0.018109869211912155, + 0.00929693691432476, + -0.0037409584037959576, + 0.007643251679837704, + -0.022600363940000534, + -0.02027444913983345, + -0.018136758357286453, + -0.016402404755353928, + 0.018661096692085266, + 3.0381632313947193e-05, + -0.02296336740255356, + -0.00979438703507185, + 0.01816364750266075, + 0.00013843730266671628, + 0.0336114875972271, + 0.0016402405453845859, + -0.011743852868676186, + 0.01006327848881483, + 0.03035789355635643, + -0.022990256547927856, + 0.02547750622034073, + 0.0517347976565361, + 0.005680341273546219, + -0.013014367781579494, + -0.004782914649695158, + -0.008355814963579178, + -0.02742697298526764, + 0.0202610045671463, + -0.02085256576538086, + -0.018244314938783646, + 0.00730713689699769, + -0.01546128373593092, + -0.009196102619171143, + -0.0074617499485611916, + -0.012705141678452492, + 0.007394527085125446, + 0.0041947136633098125, + 0.022439027205109596, + -0.015864621847867966, + -0.010547284036874771, + -0.01581084355711937, + 0.0047896369360387325, + -0.01704774610698223, + 0.01462771836668253, + -0.009478438645601273, + 0.012261469848453999, + 0.014358826912939548, + -0.003771208692342043, + 0.011696796864271164, + -0.036730632185935974, + -0.030680565163493156, + 0.006026539485901594, + 0.03076123259961605, + -0.007239914033561945, + -0.013794153928756714, + -0.019064433872699738, + -0.02180713228881359, + -0.02543717250227928, + 0.01972321979701519, + -0.002707405248656869, + -0.006641629617661238, + -0.006846659816801548, + 0.03898932412266731, + -0.012516917660832405, + 0.02477838657796383, + -0.008026422932744026, + -0.01370004191994667, + -0.015353727154433727, + -0.008880154229700565, + -0.03089567832648754, + -0.006127373781055212, + -0.0059794834814965725, + 0.046921633183956146, + 0.03675752133131027, + -0.04122112691402435, + -0.004668635316193104, + -0.03232080489397049, + -0.043721821159124374, + -0.009290214627981186, + -0.003428371623158455, + -0.01251019537448883, + 0.004883748944848776, + 0.014318493194878101, + -0.003949349746108055, + 0.007757531013339758, + -0.009834720753133297, + 0.011098512448370457, + -0.03904310241341591, + 0.010184280574321747, + -0.014789054170250893, + 0.0023326370865106583, + 0.018405649811029434, + -0.0014251270331442356, + -0.030599895864725113, + 0.00262169586494565, + 0.013531983830034733, + -0.0020519811660051346, + 0.022869255393743515, + -0.0071054683066904545, + -0.01579739898443222, + -0.02363559603691101, + 0.016846077516674995, + 0.021444128826260567, + 0.022143246605992317, + -0.009767497889697552, + 0.021081123501062393, + -0.044716719537973404, + -0.0160662904381752, + 0.01816364750266075, + 0.005834953859448433, + -0.02463049627840519, + -0.03530550375580788, + -0.002211635699495673, + -0.002549431286752224, + 0.002868740353733301, + 0.01720908097922802, + -0.02420026995241642, + -0.016294848173856735, + -0.028878988698124886, + 0.023702820762991905, + 0.010809454135596752, + -0.005582867655903101, + 0.021242458373308182, + -0.0029796583112329245, + 0.001464620465412736, + -0.0022015522699803114, + 0.019064433872699738, + -0.012516917660832405, + 0.004756025038659573, + -0.003068728605285287, + -0.024401938542723656, + 0.041355572640895844, + -0.015622618608176708, + 0.018808986991643906, + 0.004823248367756605, + 0.02222391404211521, + -0.012691697105765343, + -0.026916077360510826, + -0.021215569227933884, + 0.02949744090437889, + 0.024845609441399574, + -0.012261469848453999, + 0.007744086440652609, + 0.007703752722591162, + -0.013915155082941055, + -0.010829620994627476, + -0.014896610751748085, + -0.013115202076733112, + -0.013384093530476093, + 0.0002176343696191907, + 0.00929693691432476, + -0.004487133584916592, + -0.007616362534463406, + 0.022748254239559174, + -0.002535986714065075, + -0.028448762372136116, + 0.004725774750113487, + 0.18123313784599304, + -0.013652985915541649, + 0.008060034364461899, + 0.014251270331442356, + 0.007132357452064753, + -0.001522600301541388, + 0.033100590109825134, + 0.023165035992860794, + -0.005508922506123781, + 0.016577184200286865, + -0.012906810268759727, + 0.002275497652590275, + 0.022546585649251938, + 0.005670257844030857, + 0.025275837630033493, + -0.029201658442616463, + 0.005041722673922777, + -0.013088312931358814, + 0.0067155747674405575, + -0.005579506512731314, + 0.035171058028936386, + -0.036434851586818695, + -0.016590628772974014, + -0.026069069281220436, + 0.04345292970538139, + 0.0070920237340033054, + -0.01210013497620821, + -0.004416549112647772, + 0.039096880704164505, + 0.00985488761216402, + -0.0019242576090618968, + 0.0195618849247694, + 0.014076489955186844, + -0.006806326098740101, + 0.009350715205073357, + 0.003352745668962598, + 0.03062678501009941, + 0.0024654024746268988, + 0.025921177119016647, + 0.02912099100649357, + 0.0111926244571805, + -0.022008800879120827, + -0.0002972515649162233, + -0.015757065266370773, + -0.022855810821056366, + 0.015568840317428112, + 0.00427201995626092, + 0.0038754043634980917, + 0.015730176120996475, + -0.0060567897744476795, + -0.024509495124220848, + -0.012113579548895359, + 0.028287425637245178, + 0.03304681181907654, + -0.013108479790389538, + -0.0004688802291639149, + 0.00812053494155407, + -0.011777464300394058, + 0.02912099100649357, + 0.007387804798781872, + -0.03242836147546768, + 0.014399160631000996, + -0.00619123550131917, + 0.011246402747929096, + -0.019333327189087868, + -0.01279253140091896, + -0.04662585258483887, + 0.006661796476691961, + 0.01833842694759369, + -0.02641862817108631, + -0.03664996474981308, + -0.031083902344107628, + 0.005451783072203398, + 0.009827998466789722, + -0.021995356306433678, + -0.037295304238796234, + 0.0014982320135459304, + -0.019266104325652122, + 0.041758909821510315, + 0.017827531322836876, + -0.023985156789422035, + 0.005441699642688036, + 0.0008772597648203373, + -0.013599207624793053, + 0.019642552360892296, + -0.041328683495521545, + 0.01524616964161396, + -0.02000555582344532, + -0.016160402446985245, + -0.0475669763982296, + -0.016160402446985245, + 0.008268425241112709, + 0.008288592100143433, + -0.005680341273546219, + 0.00650382274761796, + 0.0033359399531036615, + 0.013074868358671665, + 0.026499295607209206, + -0.014452938921749592, + 0.011199346743524075, + -0.013337037526071072, + 0.06254425644874573, + 0.022331470623612404, + -0.027910977602005005, + -0.03162168711423874, + 0.010896843858063221, + -0.00923643633723259, + 0.00845665019005537, + -0.006097123492509127, + -0.010016222484409809, + -0.008954099379479885, + -0.038962434977293015, + 0.006315598264336586, + -0.014305048622190952, + 0.00100414315238595, + 0.01279253140091896, + -0.00043905002530664206, + -0.02922854758799076, + -0.011938800103962421, + -0.013874821364879608, + -0.020382005721330643, + 0.0003936745342798531, + -0.031406573951244354, + 0.02403893508017063, + 0.018782097846269608, + -0.010043111629784107, + -0.053240593522787094, + -0.006668518763035536, + -0.015205835923552513, + 0.0037678475491702557, + 0.011844687163829803, + -0.008557484485208988, + -0.008900321088731289, + 0.01638896018266678, + 0.011353960260748863, + 0.00464846845716238, + -0.006863465532660484, + -0.043694932013750076, + -0.0022990256547927856, + 0.013794153928756714, + 0.034767720848321915, + -0.006944132968783379, + -0.005885371007025242, + -0.023393593728542328, + 0.003576262155547738, + -0.0030300754588097334, + 0.0002972515649162233, + -0.009263325482606888, + -0.01819053664803505, + -0.019615663215517998, + -0.013693319633603096, + -0.004403104539960623, + 0.007018078118562698, + -0.014036156237125397, + 0.024509495124220848, + -0.006157624069601297, + -0.007421416230499744, + -0.03062678501009941, + 0.003379634814336896, + -0.0069911889731884, + -0.01634862646460533, + -0.01664440706372261, + -0.0025595147162675858, + -0.01677885465323925, + -0.009673385880887508, + -0.004154379479587078, + -0.17036989331245422, + 0.011858132667839527, + 0.024657385423779488, + -0.04011866822838783, + 0.0143453823402524, + 0.0035460118670016527, + 0.0023309565149247646, + -0.00831548124551773, + -0.0016335182590410113, + 0.0030485617462545633, + 0.034203048795461655, + 0.004534189589321613, + -0.021578574553132057, + -0.0018133396515622735, + 0.0014822665834799409, + -0.0013041256461292505, + 0.0007331505184993148, + 0.029981445521116257, + 0.028986545279622078, + 0.019266104325652122, + -0.01273203082382679, + -0.02613629214465618, + 0.01845942810177803, + 0.014694941230118275, + 0.0047224136069417, + -0.010681729763746262, + -0.004140934906899929, + 0.03468705341219902, + -0.006181152071803808, + -0.018015757203102112, + 0.009209547191858292, + -0.014694941230118275, + -0.005653452128171921, + -0.014493272639811039, + -0.0008974266820587218, + -0.018634207546710968, + 0.006124012637883425, + 0.002431791042909026, + -0.02321881428360939, + 0.02740008383989334, + 0.011831242591142654, + 0.007979366928339005, + -0.011737130582332611, + -0.008651596494019032, + -0.010782564990222454, + 0.0031746048480272293, + 0.0259077325463295, + 0.009364159777760506, + -0.006342487409710884, + -0.002729252679273486, + -0.003999766893684864, + -0.004480411298573017, + -0.0108497878536582, + 0.019266104325652122, + -0.0025376672856509686, + 0.020220668986439705, + 0.0010528798447921872, + 0.024159936234354973, + -0.00102262943983078, + 0.0003890529624186456, + -0.020677786320447922, + -0.01718219183385372, + 0.020812232047319412, + 0.030976345762610435, + -0.019225770607590675, + -0.022734809666872025, + 0.013296703808009624, + 0.027332860976457596, + -0.028448762372136116, + 0.011448072269558907, + -0.023702820762991905, + 0.005569423083215952, + 0.030573006719350815, + -0.01987111009657383, + 0.007851643487811089, + -0.0007486958638764918, + -0.011589240282773972, + 0.01413026824593544, + 0.013753820210695267, + -0.00626181997358799, + -0.030384782701730728, + 0.07593506574630737, + -0.016415849328041077, + -0.03135279566049576, + 0.017545195296406746, + 0.010406116023659706, + -0.0006369376787915826, + 0.01413026824593544, + 0.018298093229532242, + 0.01097078900784254, + -0.01778719760477543, + -0.03291236609220505, + -0.018082980066537857, + -0.0122345807030797, + 0.01595873385667801, + -0.002648585010319948, + -9.400712588103488e-05, + -0.02196846716105938, + 0.004093878902494907, + -0.004819887224584818, + 0.021605463698506355, + -0.005085418000817299, + -0.037268415093421936, + 0.0125975850969553, + 0.0038888489361852407, + -0.008154146373271942, + -0.007192858029156923, + 0.011649740859866142, + 0.01984422095119953, + -0.007737364154309034, + -0.011199346743524075, + -0.004500578157603741, + 0.01930643804371357, + 0.0009705316624604166, + 0.02225080318748951, + 0.00748863909393549, + -0.006776075344532728, + -0.014466383494436741, + 0.006560962181538343, + -0.0030519228894263506, + 0.01070189755409956, + 0.005192974582314491, + -0.012664807960391045, + 0.014452938921749592, + 0.0058416761457920074, + -0.020489562302827835, + -0.07157901674509048, + -0.013794153928756714, + 0.006157624069601297, + 0.017303192988038063, + -0.00818103551864624, + 0.009256603196263313, + 0.004796359222382307, + 0.005720674991607666, + -0.023312926292419434, + 0.003949349746108055, + -0.04684096574783325, + -0.03675752133131027, + 0.005421532783657312, + -0.010009500198066235, + 0.019803887233138084, + -0.00845665019005537, + -0.03159479796886444, + -0.01833842694759369, + 0.017867865040898323, + 0.021605463698506355, + -0.0083961496129632, + -0.02391793392598629, + -0.01957532949745655, + -0.006130734924226999, + 0.024159936234354973, + 0.011770742014050484, + -0.024657385423779488, + -0.0017242692410945892, + 0.02489938959479332, + 0.0230574794113636, + -0.0015494894469156861, + -0.026337960734963417, + 0.03229391574859619, + -0.004181268624961376, + 0.0036065124440938234, + 0.014036156237125397, + -0.019467772915959358, + -0.016012512147426605, + 0.021645797416567802, + -0.02895965613424778, + -0.003677096450701356, + -0.00782475434243679, + 0.013047979213297367, + -0.022694475948810577, + -0.004285464528948069, + -0.01314209122210741, + -0.01273203082382679, + 0.01929299347102642, + -0.008638151921331882, + -0.017719974741339684, + -0.030868789181113243, + -0.007562584243714809, + -0.025074169039726257, + 0.007293692324310541, + 0.003519122488796711, + 0.01564950868487358, + -0.020637452602386475, + -0.009713719598948956, + -0.014654607512056828, + 0.0007297893753275275, + -0.003663651878014207, + 0.02532961592078209, + -0.018150202929973602, + 0.03199813514947891, + 0.004419910255819559, + 0.015999067574739456, + -0.03678441047668457, + -0.015528506599366665, + 0.0037174304015934467, + -0.005989566911011934, + -0.034068603068590164, + 0.01176401972770691, + 0.0039930446073412895, + -0.006426515989005566, + -0.022318026050925255, + -0.008160868659615517, + -0.03151413053274155, + -0.02839498408138752, + 0.016993967816233635, + -0.035197947174310684, + -0.007226469460874796, + -0.01765275187790394, + 0.0392044372856617, + -0.02391793392598629, + 0.017437638714909554, + 0.0023309565149247646, + -0.0023645679466426373, + -0.023581817746162415, + 0.0080331452190876, + -0.037698641419410706, + 0.02393137849867344, + -0.013222758658230305, + 0.007717197295278311, + -0.008732263930141926, + 0.003982961177825928, + 0.005129112862050533, + 0.009431382641196251, + 0.02266758680343628, + -0.020462673157453537, + -0.0036468461621552706, + -0.04745941981673241, + -0.0091019906103611, + -0.05990911275148392, + 0.010399393737316132, + 0.01761241815984249, + -0.02211635746061802, + -0.018526650965213776, + -0.008651596494019032, + 0.010385949164628983, + -0.009417938068509102, + 0.01634862646460533, + -0.00860454048961401, + -0.0001221567508764565, + -0.015071390196681023, + -0.007670141290873289, + 0.007112190593034029, + -0.01792164519429207, + -0.013646263629198074, + 0.0027695863973349333, + -0.0188896544277668, + 0.009841443039476871, + 0.018943432718515396, + 0.00427201995626092, + -0.009881776757538319, + 0.0160931795835495, + -0.01105817873030901, + -0.018822431564331055, + -0.004708969034254551, + -0.005828231573104858, + 0.013357204385101795, + -0.006033261772245169, + -0.013357204385101795, + -0.00036426447331905365, + -0.0026300987228751183, + -0.01735697127878666, + 0.012019467540085316, + 0.0004945090040564537, + 0.009464994072914124, + 0.0035527341533452272, + 0.03049233928322792, + 0.016294848173856735, + 0.07260081171989441, + -0.03788686543703079, + -0.017316637560725212, + 0.00040165724931284785, + -0.034955944865942, + -0.004843415226787329, + 0.01146823912858963, + 0.015689842402935028, + 0.00023317968589253724, + 0.006725658196955919, + -0.02949744090437889, + 0.039231326431035995, + 0.014399160631000996, + 0.01482938788831234, + -0.01790819875895977, + 0.029981445521116257, + -0.02601529099047184, + 0.0007982727838680148, + 0.024791831150650978, + -0.004040100611746311, + -0.04071023315191269, + 0.04641073942184448, + 0.02055678516626358, + 0.017477972432971, + -0.0032586336601525545, + 0.01027839258313179, + -0.02672785334289074, + -0.014802498742938042, + -0.006809687241911888, + 0.004140934906899929, + -0.013753820210695267, + -0.007851643487811089, + -0.014278159476816654, + -0.008651596494019032, + 0.028852099552750587, + 0.006517267320305109, + 0.010312004014849663, + 0.02366248518228531, + -0.009559107013046741, + -0.01217408012598753, + 0.046652741730213165, + 0.024845609441399574, + 0.009061656892299652, + -0.02949744090437889, + -0.0009117115405388176, + 0.004006489180028439, + -0.01532683800905943, + -0.004345965106040239, + 0.009276770055294037, + -0.009612885303795338, + -0.006221486255526543, + 0.00291915750131011, + 0.02266758680343628, + 0.013767264783382416, + 0.001341938623227179, + 0.014694941230118275, + 0.01945432834327221, + -0.00591226015239954, + -0.004319075960665941, + 0.013666430488228798, + 0.015770509839057922, + -0.028314314782619476, + 0.01217408012598753, + -0.002356165088713169, + -0.044824276119470596, + 0.014264714904129505, + 0.008234813809394836, + -0.004913999233394861, + -0.022156691178679466, + -0.0015099960146471858, + 0.011441349983215332, + 0.008006256073713303, + 0.010876676999032497, + 0.005199696868658066, + 0.006483655422925949, + 0.0027309332508593798, + 0.037429749965667725, + 0.0006944973138161004, + -0.014883166179060936, + -0.028771432116627693, + 0.02432127110660076, + 0.01832498237490654, + -0.00416446290910244, + 0.0033224953804165125, + -0.0006844138843007386, + 0.0251951701939106, + 0.010654840618371964, + -0.015999067574739456, + -0.01689985580742359, + 0.029981445521116257, + -0.027332860976457596, + -0.004019933752715588, + -0.001825103652663529, + -0.020771898329257965, + -0.026109402999281883, + 0.005011472385376692, + -0.01524616964161396, + 0.0244691614061594, + 0.0016385599737986922, + 0.007421416230499744, + 0.11981822550296783, + 0.035063501447439194, + 0.005340864881873131, + -0.017424194142222404, + -0.01595873385667801, + 0.02071812003850937, + -0.0030536034610122442, + 0.012537084519863129, + -0.006671879906207323, + -0.04802409186959267, + -0.006527350749820471, + -0.018795542418956757, + -0.0008671763353049755, + -0.03522483631968498, + 0.011165735311806202, + 0.014466383494436741, + -0.03162168711423874, + 0.021874355152249336, + -0.018929988145828247, + 0.02015344612300396, + 0.038263317197561264, + -0.0010974149918183684, + 0.027803421020507812, + 0.03334259241819382, + -0.02656651847064495, + -0.021309681236743927, + 0.0005470269243232906, + -0.013108479790389538, + 0.011555628851056099, + -0.004282103385776281, + -0.01720908097922802, + 0.01273203082382679, + -0.06421138346195221, + -0.03388037905097008, + 0.00015629340487066656, + -0.00027561417664401233, + -0.0007802066393196583, + -0.011696796864271164, + 0.029578108340501785, + 0.004319075960665941, + 0.020798787474632263, + 0.00583831500262022, + -0.020758453756570816, + -0.03589706867933273, + -0.012200969271361828, + -0.01704774610698223, + -0.011918633244931698, + -0.01694018952548504, + -0.03326192498207092 + ], + "metadata": { + "source": "Kreye_Marieke_BA_241_V2.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 17, + "has_images": true, + "image_count": 98, + "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", + "links": [], + "last_modified": "2025-05-05T23:00:23", + "_known_field_names": "frozenset({'is_continuation', 'sent_to', 'header_footer_type', 'email_message_id', 'filename', 'languages', 'detection_class_prob', 'sent_from', 'link_texts', 'cc_recipient', 'subject', 'image_mime_type', 'image_path', 'filetype', 'page_number', 'last_modified', 'signature', 'detection_origin', 'text_as_html', 'attached_to_filename', 'bcc_recipient', 'data_source', 'link_start_indexes', 'category_depth', 'emphasized_text_tags', 'parent_id', 'orig_elements', 'page_name', 'coordinates', 'url', 'link_urls', 'file_directory', 'links', 'table_as_cells', 'emphasized_text_contents', 'key_value_pairs', 'image_base64'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "Kreye_Marieke_BA_241_V2.pdf", + "detection_class_prob": 0.3422867953777313, + "parent_id": "e02392183bc6851689602ad4b9f6039f", + "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", + "id": "ce00eae5-7e07-454f-9e4f-f79ac36f92f4", + "processing_timestamp": "2025-05-05T23:15:46.977945", + "chunk_number": 19, + "total_chunks": 56, + "chunking_strategy": "hybrid", + "word_count": 422 + } +} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000020.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000020.json new file mode 100644 index 0000000000000000000000000000000000000000..50f5be1371165223d9a9b246d09754eed2ee052b --- /dev/null +++ b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000020.json @@ -0,0 +1,1570 @@ +{ + "id": "61a115b2-0ff7-441a-f6d9-eb3d00000020", + "content": "18\nMethodik und Toolerl\u00e4uterung\nAus den in der CityGML hinterlegten Daten zur Baumh\u00f6he und Kronenbreite, werden in dem Modell 3D-B\u00e4ume generiert. Beispielhaft ist Abbildung 6 das 3D-Geb\u00e4udemodell mit Gr\u00fcndaten des Fallstudiengebiets Gromb\u00fchl dargestellt. [IMAGE: ]\n\nAbbildung 6: 3D-Geb\u00e4udemodell mit Baumdaten Fallstudiengebiet Gromb\u00fchl (Datengrundlage: CSGC)\nZwei spezifische Workflows sind f\u00fcr die anstehenden Simulationen von Bedeutung: Heat Demand Calculation with Shadow Processing und Green Water Analysis. Der Workflow Heat Demand Calculation with Shadow Processing berechnet die Heiz- und K\u00fchlbedarfe der Wohngeb\u00e4ude unter Ber\u00fccksichtigung der Verschattung der Geb\u00e4ude untereinander und der Verschattung der Geb\u00e4ude durch B\u00e4ume. Da die Verschattungseffekte je nach Jahreszeit variieren, wird die Vegetationsperiode des Baums in der Simulation ber\u00fccksichtigt. Das Ergebnis dieses Workflows umfasst die monatlichen Heiz- und K\u00fchlbedarfe, sowie die spezifischen Heiz- und K\u00fchlbedarfe je Quadratmeter Wohnfl\u00e4che der Geb\u00e4ude inklusive des Verschattungseffekts. Der Workflow Green Water Analysis wird zur Berechnung des Wasserhaushalts eines Baums genutzt. F\u00fcr die folgenden Szenarien dient er als Grundlage zur Bestimmung der Evapotranspiration. Die Evapotranspirationsrate kann durch eine Ver\u00e4nderung des Stressfaktors beeinflusst werden. \u00dcber den Stressfaktor wird festgelegt, ab welcher nat\u00fcrlich vorkommenden Wassermenge der Baum zus\u00e4tzlich k\u00fcnstlich bew\u00e4ssert werden soll. F\u00fcr die folgende Simulationen wurde der Stressfaktor auf 0,0 festgelegt. Folglich findet keine k\u00fcnstliche Bew\u00e4sserung der B\u00e4ume statt. Als Ergebnis des Green Water Analysis Workflows wird eine CSV-Datei generiert. Diese Datei enth\u00e4lt neben Daten zum st\u00fcndlichen Abfluss und der st\u00fcndlichen Regenmenge die Summe der st\u00fcndlichen Evapotranspiration aller der im Quartier vorkommenden B\u00e4ume. Zudem wird f\u00fcr den gr\u00f6\u00dften Baum jeder Spezies die st\u00fcndliche Evapotranspiration sowie die Menge an Wasser, die dem Baum fehlt, ausgewiesen. 19\nModellhafte Analyse des Mobilit\u00e4tsverhaltens\n\n## 4 Modellhafte Analyse des Mobilit\u00e4tsverhaltens\n\nDas Mobilit\u00e4tsverhalten der Bev\u00f6lkerung ist von verschiedenen Faktoren abh\u00e4ngig. Ausgehend von der st\u00e4dtebaulichen Typologie \u00e4ndert sich die Wahl des Verkehrsmittels mit der Sozialstruktur der Einwohner und der Lage des Quartiers im Stadtbezug. Die Wahl des Verkehrsmittels der Bev\u00f6lkerung ver\u00e4ndert den Modal Split innerhalb des Stadtquartiers und den daraus resultierenden Raumbedarf f\u00fcr Park- und Verkehrsfl\u00e4chen. Eine Verringerung des MIV zugunsten alternativer Mobilit\u00e4tsformen schafft freie Fl\u00e4chen im Stra\u00dfenraum. F\u00fcr die folgenden Szenarien wird diese freiwerdende Fl\u00e4che genutzt, um den Anteil des Stadtgr\u00fcns zu erh\u00f6hen. In den im Rahmen dieser Arbeit durchgef\u00fchrten Simulationen liegt der Fokus auf der Untersuchung, wie sich das Pflanzen von Stadtb\u00e4umen auf den thermischen Geb\u00e4udeenergiebedarf und die Temperaturabsenkung durch Evapotranspiration auswirkt. Dieses Kapitel baut auf den von Drees & Sommer ermittelten und im Rahmen des Forschungsprojekts CGSC zur Verf\u00fcgung gestellten Daten auf. ## 4.1 Quartiersarchetypen\n\nDie Besiedlungsformen von St\u00e4dten lassen sich in verschiedene Quartiersarchetypen unterteilen. Die Zuordnung erfolgt auf Basis verallgemeinernder Charakteristika in Bezug auf geographische, st\u00e4dtebauliche, energetische, demographische sowie verkehrliche Besonderheiten. Auf Grundlage dieser Faktoren hat Drees & Sommer zehn Quartiersarchetypen definiert (vgl.", + "embedding": [ + 0.013062548823654652, + 0.0015837425598874688, + 0.014120594598352909, + -0.029039716348052025, + -0.00671094236895442, + 0.022438570857048035, + -0.032340288162231445, + -0.005519808270037174, + -0.01827292889356613, + -0.043333325535058975, + 0.0022109178826212883, + 0.010274363681674004, + -0.00910984631627798, + -0.003215729258954525, + -0.00273495027795434, + -0.003470259252935648, + 0.03489556908607483, + -0.006667688954621553, + 0.03058353252708912, + 0.010454031638801098, + -0.0014930765610188246, + 0.023742828518152237, + 0.020934680476784706, + -0.018286237493157387, + 0.008005219511687756, + 0.03484233468770981, + 0.016596024855971336, + -0.020442256703972816, + 0.0020329132676124573, + 0.012317257933318615, + 0.009143118746578693, + -0.010986382141709328, + -0.011525386944413185, + 0.003783015301451087, + -0.01420044805854559, + -0.0023905860725790262, + 0.0008592468802817166, + -0.007506140973418951, + 0.021014533936977386, + 0.006790794897824526, + 0.0002609764924272895, + -0.01764741726219654, + -0.006112048402428627, + -0.024408267810940742, + 0.0015030581271275878, + 0.011192667298018932, + -0.0035667477641254663, + -0.01593058742582798, + -0.01977681741118431, + 0.011106160469353199, + 0.022771289572119713, + 0.04168303683400154, + -0.027216415852308273, + 0.009395984932780266, + -0.023942461237311363, + 0.006215191446244717, + -0.009029993787407875, + -0.010946455411612988, + -0.005220361519604921, + -0.015038899146020412, + -0.019603803753852844, + 0.007426288444548845, + -0.02255835011601448, + 0.013195635750889778, + -0.03596027195453644, + -0.007732389960438013, + -0.016569407656788826, + -0.009562344290316105, + 0.010008187964558601, + -0.015438162721693516, + 0.019004909321665764, + 0.029944712296128273, + 0.022185703739523888, + -0.006657707504928112, + 0.030343974009156227, + -0.004797808360308409, + 0.014559783972799778, + -0.008298012427985668, + -0.022225629538297653, + 0.013195635750889778, + 0.00427543930709362, + -0.018099915236234665, + -0.02029586024582386, + 0.043280091136693954, + 0.02364966832101345, + 0.01577088050544262, + -0.002405558479949832, + 0.03191440925002098, + -6.425636092899367e-05, + 0.020042993128299713, + 0.008304666727781296, + 0.008650694042444229, + 0.008058454841375351, + 0.015664411708712578, + -0.013681406155228615, + -0.010261054150760174, + -0.0013774567050859332, + 0.01535831019282341, + 0.011505424045026302, + -0.012124281376600266, + -0.02174651436507702, + 0.01688881777226925, + -0.027948398143053055, + -0.009748667478561401, + -0.023303639143705368, + 0.0020944662392139435, + 0.004538287408649921, + 0.01879196986556053, + 0.021174238994717598, + -0.03276616707444191, + -0.023250404745340347, + 0.04343979433178902, + -0.008670657873153687, + -0.026058552786707878, + 0.019271085038781166, + -0.031169118359684944, + 0.03529483452439308, + -0.0029279273003339767, + -0.010440723039209843, + -0.008071763440966606, + 0.019763508811593056, + -0.0017384568927809596, + 0.018805278465151787, + -0.020229315385222435, + 0.004322019871324301, + 0.017314696684479713, + 0.001290949760004878, + -0.015651103109121323, + -0.03691850230097771, + -0.029199421405792236, + -0.020695121958851814, + 0.009096537716686726, + 0.0004920082283206284, + 0.0017567564500495791, + -0.03526821732521057, + 0.017301388084888458, + -0.016516171395778656, + 0.004727937281131744, + -0.032473374158144, + -0.04168303683400154, + -0.01904483698308468, + 0.006624435540288687, + -0.01420044805854559, + -0.00843110028654337, + 0.015611176379024982, + 0.031195735558867455, + 0.018818587064743042, + 0.024421576410531998, + 0.007020371034741402, + -0.023662976920604706, + -0.008045146241784096, + -0.0010830004466697574, + 0.02613840624690056, + -0.000810170779004693, + -0.004308711271733046, + -0.0018266274128109217, + -0.014240373857319355, + 0.01852579414844513, + -0.0371580608189106, + -0.01915130577981472, + 0.013062548823654652, + -0.005679513793438673, + -0.002027922309935093, + 0.006351605989038944, + 0.01541154459118843, + 0.007053642999380827, + -0.005306868348270655, + -0.0005760198109783232, + -0.005393375176936388, + -0.015730954706668854, + -0.010633699595928192, + 0.013149055652320385, + -0.029838241636753082, + 0.01767403446137905, + 0.005992269609123468, + 0.02510032244026661, + 0.00437858235090971, + -0.0009266224806196988, + -0.01601043902337551, + -0.0284541305154562, + -0.026098480448126793, + 0.009336095303297043, + 0.008730546571314335, + 0.009063266217708588, + -0.029838241636753082, + 0.0020196044351905584, + 0.025898847728967667, + 0.01362817082554102, + -0.006361587438732386, + -0.00042837572982534766, + 0.007339781615883112, + -0.0035234943497925997, + 0.013415230438113213, + -0.00019297702237963676, + -0.6277475953102112, + 0.015531323850154877, + -0.0034902223851531744, + -0.01342188473790884, + 0.007938675582408905, + 0.031275589019060135, + 0.029997946694493294, + 0.006128684151917696, + 0.00010101141378981993, + 0.025060396641492844, + 0.007459560409188271, + 0.00517045333981514, + 0.005429974291473627, + 0.005193743854761124, + -0.01770065166056156, + -0.02065519616007805, + -0.0005776833859272301, + -0.01582411676645279, + 0.03151514381170273, + 0.020522108301520348, + -0.03202087804675102, + 0.01849917694926262, + -0.007559375837445259, + 0.017847048118710518, + 0.010919838212430477, + 0.012643322348594666, + -0.005097255110740662, + -0.029359126463532448, + 0.018326163291931152, + 0.008916869759559631, + -0.018366089090704918, + 0.024341722950339317, + -0.006980444770306349, + 0.032260436564683914, + 0.04290744289755821, + 0.019710274413228035, + -0.022930994629859924, + 0.018964983522892, + 0.01014793012291193, + 0.011658473871648312, + -0.023849299177527428, + -0.012430382892489433, + -0.0020562035497277975, + 0.022358717396855354, + 0.0013816157588735223, + 0.017394550144672394, + 0.017807122319936752, + -0.011345718055963516, + -0.001696866936981678, + -0.013408576138317585, + 0.0022009362000972033, + 0.0008883597911335528, + 0.011818179860711098, + -0.0006575359730049968, + 0.027003474533557892, + 0.00762591976672411, + 0.009775284677743912, + -0.017088448628783226, + 0.004694665316492319, + 0.001444000517949462, + -0.000741131603717804, + 0.0017567564500495791, + -0.010320943780243397, + -0.005583025049418211, + -0.020229315385222435, + 0.05579032376408577, + -0.020335786044597626, + -0.022465188056230545, + 0.011937958188354969, + -0.039926283061504364, + -0.01316236425191164, + 0.027083327993750572, + -0.008883597329258919, + -0.0040458631701767445, + 0.017940210178494453, + 0.024448193609714508, + 0.03920760750770569, + -0.018831895664334297, + -0.00452830595895648, + 0.011525386944413185, + 0.001689380849711597, + -0.01748771220445633, + -0.010653662495315075, + -0.009502454660832882, + 0.02026924304664135, + -0.03401719406247139, + -0.009489146061241627, + 0.0029179458506405354, + 0.003363789292052388, + 0.008364556357264519, + 0.0226115845143795, + 0.01879196986556053, + -0.016183452680706978, + -0.01223740540444851, + 0.0034369875211268663, + 0.033538077026605606, + -0.002051212824881077, + 0.047751832753419876, + 0.00841779075562954, + -0.05941030755639076, + -0.02141379565000534, + 0.008517607115209103, + 0.02850736491382122, + 0.0032573190983384848, + -0.003152512712404132, + 0.006933864206075668, + -0.022491805255413055, + 0.0051039098761975765, + 0.03931408002972603, + -0.01827292889356613, + -0.009402639232575893, + -0.00968212354928255, + 0.0013125764671713114, + -0.018099915236234665, + -0.0027648950926959515, + -0.030237503349781036, + 0.0337776355445385, + -0.022305482998490334, + 0.008903561159968376, + 0.008371210657060146, + 0.0022042635828256607, + -0.0048177712596952915, + 0.008218159899115562, + -0.013801184482872486, + 0.007532758638262749, + 0.020029684528708458, + 0.016981977969408035, + -0.013195635750889778, + -0.020202698186039925, + -0.001482263207435608, + 0.003876176429912448, + 0.013867728412151337, + 0.03968672454357147, + -0.0021976090501993895, + 0.03739761561155319, + -0.00957565288990736, + 0.025193484500050545, + -0.012616705149412155, + -0.0003709816955961287, + -0.03183455392718315, + -0.00957565288990736, + -0.012463654391467571, + -0.0015995466383174062, + -0.04607493057847023, + -0.013475120067596436, + -0.019790127873420715, + -0.011864759959280491, + 0.010094694793224335, + 0.007333127316087484, + -0.004435144364833832, + -0.032340288162231445, + 0.006564546376466751, + -0.0009341086260974407, + 0.012037773616611958, + 0.008683966472744942, + 0.010520575568079948, + -0.00789874978363514, + -0.022145777940750122, + -0.0022990882862359285, + -0.013441848568618298, + 0.00506065646186471, + 0.00658118212595582, + -0.04192259535193443, + 0.005583025049418211, + -0.010394142009317875, + -0.014440005645155907, + -0.0016536135226488113, + 0.0023889224976301193, + -0.023875916376709938, + -0.038808345794677734, + -0.01534500066190958, + -0.01868549920618534, + -0.003999282605946064, + 0.012623359449207783, + -0.023316947743296623, + -0.007186730857938528, + -0.017208227887749672, + 0.013787875883281231, + -0.014040742069482803, + -0.008311321027576923, + 0.018712118268013, + -0.008111689239740372, + -0.01068028062582016, + -0.022358717396855354, + 0.021972764283418655, + 0.020575344562530518, + 0.02722972445189953, + 0.020176080986857414, + -0.014080668799579144, + 0.01707514002919197, + 0.02528664469718933, + 0.04913594573736191, + -0.010241091251373291, + 0.017288079485297203, + -0.011884722858667374, + -0.0025519549380987883, + 0.0035667477641254663, + 0.012430382892489433, + -0.021679971367120743, + 0.019949832931160927, + 0.039021287113428116, + 0.014373461715877056, + 0.018925057724118233, + 0.012190824374556541, + 0.017008597031235695, + -0.031302206218242645, + 0.0003743089037016034, + 0.007106878329068422, + 0.03832923248410225, + 0.015225222334265709, + 0.024567972868680954, + -0.002267480129376054, + -0.04389229416847229, + 0.005100582726299763, + -0.0003418687847442925, + 0.03287263959646225, + -0.013641479425132275, + -0.008264739997684956, + -0.003392070299014449, + 0.0026118443347513676, + 0.013315415009856224, + 0.0010547193232923746, + 0.014692871831357479, + 0.0003487311187200248, + -0.003580056596547365, + 0.009934989735484123, + -0.007619265466928482, + 0.011718363501131535, + 0.0015621157363057137, + -0.021786442026495934, + -0.014666254632174969, + 0.011791561730206013, + 0.0027881853748112917, + 0.005792638286948204, + 0.0066876523196697235, + 0.021453721448779106, + 0.013814494013786316, + -0.0038628678303211927, + 0.022824523970484734, + -0.006697633769363165, + 0.015917276963591576, + 0.015371618792414665, + -0.0010405787033960223, + -0.015584559179842472, + 0.035747330635786057, + -0.004737918730825186, + 0.021480340510606766, + 0.025765759870409966, + -0.002635134616866708, + 0.0008176569826900959, + -0.005177108105272055, + -0.004900950938463211, + 0.009369367733597755, + -0.00012778489326592535, + 0.011738327331840992, + -0.0026484434492886066, + 0.02414209209382534, + 0.00508727366104722, + 0.024448193609714508, + 0.009276206605136395, + 0.004262130707502365, + 0.017793813720345497, + -0.0012501917080953717, + 9.5760689873714e-05, + -0.009901718236505985, + 0.008105034939944744, + -0.015531323850154877, + -0.013907655142247677, + -0.006804103963077068, + -0.004924241453409195, + 0.01541154459118843, + -0.002635134616866708, + -0.01595720462501049, + -0.003746416186913848, + -0.00984848290681839, + -0.010234436951577663, + 0.01160523947328329, + 0.008164924569427967, + 0.024874074384570122, + 0.005037365946918726, + 0.007399670779705048, + -0.01696866936981678, + -0.029385743662714958, + 0.03311219811439514, + -0.007133495528250933, + -0.011478805914521217, + -0.017394550144672394, + 0.014985664747655392, + -0.006987099535763264, + -0.005063983611762524, + -0.0031724758446216583, + -0.009489146061241627, + -0.01047399453818798, + -0.014799341559410095, + -0.005017402581870556, + -0.009868445806205273, + 0.011359027586877346, + 0.0012751456815749407, + -0.013082511723041534, + 0.020282551646232605, + -0.0002195945562561974, + 0.011365681886672974, + -0.011166050098836422, + -0.023556506261229515, + 0.03167485073208809, + 0.0035234943497925997, + -0.02130732499063015, + -0.005652896128594875, + -0.0006554564461112022, + -0.01173167210072279, + -0.02575245127081871, + -0.0062717534601688385, + -0.012317257933318615, + 0.010234436951577663, + -0.021613426506519318, + 0.007193385157734156, + 0.01265663094818592, + -0.010820022784173489, + 0.05696149542927742, + -0.01087325718253851, + -0.0008966777240857482, + -0.03393733873963356, + -0.018126532435417175, + 0.01691543497145176, + 0.0284541305154562, + 0.02665744721889496, + 0.01416052132844925, + 0.011951266787946224, + -0.018046678975224495, + -0.014280300587415695, + -0.006614454090595245, + -0.024102166295051575, + 0.0052336701191961765, + 0.009708740748465061, + 0.004055844619870186, + -0.0002570254437159747, + 0.021160928532481194, + -0.014772724360227585, + 0.019271085038781166, + -0.005030711647123098, + -0.00437858235090971, + -0.0030543606262654066, + -0.00875716470181942, + 0.003570075146853924, + -0.01634315773844719, + -0.020176080986857414, + 0.0002416371862636879, + 0.05012079328298569, + 0.01040745060890913, + 0.014865885488688946, + 0.024128783494234085, + 0.016076982021331787, + 0.0023440055083483458, + -0.02190621942281723, + 0.006621108390390873, + 0.016902126371860504, + 0.008437754586338997, + 0.03244675695896149, + -0.013521701097488403, + 0.0011420580558478832, + 0.016170144081115723, + -0.01420044805854559, + 0.010786750353872776, + -0.019843362271785736, + 0.007133495528250933, + 0.014080668799579144, + 0.006927209906280041, + -0.02081490121781826, + 0.015185295604169369, + -0.021706588566303253, + 0.011997847817838192, + 0.005596333649009466, + 0.0015255167381837964, + -0.020415639504790306, + 0.01865888200700283, + -0.023556506261229515, + -0.014306917786598206, + -0.021214164793491364, + 0.007053642999380827, + -0.014000816270709038, + -0.004185605328530073, + -0.014027433469891548, + 0.013255525380373001, + -0.01342188473790884, + -0.038914814591407776, + -0.028028249740600586, + 0.021480340510606766, + -0.019523952156305313, + -0.005436628591269255, + 6.94031041348353e-05, + -0.024102166295051575, + -0.0057626934722065926, + -0.018286237493157387, + -0.021240781992673874, + 0.008071763440966606, + -0.014573092572391033, + -0.01977681741118431, + -0.016822272911667824, + 0.015225222334265709, + 0.022411953657865524, + 0.016183452680706978, + -0.009010030888020992, + -0.002087811939418316, + -0.012523544020950794, + -0.02749590016901493, + -0.022079233080148697, + -0.005756039172410965, + -0.011478805914521217, + -0.01296938769519329, + 0.013561626896262169, + -0.025459658354520798, + -0.020721741020679474, + 0.0031591670121997595, + 0.02848074771463871, + -0.012343875132501125, + -0.0024471483193337917, + 0.008411136455833912, + 0.0021826366428285837, + -0.023609740659594536, + 0.006378223653882742, + -0.0004832743725273758, + 0.020668504759669304, + 0.012363838963210583, + -0.021107694134116173, + 0.028028249740600586, + -0.0053268312476575375, + 0.004701319616287947, + -0.0027116599958389997, + 0.016263306140899658, + -0.004584867972880602, + -0.02318386174738407, + -0.005010748282074928, + -0.000741131603717804, + -0.001996314153075218, + 0.02452804520726204, + -0.02593877539038658, + 0.015398235991597176, + -0.008477680385112762, + 0.013801184482872486, + -0.00011801127402577549, + 0.0005140508874319494, + 0.002972844522446394, + 0.0340438112616539, + -0.005579697899520397, + 0.01336865033954382, + -0.02736281231045723, + 0.044264938682317734, + 0.011671783402562141, + -0.015012281946837902, + 0.024394957348704338, + -0.010493957437574863, + 0.028134720399975777, + -0.030397208407521248, + 0.005147163290530443, + -0.0020944662392139435, + 0.019470717757940292, + 0.01432022638618946, + -0.02154688350856304, + -0.01004145946353674, + -0.013428539037704468, + 0.007133495528250933, + 0.01432022638618946, + -0.012290640734136105, + 0.017168302088975906, + -0.024394957348704338, + 0.010919838212430477, + -0.004262130707502365, + 0.015837425366044044, + 0.00681408541277051, + -0.025246718898415565, + -0.025166867300868034, + 0.015238530933856964, + -0.011598585173487663, + 0.019550569355487823, + -0.036732178181409836, + -0.010114657692611217, + 0.0027382774278521538, + -0.010094694793224335, + -0.01803337037563324, + -0.03287263959646225, + 0.004927568603307009, + -0.012244059704244137, + 0.006940518505871296, + 0.0024854110088199377, + 0.02970515377819538, + 0.033271901309490204, + 0.03061014972627163, + 0.017501020804047585, + -0.01121263112872839, + -0.001292613334953785, + -0.000917472701985389, + 0.0006167778628878295, + -0.02476760372519493, + 0.026497742161154747, + 0.00011156484833918512, + 0.015943896025419235, + 0.0165028627961874, + 0.02239864505827427, + 0.004847716074436903, + 0.042108919471502304, + -0.022851141169667244, + -0.02042894810438156, + -0.01057380996644497, + -0.01816645823419094, + -0.018099915236234665, + 0.00322571094147861, + -0.012756447307765484, + 0.003368780016899109, + -0.035481154918670654, + 0.008244777098298073, + 0.03367116302251816, + -0.004671374801546335, + -0.00429540267214179, + 0.007845514453947544, + 0.000683737569488585, + -0.045462727546691895, + 0.03739761561155319, + 0.004714628681540489, + 0.005034038797020912, + -0.010899875313043594, + 0.0006637744372710586, + -0.021693279966711998, + -0.02114761993288994, + 0.030077798292040825, + -0.022704746574163437, + 0.011824834160506725, + 0.005266942083835602, + -0.007319818250834942, + 0.0070070624351501465, + 0.005586352199316025, + 0.013215599581599236, + -0.012250714004039764, + 0.014586402103304863, + -0.015917276963591576, + -0.009529072791337967, + -0.01811322383582592, + -0.008038491010665894, + -0.011638510972261429, + 0.018672190606594086, + 0.013987507671117783, + 0.0024138763546943665, + 0.045569196343421936, + -0.010753478854894638, + 0.021600117906928062, + 0.0348157174885273, + -0.00068956014001742, + 0.04250818118453026, + 0.01849917694926262, + 0.044291555881500244, + -0.0001693747763056308, + -0.031275589019060135, + -0.013987507671117783, + -0.03087632544338703, + 0.005300214048475027, + -0.012676594778895378, + 0.007319818250834942, + -0.0074395970441401005, + 0.009302823804318905, + -0.022718055173754692, + 0.018925057724118233, + 0.008697275072336197, + -0.03276616707444191, + -0.026524359360337257, + 0.04128377512097359, + 0.028054866939783096, + 0.0005743561778217554, + -0.008411136455833912, + 0.002440494019538164, + -0.026564287021756172, + -0.005167126189917326, + 0.0051205456256866455, + -0.00589910801500082, + -0.00600225105881691, + 0.0065911635756492615, + 0.006484693847596645, + 0.04799139127135277, + 0.008058454841375351, + 0.01114608719944954, + -0.0029695171397179365, + -0.013960889540612698, + -0.0009607261745259166, + -0.011452188715338707, + -0.01587735116481781, + 0.02703009359538555, + -0.007126841228455305, + 0.024914000183343887, + -0.004934222903102636, + -0.026444507762789726, + 0.022771289572119713, + -0.0033338444773107767, + -0.014373461715877056, + 0.0022957611363381147, + 0.008231468498706818, + 0.025246718898415565, + -0.01538492739200592, + -0.004757882095873356, + -0.0020528763998299837, + 0.009302823804318905, + 0.006967136170715094, + 0.005586352199316025, + -0.0058392188511788845, + -0.030131034553050995, + -0.0022075907327234745, + -0.009402639232575893, + 0.017527638003230095, + -0.000535261700861156, + 0.011671783402562141, + -0.007166767492890358, + -0.01471948903053999, + -0.018712118268013, + 0.001089654746465385, + 0.009755321778357029, + 0.005945689044892788, + -0.03271293267607689, + -0.008890252560377121, + 0.03162161633372307, + -0.002304079243913293, + 0.04711301252245903, + -0.023303639143705368, + -0.022212320938706398, + -0.014346843585371971, + 0.028108103200793266, + -0.02302415668964386, + 0.022052615880966187, + 0.05280916392803192, + 0.0019547243136912584, + -0.020908063277602196, + -0.008071763440966606, + 0.002545300405472517, + -0.02689700573682785, + 0.017288079485297203, + -0.022105852141976357, + -0.025792378932237625, + 5.1467472076183185e-05, + -0.0023123971186578274, + 0.008357902057468891, + -0.015118751674890518, + -0.012064391747117043, + 0.015571249648928642, + 0.009296169504523277, + 0.013827802613377571, + 0.0017684015911072493, + 0.003746416186913848, + 0.020495491102337837, + 0.008504298515617847, + -0.005835891701281071, + 0.026550978422164917, + -0.018179766833782196, + 0.018672190606594086, + 0.004774517845362425, + 0.004644757602363825, + -0.003939392976462841, + -0.03063676692545414, + -0.01800675317645073, + -0.01471948903053999, + 0.02671068347990513, + -0.018352780491113663, + 0.003859540680423379, + -0.013295452110469341, + -0.023090699687600136, + -0.022984229028224945, + 0.020828209817409515, + -0.00409909849986434, + 0.012709866277873516, + 0.014306917786598206, + 0.02171989716589451, + -0.020442256703972816, + 0.024434885010123253, + -0.002721641445532441, + -0.011778253130614758, + -0.0044983611442148685, + -0.001442336943000555, + -0.04290744289755821, + -0.0052336701191961765, + -0.014998973347246647, + 0.03643938526511192, + 0.032393522560596466, + -0.03401719406247139, + -0.0073264725506305695, + -0.008610768243670464, + -0.04168303683400154, + -0.023263713344931602, + -0.013075857423245907, + -0.005636259913444519, + -0.0015903968596830964, + 0.006391532253473997, + 0.004119061399251223, + 0.024847455322742462, + -0.0011603576131165028, + 0.013441848568618298, + -0.02398238703608513, + 0.004458434879779816, + -0.0014356825267896056, + -0.01642301119863987, + 0.03311219811439514, + -0.0008143297745846212, + -0.016196761280298233, + -0.006700960919260979, + 0.010480648837983608, + -0.014839268289506435, + -0.005782656371593475, + 0.014373461715877056, + -0.013082511723041534, + -0.007452906109392643, + 0.00011489203461678699, + 0.02741604670882225, + -0.00017592517542652786, + 0.011645165272057056, + 0.025193484500050545, + -0.034389838576316833, + 0.005336813163012266, + -0.002076166681945324, + -0.0015970512758940458, + -0.03167485073208809, + -0.01718161068856716, + -0.0030443789437413216, + -0.010839985683560371, + -0.00885032583028078, + 0.03053029626607895, + -0.02567259967327118, + 0.006654380355030298, + 0.0006213527522049844, + 0.032153964042663574, + 0.0218263678252697, + 0.024048930034041405, + 0.01040745060890913, + 0.0031924389768391848, + -0.0018915076507255435, + -0.011319100856781006, + 0.011205976828932762, + -0.021121002733707428, + 0.00412571569904685, + -0.0031358767300844193, + -0.027708839625120163, + 0.034656014293432236, + -0.037823498249053955, + 0.013089166022837162, + -0.011092851869761944, + 0.008697275072336197, + -0.011991193518042564, + -0.02679053507745266, + -0.012197478674352169, + 0.02149364911019802, + 0.01534500066190958, + -0.0024221944622695446, + 0.011292483657598495, + 0.007705772295594215, + -0.010993036441504955, + -0.00843110028654337, + -0.001785037573426962, + -0.004654739052057266, + -0.027149870991706848, + -0.02034909464418888, + 0.008910215459764004, + -0.006724251434206963, + 0.023862607777118683, + 0.011558658443391323, + -0.01577088050544262, + -0.01579749956727028, + 0.004009264055639505, + 0.18823911249637604, + -0.010008187964558601, + -0.00011686755169648677, + -0.0019330974901095033, + 0.010374179109930992, + -0.009768630377948284, + 0.022385334596037865, + 0.0048942966386675835, + -0.0048177712596952915, + 0.015105443075299263, + -0.02076166681945324, + 0.004278766456991434, + 0.013508392497897148, + 0.008011873811483383, + 0.016436319798231125, + -0.02203930728137493, + -0.022984229028224945, + -0.006118702702224255, + 0.005549753084778786, + 0.016902126371860504, + 0.019843362271785736, + -0.04133700951933861, + 0.0014589729253202677, + 0.0005481545813381672, + 0.0363861508667469, + -0.0016685858136042953, + -0.0009008367196656764, + 0.006807431112974882, + 0.025965392589569092, + 0.006900592241436243, + -0.005549753084778786, + 0.006501329597085714, + 0.005736075807362795, + -0.01920454204082489, + 0.0017916918732225895, + 0.0029778352472931147, + 0.026590904220938683, + -0.023316947743296623, + 0.032127346843481064, + 0.010181201621890068, + 0.007386362180113792, + -0.025007160380482674, + -0.005825909785926342, + -0.017847048118710518, + -0.01475941576063633, + 0.01595720462501049, + -0.006315006874501705, + 0.01306920312345028, + 0.0010239427210763097, + -0.015491397120058537, + -0.030237503349781036, + -0.002290770411491394, + -0.002683378756046295, + 0.01879196986556053, + -0.01852579414844513, + 0.003596692578867078, + 0.0028297752141952515, + -0.013734640553593636, + 0.004315365571528673, + 0.008956795558333397, + -0.033431608229875565, + 0.015691028907895088, + -0.007745698560029268, + 0.01819307543337345, + -0.009582308121025562, + -0.0063848779536783695, + -0.02414209209382534, + -0.000502821640111506, + 0.019869979470968246, + -0.03795658424496651, + -0.008058454841375351, + -0.023263713344931602, + -0.01824631169438362, + 0.026550978422164917, + -0.011186012998223305, + -0.02695024013519287, + 0.004049190320074558, + 0.0028414204716682434, + 0.018871823325753212, + 0.018153149634599686, + -0.005316849797964096, + 0.015890659764409065, + -0.0014830949949100614, + -0.02850736491382122, + -0.0014880858361721039, + -0.03942054882645607, + 0.03710482642054558, + -0.00901668518781662, + -0.022731363773345947, + -0.028853392228484154, + -0.01253685262054205, + 0.010507266968488693, + 0.007872131653130054, + -0.0005281914491206408, + 0.01876535266637802, + 0.01587735116481781, + 0.014972356148064137, + 0.011072888970375061, + -0.025220101699233055, + -0.0004000946064479649, + -0.004391890950500965, + 0.06675674021244049, + 0.042242005467414856, + -0.030077798292040825, + -0.009675469249486923, + 0.021653354167938232, + -0.005696149542927742, + 0.025459658354520798, + -0.0024571300018578768, + -0.008105034939944744, + -0.014985664747655392, + -0.033564694225788116, + 0.0030061162542551756, + 0.0025220101233571768, + -0.0031824572943150997, + 0.008517607115209103, + 0.008943486958742142, + -0.007506140973418951, + -0.004119061399251223, + -0.0024654478766024113, + -0.014959046617150307, + -0.001607032842002809, + 0.0033238630276173353, + 0.015092134475708008, + 0.019457407295703888, + -0.022704746574163437, + -0.02348996326327324, + -0.0001453566219424829, + -0.019763508811593056, + -0.005253633484244347, + 0.013681406155228615, + -0.02588553912937641, + 0.0035667477641254663, + 0.002477093134075403, + 0.003520167199894786, + 0.014027433469891548, + -0.004960840567946434, + -0.03798320144414902, + 0.003215729258954525, + 0.014666254632174969, + 0.007825551554560661, + -0.0070602972991764545, + 0.006354933138936758, + -0.003104268340393901, + 0.016329849138855934, + -0.0031957661267369986, + 0.005995596759021282, + 0.0006022214074619114, + -0.03204749524593353, + -0.02427517995238304, + -0.008471026085317135, + 0.004741245880723, + -0.008637385442852974, + -0.010953109711408615, + 0.023064082488417625, + -0.009449220262467861, + -0.00711353262886405, + -0.029359126463532448, + 0.01660933345556259, + 0.008617422543466091, + -0.009209662675857544, + -0.005699476692825556, + -0.0017367933178320527, + -0.009555689990520477, + 0.004721282981336117, + 0.010647008195519447, + -0.1686486154794693, + 0.022784598171710968, + 0.03423013165593147, + -0.033484842628240585, + 0.01279637310653925, + -0.002267480129376054, + 0.012410419061779976, + 0.0002568174968473613, + -0.02171989716589451, + 0.01660933345556259, + 0.03971334174275398, + -0.0006579518667422235, + -0.011851451359689236, + 0.008637385442852974, + -0.001518862321972847, + -0.007386362180113792, + -0.0158507339656353, + 0.025273336097598076, + 0.015132061205804348, + 0.027243033051490784, + 0.0020462218672037125, + -0.02193283662199974, + 0.011791561730206013, + 0.006973790470510721, + 0.006378223653882742, + -0.009089883416891098, + -0.009968262165784836, + 0.03798320144414902, + -0.0032456740736961365, + -0.023263713344931602, + -0.0023473326582461596, + -0.022718055173754692, + 0.020495491102337837, + -0.018512485548853874, + -0.002074503106996417, + -0.008637385442852974, + 0.005017402581870556, + -0.0009432584047317505, + -0.00686066597700119, + 0.020176080986857414, + 0.018964983522892, + 0.012290640734136105, + -0.020934680476784706, + 0.005147163290530443, + -0.027655605226755142, + -0.0022990882862359285, + 0.02024262584745884, + 0.020389020442962646, + -0.008065109141170979, + -0.0036499276757240295, + 0.005163799040019512, + -0.02341010980308056, + 0.007319818250834942, + 0.010926492512226105, + 0.013242216780781746, + 0.02561936341226101, + 0.019191233441233635, + 0.021666662767529488, + -0.0054066842421889305, + -0.012842954136431217, + -0.008005219511687756, + -0.0019763510208576918, + 0.017248153686523438, + 0.004997439682483673, + -0.005626278463751078, + -0.022651510313153267, + 0.002001304877921939, + 0.0050673107616603374, + -0.020468873903155327, + -0.005998923908919096, + -0.01915130577981472, + -0.0037630521692335606, + 0.029013097286224365, + -0.003553439164534211, + 0.004864351823925972, + 0.019470717757940292, + 0.0038329230155795813, + 7.881281635491177e-05, + 0.0192311592400074, + -0.021067768335342407, + -0.009502454660832882, + 0.058665018528699875, + -0.028161337599158287, + -0.01318898145109415, + -0.00683404877781868, + -0.0036033468786627054, + -0.015038899146020412, + 0.014027433469891548, + 0.015145369805395603, + 0.0018964983755722642, + -0.003064342075958848, + -0.03260646387934685, + -0.015571249648928642, + -0.03287263959646225, + 0.014679563231766224, + -0.003922757226973772, + -0.0035867108963429928, + -0.03279278799891472, + -0.009655505418777466, + -0.007938675582408905, + 0.005143836140632629, + 0.005549753084778786, + -0.0250737052410841, + 0.0022874432615935802, + 0.0013408575905486941, + 0.0034502961207181215, + -0.00818488746881485, + 0.012869571335613728, + 0.025912156328558922, + -0.011844797059893608, + -0.008510952815413475, + -0.024754295125603676, + 0.026497742161154747, + -0.015997130423784256, + 0.0001548183208797127, + 0.003368780016899109, + -0.009788593277335167, + -0.010074731893837452, + 0.015518015250563622, + 0.002796503249555826, + 0.03944716602563858, + 0.010021496564149857, + -0.026830460876226425, + 0.00957565288990736, + 0.010307635180652142, + -0.016662567853927612, + -0.08065108954906464, + 0.00711353262886405, + 0.0009016685071401298, + 0.012842954136431217, + 0.003926084376871586, + 0.013082511723041534, + -0.01764741726219654, + 0.015464779920876026, + -0.02029586024582386, + 0.030051181092858315, + -0.054406214505434036, + -0.02640458196401596, + -0.00010121936065843329, + -0.010161238722503185, + 0.02136056125164032, + -0.01680896431207657, + -0.016263306140899658, + -0.005543098784983158, + 0.0010563828982412815, + 0.03255322948098183, + 0.002621825784444809, + -0.021001223474740982, + -0.028959862887859344, + 0.0007590152672491968, + 0.010973073542118073, + 0.0003568411339074373, + -0.02424856275320053, + -0.004305384121835232, + 0.0255927462130785, + 0.00788544025272131, + 0.011485460214316845, + -0.029066333547234535, + 0.032260436564683914, + -0.026723992079496384, + 0.011725017800927162, + 0.0026750608813017607, + 0.00934274960309267, + -0.021839676424860954, + 0.02398238703608513, + -0.021613426506519318, + 0.001848254119977355, + 0.012077700346708298, + 0.024674441665410995, + -0.05049343779683113, + 0.008065109141170979, + -0.012736483477056026, + -0.019816745072603226, + 0.003443641820922494, + -0.008657348342239857, + -0.022571658715605736, + -0.025393115356564522, + -0.008437754586338997, + 2.5642759283073246e-05, + 0.013348686508834362, + 0.012909498065710068, + 0.004548268858343363, + -0.00984848290681839, + -0.01655609905719757, + -0.013175672851502895, + 0.013009313493967056, + -0.01912468858063221, + 0.023889224976301193, + -0.027975015342235565, + 0.017035214230418205, + 0.021453721448779106, + -0.01429360918700695, + -0.02515355683863163, + -0.016755729913711548, + -0.010833331383764744, + -0.013608207926154137, + -0.03745085373520851, + 0.02179975062608719, + 0.009748667478561401, + -0.0198832880705595, + -0.023583123460412025, + -0.0245546642690897, + -0.02943897806107998, + -0.007333127316087484, + 0.005533117335289717, + -0.014533166773617268, + -0.015052208676934242, + -0.03739761561155319, + 0.036705560982227325, + -0.012457000091671944, + 0.038861580193042755, + 0.01332872360944748, + 0.014040742069482803, + -0.0363861508667469, + 0.011698400601744652, + -0.028134720399975777, + 0.02034909464418888, + 0.0007299023563973606, + 0.008258085697889328, + -0.036599092185497284, + -0.011345718055963516, + -0.004105752799659967, + 0.013508392497897148, + 0.006454749032855034, + 0.005589679349213839, + 0.009429257363080978, + -0.033404991030693054, + -0.009036648087203503, + -0.057334139943122864, + 0.018871823325753212, + 0.010800058953464031, + -0.0039027940947562456, + -0.01153869554400444, + 0.0013516710605472326, + 0.010999690741300583, + 0.019869979470968246, + 0.002074503106996417, + -0.003363789292052388, + 0.003872849280014634, + 0.003453623503446579, + 0.0035135129000991583, + 0.0027798672672361135, + -0.025406423956155777, + -0.03518836200237274, + 0.009542381390929222, + 0.0008659012382850051, + 0.017261462286114693, + 0.01429360918700695, + -0.007027025800198317, + 0.007373053580522537, + 0.01365478802472353, + 0.011385644786059856, + -0.035534389317035675, + -0.010440723039209843, + -0.020615270361304283, + 0.006840703077614307, + -0.007220002822577953, + -0.01839270628988743, + -0.011698400601744652, + -0.0073264725506305695, + -0.0013708022888749838, + 0.01074682455509901, + -0.0064614033326506615, + -0.01534500066190958, + 0.012297295033931732, + 0.04168303683400154, + 0.015438162721693516, + 0.07601963728666306, + -0.020575344562530518, + -0.03643938526511192, + -0.0027016783133149147, + -0.0402723103761673, + 0.00204954924993217, + 0.004075807984918356, + 0.01140560768544674, + -0.0033504804596304893, + 0.017447784543037415, + -0.026564287021756172, + 0.03186117485165596, + 0.016755729913711548, + 0.011159395799040794, + -0.017141683027148247, + 0.010154584422707558, + -0.032127346843481064, + 0.010686934925615788, + 0.014959046617150307, + -0.010520575568079948, + -0.02861383557319641, + 0.044264938682317734, + 0.009568998590111732, + 0.007366398815065622, + -0.007945329882204533, + 0.0021277382038533688, + -0.0231306254863739, + -0.03593365475535393, + -0.001689380849711597, + 0.01362817082554102, + -0.029119567945599556, + -0.0036266371607780457, + -0.027762074023485184, + 0.0011736663291230798, + 0.03755732253193855, + -0.006231827195733786, + -0.0018698808271437883, + 0.03303234279155731, + -0.002292433986440301, + 0.0013857746962457895, + 0.03388410434126854, + 0.011545349843800068, + 0.01603705622255802, + -0.009462528862059116, + -0.0016952033620327711, + 0.02286445163190365, + 0.0019680329132825136, + -0.012403764761984348, + 0.009455874562263489, + -0.012636668048799038, + 0.0009964935015887022, + 0.009715395048260689, + 0.03263308107852936, + 0.0034236786887049675, + -0.010859948582947254, + 0.0018898439593613148, + 0.01008138619363308, + 0.0008342929068021476, + -0.01805998757481575, + 0.025433041155338287, + 0.04519655182957649, + -0.007945329882204533, + 0.016715804114937782, + 0.006421477068215609, + -0.038968052715063095, + -0.010394142009317875, + 0.008570841513574123, + 0.0007548562716692686, + -0.0381961427628994, + -0.014266991056501865, + 0.004455107729882002, + -0.0071734217926859856, + 0.02398238703608513, + 0.00683404877781868, + -0.013222253881394863, + 0.00015065932529978454, + 0.01967034861445427, + -0.009668814949691296, + -0.014692871831357479, + -0.029385743662714958, + 0.03604012355208397, + 0.013428539037704468, + 0.008131653070449829, + -0.012363838963210583, + 0.0051970710046589375, + 0.034656014293432236, + 0.01827292889356613, + -0.00557304359972477, + -0.00767250033095479, + 0.016196761280298233, + -0.023716211318969727, + 0.013441848568618298, + -0.002147701336070895, + -0.011638510972261429, + -0.018618956208229065, + -0.016236687079072, + -0.016076982021331787, + 0.0026251529343426228, + 0.007752352859824896, + 0.01660933345556259, + 0.11828826367855072, + 0.03473586589097977, + 0.01704852283000946, + -0.007752352859824896, + -0.01805998757481575, + 0.02624487690627575, + 0.013774567283689976, + 0.016409702599048615, + -0.0007889599655754864, + -0.05829237028956413, + 0.008477680385112762, + -0.021586809307336807, + -0.002783194649964571, + -0.025007160380482674, + 0.004012591205537319, + 0.018818587064743042, + -0.03795658424496651, + 0.00489096948876977, + -0.0006637744372710586, + 0.028187954798340797, + 0.02206592448055744, + -0.012976041994988918, + 0.02564598247408867, + 0.03540130332112312, + -0.03593365475535393, + -0.010820022784173489, + 0.015025590546429157, + -0.008943486958742142, + -0.0037929967511445284, + 0.01688881777226925, + -0.00480778981000185, + -0.001033924287185073, + -0.07436935603618622, + -0.028667069971561432, + 0.0067641776986420155, + -0.0035667477641254663, + -0.0109797278419137, + -0.039793193340301514, + 0.006524620112031698, + -0.004019245505332947, + 0.007266583386808634, + 0.01876535266637802, + -0.01603705622255802, + -0.01204442884773016, + -0.00843110028654337, + -0.015331692062318325, + -0.0011528714094311, + -0.038808345794677734, + -0.02359643206000328 + ], + "metadata": { + "source": "Kreye_Marieke_BA_241_V2.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 17, + "has_images": true, + "image_count": 98, + "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", + "links": [], + "last_modified": "2025-05-05T23:00:23", + "_known_field_names": "frozenset({'is_continuation', 'sent_to', 'header_footer_type', 'email_message_id', 'filename', 'languages', 'detection_class_prob', 'sent_from', 'link_texts', 'cc_recipient', 'subject', 'image_mime_type', 'image_path', 'filetype', 'page_number', 'last_modified', 'signature', 'detection_origin', 'text_as_html', 'attached_to_filename', 'bcc_recipient', 'data_source', 'link_start_indexes', 'category_depth', 'emphasized_text_tags', 'parent_id', 'orig_elements', 'page_name', 'coordinates', 'url', 'link_urls', 'file_directory', 'links', 'table_as_cells', 'emphasized_text_contents', 'key_value_pairs', 'image_base64'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "Kreye_Marieke_BA_241_V2.pdf", + "detection_class_prob": 0.3422867953777313, + "parent_id": "e02392183bc6851689602ad4b9f6039f", + "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", + "id": "ce00eae5-7e07-454f-9e4f-f79ac36f92f4", + "processing_timestamp": "2025-05-05T23:15:46.977945", + "chunk_number": 20, + "total_chunks": 56, + "chunking_strategy": "hybrid", + "word_count": 444 + } +} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000021.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000021.json new file mode 100644 index 0000000000000000000000000000000000000000..e80cf38e1a36808eb4b1fea76142fbe60a1100ae --- /dev/null +++ b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000021.json @@ -0,0 +1,1570 @@ +{ + "id": "61a115b2-0ff7-441a-f6d9-eb3d00000021", + "content": "Die Zuordnung erfolgt auf Basis verallgemeinernder Charakteristika in Bezug auf geographische, st\u00e4dtebauliche, energetische, demographische sowie verkehrliche Besonderheiten. Auf Grundlage dieser Faktoren hat Drees & Sommer zehn Quartiersarchetypen definiert (vgl. Menges et al. 2024a). Die im Folgenden kursiv gedruckten Quartiersarchetypen sind f\u00fcr die vorliegende Arbeit von Bedeutung, da diese in den Fallstudiengebieten Gromb\u00fchl und Grafenb\u00fchl vorzufinden sind. Die zehn Quartiersarchetypen sind:\n- - Ein- und Zweifamilienhausquartier,\n- - Blockrandbebauung,\n- - Gro\u00dfwohnsiedlungen,\n- - D\u00f6rfliche und kleinteilige Struktur,\n- - Zeilen- und Reihenbebauung,\n- - Historische Altstadt,\n- Innenstadt/ Citybebauung,\n- \n- - Gewerbegebiet und Industrieparks,\n- - Neue Innenstadtquartiere und\n- - Campusstruktur/ B\u00fcro. Die Gr\u00f6\u00dfe der Stra\u00dfenr\u00e4ume unterscheidet sich je nach Quartiersarchetyp, weshalb jedem Quartiersarchetyp ein am h\u00e4ufigsten vorkommender Stra\u00dfenquerschnitt nach der RASt 06 zugeordnet werden kann (vgl. Anhang 4)\n20\nModellhafte Analyse des Mobilit\u00e4tsverhaltens\n\n## 4.2 Mobilit\u00e4tsverhalten in den Quartiersarchetypen\n\nDie soziale Struktur variiert in den einzelnen Quartiersarchetypen und f\u00fchrt somit zu einem unterschiedlichen Modal Split. Nach der Werteorientierung und der sozialen Lage werden die Einwohner unterschiedlichen Gruppen, sogenannten Milieus, zugeordnet. Die im Folgenden ber\u00fccksichtigte Gesellschafts- bzw. Zielgruppensegmentation wurde von dem Sinus Institut durchgef\u00fchrt, weshalb die zehn identifizierten Gruppen als Sinus- Milieus bezeichnet werden. (vgl. Sinus Markt- und Sozialforschung GmbH 2024)\nLaut dem Sinus Institut k\u00f6nnen die in Abbildung 7 dargestellten Sinus-Milieus in einer Gesellschaft identifiziert werden. Auf der y-Achse ist die soziale Lage und auf der x- Achse die Werteorientierung und das sich daraus ableitende, wahrscheinliche Verhalten dargestellt. \u201eJe h\u00f6her ein Milieu in dieser Grafik angesiedelt ist, desto gehobener sind Bildung, Einkommen und Berufsgruppe; je weiter nach rechts es sich erstreckt, desto moderner im soziokulturellen Sinn ist die Grundorientierung des jeweiligen Milieus\u201c (Sinus Markt- und Sozialforschung GmbH 2024). [IMAGE: ze 2 Ss 3 5 8 202% 5:2 postmaterielles Milieu let der Performer || Lypeditives Mileu \u00b083 10% 10% m (0) - Ss 8 wu S u 22 |Adaptiv pragmatisthe Mitte Neo- < 3 \u00ae 12% \u00f6kologisches N SS Traditionelles ilieu [oe] Milieu Nostalgisch-b\u00fcrgerliches Milieu 8% \u201d \u2014\u2014t 10% \u201c EE 3% Es 5 \u00b0 ven\u00bb prek\u00e4res Milleu 388 ;\u201c 535 Tradition Modernisierung und Individualisierung Neuorientierung GRUNDORIENTIERUNG]\n\nAbbildung 7: Die zehn Sinus Milieus in einer Gesellschaft (eigene Darstellung nach Sinus Markt- und Sozialforschung GmbH 2024)\nJedes Sinus-Milieu wird charakterisiert durch\n- - einen typischen Lebensstil,\n- - die Altersstruktur,\n- - das typische Wohnumfeld,\n- - die Vorlieben f\u00fcr die Infrastruktur sowie\n- - das Freizeitverhalten. Diese Charakteristika erm\u00f6glichen eine Identifizierung der drei am h\u00e4ufigsten, der zwei mittleren, der zwei geringsten sowie der drei nicht vorkommenden Sinus-Milieus je Quartiersarchetyp. In Anhang 1 ist die Verteilung der Sinus-Milieus Quartiersarchetypen Ein- und Zweifamilienhausquartier, Zeilen- und Reihenbebauung, Blockrandbebauung und neues Innenstadtquartier dargestellt. in den\n21\nModellhafte Analyse des Mobilit\u00e4tsverhaltens\nNach den Merkmalen und Verhaltensmustern der einzelnen Sinus-Milieus wurde eine Prognose zur Aufteilung des Modal Splits je Sinus-Milieu getroffen. Beispielsweise werden dem konservativ-gehobene Milieu, das Teil der Oberschicht ist, hohe Statusanspr\u00fcche zugeordnet, die in dem Festhalten an ein eher traditionelles Gesellschaftsbild resultieren. Eine grunds\u00e4tzlich hohe Bedeutung des MIV kann diesem Milieu unterstellt werden. Dem prek\u00e4ren Milieu, das der Unterschicht zugeordnet wird, wird der Kampf um gesellschaftliche Teilhabe und die mangelnde Ausstattung mit finanziellen Mitteln zugeschrieben. Der MIV-Anteil im Modal Split wird in Ermanglung entsprechender Mittel geringer ausfallen. Das neo-\u00f6kologische Milieu als Teil der mittleren bis unteren Mittelschicht, ist gekennzeichnet von einer hohen Akzeptanz f\u00fcr neue Formen eines \u00f6kologischen und solidarisch gepr\u00e4gten Lebensstils. Hier ist ein Bevorzugen alternativer und klimafreundlicherer Verkehrsl\u00f6sungen zu erwarten.", + "embedding": [ + 0.008981726132333279, + -0.007108884397894144, + 0.018543768674135208, + -0.04257417097687721, + -0.011138131842017174, + 0.03012373298406601, + -0.014151823706924915, + -0.013703396543860435, + -0.019862670451402664, + -0.0381954163312912, + 0.012859298847615719, + -0.0012480114819481969, + -0.001311483676545322, + -0.0050019375048577785, + -0.015167378820478916, + -0.008157411590218544, + 0.0370347797870636, + 0.006396676879376173, + 0.032339487224817276, + -0.004606266971677542, + -0.016789628192782402, + 0.009047671221196651, + 0.010452302172780037, + -0.03880210965871811, + -0.010900729335844517, + 0.049353331327438354, + 0.010953485034406185, + -0.009060859680175781, + -0.01306372880935669, + -0.001616479828953743, + 0.011131537146866322, + -0.01021489966660738, + -0.013980366289615631, + 0.0045897806994616985, + -0.014165012165904045, + 0.006446135696023703, + 0.008460759185254574, + -0.008375030942261219, + 0.02312036044895649, + 0.004431512206792831, + 0.0003373505314812064, + -0.014191390946507454, + 0.003303850768133998, + -0.012793353758752346, + -0.00031880344613455236, + 0.007768335752189159, + -0.009153183549642563, + -0.005189881194382906, + -0.012701030820608139, + 0.01609061099588871, + 0.026087891310453415, + 0.029648927971720695, + -0.022843390703201294, + 0.009819229133427143, + -0.005354743916541338, + -0.012450439855456352, + -0.007590283639729023, + 0.00985220167785883, + 0.004982153885066509, + -0.02468985505402088, + -0.024821745231747627, + -0.0036995215341448784, + -0.02650994062423706, + 0.034106817096471786, + -0.03521469607949257, + 0.012226225808262825, + -0.023476464673876762, + -0.00547014782205224, + 0.011922878213226795, + -0.00898832082748413, + 0.03170641511678696, + 0.0306776724755764, + 0.007253963500261307, + 0.0003579583717510104, + 0.04054306074976921, + -0.011718448251485825, + 0.03671824559569359, + -0.011395317502319813, + -0.0011952553177252412, + 0.011962445452809334, + -0.002942801220342517, + -0.025573519989848137, + -0.02277744561433792, + 0.024729421362280846, + 0.014521116390824318, + 0.009120211005210876, + 0.016881952062249184, + 0.025402061641216278, + 0.004365567117929459, + 0.023951269686222076, + 0.0062581924721598625, + 0.013888043351471424, + 0.018715227022767067, + 0.00327747268602252, + -0.010096198879182339, + -0.0010518247727304697, + -0.0015447644982486963, + 0.007247369270771742, + 0.019005384296178818, + 0.005806467961519957, + -0.0379052571952343, + 0.013373671099543571, + -0.02280382439494133, + -0.007537527475506067, + -0.027011122554540634, + -0.0005485810106620193, + -0.0008721242775209248, + 0.016591792926192284, + 0.024004025384783745, + -0.018068963661789894, + -0.01072267722338438, + 0.033790282905101776, + -0.014389226213097572, + -0.03946156054735184, + 0.018095342442393303, + -0.008717945776879787, + 0.0376150980591774, + -0.0131692411378026, + 0.005176692269742489, + -0.01831955462694168, + 0.019546134397387505, + 0.01759415864944458, + 0.0068319146521389484, + -0.02711663581430912, + 0.025256982073187828, + 0.014165012165904045, + -0.0163543913513422, + -0.01371658593416214, + -0.02665501832962036, + -0.02008688449859619, + -0.018886683508753777, + 0.01179098803550005, + 0.01764691434800625, + 0.0003221007063984871, + -0.021076060831546783, + 0.009509286843240261, + -0.016196122393012047, + 0.009680744260549545, + -0.033209964632987976, + -0.034159574657678604, + -2.1303365429048426e-05, + 0.004609564319252968, + -0.012925243936479092, + -0.0211288183927536, + 0.014824463985860348, + 0.011098564602434635, + 0.016789628192782402, + 0.022434530779719353, + 0.002939503872767091, + -0.013314320705831051, + 0.0037588721606880426, + -0.018161287531256676, + 0.01756778173148632, + 0.0012917001731693745, + -0.006574728991836309, + 0.013433021493256092, + -0.004490863066166639, + 0.0026559398975223303, + -0.048984039574861526, + -0.02280382439494133, + 0.012628491036593914, + 0.002125081606209278, + -0.003054907778277993, + 0.01907132938504219, + 0.009225722402334213, + 0.0001596078072907403, + 0.016565416008234024, + 0.0078870365396142, + -0.0062680840492248535, + -0.010907323099672794, + -0.02144535444676876, + 0.0011087023885920644, + -0.02537568286061287, + 0.006439541466534138, + 0.009601609781384468, + 0.028989477083086967, + 0.012879082933068275, + -0.0014095769729465246, + -0.02983357384800911, + -0.02341051958501339, + -0.02025834284722805, + 0.0025191036984324455, + 0.03281429409980774, + 0.010603975504636765, + -0.016182933002710342, + 0.00444140424951911, + 0.023924890905618668, + 0.01950656808912754, + -0.020733147859573364, + 0.009773067198693752, + 0.00013395103451330215, + 0.0030928263440728188, + -0.004210595972836018, + -0.015088244341313839, + -0.6267424821853638, + 0.014099067077040672, + 0.003537955926731229, + -0.01802939735352993, + -0.0010089604184031487, + 0.0193878673017025, + 0.028514672070741653, + 0.013993555679917336, + -0.0064230551943182945, + 0.03555760905146599, + -0.013597884215414524, + -0.0029081800021231174, + -0.006472514010965824, + 0.01458706147968769, + -0.015840018168091774, + -0.01565537229180336, + -0.005552579648792744, + -0.008249735459685326, + 0.03584776818752289, + 0.015365214087069035, + -0.007596878334879875, + 0.016829196363687515, + 0.00038701543235220015, + 0.02164318971335888, + 0.007049533538520336, + 0.010742460377514362, + -0.003318688366562128, + -0.022289451211690903, + 0.008328869007527828, + 0.005087666213512421, + -0.033500123769044876, + 0.017211677506566048, + -0.007346286904066801, + 0.013663829304277897, + 0.05059310048818588, + 0.01846463419497013, + -0.0157740730792284, + 0.03160090371966362, + 0.028778452426195145, + 0.010511652566492558, + 0.007722173817455769, + -0.011771204881370068, + -0.008196978829801083, + 0.009885174222290516, + 0.01718529872596264, + 0.0025042661000043154, + 0.023687489330768585, + -0.003445632755756378, + 0.00956204254180193, + -0.016024665907025337, + 0.0018019505077973008, + -0.009271884337067604, + -0.015101433731615543, + 0.006205436307936907, + 0.020944170653820038, + -0.015615805052220821, + 0.011217265389859676, + -0.022553231567144394, + -0.000985879567451775, + 0.014270524494349957, + -0.012859298847615719, + 0.0012529573868960142, + 0.016974274069070816, + -0.04078046604990959, + -0.003620387287810445, + 0.0465836338698864, + -0.006703321821987629, + -0.01580045185983181, + 0.011566774919629097, + -0.010241277515888214, + -0.03869659826159477, + 0.04056943953037262, + -0.0283564031124115, + -0.00015383760910481215, + 0.026984745636582375, + 0.020812280476093292, + 0.015760885551571846, + -0.020508933812379837, + -0.001588453189469874, + 0.014191390946507454, + -0.007372664753347635, + -0.02242134138941765, + -0.018161287531256676, + -0.003594009205698967, + 0.004184218123555183, + -0.04004187881946564, + -0.012839515693485737, + 0.015721317380666733, + 0.012410872615873814, + 0.0052261510863900185, + 0.019137274473905563, + 0.0015488860663026571, + -0.006851698271930218, + -0.024848122149705887, + 0.003346715122461319, + 0.046398989856243134, + -0.0185173898935318, + 0.03305169567465782, + 0.0037127104587852955, + -0.056501783430576324, + -0.011118347756564617, + 0.011302994564175606, + 0.01875479333102703, + -0.011942662298679352, + -0.0028240999672561884, + 0.0025619680527597666, + -0.016618171706795692, + -0.003966599237173796, + 0.032972563058137894, + -0.025019580498337746, + -0.007728768512606621, + -0.0055459849536418915, + 0.01594553142786026, + -0.017633726820349693, + 0.01503548864275217, + -0.02769695222377777, + 0.025283360853791237, + -0.005869116168469191, + 0.020060507580637932, + -0.00284718070179224, + -0.00045378488721325994, + -0.007418826222419739, + 0.013221997767686844, + -0.00044801467447541654, + 0.0002681081532500684, + 0.028171757236123085, + 0.0150486771017313, + 0.002138270530849695, + -0.0243073720484972, + -0.01814809814095497, + 0.009074049070477486, + 0.023186305537819862, + 0.02925325743854046, + 0.011032619513571262, + 0.013518750667572021, + -0.001371658523567021, + 0.019598890095949173, + -0.02246090956032276, + -0.005278907250612974, + -0.024267805740237236, + -0.004619455896317959, + -0.019612079486250877, + -0.010412734933197498, + -0.060775026679039, + -0.0177919939160347, + -0.02738041616976261, + -0.018992194905877113, + -0.0035049833822995424, + -0.008836646564304829, + 0.003445632755756378, + -0.026813287287950516, + -0.001637087669223547, + -0.0037094131112098694, + 0.018913062289357185, + -0.006383487954735756, + 0.00563501100987196, + -0.019466999918222427, + -0.0190977081656456, + -0.010973268188536167, + -0.0124438451603055, + -0.0024383210111409426, + -0.00020257517462596297, + -0.03909226879477501, + -0.0006491473177447915, + -0.00774855213239789, + -0.016341201961040497, + 0.014916786924004555, + 0.0031439338345080614, + -0.019889049232006073, + -0.03402768447995186, + -0.011190887540578842, + 0.00724077457562089, + -0.0030977721326053143, + 0.002232242375612259, + -0.013518750667572021, + 0.008005738258361816, + -0.01805577427148819, + 0.016130177304148674, + -0.005925169214606285, + -0.023687489330768585, + 0.010973268188536167, + -0.008948753587901592, + -0.015760885551571846, + -0.003537955926731229, + 0.02130027487874031, + 0.002677371958270669, + 0.02978081814944744, + 0.0067395917139947414, + -0.007135262247174978, + 0.027907976880669594, + 0.026984745636582375, + 0.03779974579811096, + -0.024083159863948822, + 0.01657860353589058, + -0.015549859963357449, + 0.006571431644260883, + 0.003124150214716792, + 0.012641680426895618, + -0.02101011574268341, + 0.006080140359699726, + 0.04120251163840294, + 0.01594553142786026, + 0.012496600858867168, + 0.000722099095582962, + 0.026918798685073853, + -0.028171757236123085, + -0.00302358390763402, + 0.003946815617382526, + 0.026575885713100433, + 0.023133549839258194, + 0.04056943953037262, + -0.0022685122676193714, + -0.04349740222096443, + 0.0010130819864571095, + -0.006686835549771786, + 0.049643490463495255, + -0.008256329223513603, + 0.010782027617096901, + -0.00361049547791481, + 0.00018742840620689094, + 0.006535161752253771, + 0.005179989617317915, + 0.020944170653820038, + 0.016829196363687515, + -0.004767832346260548, + -0.005127233453094959, + -0.00888280849903822, + 0.003956707660108805, + -0.026958366855978966, + -0.016341201961040497, + -0.016539037227630615, + 0.016037853434681892, + 0.012727408669888973, + 0.015523482114076614, + 0.007933198474347591, + 0.0303875133395195, + 0.014006744138896465, + -0.007181424181908369, + 0.017462268471717834, + -0.006314245518296957, + 0.016486281529068947, + 0.011355750262737274, + -0.0006017492851242423, + -0.0050019375048577785, + 0.028119001537561417, + -0.01843825727701187, + 0.00894215889275074, + 0.02983357384800911, + -0.001472224947065115, + 0.008539893664419651, + -0.0015868045156821609, + 0.0026575885713100433, + -0.0017574375960975885, + 0.0012405926827341318, + -0.004757940769195557, + -0.0026856150943785906, + 0.029332391917705536, + -0.014217768795788288, + 0.017633726820349693, + 0.014718951657414436, + -0.008909186348319054, + -0.0036566571798175573, + -0.012338332831859589, + 0.007755146361887455, + -0.00652527017518878, + -0.0012867542682215571, + -0.0016980869695544243, + -0.009555448777973652, + -0.0078870365396142, + -0.006700024474412203, + -0.007352881133556366, + -0.0016008178936317563, + 0.002955990144982934, + -0.012958216480910778, + -0.001805247738957405, + -0.01037316769361496, + 0.00358082028105855, + 0.02132665365934372, + 0.01503548864275217, + 0.0023690785747021437, + 0.000745592056773603, + -0.02118157409131527, + -0.00997090246528387, + 0.024069970473647118, + 0.0008185438346117735, + -0.014362848363816738, + -0.023186305537819862, + 0.01657860353589058, + -0.019018573686480522, + -0.0006903629982843995, + 0.009977497160434723, + -0.009773067198693752, + -0.010696299374103546, + -0.015365214087069035, + -0.00547014782205224, + -0.006759375333786011, + 0.026839666068553925, + -0.004098489414900541, + 0.0003973193815909326, + 0.020996928215026855, + 0.016037853434681892, + -0.0005728982505388558, + -0.004685400985181332, + -0.009984091855585575, + 0.03735131770372391, + -0.012173470109701157, + -0.013624262996017933, + -0.0034522272180765867, + -0.0157740730792284, + -0.03429146483540535, + -0.00997090246528387, + -0.011467857286334038, + -0.005644902586936951, + 0.028250891715288162, + -0.002128378953784704, + -0.0007719700806774199, + 0.000394228205550462, + -0.015325646847486496, + 0.05792619660496712, + -0.025942811742424965, + 0.0119360676035285, + -0.033843036741018295, + -0.020271530374884605, + 0.00939058605581522, + 0.03972534090280533, + 0.027037501335144043, + -0.002929612062871456, + 0.00969393365085125, + -0.01759415864944458, + -0.006099923979490995, + 0.006512080784887075, + -0.02418867126107216, + 0.0034786053001880646, + 0.007089100778102875, + -0.0021003521978855133, + -0.0036731434520334005, + 0.01489040907472372, + -0.013531939126551151, + 0.031099719926714897, + 0.019229598343372345, + 0.004335891921073198, + 0.004748048726469278, + 0.001820085453800857, + 0.004876642022281885, + -0.00813103374093771, + -0.03044026903808117, + -0.005786684807389975, + 0.032049331814050674, + 0.013307726010680199, + -0.004204001743346453, + 0.038327306509017944, + 0.022381775081157684, + 0.020495744422078133, + -0.03165366128087044, + 0.007649634499102831, + 0.008546488359570503, + 0.00908723846077919, + 0.029015854001045227, + -0.013380265794694424, + -0.016934707760810852, + 0.0008704756619408727, + -0.02042979933321476, + 0.03249775618314743, + -0.01628844626247883, + 0.01701384223997593, + 0.0014466712018474936, + 0.01209433563053608, + -0.01718529872596264, + 0.002792776096612215, + -0.014560683630406857, + -0.00563501100987196, + 0.004728265572339296, + 0.0129516227170825, + -0.018530579283833504, + 0.018675658851861954, + -0.02052212320268154, + -0.010834784246981144, + -0.025916432961821556, + -0.004487565718591213, + -0.027222147211432457, + -0.009252101182937622, + -0.014864031225442886, + -0.0038380061741918325, + -0.008196978829801083, + -0.02178826928138733, + -0.01681600697338581, + 0.026892421767115593, + -0.019902238622307777, + -0.013320915400981903, + -0.02028471976518631, + -0.02352922037243843, + 0.0052986908704042435, + -0.02372705563902855, + -0.0025421844329684973, + 0.016881952062249184, + -0.027855221182107925, + -0.004701887257397175, + -0.02071995846927166, + 0.00668353820219636, + 0.01895262859761715, + 0.03497729450464249, + -0.02242134138941765, + 0.011302994564175606, + 0.002359186764806509, + -0.015787262469530106, + 0.007557311095297337, + 0.0015579535393044353, + -0.026259347796440125, + -0.009205939248204231, + 0.004721670877188444, + -0.02381937950849533, + -0.016011476516723633, + 0.00227510672993958, + 0.011659097857773304, + 0.005203070119023323, + -0.01335388794541359, + 0.022355396300554276, + 0.002105297986418009, + -0.022038860246539116, + 0.011494235135614872, + -0.007339692208915949, + 0.01320880837738514, + -0.0008985023014247417, + -0.02309398166835308, + 0.021247519180178642, + -0.009634582325816154, + -0.0022882958874106407, + -0.00660440418869257, + 0.00011530092888278887, + -0.012562545947730541, + -0.018451444804668427, + 0.0012315252097323537, + -0.0038940596859902143, + -0.001604939461685717, + 0.019862670451402664, + -0.02653631754219532, + 0.008652000688016415, + 0.009627988561987877, + -0.01035997923463583, + 0.008038710802793503, + -0.010557814501225948, + 0.0012941730674356222, + 0.025744976475834846, + -0.016921518370509148, + -0.0023921593092381954, + -0.030624914914369583, + 0.02891034260392189, + 0.014811274595558643, + -0.02292252518236637, + 0.02830364741384983, + -0.002555373590439558, + 0.013822098262608051, + -0.020706769078969955, + -0.0068253204226493835, + -0.011975634843111038, + 0.04178282991051674, + 0.005397608503699303, + -0.02089141495525837, + 0.010399546474218369, + 0.012971405871212482, + 0.006624187808483839, + -0.013090106658637524, + -0.011131537146866322, + 0.010399546474218369, + -0.005295393522828817, + 0.010650137439370155, + -0.011131537146866322, + 0.015154189430177212, + 0.015813641250133514, + -0.029437903314828873, + -0.037140294909477234, + 0.0025322928559035063, + -0.03255051374435425, + 0.016024665907025337, + -0.028752073645591736, + -0.01773923821747303, + 0.006891265511512756, + 0.0003066448261961341, + -0.008928969502449036, + -0.03310445323586464, + 0.004029246978461742, + -0.036190684884786606, + 0.010557814501225948, + 0.010841378010809422, + 0.024834932759404182, + 0.03840643912553787, + 0.026773720979690552, + 0.022329019382596016, + -0.006274678744375706, + 0.01332750916481018, + -0.01355831790715456, + -0.012424061074852943, + -0.023661110550165176, + 0.03510918468236923, + 0.011368939653038979, + 0.015325646847486496, + 0.012701030820608139, + 0.014600250869989395, + 0.007458393462002277, + 0.04315448924899101, + -0.018543768674135208, + -0.025045957416296005, + -0.011256832629442215, + -0.03516193851828575, + -0.020324287936091423, + 0.013156052678823471, + -0.01264827512204647, + -0.0008663540938869119, + -0.04194109886884689, + 0.003814925439655781, + 0.017290811985731125, + -0.004513943567872047, + -0.013386860489845276, + -0.004926100838929415, + 0.020957360044121742, + -0.023832567036151886, + 0.03885486721992493, + -0.0008976780227385461, + -0.008210168220102787, + -0.016077421605587006, + 0.018860304728150368, + -0.02529655024409294, + -0.035056427121162415, + 0.012879082933068275, + -0.01296481117606163, + 0.00429632468149066, + -0.009047671221196651, + -0.014006744138896465, + 0.024149104952812195, + -0.003359904047101736, + 0.010920512489974499, + -0.013756153173744678, + 0.0044249179773032665, + -0.01001046970486641, + 0.00036702584475278854, + -0.017000652849674225, + -0.025362495332956314, + -0.04017376899719238, + 0.038933999836444855, + 0.013822098262608051, + 0.005915277637541294, + 0.02381937950849533, + -0.0011565126478672028, + 0.010294034145772457, + 0.02650994062423706, + -0.008731134235858917, + 0.028250891715288162, + 0.0029065313283354044, + 0.03371114656329155, + 0.0010782027384266257, + -0.031811926513910294, + -0.00910042691975832, + -0.03347374498844147, + 0.0042798384092748165, + -0.025797732174396515, + 0.03096782974898815, + -0.015879586338996887, + 0.018253609538078308, + -0.0012356467777863145, + 0.011751420795917511, + -0.012621896341443062, + -0.01941424421966076, + -0.021524488925933838, + 0.0454230010509491, + 0.02523060515522957, + -0.004141354002058506, + -0.009199344553053379, + 0.009674149565398693, + -0.01759415864944458, + -0.002982368227094412, + 0.0019915427546948195, + -0.0018497607670724392, + -0.013136268593370914, + 0.00855308212339878, + 0.005644902586936951, + 0.05254507437348366, + -0.00219597271643579, + 0.016921518370509148, + 0.016037853434681892, + -0.021287085488438606, + -0.015167378820478916, + -0.025138281285762787, + 0.002858721185475588, + 0.011316183023154736, + -0.006228516809642315, + 0.02888396382331848, + -0.006169166415929794, + -0.005123936105519533, + 0.015075054951012135, + -0.011988823302090168, + -0.011006240732967854, + -0.0006306002615019679, + 0.004596374928951263, + 0.021577244624495506, + -0.010491869412362576, + -0.0001141674947575666, + 0.0017409513238817453, + 0.029306013137102127, + 0.0019618673250079155, + 0.006983588449656963, + 0.005486634094268084, + -0.02205204963684082, + -0.016473092138767242, + -0.005087666213512421, + 0.006614295765757561, + 0.018121719360351562, + 0.013914421200752258, + -0.008770701475441456, + -0.011969040147960186, + -0.0035478477366268635, + 0.008309085853397846, + -0.0012414169032126665, + 0.029411524534225464, + -0.018833927810192108, + -0.004207299090921879, + -0.007722173817455769, + -0.011969040147960186, + 0.014705762267112732, + -0.038907624781131744, + -0.003485199762508273, + -0.03371114656329155, + 0.016947897151112556, + -0.027960732579231262, + 0.03903951495885849, + 0.03526745364069939, + 0.00956204254180193, + -0.021418975666165352, + 0.01357150636613369, + 0.003828114364296198, + -0.021524488925933838, + 0.02954341471195221, + -0.005420689005404711, + -0.03463437780737877, + -0.017515024170279503, + -0.015866396948695183, + -0.0017096273368224502, + -0.019915428012609482, + 0.00991155207157135, + 0.008658594451844692, + 0.0013139565708115697, + 0.018253609538078308, + 0.0016898438334465027, + 0.00408859783783555, + 0.029279634356498718, + -0.0029774224385619164, + -0.007596878334879875, + 0.012391088530421257, + -0.016314823180437088, + 0.017660103738307953, + 0.006643971428275108, + 0.006284570321440697, + -0.003640170907601714, + -0.04093873128294945, + -0.01762053743004799, + 0.005054693669080734, + 0.029596172273159027, + -0.014798086136579514, + -0.003930329345166683, + -0.0036335764452815056, + -0.02283020131289959, + -0.009713716804981232, + 0.009199344553053379, + 0.0038841678760945797, + 0.012133902870118618, + 0.03487178310751915, + 0.012608707882463932, + -0.004939289763569832, + 0.03315720707178116, + -0.0009067454375326633, + -0.025731787085533142, + 0.018715227022767067, + 0.011804177425801754, + -0.030018219724297523, + 0.003386282129213214, + -0.024834932759404182, + 0.04766513407230377, + 0.014376036822795868, + -0.028778452426195145, + 0.013334103859961033, + 0.024492019787430763, + -0.04916868358850479, + -0.010109387338161469, + -0.015879586338996887, + -0.006568134296685457, + -0.010122576728463173, + 0.007049533538520336, + -0.0008280234760604799, + 0.011586558073759079, + 0.008566271513700485, + 0.0011087023885920644, + -0.032102085649967194, + -0.011955850757658482, + -0.009601609781384468, + 0.0011359048075973988, + 0.03542571887373924, + 0.003557739546522498, + -0.03400130569934845, + -0.009080643765628338, + 0.03284067288041115, + -0.012819732539355755, + -0.006792347878217697, + 0.02658907324075699, + -0.0024498612619936466, + -0.0071418569423258305, + 0.012463628314435482, + 0.03816903755068779, + 0.013597884215414524, + -0.0018893277738243341, + 0.02769695222377777, + -0.03334185481071472, + -0.007438609842211008, + -0.00849373172968626, + 0.0012084443587809801, + -0.027881598100066185, + -0.007952981628477573, + -0.016037853434681892, + -0.002001434564590454, + 0.00724077457562089, + 0.03843281790614128, + -0.025718597695231438, + -0.015813641250133514, + 0.005941655486822128, + 0.031152477487921715, + 0.027222147211432457, + 0.01562899351119995, + 0.008770701475441456, + 6.120531907072291e-05, + -0.0071418569423258305, + -0.01208114717155695, + 0.012021795846521854, + -0.021867403760552406, + -0.005348149687051773, + -0.007194613106548786, + -0.026206592097878456, + 0.03510918468236923, + -0.03595328330993652, + 0.01626206748187542, + -0.00129664596170187, + 0.027195768430829048, + 0.0027795869391411543, + -0.018596524372696877, + 0.010557814501225948, + 0.018398689106106758, + 0.03138987720012665, + 0.00024193616991396993, + 0.00450075464323163, + -0.010683109983801842, + -0.0005448716110549867, + -0.007201207336038351, + -0.011771204881370068, + 0.012846110388636589, + -0.012325143441557884, + -0.021273896098136902, + 0.00797276571393013, + -0.01086775679141283, + 0.022579610347747803, + -0.01638076826930046, + -0.023621544241905212, + -0.007794713601469994, + 0.006106518674641848, + 0.1707187294960022, + -0.00746498815715313, + 0.01638076826930046, + 0.0023509436286985874, + -0.01649947091937065, + -0.011942662298679352, + 0.010749055072665215, + 0.0026592370122671127, + 0.003511577844619751, + 0.02066720277070999, + -0.0049788570031523705, + 0.021339841187000275, + 0.02687923237681389, + 0.011237049475312233, + 0.026167025789618492, + -0.031469013541936874, + -0.0243073720484972, + -0.002263566479086876, + 0.012213037349283695, + 0.03658635541796684, + 0.00849373172968626, + -0.032946184277534485, + 0.0177919939160347, + -0.008526704274117947, + 0.0364544652402401, + 0.0013436318840831518, + -0.008790484629571438, + -0.018873494118452072, + 0.0260483231395483, + -0.00042658252641558647, + -0.0019635159987956285, + -0.0017937073716893792, + 0.001144972164183855, + -0.014956354163587093, + 0.002388862194493413, + 0.004108380991965532, + 0.006139491219073534, + -0.006294461898505688, + 0.03724580630660057, + 0.01800301857292652, + 0.019466999918222427, + -0.004019355401396751, + 0.008876213803887367, + -0.023344574496150017, + 0.002362484112381935, + 0.023608354851603508, + -0.016248878091573715, + 0.0029345580842345953, + -0.014389226213097572, + -0.02951703779399395, + -0.013953988440334797, + -0.006198841612786055, + 0.003620387287810445, + 0.005549282301217318, + -0.009397179819643497, + -0.008342058397829533, + 0.010313817299902439, + -0.005193178541958332, + -0.002041001571342349, + 0.012100930325686932, + -0.016301633790135384, + 0.0070627229288220406, + -0.009192749857902527, + 0.018385499715805054, + 0.0002433787303743884, + 0.013993555679917336, + -0.0018810846377164125, + -0.03128436580300331, + 0.020772714167833328, + -0.03152177110314369, + 0.0022833498660475016, + -0.02181464619934559, + -0.01725124381482601, + 0.01433646958321333, + 0.0037588721606880426, + -0.01846463419497013, + 0.026668207719922066, + 0.01875479333102703, + 0.018530579283833504, + 0.03392217308282852, + -0.00037939054891467094, + 0.014639817178249359, + 0.0010460545308887959, + -0.005222853738814592, + 0.023806190118193626, + -0.03903951495885849, + 0.039250537753105164, + -0.004326000344008207, + -0.021392598748207092, + -0.017752427607774734, + -0.026575885713100433, + -0.006409866269677877, + 0.0023509436286985874, + -0.006367001682519913, + 0.04088597744703293, + 0.0069044544361531734, + 0.018543768674135208, + 0.012588923797011375, + -0.030783183872699738, + -0.02246090956032276, + -0.01478489674627781, + 0.07802627235651016, + 0.04410409927368164, + -0.015246512368321419, + -0.016182933002710342, + 0.01417820155620575, + 0.0019453811692073941, + 0.01759415864944458, + -0.0003991740813944489, + -0.004945884458720684, + -0.006245003081858158, + -0.043339136987924576, + -0.00924550648778677, + -0.013703396543860435, + 0.004612861201167107, + 0.02159043401479721, + 0.0007744430331513286, + -0.03152177110314369, + 0.0026130755431950092, + -0.001721167704090476, + -0.020733147859573364, + -0.02231582999229431, + 0.0025306441821157932, + 0.005941655486822128, + 0.012872488237917423, + -0.01326815877109766, + -0.01626206748187542, + 0.025481196120381355, + 0.004556808155030012, + -0.015483914874494076, + 0.018556958064436913, + -0.027670573443174362, + 0.016829196363687515, + 0.0049195061437785625, + -0.021168384701013565, + 0.01208114717155695, + 0.007946387864649296, + -0.029912708327174187, + 0.009654366411268711, + 0.0058757103979587555, + 0.014349658973515034, + 0.004527132958173752, + 0.026351671665906906, + -0.013156052678823471, + -0.015259701758623123, + -0.01325497031211853, + 0.002807613695040345, + -0.011619530618190765, + -0.024821745231747627, + -0.020442988723516464, + 0.012773570604622364, + 0.0006874779355712235, + 0.0012842812575399876, + -0.01549710426479578, + 0.021234329789876938, + -0.02205204963684082, + -0.014204579405486584, + -0.03165366128087044, + 0.009436747059226036, + 0.0245975311845541, + 0.0026460480876266956, + -0.010795217007398605, + 0.0009364207508042455, + -0.0024597530718892813, + -0.02040342055261135, + 0.006465919315814972, + -0.16586518287658691, + 0.02410953678190708, + 0.026496751233935356, + -0.02694517746567726, + 0.013940799050033092, + -0.014850841835141182, + 0.014600250869989395, + 0.0029625846073031425, + -0.024241426959633827, + 0.011078780516982079, + 0.056554537266492844, + -0.017871128395199776, + -0.011309588328003883, + 0.0034819026477634907, + -0.009436747059226036, + -0.005163503345102072, + -0.025942811742424965, + 0.023318195715546608, + 0.0007357003050856292, + 0.023186305537819862, + 0.012213037349283695, + -0.02234220877289772, + 0.014230958186089993, + 0.013037350960075855, + 0.010333601385354996, + 0.005341554991900921, + -0.006601106841117144, + 0.04267968237400055, + 0.007821091450750828, + -0.01652584783732891, + 0.0076694181188941, + -0.019572513177990913, + 0.04133440554141998, + -0.01863609254360199, + 0.006393379997462034, + 0.004025949630886316, + -0.0009998929454013705, + 0.012912055477499962, + -0.008348653092980385, + 0.014692573808133602, + 0.013320915400981903, + 0.006594512611627579, + -0.005275609903037548, + 0.03102058544754982, + -0.016974274069070816, + 0.006053762510418892, + 0.010030253790318966, + -0.0009479611762799323, + -0.011507424525916576, + 0.0022454315330833197, + -0.02985995262861252, + -0.016684116795659065, + 0.0036335764452815056, + 0.02188059128820896, + 0.02263236604630947, + 0.02149811014533043, + 0.012496600858867168, + 0.01051824726164341, + -0.010432519018650055, + -0.01035997923463583, + -0.009740094654262066, + -0.009430152364075184, + 0.041308026760816574, + -0.00047439272748306394, + -0.001332091516815126, + -0.026641830801963806, + 0.008849835954606533, + -0.002515806583687663, + -0.016420336440205574, + -0.003956707660108805, + -0.019150463864207268, + 0.00722099095582962, + 0.02711663581430912, + -0.004029246978461742, + 0.008058493956923485, + 0.018913062289357185, + -0.0067527806386351585, + 0.017805183306336403, + -0.006627485156059265, + -0.023397330194711685, + -0.010986457578837872, + 0.043682049959897995, + -0.03835368528962135, + -0.022592799738049507, + -0.007840875536203384, + 0.002725182333961129, + -0.018425067886710167, + 0.018913062289357185, + 0.010993052273988724, + 0.0035775229334831238, + -0.002858721185475588, + -0.026615452021360397, + -0.022434530779719353, + -0.017409512773156166, + 0.003303850768133998, + -0.00302358390763402, + -0.007939793169498444, + -0.011058997362852097, + -0.016657738015055656, + -0.03885486721992493, + 0.0003241614904254675, + -0.02503276988863945, + -0.017805183306336403, + 0.014811274595558643, + -0.004415025934576988, + 0.0019190030870959163, + -0.009575231932103634, + 0.027222147211432457, + 0.02503276988863945, + -0.01094029564410448, + -0.009700527414679527, + -0.026325292885303497, + 0.01987585984170437, + -0.0021036495454609394, + 0.0072143967263400555, + -0.0037127104587852955, + -0.00013292064249981195, + -0.013202213682234287, + 0.03489815816283226, + -0.003084583207964897, + 0.05576319620013237, + -0.011982228606939316, + -0.009265289641916752, + 0.008104655891656876, + 0.02239496447145939, + -0.031442634761333466, + -0.08340739458799362, + 0.02650994062423706, + 0.021656379103660583, + 0.007042939309030771, + -0.009733499959111214, + 0.0078870365396142, + -0.021287085488438606, + 0.01582683064043522, + -0.016222501173615456, + 0.028567427769303322, + -0.03360563516616821, + -0.015602616593241692, + -0.002916423138231039, + -0.0185173898935318, + 0.008137628436088562, + -0.01640714704990387, + 0.0024234834127128124, + -0.026206592097878456, + -0.02071995846927166, + 0.03255051374435425, + -0.0006714037735946476, + -0.02118157409131527, + -0.013742963783442974, + 0.012410872615873814, + 0.014521116390824318, + -0.0012199848424643278, + -0.011922878213226795, + 0.006492297630757093, + 0.00625159777700901, + 0.001981650944799185, + 0.028171757236123085, + -0.019902238622307777, + 0.017989829182624817, + -0.02372705563902855, + 0.037746988236904144, + 0.0006075194687582552, + 0.01713254302740097, + -0.012826326303184032, + 0.036559976637363434, + -0.005941655486822128, + 0.002486131154000759, + 0.025837300345301628, + 0.009021293371915817, + -0.030493024736642838, + 0.016024665907025337, + -0.004121570382267237, + -0.021986104547977448, + -0.0052393400110304356, + 0.006274678744375706, + -0.01698746345937252, + -0.010432519018650055, + 0.00015249810530804098, + -0.012925243936479092, + 0.0034753079526126385, + 0.006228516809642315, + 0.00042060622945427895, + -0.012575735338032246, + -0.01718529872596264, + -0.013076918199658394, + 0.01791069656610489, + -0.004161137156188488, + 0.006413163151592016, + -0.01696108654141426, + 0.0260483231395483, + 0.01570812799036503, + -0.012753786519169807, + -0.008731134235858917, + -0.012958216480910778, + 0.004622753243893385, + -0.038591086864471436, + -0.03228673338890076, + 0.019598890095949173, + 0.0006648092530667782, + 0.0030746913980692625, + -0.015721317380666733, + -0.008421191945672035, + -0.015220134519040585, + -0.0013584695989266038, + 0.007425420917570591, + -0.022117994725704193, + -0.025586707517504692, + -0.021695945411920547, + 0.010544625110924244, + -0.026747342199087143, + 0.05299350246787071, + 0.021999293938279152, + 0.005519607104361057, + -0.024386506527662277, + 0.010478680022060871, + -0.03178555145859718, + 0.028171757236123085, + 0.007432015612721443, + 0.002207512967288494, + -0.032365866005420685, + -0.007530933246016502, + 0.0034819026477634907, + 0.009014698676764965, + -0.018596524372696877, + 0.007293530739843845, + 0.017317188903689384, + -0.030229244381189346, + -0.017752427607774734, + -0.04771789163351059, + 0.010887539945542812, + 0.018161287531256676, + 0.008368436247110367, + -0.018702037632465363, + 0.0029658819548785686, + 0.006353812757879496, + 0.0016288445331156254, + -0.014798086136579514, + 0.010498464107513428, + -0.023463275283575058, + 0.00849373172968626, + 0.010083009488880634, + -0.0052393400110304356, + -0.01979672536253929, + -0.017778804525732994, + -0.004945884458720684, + 0.0014005096163600683, + 0.009212533943355083, + 0.011527207680046558, + 0.0002808850258588791, + 0.00940377451479435, + 0.009871984831988811, + 0.010907323099672794, + -0.04175645112991333, + -0.0067395917139947414, + -0.016512658447027206, + 0.004019355401396751, + -0.02103649452328682, + -0.017224866896867752, + -0.008058493956923485, + -0.01805577427148819, + 0.002151459688320756, + 0.018833927810192108, + -0.011514018289744854, + -0.01672368310391903, + 0.011830555275082588, + 0.04001550003886223, + 0.004141354002058506, + 0.07301443815231323, + -0.02920050173997879, + -0.0303875133395195, + 0.0007649634499102831, + -0.03571587800979614, + 0.0007266328320838511, + -0.0014936570078134537, + 0.012476817704737186, + 0.0030779887456446886, + 0.013611073605716228, + -0.03603241592645645, + 0.04030565917491913, + 0.013835286721587181, + -0.00295928749255836, + -0.02983357384800911, + -0.017317188903689384, + -0.02040342055261135, + 0.032365866005420685, + 0.013822098262608051, + -0.011810772120952606, + -0.0318383052945137, + 0.03545209765434265, + 0.014389226213097572, + -0.0006005127797834575, + -0.016829196363687515, + 0.0019371380330994725, + -0.029358768835663795, + -0.022276263684034348, + 0.00383470905944705, + 0.020047318190336227, + -0.026035135611891747, + 0.0008729485562071204, + -0.016776438802480698, + 0.008625621907413006, + 0.03785249963402748, + -0.001958570210263133, + 0.0198231041431427, + 0.03331547603011131, + -0.0007464163936674595, + 0.0017953560454770923, + 0.011731637641787529, + 0.004698589909821749, + 0.020878225564956665, + 0.009871984831988811, + 0.0018431661883369088, + 0.02103649452328682, + 0.006284570321440697, + -0.014521116390824318, + 0.004398539662361145, + -0.020627634599804878, + -0.007497960701584816, + 0.001077378517948091, + 0.02384575642645359, + 0.009344424121081829, + -0.017726048827171326, + -0.00884324125945568, + -0.0003293134504929185, + -0.0034093628637492657, + 0.010643542744219303, + 0.014112256467342377, + 0.02619340270757675, + -0.009212533943355083, + 0.021458543837070465, + 0.016420336440205574, + -0.014534305781126022, + -0.0143232811242342, + -0.006090032402426004, + -0.008684973232448101, + -0.027907976880669594, + -0.022144373506307602, + 0.005598741117864847, + -0.0023097279481589794, + 0.023041225969791412, + 0.005605335347354412, + -0.020245153456926346, + -0.01771285943686962, + 0.005885602440685034, + -0.013545128516852856, + -0.019308732822537422, + -0.034106817096471786, + 0.022434530779719353, + 0.017356757074594498, + 0.029886329546570778, + 0.0013444562209770083, + 0.0038643842563033104, + 0.02372705563902855, + 0.002364132786169648, + 0.006703321821987629, + -0.0030911776702851057, + -0.00561522739008069, + 0.010247872211039066, + 0.010030253790318966, + -0.0067395917139947414, + -0.0185173898935318, + -0.023133549839258194, + -0.03452886641025543, + -0.016275256872177124, + 0.008744323626160622, + 0.010439112782478333, + 0.011982228606939316, + 0.10725314915180206, + 0.019480189308524132, + 0.0015744398115202785, + -0.003152176970615983, + -0.0009001509170047939, + 0.03998912498354912, + 0.01904495246708393, + 0.011157914996147156, + -0.0005205543129704893, + -0.042178500443696976, + 0.002154757035896182, + -0.027776086702942848, + 0.00541079742833972, + -0.0256130862981081, + -0.00884324125945568, + -0.0010427572997286916, + -0.03518831729888916, + -0.0004628523311112076, + -0.0020574878435581923, + 0.007563905790448189, + -0.0009174615261144936, + -0.00940377451479435, + 0.02457115240395069, + 0.029939087107777596, + -0.026628641411662102, + -0.013340698555111885, + 0.005905386060476303, + -0.00873772893100977, + -0.008572866208851337, + 0.0033269315026700497, + -0.018504202365875244, + -0.010340195149183273, + -0.07712941616773605, + -0.032102085649967194, + 0.01208114717155695, + -0.011823960579931736, + -0.008170600980520248, + -0.04143991693854332, + -0.0010073117446154356, + -0.008249735459685326, + 0.0035742258187383413, + 0.019625268876552582, + 0.0002291593118570745, + -0.024201860651373863, + 0.015167378820478916, + -0.026984745636582375, + -0.0044348095543682575, + -0.02658907324075699, + -0.024492019787430763 + ], + "metadata": { + "source": "Kreye_Marieke_BA_241_V2.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 17, + "has_images": true, + "image_count": 98, + "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", + "links": [], + "last_modified": "2025-05-05T23:00:23", + "_known_field_names": "frozenset({'is_continuation', 'sent_to', 'header_footer_type', 'email_message_id', 'filename', 'languages', 'detection_class_prob', 'sent_from', 'link_texts', 'cc_recipient', 'subject', 'image_mime_type', 'image_path', 'filetype', 'page_number', 'last_modified', 'signature', 'detection_origin', 'text_as_html', 'attached_to_filename', 'bcc_recipient', 'data_source', 'link_start_indexes', 'category_depth', 'emphasized_text_tags', 'parent_id', 'orig_elements', 'page_name', 'coordinates', 'url', 'link_urls', 'file_directory', 'links', 'table_as_cells', 'emphasized_text_contents', 'key_value_pairs', 'image_base64'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "Kreye_Marieke_BA_241_V2.pdf", + "detection_class_prob": 0.3422867953777313, + "parent_id": "e02392183bc6851689602ad4b9f6039f", + "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", + "id": "ce00eae5-7e07-454f-9e4f-f79ac36f92f4", + "processing_timestamp": "2025-05-05T23:15:46.977945", + "chunk_number": 21, + "total_chunks": 56, + "chunking_strategy": "hybrid", + "word_count": 570 + } +} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000022.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000022.json new file mode 100644 index 0000000000000000000000000000000000000000..59713968e0f81aed72318c061e41f3589bb1af5c --- /dev/null +++ b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000022.json @@ -0,0 +1,1570 @@ +{ + "id": "61a115b2-0ff7-441a-f6d9-eb3d00000022", + "content": "Das neo-\u00f6kologische Milieu als Teil der mittleren bis unteren Mittelschicht, ist gekennzeichnet von einer hohen Akzeptanz f\u00fcr neue Formen eines \u00f6kologischen und solidarisch gepr\u00e4gten Lebensstils. Hier ist ein Bevorzugen alternativer und klimafreundlicherer Verkehrsl\u00f6sungen zu erwarten. (vgl. Menges et al. 2023)\nF\u00fcr die drei detaillierter beschriebenen Milieus ist der Modal Split in Anhang 2.1 dargestellt. Abh\u00e4ngig von der sozialen Struktur entsteht so je Quartiersarchetyp ein individueller Modal Split, welcher f\u00fcr die vier Quartiersarchetypen in Anhang 2.2 visualisiert ist. Da aber nicht nur die soziale Struktur, sondern auch die geografische Lage eines Quartiers die Verkehrsmittelwahl beeinflusst, wurde der Modal Split mittels Lagefaktoren nachjustiert. Unterschieden wird in zentrale/ urbane Lage, periphere Lage und l\u00e4ndliche Lage. Je nach Lage sind bestimmte Quartiersarchetypen vorherrschend. Mit der Lage des Quartiers variiert das Verkehrsmittelangebot so wie zur\u00fcckzulegende Strecken. Beispielsweise gilt f\u00fcr ein Ein- und Zweifamilienhausquartier, dass je l\u00e4ndlicher es liegt, desto wahrscheinlicher die Nutzung des eigenen PKW ist und desto geringer die Wahrscheinlichkeit ist, dass Wege zu Fu\u00df zur\u00fcckgelegt werden (vgl. Anhang 2.3). ## 4.3 Szenarien Mobilit\u00e4tsver\u00e4nderung\n\nF\u00fcr das Pflanzen von Stadtb\u00e4umen ist der freiwerdende Platz bedingt durch eine Mobilit\u00e4tsverhaltens\u00e4nderung von zentraler Bedeutung. Ziel einer nachhaltigen Stadtentwicklung ist es unter anderem den Anteil des MIV in dem Modal Split des Quartiers zu reduzieren. Die Bereitschaft das eigene Mobilit\u00e4tsverhalten zu \u00e4ndern, wird, wie in Kapitel 0 beschrieben, durch verschiedene Faktoren beeinflusst, darunter die geografische Lage des Quartiers, die soziale Struktur innerhalb des Quartiers sowie aktiv oder passiv umgesetzte Ma\u00dfnahmen. Nach den Analysen von Drees & Sommer lassen sich drei m\u00f6gliche Szenarien zur Reduktion des MIV in einem Quartier definieren, welche im Folgenden n\u00e4her betrachtet werden. Die Art der ergriffenen Ma\u00dfnahmen zur Erreichung der Reduktion variiert je nach Quartierstyp und dem tats\u00e4chlichen Modal Split, jedoch ist der Prozess der schrittweisen Reduktion des MIV f\u00fcr alle Quartierstypen gleich. Die nachstehenden Mobilit\u00e4tsszenarien mit den jeweiligen Reduktionsma\u00dfnahmen wurden von Drees & Sommer im Rahmen des Projekts CGSC aufgestellt und bilden die Grundlage f\u00fcr die Baumpflanzungsszenarien in Kapitel 5.3 (vgl. Menges et al. 2024b). 22\nModellhafte Analyse des Mobilit\u00e4tsverhaltens\n\n## Mobilit\u00e4tsszenario 1\n\nIn diesem Szenario werden keine Ma\u00dfnahmen aktiv umgesetzt. Die \u00c4nderung des Mobilit\u00e4tsverhaltens und dabei des Modal Splits ist ausschlie\u00dflich durch eine Bewusstseins\u00e4nderung der Bewohner hervorzurufen, welche durch aktuelle Trends oder einen gesellschaftlichen Wandel bedingt wird. In diesem Szenario kann eine Reduktion des MIV-Anteils um bis zu 3 % erwartet werden. ## Mobilit\u00e4tsszenario 2\n\nDas zweite Szenario sieht die aktive Umsetzung von Ma\u00dfnahmen vor. Diese wirken dabei auf kurze Sicht und sind mit einem geringen Planungsaufwand verbunden, weshalb dieses Szenario auch als \u201eQuick Win\u201c betitelt wird.", + "embedding": [ + 0.026224546134471893, + -0.002926608780398965, + 0.016030553728342056, + -0.015417581424117088, + -0.021813811734318733, + 0.027983510866761208, + -0.02153397724032402, + -0.019641758874058723, + -0.028329972177743912, + -0.027423840016126633, + 0.020774424076080322, + 0.009401126764714718, + -0.00113100023008883, + 0.0002673424605745822, + -0.006093075964599848, + -0.005606696009635925, + 0.043627623468637466, + 0.0022570034489035606, + 0.03560568392276764, + 0.01054711826145649, + -0.002005484886467457, + 0.023985866457223892, + 0.011313333176076412, + -0.03267407789826393, + 0.0061696977354586124, + 0.025438344106078148, + 0.021427374333143234, + -0.016870059072971344, + -0.0020754437427967787, + 0.00333803310059011, + 0.022173600271344185, + 0.003289728192612529, + -0.014324892312288284, + -0.0017972742207348347, + -0.01469800528138876, + 0.006116395816206932, + 0.007735441904515028, + -0.001578236697241664, + 0.025225136429071426, + -0.009914157912135124, + 0.011040161363780499, + -0.007049179635941982, + -0.007902010343968868, + -0.012925717048346996, + -0.0033746780827641487, + 0.02437230385839939, + -0.0021520652808248997, + 0.013598653487861156, + -0.02362607792019844, + 0.014644703827798367, + 0.03006228432059288, + 0.028543179854750633, + -0.015204373747110367, + 0.012952367775142193, + -0.027197306975722313, + -0.007842045277357101, + -0.012832438573241234, + 0.01913539133965969, + 0.00961433444172144, + -0.019162042066454887, + -0.026797542348504066, + 0.013698594644665718, + -0.035712290555238724, + 0.025784805417060852, + -0.042055219411849976, + -0.0002473542408552021, + -0.017389751970767975, + -0.007322351913899183, + -0.0001200334372697398, + -0.010707023553550243, + 0.029129501432180405, + 0.022759921848773956, + 0.013045646250247955, + -0.017856145277619362, + 0.036911580711603165, + 0.0012509295484051108, + 0.014204963110387325, + -0.0033563554752618074, + -0.019162042066454887, + 0.01126003172248602, + 0.031128324568271637, + -0.03134153038263321, + -0.025464994832873344, + 0.04690569266676903, + 0.025464994832873344, + 0.012645881623029709, + 0.016270412132143974, + 0.02737053856253624, + 0.004197526723146439, + 0.02040131203830242, + 0.009174593724310398, + 0.010293934494256973, + 0.01772288978099823, + 0.0213207695633173, + -0.005306873004883528, + 0.0032414232846349478, + 0.0032347606029361486, + -0.004610616248100996, + 0.011126776225864887, + 0.0021970386151224375, + -0.0336335152387619, + 0.007542222272604704, + -0.0010094052413478494, + -0.004194195382297039, + -0.04757196828722954, + -0.007115806918591261, + -0.003038209630176425, + 0.009174593724310398, + 0.02647772990167141, + -0.012239454314112663, + -0.014204963110387325, + 0.022320181131362915, + -0.012552603147923946, + -0.022999780252575874, + 0.01704329065978527, + -0.010460502468049526, + 0.015324302949011326, + -0.009954134002327919, + -0.004120904952287674, + -0.008168519474565983, + 0.019908268004655838, + 0.005546731408685446, + -0.00032231007935479283, + -0.012012921273708344, + 0.011633144691586494, + 0.015617463737726212, + -0.006742693483829498, + -0.0051303100772202015, + -0.03190120309591293, + -0.01862902194261551, + -0.008028602227568626, + 0.012366046197712421, + 0.003847732674330473, + 0.011766400188207626, + -0.02177383564412594, + 0.012312744744122028, + -0.031075021252036095, + 0.004114242270588875, + -0.05034366622567177, + -0.045413240790367126, + -0.008948060683906078, + 0.009780903346836567, + -0.013372120447456837, + -0.0023802639916539192, + 0.012139513157308102, + 0.0175763089209795, + 0.008255135267972946, + 0.018562395125627518, + -0.0015382602578029037, + -0.020081499591469765, + 0.004797173198312521, + -0.024052493274211884, + 0.021893765777349472, + -0.0038044247776269913, + 0.004097585566341877, + 0.013365457765758038, + -0.0015557499136775732, + -0.001207621768116951, + -0.02571817860007286, + -0.018642347306013107, + 0.01451144926249981, + -0.020547891035676003, + -0.002072112401947379, + 0.005979809444397688, + 0.010620408691465855, + 0.010866929776966572, + 0.025225136429071426, + 0.009880844503641129, + 0.004883788991719484, + -0.01353202573955059, + -0.016163809224963188, + 0.012099537067115307, + -0.029662521556019783, + 0.016736803576350212, + -0.0011793050216510892, + 0.020454613491892815, + 0.0014166651526466012, + 0.005646672565490007, + -0.02154730260372162, + -0.031368181109428406, + -0.02984907664358616, + 0.019255319610238075, + 0.016790106892585754, + 0.013138924725353718, + -0.01225944235920906, + -0.001682342030107975, + 0.01765626296401024, + 0.006472852546721697, + -0.0121461758390069, + 0.01042718905955553, + -0.009321173653006554, + 0.009394464083015919, + 0.012052897363901138, + -0.009247884154319763, + -0.6293891072273254, + 0.017762865871191025, + 0.00027546269120648503, + -0.014884562231600285, + 0.008268460631370544, + 0.016710152849555016, + 0.02886299230158329, + 0.019202018156647682, + -0.003094842890277505, + 0.03909696266055107, + 0.0004847143718507141, + 0.001968839904293418, + -0.016416992992162704, + 0.009354487992823124, + -0.009774240665137768, + -0.009201244451105595, + -0.004380751866847277, + -0.010913568548858166, + 0.028596483170986176, + 0.004164212848991156, + -0.018229257315397263, + 0.01869565062224865, + 0.00025880581233650446, + 0.013618641532957554, + -0.005183611996471882, + 0.013631966896355152, + -0.003323041833937168, + -0.016563571989536285, + 0.01169977243989706, + 0.004653924144804478, + -0.025251787155866623, + 0.006875948049128056, + -0.011533203534781933, + 0.020654495805501938, + 0.05226253718137741, + 0.010673710145056248, + -0.0016581895761191845, + 0.016776781529188156, + 0.01802937500178814, + 0.00788202229887247, + 0.001990493619814515, + 0.007915335707366467, + -0.016656851395964622, + -0.0021553966216742992, + 0.014538099989295006, + -0.0025451667606830597, + 0.04200191795825958, + -0.0242923516780138, + 0.0012151172850281, + -0.01144658774137497, + 0.02586475946009159, + 0.00602311734110117, + -0.020294707268476486, + 0.014418170787394047, + 0.03456629812717438, + 0.005280221812427044, + 0.016190459951758385, + -0.017109917476773262, + -0.0038810463156551123, + 0.016510270535945892, + -0.020454613491892815, + -0.0005280221812427044, + 0.005986472126096487, + -0.02266664244234562, + -0.00344796827994287, + 0.0388837531208992, + -0.01667017675936222, + -0.023519473150372505, + 0.002605131594464183, + -0.03350025787949562, + -0.026491057127714157, + 0.026051314547657967, + -0.015377605333924294, + -0.025398366153240204, + 0.029662521556019783, + 0.014964515343308449, + 0.02116086333990097, + -0.015524185262620449, + -0.0029699166771024466, + 0.019788339734077454, + 0.0033546898048371077, + -0.020921004936099052, + -0.008068578317761421, + -0.008948060683906078, + 0.015097769908607006, + -0.026491057127714157, + -0.02459883876144886, + 0.01989494264125824, + -0.006532817147672176, + -0.0013425422366708517, + 0.017629612237215042, + 0.00810855533927679, + -0.0031048371456563473, + -0.012319407425820827, + 0.00251351878978312, + 0.0463460236787796, + -0.009127954952418804, + 0.051036592572927475, + 0.010693698190152645, + -0.055913716554641724, + -0.025678202509880066, + -0.000935282208956778, + 0.03152808919548988, + -0.01982831582427025, + 0.003399663371965289, + 0.009507730603218079, + -0.02438563108444214, + -0.002135408343747258, + 0.03184789791703224, + -0.01900213584303856, + 0.004867131821811199, + -0.006406224798411131, + -0.00361786806024611, + -0.02610461786389351, + -0.010127365589141846, + -0.028090113773941994, + 0.02325296401977539, + -0.001661520916968584, + 0.016350364312529564, + -0.013012331910431385, + -0.0023136367090046406, + 0.008468342944979668, + 0.021893765777349472, + -0.014418170787394047, + 0.012899065390229225, + 0.01908208802342415, + 0.015897298231720924, + -0.0032530829776078463, + -0.01576404459774494, + -0.024412281811237335, + -0.011966281570494175, + 0.008541633374989033, + 0.047678571194410324, + 0.00034667071304284036, + 0.017629612237215042, + -0.003497938858345151, + 0.016163809224963188, + 0.0006887607742100954, + -0.009527718648314476, + -0.023825960233807564, + -0.012699183076620102, + -0.018655672669410706, + -0.0064195506274700165, + -0.06454862654209137, + -0.026797542348504066, + -0.025238461792469025, + -0.018948834389448166, + 0.014284915290772915, + -0.008128543384373188, + -0.007775417994707823, + -0.022453434765338898, + 0.00013377533468883485, + -0.0034113230649381876, + 0.01741640456020832, + -0.014604726806282997, + 0.01122005470097065, + -0.027423840016126633, + -0.018735626712441444, + -0.01540425606071949, + -0.015364279970526695, + 0.004184200894087553, + 0.009001362137496471, + -0.036671724170446396, + 0.0012251114239916205, + -0.01853574439883232, + -0.009441102854907513, + 0.0035845544189214706, + -0.0020637838169932365, + -0.020161453634500504, + -0.03155473992228508, + -0.003741128835827112, + -0.018215931951999664, + -0.017376426607370377, + 0.009441102854907513, + -0.020507914945483208, + -0.013605316169559956, + -0.024958625435829163, + 0.0011676453286781907, + 0.0007424791692756116, + -0.004570640157908201, + 0.015337628312408924, + -0.02894294448196888, + -0.004020963795483112, + -0.011499890126287937, + 0.016283737495541573, + -0.003714477876201272, + 0.03864389657974243, + 0.003637856338173151, + -0.018349187448620796, + 0.025225136429071426, + 0.03483280912041664, + 0.046106163412332535, + -0.01861569657921791, + 0.00746226916089654, + -0.01861569657921791, + -0.004933759570121765, + 0.0024885335005819798, + 0.005160292610526085, + -0.007448943797498941, + 0.021800486370921135, + 0.05180947110056877, + 0.014857911504805088, + 0.016656851395964622, + -0.006183023098856211, + 0.022986454889178276, + -0.036618422716856, + 0.00226033478975296, + 0.006805989425629377, + 0.020294707268476486, + 0.04061606526374817, + 0.03941677138209343, + -0.0011651467066258192, + -0.03318044915795326, + -0.015910623595118523, + -0.007342339958995581, + 0.04216182231903076, + -0.0003462542954366654, + 0.0073356772772967815, + 0.0038777149748057127, + 0.012779136188328266, + -0.003511264221742749, + -0.013052308931946754, + 0.00800195150077343, + 4.455707676243037e-05, + -0.006835971958935261, + -0.009514393284916878, + -0.0049770670011639595, + 0.018362512812018394, + 0.000394559174310416, + -0.007815394550561905, + -0.014964515343308449, + 0.01413833536207676, + 0.013345468789339066, + 0.023452846333384514, + 0.00563001586124301, + 0.022413458675146103, + 0.00502703757956624, + -0.005100328009575605, + 0.028996245935559273, + -0.02086770348250866, + 0.017323125153779984, + 0.031954504549503326, + 0.00469056935980916, + -0.007802069187164307, + 0.0389104038476944, + -0.020907679572701454, + 0.0224401094019413, + 0.024545535445213318, + -0.01600390300154686, + -0.014937864616513252, + -0.0091612683609128, + -0.008834794163703918, + -0.0022386808414012194, + -0.016576899215579033, + 0.0005450954777188599, + -0.00882146880030632, + 0.016323713585734367, + -0.018868880346417427, + 0.015524185262620449, + 0.016883384436368942, + -0.013525363057851791, + -0.000488878577016294, + -0.012625893577933311, + -0.0023686042986810207, + -0.008368401788175106, + -0.014284915290772915, + -0.017736215144395828, + -0.01126003172248602, + -0.011013509705662727, + -0.003228097688406706, + 0.00579325295984745, + -0.009854192845523357, + -0.0009302851394750178, + -0.015284326858818531, + -0.01353202573955059, + -0.007222410757094622, + 0.011200066655874252, + 0.009101303294301033, + 0.017842819914221764, + 0.0005088667967356741, + 0.000523857946973294, + -0.005446790251880884, + -0.026744240894913673, + 0.024545535445213318, + -0.01652359589934349, + -0.02766369841992855, + -0.017829492688179016, + 0.018655672669410706, + -0.014258264563977718, + 0.003967661876231432, + 0.010587094351649284, + 0.006089744623750448, + -0.025971362367272377, + -0.015910623595118523, + -0.005503423511981964, + -0.011759736575186253, + 0.017336450517177582, + -0.009800891391932964, + 0.01132665853947401, + 0.011793050915002823, + -0.0008736518211662769, + -0.003734466154128313, + -0.0140184061601758, + -0.018056027591228485, + 0.03328705206513405, + -0.007375653833150864, + 0.007022528443485498, + -0.006935912650078535, + -0.01772288978099823, + -0.027850255370140076, + -0.02145402505993843, + -0.027716999873518944, + 0.0028666441794484854, + 0.0014841255033388734, + -0.013951778411865234, + -0.006829308811575174, + 0.010920231230556965, + -0.018868880346417427, + 0.0485847033560276, + -0.021787161007523537, + 0.00041246527689509094, + -0.03272738307714462, + -0.00901468750089407, + 0.0060797506012022495, + 0.0351259671151638, + 0.021187514066696167, + 0.0026018002536147833, + 0.020454613491892815, + -0.01713656820356846, + -0.009461091831326485, + 0.0074556064791977406, + -0.03677832707762718, + 0.00045348278945311904, + 0.0049770670011639595, + -0.006542811170220375, + -0.008028602227568626, + 0.02184046246111393, + -0.010640396736562252, + 0.031741295009851456, + 0.01484458614140749, + 0.00237526698037982, + -0.006286295596510172, + -0.007555547636002302, + -0.007482257671654224, + 0.00508367083966732, + -0.04951748624444008, + -0.010227306745946407, + 0.035472430288791656, + 0.008161856792867184, + 0.00949440523982048, + 0.028223369270563126, + 0.00893473532050848, + 0.017483031377196312, + -0.029422661289572716, + 0.02169388346374035, + 0.023239638656377792, + 0.006589450407773256, + 0.024185748770833015, + -0.012326070107519627, + -0.002716732444241643, + -0.0041009169071912766, + -0.027263933792710304, + 0.029102850705385208, + 0.0013183897826820612, + 0.029955681413412094, + 0.001662353752180934, + 0.01712324284017086, + -0.015910623595118523, + 0.005023706238716841, + -0.005540068726986647, + -0.019841641187667847, + 0.012985681183636189, + 0.010707023553550243, + -0.02012147568166256, + 0.03672502562403679, + -0.0048338184133172035, + -0.028010161593556404, + -0.009234558790922165, + 0.008968048729002476, + -0.007015865761786699, + -0.001955514308065176, + -0.0115931686013937, + -0.011886329390108585, + -0.015550835989415646, + -0.021254142746329308, + -0.02571817860007286, + 0.02339954487979412, + -0.009001362137496471, + -0.0022470091935247183, + -0.027503792196512222, + -0.015204373747110367, + -0.0022653318010270596, + -0.027104027569293976, + -0.012072885408997536, + 0.013038983568549156, + -0.02160060405731201, + -0.012872414663434029, + -0.016243761405348778, + -0.001592395012266934, + -0.0008045259164646268, + 0.014258264563977718, + -0.021707208827137947, + -0.004720551427453756, + 0.0145780760794878, + -0.010647059418261051, + 0.0034246486611664295, + -0.004893783014267683, + -0.02250673808157444, + -0.00475053396075964, + 0.01922866888344288, + -0.020241405814886093, + -0.02581145614385605, + -0.008308437652885914, + 0.02048126421868801, + -0.004893783014267683, + -0.008721527643501759, + 0.0036811642348766327, + -0.0011043492704629898, + -0.025438344106078148, + 0.005733288358896971, + -0.004867131821811199, + 0.010273945517838001, + 0.015044468455016613, + -0.02609129250049591, + 0.026730915531516075, + -0.012825775891542435, + -0.0004722217272501439, + -0.006686060223728418, + -0.007748767267912626, + -0.021747184917330742, + -0.028010161593556404, + 0.008954723365604877, + 0.006272970233112574, + -0.0031581390649080276, + 0.017842819914221764, + -0.008588272146880627, + 0.021667232736945152, + 0.004757196642458439, + -0.0078487079590559, + 0.005669991951435804, + 0.01077365130186081, + 0.0013208882883191109, + 0.021653907373547554, + 0.004034289158880711, + 0.005939833354204893, + -0.03352690860629082, + 0.03296723961830139, + 0.01900213584303856, + -0.0029782450292259455, + 0.01320555154234171, + 0.0002598468854557723, + 0.025598248466849327, + -0.03491276130080223, + 0.007042516488581896, + 0.00046889035729691386, + 0.03808422386646271, + 0.004324118606746197, + -0.023679379373788834, + 0.012419348582625389, + 0.0024269032292068005, + 0.03238091990351677, + 0.0011426600394770503, + -0.030275491997599602, + -0.008668225258588791, + -0.010873592458665371, + -0.0035778917372226715, + -0.01937524974346161, + 0.007702128030359745, + 0.015430906787514687, + -0.023825960233807564, + -0.04045616090297699, + 0.011786388233304024, + -0.04344106838107109, + 0.01988161727786064, + -0.026437753811478615, + -0.02002819813787937, + 0.0016431984258815646, + -0.00034042439074255526, + -0.010733675211668015, + -0.02856983058154583, + 0.008041927590966225, + -0.04621276631951332, + -0.004947084933519363, + 0.01816263049840927, + 0.032940588891506195, + 0.014658029191195965, + 0.016630200669169426, + 0.004440716467797756, + -0.008488330990076065, + -0.005390156991779804, + -0.009954134002327919, + 0.004440716467797756, + -0.014391519129276276, + 0.03605875000357628, + 0.010520467534661293, + 0.01668350212275982, + 0.014005080796778202, + 0.008041927590966225, + 0.0007770421216264367, + 0.034966062754392624, + -0.024438932538032532, + -0.030835162848234177, + -0.013358795084059238, + -0.0396299809217453, + -0.014684679917991161, + 0.015324302949011326, + -0.019481852650642395, + -0.0040043070912361145, + -0.024692116305232048, + 0.005396819673478603, + 0.011086800135672092, + 0.009307848289608955, + -0.004267485346645117, + 0.006672734394669533, + 0.016257086768746376, + -0.024692116305232048, + 0.028756387531757355, + 0.008301774971187115, + -0.01020731870085001, + -0.013012331910431385, + 0.004164212848991156, + -0.02737053856253624, + -0.01981499046087265, + 0.004620610736310482, + 0.0011276687728241086, + -0.00557005126029253, + -0.0009935811394825578, + -0.008954723365604877, + 0.013152250088751316, + 0.013318818062543869, + 0.007662151474505663, + -0.015164397656917572, + 0.0002550580247770995, + -0.005390156991779804, + 0.01898881047964096, + -0.00987418182194233, + -0.024492233991622925, + -0.0456264466047287, + 0.024718767032027245, + 0.010160678997635841, + 0.00122927560005337, + 0.019801665097475052, + -0.014711330644786358, + 0.0070625049993395805, + 0.02878303825855255, + -0.0018972153775393963, + 0.020134801045060158, + -0.00333803310059011, + 0.03491276130080223, + -0.007655488792806864, + -0.030248841270804405, + -0.01042718905955553, + -0.04514672979712486, + -0.008268460631370544, + -0.02228020504117012, + 0.028916293755173683, + -0.006452864035964012, + -0.0015824008733034134, + -0.010014099068939686, + 0.011300007812678814, + -0.016203785315155983, + -0.016790106892585754, + -0.009920820593833923, + 0.03845733776688576, + 0.021040935069322586, + 0.0007308193598873913, + -0.019175367429852486, + -0.001696500345133245, + -0.017896121367812157, + 0.018069352954626083, + 0.012346058152616024, + 0.002988239051774144, + 0.003254748648032546, + 0.0067160422913730145, + 0.009847530163824558, + 0.05847221240401268, + 0.006656077690422535, + 0.013805198483169079, + 0.004613947588950396, + -0.01712324284017086, + -0.022533388808369637, + -0.025704853236675262, + 0.008175182156264782, + 0.022706620395183563, + -0.01435154303908348, + 0.03275403380393982, + 0.0024169092066586018, + 0.0006437873234972358, + -6.50658257654868e-05, + -0.012426011264324188, + -0.010786976665258408, + 0.008968048729002476, + 0.0006292125326581299, + 0.023199662566184998, + -0.0026717588771134615, + -0.0006529485690407455, + 0.003997644409537315, + 9.746860996528994e-06, + 0.003990981727838516, + -0.0065161604434251785, + 0.0044074030593037605, + -0.032327618449926376, + -0.021187514066696167, + 0.003218103665858507, + 0.005843223538249731, + 0.02145402505993843, + -0.001556582748889923, + -0.0021387396845966578, + -0.0007037519826553762, + -0.014737982302904129, + -0.015417581424117088, + -0.009361150674521923, + 0.02341287024319172, + -0.019175367429852486, + -0.0002446474973112345, + 0.007528896909207106, + -0.0014857911737635732, + 0.01960178278386593, + -0.03640521317720413, + -0.004757196642458439, + -0.015324302949011326, + 0.02835662290453911, + -0.02414577081799507, + 0.03469955176115036, + 0.0366450734436512, + 0.009028013795614243, + -0.0043740891851484776, + 0.02100095897912979, + 0.01484458614140749, + -0.013805198483169079, + 0.015750719234347343, + -0.0033963320311158895, + -0.031368181109428406, + -0.003714477876201272, + -0.01495118997991085, + -0.006556136533617973, + -7.099982758518308e-05, + 0.004980398342013359, + -0.0010318919084966183, + -0.010440514422953129, + 0.008608261123299599, + -0.01147990208119154, + -0.008195171132683754, + 0.028063463047146797, + -0.009700950235128403, + -0.01043385174125433, + 0.03168799355626106, + 7.302988524315879e-05, + 0.006179691758006811, + -0.01203957200050354, + 0.008195171132683754, + -0.015124420635402203, + -0.01997489668428898, + -0.015724068507552147, + -0.011393286287784576, + 0.029342709109187126, + -0.005096996668726206, + -0.003624530741944909, + -0.001723984139971435, + -0.017962748184800148, + -0.014538099989295006, + 0.011846352368593216, + 0.01854906976222992, + 0.014364868402481079, + 0.01660354994237423, + -0.00367450132034719, + 0.0172031968832016, + 0.020814402028918266, + 0.009261209517717361, + -0.014524774625897408, + 0.010253957472741604, + -0.004960410296916962, + -0.028090113773941994, + 0.0025601580273360014, + -0.023146361112594604, + 0.033766768872737885, + 0.026264522224664688, + -0.024838697165250778, + 0.018349187448620796, + -0.007222410757094622, + -0.05175616964697838, + -0.017762865871191025, + -0.004720551427453756, + -0.01065372209995985, + -0.007322351913899183, + 0.007035853806883097, + -0.004923765081912279, + 0.022613340988755226, + 0.017003314569592476, + 0.02489199861884117, + -0.03699153661727905, + 0.0006604441441595554, + 0.005576713941991329, + -0.00878815446048975, + 0.02737053856253624, + 2.6598909244057722e-05, + -0.030781861394643784, + 0.000726655125617981, + 0.02273327112197876, + -0.007388979196548462, + -0.0057099685072898865, + 0.02848987840116024, + -0.004110910929739475, + -0.012312744744122028, + 0.013598653487861156, + 0.02835662290453911, + 0.01668350212275982, + -0.010440514422953129, + 0.037204742431640625, + -0.027010750025510788, + -0.00062171695753932, + -0.0009685959084890783, + 0.0005988138145767152, + -0.019321948289871216, + -0.012539277784526348, + -0.009461091831326485, + 0.0016698493855074048, + -0.0010485488455742598, + 0.03789766877889633, + -0.014418170787394047, + -0.014458146877586842, + -0.010513804852962494, + 0.021707208827137947, + 0.0254250168800354, + 0.028889643028378487, + 0.017456380650401115, + 0.003964330535382032, + -0.004097585566341877, + -0.010853604413568974, + 0.016270412132143974, + -0.02722395770251751, + -0.013152250088751316, + 0.019388575106859207, + -0.01469800528138876, + 0.03507266566157341, + -0.01966840960085392, + 0.01031392253935337, + -0.012545940466225147, + 0.022400133311748505, + -0.01010071486234665, + -0.014111684635281563, + -0.005243576597422361, + 0.007362328469753265, + 0.02482537180185318, + -0.020427962765097618, + 0.002242012182250619, + 0.006709379609674215, + 0.002786691300570965, + -0.012685857713222504, + -0.014271589927375317, + 0.017776191234588623, + -0.015817346051335335, + -0.016843408346176147, + 0.005067014135420322, + -0.010700360871851444, + 0.014498122967779636, + 0.006123058497905731, + -0.019122065976262093, + -0.005003718193620443, + 0.02034800872206688, + 0.18794257938861847, + -0.013398771174252033, + -0.0029998989775776863, + 0.003491275943815708, + 0.0021753846667706966, + 0.0007287372718565166, + 0.0250385794788599, + -0.010607083328068256, + 0.016803432255983353, + 0.015337628312408924, + -0.00234528467990458, + 0.018522419035434723, + 0.026424428448081017, + 0.003990981727838516, + 0.0062663075514137745, + -0.04301465302705765, + -0.012445999309420586, + 0.001577403862029314, + 0.011153427883982658, + 0.021267468109726906, + 0.015590813010931015, + -0.03509931638836861, + 0.012332732789218426, + -0.009640985168516636, + 0.02944931387901306, + 0.009680962190032005, + -0.011053486727178097, + -0.0034446369390934706, + 0.026864169165492058, + 0.022453434765338898, + 0.005463447421789169, + 0.005276890471577644, + 0.005650003906339407, + -0.01335213240236044, + 0.010407201014459133, + -0.0029382684733718634, + 0.014964515343308449, + -0.019695060327649117, + 0.039603330194950104, + 0.017469706013798714, + 0.011280019767582417, + 0.0037611171137541533, + -0.0067160422913730145, + -0.017749540507793427, + -0.005220257211476564, + 0.023985866457223892, + -0.011746411211788654, + 0.014005080796778202, + 0.008621586486697197, + -0.031154975295066833, + -0.010247294791042805, + -0.004154218826442957, + 0.007742104586213827, + 0.01906876266002655, + -0.012272767722606659, + 0.005176949314773083, + 0.003764448454603553, + 0.003884377656504512, + 0.003276402596384287, + 0.005663329269737005, + -0.019535155966877937, + 0.006296289619058371, + -0.0025101874489337206, + 0.012232791632413864, + -0.006149709690362215, + 0.007828719913959503, + -0.020761098712682724, + -0.028383275493979454, + 0.022919828072190285, + -0.029182802885770798, + 0.006276301573961973, + -0.02894294448196888, + -0.02197371795773506, + 0.002793353982269764, + -0.0024269032292068005, + -0.028063463047146797, + 0.022999780252575874, + 0.010000773705542088, + 0.03259412571787834, + 0.04061606526374817, + -0.02228020504117012, + -0.008981374092400074, + -0.010607083328068256, + -0.022186925634741783, + 0.017109917476773262, + -0.04394743591547012, + 0.026077967137098312, + -0.015830671414732933, + -0.029715823009610176, + -0.014098359271883965, + -0.018109329044818878, + -0.014977840706706047, + 0.010213981382548809, + -0.003219769336283207, + 0.018002724274992943, + 0.009974122978746891, + 0.00870820228010416, + 0.012366046197712421, + -0.036618422716856, + -0.01704329065978527, + -0.016017228364944458, + 0.07675477117300034, + 0.02766369841992855, + -0.014218288473784924, + 0.006176360417157412, + 0.008028602227568626, + 0.0063296034932136536, + 0.019281970337033272, + -0.00976091530174017, + -0.016923360526561737, + 0.007695465348660946, + -0.038110874593257904, + 0.007222410757094622, + -0.008308437652885914, + -0.0054034823551774025, + 0.017176544293761253, + -0.0023286277428269386, + -0.01319888886064291, + 0.01126003172248602, + -0.018442464992403984, + -0.017083266749978065, + -0.006766012869775295, + -0.002283654408529401, + -0.0036778326611965895, + 0.020801076665520668, + -0.009434440173208714, + -0.017029965296387672, + 0.0013367122737690806, + -0.01331215538084507, + 0.0007295701070688665, + 0.012439336627721786, + -0.022333506494760513, + 0.013172238133847713, + -0.0024052492808550596, + -0.011453251354396343, + 0.023652728646993637, + 0.0024052492808550596, + -0.04354767128825188, + 0.012505964376032352, + 6.917798600625247e-05, + 0.008308437652885914, + 0.0035912171006202698, + 0.002793353982269764, + -0.00811521802097559, + 0.002393589587882161, + -0.009794228710234165, + 0.01913539133965969, + -0.002863312838599086, + -0.04240167886018753, + -0.020174778997898102, + -0.003967661876231432, + -0.0015965591883286834, + 0.0014349877601489425, + -0.01114676520228386, + 0.02409246936440468, + -0.0016207116423174739, + -0.02138739638030529, + -0.018442464992403984, + 0.014111684635281563, + 0.017682913690805435, + -0.005473441444337368, + -0.0049204337410628796, + -0.013212214224040508, + -0.005833229515701532, + -0.015444232150912285, + 0.010567106306552887, + -0.16854068636894226, + 0.017602959647774696, + 0.03432643786072731, + -0.034433044493198395, + 0.012479312717914581, + -0.00912129133939743, + -0.005320198368281126, + 0.023146361112594604, + -0.025638224557042122, + -0.001235105562955141, + 0.0493575818836689, + -0.016350364312529564, + -0.023466171696782112, + -0.010393875651061535, + -0.003233094932511449, + 0.015950601547956467, + -0.017962748184800148, + 0.029822425916790962, + 0.005156961269676685, + 0.01765626296401024, + 0.010007436387240887, + -0.01892218366265297, + 0.026650961488485336, + -0.0027700343634933233, + 0.011160090565681458, + 0.016137156635522842, + -0.006855960004031658, + 0.043867483735084534, + 0.005879868287593126, + -0.01263921894133091, + -0.004094254225492477, + -0.005856548901647329, + 0.03531252592802048, + -0.017176544293761253, + -0.0016648522578179836, + 0.010573768988251686, + 0.007562210317701101, + -0.006063093896955252, + -0.009547706693410873, + 0.025638224557042122, + 0.016803432255983353, + 0.002268663141876459, + -0.006752687506377697, + 0.019175367429852486, + -0.028729736804962158, + 0.016097180545330048, + 0.01577736996114254, + 0.0001031683714245446, + -0.0201881043612957, + 0.012086211703717709, + -0.01132665853947401, + -0.007948649115860462, + -0.0060564312152564526, + 0.009814216755330563, + 0.024398956447839737, + 0.02521180920302868, + 0.01275248546153307, + 0.008141868747770786, + -0.005160292610526085, + -0.0010160679230466485, + -0.0031398164574056864, + -0.006476183887571096, + 0.018455790355801582, + 0.004613947588950396, + -0.02033468335866928, + -0.013512037694454193, + 0.0134587362408638, + 0.0006246319389902055, + -0.020387986674904823, + -0.0028866322245448828, + -0.020014872774481773, + 0.01629706285893917, + 0.022266879677772522, + 0.001695667509920895, + 0.019055437296628952, + 0.005156961269676685, + -0.006003129296004772, + 0.007802069187164307, + -0.014191637746989727, + -0.008721527643501759, + -0.016137156635522842, + 0.05564720928668976, + -0.021787161007523537, + -0.009167931042611599, + -0.015564162284135818, + -0.01241268590092659, + -0.010680372826755047, + -0.003113165497779846, + 0.008634911850094795, + 0.005593370646238327, + -0.00019780010916292667, + -0.035339176654815674, + -0.012239454314112663, + -0.028329972177743912, + 0.004830487072467804, + -0.011453251354396343, + -0.005856548901647329, + -0.007269049994647503, + -0.01507111918181181, + -0.02176051028072834, + -0.003288062522187829, + -0.009287860244512558, + -0.03110167197883129, + 0.008554958738386631, + -0.01391180232167244, + 0.0037278032395988703, + -0.007388979196548462, + 0.01192630548030138, + 0.028969595208764076, + -0.018429139629006386, + -0.016283737495541573, + -0.017243172973394394, + 0.0102806081995368, + 0.0020571211352944374, + -0.0057732644490897655, + 0.00220703287050128, + 0.006649415008723736, + -0.016190459951758385, + 0.011386623606085777, + -0.0035778917372226715, + 0.045200031250715256, + -0.02250673808157444, + -0.012545940466225147, + -0.007875359617173672, + 0.02790355682373047, + -0.027850255370140076, + -0.09093308448791504, + 0.01540425606071949, + 0.02100095897912979, + 0.0067326994612813, + 0.015604138374328613, + 0.00882813148200512, + -0.01741640456020832, + 0.03334035351872444, + -0.0018389163305982947, + 0.015804020687937737, + -0.035339176654815674, + -0.012805786915123463, + -0.007189096882939339, + -0.010473827831447124, + 0.03568563982844353, + -0.026384452357888222, + -0.005503423511981964, + -0.024425607174634933, + -0.00901468750089407, + 0.02683751843869686, + 0.005640009883791208, + -0.02010815031826496, + -0.021027609705924988, + 0.001325885416008532, + 0.013152250088751316, + 0.001487456844188273, + -0.022400133311748505, + 0.016030553728342056, + 0.0078553706407547, + -0.0031398164574056864, + 0.005789921618998051, + -0.0254250168800354, + 0.023212987929582596, + -0.026904145255684853, + 0.02753044292330742, + 0.012579253874719143, + 0.013638629578053951, + -0.01958845742046833, + 0.014684679917991161, + -0.014564750716090202, + -0.008308437652885914, + 0.008761503733694553, + 0.013258853927254677, + -0.030488699674606323, + 0.0077620926313102245, + -0.02952926605939865, + -0.011746411211788654, + 0.013518700376152992, + -0.005953158717602491, + -0.016430318355560303, + -0.02386593632400036, + 0.0035079328808933496, + -0.015724068507552147, + 0.015257676132023335, + 0.015604138374328613, + 0.010826953686773777, + 0.0045839655213057995, + -0.013345468789339066, + -0.01914871670305729, + 0.002953259740024805, + -0.019801665097475052, + 0.017403077334165573, + -0.01974836364388466, + 0.014391519129276276, + 0.014191637746989727, + -0.018828904256224632, + -0.02902289852499962, + -0.0074556064791977406, + -0.0021404053550213575, + -0.020294707268476486, + -0.020321357995271683, + 0.016790106892585754, + 0.001837250660173595, + 0.005183611996471882, + -0.02753044292330742, + -0.0004280810826458037, + -0.02401251718401909, + -0.008021939545869827, + 0.006656077690422535, + -0.022080322727560997, + -0.020241405814886093, + -0.030542002990841866, + 0.006432875990867615, + -0.033979978412389755, + 0.040482811629772186, + 0.003990981727838516, + 0.012785798870027065, + -0.016936685889959335, + 0.017163218930363655, + -0.023306265473365784, + 0.009860855527222157, + 0.007022528443485498, + 0.006805989425629377, + -0.030195539817214012, + -0.008295112289488316, + -0.0023802639916539192, + 0.011793050915002823, + -0.02437230385839939, + 0.007089155726134777, + 0.016283737495541573, + -0.008794817142188549, + -0.02415909618139267, + -0.0411224327981472, + 0.01252595242112875, + 0.024692116305232048, + 0.00796197447925806, + -0.019495178014039993, + -0.0014458147343248129, + 0.008868107572197914, + 0.006875948049128056, + 0.003296390874311328, + 0.008008614182472229, + -0.006029780022799969, + 0.020228080451488495, + 0.012545940466225147, + -0.010340573266148567, + -0.022040344774723053, + -0.010707023553550243, + 0.0019888279493898153, + 0.011166753247380257, + 0.008241809904575348, + 0.0071424576453864574, + 0.009434440173208714, + -0.013991755433380604, + 0.014045056886970997, + 0.01229941938072443, + -0.027637047693133354, + 0.005123647395521402, + -0.01854906976222992, + -0.003333035856485367, + 0.000359787984052673, + -0.003521258244290948, + 0.0030615292489528656, + -0.00810855533927679, + -0.007082493044435978, + 0.01615048386156559, + -0.014098359271883965, + -0.012659206986427307, + 0.03382007032632828, + 0.026131268590688705, + 0.006206342950463295, + 0.07073165476322174, + -0.025305088609457016, + -0.031288228929042816, + -0.004474030341953039, + -0.03126157820224762, + -0.00014814187306910753, + 0.008728190325200558, + 0.01691003516316414, + -0.005330192390829325, + 0.01952183060348034, + -0.021667232736945152, + 0.05228918790817261, + 0.0033746780827641487, + 0.0048005045391619205, + -0.007941986434161663, + 0.011879666708409786, + -0.02040131203830242, + 0.0164436437189579, + 0.02122749201953411, + -0.010233969427645206, + -0.02093433029949665, + 0.03853728994727135, + 0.007968638092279434, + -0.00060089590260759, + 0.00629962095990777, + 0.007908673025667667, + -0.025558272376656532, + -0.017629612237215042, + 0.006606107112020254, + 0.017256498336791992, + -0.03352690860629082, + -0.017696239054203033, + -0.017549658194184303, + 0.012319407425820827, + 0.02498527616262436, + -0.004587296862155199, + 0.0009394463850185275, + 0.03715144097805023, + -0.017296474426984787, + 8.307604730362073e-05, + 0.023239638656377792, + 0.007862034253776073, + 0.02116086333990097, + -0.000984419952146709, + -0.0032364262733608484, + 0.012159501202404499, + 0.017523007467389107, + -0.010727012529969215, + 0.019628433510661125, + -0.009774240665137768, + -0.004573971498757601, + 0.0018822242273017764, + 0.021507326513528824, + 0.023066407069563866, + 0.0023286277428269386, + 0.004064271692186594, + -0.0006646083784289658, + 0.0003720724198501557, + -0.0047372085973620415, + 0.020214755088090897, + 0.023279614746570587, + 0.0011568183545023203, + 0.019695060327649117, + 0.010413863696157932, + -0.029742473736405373, + -0.00894139800220728, + 0.000206024429644458, + -0.0028233362827450037, + -0.031128324568271637, + -0.006829308811575174, + 0.0231863372027874, + -0.02341287024319172, + 0.019535155966877937, + 0.010014099068939686, + -0.009407789446413517, + -0.02370603010058403, + 0.03131487965583801, + 0.0009577689343132079, + -0.015670765191316605, + -0.03821748122572899, + 0.02490532398223877, + 0.01816263049840927, + 0.016656851395964622, + 0.010640396736562252, + -0.0035479094367474318, + 0.03581889346241951, + 0.014324892312288284, + 0.0066927229054272175, + -0.014045056886970997, + 0.007082493044435978, + -0.0011185075854882598, + 0.024652140215039253, + -0.007715453393757343, + -0.021414047107100487, + -0.026277849450707436, + -0.027197306975722313, + -0.024492233991622925, + 0.005450121592730284, + 0.014604726806282997, + 0.028010161593556404, + 0.10404535382986069, + 0.027690349146723747, + 0.008481668308377266, + -0.004364095162600279, + 0.0036511817015707493, + 0.025624899193644524, + 0.016190459951758385, + 0.018589045852422714, + 0.002025473164394498, + -0.044986825436353683, + 0.008321763016283512, + -0.025931386277079582, + 0.005246907938271761, + -0.03198115527629852, + 0.0016165474662557244, + 0.020907679572701454, + -0.03254082426428795, + 0.01286575198173523, + -0.00220703287050128, + 0.018802253529429436, + 0.013698594644665718, + -0.019708385691046715, + 0.02085437811911106, + 0.03472620248794556, + -0.0202014297246933, + -0.006522823125123978, + 0.02265331707894802, + -0.014884562231600285, + -0.01147990208119154, + -0.001473298529163003, + -0.013965103775262833, + 0.002145402366295457, + -0.09040006250143051, + -0.03760450705885887, + 0.023652728646993637, + -0.007448943797498941, + -0.01297901850193739, + -0.0381375253200531, + -0.008055252954363823, + -0.00904133915901184, + 0.009787566028535366, + 0.01885555498301983, + -0.018562395125627518, + -0.03035544604063034, + 0.00635625422000885, + -0.02737053856253624, + 0.010293934494256973, + -0.022986454889178276, + -0.03635191172361374 + ], + "metadata": { + "source": "Kreye_Marieke_BA_241_V2.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 17, + "has_images": true, + "image_count": 98, + "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", + "links": [], + "last_modified": "2025-05-05T23:00:23", + "_known_field_names": "frozenset({'is_continuation', 'sent_to', 'header_footer_type', 'email_message_id', 'filename', 'languages', 'detection_class_prob', 'sent_from', 'link_texts', 'cc_recipient', 'subject', 'image_mime_type', 'image_path', 'filetype', 'page_number', 'last_modified', 'signature', 'detection_origin', 'text_as_html', 'attached_to_filename', 'bcc_recipient', 'data_source', 'link_start_indexes', 'category_depth', 'emphasized_text_tags', 'parent_id', 'orig_elements', 'page_name', 'coordinates', 'url', 'link_urls', 'file_directory', 'links', 'table_as_cells', 'emphasized_text_contents', 'key_value_pairs', 'image_base64'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "Kreye_Marieke_BA_241_V2.pdf", + "detection_class_prob": 0.3422867953777313, + "parent_id": "e02392183bc6851689602ad4b9f6039f", + "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", + "id": "ce00eae5-7e07-454f-9e4f-f79ac36f92f4", + "processing_timestamp": "2025-05-05T23:15:46.977945", + "chunk_number": 22, + "total_chunks": 56, + "chunking_strategy": "hybrid", + "word_count": 424 + } +} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000023.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000023.json new file mode 100644 index 0000000000000000000000000000000000000000..db9ae9c02f4087a45ab36b7c19b8044305e99a5f --- /dev/null +++ b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000023.json @@ -0,0 +1,1570 @@ +{ + "id": "61a115b2-0ff7-441a-f6d9-eb3d00000023", + "content": "## Mobilit\u00e4tsszenario 2\n\nDas zweite Szenario sieht die aktive Umsetzung von Ma\u00dfnahmen vor. Diese wirken dabei auf kurze Sicht und sind mit einem geringen Planungsaufwand verbunden, weshalb dieses Szenario auch als \u201eQuick Win\u201c betitelt wird. Beispiele f\u00fcr solche Ma\u00dfnahmen k\u00f6nnten die Bereitstellung von E-Scootern oder der Bau von Fahrradabstellanlagen an Haltestellen des \u00d6PNV sein. In diesem Szenario wird eine Verringerung des MIV-Anteils um 10 % angestrebt. Mobilit\u00e4tsszenario 3\nAuch in diesem Szenario werden aktiv Ma\u00dfnahmen ergriffen. Im Vergleich zu Szenario 2 handelt es sich in Szenario 3 um langfristige, umfassende Ma\u00dfnahmen zur signifikanten St\u00e4rkung des \u00f6ffentlichen Mobilit\u00e4tsangebots. Dies erfordert einen l\u00e4ngeren Planungshorizont und h\u00f6here Investitionskosten, bietet jedoch den gr\u00f6\u00dften Einfluss auf den Modal Split. Zu den potenziellen Ma\u00dfnahmen in diesem Szenario geh\u00f6ren beispielsweise die engere Taktung des \u00d6PNV, ein quartiers\u00fcbergreifendes Mobilit\u00e4tsmanagement oder eine st\u00e4dtebauliche Neugestaltung des Verkehrsraums, die den \u00d6PNV, den Rad- und den Fu\u00dfverkehr priorisiert. Mit Realisierung dieses Szenarios kann eine Reduktion des MIV-Anteils von bis zu 20 % erzielt werden. Wie bereits in Kapitel 3.1 erl\u00e4utert, stellt insbesondere der Parkraum die Potentialfl\u00e4che f\u00fcr zus\u00e4tzliches Gr\u00fcn im urbanen Raum dar. Aus diesem Grund haben die Szenarien der MIV-Reduktion eine direkte Auswirkung auf die Gr\u00f6\u00dfe der freiwerdenden Fl\u00e4che und damit auf die Anzahl der neuen B\u00e4ume. Die Baumpflanzungsszenarien f\u00fcr die Fallstudiengebiete in Gromb\u00fchl und Grafenb\u00fchl werden in Kapitel 5.3 detailliert vorgestellt. 23\nFallstudien\n\n## 5 Fallstudien\n\nDie Stadt W\u00fcrzburg und die Stadt Asperg sind Praxispartner des Projekts CGSC. In dem Stadtteil Gromb\u00fchl (Stadt W\u00fcrzburg) bzw. in dem Stadtteil Grafenb\u00fchl (Stadt Asperg) werden die Simulationen durchgef\u00fchrt. F\u00fcr die Simulation werden verschiedene Szenarien (vgl. Kapitel 5.3) aufgestellt, welche mit Hilfe von SimStadt modelliert und ausgewertet werden. Im Folgenden werden die Quartiere analysiert und die Wahl der Szenarien vorgestellt. ## 5.1 Datengrundlage\n\nDie Datengrundlage der Fallstudiengebiete weist erhebliche Unterschiede in der Qualit\u00e4t und der Verf\u00fcgbarkeit der Daten auf:\nF\u00fcr den Stadtteil Gromb\u00fchl wurden die Geb\u00e4ude-, Fl\u00e4chen- und Gr\u00fcndaten von der Stadt W\u00fcrzburg zur Verf\u00fcgung gestellt. Diese umfassen bereits vorhandene Daten aus dem Baum-, Stra\u00dfen- und Geb\u00e4udekataster der Stadt, sowie den ALKIS-Daten des Bundes. Erg\u00e4nzend wurden bei einer stadtinternen Ortsbegehung die versiegelten, bebauten und gr\u00fcnen Fl\u00e4chen, sowie Baumstandorte im privaten und \u00f6ffentlichen Bereich erfasst und anschlie\u00dfend visualisiert. Somit bauen die Simulationen auf einer umfassenden und detaillierten Datengrundlage auf. Im Gegensatz dazu liegen f\u00fcr Grafenb\u00fchl weniger detaillierte Daten vor. Die wenigen zur Verf\u00fcgung stehenden Daten, wurden durch die Auswertung von OSM-Daten (OSM) und Luftbildern eigenst\u00e4ndig erg\u00e4nzt. Zur Bestimmung der Stra\u00dfenfl\u00e4chen wurden die Stra\u00dfenl\u00e4ngen der Basis-DLM Daten genutzt und die Breiten mit GoogleEarth vermessen.", + "embedding": [ + 0.005844451952725649, + -0.008837622590363026, + 0.022485937923192978, + -0.02066165767610073, + 5.948968100710772e-05, + 0.026566918939352036, + -0.03340459242463112, + -0.0031739091500639915, + -0.018486035987734795, + -0.037836916744709015, + 0.007472790777683258, + 0.007047125604003668, + 0.0008209259249269962, + 0.0023969009052962065, + 0.0006178058683872223, + -0.0006765037542209029, + 0.05243115499615669, + 0.0058647217229008675, + 0.013668585568666458, + 0.0002341581421205774, + 0.0014391541481018066, + 0.00883086584508419, + 0.018350902944803238, + -0.007668731734156609, + 0.006722808815538883, + 0.030269531533122063, + 0.008310608565807343, + -0.015986096113920212, + -0.023161597549915314, + -0.0012778404634445906, + 0.021067053079605103, + -0.012803741730749607, + -0.013492913916707039, + -0.001171424170024693, + 0.0011072364868596196, + -0.004645157139748335, + 0.013026709668338299, + -0.0009121398907154799, + 0.020134644582867622, + -0.004466107115149498, + -2.911141018557828e-05, + 0.004222869873046875, + -0.0036890993360430002, + -0.03024250641465187, + 0.004594482481479645, + 0.002898578066378832, + 0.013215893879532814, + 0.006330926902592182, + -0.034836988896131516, + 0.019067103043198586, + -0.004952582065016031, + 0.0334586426615715, + -0.023026466369628906, + 0.007405224721878767, + -0.021134620532393456, + 0.011661877855658531, + -0.009236261248588562, + 0.013492913916707039, + -0.016391491517424583, + -0.004432324320077896, + -0.0182292852550745, + 0.012357806786894798, + -0.024296704679727554, + 0.023931847885251045, + -0.04032333940267563, + -0.009797058068215847, + -0.027647973969578743, + -0.02158055454492569, + 0.006192416418343782, + -0.005172171164304018, + 0.028566870838403702, + 0.03440456464886665, + 0.011141620576381683, + -0.02010761760175228, + 0.032188404351472855, + -0.008574115112423897, + 0.008783569559454918, + -0.008107909932732582, + -0.004732992500066757, + 0.01955357752740383, + 0.022756202146410942, + -0.025756128132343292, + -0.03583696484565735, + 0.04962041229009628, + 0.01987789385020733, + 0.02102651447057724, + 0.009337610565125942, + 0.03224245831370354, + -0.028810108080506325, + 0.007310632616281509, + 0.0031857332214713097, + 0.0348910391330719, + 0.012256457470357418, + 0.023566992953419685, + -0.0016866142395883799, + -0.0005227912915870547, + -0.006256604101508856, + -0.0034576859325170517, + 0.008283581584692001, + -0.0144455935806036, + -0.010837573558092117, + -0.002020220970734954, + -0.017013099044561386, + 0.005601214710623026, + -0.02362104505300522, + -0.009587603621184826, + -0.010506500490009785, + 0.010851087048649788, + 0.024742640554904938, + -0.02536424621939659, + -0.021094080060720444, + 0.0367828868329525, + -0.024283191189169884, + -0.00394584983587265, + 0.004520160146057606, + -0.01558070071041584, + 0.019891407340765, + 0.007047125604003668, + -0.0025050065014511347, + -0.01247942540794611, + 0.015432056039571762, + -0.011040271259844303, + 0.01417533028870821, + -0.008952484466135502, + 0.00025273876963183284, + -0.008472766727209091, + 0.0015945556806400418, + -0.0041181426495313644, + -0.001179025275632739, + -0.02986413612961769, + -0.018702246248722076, + 0.008425470441579819, + -0.0005274364375509322, + -0.008013318292796612, + -0.025296680629253387, + 0.013391565531492233, + -0.004699209704995155, + 0.007621435914188623, + -0.03975578770041466, + -0.04632319509983063, + -0.01593204401433468, + 0.0234453734010458, + -0.018688732758164406, + -0.018891431391239166, + 0.01173620019108057, + 0.024742640554904938, + 0.008364660665392876, + 0.005631619598716497, + 0.010952435433864594, + -0.02851281873881817, + 0.006702539045363665, + -0.013695611618459225, + 0.021918384358286858, + -0.0020658280700445175, + 0.011047028005123138, + -0.018161719664931297, + -0.004158682189881802, + 0.01635095290839672, + -0.03205327317118645, + -0.03394511714577675, + 0.004145169164985418, + -0.007317388895899057, + 0.00440867617726326, + 0.013371295295655727, + -0.006878210697323084, + 0.012229431420564651, + 0.0015886436449363828, + -0.011567285284399986, + 0.005097848828881979, + -0.0234453734010458, + -0.0031181671656668186, + 0.01914818212389946, + -0.0234453734010458, + 0.03216137737035751, + -0.014540186151862144, + -0.002344537526369095, + 0.0035776153672486544, + -0.0019948838744312525, + -0.013817230239510536, + -0.035377517342567444, + -0.007905212230980396, + 0.009141668677330017, + 0.007425494492053986, + 0.00807412713766098, + -0.026702051982283592, + 0.0025928420946002007, + 0.014121277257800102, + 0.008993024006485939, + 1.6139281797222793e-05, + -0.010384881868958473, + 0.0008441517129540443, + -0.001846238737925887, + 0.024688586592674255, + 0.007337658666074276, + -0.6239847540855408, + 0.0053782472386956215, + 0.0006013367092236876, + -0.020972462370991707, + 0.013742907904088497, + 0.015094226226210594, + 0.007729541044682264, + 0.007202527020126581, + -0.0006655243341811001, + 0.041620608419179916, + 0.018553601577878, + 0.0032887712586671114, + -0.005939044523984194, + -0.0012170311529189348, + -0.013310486450791359, + -0.016796886920928955, + -0.003371539292857051, + -0.009134911932051182, + 0.023972388356924057, + 0.006303900387138128, + -0.034080248326063156, + 0.01237807609140873, + -0.0021384614519774914, + 0.006952533032745123, + 0.0206751711666584, + 0.02405346743762493, + -0.009324097074568272, + -0.0309451911598444, + 0.000636386510450393, + 0.009040320292115211, + -0.034269433468580246, + 0.025661535561084747, + -0.006895102094858885, + 0.028972266241908073, + 0.039134182035923004, + 0.014107763767242432, + -0.01744551956653595, + 0.019458984956145287, + 0.017972534522414207, + 0.021323803812265396, + -0.012519964948296547, + 0.00492217717692256, + -0.020215723663568497, + 0.01612122915685177, + 0.013486157171428204, + -0.0010920341592282057, + 0.027918238192796707, + -0.007567382883280516, + -0.010702441446483135, + -0.000889336399268359, + 0.026580432429909706, + 0.00035535451024770737, + -0.007898456417024136, + 0.007499817293137312, + 0.035026174038648605, + 0.025485865771770477, + 0.010121374391019344, + -0.007689001504331827, + -0.006476193200796843, + 0.017323901876807213, + -0.0057802642695605755, + 0.007722784765064716, + -0.010614605620503426, + -0.017891455441713333, + -0.007911968976259232, + 0.04716101288795471, + -0.026729077100753784, + -0.012898334302008152, + 0.006216064561158419, + -0.03305324912071228, + -0.01022948045283556, + 0.014499646611511707, + -0.011871332302689552, + -0.01613474078476429, + 0.02948576770722866, + 0.005888369865715504, + 0.01991843245923519, + -0.009432202205061913, + -0.015661779791116714, + 0.012486182153224945, + 0.0034593751188367605, + -0.012324023991823196, + -0.02159406803548336, + 0.0009070724481716752, + 0.02158055454492569, + -0.024850744754076004, + -0.0424584224820137, + -0.013823986984789371, + -0.012540234252810478, + 0.00736468518152833, + 0.019107641652226448, + 0.02156704105436802, + -0.009979486465454102, + -0.004557321313768625, + 0.010891626589000225, + 0.05880937725305557, + 0.01935087889432907, + 0.057349953800439835, + 0.013459131121635437, + -0.06437680870294571, + -0.024121033027768135, + 0.0009256530902348459, + 0.022121082991361618, + -0.008020075038075447, + 0.00816196296364069, + 0.0004018060863018036, + -0.027107447385787964, + -0.0014737816527485847, + 0.027175012975931168, + -0.0216210950165987, + 0.0027786483988165855, + -0.00977003201842308, + -0.005030282773077488, + -0.013607775792479515, + -0.00013523740926757455, + -0.028972266241908073, + 0.03251272067427635, + -0.014337488450109959, + 0.01767524518072605, + -0.0008572426158934832, + 0.0021300155203789473, + 0.004537051543593407, + 0.018283337354660034, + -0.00910112913697958, + 0.0010616295039653778, + 0.019567091017961502, + 0.014364514499902725, + -0.0014653358375653625, + -0.028080396354198456, + -0.013276703655719757, + 0.009688952937722206, + 0.006820779759436846, + 0.04905285686254501, + -0.00987138133496046, + 0.03916120529174805, + -0.01614825427532196, + 0.03548562154173851, + -0.007945751771330833, + 0.0012981102336198092, + -0.0223372932523489, + -0.02964792586863041, + -0.01743200793862343, + 0.011229455471038818, + -0.05424192175269127, + -0.0053106811828911304, + -0.0035742372274398804, + -0.011871332302689552, + 0.020161669701337814, + 0.007405224721878767, + 0.004131656140089035, + -0.020904894918203354, + -0.003241474973037839, + 0.004695831332355738, + -0.006297143641859293, + 0.00045311395660974085, + 0.016188794746994972, + -0.018053613603115082, + -0.00918896496295929, + 0.004770154133439064, + -0.016945533454418182, + 0.01334426924586296, + 0.004925555549561977, + -0.04240437224507332, + 0.0013775002444162965, + 0.0016849251696839929, + 0.0009281868115067482, + -0.001656209584325552, + 0.018621167168021202, + -0.015850964933633804, + -0.02759392186999321, + -0.02141839638352394, + -0.01801307499408722, + 0.007472790777683258, + 0.02405346743762493, + -0.0061755250208079815, + -0.011533502489328384, + -0.02781013213098049, + 0.013817230239510536, + -0.0002934894582722336, + -0.009688952937722206, + 0.02362104505300522, + -0.018999537453055382, + -0.005871478468179703, + -0.01895899698138237, + 0.022850794717669487, + -0.0010058876359835267, + 0.016675269231200218, + -0.006280252244323492, + -0.031215455383062363, + 0.010655145160853863, + 0.010945678688585758, + 0.04153952747583389, + -0.01802658662199974, + 0.01256726123392582, + -0.020756250247359276, + 0.003324243240058422, + 0.0009771721670404077, + 0.006979559548199177, + -0.021512988954782486, + 0.014486133120954037, + 0.048890698701143265, + 0.014486133120954037, + 0.02101300098001957, + 0.007439007982611656, + 0.008195745758712292, + -0.04359352961182594, + 0.011567285284399986, + -0.0003665451076813042, + 0.023891309276223183, + 0.013378052040934563, + 0.02422913908958435, + 0.0003642225346993655, + -0.03486401587724686, + -0.002971211215481162, + -0.0007833424024283886, + 0.03362080082297325, + 0.003807339584454894, + -0.008493036031723022, + -0.0021637985482811928, + 0.01725633628666401, + 0.006168768275529146, + -0.003793826326727867, + 0.0329991951584816, + -0.0029053345788270235, + -0.012411859817802906, + 0.009533551521599293, + -0.00693902000784874, + 0.016634728759527206, + -0.0020286666695028543, + -0.011709174141287804, + -0.016634728759527206, + 0.011965923942625523, + 0.0014079048996791244, + -0.004553942941129208, + 0.019567091017961502, + 0.00591201800853014, + 0.009276800788939, + -0.014567212201654911, + 0.03737746551632881, + -0.018107665702700615, + 0.02570207603275776, + 0.020607605576515198, + -0.0009324097190983593, + -0.013546966947615147, + 0.030080348253250122, + -0.017945507541298866, + 0.033782958984375, + 0.027891211211681366, + 0.0011680457973852754, + 0.012344293296337128, + -0.0168914794921875, + 0.0031299912370741367, + 0.020904894918203354, + -0.006239712703973055, + 0.015134765766561031, + 0.0030624254141002893, + 0.02062111906707287, + -0.010013269260525703, + 0.020404906943440437, + 0.021823791787028313, + 0.006793753243982792, + 0.02441832423210144, + 0.002287106355652213, + 0.003824230981990695, + -0.028107423335313797, + 0.005283655133098364, + -0.027256092056632042, + 0.002020220970734954, + -0.026364222168922424, + -0.012263214215636253, + 0.007675488479435444, + -0.009911920875310898, + -0.020053565502166748, + 0.002657029777765274, + -0.00862141139805317, + -0.013932093046605587, + -0.0015506378840655088, + -0.004023550543934107, + 0.017202282324433327, + 0.012256457470357418, + 0.003168841591104865, + -0.03081005997955799, + -0.0213913694024086, + 0.015567188151180744, + -0.020985973998904228, + -0.01878332532942295, + -0.009209235198795795, + 0.009128156118094921, + -0.024837231263518333, + -0.004726236220449209, + -0.011547015979886055, + -0.004827585071325302, + -0.02986413612961769, + -0.02325619012117386, + 0.0030928300693631172, + -0.0019019806059077382, + 0.0058579654432833195, + -0.004283679183572531, + 0.008965997956693172, + 0.02587774768471718, + -0.005118118599057198, + 0.02402644045650959, + -0.022269727662205696, + -0.03702612221240997, + 0.03570183366537094, + -0.00736468518152833, + -0.011526745744049549, + -0.012810498476028442, + 0.001221254002302885, + -0.019242774695158005, + -0.01632392592728138, + -0.016445545479655266, + -0.010303802788257599, + 0.00676334835588932, + -0.010965948924422264, + 0.013769934885203838, + -0.004080981481820345, + -0.026161523535847664, + 0.04472864046692848, + -0.00883086584508419, + -0.002390144392848015, + -0.04762046039104462, + -0.009270044043660164, + 0.005415408406406641, + 0.02720203995704651, + 0.031810034066438675, + 0.00349653628654778, + 0.013864526525139809, + -0.009634899906814098, + -0.004222869873046875, + 0.014486133120954037, + -0.04637724906206131, + -0.0014864502009004354, + 0.0077362977899611, + -0.004476242233067751, + -0.012614557519555092, + 0.020972462370991707, + -0.00862141139805317, + 0.022215673699975014, + -0.005736346822232008, + -0.0002972900401800871, + -0.01931034028530121, + -0.001462802174501121, + 0.009972729720175266, + -0.0025371003430336714, + -0.02756689488887787, + -0.0011249725939705968, + 0.04575563967227936, + 0.014999634586274624, + 0.010776763781905174, + 0.026337195187807083, + 0.014823962934315205, + 0.0016798577271401882, + -0.029756031930446625, + -0.002895199693739414, + 0.02555343136191368, + 0.02137785777449608, + 0.021540015935897827, + -0.03624235838651657, + -0.009547064080834389, + 0.011756470426917076, + -0.0058647217229008675, + 0.012979413382709026, + 0.017594166100025177, + 0.014323974959552288, + -0.0009307205327786505, + 0.008121423423290253, + -0.004567455966025591, + 0.019431957975029945, + -0.011891601607203484, + -0.015229358337819576, + 0.012769958935678005, + 0.005239737220108509, + -0.025445325300097466, + 0.011425397358834743, + -0.010256506502628326, + -0.009297071024775505, + -0.01629689894616604, + 0.0069728028029203415, + -0.014702344313263893, + -0.0036080200225114822, + -0.02048598602414131, + 0.01417533028870821, + -0.018269823864102364, + -0.05007985979318619, + -0.026931775733828545, + 0.013269946910440922, + -0.011249725706875324, + -0.010628119111061096, + -0.013661828823387623, + -0.03356675058603287, + -0.011675391346216202, + -0.008716003969311714, + -0.014959095045924187, + 0.005574188195168972, + -0.01726984977722168, + -0.037269361317157745, + -0.008013318292796612, + 0.01804010011255741, + 0.0037397737614810467, + 0.016594190150499344, + -0.0018986023496836424, + -0.022634582594037056, + 0.00426678778603673, + -0.02325619012117386, + -0.020404906943440437, + -0.009790301322937012, + -0.019958972930908203, + -0.014986121095716953, + 0.01351994089782238, + -0.007371441926807165, + -0.02231026627123356, + -0.002569194184616208, + 0.024364270269870758, + -0.008540332317352295, + -0.0032870820723474026, + -0.010567310266196728, + -0.014040198177099228, + -0.01531043741852045, + 0.014202356338500977, + 0.0011300400365144014, + 0.014823962934315205, + 0.02401292696595192, + -0.02290484681725502, + 0.044971875846385956, + -0.02025626227259636, + -0.010682172141969204, + -0.010148401372134686, + 0.0024948716163635254, + -0.004439081065356731, + -0.021688660606741905, + 0.009243017993867397, + 0.006324170157313347, + -0.0018394821090623736, + 0.009803814813494682, + -0.015499621629714966, + 0.009965972974896431, + 0.0016401626635342836, + -0.006783618126064539, + 0.008303851820528507, + 0.00017229309014510363, + 0.012013220228254795, + 0.025229115039110184, + -0.00591201800853014, + 0.007810620125383139, + -0.01181052252650261, + 0.039701733738183975, + 0.010776763781905174, + 0.002276971470564604, + 0.024431835860013962, + 0.0005599525757133961, + 0.024094007909297943, + -0.032188404351472855, + -0.0031350585632026196, + 0.010729468427598476, + 0.021634606644511223, + 0.01743200793862343, + -0.017121203243732452, + -0.003939093090593815, + 0.011580798774957657, + 0.008493036031723022, + 0.005506622605025768, + -0.012607800774276257, + -0.0018310364102944732, + -0.023215649649500847, + 0.015607727691531181, + 0.0006448322674259543, + -0.001420573447830975, + 0.009243017993867397, + -0.020161669701337814, + -0.021648120135068893, + 0.01228348445147276, + -0.008979510515928268, + 0.012688879854977131, + -0.02236432023346424, + -0.01183754950761795, + -0.03005332127213478, + -0.005080956965684891, + -0.007675488479435444, + -0.02724257856607437, + 0.011607824824750423, + -0.040836840867996216, + 0.0047397492453455925, + 0.010790277272462845, + 0.03770178183913231, + 0.01991843245923519, + 0.01672932133078575, + 0.007405224721878767, + -0.010830816812813282, + -0.0012905090115964413, + -0.010736224241554737, + -0.013128058053553104, + -0.026702051982283592, + 0.030269531533122063, + 0.0103375855833292, + 0.023404834792017937, + 0.006999829318374395, + 0.0015185440424829721, + 0.010175427421927452, + 0.03883688896894455, + -0.029918190091848373, + -0.020337341353297234, + -0.019215747714042664, + -0.019931945949792862, + -0.02143190987408161, + 0.01636446639895439, + -0.010479474440217018, + 0.006124850828200579, + -0.03402619808912277, + 0.005121496506035328, + 0.003423902904614806, + -0.011242968961596489, + -0.015877991914749146, + 0.00685118418186903, + 0.01340507809072733, + -0.03872878476977348, + 0.028620922937989235, + 0.016472570598125458, + -0.008716003969311714, + -0.019175207242369652, + -0.015567188151180744, + -0.0348910391330719, + -0.015053686685860157, + 0.010851087048649788, + -0.016040150076150894, + 0.0022381211165338755, + 0.014215869829058647, + -0.02587774768471718, + 0.018661707639694214, + 0.005888369865715504, + -0.005493109114468098, + -0.032026246190071106, + 0.021729199215769768, + -0.0038715272676199675, + 0.008033587597310543, + -0.017040124163031578, + -0.0036046418827027082, + -0.020985973998904228, + 0.016796886920928955, + 0.0034458618611097336, + -0.014351001009345055, + 0.03713423013687134, + -0.018823865801095963, + 0.012168622575700283, + 0.02926955558359623, + -0.013641559518873692, + 0.031999219208955765, + 0.010999731719493866, + 0.03362080082297325, + 0.0040336851961910725, + -0.02421562559902668, + -0.0017803619848564267, + -0.05405273661017418, + -0.0015962448669597507, + -0.020134644582867622, + 0.02385076880455017, + 0.019661683589220047, + -0.01648608408868313, + -0.014391540549695492, + 0.00708090839907527, + 0.005952557548880577, + -0.010270019993185997, + -0.01031731627881527, + 0.04432324320077896, + 0.03289109095931053, + -0.001192538533359766, + -0.01182403601706028, + 0.015067200176417828, + -0.02235080674290657, + 0.021364344283938408, + 0.011148376390337944, + -0.010938922874629498, + 0.01745903305709362, + 0.009175451472401619, + 0.007993048056960106, + 0.04180978983640671, + 0.0011063918936997652, + 0.015229358337819576, + -0.011175403371453285, + -0.022634582594037056, + -0.008297095075249672, + -0.014391540549695492, + 0.010357855819165707, + 0.02348591387271881, + -0.013364538550376892, + 0.03586399182677269, + -0.005111361853778362, + -0.006614703685045242, + 0.00038026945549063385, + 0.003550589084625244, + -0.017418494448065758, + -0.0008213482215069234, + 0.009925433434545994, + 0.024458862841129303, + -0.00440867617726326, + -0.007689001504331827, + 0.00948625523597002, + 0.0030894516967236996, + 0.009641656652092934, + 0.014621265232563019, + 0.006631595082581043, + -0.0356748066842556, + -0.017121203243732452, + 0.017013099044561386, + 0.005185684189200401, + 0.021526502445340157, + -0.016810400411486626, + -0.0017955643124878407, + -0.005759994499385357, + -0.025958826765418053, + -0.001136796548962593, + 0.008857891894876957, + 0.01173620019108057, + -0.023796716704964638, + -0.012459155172109604, + 0.024094007909297943, + 0.014972607605159283, + 0.028296606615185738, + -0.02403995394706726, + -0.01670229621231556, + 0.015553674660623074, + 0.035377517342567444, + -0.027837159112095833, + 0.021337317302823067, + 0.04489079862833023, + 0.0021688661072403193, + -0.0026046661660075188, + 0.02141839638352394, + -0.0012220985954627395, + -0.020931921899318695, + 0.013918579556047916, + -0.013425348326563835, + -0.03075600601732731, + -0.003912066575139761, + -0.010378125123679638, + 0.009067346341907978, + 0.0026553405914455652, + -0.003891797037795186, + 0.008526818826794624, + 0.006496462970972061, + 0.00835790392011404, + -0.006009988486766815, + -0.006925506982952356, + 0.013932093046605587, + 0.010648389346897602, + -0.0157833993434906, + 0.03289109095931053, + -0.006854562554508448, + 0.0154725955799222, + 0.00920247845351696, + -0.002192514017224312, + -0.0049086641520261765, + -0.030512768775224686, + -0.020134644582867622, + -0.004955960437655449, + 0.0055302707478404045, + -0.0017584030283614993, + 0.007459277752786875, + -0.017877941951155663, + -0.017567139118909836, + -0.01313481479883194, + 0.009222747758030891, + 0.005506622605025768, + 0.009979486465454102, + -0.0007461811183020473, + -0.009249774739146233, + -0.011269995011389256, + 0.01971573568880558, + 0.01022948045283556, + 0.0010320694418624043, + -0.012682123109698296, + -0.02043193392455578, + -0.03356675058603287, + 0.014675317332148552, + -0.005327572580426931, + 0.031053297221660614, + 0.015877991914749146, + -0.03672883287072182, + -0.0028935105074197054, + -0.0027212174609303474, + -0.03137761354446411, + -0.03399917110800743, + -0.004233004990965128, + -0.0007888321415521204, + 0.013796960934996605, + 0.001575975096784532, + 0.0017068840097635984, + 0.03380998596549034, + 0.004979608114808798, + 0.015715833753347397, + -0.01785091683268547, + -0.0004915420431643724, + -0.007918725721538067, + -0.010661901906132698, + 0.035026174038648605, + 0.002087787026539445, + -0.017945507541298866, + -0.01127675175666809, + 0.01654013805091381, + 0.012310510501265526, + 0.005942422430962324, + 0.02422913908958435, + -0.0030793168116360903, + -0.006172146648168564, + 0.008168719708919525, + 0.0054525695741176605, + 0.016648242250084877, + -0.00808764062821865, + 0.02217513509094715, + -0.03229650855064392, + 0.003972875885665417, + 0.00708090839907527, + -0.0012913536047562957, + -0.024431835860013962, + -0.013567236252129078, + -0.009121399372816086, + -0.0033698503393679857, + -0.0051687927916646, + 0.01548610907047987, + -0.008094397373497486, + -0.005131631623953581, + -0.013837500475347042, + 0.03194516524672508, + 0.017418494448065758, + 0.023877795785665512, + 0.02479669265449047, + 0.013729395344853401, + -0.01258753053843975, + -0.02608044445514679, + 0.02195892482995987, + -0.01839144341647625, + -0.004182330332696438, + 0.013053735718131065, + -0.035026174038648605, + 0.026702051982283592, + -0.011857818812131882, + 0.005283655133098364, + -0.009432202205061913, + 0.015067200176417828, + -0.010628119111061096, + -0.009391662664711475, + -0.004695831332355738, + 0.016783375293016434, + 0.011472693644464016, + -0.016553649678826332, + -0.00029940149397589266, + -0.004773532040417194, + -0.006513354834169149, + -0.01399965863674879, + 0.002233053557574749, + -0.003128302050754428, + -0.00968219619244337, + -0.012810498476028442, + 0.007236309815198183, + -0.0012888199416920543, + 0.01593204401433468, + -0.002954319817945361, + -0.0013960808282718062, + -0.024296704679727554, + 0.0006486328202299774, + 0.18842783570289612, + -0.003722882131114602, + -0.009520038031041622, + 0.0182292852550745, + -0.005901882890611887, + -0.007837646640837193, + 0.029891163110733032, + -0.011492962948977947, + 0.006087689194828272, + 0.017391467466950417, + -0.01912115514278412, + 0.008938970975577831, + 0.01631041243672371, + 0.004574212711304426, + 0.004841098096221685, + -0.025107495486736298, + -0.020985973998904228, + 0.003597885137423873, + 0.005901882890611887, + 0.012161865830421448, + 0.009330853819847107, + -0.015864478424191475, + -0.009371393360197544, + -0.0065707857720553875, + 0.0178374033421278, + 0.021175159141421318, + -0.016445545479655266, + 0.003462753491476178, + 0.02663448639214039, + 0.01575637236237526, + 0.003692477475851774, + 0.014540186151862144, + 0.010080834850668907, + 0.0019796814303845167, + 0.013168597593903542, + 0.004827585071325302, + 0.015364490449428558, + -0.013655072078108788, + 0.03491806611418724, + 0.019377905875444412, + -0.0005776886246167123, + -0.021121107041835785, + -0.02120218612253666, + -0.021134620532393456, + -0.01287130732089281, + 0.015175305306911469, + -0.012236188165843487, + 0.02008059062063694, + 0.0018715759506449103, + -0.022404858842492104, + -0.0227291751652956, + 0.005297168157994747, + 0.009161938913166523, + 0.019242774695158005, + -0.013215893879532814, + -0.003423902904614806, + 0.010283532552421093, + -0.014242895878851414, + -0.0030472229700535536, + -0.002614801051095128, + -0.04040442034602165, + 0.016242846846580505, + 0.009695709683001041, + 0.009918676689267159, + -0.02702636830508709, + -0.005787021014839411, + -0.02287781983613968, + -0.004030307289212942, + 0.010384881868958473, + -0.0178374033421278, + -0.006162011995911598, + -0.02403995394706726, + -0.010270019993185997, + 0.0015599281759932637, + -0.023539965972304344, + -0.02589126117527485, + 0.014932068064808846, + 0.0023631181102246046, + 0.02986413612961769, + 0.023431861773133278, + -0.019756274297833443, + 0.01287130732089281, + -0.01099297497421503, + -0.021256238222122192, + 0.0057633728720247746, + -0.04124223813414574, + 0.015823937952518463, + -0.008107909932732582, + -0.020404906943440437, + -0.03380998596549034, + -0.011472693644464016, + 0.0003346624434925616, + 0.012932117097079754, + -0.020053565502166748, + 0.011661877855658531, + -0.008513306267559528, + 0.0038140960969030857, + 0.029134424403309822, + -0.022094056010246277, + -0.017945507541298866, + -0.014702344313263893, + 0.07745756953954697, + 0.03375593200325966, + -0.016405005007982254, + 0.010357855819165707, + 0.007297119125723839, + -0.007729541044682264, + 0.015607727691531181, + -0.005550540518015623, + -0.02290484681725502, + 0.0005054775392636657, + -0.040107131004333496, + 0.00422962661832571, + -0.008493036031723022, + 0.00573296844959259, + 0.004753262270241976, + 0.0013867905363440514, + -0.0018817108357325196, + -0.011330804787576199, + -0.018904944881796837, + -0.027066906914114952, + 0.010864599607884884, + -0.0031063430942595005, + 0.0028816864360123873, + 0.005898504983633757, + -0.013776690699160099, + -0.029431713744997978, + -0.005043795797973871, + -0.019958972930908203, + 0.0021367722656577826, + 0.028269581496715546, + -0.024364270269870758, + 0.011574042029678822, + -0.005928909406065941, + 0.01840495690703392, + 0.0062599824741482735, + -0.0011334182927384973, + -0.041404396295547485, + -0.009837597608566284, + -0.001520233228802681, + 0.024499403312802315, + 0.0028529709670692682, + -0.0013040222693234682, + -0.001064163283444941, + 0.0047498843632638454, + 0.0038850402925163507, + 0.003341134637594223, + 0.0063444399274885654, + -0.03605317324399948, + -0.034242406487464905, + 0.006641729734838009, + -0.002687434433028102, + 0.0072160400450229645, + 0.0023259567096829414, + 0.038593653589487076, + -0.009168695658445358, + -0.015418542549014091, + -0.03172895684838295, + 0.009195721708238125, + 0.014499646611511707, + -0.014121277257800102, + -0.005472839344292879, + 0.003226272761821747, + -0.010344342328608036, + -0.0022482560016214848, + 0.004138412419706583, + -0.17167149484157562, + 0.016648242250084877, + 0.02625611610710621, + -0.035782910883426666, + 0.004557321313768625, + -0.0041113863699138165, + 0.015810424461960793, + 0.00231920019723475, + -0.009932190179824829, + -0.0031772872898727655, + 0.03824231028556824, + -0.009357879869639874, + -0.02608044445514679, + -0.00520595395937562, + 0.0017144852317869663, + 0.01743200793862343, + -0.02758040837943554, + 0.027499329298734665, + 0.02532370761036873, + 0.023121057078242302, + 0.0034864014014601707, + -0.038782838732004166, + 0.016580676659941673, + 0.0030370880849659443, + 0.015702320262789726, + -0.005665402393788099, + -0.025472352281212807, + 0.04256653040647507, + 0.0006439876742660999, + -0.010722711682319641, + -0.015134765766561031, + 0.0020590713247656822, + 0.0416746586561203, + -0.020756250247359276, + -0.009168695658445358, + -0.0020996108651161194, + -0.003510049544274807, + -0.005553918424993753, + -0.00947274174541235, + 0.02086435630917549, + 0.02648583985865116, + 0.0006009144126437604, + -0.019040076062083244, + -0.002489804057404399, + -0.016783375293016434, + 0.00968219619244337, + 0.031026270240545273, + -0.0035303193144500256, + -0.014688830822706223, + -0.00023289128148462623, + 0.012594287283718586, + -0.013188867829740047, + -0.0007352016400545835, + 0.011526745744049549, + 0.0042701661586761475, + 0.03751260042190552, + 0.004766775760799646, + 0.001859751995652914, + -0.0027972289826720953, + 0.0004560699453577399, + -0.010790277272462845, + 0.004797180183231831, + 0.026377735659480095, + 0.0019982620142400265, + -0.019999511539936066, + -0.034809961915016174, + -0.0019425201462581754, + 0.015986096113920212, + -0.02137785777449608, + 0.0010405151406303048, + -0.031269509345293045, + 0.00035535451024770737, + 0.02440481074154377, + -0.011006488464772701, + 0.01041190791875124, + 0.01052677072584629, + -0.012560504488646984, + 0.008324121125042439, + 0.005243115592747927, + 0.006776861846446991, + -0.01398614514619112, + 0.0719982460141182, + -0.029810084030032158, + -0.01916169561445713, + -0.005016769748181105, + 0.0008960930281318724, + -0.007398468442261219, + 0.01387804001569748, + 0.020756250247359276, + 0.010270019993185997, + 0.006057284772396088, + -0.032377589493989944, + 0.005260006990283728, + -0.026323681697249413, + 0.031269509345293045, + -0.01818874478340149, + 0.008749786764383316, + -0.0033462021965533495, + -0.013553723692893982, + -0.02140488289296627, + 0.00016817580035421997, + -0.0038343658670783043, + -0.03675585985183716, + 0.0020590713247656822, + 0.007749810814857483, + 0.011519988998770714, + 0.008188989013433456, + 0.014405054040253162, + 0.02231026627123356, + -0.012540234252810478, + -0.017580652609467506, + -0.0034441726747900248, + 0.019621143117547035, + 0.00029876804910600185, + 0.00403706356883049, + 0.01785091683268547, + 0.01745903305709362, + -0.010803790763020515, + 0.0030235748272389174, + 0.005898504983633757, + 0.03640451654791832, + -0.009932190179824829, + -0.007067395374178886, + 0.003624911652877927, + -0.0036485595628619194, + -0.019864380359649658, + -0.09167344123125076, + 0.012688879854977131, + 0.01936439238488674, + 0.013080761767923832, + 0.004165438935160637, + 0.014472619630396366, + -0.009310583584010601, + 0.01474288385361433, + -0.0005303924554027617, + 0.027107447385787964, + -0.055268920958042145, + -0.025039929896593094, + -0.0033597154542803764, + 0.0015996231231838465, + 0.03081005997955799, + -0.023958874866366386, + -0.02121569961309433, + -0.014323974959552288, + -0.004189087077975273, + 0.0298371110111475, + 0.006151876877993345, + -0.001108081080019474, + -0.010060565546154976, + -0.007540356833487749, + -0.0046485355123877525, + -0.003736395388841629, + -0.013709125109016895, + 0.013317243196070194, + 0.02664799802005291, + 0.012384832836687565, + 0.018445495516061783, + -0.022985925897955894, + 0.02687772363424301, + -0.022810254245996475, + 0.00797953549772501, + -0.0029610763303935528, + -0.010655145160853863, + -0.022810254245996475, + 0.014242895878851414, + -0.016945533454418182, + -0.009026806801557541, + 0.010195697657763958, + 0.020958948880434036, + -0.036107227206230164, + -0.013310486450791359, + -0.010634875856339931, + -0.01767524518072605, + 0.0061079589650034904, + -0.005053930915892124, + -0.022391345351934433, + -0.019377905875444412, + -0.012222674675285816, + 0.005408651661127806, + 0.007087665144354105, + 0.009236261248588562, + 0.004398541525006294, + -0.007371441926807165, + -0.031269509345293045, + -0.0038005830720067024, + 0.008364660665392876, + -0.018472522497177124, + 0.011614581570029259, + -0.025593969970941544, + 0.010574066080152988, + 0.002116502495482564, + 0.0005303924554027617, + -0.03524238243699074, + -0.014891528524458408, + -0.00024197045422624797, + -0.01839144341647625, + -0.03364782780408859, + 0.01529692392796278, + -0.0010320694418624043, + -0.005716076586395502, + -0.02948576770722866, + 0.0077700805850327015, + -0.021999463438987732, + -0.01629689894616604, + 0.013479401357471943, + -0.011432153172791004, + -0.021296778693795204, + -0.03697207197546959, + 0.03516130521893501, + -0.02104002796113491, + 0.03421538323163986, + 0.009932190179824829, + 0.014540186151862144, + -0.01856711506843567, + 0.032945141196250916, + -0.02756689488887787, + 0.019094128161668777, + 0.005766751244664192, + 0.012317267246544361, + -0.032755956053733826, + -0.004006659146398306, + 0.0031249236781150103, + 0.01876981183886528, + 0.0012829079059883952, + 0.0004455127927940339, + 0.01558070071041584, + -0.021648120135068893, + -0.006026879884302616, + -0.05729589983820915, + 0.02031031623482704, + 0.02553991787135601, + -0.004668805282562971, + -0.04132331535220146, + 0.013459131121635437, + -0.0014754707226529717, + 0.001719552674330771, + 0.008986267261207104, + 0.008986267261207104, + -0.0028394577093422413, + 0.02536424621939659, + 0.015337463468313217, + 0.0007385799544863403, + -0.03135058656334877, + -0.0213913694024086, + 0.012648340314626694, + -0.00022275639639701694, + 0.02645881474018097, + 0.016567163169384003, + -0.0015886436449363828, + 0.003807339584454894, + 0.0172833614051342, + 0.012661853805184364, + -0.024675073102116585, + 0.005651889368891716, + -0.0057566165924072266, + 0.02498587779700756, + -0.006790374871343374, + -0.029188476502895355, + 0.0003534542047418654, + 0.007472790777683258, + -0.005607971455901861, + 0.0016587433638051152, + -0.007884942926466465, + -0.0034340377897024155, + 0.015323950909078121, + 0.027891211211681366, + 0.02702636830508709, + 0.07313334941864014, + -0.0216210950165987, + -0.023580506443977356, + 0.016850940883159637, + -0.04416108503937721, + -0.006128228735178709, + 0.01146593689918518, + 0.004114764742553234, + 0.0037330170162022114, + 0.01576988585293293, + -0.0227291751652956, + 0.023553479462862015, + -0.002854660153388977, + 0.0023090653121471405, + -0.015337463468313217, + 0.018459009006619453, + -0.019445471465587616, + -5.373602107283659e-05, + 0.023364294320344925, + 0.0034897797740995884, + -0.015432056039571762, + 0.04318813607096672, + 0.014242895878851414, + 0.006266739219427109, + 0.0019357636338099837, + 0.01193214114755392, + -0.006952533032745123, + -0.01782388985157013, + -0.004293814301490784, + 0.024256166070699692, + -0.025391273200511932, + -0.035728856921195984, + -0.010790277272462845, + 0.004705966450273991, + 0.037242334336042404, + -0.021148132160305977, + -0.002543856855481863, + 0.038350414484739304, + -0.019040076062083244, + 0.00460123922675848, + 0.03040466457605362, + 0.006064041517674923, + 0.0074525210075080395, + -0.0045809694565832615, + 0.0031603958923369646, + 0.01804010011255741, + 0.007661975454539061, + -0.013479401357471943, + 0.009878137148916721, + -0.020188696682453156, + -0.0067971316166222095, + 0.004624887369573116, + 0.024715613573789597, + 0.010438934899866581, + -0.014378027990460396, + 0.005415408406406641, + 0.018688732758164406, + -0.0019442093325778842, + 0.007479547522962093, + 0.03583696484565735, + 0.03453969955444336, + -0.0043546236120164394, + 0.022040003910660744, + 0.012898334302008152, + -0.03880986571311951, + 0.002687434433028102, + 0.006067419424653053, + 0.004202600102871656, + -0.031431667506694794, + 0.004425567574799061, + 0.02891821414232254, + -0.021891357377171516, + 0.02440481074154377, + 0.005030282773077488, + -0.015513135120272636, + -0.007148474454879761, + 0.022850794717669487, + -0.01209429930895567, + -0.027310144156217575, + -0.025945313274860382, + 0.024121033027768135, + 0.02083732932806015, + 0.0034441726747900248, + -0.008141693659126759, + 0.013540210202336311, + 0.023539965972304344, + -0.001650297548621893, + -0.0035032930318266153, + -0.010891626589000225, + 0.0016460746992379427, + -0.011574042029678822, + 0.01745903305709362, + -0.008736273273825645, + -0.014405054040253162, + -0.01744551956653595, + -0.014405054040253162, + -0.02552640438079834, + 0.006009988486766815, + 0.018080640584230423, + 0.020513013005256653, + 0.10972705483436584, + 0.04372866451740265, + 0.014202356338500977, + -0.003229650901630521, + -0.017188770696520805, + 0.0011992950458079576, + -0.005702563561499119, + 0.014256409369409084, + -0.008574115112423897, + -0.06259306520223618, + 0.0015928666107356548, + -0.02687772363424301, + -0.005107983481138945, + -0.031972192227840424, + -0.006290387362241745, + 0.023364294320344925, + -0.02532370761036873, + 0.009161938913166523, + -0.00417557405307889, + 0.0243912972509861, + 0.031080322340130806, + -0.014810449443757534, + 0.03326945751905441, + 0.03437754139304161, + -0.012182135134935379, + -0.01690499298274517, + 0.025229115039110184, + -0.007999804802238941, + 0.00010039873450296, + 0.011878089047968388, + -0.011148376390337944, + 0.0005928909522481263, + -0.06248496100306511, + -0.03851257264614105, + 0.0219454113394022, + -0.005651889368891716, + 0.0030421556439250708, + -0.039890918880701065, + 0.00693902000784874, + -0.013972632586956024, + 0.006537002511322498, + 0.0161752812564373, + -0.017729297280311584, + -0.0277831070125103, + 0.0012220985954627395, + -0.02476966567337513, + -0.002787094097584486, + -0.03289109095931053, + -0.025080468505620956 + ], + "metadata": { + "source": "Kreye_Marieke_BA_241_V2.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 17, + "has_images": true, + "image_count": 98, + "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", + "links": [], + "last_modified": "2025-05-05T23:00:23", + "_known_field_names": "frozenset({'is_continuation', 'sent_to', 'header_footer_type', 'email_message_id', 'filename', 'languages', 'detection_class_prob', 'sent_from', 'link_texts', 'cc_recipient', 'subject', 'image_mime_type', 'image_path', 'filetype', 'page_number', 'last_modified', 'signature', 'detection_origin', 'text_as_html', 'attached_to_filename', 'bcc_recipient', 'data_source', 'link_start_indexes', 'category_depth', 'emphasized_text_tags', 'parent_id', 'orig_elements', 'page_name', 'coordinates', 'url', 'link_urls', 'file_directory', 'links', 'table_as_cells', 'emphasized_text_contents', 'key_value_pairs', 'image_base64'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "Kreye_Marieke_BA_241_V2.pdf", + "detection_class_prob": 0.3422867953777313, + "parent_id": "e02392183bc6851689602ad4b9f6039f", + "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", + "id": "ce00eae5-7e07-454f-9e4f-f79ac36f92f4", + "processing_timestamp": "2025-05-05T23:15:46.977945", + "chunk_number": 23, + "total_chunks": 56, + "chunking_strategy": "hybrid", + "word_count": 418 + } +} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000024.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000024.json new file mode 100644 index 0000000000000000000000000000000000000000..99b7c1e4b36c011bf322cc231915cc8eb0e039b7 --- /dev/null +++ b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000024.json @@ -0,0 +1,1570 @@ +{ + "id": "61a115b2-0ff7-441a-f6d9-eb3d00000024", + "content": "Die wenigen zur Verf\u00fcgung stehenden Daten, wurden durch die Auswertung von OSM-Daten (OSM) und Luftbildern eigenst\u00e4ndig erg\u00e4nzt. Zur Bestimmung der Stra\u00dfenfl\u00e4chen wurden die Stra\u00dfenl\u00e4ngen der Basis-DLM Daten genutzt und die Breiten mit GoogleEarth vermessen. Somit kann es bei dieser Fallstudie zu gr\u00f6\u00dferen Abweichungen kommen. F\u00fcr die Analyse des Status Quos und der darauf aufbauenden Szenariensimulation wurde ein Standardbaum festgelegt. Nach der Stra\u00dfenbaumliste der Deutschen Gartenamtsleiterkonferenz (Galk e.V.) wurde der Acer Platanoides (Spitzahorn) ausgew\u00e4hlt (vgl. GALK e.V.). Diese Baumart \u00fcberzeugt durch seine Hitze- und Trockenvertr\u00e4glichkeit und die Eignung f\u00fcr auch enge Stra\u00dfenr\u00e4ume. F\u00fcr den Standardbaum wurde eine Baumh\u00f6he von 12,0 m, eine Kronenbreite von 8,0 m und eine Stammdicke von 0,9 m angesetzt. Das Verh\u00e4ltnis von Baumh\u00f6he zu Kronenbreite von 3:2 beruht auf den Durchschnittsdaten des Acer Platanoides gem\u00e4\u00df der Stra\u00dfenbaumliste (vgl. GALK e.V.). W\u00e4hrend in Grafenb\u00fchl nur wenige Bestandsb\u00e4ume digital erfasst waren und somit auf die Merkmale des Standardbaums zur\u00fcckgegriffen wurde, wurden f\u00fcr Gromb\u00fchl relativ genaue Baumdaten \u00fcber das Baumkataster bereitgestellt. \u00dcber die digital erfasste Verschattungsfl\u00e4che des Baums bei 90 Grad Sonneneinstrahlung wurde der Durchmesser, also die Kronenbreite, bestimmt und in das Verh\u00e4ltnis zur Baumh\u00f6he gesetzt. \u00dcber die Baumh\u00f6he wurde im Verh\u00e4ltnis 1:0,075 die Stammdicke berechnet. 24\nFallstudien\n\n## 5.2 Analyse der Quartiere\n\nJeweils ein Stadtquartier der Stadt W\u00fcrzburg und der Stadt Asperg dient als Fallstudiengebiet f\u00fcr das Projekt CGSC. In W\u00fcrzburg handelt es sich dabei um den Stadtteil Gromb\u00fchl und in Asperg um den Stadtteil Grafenb\u00fchl. In diesem Kapitel erfolgt eine Analyse der Stadtquartiere mit Fokus auf den vorzufindenden Quartiersarchetypen mit den jeweiligen Stra\u00dfenquerschnitten, den stadtklimatischen Bedingungen und des aktuellen Heiz- und K\u00fchlbedarfs unter Ber\u00fccksichtigung der im Status Quo vorhandenen Stadtb\u00e4ume. ## 5.2.1 Analyse Gromb\u00fchl\n\nDer Stadtteil Gromb\u00fchl liegt im Norden W\u00fcrzburgs in urbaner Lage (vgl. Abbildung 8). Das Untersuchungsgebiet mit einer Fl\u00e4che von etwa 40 Hektar liegt im S\u00fcden im st\u00e4rker verdichteten Teils Gromb\u00fchls, welcher als Altort bezeichnet wird. Dieser wird von der Lindleinstra\u00dfe im Norden, der Rimparer Stra\u00dfe im Westen, der Auvera- und Gromb\u00fchlstra\u00dfe im Westen und der Josef-Schneider-Stra\u00dfe im Osten begrenzt. [IMAGE: N\u00fcrr W\u00fcrzburg ---- Gebietsgrenze Fallstudiengebiet 2 4 B- R Em]\n\nAbbildung 8: Lage des Fallstudiengebiets Gromb\u00fchl (eigene Darstellung)\nDas Baujahr der Geb\u00e4ude im Altort des Stadtteils liegt zum Gro\u00dfteil zwischen 1930 und 1945 und die Geb\u00e4ude dienen haupts\u00e4chlich dem Wohnen (vgl. Reicher Haase Assoziierte GmbH 2022, S. 23). F\u00fcr die Analysen im Projekt CGSC sind 439 Geb\u00e4ude in die Berechnung eingeflossen. In Gromb\u00fchl sind vier Quartiersarchetypen vorzufinden (vgl.", + "embedding": [ + 0.007398230955004692, + 0.012699851766228676, + 0.016853010281920433, + -0.03629673644900322, + 0.005074598826467991, + 0.032317183911800385, + -0.025827037170529366, + 0.008206160739064217, + -0.018388744443655014, + -0.025613369420170784, + -0.0055520120076835155, + -0.01044966746121645, + -0.01121753454208374, + -0.005445178132504225, + -0.0006735528586432338, + 0.018308619037270546, + 0.0388607457280159, + 0.007932399399578571, + -0.0017001575324684381, + 0.0063666184432804585, + -0.018655827268958092, + 0.02783016860485077, + 0.012659789063036442, + 0.010903710499405861, + -0.0024705284740775824, + 0.026334498077630997, + 0.020538771525025368, + -0.016078466549515724, + -0.014876587316393852, + 0.006523530464619398, + -0.006904125213623047, + -0.014943358488380909, + -0.020872626453638077, + -0.002493898384273052, + -0.006533545907586813, + -0.014769753441214561, + 0.006990927737206221, + -0.013834958896040916, + 0.020618896931409836, + 0.012906841933727264, + 0.00947481021285057, + -0.005358375608921051, + -0.007878982461988926, + -0.03512156754732132, + 0.004527076613157988, + 0.0031298925168812275, + 0.006430050823837519, + 0.000396453047869727, + -0.02841775305569172, + 0.010256031528115273, + 0.008847162127494812, + 0.031515929847955704, + -0.024104345589876175, + 0.008960673585534096, + -0.021179772913455963, + -0.0016308826161548495, + 0.007565158419311047, + -0.001135942293331027, + -0.019523851573467255, + -0.01686636358499527, + -0.013901730068027973, + -0.0001036516041494906, + -0.025706849992275238, + 0.021954316645860672, + -0.027509666979312897, + -0.008880548179149628, + -0.023263029754161835, + -0.003869381733238697, + 0.003679084125906229, + -0.01365467719733715, + 0.03413335606455803, + 0.0344538539648056, + 0.01354784332215786, + -0.009501518681645393, + 0.031916555017232895, + -0.014970066957175732, + 0.02027168683707714, + -0.01013584341853857, + -0.011464587412774563, + 0.011297659948468208, + 0.02716245874762535, + -0.01902974583208561, + -0.029165590181946754, + 0.03600294515490532, + 0.018856141716241837, + 0.014182168059051037, + -0.0016100166831165552, + 0.017627554014325142, + -0.009534903801977634, + 0.002590716350823641, + 0.008553369902074337, + 0.03765886649489403, + 0.007738763466477394, + 0.0009773611091077328, + -0.007311428897082806, + -0.006830677390098572, + -0.004330101888626814, + 0.014542732387781143, + 0.0031649472657591105, + -0.020926043391227722, + -0.008079295977950096, + 0.0026992191560566425, + -0.008994058705866337, + -0.00125362619291991, + -0.007071053143590689, + 0.01407533511519432, + -0.007398230955004692, + -0.007364845369011164, + 0.019897770136594772, + -0.024545034393668175, + -0.01924341358244419, + 0.028097253292798996, + -0.01569119468331337, + -0.014622857794165611, + 0.01613188348710537, + -0.033786144107580185, + 0.04818198084831238, + -0.003478771075606346, + -0.0032033405732363462, + -0.023303091526031494, + 0.02610747516155243, + -0.011023898608982563, + -0.003438708372414112, + -0.019376955926418304, + -0.00011945755977649242, + 0.007965784519910812, + 0.008092650212347507, + -0.007565158419311047, + -0.03255755826830864, + -0.011497972533106804, + -0.021500274538993835, + 0.025132618844509125, + 0.01198540162295103, + -0.00247553619556129, + -0.016999905928969383, + -0.0001358373265247792, + -0.003612313186749816, + -0.0010816907742992043, + -0.028391044586896896, + -0.043027255684137344, + -0.001147627248428762, + 0.015437464229762554, + -0.018642473965883255, + -0.02903204783797264, + 0.00373917818069458, + 0.026454685255885124, + 0.0050011505372822285, + 0.019189996644854546, + 0.007344814017415047, + -0.035949528217315674, + 0.010282739996910095, + -0.006877416744828224, + 0.03538864850997925, + -0.002822745591402054, + 0.005722277797758579, + -0.013688063248991966, + 0.003013043198734522, + 0.029539506882429123, + -0.04660618305206299, + -0.01836203597486019, + -0.012332610785961151, + 0.010476375930011272, + 0.008633495308458805, + -0.0035121566615998745, + -0.001707669347524643, + 0.012012110091745853, + -0.01792134717106819, + -0.0008855509222485125, + 0.0020131468772888184, + -0.016625989228487015, + -0.010663335211575031, + 0.01840209774672985, + -0.028017127886414528, + 0.021834129467606544, + 0.007217949256300926, + -0.003273450070992112, + -0.00765196094289422, + 0.01623871736228466, + -0.0042967163026332855, + -0.023436633870005608, + -0.01862911880016327, + 0.005398438312113285, + 0.010970481671392918, + 0.009074184112250805, + -0.02346334233880043, + 0.009688477963209152, + 0.014302356168627739, + 0.021273253485560417, + 0.00660031707957387, + -0.0030781447421759367, + 0.002532291691750288, + -0.0019079823978245258, + 0.00494773406535387, + -0.009054153226315975, + -0.6260452270507812, + 0.0004231614584568888, + 0.0032333876006305218, + -0.00462055578827858, + 0.01197204738855362, + 0.01741388626396656, + 0.013153894804418087, + 0.005117999855428934, + -0.009234434925019741, + 0.02514597214758396, + 0.0173738244920969, + 0.007144500967115164, + 0.0023403249215334654, + 0.00947481021285057, + -0.017614200711250305, + -0.012439444661140442, + -0.0018428806215524673, + 0.003896089969202876, + 0.032610975205898285, + -0.003462078282609582, + -0.021313315257430077, + 0.003588943276554346, + -0.0037291625048965216, + 0.008513307198882103, + 0.015998341143131256, + 0.027616500854492188, + 0.005148047115653753, + -0.047567687928676605, + -0.00989546813070774, + 0.024905597791075706, + -0.03661723807454109, + 0.013093800283968449, + -0.0032283796463161707, + 0.0435614250600338, + 0.04495026171207428, + 0.0020131468772888184, + -0.0303941760212183, + 0.012679819948971272, + 0.016398966312408447, + 0.00990214478224516, + -0.004797499161213636, + -0.01705332286655903, + -0.01264643482863903, + -0.0008471575565636158, + 0.0027626517694443464, + 0.01010245829820633, + 0.02203444205224514, + -0.011704962700605392, + -0.0034487240482121706, + -0.01792134717106819, + 0.013147217221558094, + -0.0039561837911605835, + 0.0044068885035812855, + -0.0077521177008748055, + 0.023957448080182076, + 0.020832564681768417, + 0.02636120654642582, + -0.006897448096424341, + 0.003371937433257699, + 0.011871890164911747, + -0.0071712094359099865, + 0.018762661144137383, + -0.014395835809409618, + -0.012479507364332676, + -0.021032877266407013, + 0.05205469951033592, + -0.03755203261971474, + -0.012012110091745853, + 0.029379256069660187, + -0.019523851573467255, + -0.003538865130394697, + 0.01892291195690632, + -0.016959844157099724, + 0.004059679340571165, + 0.018495578318834305, + 0.011297659948468208, + 0.03544206544756889, + -0.011337722651660442, + -0.007658638060092926, + 0.006139596924185753, + -0.0005825773114338517, + -0.01155138947069645, + -0.01387502159923315, + -0.002347002038732171, + 0.028391044586896896, + -0.03199668228626251, + -0.00998894777148962, + -0.008586755953729153, + -0.010616594925522804, + 0.009828696958720684, + 0.006830677390098572, + 0.018308619037270546, + -0.015504235401749611, + 6.15023891441524e-05, + 0.009948885068297386, + 0.04358813539147377, + -0.001364633091725409, + 0.04006262123584747, + 0.0013713102089241147, + -0.0560876727104187, + -0.009842051193118095, + 0.009968915954232216, + 0.01466291956603527, + -0.01200543250888586, + 0.00494773406535387, + 0.025573307648301125, + -0.021940963342785835, + 0.0013270743656903505, + 0.019443726167082787, + -0.01909651607275009, + -0.0013796566054224968, + -0.002051540184766054, + 0.003296819981187582, + -0.0001676578976912424, + 0.007051021791994572, + -0.026374559849500656, + 0.015170379541814327, + -0.010442990809679031, + 0.004887640010565519, + 0.0053416830487549305, + 0.005011166445910931, + -0.013995209708809853, + 0.022755570709705353, + -0.01310715451836586, + -0.004784144926816225, + 0.00725801195949316, + 0.011244243010878563, + -0.0032751194667071104, + -0.017801158130168915, + -0.018161721527576447, + 0.006737197749316692, + 0.0020682329777628183, + 0.04623226821422577, + -0.010730105452239513, + 0.021273253485560417, + 0.0018028180347755551, + 0.024518325924873352, + -0.017680970951914787, + 0.0007169540040194988, + -0.045991890132427216, + -0.017640909180045128, + -0.012399381957948208, + 0.015811381861567497, + -0.01716015674173832, + -0.018816078081727028, + -0.011758379638195038, + -0.012766622938215733, + 0.010362865403294563, + -0.01133104506880045, + 0.007338136900216341, + -0.017333760857582092, + -0.006169643718749285, + -0.010389573872089386, + 0.0074716792441904545, + -0.0016317171975970268, + 0.013227342627942562, + -0.007518419064581394, + -0.01406198088079691, + -0.009374653920531273, + -0.004944395273923874, + 0.023490050807595253, + 0.010316125117242336, + -0.03888745233416557, + -0.007364845369011164, + 0.020592188462615013, + -0.012673143297433853, + 0.007792179938405752, + 0.008312994614243507, + -0.011891921982169151, + -0.02873825468122959, + -0.021099647507071495, + -0.00802587904036045, + 0.0031799706630408764, + 0.016212008893489838, + -0.016185300424695015, + -0.00845321360975504, + -0.02581368386745453, + 0.019189996644854546, + -0.004720712546259165, + -0.007271366193890572, + 0.017347116023302078, + -0.01396850124001503, + -0.0146095035597682, + -0.011070637963712215, + 0.026775186881422997, + 0.02016485296189785, + 0.011778411455452442, + 0.01153135858476162, + -0.021687233820557594, + 0.008887224830687046, + 0.009935530833899975, + 0.02100616879761219, + -0.026134183630347252, + 0.021807420998811722, + -0.01387502159923315, + -0.0024788747541606426, + 0.004393534269183874, + 0.015023483894765377, + -0.023036008700728416, + 0.02694879099726677, + 0.03311843425035477, + 0.01495671272277832, + 0.031729597598314285, + 0.005288266111165285, + 0.011811796575784683, + -0.03485448285937309, + 0.010442990809679031, + -0.009528227150440216, + 0.03514827415347099, + 0.007852273993194103, + 0.006964219268411398, + -0.006950865034013987, + -0.03453398123383522, + 0.0017844559624791145, + -0.002984665334224701, + 0.03333210200071335, + -0.00411643460392952, + -0.005248203407973051, + 0.001703496091067791, + 0.007852273993194103, + 0.004186544101685286, + 0.018321972340345383, + 0.02144685760140419, + 0.004971103742718697, + -0.002126657636836171, + 0.0074316165409982204, + -0.0039027670864015818, + 0.022902466356754303, + -0.00858007837086916, + -0.023663656786084175, + -0.0074316165409982204, + 0.008726974949240685, + -0.004326763097196817, + 0.00261742458678782, + 0.013928438536822796, + 0.029966842383146286, + 0.02940596453845501, + -0.021353378891944885, + 0.020325103774666786, + -0.0010324472095817327, + 0.02064560540020466, + 0.01979093626141548, + -0.011003866791725159, + -0.010756813921034336, + 0.039501745253801346, + -0.018375389277935028, + 0.023303091526031494, + 0.03688432276248932, + 0.01002900954335928, + 0.0019029745599254966, + -0.003966199699789286, + -0.004864270333200693, + 0.016946488991379738, + 0.0033969765063375235, + 0.015384047292172909, + -0.009501518681645393, + 0.028658129274845123, + 0.015116962604224682, + 0.017721032723784447, + 0.011391138657927513, + 0.009795310907065868, + 0.007865628227591515, + 0.004303393419831991, + -0.009554935619235039, + -0.004530414938926697, + 0.02207450568675995, + -0.011624837294220924, + -0.008399796672165394, + -0.012239131145179272, + 0.0027275970205664635, + 0.007117792498320341, + -0.014021918177604675, + -0.0173738244920969, + 0.0062564462423324585, + -0.01069004274904728, + -0.005775694735348225, + -0.013521134853363037, + 0.0014622857561334968, + 0.013507780618965626, + 0.005017843563109636, + -0.004189882427453995, + -0.03656382113695145, + -0.02628108114004135, + 0.031142011284828186, + -0.01211894303560257, + -0.007899013347923756, + -0.0037124697118997574, + 0.00261742458678782, + -0.015824735164642334, + 0.004019616637378931, + 2.7230064006289467e-05, + -0.01814836822450161, + -0.009648415260016918, + -0.015116962604224682, + -0.007458325009793043, + -0.030821511521935463, + 0.013027029111981392, + -0.00387272029183805, + -0.00791904516518116, + 0.011484618298709393, + -0.010195937938988209, + 0.017640909180045128, + -0.010563177987933159, + -0.024211177602410316, + 0.04350800812244415, + 0.0011267613153904676, + -0.023556822910904884, + -0.006132919806987047, + 0.0043367790058255196, + -0.011618160642683506, + -0.017133448272943497, + 0.0014046956785023212, + -0.01464956533163786, + 0.025239452719688416, + -0.017293699085712433, + 0.019844353199005127, + 0.010262708179652691, + -0.01420887652784586, + 0.051894452422857285, + -0.001467293594032526, + -0.003028066596016288, + -0.03787253424525261, + -0.032717809081077576, + 0.012432767078280449, + 0.03164947032928467, + 0.02497236803174019, + 0.00846656784415245, + 0.009428070858120918, + 0.00023620254069101065, + 0.01450266968458891, + 0.0017160156276077032, + -0.018428806215524673, + -0.0004961922531947494, + 0.015250504948198795, + 0.0013395939022302628, + -0.01519708801060915, + 0.017614200711250305, + -0.005084614735096693, + 0.021206481382250786, + -0.013447687029838562, + -0.005405115429311991, + -0.01495671272277832, + 0.0026291096583008766, + 0.021246545016765594, + -0.022782277315855026, + -0.013714770786464214, + 0.004750759340822697, + 0.05250874534249306, + 0.023263029754161835, + 0.006363280117511749, + 0.020084727555513382, + 0.002981326775625348, + 0.014102043583989143, + -0.006713828071951866, + -0.008052587509155273, + 0.01712009496986866, + 0.003592281835153699, + 0.02144685760140419, + -0.021246545016765594, + 0.004430258180946112, + 0.008606786839663982, + -0.007738763466477394, + 0.01450266968458891, + 0.0014714667340740561, + 0.007571835536509752, + 0.0071111153811216354, + 0.0046172174625098705, + -0.006713828071951866, + 0.014355773106217384, + -0.01928347535431385, + 0.002639125334098935, + 0.0072313034906983376, + -0.004280023742467165, + -0.01894962042570114, + 0.008252900093793869, + -0.01686636358499527, + 0.009214403107762337, + -0.020805856212973595, + 0.004360148683190346, + -0.03116871975362301, + 0.013594583608210087, + -0.006917479448020458, + 6.635372119490057e-05, + -0.01241273619234562, + -0.027856877073645592, + -0.028898505493998528, + 0.012659789063036442, + -0.011377785354852676, + -0.007364845369011164, + -0.01705332286655903, + -0.021820776164531708, + -0.004590508993715048, + -0.023930739611387253, + -0.013300790451467037, + 0.007311428897082806, + -0.013254051096737385, + -0.03413335606455803, + -0.007217949256300926, + 0.025800328701734543, + 0.007505064830183983, + 0.02892521396279335, + -0.017026614397764206, + -0.007017636206001043, + 0.008373088203370571, + -0.02463851310312748, + -0.028845088556408882, + -0.008186128921806812, + -0.015851443633437157, + -0.009074184112250805, + 0.024905597791075706, + -0.0017727710073813796, + -0.00991549901664257, + 0.005335005931556225, + 0.018428806215524673, + -0.005034536123275757, + -0.010489730164408684, + 0.0007119461661204696, + -0.0024838827084749937, + -0.02170058712363243, + 0.006997604854404926, + 0.018241846933960915, + 0.0204586461186409, + 0.016999905928969383, + -0.030180510133504868, + 0.013167249038815498, + -0.014235584996640682, + -0.006239753682166338, + -0.016212008893489838, + 0.006964219268411398, + 0.007945753633975983, + -0.022488486021757126, + 0.005358375608921051, + 0.0017610861686989665, + 0.0038760588504374027, + 0.010182583704590797, + -0.02357017621397972, + 0.0077855028212070465, + 0.0014330734265968204, + -0.004480336792767048, + -0.004249976482242346, + -0.017240282148122787, + 0.015784673392772675, + 0.022635381668806076, + -0.01510360836982727, + 0.0029963504057377577, + -0.02764320932328701, + 0.05245532840490341, + 0.012232454493641853, + -0.004757436458021402, + 0.04521734640002251, + -0.001376318046823144, + 0.013287436217069626, + -0.01705332286655903, + -0.013534489087760448, + -0.0010266046738252044, + 0.007725409232079983, + 0.023877322673797607, + -0.010416282340884209, + -0.006249769125133753, + -0.004613878671079874, + -0.003281796583905816, + 0.014195522293448448, + -0.008747005835175514, + 0.01440919004380703, + -0.024718638509511948, + 0.020391875877976418, + -0.00637997267767787, + 0.015036838129162788, + -0.017988117411732674, + -0.02455838769674301, + -0.022421713918447495, + 0.0059225913137197495, + 0.010750137269496918, + 0.01440919004380703, + -0.0391545370221138, + -0.0034887867514044046, + -0.014916650019586086, + 0.006136258598417044, + -0.008312994614243507, + -0.011885244399309158, + 0.002677518641576171, + -0.01987106166779995, + 0.008640171959996223, + -0.0016108512645587325, + 0.042359545826911926, + 0.021820776164531708, + 0.026588227599859238, + 0.010402928106486797, + -0.020872626453638077, + -0.005031197797507048, + -0.026347851380705833, + -0.01165822334587574, + -0.0379793681204319, + 0.01917664147913456, + 0.004917686805129051, + 0.02272886224091053, + -0.0014339080080389977, + 0.005107984412461519, + -0.009908822365105152, + 0.0385669507086277, + -0.01387502159923315, + 0.002251853235065937, + -0.006757229100912809, + -0.029165590181946754, + -0.020044665783643723, + 0.014369127340614796, + -0.007538450416177511, + 0.01057653222233057, + -0.02210121415555477, + 0.0014990097843110561, + 0.02434471994638443, + -0.02371707186102867, + -0.01748065836727619, + -0.004009600728750229, + 0.00600271625444293, + -0.049837902188301086, + 0.044122301042079926, + 0.01475639920681715, + 0.010783522389829159, + -0.015597714111208916, + -0.013648000545799732, + -0.021954316645860672, + -0.009494842030107975, + 0.013794896192848682, + -0.007932399399578571, + 0.005461870692670345, + 0.0009832035284489393, + -0.031435806304216385, + 0.015223796479403973, + 0.000658529344946146, + 0.0051313540898263454, + -0.018896203488111496, + 0.01814836822450161, + -0.01854899525642395, + -0.014195522293448448, + -0.015343984588980675, + 0.01484987884759903, + -0.008994058705866337, + 0.02474534697830677, + -0.00791904516518116, + -0.0003298906667623669, + 0.038620367646217346, + -0.03207680583000183, + 0.01321398839354515, + 0.015971632674336433, + 0.012185714207589626, + 0.035361941903829575, + 0.0173738244920969, + 0.03354576975107193, + 0.012279193848371506, + -0.04607201740145683, + -0.015998341143131256, + -0.03648369386792183, + 0.0027426204178482294, + -0.02503914013504982, + 0.019376955926418304, + 0.0047474210150539875, + -0.002078248653560877, + 0.008032555691897869, + 0.015157025307416916, + 0.035361941903829575, + -0.0033385518472641706, + -0.00914763193577528, + 0.04123779386281967, + 0.03391968831419945, + 0.003568911924958229, + -0.015090255066752434, + 0.00833970308303833, + -0.029165590181946754, + 0.002071571536362171, + -0.007965784519910812, + -0.0146095035597682, + -0.007284720428287983, + -0.010930418968200684, + 0.002532291691750288, + 0.04663289338350296, + -0.005909237079322338, + 0.028391044586896896, + -0.002215129090473056, + -0.02628108114004135, + 0.005311636254191399, + -0.015343984588980675, + -0.009080860763788223, + 0.017440594732761383, + -0.0021917594131082296, + 0.03522840142250061, + -0.011958693154156208, + -0.008807100355625153, + 0.006713828071951866, + -0.012419412843883038, + -0.024358075112104416, + -0.00671048928052187, + 0.004139804281294346, + 0.024478262290358543, + -0.010436313226819038, + 0.009327913634479046, + 0.017360469326376915, + 0.013133862987160683, + 0.01774774119257927, + 0.028471169993281364, + 0.0014447583816945553, + -0.0301003847271204, + -0.002787690842524171, + -0.01011581253260374, + -0.0010232661152258515, + 0.010122489184141159, + -0.0015374032082036138, + -0.007004281971603632, + -0.010329479351639748, + -0.022889111191034317, + -0.02539970353245735, + 0.00473072798922658, + 0.004717373754829168, + -0.026828603819012642, + -0.015557652339339256, + 0.01661263406276703, + 0.0013637985102832317, + 0.0359228178858757, + -0.008666880428791046, + -0.023182904347777367, + -0.012679819948971272, + 0.023142842575907707, + -0.0259872879832983, + 0.007278043311089277, + 0.05635475739836693, + 0.0075117419473826885, + -0.01705332286655903, + 0.0017009922303259373, + 0.005027859006077051, + -0.03138238936662674, + 0.021794067695736885, + -0.018829433247447014, + -0.020298395305871964, + -0.014275647699832916, + -0.004436935298144817, + 0.019056454300880432, + -0.0024438200052827597, + -0.014943358488380909, + 0.014382481575012207, + 0.008994058705866337, + 0.014622857794165611, + -0.010002301074564457, + -0.014035272412002087, + -0.0007461663335561752, + 0.01675952970981598, + 0.0006380807608366013, + 0.004029632080346346, + -0.021019522100687027, + 0.017026614397764206, + 0.026534810662269592, + -0.0077454405836761, + 0.01123756542801857, + -0.04337446764111519, + -0.014783107675611973, + -0.012719882652163506, + 0.010062395595014095, + -0.0164924468845129, + 0.011477941647171974, + -0.045511141419410706, + -0.017547428607940674, + -0.015597714111208916, + 0.020765792578458786, + -0.00554533489048481, + 0.01387502159923315, + -0.00013740228314418346, + 0.00231027789413929, + -0.02434471994638443, + 0.0286314208060503, + -0.008573401719331741, + -0.005037874914705753, + -0.0015691193984821439, + -0.0004394369025249034, + -0.04329434037208557, + -0.008413150906562805, + -0.006864062510430813, + 0.02401086501777172, + 0.009594998322427273, + -0.034560687839984894, + -0.01519708801060915, + -0.0006455924594774842, + -0.035548899322748184, + -0.02541305683553219, + -0.013514458201825619, + -0.013227342627942562, + 0.011671577580273151, + 0.019937831908464432, + -0.001183516695164144, + 0.024731991812586784, + -0.0182552020996809, + 0.014743044972419739, + -0.031622763723134995, + 0.000871362048201263, + -0.006363280117511749, + -0.018308619037270546, + 0.039501745253801346, + -0.018602410331368446, + -0.014475961215794086, + -0.006904125213623047, + 0.013207311742007732, + -0.010963804088532925, + -0.009067506529390812, + 0.026828603819012642, + -0.0022852388210594654, + -0.002133334754034877, + 0.005618782714009285, + 0.004954411182552576, + 0.013314144685864449, + -0.0004014608566649258, + 0.010369542054831982, + -0.026815248653292656, + -0.000571726995985955, + -0.008553369902074337, + 0.016959844157099724, + -0.020298395305871964, + -0.0009631722350604832, + -0.0025957240723073483, + -0.013834958896040916, + -0.007364845369011164, + 0.007424939423799515, + -0.016479091718792915, + -0.006400004029273987, + -0.0030931683722883463, + 0.022395005449652672, + 0.007097761146724224, + -0.006243092007935047, + 0.021794067695736885, + 0.010022332891821861, + -0.007725409232079983, + -0.019043100997805595, + 0.008660203777253628, + -0.028898505493998528, + 0.011624837294220924, + -0.005535318981856108, + -0.04572480544447899, + 0.015237150713801384, + -0.028898505493998528, + 0.01697319746017456, + -0.004854254424571991, + 0.008626817725598812, + -0.023877322673797607, + -0.02511926367878914, + -0.004670633934438229, + 0.048155274242162704, + 0.02961963228881359, + 0.001261972589418292, + -0.005114661529660225, + 0.018028181046247482, + -0.01279333047568798, + -0.008740329183638096, + -0.002019823994487524, + -0.013334176503121853, + -0.010723428800702095, + -0.018455514684319496, + 0.0059760077856481075, + -0.01833532750606537, + -0.002240168396383524, + 0.008513307198882103, + -0.02694879099726677, + -0.04358813539147377, + -0.028284212574362755, + 0.18332655727863312, + -0.01077684573829174, + -0.0028961938805878162, + 0.006850708741694689, + -0.012873455882072449, + 0.00044110618182457983, + 0.02361023984849453, + 0.010195937938988209, + -0.01207888126373291, + 0.024131054058670998, + -0.02207450568675995, + -0.012272517196834087, + 0.006677103694528341, + 0.010629949159920216, + 0.018562348559498787, + -0.014395835809409618, + -0.01833532750606537, + -0.010603240691125393, + 0.008867193944752216, + 0.013487749733030796, + 0.023263029754161835, + -0.028204087167978287, + -0.00435347156599164, + -0.005111322738230228, + 0.03188984841108322, + 0.008853839710354805, + -0.013187279924750328, + 0.0005483571439981461, + 0.019056454300880432, + 0.02210121415555477, + 0.0021900900173932314, + 0.0016459061298519373, + 0.020765792578458786, + -0.007091084029525518, + 0.009274497628211975, + 0.012185714207589626, + 0.024211177602410316, + -0.004053002223372459, + 0.03784582391381264, + 0.014262293465435505, + 0.012125620618462563, + -0.02507920190691948, + 0.020992813631892204, + -0.01024935394525528, + -0.012613048776984215, + 0.008499952964484692, + 0.004884301219135523, + 0.01363464631140232, + -0.014596149325370789, + -0.006566931493580341, + -0.014689628034830093, + 0.013728125020861626, + 0.0040863873437047005, + 0.028658129274845123, + -0.011865213513374329, + -0.015130316838622093, + 0.012466153129935265, + -0.032610975205898285, + 0.008860516361892223, + -0.0045571234077215195, + -0.042733464390039444, + 0.01983099803328514, + 0.0021316653583198786, + 0.006156289484351873, + -0.007291397545486689, + -0.015958277508616447, + -0.017026614397764206, + 0.0047273896634578705, + 0.00880042277276516, + -0.020471999421715736, + 0.007585189770907164, + -0.0195772685110569, + -0.01987106166779995, + 0.010589886456727982, + -0.013521134853363037, + -0.04147816821932793, + 0.025346286594867706, + -0.0001874805602710694, + 0.03421347960829735, + 0.01663934253156185, + -0.010529792867600918, + 0.015544298104941845, + -0.005418469663709402, + 0.0015899853315204382, + 0.002398749580606818, + -0.03795265778899193, + 0.01387502159923315, + -0.010549823753535748, + -0.001372144790366292, + -0.04433596879243851, + 0.00023891511955298483, + 0.020658958703279495, + 0.004710696637630463, + -0.013287436217069626, + 0.027068978175520897, + 0.00688409386202693, + -0.0035121566615998745, + 0.036937739700078964, + -0.024504970759153366, + -0.014462606981396675, + -0.002564007882028818, + 0.03277122601866722, + 0.0409172922372818, + -0.012065527029335499, + -0.01968410238623619, + 0.010516438633203506, + -0.004590508993715048, + 0.017988117411732674, + 0.0019780918955802917, + -0.013607937842607498, + -0.0010182582773268223, + -0.025199389085173607, + -0.000550443772226572, + -0.00047073583118617535, + 0.016011694446206093, + 0.003682422684505582, + 0.012459475547075272, + -0.011805119924247265, + -0.02027168683707714, + -0.004754098132252693, + -0.01712009496986866, + 0.008673558011651039, + -0.0012836732203140855, + 0.023263029754161835, + -0.002188420854508877, + -0.024424845352768898, + -0.03984895721077919, + -0.002906209323555231, + -0.014102043583989143, + 0.0002501827257219702, + 0.015370693057775497, + -0.026200955733656883, + -0.00037725636502727866, + 0.002275223145261407, + 0.01850893162190914, + 0.015771320089697838, + -0.016145236790180206, + -0.029085464775562286, + -0.013601260259747505, + -0.0032083482947200537, + 0.033412229269742966, + -0.026414623484015465, + 0.01594492420554161, + -0.021072939038276672, + -0.0015916546108201146, + 0.013834958896040916, + -0.007498387712985277, + 0.00031361522269435227, + -0.023476697504520416, + -0.015063546597957611, + 0.007812211290001869, + 0.0029779882170259953, + -0.008873870596289635, + 0.0006635371828451753, + 0.03560231626033783, + -0.002535630250349641, + -0.015664486214518547, + -0.030474301427602768, + -0.011130732484161854, + 0.01321398839354515, + 0.0009381331037729979, + -0.012773299589753151, + 0.010202614590525627, + -0.02016485296189785, + -0.0011409501312300563, + 0.004797499161213636, + -0.16922451555728912, + 0.020779147744178772, + 0.016879718750715256, + -0.019149933010339737, + 0.011304336600005627, + 0.009134277701377869, + 0.016105175018310547, + -0.005037874914705753, + -0.00903412140905857, + 0.00990214478224516, + 0.026200955733656883, + -0.00946145597845316, + -0.02228817343711853, + 0.0010324472095817327, + -0.006032763514667749, + -0.015076900832355022, + -0.0026708415243774652, + 0.02056547999382019, + 0.040970709174871445, + 0.029352547600865364, + -0.01712009496986866, + -0.03608306869864464, + 0.009040798991918564, + 0.02302265353500843, + 0.018201785162091255, + -0.004697342403233051, + -0.01943037286400795, + 0.03773899003863335, + 0.0005466878646984696, + -0.018602410331368446, + -0.012012110091745853, + -0.01134439930319786, + 0.03322526812553406, + -0.024144407361745834, + -0.005421808455139399, + -0.013915084302425385, + -0.017093386501073837, + -0.003356914035975933, + -0.019737519323825836, + 0.011825150810182095, + 0.02701556123793125, + 0.01301367487758398, + 0.007605221122503281, + -0.0046372488141059875, + -0.010269385762512684, + 0.023369863629341125, + 0.02961963228881359, + -0.021420149132609367, + -0.008092650212347507, + -0.007057698909193277, + 0.0039762151427567005, + -0.01810830645263195, + 0.004907671362161636, + 0.025212744250893593, + -0.00878039188683033, + 0.032317183911800385, + 0.0001402191846864298, + 0.014783107675611973, + -0.00395952258259058, + -0.0015090254601091146, + -0.007378199603408575, + -0.010810230858623981, + 0.021727295592427254, + 0.004710696637630463, + 0.003009704640135169, + -0.03784582391381264, + -0.013714770786464214, + 0.013794896192848682, + -0.020044665783643723, + -0.0042766849510371685, + -0.018602410331368446, + -0.016398966312408447, + 0.03610977903008461, + -0.007725409232079983, + 0.006129581481218338, + 0.011391138657927513, + 0.002196767134591937, + 0.014903295785188675, + 0.011043929494917393, + 0.008306317031383514, + 0.0015490880468860269, + 0.07056363672018051, + -0.03333210200071335, + -0.019163288176059723, + -0.014102043583989143, + -0.0034053230192512274, + -0.010750137269496918, + 0.016625989228487015, + 0.018028181046247482, + 0.007625252474099398, + 0.009494842030107975, + -0.026441331952810287, + -0.0010107465786859393, + -0.026815248653292656, + 0.032824642956256866, + 0.0016333864768967032, + 0.004900994244962931, + -0.009287851862609386, + -0.014102043583989143, + -0.007585189770907164, + 0.0005750655545853078, + 0.005144708324223757, + -0.049731068313121796, + 0.007925721816718578, + 0.017787804827094078, + 0.0034554011654108763, + -0.00900073628872633, + 0.02961963228881359, + 0.038219742476940155, + -0.0022067828103899956, + -0.010529792867600918, + -0.004650602582842112, + 0.004724050872027874, + -0.005712262354791164, + -0.0007215445511974394, + 0.0032517495565116405, + 0.007765471935272217, + -0.019457081332802773, + 0.019737519323825836, + -0.009494842030107975, + 0.03218363970518112, + 0.012212422676384449, + -0.016078466549515724, + 0.0004995308117941022, + 0.0031599393114447594, + -0.0154908811673522, + -0.07483697682619095, + 0.027563083916902542, + 0.017654262483119965, + 0.012386027723550797, + 0.008853839710354805, + 0.009995624423027039, + -0.0169331356883049, + 0.017507366836071014, + -0.006683780811727047, + 0.03402652218937874, + -0.05293608084321022, + -0.023369863629341125, + 0.00100573874078691, + -0.01342097856104374, + 0.030367467552423477, + -0.01939030922949314, + -0.018388744443655014, + -0.014796461910009384, + -0.003852688940241933, + 0.02075243927538395, + 0.0034487240482121706, + 0.0008542519644834101, + -0.009541581384837627, + -0.009635061025619507, + -0.0083931190893054, + -0.01894962042570114, + -0.019296830520033836, + 0.009648415260016918, + 0.031542640179395676, + 0.010396250523626804, + 0.019710810855031013, + -0.02804383635520935, + 0.028764963150024414, + -0.012586340308189392, + 0.011150763370096684, + -0.00944142509251833, + -0.009648415260016918, + -0.005839127115905285, + 0.02871154621243477, + -0.019123224541544914, + 0.002879501087591052, + 0.017761096358299255, + 0.042947132140398026, + -0.0382731594145298, + 0.005965992342680693, + -0.011818474158644676, + -0.020578833296895027, + 0.0020415245089679956, + 0.0015290568117052317, + 0.0019931155256927013, + -0.013320822268724442, + -0.015343984588980675, + 0.0027025577146559954, + 0.0071912407875061035, + 0.025239452719688416, + 7.423061470035464e-05, + -0.02064560540020466, + -0.024918951094150543, + -0.019203349947929382, + -0.0020882643293589354, + -0.009494842030107975, + 0.016746176406741142, + -0.003896089969202876, + 0.0019179980736225843, + 0.021954316645860672, + 0.006259785033762455, + -0.024518325924873352, + -0.028310921043157578, + -0.0006990092806518078, + -0.02497236803174019, + -0.027563083916902542, + 0.012325933203101158, + 0.00038894129102118313, + -0.01814836822450161, + -0.02514597214758396, + -0.008199483156204224, + -0.03138238936662674, + -0.007124469615519047, + 0.013247373513877392, + -0.014489315450191498, + -0.024264594539999962, + -0.03188984841108322, + 0.03146251291036606, + -0.016732821241021156, + 0.020538771525025368, + 0.01917664147913456, + 0.010836939327418804, + -0.018455514684319496, + 0.015157025307416916, + -0.051013074815273285, + 0.02812396176159382, + 0.0064667752012610435, + 0.02104623056948185, + -0.010663335211575031, + -0.007117792498320341, + 0.017320407554507256, + 0.005638814065605402, + 0.00639666523784399, + 0.005595413036644459, + 0.000802504422608763, + -0.038700494915246964, + -0.012152329087257385, + -0.06645053625106812, + 0.026494747027754784, + 0.021981025114655495, + -0.00451038358733058, + -0.033198561519384384, + 0.01623871736228466, + 0.0014773092698305845, + 0.0019730841740965843, + 0.009635061025619507, + 0.02335650846362114, + -0.0042766849510371685, + 0.018054889515042305, + 0.005298282019793987, + -0.008506630547344685, + -0.04169183596968651, + -0.021607108414173126, + -0.0010875333100557327, + -0.00024684416712261736, + 0.012232454493641853, + 0.029966842383146286, + 0.010269385762512684, + 0.025346286594867706, + -0.00036265020025894046, + 0.004273346625268459, + -0.025506537407636642, + -0.00914763193577528, + -0.015477526932954788, + 0.011724994517862797, + -0.010202614590525627, + -0.05015840381383896, + -0.0030697984620928764, + 0.006957542151212692, + -0.0012427759356796741, + 0.006122904364019632, + 0.008847162127494812, + -0.010970481671392918, + 0.014716336503624916, + 0.0277500431984663, + 0.020111436024308205, + 0.0672517865896225, + -0.03450727090239525, + -0.021473566070199013, + 0.019109871238470078, + -0.029753174632787704, + 0.00102910865098238, + 0.015464172698557377, + 0.02012479119002819, + -0.00856004748493433, + 0.020338458940386772, + -0.01701326109468937, + 0.03867378458380699, + 0.009227757342159748, + 0.02163381688296795, + -0.016853010281920433, + 0.016545863822102547, + -0.014342418871819973, + -0.00026249364600516856, + 0.01686636358499527, + 0.009668446145951748, + -0.022969236597418785, + 0.05795726180076599, + 0.019497143104672432, + 0.01296025887131691, + -0.011818474158644676, + 0.02353011444211006, + -0.01720021851360798, + -0.029245715588331223, + -0.011083992198109627, + 0.009014090523123741, + -0.014355773106217384, + -0.00848659873008728, + -0.01244612131267786, + 0.003028066596016288, + 0.04740743711590767, + -0.022849049419164658, + -0.0013128855498507619, + 0.03602965176105499, + -0.02441149204969406, + 0.003412000136449933, + 0.018816078081727028, + 0.009301205165684223, + 0.017440594732761383, + -0.005458532366901636, + 0.013441010378301144, + 0.028364336118102074, + 0.0017060000682249665, + -0.003114868886768818, + -0.0071311467327177525, + 0.011043929494917393, + 0.001916328794322908, + 0.0015056869015097618, + 0.0356290265917778, + 0.0008095988305285573, + -0.012973613105714321, + -0.0005099637783132493, + 0.02148691937327385, + 0.0003307253064122051, + -0.008065941743552685, + 0.03164947032928467, + 0.02728264592587948, + -0.01991112343966961, + 0.0026992191560566425, + 0.006877416744828224, + -0.0329848937690258, + 0.007758794818073511, + 0.007157855201512575, + 0.009160986170172691, + -0.025105910375714302, + 0.000741158495657146, + 0.002856131177395582, + 0.006586962845176458, + 0.007692023646086454, + 0.019483789801597595, + -0.008880548179149628, + -0.0030731370206922293, + 0.01631884090602398, + -0.0182552020996809, + -0.019897770136594772, + -0.015530943870544434, + 0.027563083916902542, + 0.013120508752763271, + -0.00026291096583008766, + 0.0017660940065979958, + 0.012345965020358562, + 0.009801988489925861, + -0.003635683096945286, + -0.007818888872861862, + -0.0009573297575116158, + -0.004376841709017754, + -0.02892521396279335, + 0.0150501923635602, + -0.004527076613157988, + -0.015918215736746788, + -0.020952751860022545, + -0.013928438536822796, + -0.013427656143903732, + 0.012820038944482803, + 0.01573125645518303, + 0.012312578968703747, + 0.11655552685260773, + 0.04110424965620041, + -0.0017961409175768495, + -0.0025306222960352898, + -0.028284212574362755, + 0.019630685448646545, + -0.005675538443028927, + -0.011758379638195038, + 0.000256233848631382, + -0.08103333413600922, + -0.0015440802089869976, + -0.016252070665359497, + 0.010349511168897152, + -0.04535089060664177, + -0.012786653824150562, + 0.005037874914705753, + -0.015757964923977852, + 0.0056955693289637566, + 0.0019897769670933485, + 0.016799593344330788, + 0.027616500854492188, + -0.031809721142053604, + 0.021900899708271027, + 0.028257504105567932, + -0.020138144493103027, + -0.022849049419164658, + 0.017026614397764206, + -0.019924478605389595, + -0.008259577676653862, + 0.020992813631892204, + -9.67658415902406e-05, + -0.006012732163071632, + -0.08001840859651566, + -0.04030299931764603, + 0.0012411066563799977, + -0.0066871196031570435, + 0.0032033405732363462, + -0.02558666095137596, + 0.017841221764683723, + -0.01892291195690632, + -0.008212837390601635, + 0.024104345589876175, + -0.011097346432507038, + -0.0029245715122669935, + 0.01510360836982727, + -0.02533293142914772, + -0.0018996360013261437, + -0.02742954157292843, + -0.022154631093144417 + ], + "metadata": { + "source": "Kreye_Marieke_BA_241_V2.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 17, + "has_images": true, + "image_count": 98, + "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", + "links": [], + "last_modified": "2025-05-05T23:00:23", + "_known_field_names": "frozenset({'is_continuation', 'sent_to', 'header_footer_type', 'email_message_id', 'filename', 'languages', 'detection_class_prob', 'sent_from', 'link_texts', 'cc_recipient', 'subject', 'image_mime_type', 'image_path', 'filetype', 'page_number', 'last_modified', 'signature', 'detection_origin', 'text_as_html', 'attached_to_filename', 'bcc_recipient', 'data_source', 'link_start_indexes', 'category_depth', 'emphasized_text_tags', 'parent_id', 'orig_elements', 'page_name', 'coordinates', 'url', 'link_urls', 'file_directory', 'links', 'table_as_cells', 'emphasized_text_contents', 'key_value_pairs', 'image_base64'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "Kreye_Marieke_BA_241_V2.pdf", + "detection_class_prob": 0.3422867953777313, + "parent_id": "e02392183bc6851689602ad4b9f6039f", + "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", + "id": "ce00eae5-7e07-454f-9e4f-f79ac36f92f4", + "processing_timestamp": "2025-05-05T23:15:46.977945", + "chunk_number": 24, + "total_chunks": 56, + "chunking_strategy": "hybrid", + "word_count": 404 + } +} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000025.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000025.json new file mode 100644 index 0000000000000000000000000000000000000000..d99380a4c23614034f2fa6776e75050269bb6b00 --- /dev/null +++ b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000025.json @@ -0,0 +1,1570 @@ +{ + "id": "61a115b2-0ff7-441a-f6d9-eb3d00000025", + "content": "F\u00fcr die Analysen im Projekt CGSC sind 439 Geb\u00e4ude in die Berechnung eingeflossen. In Gromb\u00fchl sind vier Quartiersarchetypen vorzufinden (vgl. Abbildung 9). Die Blockrandbebauung im S\u00fcden und Westen, das neue Innenstadtquartier in der Mitte, eine Zeilen- und Reihenbebauung im Osten und ein Ein- und Zweifamilienquartier im Norden, an welches sich \u00f6stlich und westlich jeweils eine Kleingartenkolonie anschlie\u00dft. Der Gro\u00dfteil des Ein- und Zweifamilienhausquartiers, sowie die Kleingartenkolonien werden in der folgenden Betrachtung nicht weiter ber\u00fccksichtigt, da diese bereits einen hohen Gr\u00fcnanteil aufweisen und eine Erh\u00f6hung des Baumbestands zu keiner\n25\nFallstudien\nsignifikanten \u00c4nderung in der Heiz- und K\u00fchllast f\u00fchren w\u00fcrde. Im Osten des Stadtteils Gromb\u00fchls befindet sich ein Teil des Uniklinikums. Dieses wurde aus der Betrachtung herausgenommen, da der Fokus der Simulation auf Wohngeb\u00e4uden liegt. In folgender Karte in Abbildung 9 sind die im Fallstudiengebiet vorzufindenden Quartiersarchetypen visuell dargestellt. [IMAGE: A \"erastra\u00dfes R = \u2014 - Gebietsgrenze Fallstudiengebiet BES Geb\u00e4ude . Quartiersarchetyp Ein- und Zweifamilienhausquartier Quartiersarchetyp Zeilen- und Reihenbebauung B8 .. Quartiersarchetyp Neues Innenstadtquartier . 0 0,2 0,4 - Quartiersarchetyp Blockrandbebauung H 4 N } I k\u0131r]\n\nAbbildung 9: Quartiersarchetypen im Untersuchungsgebiet Gromb\u00fchl (eigene Darstellung, Datengrundlage: Drees & Sommer)\nDie Fl\u00e4chenbilanz Gromb\u00fchls (vgl. Anhang 3) ist charakteristisch f\u00fcr ein stadtnahes Quartier: Fast die H\u00e4lfte des Quartiers ist versiegelt. Der Stra\u00dfenraum macht mit etwa 9 Hektar knapp die H\u00e4lfte der versiegelten und fast ein Viertel der gesamten Fl\u00e4che des Quartiers aus. Die bebaute Fl\u00e4che entspricht mit 14 Hektar etwas mehr als einem Drittel der Gesamtfl\u00e4che. Auf die Gr\u00fcn- und Freifl\u00e4chen entfallen 16 %. Im Status Quo sind in Gromb\u00fchl 788 B\u00e4ume mit unterschiedlicher Kronenbreite sowie Baumh\u00f6he vorhanden. Durch die Evapotranspiration entziehen die B\u00e4ume der Umgebung im Jahresmittel pro Monat eine Energiemenge von 905 MWh. Die Globalstrahlung auf das Fallstudiengebiet betr\u00e4gt im Jahr etwa 1.200 kWh/m2. Wie viele St\u00e4dte, weist auch der Stadtteil Gromb\u00fchl ein Risiko zur \u00dcberhitzung auf. In dem folgenden Kartenausschnitt in Abbildung 10 sind die Fl\u00e4chen mit zu erwartender moderater und starker \u00dcberw\u00e4rmung bzw. erh\u00f6htem und hohem \u00dcberw\u00e4rmungsrisiko dargestellt. 26\nFallstudien\nIn verdichteten Gebieten, deren Freir\u00e4ume gr\u00f6\u00dftenteils vegetationsfrei sind und die Frischluftzufuhr reduziert ist, wird eine moderate \u00dcberw\u00e4rmung erwartet (gelbe F\u00e4rbung). Eine starke \u00dcberw\u00e4rmung entsteht in Gebieten mit h\u00f6herer Bebauungsdichte, g\u00e4nzlich fehlender Vegetation und stark eingeschr\u00e4nkter Frischluftzufuhr. Besonders betroffen sind die Bl\u00f6cke in der Mitte des Quartiers, in der in vgl. Abbildung 10 dargestellten Karte durch eine rote Einf\u00e4rbung verdeutlicht.", + "embedding": [ + 0.015043738298118114, + 0.00017624230531509966, + 0.0002877972146961838, + -0.03209155052900314, + 0.007792155724018812, + 0.017825709655880928, + -0.02215028926730156, + 0.010864189825952053, + -0.003704899689182639, + -0.016388578340411186, + 0.012756193988025188, + -0.001778285950422287, + -0.005989148281514645, + -0.011009221896529198, + -0.005155216436833143, + 0.003770823124796152, + 0.04216466099023819, + 0.016744565218687057, + 0.014780044555664062, + 0.007244990672916174, + -0.01199148129671812, + 0.02182067185640335, + 0.013632976450026035, + -0.01739061437547207, + -0.0032417871989309788, + 0.02813614159822464, + 0.021583348512649536, + -0.01778615638613701, + -0.01764112338423729, + 0.018049849197268486, + 0.010560941882431507, + -0.014569089747965336, + -0.01753564551472664, + 0.005221139639616013, + -0.009044702164828777, + -0.00437402306124568, + 0.019486980512738228, + -0.007943779230117798, + 0.011411354877054691, + 0.015136031433939934, + 0.013936224393546581, + -0.02001436986029148, + 0.008629383519291878, + -0.011688233353197575, + 0.017588384449481964, + 0.014661382883787155, + 0.02236124500632286, + -0.001116578932851553, + -0.037022627890110016, + 0.021688826382160187, + 0.01401533279567957, + 0.042982108891010284, + -0.010000592097640038, + 0.004261953290551901, + -0.014582274481654167, + 0.0038202658761292696, + -0.00797014869749546, + 0.007469130679965019, + -0.009848968125879765, + -0.005428798962384462, + -0.02040991000831127, + -0.00919632613658905, + -0.027292322367429733, + 0.018023479729890823, + -0.02622436173260212, + -0.0009188085095956922, + -0.024589458480477333, + -0.010778489522635937, + 0.01149046327918768, + -0.02545964904129505, + 0.025406910106539726, + 0.037602756172418594, + 0.006071552634239197, + -0.007858078926801682, + 0.019790230318903923, + -0.007277952507138252, + 0.02381156198680401, + 0.006757156923413277, + 0.006645087152719498, + 0.007264767773449421, + 0.010310432873666286, + -0.026540793478488922, + -0.024760859087109566, + 0.04482796788215637, + 0.016388578340411186, + 0.023903854191303253, + -0.0052804709412157536, + 0.019711121916770935, + -0.006486870814114809, + 0.010897151194512844, + 0.006704417988657951, + 0.025011369958519936, + 0.008444798178970814, + 0.009618235751986504, + -0.01195851992815733, + -0.01828717440366745, + -0.014424057677388191, + 0.016929149627685547, + 0.015281063504517078, + -0.01450316607952118, + -0.022532645612955093, + 0.007442761212587357, + -0.008359097875654697, + -0.005636457819491625, + -0.022268952801823616, + 0.011470685712993145, + 0.007739416789263487, + 0.004822302609682083, + 0.018273988738656044, + -0.00968415942043066, + -0.018194880336523056, + 0.0330408476293087, + -0.01301988773047924, + -0.02564423531293869, + 0.01406807079911232, + -0.017232397571206093, + 0.051736749708652496, + -0.007390022277832031, + 0.006378096994012594, + -0.007521869149059057, + 0.009816006757318974, + -0.007198844105005264, + 0.00013545215188059956, + -0.01789163239300251, + 0.023099588230252266, + 0.009347950108349323, + 0.007858078926801682, + -0.008662345819175243, + -0.02358742244541645, + -0.024233471602201462, + -0.026844041422009468, + 0.014028516598045826, + 0.017983926460146904, + 0.00020807099645026028, + -0.01901233196258545, + 0.01245953794568777, + -0.01597985252737999, + -0.002910521812736988, + -0.03649523854255676, + -0.04464338347315788, + -0.00591663271188736, + 0.017074182629585266, + -0.014898707158863544, + -0.02298092655837536, + 0.004281730391085148, + 0.016467686742544174, + 0.004588274285197258, + 0.02377200685441494, + 0.006262730807065964, + -0.020541757345199585, + -0.008603014051914215, + -0.009598459117114544, + 0.02466856688261032, + -0.0020848300773650408, + 0.00806244183331728, + 0.0042092143557965755, + -0.006414354778826237, + 0.024391688406467438, + -0.05292337015271187, + -0.006961519829928875, + -0.0013761527370661497, + -0.005109069868922234, + 0.007218621205538511, + 0.013006702996790409, + 0.000781605311203748, + 0.0017321394989266992, + 0.004186141304671764, + -0.007811932824552059, + 0.000716505863238126, + -0.015083292499184608, + -0.007073589600622654, + 0.02175474911928177, + -0.03246072307229042, + 0.011734379455447197, + 0.0054914262145757675, + 0.015215139836072922, + -0.0015335449716076255, + -0.0020057219080626965, + -0.018405836075544357, + -0.0147536750882864, + -0.0367853045463562, + -0.010719158686697483, + 0.007258175406605005, + 0.016467686742544174, + -0.02661990188062191, + 0.0003905966295860708, + 0.031722377985715866, + 0.023139141499996185, + -0.010982852429151535, + 0.010165400803089142, + -0.00421251030638814, + 0.0035302024334669113, + 0.008451390080153942, + 0.000986380153335631, + -0.6353968977928162, + 0.007416391745209694, + 0.0007049692212603986, + -0.019183732569217682, + 0.010936705395579338, + 0.0156897883862257, + 0.029454611241817474, + 0.005616680718958378, + -0.019183732569217682, + 0.02499818429350853, + 0.010185178369283676, + -0.01176074892282486, + -0.004769564140588045, + 0.024035701528191566, + -0.014542720280587673, + -0.026488054543733597, + -0.004825599025934935, + 0.007218621205538511, + 0.024444427341222763, + 0.008247028104960918, + -0.0012237046612426639, + 0.009117217734456062, + 0.0020864782854914665, + 0.008214065805077553, + 0.02665945701301098, + 0.022493092343211174, + -0.013659345917403698, + -0.03910581022500992, + -0.00988193042576313, + 0.019183732569217682, + -0.031063145026564598, + 0.012782563455402851, + -0.00809540320187807, + 0.018208066001534462, + 0.04928439483046532, + 0.0060979221016168594, + -0.01789163239300251, + 0.011358615942299366, + 0.027186844497919083, + 0.0096643827855587, + -0.002422688063234091, + -0.007449353579431772, + 0.010554349981248379, + -0.000984732061624527, + 0.006111106835305691, + 0.004990407731384039, + 0.026237545534968376, + -0.006684640888124704, + 0.0009418817353434861, + -0.01583482138812542, + 0.005992444697767496, + -0.0006114402785897255, + -0.002846246352419257, + 0.0032038812059909105, + 0.014727305620908737, + -0.0012912761885672808, + 0.030377540737390518, + -0.006335246842354536, + -0.004786044824868441, + -0.006605532951653004, + -0.003042368683964014, + 0.013843931257724762, + -0.019289210438728333, + -0.03243435174226761, + -0.02464219741523266, + 0.04095166549086571, + -0.03768186271190643, + -0.014437242411077023, + 0.006279211491346359, + -0.011556386016309261, + -0.03256620094180107, + 0.020423095673322678, + -0.017443353310227394, + 0.004344357643276453, + 0.022084366530179977, + 0.019684752449393272, + 0.034570273011922836, + -0.021596532315015793, + -0.009374319575726986, + 0.012525461614131927, + 0.006552794016897678, + -0.0090908482670784, + -0.01681048795580864, + 0.004604755435138941, + 0.01026428584009409, + -0.04693751782178879, + -0.008642568252980709, + -0.0003275572962593287, + -0.014424057677388191, + 0.001502231345511973, + 0.0007956140325404704, + 0.014318580739200115, + -0.006882411427795887, + -0.019711121916770935, + 0.009242472238838673, + 0.048282358795404434, + 0.0009731954196467996, + 0.05068197473883629, + -0.0014544368023052812, + -0.057801708579063416, + -0.020212139934301376, + -0.004522351082414389, + 0.01278915535658598, + 0.005830931942909956, + 0.012795748189091682, + 0.005692492704838514, + -0.02088455855846405, + -0.0055112033151090145, + 0.00809540320187807, + -0.014832783490419388, + -0.00438391137868166, + -0.004275138024240732, + 5.6704495364101604e-05, + -0.011464093811810017, + 0.015716157853603363, + -0.024246657267212868, + 0.02055494114756584, + 0.004278433974832296, + 0.020818635821342468, + 0.008715084753930569, + 0.021583348512649536, + -0.019605644047260284, + 0.005791377741843462, + -0.006206695921719074, + 0.011094922199845314, + 0.01278915535658598, + 0.020291248336434364, + -0.0033340801019221544, + -0.029375502839684486, + -0.018564052879810333, + 0.023218249902129173, + 0.021992074325680733, + 0.039474982768297195, + -0.0001437955943401903, + 0.03198607265949249, + 0.0025001480244100094, + 0.028373466804623604, + -0.025380540639162064, + -0.00014225051563698798, + -0.03765549138188362, + -0.0189068540930748, + -0.005761712323874235, + 0.016428131610155106, + -0.0209900364279747, + 0.0015813395148143172, + 0.004792637191712856, + -0.037101734429597855, + 0.0044003925286233425, + -0.019632013514637947, + 0.00767349312081933, + -0.021649271249771118, + 0.010686196386814117, + -0.0015961723402142525, + 0.00437402306124568, + -0.004311395809054375, + 0.00934135727584362, + -0.011510239914059639, + -0.028689900413155556, + -0.005570534151047468, + -0.007317506708204746, + 0.03301448002457619, + 0.0064440201967954636, + -0.026857227087020874, + 0.004997000098228455, + 0.0016785766929388046, + 0.0008397003402933478, + 0.012090366333723068, + -0.009743490256369114, + -0.015320617705583572, + -0.027107736095786095, + -0.021728379651904106, + -0.017337875440716743, + 0.019816597923636436, + 0.01608533039689064, + -0.009446835145354271, + -0.011628902517259121, + -0.012729824520647526, + 0.004070775117725134, + -0.012472722679376602, + -0.013435205444693565, + 0.007713047321885824, + -0.015399725176393986, + -0.022268952801823616, + -0.006025406066328287, + 0.026699010282754898, + 0.0037213806062936783, + 0.01976386085152626, + 0.0079503720626235, + 0.0006287452415563166, + 0.006292396225035191, + 0.015426094643771648, + 0.03892122581601143, + -0.02491907589137554, + 0.02478722855448723, + -0.015333802439272404, + -0.005811154842376709, + 0.00518488185480237, + 0.02647487074136734, + -0.019750675186514854, + 0.016401762142777443, + 0.028742637485265732, + 0.0174565389752388, + 0.016164438799023628, + -0.005718862172216177, + 0.02106914483010769, + -0.05252783000469208, + 0.015281063504517078, + -0.004153179470449686, + 0.0262902844697237, + 0.01298692636191845, + 0.026817671954631805, + -0.0011503647547215223, + -0.03744453936815262, + 0.006335246842354536, + 0.00044415946467779577, + 0.035334985703229904, + -0.0251432154327631, + 0.003296174108982086, + 0.017113735899329185, + -0.01460864394903183, + 0.0007045572274364531, + 0.018840931355953217, + 0.028373466804623604, + 0.018194880336523056, + -0.016823673620820045, + 0.013309950940310955, + -0.013843931257724762, + 0.005122254602611065, + -0.018168510869145393, + -0.012729824520647526, + -0.02362697571516037, + 0.03501855209469795, + 0.00045981627772562206, + 0.0010786729399114847, + 0.007086774334311485, + 0.032197028398513794, + 0.014674567617475986, + -0.017720231786370277, + 0.015623865649104118, + 0.010389541275799274, + 0.020607680082321167, + 0.012380429543554783, + -0.013033072464168072, + -0.0036785302218049765, + 0.030641235411167145, + -0.010969667695462704, + 0.03375282138586044, + 0.026395762339234352, + -0.000610204238910228, + 0.02398296259343624, + -0.01197829656302929, + 0.010073107667267323, + -0.00334561662748456, + -0.006239657755941153, + 0.02092411369085312, + -0.007390022277832031, + 0.032513462007045746, + -4.7305249609053135e-05, + 0.031801488250494, + 0.024141179397702217, + -0.012472722679376602, + 0.006707714404910803, + 0.006631902419030666, + 0.008194289170205593, + 0.0015978204319253564, + 0.02088455855846405, + 0.004337765276432037, + -0.02683085761964321, + -0.007350468076765537, + -0.0013242379063740373, + 0.00818769633769989, + -0.00911062490195036, + -0.012129920534789562, + -0.00829317420721054, + -0.017430169507861137, + -0.011767341755330563, + -0.00953912828117609, + 0.01485915295779705, + 0.009670974686741829, + 0.006226473022252321, + 0.003348912810906768, + -0.02381156198680401, + -0.021517423912882805, + 0.030324801802635193, + 0.0006023758323863149, + -0.007390022277832031, + -0.016889596357941628, + -0.0005203834734857082, + -0.012380429543554783, + 0.02524869330227375, + 0.0002958316181320697, + -0.01311218086630106, + -0.003189048497006297, + 2.3871511075412855e-05, + 0.0012896280968561769, + -0.025050923228263855, + 0.01047524157911539, + -0.015004185028374195, + 0.00014956390077713877, + 0.005221139639616013, + -0.0066747525706887245, + 0.006823080591857433, + -0.0018804672872647643, + -0.012037628330290318, + 0.03715447336435318, + 0.004172956570982933, + -0.01176074892282486, + 0.010251101106405258, + -0.004519054666161537, + -0.028769006952643394, + -0.02211073599755764, + 0.0064308359287679195, + -0.017258767038583755, + 0.02001436986029148, + -0.016691826283931732, + 0.0027786747086793184, + 0.008207473903894424, + -0.01774660125374794, + 0.04762312397360802, + -0.007587792817503214, + 0.0023040256928652525, + -0.02001436986029148, + -0.01741698384284973, + 0.009545720182359219, + 0.035440463572740555, + 0.022229397669434547, + 0.010251101106405258, + 0.003994963131844997, + 0.014041701331734657, + 0.014120809733867645, + 0.010567533783614635, + -0.03992326185107231, + -0.011813487857580185, + 0.015162400901317596, + 0.008128365501761436, + -0.017337875440716743, + 0.004136698320508003, + -0.004657493904232979, + 0.010442279279232025, + -0.0060781450010836124, + 0.0042289914563298225, + -0.018379466608166695, + -0.0005521091516129673, + 0.017074182629585266, + -0.006948335096240044, + 0.0008438205695711076, + -0.00632865447551012, + 0.0467529334127903, + 0.01049501821398735, + 0.009835783392190933, + 0.026382578536868095, + -0.0022545831743627787, + 0.001906836754642427, + -0.01828717440366745, + -0.0076537164859473705, + 0.017232397571206093, + 0.0053727636113762856, + 0.02011984772980213, + -0.014977815560996532, + -0.010864189825952053, + 0.01484596822410822, + -0.03570415824651718, + 0.03019295446574688, + -0.01358023751527071, + 0.004954149480909109, + 0.004687159787863493, + 0.007508684415370226, + -0.0024985000491142273, + 0.009255656972527504, + -0.013540683314204216, + -0.012591385282576084, + 0.017904818058013916, + -0.005273878574371338, + -0.011925557628273964, + 0.020910928025841713, + -0.023534683510661125, + 0.006434131879359484, + -0.013033072464168072, + -0.013435205444693565, + -0.038472943007946014, + 0.0027556016575545073, + -0.01926284097135067, + 0.0030769784934818745, + -0.02416754886507988, + -0.03752364590764046, + -0.02942824177443981, + 0.009822598658502102, + -0.017324691638350487, + -0.006302285008132458, + -0.014766859821975231, + -0.012485907413065434, + -0.008490944281220436, + -0.017509276047348976, + -0.016256731003522873, + 0.007409799378365278, + -0.025591496378183365, + -0.021398762241005898, + -0.0004775332345161587, + 0.014555905014276505, + 0.02261175401508808, + 0.021491054445505142, + 0.0009542424231767654, + -0.015782082453370094, + -0.020067108795046806, + -0.014714120887219906, + -0.01774660125374794, + 0.003622495336458087, + -0.02040991000831127, + -0.022822709754109383, + 0.010422502644360065, + -0.0051881782710552216, + -0.01857723668217659, + -0.005148624069988728, + 0.026896780356764793, + 0.008306358940899372, + -0.00010542607196839526, + 0.009440242312848568, + 0.0012319451197981834, + -0.03351549804210663, + 0.013764822855591774, + 0.001222880557179451, + 0.0057748970575630665, + 0.012261767871677876, + -0.03227613866329193, + 0.01062027271836996, + -0.006829672958701849, + -0.006008925382047892, + -0.01232109870761633, + -0.000653054506983608, + -0.006453908979892731, + -0.013553868047893047, + 0.015505203045904636, + -0.006592348217964172, + 0.008926039561629295, + 0.013323135673999786, + -0.023112772032618523, + 0.007607569918036461, + 0.007073589600622654, + -0.012340876273810863, + -0.006631902419030666, + -0.011002629064023495, + 0.012815524823963642, + 0.019434243440628052, + -0.005919928662478924, + 0.01046205684542656, + -0.03364734724164009, + 0.03942224383354187, + 0.02315232716500759, + -0.0052606938406825066, + 0.028584422543644905, + -0.0016802247846499085, + 0.02027806267142296, + -0.02979741431772709, + -0.010936705395579338, + -0.010422502644360065, + 0.02795155718922615, + 0.01893322356045246, + -0.002081533893942833, + 0.000631629372946918, + -0.009051294066011906, + 0.0007226861780509353, + -0.006246250122785568, + -0.015702974051237106, + 0.004851968493312597, + -0.03786644712090492, + 0.014318580739200115, + 0.003474167548120022, + 0.004927780479192734, + -0.01612488366663456, + -0.02755601517856121, + -0.004057590384036303, + -0.0015376652590930462, + 0.0027523054741322994, + 0.018049849197268486, + -0.027529645711183548, + -0.01253205444663763, + -0.008866708725690842, + 0.004136698320508003, + -0.011061959899961948, + -0.02157016284763813, + 0.005600200034677982, + -0.025776080787181854, + 0.012624346651136875, + 0.009189733304083347, + 0.033858299255371094, + 0.027397798374295235, + 0.028188880532979965, + 0.012241990305483341, + -0.013540683314204216, + 0.004271841607987881, + -0.02499818429350853, + -0.011668456718325615, + -0.034860339015722275, + 0.03480760008096695, + 0.0010902095818892121, + 0.011437724344432354, + 0.014120809733867645, + 0.018801378086209297, + 0.005191474221646786, + 0.027925187721848488, + -0.010317024774849415, + -0.0083129508420825, + -0.002079885918647051, + -0.017219213768839836, + -0.04192733392119408, + 0.017983926460146904, + -0.014437242411077023, + -0.005072812084108591, + -0.03058849647641182, + -0.0012302970280870795, + 0.0181816965341568, + -0.0063517275266349316, + -0.01485915295779705, + -0.012861671857535839, + 0.006440724246203899, + -0.022348061203956604, + 0.041347209364175797, + 0.010567533783614635, + 0.013184696435928345, + -0.020752713084220886, + -0.006770341657102108, + -0.020251693204045296, + -0.02560468018054962, + 0.029454611241817474, + -0.0013679122785106301, + -0.00020982208661735058, + -0.014964630827307701, + -0.02059449627995491, + 0.02175474911928177, + -0.008912854827940464, + -0.006269323173910379, + -0.025301432237029076, + 0.014595459215342999, + -0.012255175039172173, + -0.013936224393546581, + -0.018023479729890823, + 0.007324099075049162, + -0.035334985703229904, + 0.016718195751309395, + 0.0026039774529635906, + 0.003708195872604847, + 0.04285026341676712, + -0.004453131463378668, + 0.019816597923636436, + 0.0121035510674119, + -0.005910040345042944, + 0.03253982961177826, + 0.0108048589900136, + 0.023389652371406555, + 0.004677271004766226, + -0.020251693204045296, + -0.010033554397523403, + -0.043852299451828, + 0.008609606884419918, + -0.03243435174226761, + 0.017548831179738045, + -0.004581681918352842, + 0.0030555534176528454, + -0.003619199153035879, + 0.00992148369550705, + 0.019605644047260284, + -0.0015665068058297038, + 0.003536794800311327, + 0.04757038503885269, + 0.02892722375690937, + -0.007989926263689995, + -0.026316653937101364, + 0.011483870446681976, + -0.01358023751527071, + -0.013936224393546581, + 0.00018128957890439779, + -0.01608533039689064, + -0.00484207971021533, + -0.0007890216656960547, + -0.0059660752303898335, + 0.04641013219952583, + -0.01130587700754404, + 0.028795376420021057, + 0.007739416789263487, + -0.01278915535658598, + 0.01116084586828947, + -0.016256731003522873, + -0.00885352399200201, + 0.03330454230308533, + -0.0008446446154266596, + 0.04503892362117767, + -0.010501611046493053, + -0.02520914003252983, + 0.020897744223475456, + 0.0023979665711522102, + -0.012387022376060486, + -0.001822784310206771, + 0.005962778814136982, + 0.020897744223475456, + 0.00402133259922266, + -0.0023930224124342203, + -0.001005333149805665, + 0.02113506756722927, + 0.018854115158319473, + 0.006285803858190775, + -0.004354245960712433, + -0.008075626567006111, + -0.014621828682720661, + -0.008919446729123592, + 0.0023402837105095387, + 0.011668456718325615, + 0.006704417988657951, + 0.000315402663545683, + -0.016032591462135315, + -0.005448575597256422, + -0.010653235018253326, + -0.005099181551486254, + 0.014766859821975231, + -0.022743601351976395, + -0.006790118757635355, + 0.005659530870616436, + 0.005590311251580715, + 0.030720341950654984, + -0.0181816965341568, + -0.028188880532979965, + -0.013791192322969437, + 0.0113783935084939, + -0.02979741431772709, + 0.01597985252737999, + 0.051446687430143356, + 0.013204473070800304, + -0.007212028838694096, + 0.005619976669549942, + -0.0016035886947065592, + -0.027186844497919083, + 0.02626391500234604, + -0.017614753916859627, + -0.016784118488430977, + -0.009822598658502102, + -0.021978888660669327, + 0.014028516598045826, + -0.016902780160307884, + -0.01048183348029852, + 0.016322653740644455, + 0.01572934351861477, + 0.010857597924768925, + -0.002421039855107665, + -0.022229397669434547, + 0.027687862515449524, + 0.02499818429350853, + 0.0021079033613204956, + 0.021491054445505142, + -0.02979741431772709, + 0.021543793380260468, + 0.018735453486442566, + 0.008345913141965866, + -0.004044405650347471, + -0.03960682824254036, + -0.008055849932134151, + 0.015162400901317596, + 0.016797304153442383, + -0.013527498580515385, + 0.014107625000178814, + -0.026395762339234352, + -0.021477870643138885, + -0.01764112338423729, + 0.0130396643653512, + 0.008820561692118645, + 0.006882411427795887, + 0.02395659312605858, + 0.0130396643653512, + -0.038288358598947525, + 0.03918491676449776, + -0.010086292400956154, + -0.019935261458158493, + -8.647306822240353e-05, + -0.0017914706841111183, + -0.03174874931573868, + -0.0138175617903471, + -0.014292211271822453, + 0.034939445555210114, + 0.0038004887755960226, + -0.05400451645255089, + 0.011562978848814964, + 0.01311218086630106, + -0.04253382980823517, + -0.025802450254559517, + -0.009427057579159737, + 0.00806244183331728, + 0.008991963230073452, + 0.01691596582531929, + -0.018115773797035217, + 0.03762912377715111, + -0.0066351983696222305, + 0.021491054445505142, + -0.02900633215904236, + 0.003381874645128846, + 0.0010613680351525545, + -0.02524869330227375, + 0.039738673716783524, + -0.011562978848814964, + -0.01764112338423729, + -0.007798748090863228, + 0.019895706325769424, + -0.005847413092851639, + -0.014661382883787155, + 0.0172455832362175, + -0.007324099075049162, + 0.01460864394903183, + -0.0018672826699912548, + 0.01543927937746048, + 0.005079404450953007, + 0.01534698624163866, + 0.01601940579712391, + -0.031142253428697586, + -0.005385948345065117, + 0.009802822023630142, + 0.007086774334311485, + -0.0123145068064332, + -0.0028182289097458124, + -0.006516536232084036, + -0.0012467778287827969, + -0.021306470036506653, + 0.01367253065109253, + -0.029955631121993065, + -0.016507240012288094, + 0.002335339318960905, + 0.027529645711183548, + 0.018023479729890823, + -0.0059067439287900925, + 0.0031379577703773975, + 0.01073234248906374, + -0.0008982074214145541, + -0.018010295927524567, + -0.006028702482581139, + -0.031247731298208237, + 0.0038499312940984964, + -0.007568015716969967, + -0.030641235411167145, + 0.021266914904117584, + -0.02911181002855301, + 0.015426094643771648, + 0.003126421244814992, + 0.015478833578526974, + -0.014595459215342999, + -0.013778007589280605, + 0.003235194832086563, + 0.031142253428697586, + 0.02221621386706829, + 0.008247028104960918, + 0.003955408930778503, + 0.0016143012326210737, + 0.0009797877864912152, + -0.006193511188030243, + 0.0015459057176485658, + 0.005369467660784721, + -0.02574971131980419, + -0.011206991970539093, + 0.002658364363014698, + -0.012881448492407799, + -0.009947853162884712, + -0.00912380963563919, + -0.01648087054491043, + -0.02766149304807186, + -0.005046442616730928, + 0.1745653748512268, + -0.004205918405205011, + -0.003922447096556425, + 0.01785207912325859, + -0.009816006757318974, + -0.016968704760074615, + 0.02755601517856121, + 0.007086774334311485, + -0.012604570016264915, + 0.029850153252482414, + -0.02539372630417347, + 0.0007783091277815402, + 0.008332728408277035, + 0.011028998531401157, + 0.014186733402311802, + -0.0021293284371495247, + -0.02942824177443981, + -0.00432787649333477, + 0.011088329367339611, + 0.02023850940167904, + 0.013791192322969437, + -0.029190918430685997, + -0.00863597635179758, + -0.0077460091561079025, + 0.022572200745344162, + -0.005788081791251898, + -0.019486980512738228, + 0.0017898225924000144, + 0.02932276576757431, + 0.019632013514637947, + -0.0012146402150392532, + 0.009334765374660492, + 0.013422020711004734, + -0.01626991480588913, + 0.0052804709412157536, + 0.004179548937827349, + 0.020607680082321167, + -0.01760157011449337, + 0.031142253428697586, + 0.02182067185640335, + 0.010112661868333817, + -0.009848968125879765, + -0.003935631830245256, + -0.012525461614131927, + -0.01583482138812542, + 0.014727305620908737, + -0.01046205684542656, + 0.014199918136000633, + -0.020330801606178284, + -0.020251693204045296, + -0.012637531384825706, + -0.0038433389272540808, + 0.00551779568195343, + 0.037998296320438385, + -0.003454390447586775, + -0.013375874608755112, + 0.013896670192480087, + -0.029190918430685997, + 0.0005010184831917286, + 0.014740490354597569, + -0.031010406091809273, + 0.0253541711717844, + -0.017575200647115707, + 0.017074182629585266, + 0.0030061108991503716, + -0.00209636683575809, + -0.01994844526052475, + 0.002505092415958643, + 0.02215028926730156, + -0.008906262926757336, + 0.008207473903894424, + -0.019829783588647842, + -0.02969193644821644, + 0.014002148061990738, + -0.006335246842354536, + -0.03341002017259598, + 0.02279634028673172, + 0.008695307187736034, + 0.02402251772582531, + 0.022308506071567535, + -0.0007589440792798996, + 0.009855560958385468, + 0.010765304788947105, + -0.01626991480588913, + -0.0005772425211034715, + -0.04656834900379181, + 0.017614753916859627, + 0.001498111174441874, + -0.01383074652403593, + -0.021359208971261978, + -0.01824761927127838, + 0.022704048082232475, + 0.009862152859568596, + 0.005029961932450533, + 0.05128847062587738, + 0.0033340801019221544, + 0.00979622919112444, + 0.0060781450010836124, + -0.03151142597198486, + -0.006720899138599634, + -0.0075548309832811356, + 0.02163608744740486, + 0.03509766235947609, + -0.01832672767341137, + -0.019961630925536156, + 0.014635013416409492, + 0.0009113921551033854, + 0.011727787554264069, + -0.0004907179391011596, + -0.00791741069406271, + -0.00878100749105215, + -0.018801378086209297, + -0.0041894372552633286, + -0.0007296905387192965, + 0.022519461810588837, + 0.02121417596936226, + 0.020317617803812027, + -0.021583348512649536, + -0.0047827488742768764, + -0.008464574813842773, + -0.027503276243805885, + -0.0037510462570935488, + 0.0015475536929443479, + 0.0043212841264903545, + -0.0034247247967869043, + -0.015426094643771648, + -0.031616903841495514, + 0.008893078193068504, + -0.007508684415370226, + -0.011279507540166378, + 0.019130995497107506, + -0.04382593184709549, + 0.016256731003522873, + -0.012795748189091682, + 0.0033983555622398853, + 0.028663530945777893, + -0.0010457112221047282, + -0.03301448002457619, + -0.017403800040483475, + 0.0008219834417104721, + 0.028558053076267242, + -0.013843931257724762, + 0.01741698384284973, + -0.029665566980838776, + 0.006935150362551212, + -0.002121088095009327, + 0.006364912260323763, + 0.005959482863545418, + -0.022994110360741615, + -0.0278460793197155, + 0.018946409225463867, + 0.009084255434572697, + -0.006308877374976873, + -0.007891041226685047, + 0.02109551429748535, + -0.02824161946773529, + -0.018999148160219193, + -0.04778134077787399, + -0.0007754249381832778, + 0.01793118752539158, + -0.003747750073671341, + -0.007330691441893578, + 0.0056430501863360405, + -0.024141179397702217, + -0.011701418086886406, + 0.004014740232378244, + -0.16633813083171844, + 0.02221621386706829, + 0.021042775362730026, + -0.036732565611600876, + 0.0147536750882864, + -0.0063715046271681786, + -0.0037642307579517365, + 0.005587015300989151, + -0.016111699864268303, + 0.012096959166228771, + 0.030245693400502205, + -0.011384985409677029, + -0.012980333529412746, + 0.007864671759307384, + -0.013896670192480087, + -0.0041696601547300816, + -0.028373466804623604, + 0.02246672287583351, + 0.04216466099023819, + 0.03206518292427063, + 0.008082219399511814, + -0.044089626520872116, + 0.015188770368695259, + 0.02157016284763813, + 0.012538646347820759, + -0.012617754749953747, + -0.014542720280587673, + 0.02726595290005207, + 0.002549590775743127, + -0.018194880336523056, + -0.012808932922780514, + -0.0075020925141870975, + 0.04002873972058296, + -0.023653345182538033, + -0.005049738567322493, + -0.007198844105005264, + -0.0026468278374522924, + -0.002783619100227952, + -0.017944371327757835, + 0.0032203621231019497, + 0.022519461810588837, + -0.00041140374378301203, + 0.0017667493084445596, + 0.022493092343211174, + -0.027819709852337837, + 0.007693270221352577, + 0.025907928124070168, + -0.011951927095651627, + -0.00921610277146101, + 0.009763267822563648, + -0.0010292304214090109, + -0.011068552732467651, + -7.303086022147909e-05, + 0.024589458480477333, + 0.003368689911440015, + 0.03246072307229042, + 0.004281730391085148, + 0.016836857423186302, + -0.012063996866345406, + -0.0014915188075974584, + -0.012419983744621277, + -0.015360170975327492, + 0.026488054543733597, + 0.006130883935838938, + 0.015637049451470375, + -0.030957667157053947, + -0.005151920020580292, + 0.0021969000808894634, + -0.006226473022252321, + -0.01311218086630106, + -0.016362208873033524, + -0.004377319011837244, + 0.033963777124881744, + 0.00226776790805161, + 0.009802822023630142, + 0.024404874071478844, + -0.0013893373543396592, + 0.005217843689024448, + 0.006064960267394781, + -0.01485915295779705, + 0.0027770267333835363, + 0.05136757716536522, + -0.034570273011922836, + -0.024879522621631622, + -0.011787118390202522, + -0.004766267724335194, + -0.015056923031806946, + 0.017403800040483475, + 0.016362208873033524, + 0.004861856810748577, + 0.004163067787885666, + -0.029560089111328125, + -0.01334291324019432, + -0.013085811398923397, + 0.01367253065109253, + -0.001629134058021009, + 0.012927594594657421, + -0.006915373262017965, + -0.019210102036595345, + -0.027872448787093163, + 0.0009196325554512441, + -0.012512276880443096, + -0.03960682824254036, + -0.006233065389096737, + 0.028162511065602303, + 0.007930594496428967, + -0.017944371327757835, + 0.020330801606178284, + 0.03130047023296356, + -0.0004260305140633136, + -0.005613384302705526, + -0.02543327957391739, + 0.018339913338422775, + -0.005949594080448151, + 0.0025446463841944933, + -0.0010654883226379752, + 0.013738453388214111, + -0.015623865649104118, + 0.021767934784293175, + -0.013936224393546581, + 0.027107736095786095, + 0.011009221896529198, + -0.028848115354776382, + 0.004575089551508427, + 0.00261551421135664, + -0.017034627497196198, + -0.07974104583263397, + 0.02969193644821644, + 0.01886730082333088, + 0.02200525812804699, + -0.004041109699755907, + 0.013606606982648373, + -0.021306470036506653, + 0.012650716118514538, + 0.005217843689024448, + 0.036706194281578064, + -0.02647487074136734, + -0.026066144928336143, + -0.007040627766400576, + -0.003998259082436562, + 0.018524497747421265, + -0.007113143801689148, + -0.01013243943452835, + -0.018814561888575554, + -0.01265730895102024, + 0.010468648746609688, + 0.004143290687352419, + -0.005362875293940306, + -0.0013984019169583917, + -0.0029665566980838776, + -0.0003248791617807001, + -0.017548831179738045, + -0.0234819445759058, + 0.01994844526052475, + 0.020831819623708725, + 0.010204955004155636, + 0.03728632256388664, + -0.017219213768839836, + 0.020976852625608444, + -0.0035236100666224957, + 0.016243545338511467, + -0.021161437034606934, + -0.0020667011849582195, + -0.023930223658680916, + 0.030562127009034157, + -0.01936831884086132, + 0.0027457131072878838, + 0.022519461810588837, + 0.028452575206756592, + -0.02153060957789421, + 0.005626569036394358, + 0.0027308801654726267, + -0.021055961027741432, + -0.0013110532891005278, + 0.018379466608166695, + -0.013527498580515385, + -0.014674567617475986, + -0.022282136604189873, + -0.005685900337994099, + 0.01727195270359516, + 0.01300011109560728, + 0.0024572978727519512, + -0.008240435272455215, + -0.016217175871133804, + -0.005445279646664858, + 0.004809117875993252, + -0.02460264414548874, + 0.015281063504517078, + -0.025077292695641518, + 0.00979622919112444, + 0.01658634841442108, + 0.017588384449481964, + -0.014529535546898842, + -0.008115180768072605, + -0.0019150772131979465, + -0.03256620094180107, + -0.027687862515449524, + 0.016151253134012222, + -0.005194770637899637, + -0.002633643103763461, + -0.021807488054037094, + -0.023455575108528137, + -0.017680678516626358, + -0.003909262362867594, + 0.007007666397839785, + -0.012611161917448044, + -0.035334985703229904, + -0.027213213965296745, + 0.016678640618920326, + -0.013033072464168072, + 0.030957667157053947, + 0.03335728123784065, + 0.011015813797712326, + -0.03831472620368004, + 0.004759675357490778, + -0.025921113789081573, + 0.024510350078344345, + 0.015320617705583572, + -0.010343394242227077, + -0.03040391020476818, + -0.005761712323874235, + 0.0250377394258976, + 0.00397518603131175, + 0.001267378916963935, + -0.004466315731406212, + 0.012123328633606434, + -0.052791524678468704, + -0.017285136505961418, + -0.057907186448574066, + 0.018128957599401474, + 0.025868374854326248, + -0.003929039463400841, + -0.010870782658457756, + -0.003962001297622919, + 0.0077855633571743965, + 0.006595644634217024, + -0.006575867533683777, + 0.006325358059257269, + -0.0021441613789647818, + 0.018023479729890823, + 0.014529535546898842, + -0.02491907589137554, + -0.03567778691649437, + -0.03048301860690117, + -0.010099477134644985, + 0.01594029739499092, + 0.014397688210010529, + 0.03058849647641182, + -0.0045915707014501095, + 0.01230132207274437, + -0.0026188103947788477, + -0.0034247247967869043, + -0.033779192715883255, + -0.011714602820575237, + -0.024431241676211357, + 0.01612488366663456, + -0.007877856492996216, + -0.03625791519880295, + -0.0036488648038357496, + -0.013369281776249409, + -0.004713528789579868, + 0.012637531384825706, + -0.002940187230706215, + -0.01597985252737999, + -0.005010184831917286, + 0.03127409890294075, + 0.025261878967285156, + 0.05479559674859047, + -0.03541409596800804, + -0.02391703985631466, + 0.01426584180444479, + -0.020040739327669144, + 0.014120809733867645, + 0.003929039463400841, + 0.017733417451381683, + -0.003487352281808853, + 0.016889596357941628, + -0.021978888660669327, + 0.03195970505475998, + 0.006022110115736723, + 0.015399725176393986, + -0.021662456914782524, + 0.0006761277327314019, + -0.021728379651904106, + 0.0025644234847277403, + 0.015716157853603363, + 0.00033456168603152037, + -0.023495128378272057, + 0.052791524678468704, + 0.013270396739244461, + 0.00911062490195036, + -0.004921188112348318, + 0.015993036329746246, + -0.030720341950654984, + -0.021372392773628235, + -0.0038697083946317434, + 0.017192844301462173, + -0.04203281179070473, + -0.016217175871133804, + -0.016889596357941628, + 0.010600496083498001, + 0.0415581651031971, + -0.023363282904028893, + 0.00027069830684922636, + 0.024536719545722008, + -0.0009385855519212782, + 0.009051294066011906, + 0.02687041088938713, + 0.007713047321885824, + 0.022769970819354057, + -0.003536794800311327, + 0.009380911476910114, + 0.014213102869689465, + -0.003998259082436562, + -0.012907817959785461, + -0.007001074030995369, + -0.001735435682348907, + 0.017970740795135498, + 0.01770704798400402, + 0.029982000589370728, + -0.016639087349176407, + -0.007396614644676447, + 0.010323617607355118, + 0.005830931942909956, + -0.0023205066099762917, + -0.0038037849590182304, + 0.0297183059155941, + 0.03918491676449776, + -0.005072812084108591, + 0.015782082453370094, + -0.009591866284608841, + -0.00809540320187807, + -0.010198363102972507, + 0.014437242411077023, + 0.006757156923413277, + -0.03108951449394226, + -0.01998800039291382, + 0.013033072464168072, + 0.00977645255625248, + 0.014041701331734657, + 0.00565293850377202, + -0.009829191491007805, + -0.014331765472888947, + 0.0202648788690567, + -0.01843220554292202, + -0.024932261556386948, + -0.023508314043283463, + 0.015254694037139416, + 0.0010523035889491439, + 0.010791674256324768, + -0.004772860091179609, + 0.02557831071317196, + 0.013402244076132774, + -0.013356097973883152, + -0.007989926263689995, + -0.0063385427929461, + -0.007442761212587357, + -0.012116735801100731, + 0.0209900364279747, + -0.01990889199078083, + -0.024233471602201462, + -0.025960667058825493, + -0.011121291667222977, + -0.006163845770061016, + 0.0032318986486643553, + 0.0078053404577076435, + 0.01163549441844225, + 0.09877974539995193, + 0.03443842753767967, + -0.004904706962406635, + -0.002719343639910221, + -0.023350097239017487, + 0.028663530945777893, + 0.008734861388802528, + 0.00019056006567552686, + 0.014529535546898842, + -0.07873900979757309, + 0.011951927095651627, + -0.020713157951831818, + 0.00934135727584362, + -0.04833509773015976, + -0.026237545534968376, + 0.004861856810748577, + -0.006312173325568438, + 0.0019101329380646348, + -0.008926039561629295, + 0.02892722375690937, + 0.011859634891152382, + -0.030904928222298622, + 0.031432315707206726, + 0.019065070897340775, + -0.02298092655837536, + -0.014226287603378296, + 0.014437242411077023, + -0.009644605219364166, + -0.019922075793147087, + 0.019539719447493553, + -0.02435213513672352, + -0.011259730905294418, + -0.06703099608421326, + -0.029454611241817474, + 0.000878430379088968, + -0.0032862855587154627, + 0.0018392651109024882, + -0.022479906678199768, + 0.020370356738567352, + -0.007409799378365278, + -0.0059067439287900925, + 0.015623865649104118, + -0.006776934023946524, + -0.013857115991413593, + 0.01367253065109253, + -0.007403207011520863, + -0.005171697121113539, + -0.024721305817365646, + -0.02269086241722107 + ], + "metadata": { + "source": "Kreye_Marieke_BA_241_V2.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 17, + "has_images": true, + "image_count": 98, + "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", + "links": [], + "last_modified": "2025-05-05T23:00:23", + "_known_field_names": "frozenset({'is_continuation', 'sent_to', 'header_footer_type', 'email_message_id', 'filename', 'languages', 'detection_class_prob', 'sent_from', 'link_texts', 'cc_recipient', 'subject', 'image_mime_type', 'image_path', 'filetype', 'page_number', 'last_modified', 'signature', 'detection_origin', 'text_as_html', 'attached_to_filename', 'bcc_recipient', 'data_source', 'link_start_indexes', 'category_depth', 'emphasized_text_tags', 'parent_id', 'orig_elements', 'page_name', 'coordinates', 'url', 'link_urls', 'file_directory', 'links', 'table_as_cells', 'emphasized_text_contents', 'key_value_pairs', 'image_base64'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "Kreye_Marieke_BA_241_V2.pdf", + "detection_class_prob": 0.3422867953777313, + "parent_id": "e02392183bc6851689602ad4b9f6039f", + "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", + "id": "ce00eae5-7e07-454f-9e4f-f79ac36f92f4", + "processing_timestamp": "2025-05-05T23:15:46.977945", + "chunk_number": 25, + "total_chunks": 56, + "chunking_strategy": "hybrid", + "word_count": 390 + } +} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000026.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000026.json new file mode 100644 index 0000000000000000000000000000000000000000..fd9e7c0c5b68f22319ea63682b48f9ddce8abd4a --- /dev/null +++ b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000026.json @@ -0,0 +1,1570 @@ +{ + "id": "61a115b2-0ff7-441a-f6d9-eb3d00000026", + "content": "Besonders betroffen sind die Bl\u00f6cke in der Mitte des Quartiers, in der in vgl. Abbildung 10 dargestellten Karte durch eine rote Einf\u00e4rbung verdeutlicht. In den Randbereichen ist ein \u00dcberw\u00e4rmungspotential gegeben, da es sich zwar immer noch um dicht bebautes Gebiet handelt, aber die Kaltluftzufuhr aus den umliegenden Freifl\u00e4chen h\u00f6her ist (beige F\u00e4rbung). [IMAGE: Kalt- und Frischluftentstehungsgebiet \u00ae Frischluftentstehungsgebiet Misch- und \u00dcbergangsklimat \u00dcberw\u00e4rmungspotential Moderate \u00dcberw\u00e4rmung \u00a9 Starke \u00dcberw\u00e4rmung = Gebietsgrenze Fallstudiengebiet]\n\nAbbildung 10: \u00dcberhitzungspotentiale in Gromb\u00fchl (Burghardt und Partner Ingenieure 2018, S. 1)\nIn Abbildung 11 ist die Summe des monatlichen K\u00fchl- und Heizbedarfs der 439 Wohngeb\u00e4ude in Gromb\u00fchl dargestellt. Die S\u00e4ulen f\u00fcr den Energiebedarf ohne B\u00e4ume bedeutet, dass in dieser Simulation nur die Verschattung der Geb\u00e4ude untereinander ber\u00fccksichtigt wurde. Der Energiebedarf des Status Quo bilden den aktuellen Ist- Zustand ab. Es wird sowohl die Verschattung der Geb\u00e4ude untereinander als auch die Auswirkung der Baumschatten der 788 Bestandsb\u00e4ume auf den Heiz- und K\u00fchlbedarf ber\u00fccksichtigt. \u00dcber das ganze Jahr gesehen, steigt der Heizbedarf bei der Ber\u00fccksichtigung der B\u00e4ume um etwa 960 MWh an. Der K\u00fchlbedarf reduziert sich um 10 % auf etwa 800 MWh, wenn in der Simulation die Wirkung der Bestandsb\u00e4ume ber\u00fccksichtigt wird. [IMAGE: monatlicher Heiz- und K\u00fchlbedarf Fallstudiengebiet Gromb\u00fchl 8000 7000 6000 5000 4000 3000 2000 1000 | 0 S 008 & & & g SI Ss S ES PS \u00ab Re Heiz- und K\u00fchlbedarf [MWh] RS g RR ER Er er Zr Ss SF wHeizbedarf ohne B\u00e4ume mK\u00fchlbedarf ohne B\u00e4ume mHeizbedarf Status Quo m K\u00fchlbedarf Status Quo]\n\nAbbildung 11: Monatlicher Heiz- und K\u00fchlbedarf im Fallstudiengebiet Gromb\u00fchl mit und ohne des Verschattungseffekts durch B\u00e4ume (eigene Darstellung und Berechnung auf Grundlage der Simulationsergebnisse)\n27\nFallstudien\nDie Zunahme im Heizbedarf bzw. die Abnahme im K\u00fchlbedarf wird durch die Diagramme in Abbildung 12 nochmals verdeutlicht. Unter Ber\u00fccksichtigung des Baumbestands weisen 25 Geb\u00e4ude mehr im Vergleich zu der Simulation ohne B\u00e4ume einen spezifischen Heizbedarf zwischen 100 und 200 kWh/(m2*a) auf. Der positive Effekt der B\u00e4ume auf den K\u00fchlbedarf zeigt sich in der Verringerung des spezifischen K\u00fchlbedarfs. W\u00e4hrend in der Simulation ohne B\u00e4ume etwa 180 Geb\u00e4ude einen spezifischen K\u00fchlbedarf von 20 bis 30 kWh/(m2*a) aufweisen, reduziert sich die Anzahl um 50 H\u00e4user, wenn die B\u00e4ume in der Simulation ber\u00fccksichtigt werden. [IMAGE: spezifischer Heizbedarf Status Quo spezifischer K\u00fchlbedarf Status Quo Gromb\u00fchl Gromb\u00fchl 300 300 ga 250 250 8 200 2 200 3 & B 5 5 150 = 150 z 3 8 100 5 100 \u201c & 50 50 s _- o-- I. = 0-100 100-200 200-300 0-10 10-20 20-30 30-40 40-50 50-60 60-70 spezifischer Heizbedarf [kW/h/(m2*a)] spezifischer K\u00fchlbedarf [kWh/(m2*a)] mohne B\u00e4ume mStatus Quo mohne B\u00e4ume = Status Quo]\n\nAbbildung 12: Spezifischer Heiz- und K\u00fchlbedarf im Fallstudiengebiet Gromb\u00fchl mit und ohne Ber\u00fccksichtigung des Verschattungseffekts durch B\u00e4ume (eigene Darstellung und Berechnung auf Grundlage der Simulationsergebnisse)\nDie Simulation zeigt, dass sich durch den existierenden Baumbestand der Anteil an Geb\u00e4uden mit niedrigeren K\u00fchlbedarfen gegen\u00fcber einem Zustand ohne Baumbestand erh\u00f6ht. Allerdings f\u00fchrt das Fehlen des Baumbestandes zu einem h\u00f6heren Anteil an Geb\u00e4uden mit niedrigerem spezifischem Heizbedarf. Diese Ver\u00e4nderung wirkt sich auf die CO2e-Emissionen des Heiz- und K\u00fchlbedarfs aus. Im Status Quo erh\u00f6hen sich die Emissionen des Heizbedarfs um 3 % auf knapp 7.000 t CO2e, die des K\u00fchlbedarfs sinken hingegen um 10,7 % auf 736 t CO2e. 28\nFallstudien\n\n## 5.2.2 Analyse Grafenb\u00fchl\n\nGrafenb\u00fchl ist ein Stadtteil im Osten der Stadt Asperg. Er wird begrenzet durch die S- Bahn-Gleise im Westen, der Autobahn A 81 im Osten, landwirtschaftliche Felder im Norden und der Eglosheimer Stra\u00dfe im S\u00fcden. Das Fallstudiengebiet befindet sich in peripherer Lage und weist eine Gr\u00f6\u00dfe von 23 Hektar auf. [IMAGE: Ss Grafenb\u00fchl 1 1 x x \u0131 x \u0131 \\ 1 S \u0131 S \u0131 Asperg el = - - Gebietsgrenze Fallstudiengebiet 0 0,4 0,8 Hd 41 km]\n\nAbbildung 13: Lage des Fallstudiengebiets Grafenb\u00fchl (eigene Darstellung)\nIn Grafenb\u00fchl sind zwei Quartiersarchetypen vertreten: Im Norden und S\u00fcden des Fallstudiengebiets befinden sich je ein Ein- und Zweifamilienhausquartier, w\u00e4hrend im Osten und Westen jeweils ein kleines Gebiet an Zeilen- und Reihenbebauung vorzufinden ist. [IMAGE: El \\ 3 9, & An Amse eg [e) 2 S = % \u201c \u2018\u00a9 a 3 DR = S MeisdNwec \u00a9 \u00a9 E3 Er & 8 \u00b0 ao > Hirschberg \u201anstra\u00dfe au) = Bahnhofstra\u00dfe 5 > 5 \u00ae \u00bb \u00ae = > \u00a9 = tra\u00dfe De 5 Sees! \u00a9 5 \u00a9 -- - - Gebietsgrenze Fallstudiengebiet | Quartiersarchetyp Ein- und Zweifamilienhausquartier B 11138 | Quartiersarchetyp Zeilen- und Reihenbebauung 81 \" 0 0,2 0,4 BEE Geb\u00e4ude t + + + Ikm]\n\nAbbildung 14: Quartiersarchetypen im Untersuchungsgebiet Grafenb\u00fchl (eigene Darstellung, Datengrundlage Drees & Sommer)\n29\nFallstudien\nIm Vergleich zu Gromb\u00fchl ist das Quartier weniger dicht bebaut.", + "embedding": [ + 0.012038755230605602, + -0.008929881267249584, + 0.024623839184641838, + -0.03873734548687935, + 0.003258463693782687, + 0.022295435890555382, + -0.03990805149078369, + -0.005255166906863451, + -0.017677653580904007, + -0.023049890995025635, + 0.009339628741145134, + -0.00046421727165579796, + 0.00037356888060458004, + -0.005768976639956236, + -0.00451046833768487, + 0.009339628741145134, + 0.04240555688738823, + 0.01086154580116272, + 0.014529756270349026, + -0.005362481810152531, + -0.014568779617547989, + 0.024233603850007057, + 0.0130013357847929, + -0.001353628234937787, + -0.00593482656404376, + 0.020994652062654495, + 0.024285634979605675, + -0.017937811091542244, + -0.025729505345225334, + 0.0067900922149419785, + 0.012604596093297005, + -0.009541249834001064, + -0.03478296101093292, + 0.001710530836135149, + -0.009489218704402447, + 0.0022649900056421757, + 0.004484452772885561, + -0.009957500733435154, + 0.016051674261689186, + -0.008012829348444939, + 0.008637205697596073, + -0.01320946030318737, + -0.003889343934133649, + -0.013150925748050213, + 0.020526370033621788, + 0.02887740358710289, + 0.02419458143413067, + 0.003645446849986911, + -0.03829507902264595, + 0.02926763892173767, + 0.0167671050876379, + 0.043550245463848114, + -0.01545331347733736, + -0.005375489592552185, + -0.020513363182544708, + -0.007889254949986935, + -0.008793299086391926, + 0.007518531288951635, + -0.005983605980873108, + 8.704073843546212e-05, + -0.02435067482292652, + -0.009664824232459068, + -0.006861635018140078, + 0.012715162709355354, + -0.030568422749638557, + -0.0055120717734098434, + -0.016702065244317055, + -0.0017885778797790408, + 0.01547932904213667, + -0.02481895685195923, + 0.02783677540719509, + 0.039205629378557205, + 0.013801317662000656, + -0.013528152368962765, + 0.01962883025407791, + -0.0004918589256703854, + 0.01864023320376873, + 0.0052649229764938354, + 0.009703848510980606, + 0.011856645345687866, + 0.019368672743439674, + -0.022659655660390854, + -0.03356022387742996, + 0.044330716133117676, + 0.01801585778594017, + 0.015648430213332176, + -0.009977012872695923, + 0.026340873911976814, + -0.010913576930761337, + 0.017469527199864388, + 0.00753153907135129, + 0.027706697583198547, + 0.01925160177052021, + 0.007212847005575895, + -0.02129383198916912, + -0.0052324035204946995, + -0.006894154939800501, + 0.010881057940423489, + 0.010763986967504025, + -0.01798984222114086, + -0.01926461048424244, + 0.0070047215558588505, + -0.009489218704402447, + -0.007824215106666088, + -0.031452953815460205, + 0.00932662095874548, + 0.003817800898104906, + 0.012051763013005257, + 0.018939413130283356, + -0.031609050929546356, + -0.018575195223093033, + 0.022269420325756073, + -0.017560582607984543, + -0.015336242504417896, + 0.01454276405274868, + -0.029241623356938362, + 0.04935174062848091, + -0.01373627781867981, + -0.009977012872695923, + -0.009690839797258377, + 0.023908408358693123, + 0.0041039735078811646, + -0.01822398230433464, + -0.015310226939618587, + 0.015362258069217205, + -0.002009711228311062, + -0.004273075144737959, + -0.01884835958480835, + -0.01908249966800213, + -0.02315395325422287, + -0.03223342448472977, + 0.02147594280540943, + 0.02393442392349243, + -0.0006113684503361583, + -0.015050070360302925, + 0.016558978706598282, + -0.011661527678370476, + -0.014464717358350754, + -0.02664005570113659, + -0.030880609527230263, + 0.005105576943606138, + 0.012461509555578232, + -0.014815929345786572, + -0.02543032541871071, + -0.000584946246817708, + 0.028200995177030563, + 0.0004617782833520323, + 0.02557341195642948, + -0.0010926584945991635, + -0.03488702327013016, + -0.005983605980873108, + -0.007830719463527203, + 0.022815750911831856, + -0.013059870339930058, + 0.007941286079585552, + 0.003160904860123992, + -0.017911795526742935, + 0.008207947015762329, + -0.04651603475213051, + -0.010438790544867516, + 0.00930710881948471, + -0.003421061672270298, + 0.009788398630917072, + 0.011713558807969093, + 0.00037316238740459085, + 0.007336421404033899, + 0.003495856886729598, + -0.0016422397457063198, + 0.004939727019518614, + -0.01662401854991913, + 0.004692578222602606, + 0.026692086830735207, + -0.029215607792139053, + 0.023192977532744408, + 0.008292497135698795, + 0.007902262732386589, + -0.02005808800458908, + 0.0019365421030670404, + -0.007928278297185898, + -0.02768068201839924, + -0.03754062578082085, + -0.0035478882491588593, + 0.00891687348484993, + 0.021163754165172577, + -0.02827904187142849, + -0.00808437168598175, + 0.030048109591007233, + 0.013066374696791172, + -0.012637116014957428, + -0.005183624103665352, + 0.001128430012613535, + 0.013411082327365875, + 0.022425515577197075, + -0.0056941816583275795, + -0.6356150507926941, + 0.015102101489901543, + 0.0007804703782312572, + -0.00028210750315338373, + 0.005856779403984547, + 0.013261492364108562, + 0.031036704778671265, + 0.009671328589320183, + -0.012975319288671017, + 0.03197326883673668, + 0.0035771557595580816, + -0.0019154043402522802, + -0.019355664029717445, + 0.0204873476177454, + -0.005873039364814758, + -0.01412651315331459, + -0.011511937715113163, + 0.01005505956709385, + 0.021423911675810814, + -0.004539736080914736, + 0.0021869430784136057, + 0.0037917851004749537, + -0.002991802990436554, + 0.010920081287622452, + 0.016545971855521202, + 0.020838558673858643, + 0.008845331147313118, + -0.029839983209967613, + -0.005056797526776791, + 0.017287418246269226, + -0.02950177900493145, + 0.0020275970455259085, + 0.0012373706558719277, + 0.03075053170323372, + 0.041260864585638046, + 0.005495812278240919, + -0.016637027263641357, + 0.01166803203523159, + 0.014906983822584152, + 0.0044746967032551765, + -0.00830550491809845, + -0.0043543740175664425, + 0.009625800885260105, + -0.011414378881454468, + 0.004253563471138477, + 0.007512027397751808, + 0.02747255563735962, + -0.009677832014858723, + -0.003382038092240691, + -0.021046683192253113, + 0.02111172303557396, + 0.007043744903057814, + -0.008552654646337032, + 0.01442569401115179, + 0.01464682724326849, + 0.013027351349592209, + 0.01779472455382347, + -0.0067900922149419785, + -0.009755879640579224, + 0.01403545867651701, + -0.005489308387041092, + 0.01840609312057495, + -0.01155746541917324, + -0.025105129927396774, + -0.02230844460427761, + 0.025690482929348946, + -0.036552026867866516, + -0.013801317662000656, + 0.023075906559824944, + -0.01619476079940796, + -0.016077689826488495, + 0.006256770808249712, + -0.013528152368962765, + -0.0069136666133999825, + 0.028357090428471565, + 0.005219395272433758, + 0.029163574799895287, + -0.017781715840101242, + -0.00807786826044321, + 0.01640288531780243, + 0.00046624973765574396, + -0.013827333226799965, + -0.012136314064264297, + -0.00028353024390526116, + 0.01442569401115179, + -0.04997611790895462, + 0.000835753686260432, + 0.002808067249134183, + -0.01702726073563099, + 0.009820918552577496, + -0.0009837178513407707, + 0.031452953815460205, + -0.027108337730169296, + -0.02251656912267208, + 0.0014560649869963527, + 0.03847718983888626, + -0.0020373528823256493, + 0.04649001732468605, + 0.0078047034330666065, + -0.052967920899391174, + -0.006360833533108234, + 0.002700752578675747, + 0.011336332187056541, + -0.006848627235740423, + 0.02230844460427761, + 0.009749375283718109, + -0.011232268996536732, + -0.01908249966800213, + 0.009248573333024979, + -0.025521380826830864, + -0.006604730151593685, + -0.008897362276911736, + -0.01189566869288683, + -0.0167671050876379, + 0.011544457636773586, + -0.02541731856763363, + 0.03629187121987343, + -0.002383686602115631, + 0.01351514458656311, + -0.0034698410890996456, + 0.025521380826830864, + -0.0040454380214214325, + 0.022022271528840065, + -0.02501407451927662, + -0.005895803216844797, + 0.012123306281864643, + 0.014165536500513554, + -0.011739575304090977, + -0.017924802377820015, + -0.014568779617547989, + 0.02394743263721466, + 0.020617425441741943, + 0.039413753896951675, + -0.004435673356056213, + 0.029189590364694595, + -0.0017885778797790408, + 0.021215785294771194, + -0.01189566869288683, + 0.011921684257686138, + -0.03621382266283035, + -0.025924623012542725, + -0.01025017723441124, + 0.0254043098539114, + -0.019550781697034836, + -0.013124910183250904, + -0.0006166528910398483, + -0.035745542496442795, + 0.007941286079585552, + -0.025469349697232246, + 0.0041657607071101665, + -0.02230844460427761, + -0.002055238699540496, + -0.006539691239595413, + 0.005606378894299269, + 0.008897362276911736, + 0.009977012872695923, + -0.0032535858917981386, + -0.009281093254685402, + -0.018380077555775642, + -0.02645794488489628, + 0.02438969910144806, + 0.010367248207330704, + -0.03673413768410683, + -0.0004014137957710773, + -0.0009910347871482372, + -0.00562589056789875, + 0.015713470056653023, + -0.004799892660230398, + -0.011134710162878036, + -0.019407697021961212, + -0.019537774845957756, + -0.007394956424832344, + 0.009404667653143406, + 0.014776905067265034, + -0.022035280242562294, + -0.005209639668464661, + -0.02723841555416584, + 0.007206343114376068, + -0.015323234722018242, + -0.007850230671465397, + 0.03218139335513115, + -0.0067900922149419785, + -0.00404869019985199, + -0.016220776364207268, + 0.028565214946866035, + 0.002699126722291112, + 0.01804187335073948, + 0.003292609238997102, + -0.023271024227142334, + 0.006529935169965029, + -0.0003835280076600611, + 0.03644796460866928, + -0.030178187415003777, + 0.016871167346835136, + -0.01025017723441124, + -0.00768763292580843, + 0.008474607020616531, + 0.020136134698987007, + -0.016910191625356674, + 0.022009264677762985, + 0.02291981317102909, + 0.01128430012613535, + 0.01984996348619461, + -0.017573591321706772, + 0.02926763892173767, + -0.049481820315122604, + 0.018939413130283356, + -0.010653420351445675, + 0.022204382345080376, + 0.008786795660853386, + 0.02419458143413067, + -0.003850320354104042, + -0.02991802990436554, + -0.0010520089417696, + -0.01473788172006607, + 0.040090162307024, + -0.014503740705549717, + -0.00409421743825078, + 0.008351032622158527, + -0.013144421391189098, + 0.00971685629338026, + 0.010204649530351162, + 0.0262238048017025, + 0.010256681591272354, + -0.0022032028064131737, + 0.00753153907135129, + 0.004962490871548653, + 0.0010268063051626086, + -0.007505523040890694, + -0.009768887422978878, + -0.014711866155266762, + 0.012253385037183762, + -0.0058502755127847195, + 0.014139520935714245, + -0.004419413395226002, + 0.03538132458925247, + 0.021566998213529587, + -0.011147717945277691, + 0.030152171850204468, + 0.00014857391943223774, + 0.01763862930238247, + 0.016715073958039284, + -0.010185138322412968, + -0.01351514458656311, + 0.02236047573387623, + 0.0005881982506252825, + 0.02726443111896515, + 0.022269420325756073, + -0.005918567068874836, + 0.017469527199864388, + -0.010581877082586288, + 0.009066464379429817, + 0.003320250893011689, + 0.0070372410118579865, + 0.015440304763615131, + -0.015024054795503616, + 0.029449747875332832, + -0.007173823192715645, + 0.02211332693696022, + 0.0207084808498621, + -0.008259978145360947, + 0.0014479351229965687, + 0.0018910146318376064, + -0.016285814344882965, + 0.01005505956709385, + -0.002843838883563876, + -0.02578153647482395, + -0.0258465763181448, + -0.012110298499464989, + 0.0024194580037146807, + 0.003931619226932526, + -0.012481021694839, + -0.01926461048424244, + 0.00042722621583379805, + -0.009905469603836536, + -0.006803099997341633, + -0.0014089115429669619, + 0.022230397909879684, + 0.01473788172006607, + -0.0010398142039775848, + -0.00738194864243269, + -0.02172309160232544, + -0.014802920632064342, + 0.022178366780281067, + -0.012071275152266026, + -0.011934692971408367, + -0.01601264998316765, + 0.0142305763438344, + -0.014815929345786572, + 0.028747323900461197, + -0.0036096754483878613, + -0.021645044907927513, + -0.004786884877830744, + 0.002255234168842435, + -0.0003251959860790521, + -0.020630432292819023, + 0.00738194864243269, + -0.013853348791599274, + 0.0010251803323626518, + 0.018171951174736023, + -0.003915359731763601, + 0.0027787997387349606, + -0.012981823645532131, + -0.00879980344325304, + 0.030178187415003777, + 0.0009324994753114879, + 0.006181975826621056, + 0.008448591455817223, + 0.005502316169440746, + -0.008929881267249584, + -0.008832322433590889, + -0.005316954106092453, + -0.0075575546361505985, + 0.025443334132432938, + -0.006959193851798773, + 0.010451799258589745, + 0.006842123344540596, + -0.010985120199620724, + 0.04464290291070938, + -0.012142817489802837, + -0.006868138909339905, + -0.03051639162003994, + -0.027290446683764458, + 0.010386759415268898, + 0.03363827243447304, + 0.018132928758859634, + 0.001939794048666954, + 0.008513630367815495, + 0.012058267369866371, + 0.007850230671465397, + -0.0006491724634543061, + -0.04430469870567322, + 0.0045690033584833145, + 0.009898965246975422, + 0.007642105687409639, + -0.021762115880846977, + 0.015440304763615131, + -0.0019690615590661764, + 0.024064501747488976, + -0.0231669619679451, + -0.002822701120749116, + -0.026900211349129677, + -0.0033917941618710756, + 0.013892372138798237, + -0.0167671050876379, + 0.007407964672893286, + -0.0059088109992444515, + 0.05567355081439018, + 0.007544546853750944, + 0.008663221262395382, + 0.02827904187142849, + 0.014802920632064342, + 0.013827333226799965, + -0.018549179658293724, + -0.022412506863474846, + 0.015492336824536324, + 0.007876246236264706, + 0.008110388182103634, + -0.013853348791599274, + -0.009814415127038956, + 0.011453402228653431, + -0.031609050929546356, + 0.03296186402440071, + -0.012955808080732822, + 0.016116712242364883, + 0.021632036194205284, + 0.0027283942326903343, + -0.0057559688575565815, + 0.023062899708747864, + -0.012721667066216469, + -0.008370544761419296, + 0.02276371791958809, + -0.0035576440859586, + 0.0009479462751187384, + 0.023310048505663872, + -0.01515413261950016, + -0.009957500733435154, + -0.013775302097201347, + -0.011707055382430553, + -0.02189219370484352, + 0.022399500012397766, + -0.027914823964238167, + 0.0044161612167954445, + -0.023687275126576424, + -0.041312895715236664, + -0.027784744277596474, + 0.016936207190155983, + -0.014048466458916664, + -0.00031279787071980536, + -0.015128117054700851, + 0.0013861479237675667, + -0.0142305763438344, + 0.0005617760471068323, + -0.003243829822167754, + 0.009703848510980606, + -0.0112517811357975, + -0.025859585031867027, + -0.005977102089673281, + 0.017469527199864388, + 0.01075097918510437, + 0.01289727259427309, + -0.013879364356398582, + -0.008877850137650967, + -0.02254258468747139, + -0.01166803203523159, + -0.022425515577197075, + 0.01680612750351429, + -0.026132749393582344, + -0.020357267931103706, + 0.004978750366717577, + -0.0021983247715979815, + -0.02069547213613987, + 0.0011024143313989043, + 0.023284032940864563, + 0.006315305829048157, + 0.004396649543195963, + 0.012428990565240383, + 0.004738105461001396, + -0.03147897124290466, + 0.011388363316655159, + 0.009430683217942715, + 0.012012739665806293, + 0.018145935609936714, + -0.030594438314437866, + 0.02379133738577366, + 0.004373886156827211, + -0.005037285853177309, + -0.016689058393239975, + -0.005492560099810362, + 0.0002648314693942666, + -0.024493761360645294, + 0.005443780682981014, + -0.005339717958122492, + 0.006477904040366411, + 0.020656447857618332, + -0.015180148184299469, + 0.014360654167830944, + -0.007329917512834072, + -0.007486011367291212, + -0.006559202913194895, + -0.007277885917574167, + 0.014100497588515282, + 0.015102101489901543, + -0.0025901859626173973, + 0.008442088030278683, + -0.017651638016104698, + 0.04630790650844574, + 0.01719636283814907, + 0.007928278297185898, + 0.020994652062654495, + -0.018952421844005585, + 0.015609406866133213, + -0.036161791533231735, + -0.014438701793551445, + -0.00485842814669013, + 0.016558978706598282, + 0.02314094640314579, + -0.023505166172981262, + -0.02089058980345726, + -0.014269599691033363, + 0.0005467357696034014, + 0.010003028437495232, + -0.030776547268033028, + 0.02991802990436554, + -0.028643261641263962, + 0.022412506863474846, + -0.008708748035132885, + -0.006116936448961496, + 0.0002735711168497801, + -0.022243404760956764, + -0.025326263159513474, + -0.004178768489509821, + 0.00900142453610897, + -0.0015568757662549615, + -0.01925160177052021, + -0.016676049679517746, + -0.0144517095759511, + -0.0021885689347982407, + -0.014438701793551445, + -0.024688879027962685, + 0.00902093667536974, + -0.022880788892507553, + 0.011876157484948635, + 0.003860076190903783, + 0.029735920950770378, + 0.015310226939618587, + 0.021840162575244904, + 0.0020292229019105434, + -0.019160546362400055, + 0.003328380873426795, + -0.014243584126234055, + -0.004500712268054485, + -0.02664005570113659, + 0.025352278724312782, + 0.003834060626104474, + 0.009235565550625324, + 0.011602992191910744, + 0.010835530236363411, + 0.013411082327365875, + 0.03998609632253647, + -0.021996255964040756, + -0.0014276104047894478, + -0.017430504783988, + -0.01659800298511982, + -0.011602992191910744, + 0.021788131445646286, + -0.02008410356938839, + -0.001456878031603992, + -0.01801585778594017, + -0.005248663015663624, + 0.034704916179180145, + -0.019173555076122284, + -0.01860121078789234, + -0.012819225899875164, + 0.0011479418026283383, + -0.042691729962825775, + 0.04139094427227974, + 0.0004083242092747241, + -0.007843727245926857, + -0.009482715278863907, + -0.00685513112694025, + -0.01948574371635914, + -0.023036884143948555, + 0.021540982648730278, + -0.002531650708988309, + -0.0012333057820796967, + -0.012123306281864643, + -0.030256234109401703, + 0.009547754190862179, + -0.007147807627916336, + 0.011739575304090977, + -0.01805488020181656, + 0.011791606433689594, + -0.0077136484906077385, + -0.017053278163075447, + -0.010087579488754272, + 0.010458302684128284, + -0.014880968257784843, + 0.035927653312683105, + -0.011043655686080456, + 0.008890857920050621, + 0.037358514964580536, + -0.014985030516982079, + 0.012038755230605602, + 0.013892372138798237, + -0.005352725740522146, + 0.03010014072060585, + 0.02025320567190647, + 0.034913040697574615, + 0.012006235308945179, + -0.016506947576999664, + -0.005658410023897886, + -0.04157305508852005, + -0.0041690124198794365, + -0.022191373631358147, + 0.023856377229094505, + -0.010939592495560646, + -0.0017349205445498228, + 0.003843816462904215, + 0.010776994749903679, + 0.012858249247074127, + 0.009190038777887821, + 0.016663042828440666, + 0.0487273670732975, + 0.01596061885356903, + 0.007264878135174513, + -0.022633640095591545, + -0.0013113528257235885, + -0.014269599691033363, + -0.008155914954841137, + -0.00011016013741027564, + -0.006894154939800501, + -0.005424269009381533, + -0.013072878122329712, + 0.0028779844287782907, + 0.05060049518942833, + -0.010464807040989399, + 0.034080538898706436, + 0.0020747503731399775, + -0.010516838170588017, + 0.001138998894020915, + -0.023010866716504097, + -0.0013113528257235885, + 0.03093264251947403, + -0.0023430369328707457, + 0.043524231761693954, + -0.01618175208568573, + -0.009079472161829472, + 0.008513630367815495, + -0.01601264998316765, + -0.013189949095249176, + 0.0015178521862253547, + 0.0019235342042520642, + 0.014685850590467453, + 0.0030178187880665064, + -0.0020682464819401503, + -0.008546150289475918, + 0.010594884864985943, + 0.026535991579294205, + 0.007368940860033035, + 0.000759332615416497, + -0.006533187348395586, + -0.0046307905577123165, + -0.0023137694224715233, + -0.0021788130979985, + 0.009794902987778187, + -0.012682643719017506, + -0.006191731430590153, + -0.010529845952987671, + -0.0015739485388621688, + -0.02273770235478878, + -0.010653420351445675, + 0.009007928892970085, + -0.015557375736534595, + -0.0017999598057940602, + 0.011310316622257233, + -0.003343014745041728, + 0.021658051759004593, + -0.009977012872695923, + -0.02952779456973076, + -0.023804346099495888, + 0.023687275126576424, + -0.028227010741829872, + 0.018744295462965965, + 0.04368032515048981, + 0.014985030516982079, + 0.006660013925284147, + 0.013866356573998928, + -0.0031235073693096638, + -0.023869385942816734, + 0.03075053170323372, + -0.0030048107728362083, + -0.014998038299381733, + -0.019316641613841057, + -0.010178633965551853, + 0.03111475147306919, + -0.01361920777708292, + -0.0023869385477155447, + 0.02068246528506279, + 0.0030161926988512278, + -0.0007556741475127637, + -0.019563790410757065, + -0.011850141920149326, + 0.016637027263641357, + 0.014607803896069527, + -0.011713558807969093, + 0.03361225500702858, + -0.02662704698741436, + 0.010256681591272354, + 0.013593192212283611, + 0.0008276237640529871, + -0.0012674513272941113, + -0.02661403827369213, + -0.012572077102959156, + 0.006077913101762533, + 0.006077913101762533, + -0.0069656977429986, + 0.0008105509914457798, + -0.01075097918510437, + -0.011121702380478382, + -0.0137102622538805, + 0.02194422483444214, + 0.00405194191262126, + 0.014659835025668144, + 0.01579151675105095, + 0.023297039791941643, + -0.037618670612573624, + 0.024897003546357155, + -0.0020438567735254765, + -0.027316462248563766, + 0.01412651315331459, + 0.0037397537380456924, + -0.0384511724114418, + -0.007167319301515818, + -0.007752672303467989, + 0.0414169616997242, + 0.01208428293466568, + -0.040870629251003265, + 0.009853438474237919, + 0.0055868667550385, + -0.0344187431037426, + -0.021059691905975342, + -0.01662401854991913, + 0.0015089093940332532, + 0.009287597611546516, + 0.016506947576999664, + -0.015167140401899815, + 0.03335209935903549, + -0.0013633841881528497, + 0.017651638016104698, + -0.03257162868976593, + -0.003905603662133217, + -0.003873084206134081, + -0.012845241464674473, + 0.043732356280088425, + -0.00722585478797555, + -0.003772273426875472, + -0.00911199115216732, + 0.01454276405274868, + 0.013996435329318047, + 0.0006381971179507673, + 0.025885600596666336, + -0.009502226486802101, + -0.006816107779741287, + -0.007551050744950771, + 0.009495723061263561, + 0.012949303723871708, + 0.020396292209625244, + -0.004006414674222469, + -0.03686421737074852, + 0.0014284233329817653, + 0.015687454491853714, + 0.010894065722823143, + -0.023284032940864563, + 0.0022845016792416573, + -0.006367337424308062, + 0.0027544100303202868, + -0.017144331708550453, + 0.004520223941653967, + -0.017131324857473373, + -0.023648250848054886, + -0.004725097678601742, + 0.038399141281843185, + 0.01843210868537426, + -0.0015585017390549183, + 0.0026958747766911983, + 0.011349339969456196, + -0.023804346099495888, + -0.02255559340119362, + 0.004406405612826347, + -0.03569351136684418, + -0.003765769535675645, + 0.0052941907197237015, + -0.02108570747077465, + 0.024870987981557846, + -0.020838558673858643, + 0.021840162575244904, + -0.003996658604592085, + 0.010523341596126556, + -0.018067888915538788, + -0.020357267931103706, + -0.006256770808249712, + 0.03296186402440071, + 0.02869529277086258, + -0.007193335331976414, + 0.013241980224847794, + 0.005863283760845661, + -0.017651638016104698, + -0.008559158071875572, + 0.000835753686260432, + 0.0004845420189667493, + -0.010406271554529667, + 0.0007938846829347312, + 0.013163933530449867, + -0.01403545867651701, + -0.022295435890555382, + -0.011407875455915928, + -0.01166803203523159, + -0.024298643693327904, + 0.008181930519640446, + 0.18783320486545563, + -0.013879364356398582, + -0.006829115562140942, + 0.015531360171735287, + -0.004520223941653967, + -0.007707144599407911, + 0.014360654167830944, + -0.006081164814531803, + -0.006211243104189634, + 0.032831788063049316, + -0.02128082513809204, + 0.002445473801344633, + -0.006328313611447811, + 0.007030737120658159, + 0.010367248207330704, + -0.000705675280187279, + -0.03223342448472977, + -0.009671328589320183, + 0.004894199315458536, + 0.01923859491944313, + 0.01116723008453846, + -0.009534746408462524, + -0.006803099997341633, + -0.007895758375525475, + 0.023895401507616043, + 0.0034535813611000776, + -0.015843547880649567, + 0.0022958836052566767, + 0.029241623356938362, + 0.016441909596323967, + -0.0002239787281723693, + 0.006386849097907543, + 0.006874643266201019, + -0.008370544761419296, + -0.009554257616400719, + 0.000638603582046926, + 0.01269565150141716, + -0.013320027850568295, + 0.031452953815460205, + 0.022048287093639374, + 0.005860031582415104, + -0.013554168865084648, + -0.0022503561340272427, + -0.008019332773983479, + -0.01840609312057495, + 0.028565214946866035, + -0.0035543921403586864, + 0.004523476120084524, + -0.007889254949986935, + -0.015011046081781387, + -0.006025881506502628, + -0.001438179169781506, + 0.004386893939226866, + 0.03683819994330406, + -0.012526549398899078, + -0.012292408384382725, + 0.010685940273106098, + -0.020786527544260025, + 0.004409657325595617, + 0.010731467045843601, + -0.03376835212111473, + 0.027550604194402695, + -0.019928010180592537, + 0.017430504783988, + -0.012129809707403183, + -0.0026470953598618507, + -0.02885138802230358, + 0.011349339969456196, + -0.006409612949937582, + -0.0018080896697938442, + -0.004809648729860783, + -0.012272896245121956, + -0.03072451613843441, + 0.011180237866938114, + -0.005947834346443415, + -0.04152102395892143, + 0.017365464940667152, + 0.00409421743825078, + 0.026275835931301117, + 0.004458436742424965, + -0.01125828456133604, + 0.021371880546212196, + -0.002364174695685506, + -0.02233446016907692, + -0.006829115562140942, + -0.04037633165717125, + 0.024649854749441147, + 0.0037690214812755585, + -0.0031478970777243376, + -0.029345685616135597, + -0.008617693558335304, + 0.014724873937666416, + 0.009710351936519146, + -0.006081164814531803, + 0.03147897124290466, + -0.00869574025273323, + 0.009977012872695923, + 0.011420883238315582, + -0.03199928626418114, + -0.01005505956709385, + 0.0019121523946523666, + 0.030984673649072647, + 0.03564148023724556, + -0.007193335331976414, + -0.013827333226799965, + 0.018380077555775642, + -0.002560918452218175, + 0.01597362570464611, + -0.0130013357847929, + -0.0038828400429338217, + -0.001506470376625657, + -0.0204873476177454, + -0.0022340964060276747, + -0.004279579035937786, + 0.0024649854749441147, + 0.023049890995025635, + 0.0026503473054617643, + -0.0012528175720945, + -0.024532785639166832, + -0.01658499427139759, + -0.024051494896411896, + 0.013066374696791172, + 0.013918387703597546, + 0.002965787425637245, + -0.0022975096944719553, + -0.011355843394994736, + -0.028513183817267418, + 0.0050600492395460606, + -0.011876157484948635, + -0.012565572746098042, + 0.024116534739732742, + -0.040636491030454636, + 0.0015609407564625144, + -0.00573970889672637, + 0.014282607473433018, + 0.03639593347907066, + 0.002094262046739459, + -0.03720242157578468, + -0.0008333147270604968, + 0.015505344606935978, + 0.028721308335661888, + -0.01882234402000904, + 0.01948574371635914, + -0.011238773353397846, + 0.011180237866938114, + -0.007414468564093113, + 0.0013918387703597546, + -0.010620900429785252, + -0.015180148184299469, + -0.02152797393500805, + -0.001832479378208518, + 0.008663221262395382, + 0.0026731109246611595, + -0.0141525287181139, + 0.027004273608326912, + -0.012266392819583416, + -0.022867782041430473, + -0.03946578502655029, + 0.006946186069399118, + 0.015895579010248184, + -0.01597362570464611, + 0.011160725727677345, + -0.006647005677223206, + -0.040480393916368484, + 0.004071453586220741, + -0.0014202934689819813, + -0.16348251700401306, + 0.009957500733435154, + 0.01186314970254898, + -0.028955450281500816, + 0.012455006130039692, + -0.003175538731738925, + -0.006207991391420364, + 0.0029316418804228306, + -0.013072878122329712, + 0.00921605434268713, + 0.017131324857473373, + -0.007843727245926857, + -0.01186314970254898, + 0.011043655686080456, + -0.006952689960598946, + -0.006796596106141806, + -0.01573948562145233, + 0.030438343062996864, + 0.041885241866111755, + 0.028148964047431946, + 0.005089316982775927, + -0.04178117960691452, + 0.014985030516982079, + 0.004003162495791912, + 0.014932999387383461, + -0.010985120199620724, + -0.01862722635269165, + 0.03787882626056671, + 0.004949482623487711, + -0.015284211374819279, + -0.019706876948475838, + -0.009814415127038956, + 0.03865929692983627, + -0.0055998750030994415, + -0.008780291303992271, + -0.006946186069399118, + -0.0078047034330666065, + -0.00436087790876627, + -0.005112080834805965, + 0.018575195223093033, + 0.03179115802049637, + 0.00971685629338026, + -0.009781895205378532, + 0.01658499427139759, + -0.029423732310533524, + 0.007102280389517546, + 0.02419458143413067, + -0.0006886025075800717, + -0.007173823192715645, + 0.016142727807164192, + 0.006256770808249712, + -0.020955629646778107, + 0.006744564510881901, + 0.03540733829140663, + -0.0015113482950255275, + 0.03691624850034714, + 0.006435628514736891, + 0.009313613176345825, + -0.0026194537058472633, + 0.005411261226981878, + 0.0013081008801236749, + -0.0022845016792416573, + 0.0017934557981789112, + 0.011570473201572895, + 0.011238773353397846, + -0.02970990538597107, + 0.007050248794257641, + 0.003590163541957736, + -0.014711866155266762, + -0.01865324191749096, + -0.015128117054700851, + -0.00593157485127449, + 0.02848716825246811, + 0.0022958836052566767, + -0.0011398119386285543, + 0.01269565150141716, + -0.003167408751323819, + 0.006946186069399118, + 0.010074571706354618, + -0.009619297459721565, + -0.012676139362156391, + 0.06363435089588165, + -0.03293585032224655, + -0.01454276405274868, + -0.016519956290721893, + 0.004380390048027039, + 0.0014715117868036032, + 0.0038860919885337353, + 0.008129899390041828, + -0.004159256815910339, + -0.006110432557761669, + -0.026666071265935898, + -0.007538042962551117, + -0.027706697583198547, + 0.01247451826930046, + -0.0018373572966083884, + 0.01718335598707199, + -0.003443825524300337, + -0.011206253431737423, + -0.01228590402752161, + 0.005164111964404583, + -0.018900390714406967, + -0.036161791533231735, + -0.018692264333367348, + 0.017963826656341553, + 0.0001707278861431405, + -0.014685850590467453, + 0.02111172303557396, + 0.03418460115790367, + -0.011700551025569439, + -0.007538042962551117, + -0.012064770795404911, + 0.023895401507616043, + -0.00593157485127449, + -0.0056616622023284435, + -0.0033950461074709892, + 0.015440304763615131, + -0.025105129927396774, + 0.025560403242707253, + -0.012799713760614395, + 0.03303991258144379, + 0.002032474847510457, + -0.019784923642873764, + 0.020773518830537796, + -0.01883535087108612, + -0.021632036194205284, + -0.07903563231229782, + 0.016272807493805885, + 0.0372544527053833, + 0.008682732470333576, + 0.0020389787387102842, + 0.004686073865741491, + -0.0196678526699543, + 0.027576619759202003, + 0.0036324390675872564, + 0.0369422622025013, + -0.041677117347717285, + -0.01075097918510437, + -0.0073104058392345905, + -0.003349518636241555, + 0.006991713773459196, + -0.013801317662000656, + -0.008272985927760601, + -0.013066374696791172, + -0.026588022708892822, + 0.02579454518854618, + 0.004585263319313526, + 0.004253563471138477, + -0.002263363916426897, + -0.002609697636216879, + -0.012259888462722301, + -0.01473788172006607, + -0.025300247594714165, + 0.01105666346848011, + 0.020838558673858643, + 0.007960797287523746, + 0.04011617600917816, + -0.016285814344882965, + 0.021619029343128204, + -0.026132749393582344, + 0.010633908212184906, + -0.016689058393239975, + -0.0027787997387349606, + -0.03223342448472977, + 0.027758728712797165, + -0.028929434716701508, + -0.008780291303992271, + 0.018549179658293724, + 0.03928367421030998, + -0.027004273608326912, + 0.019121523946523666, + -0.012689147144556046, + -0.02619778737425804, + 0.003944627474993467, + 0.00753153907135129, + -0.005095820873975754, + -0.01798984222114086, + -0.03465288504958153, + 0.007609585765749216, + 0.01821097545325756, + 0.008617693558335304, + 0.011102191172540188, + -0.0028015633579343557, + -0.014490732923150063, + -0.017495544627308846, + -0.0026470953598618507, + -0.03251959756016731, + 0.004985254257917404, + -0.01969386823475361, + 0.025131145492196083, + 0.013385066762566566, + -0.002812945283949375, + -0.03709835931658745, + -0.016311829909682274, + 0.00772665673866868, + -0.022399500012397766, + -0.03774875029921532, + 0.005336466245353222, + 0.004090965259820223, + -0.0014097245875746012, + -0.03075053170323372, + -0.0137102622538805, + -0.029735920950770378, + -0.007453491911292076, + 0.01178510207682848, + -0.010432287119328976, + -0.031843189150094986, + -0.0227246955037117, + 0.02601567842066288, + -0.027524588629603386, + 0.03449678793549538, + 0.014919991604983807, + 0.0009056708076968789, + -0.023999463766813278, + 0.020812543109059334, + -0.03075053170323372, + 0.023232001811265945, + 0.013541161082684994, + 0.011154222302138805, + -0.014503740705549717, + -0.0026324614882469177, + 0.03855523467063904, + 0.0024975051637738943, + -0.002660103142261505, + 0.004692578222602606, + 0.00961279310286045, + -0.0256254430860281, + -0.010341232642531395, + -0.041312895715236664, + 0.014620811678469181, + 0.025651458650827408, + -0.0021593014243990183, + -0.02131984941661358, + -0.010503830388188362, + 0.016233783215284348, + 0.005102324765175581, + -0.003051964333280921, + 0.016298823058605194, + -0.0028649766463786364, + 0.03806093707680702, + 0.008942889049649239, + -0.01906949281692505, + -0.018991446122527122, + -0.02133285626769066, + -0.011388363316655159, + 0.026106733828783035, + 0.018549179658293724, + 0.017703669145703316, + -0.005967346485704184, + 0.015271203592419624, + -0.0020763762295246124, + -0.0017040269449353218, + -0.015674445778131485, + 0.003612927393987775, + -0.008598181419074535, + 0.015297219157218933, + -0.009625800885260105, + -0.021814147010445595, + 0.003973894752562046, + -0.010042051784694195, + -0.0005670604878105223, + 0.012116801925003529, + -0.0031121254432946444, + -0.014906983822584152, + -0.011115198954939842, + 0.03033428080379963, + 0.018497146666049957, + 0.05843121558427811, + -0.03925766050815582, + -0.026119740679860115, + 0.013411082327365875, + -0.032675690948963165, + 0.005063301417976618, + -0.004653554409742355, + 0.022412506863474846, + -0.005336466245353222, + 0.02130684070289135, + -0.026314858347177505, + 0.047400567680597305, + 0.007817711681127548, + 0.005843771621584892, + -0.020539378747344017, + 0.007967301644384861, + -0.01903046853840351, + 0.0036617068108171225, + 0.010152618400752544, + 0.011993227526545525, + -0.013866356573998928, + 0.04984603822231293, + 0.008786795660853386, + 0.028721308335661888, + -0.007089272607117891, + 0.029189590364694595, + -0.024246612563729286, + -0.021371880546212196, + -0.015167140401899815, + 0.017651638016104698, + -0.029553810134530067, + -0.00850062258541584, + -0.021996255964040756, + 0.010601389221847057, + 0.026952242478728294, + -0.007999821566045284, + -0.0038990997709333897, + 0.016064681112766266, + 0.006868138909339905, + 0.017937811091542244, + 0.025729505345225334, + 0.010490822605788708, + 0.008825819008052349, + -0.005144600290805101, + 5.8128782256972045e-05, + 0.03280577063560486, + 0.004991758149117231, + -0.013307019136846066, + 0.0008105509914457798, + -0.014438701793551445, + 0.01619476079940796, + 0.009164023213088512, + 0.015921594575047493, + -0.004952734801918268, + -0.012207857333123684, + 0.017521560192108154, + 0.017495544627308846, + 0.004559247754514217, + -0.010575373657047749, + 0.03054240718483925, + 0.029996076598763466, + -0.00425031129270792, + -0.003090987913310528, + -0.017651638016104698, + -0.017885778099298477, + -0.014594795182347298, + 0.02783677540719509, + 0.015115109272301197, + -0.0339764766395092, + -0.014932999387383461, + 0.008637205697596073, + 0.010068067349493504, + 0.011681039817631245, + 2.9140608603483997e-05, + 0.0010284322779625654, + -0.021553989499807358, + 0.011642016470432281, + -0.019524766132235527, + -0.012851744890213013, + -0.023388095200061798, + 0.02213934250175953, + -0.0014926495496183634, + 0.01844511553645134, + -0.01116723008453846, + 0.023921417072415352, + 0.004071453586220741, + -0.007564058527350426, + 0.009385156445205212, + -0.004282831214368343, + -0.005395001266151667, + -0.011199750006198883, + 0.024480752646923065, + -0.006230754777789116, + -0.017157340422272682, + -0.020201174542307854, + -0.021176762878894806, + -0.013085885904729366, + 0.011824125424027443, + 0.01598663441836834, + 0.019928010180592537, + 0.10780896991491318, + 0.03335209935903549, + -0.018093904480338097, + 0.005873039364814758, + -0.014854952692985535, + 0.021879184991121292, + 0.007368940860033035, + 5.690929810953094e-06, + 0.027420524507761, + -0.07461296766996384, + 0.007551050744950771, + -0.01804187335073948, + 0.017352458089590073, + -0.04911760240793228, + -0.023218993097543716, + -0.0008312822319567204, + 0.006139700300991535, + -0.006679525598883629, + -0.012058267369866371, + 0.017742693424224854, + 0.02358321286737919, + -0.02645794488489628, + 0.024649854749441147, + 0.024441730231046677, + -0.03210334852337837, + -0.022828757762908936, + 0.01619476079940796, + -0.01331352349370718, + -0.015544367954134941, + 0.02393442392349243, + -0.009092479944229126, + -0.012311919592320919, + -0.07861938327550888, + -0.04196329042315483, + 0.015050070360302925, + -0.020162150263786316, + -0.0037592656444758177, + -0.025053098797798157, + 0.01351514458656311, + 0.0027722958475351334, + 0.0030194446444511414, + 0.03171311318874359, + -0.009625800885260105, + -0.009625800885260105, + 0.00722585478797555, + -0.006344573572278023, + 0.0023446630220860243, + -0.025040090084075928, + -0.030204202979803085 + ], + "metadata": { + "source": "Kreye_Marieke_BA_241_V2.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 17, + "has_images": true, + "image_count": 98, + "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", + "links": [], + "last_modified": "2025-05-05T23:00:23", + "_known_field_names": "frozenset({'is_continuation', 'sent_to', 'header_footer_type', 'email_message_id', 'filename', 'languages', 'detection_class_prob', 'sent_from', 'link_texts', 'cc_recipient', 'subject', 'image_mime_type', 'image_path', 'filetype', 'page_number', 'last_modified', 'signature', 'detection_origin', 'text_as_html', 'attached_to_filename', 'bcc_recipient', 'data_source', 'link_start_indexes', 'category_depth', 'emphasized_text_tags', 'parent_id', 'orig_elements', 'page_name', 'coordinates', 'url', 'link_urls', 'file_directory', 'links', 'table_as_cells', 'emphasized_text_contents', 'key_value_pairs', 'image_base64'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "Kreye_Marieke_BA_241_V2.pdf", + "detection_class_prob": 0.3422867953777313, + "parent_id": "e02392183bc6851689602ad4b9f6039f", + "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", + "id": "ce00eae5-7e07-454f-9e4f-f79ac36f92f4", + "processing_timestamp": "2025-05-05T23:15:46.977945", + "chunk_number": 26, + "total_chunks": 56, + "chunking_strategy": "hybrid", + "word_count": 769 + } +} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000027.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000027.json new file mode 100644 index 0000000000000000000000000000000000000000..87f042475b320aaacd31b36829e60106002ff013 --- /dev/null +++ b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000027.json @@ -0,0 +1,1570 @@ +{ + "id": "61a115b2-0ff7-441a-f6d9-eb3d00000027", + "content": "[IMAGE: El \\ 3 9, & An Amse eg [e) 2 S = % \u201c \u2018\u00a9 a 3 DR = S MeisdNwec \u00a9 \u00a9 E3 Er & 8 \u00b0 ao > Hirschberg \u201anstra\u00dfe au) = Bahnhofstra\u00dfe 5 > 5 \u00ae \u00bb \u00ae = > \u00a9 = tra\u00dfe De 5 Sees! \u00a9 5 \u00a9 -- - - Gebietsgrenze Fallstudiengebiet | Quartiersarchetyp Ein- und Zweifamilienhausquartier B 11138 | Quartiersarchetyp Zeilen- und Reihenbebauung 81 \" 0 0,2 0,4 BEE Geb\u00e4ude t + + + Ikm]\n\nAbbildung 14: Quartiersarchetypen im Untersuchungsgebiet Grafenb\u00fchl (eigene Darstellung, Datengrundlage Drees & Sommer)\n29\nFallstudien\nIm Vergleich zu Gromb\u00fchl ist das Quartier weniger dicht bebaut. Auf einer Fl\u00e4che von 23 Hektar befinden sich 376 Wohngeb\u00e4ude. Zudem weist Grafenb\u00fchl im Status Quo ein gr\u00f6\u00dferes Gr\u00fcnvolumen an Stra\u00dfenb\u00e4umen und gr\u00fcnen Freifl\u00e4chen auf, bei welchen es sich vor allem um private G\u00e4rten handelt. Im Bestand weist das Fallstudiengebiet 404 B\u00e4ume im privaten und \u00f6ffentlichen Raum auf. Die Evapotranspiration der Bestandsb\u00e4ume betr\u00e4gt im Jahresmittel 560 MWh pro Monat. Die Stra\u00dfen machen mit einer Gesamtfl\u00e4che von 2,8 Hektar etwa 12 % der Quartiersfl\u00e4che aus. Wie bereits in Kapitel 5.1 erw\u00e4hnt, lagen wenige genaue Daten f\u00fcr das Fallstudiengebiet vor, weshalb eine Aufstellung einer genauen Fl\u00e4chenbilanz auf Grund von Datenl\u00fccken nicht m\u00f6glich ist. Die Globalstrahlung auf Grafenb\u00fchl betr\u00e4gt, wie in Gromb\u00fchl, 1.200 kWh/m2 pro Jahr. Aus der im Jahr 2022 durchgef\u00fchrten Analyse des st\u00e4dtischen Klimas in Asperg geht hervor, dass trotz einer geringen Bebauungsdichte Grafenb\u00fchl eine hohe thermische Belastung aufweist. Die in Abbildung 15 dargestellte Karte zeigt auf, dass nur in Teilen der Eisenbahnstra\u00dfe mit einer sehr hohen thermischen Belastung zu rechnen ist. Im Norden des Gebiets ist die thermische Belastung mittel bis gering, da diese Grundst\u00fccke an Wiesenfl\u00e4chen anschlie\u00dfen. In den Grad der thermischen Belastung flie\u00dfen die n\u00e4chtlichen urbanen Hitzeinseln und die Vielfalt der Vegetation ein (vgl. Hasel et al. 2022, S. 56). [IMAGE: == = - Gebietsgrenze Fallstudiengebiet 1 thermische Belastung sehr hoch 1 thermische Belastung hoch Bu thermische Belastung mittel EEE thermische Belastung gering]\n\nAbbildung 15: Thermische Belastung Grafenb\u00fchl (eigene Darstellung nach Hasel et al. 2022, S. 56)\n30\nFallstudien\nIn dem nachfolgenden Diagramm (vgl. Abbildung 16) ist der monatliche Heiz- und K\u00fchlbedarf der Wohngeb\u00e4ude des Fallstudiengebiets dargestellt. Zum einen wurde nur der Effekt der Geb\u00e4udeverschattung auf den Geb\u00e4udeenergiebedarf betrachtet (ohne Baum) und zum anderen wurde zus\u00e4tzlich der Verschattungseffekt der Bestandsb\u00e4ume in der Simulation ber\u00fccksichtigt (Status Quo). Pro Jahr f\u00fchrt die zunehmende Verschattung zu einer Erh\u00f6hung des Heizbedarfs um ca. 140 MWh und zu einer Reduktion des j\u00e4hrlichen K\u00fchlbedarfs um 205 MWh. [IMAGE: monatlicher Heiz- und K\u00fchlbedarf Fallstudiengebiet Grafenb\u00fchl 1200 1000 800 g g 5 g Ss Ss \u201d SS N E E \u201ceg Y er ee\u201c Br Br 6 fe] \u00b0 4 fo} [o} 2 {=} [e] Heiz- und K\u00fchlbedarf [MWh] m Heizbedarf ohne B\u00e4ume mK\u00fchlbedarf ohne B\u00e4ume mHeizbedarf Status Quo mK\u00fchlbedarf Status Quo]\n\n- Abbildung 16: Monatlicher Heiz- und K\u00fchlbedarf mit und ohne der Verschattungswirkung von B\u00e4umen Status Quo Grafenb\u00fchl (eigene Darstellung und Berechnung auf Grundlage der Simulationsergebnisse)\nDie leichte Erh\u00f6hung des Heizbedarfs und die Reduktion des K\u00fchlbedarfs wird in Abbildung 17 nochmals verdeutlicht. Mit einer Zunahme des Baumbestands nimmt die Anzahl der H\u00e4user mit einem spezifischen Heizbedarf von 50-60 kWh/(m2*a) um 25 Geb\u00e4ude zu. F\u00fcr den K\u00fchlbedarf nimmt die Anzahl der Geb\u00e4ude mit einem spezifischen K\u00fchlbedarf zwischen 20 und 30 kWh/(m2*a) um 155 H\u00e4user zu. [IMAGE: spezifischer Heizbedarf Status Quo spezifischer K\u00fchlbedarf Status Quo Grafenb\u00fchl Grafenb\u00fchl 250 250 1 1 2 200 z 200 3 3 \u00ae Pi [2 a & 150 & 150 \u00f6 \u00f6 3 E3 5 100 \u00a9 100 E 3 z z N 50 8 50 & | E 0 _ [| ni 0 I- _ 10-20 20-30 30-40 40-50 50-60 60-70 20-350 30-40 40-50 50-60 60-70 spezifischer Heizbedarf [kVVh/(m?", + "embedding": [ + 0.0127204405143857, + 0.010997948236763477, + 0.020500903949141502, + -0.02588287927210331, + 0.018732912838459015, + 0.01702992059290409, + -0.029119864106178284, + -0.0046344781294465065, + -0.01821291446685791, + -0.03483983501791954, + 0.00016402266919612885, + 0.002164489822462201, + -0.004517478868365288, + -0.014416932128369808, + 0.002286364324390888, + 0.0020133655052632093, + 0.029015863314270973, + 0.013493936508893967, + 0.018732912838459015, + -0.0014511181507259607, + -0.018251914530992508, + 0.024712884798645973, + 0.008345960639417171, + -0.0006235908367671072, + 0.00018677256593946368, + 0.03294184431433678, + 0.012889439240098, + -0.017393918707966805, + -0.02191789634525776, + 0.0040949806571006775, + 0.012063943780958652, + -0.010042453184723854, + -0.015599926933646202, + 0.010880948975682259, + -0.027299871668219566, + -0.003990981262177229, + -0.0043549793772399426, + -0.014052934013307095, + 0.028287867084145546, + 0.006210721097886562, + 0.01643192209303379, + -0.016613923013210297, + 0.007201966363936663, + -0.007123966701328754, + 0.0006329345051199198, + 0.01225244253873825, + 0.011108447797596455, + -0.002057240344583988, + -0.029067864641547203, + 0.024556884542107582, + 0.007494464982300997, + 0.035957831889390945, + -0.022398894652724266, + 0.012089943513274193, + -0.00836546067148447, + -0.001904491102322936, + 0.0012674940517172217, + 0.004312729928642511, + -0.01220044307410717, + -0.001548617728985846, + -0.0031784852035343647, + -0.016756922006607056, + -0.017601916566491127, + 0.0023188642226159573, + -0.036789827048778534, + -0.013740935362875462, + -0.018251914530992508, + 0.0019629907328635454, + 0.013558936305344105, + -0.0374138243496418, + 0.014026934280991554, + 0.02984786033630371, + 0.0018362413393333554, + -0.013428936712443829, + 0.030159858986735344, + -0.013227437622845173, + 0.03421584144234657, + -0.004819727502763271, + -0.002044240478426218, + -0.0009043082827702165, + 0.01717291958630085, + -0.026415877044200897, + -0.036347828805446625, + 0.030991854146122932, + 0.015014929696917534, + 0.015066929161548615, + -0.0026048626750707626, + 0.024335885420441628, + -0.01032195147126913, + 0.01682192087173462, + 0.01935691013932228, + 0.016197923570871353, + 0.009834453463554382, + 0.0061912210658192635, + -0.009372956119477749, + -0.008105462417006493, + -0.0006085596396587789, + 0.004371229559183121, + 0.01366293616592884, + -0.006896467879414558, + -0.029717860743403435, + 0.004475228954106569, + -0.0030939856078475714, + -0.009509455412626266, + -0.008215961046516895, + 0.012291442602872849, + 0.004104730673134327, + 0.012317442335188389, + 0.01314293872565031, + -0.02554487995803356, + -0.01123194769024849, + 0.0398838147521019, + -0.010991448536515236, + -0.020526904612779617, + 0.02336089126765728, + -0.025960877537727356, + 0.04607178270816803, + -0.010581950657069683, + 0.005102476105093956, + -0.018680911511182785, + 0.020422903820872307, + -0.006022221874445677, + -0.005580223631113768, + -0.02672787383198738, + 0.018576912581920624, + 0.017926916480064392, + 0.0031996099278330803, + -0.012336942367255688, + -0.03260384872555733, + -0.016223924234509468, + -0.03806382045149803, + 0.028937865048646927, + 0.03660782799124718, + 0.004133980721235275, + -0.011927444487810135, + 0.020110905170440674, + -0.01019845250993967, + -0.00439072959125042, + -0.03138185292482376, + -0.037491824477910995, + 0.006545469164848328, + 0.01083544921129942, + -0.025960877537727356, + -0.01682192087173462, + 0.001751741743646562, + 0.0272738728672266, + -0.006470719818025827, + 0.01726391911506653, + 0.002297739265486598, + -0.021774897351861, + -0.00317361019551754, + -0.004650728311389685, + 0.03348784148693085, + 0.006308220326900482, + 0.009164957329630852, + -0.012213442474603653, + -0.019512908533215523, + 0.020565902814269066, + -0.04752777889370918, + -0.007370965555310249, + 0.0014559931587427855, + 0.00632447050884366, + -0.004816477652639151, + 0.010406451299786568, + 0.008254961110651493, + 0.005706973373889923, + 0.001536430325359106, + -0.001871991204097867, + 0.006538969464600086, + -0.02241189405322075, + 0.011589446105062962, + 0.017211919650435448, + -0.01217444334179163, + 0.011530946008861065, + 0.008163961581885815, + 0.015755925327539444, + -0.0019369908841326833, + -0.0009238081984221935, + -0.006805467884987593, + -0.020526904612779617, + -0.029015863314270973, + 0.014260932803153992, + 0.010230951942503452, + 0.015027929097414017, + -0.03385183960199356, + 0.010523450560867786, + 0.03039385750889778, + 0.010776949115097523, + -0.0063049704767763615, + -0.008722959086298943, + 0.0007308403146453202, + 0.0033539843279868364, + 0.01578192599117756, + -0.004621478263288736, + -0.6360610127449036, + 0.009931953623890877, + -0.015430927276611328, + 0.003470983821898699, + 0.003818731987848878, + 0.009756454266607761, + 0.018641913309693336, + 0.011179947294294834, + -0.020084906369447708, + 0.008592959493398666, + 0.008612459525465965, + -0.005755722988396883, + -0.008456460200250149, + 0.013870934955775738, + -0.014286933466792107, + -0.030029859393835068, + -0.01118644792586565, + 0.0012731815222650766, + 0.022060897201299667, + -0.00245048850774765, + -0.010731449350714684, + 0.010549450293183327, + -0.003105360548943281, + 0.0276118703186512, + 0.006093721371144056, + 0.017302919179201126, + 0.000285795540548861, + -0.032291848212480545, + -0.002369238995015621, + 0.017679916694760323, + -0.028469866141676903, + 0.01561292726546526, + -0.004117730539292097, + 0.025154881179332733, + 0.041443806141614914, + -0.010939449071884155, + -0.0023887387942522764, + 0.01462493184953928, + 0.02103390172123909, + 0.0037472324911504984, + -0.01145294588059187, + -0.013545936904847622, + 0.009060957469046116, + 0.00041762302862480283, + 0.001383680966682732, + 0.002339988946914673, + 0.018186915665864944, + 0.00017590542847756296, + 0.007110966835170984, + -0.023048892617225647, + 0.007897462695837021, + 0.0012748065637424588, + 2.7370964744477533e-05, + 0.0055379741825163364, + 0.02221689559519291, + 0.0001398509048158303, + 0.01647092215716839, + -0.0014283682685345411, + -0.008079461753368378, + 0.0051739756017923355, + 0.0016217423835769296, + 0.01212894357740879, + -0.00643496960401535, + -0.021566899493336678, + -0.017796916887164116, + 0.04349779710173607, + -0.04079381003975868, + -0.008670959621667862, + 0.01835591346025467, + -0.010009952820837498, + -0.014936929568648338, + 0.012785440310835838, + -0.007318965625017881, + -0.000780402566306293, + 0.02475188486278057, + 0.009028458036482334, + 0.040845807641744614, + -0.016158923506736755, + -0.003990981262177229, + -0.0019581157248467207, + -0.016704922541975975, + -0.010653450153768063, + -0.01988990604877472, + 0.0005305600352585316, + 0.019187910482287407, + -0.0368158258497715, + -0.008319960907101631, + 0.005037476308643818, + 0.0002224208292318508, + 0.01578192599117756, + -0.0004606853472068906, + 0.033331844955682755, + -0.022242896258831024, + -0.020110905170440674, + -0.008209461346268654, + 0.05652373656630516, + -0.002798236906528473, + 0.048567771911621094, + 0.008657959289848804, + -0.05766772851347923, + -0.013844935223460197, + -0.010731449350714684, + 0.016457922756671906, + 0.007000467274338007, + 0.007910463027656078, + 0.016743920743465424, + -0.010750949382781982, + -0.0168739203363657, + 0.019239909946918488, + -0.028937865048646927, + 0.000882370863109827, + -0.011426946148276329, + -0.0038674818351864815, + -0.010952448472380638, + 0.014637931250035763, + -0.028677865862846375, + 0.035567834973335266, + 0.002088115317746997, + 0.004514229018241167, + 0.009431456215679646, + 0.019122909754514694, + -0.003763482440263033, + 0.01467693131417036, + -0.020903902128338814, + -0.0018427413888275623, + 0.024712884798645973, + 0.015079929493367672, + -0.007266966160386801, + -0.016210924834012985, + -0.013292437419295311, + 0.026415877044200897, + 0.03707582503557205, + 0.03593183308839798, + 0.0018362413393333554, + 0.03112185373902321, + -0.00365623296238482, + 0.02103390172123909, + -0.012401942163705826, + 0.005794723052531481, + -0.041105806827545166, + -0.009977453388273716, + -0.015248928219079971, + 0.022242896258831024, + -0.022801892831921577, + -0.012681440450251102, + -0.003350734245032072, + -0.013740935362875462, + 0.007669963873922825, + -0.013389937579631805, + 0.02004590630531311, + -0.017354918643832207, + -0.002562612993642688, + -0.006051471456885338, + 0.006246470846235752, + 0.00019347565830685198, + 0.00918445736169815, + -0.00794296246021986, + -0.022749893367290497, + -0.011868944391608238, + -0.014052934013307095, + 0.01385793462395668, + 0.011134447529911995, + -0.035203833132982254, + 0.003300359472632408, + -0.007539964746683836, + -0.010055452585220337, + 0.016353923827409744, + 0.006980967242270708, + -0.013792935758829117, + -0.027585871517658234, + -0.014910929836332798, + -0.005762223154306412, + 0.0014909305609762669, + 0.010601450689136982, + -0.026051877066493034, + -0.010048952884972095, + -0.015911925584077835, + 0.00984745379537344, + -0.01738091930747032, + -0.012057443149387836, + 0.004592228680849075, + -0.003261359641328454, + -0.014013933949172497, + -0.001630679820664227, + 0.028417866677045822, + 0.021345900371670723, + 0.015040929429233074, + 0.01569092646241188, + 0.0027511122170835733, + 0.002765737008303404, + 0.011277447454631329, + 0.048619773238897324, + -0.032837845385074615, + 0.031095854938030243, + -0.025921879336237907, + -0.008300460875034332, + 0.015352928079664707, + 0.016691921278834343, + -0.03504783660173416, + 0.016301924362778664, + 0.03166785091161728, + 0.028183868154883385, + 0.03013385832309723, + -0.008657959289848804, + 0.02776787057518959, + -0.053767748177051544, + 0.004445979371666908, + -0.015209929086267948, + 0.04178180545568466, + 0.01717291958630085, + 0.027585871517658234, + -0.010549450293183327, + -0.030367856845259666, + -0.0009376205853186548, + -0.0032061098609119654, + 0.03746582567691803, + -0.010620949789881706, + 0.0024456134997308254, + -0.0036789828445762396, + -0.0061099715530872345, + 0.00895695760846138, + 0.016548922285437584, + 0.022801892831921577, + 0.010224452242255211, + -0.007065467070788145, + 0.015131928957998753, + 0.013675935566425323, + 0.0032093599438667297, + -0.019486907869577408, + -0.0062562208622694016, + -0.021904896944761276, + 0.012304442003369331, + -0.003730982542037964, + 0.009853953495621681, + 0.009912453591823578, + 0.04573378711938858, + 0.020032906904816628, + -0.014897930435836315, + 0.02217789553105831, + 0.007032967172563076, + 0.01722491905093193, + 0.015768926590681076, + 0.009333956055343151, + -0.01983790658414364, + 0.014416932128369808, + -0.00642196973785758, + 0.013298938050866127, + 0.0303418580442667, + 0.004221730399876833, + 0.007630964275449514, + -0.004527228884398937, + 0.016847921535372734, + 0.009411956183612347, + 0.010380451567471027, + 0.01484593003988266, + -0.005557473748922348, + 0.024920882657170296, + -0.005810972768813372, + 0.013597936369478703, + 0.01845991425216198, + 0.009431456215679646, + -0.002226239535957575, + -0.0026422375813126564, + -0.006594219245016575, + -0.0021563649643212557, + 0.0015770550817251205, + -0.017679916694760323, + -0.025609880685806274, + -0.0008588084601797163, + 0.003019235795363784, + 0.004722227808088064, + -0.0027511122170835733, + -0.018589911982417107, + 0.0023448639549314976, + -0.008027462288737297, + -0.009073957800865173, + 0.010432451032102108, + 0.016210924834012985, + 0.013298938050866127, + -0.0006288720760494471, + -0.0009132457198575139, + -0.025375880300998688, + -0.020370904356241226, + 0.027923868969082832, + -0.0062529705464839935, + -0.010750949382781982, + -0.005154476035386324, + 0.008111962117254734, + -0.005235725548118353, + 0.004741727840155363, + -0.013116938062012196, + -0.014403932727873325, + -0.009034957736730576, + -0.00789096299558878, + 0.009054457768797874, + -0.026558876037597656, + 0.023477889597415924, + -0.013727935962378979, + -0.0067924680188298225, + 0.019239909946918488, + 0.002936361124739051, + 0.008046962320804596, + -0.02112490125000477, + -0.006720968522131443, + 0.03686782717704773, + -0.014208933338522911, + -0.00543072447180748, + 0.0013877435121685266, + -0.0007730901124887168, + -0.03088785521686077, + -0.018199915066361427, + 0.00022648331650998443, + 0.0006581218913197517, + 0.02191789634525776, + -0.0034222339745610952, + 0.012193942442536354, + 0.011556945741176605, + -0.013623936101794243, + 0.06671568751335144, + 0.0024212386924773455, + -0.005810972768813372, + -0.017627917230129242, + -0.02389388717710972, + 0.016951920464634895, + 0.03262984752655029, + 0.030653856694698334, + 0.01083544921129942, + 0.014403932727873325, + 0.019759906455874443, + 0.008573459461331367, + -0.005908472463488579, + -0.03533383458852768, + -0.006707968655973673, + 0.01692591980099678, + -0.002697487361729145, + 0.006766468286514282, + 0.01462493184953928, + -0.0026633625384420156, + 0.021540898829698563, + -0.018199915066361427, + -0.0017809916753321886, + -0.019460909068584442, + 0.005167475901544094, + 0.004234730266034603, + -0.010490951128304005, + 0.003136235289275646, + 0.007734963670372963, + 0.0545477457344532, + 0.01239544153213501, + -0.003350734245032072, + 0.015365928411483765, + 0.014494932256639004, + 0.02172289788722992, + -0.009444455616176128, + -0.004614978563040495, + 0.009015457704663277, + 0.014286933466792107, + 0.0071889664977788925, + -0.019031910225749016, + -0.012590440921485424, + 0.009463955648243427, + -0.035801831632852554, + 0.03203184902667999, + -0.012388941831886768, + 0.008131462149322033, + 0.02410188689827919, + 0.011511445976793766, + -0.005102476105093956, + 0.00538197485730052, + -0.01533992774784565, + -0.006460969801992178, + 0.00045215414138510823, + -0.0036822326947003603, + 0.0029916109051555395, + 0.018667912110686302, + -0.02425788715481758, + -0.006948467344045639, + -0.007045967038720846, + -0.0057654730044305325, + -0.008891958743333817, + 0.011394446715712547, + -0.0196429081261158, + -0.0007251528440974653, + -0.01708192005753517, + -0.04495378956198692, + -0.02648087590932846, + 0.03395584225654602, + -0.010653450153768063, + -0.006941967643797398, + -0.010211451910436153, + -0.007903963327407837, + -0.005264975130558014, + -0.00850845966488123, + -0.0007759338477626443, + 0.010906948707997799, + -0.015300928615033627, + -0.023152891546487808, + -0.015508927404880524, + 0.004803477320820093, + 0.006074221339076757, + 0.014780931174755096, + 0.002026365604251623, + -0.004699477925896645, + -0.02235989458858967, + -0.0223728958517313, + -0.026610875502228737, + 0.002018240513280034, + -0.017341919243335724, + -0.01383193489164114, + 0.007708963938057423, + -0.005508724134415388, + -0.020565902814269066, + 0.0004493104061111808, + 0.007221465930342674, + -0.004679977893829346, + -0.0058304728008806705, + 0.024933883920311928, + -0.008722959086298943, + -0.02172289788722992, + -0.008495460264384747, + 0.011569946072995663, + 0.005762223154306412, + 0.016054924577474594, + -0.01791391521692276, + 0.028495866805315018, + 0.014312933199107647, + -0.009827953763306141, + -0.016249923035502434, + 0.014078933745622635, + -0.0009928703075274825, + -0.019317910075187683, + -0.0030127358622848988, + -0.016106924042105675, + 0.004312729928642511, + 0.02401088736951351, + -0.015404927544295788, + 0.004858727101236582, + -6.362860585795715e-05, + 0.0006824968149885535, + 0.003457983722910285, + -0.019044911488890648, + -0.0017696167342364788, + 0.03728382661938667, + 0.0074164653196930885, + 0.017211919650435448, + -0.010828949511051178, + 0.042535800486803055, + 0.01701691932976246, + 0.0011326196836307645, + 0.030263857915997505, + -0.009496455080807209, + 0.021943897008895874, + -0.022853892296552658, + -0.012616440653800964, + -0.010757450014352798, + 0.018134914338588715, + 0.017341919243335724, + -0.019811907783150673, + -0.030419858172535896, + -0.014169933274388313, + -0.011504946276545525, + 0.0009554955177009106, + -0.002765737008303404, + 0.021358899772167206, + -0.040507808327674866, + 0.01994190737605095, + -0.01726391911506653, + 0.01029595173895359, + -0.01024395227432251, + -0.022138895466923714, + -0.021540898829698563, + 0.0026893625035881996, + 0.021397899836301804, + 0.005082976073026657, + -0.035255834460258484, + -0.018966911360621452, + -0.006974467076361179, + 0.0066169691272079945, + -0.009925453923642635, + -0.03606183081865311, + 0.00392273161560297, + -0.015222928486764431, + 0.023347890004515648, + -0.0057134730741381645, + 0.026506876572966576, + 0.020578904077410698, + 0.022580893710255623, + -0.0013146188575774431, + -0.010809449478983879, + 0.008950457908213139, + -0.016899921000003815, + -0.008501959964632988, + -0.03281184658408165, + 0.030809855088591576, + -0.002279864391312003, + 0.008371960371732712, + 0.026545874774456024, + 0.016353923827409744, + 0.014221933670341969, + 0.036789827048778534, + -0.024023886770009995, + -0.014455932192504406, + -0.015430927276611328, + -0.02399788796901703, + -0.01479393057525158, + 0.016054924577474594, + -0.021618898957967758, + 0.0027819869574159384, + -0.035567834973335266, + 0.003968231379985809, + 0.022229894995689392, + -0.01175194513052702, + -0.012291442602872849, + -0.020058905705809593, + 0.0011334321461617947, + -0.03970181569457054, + 0.037881821393966675, + 0.006441469769924879, + -0.0009538705344311893, + -0.008651459589600563, + -0.0004391541879158467, + -0.014052934013307095, + -0.027403872460126877, + 0.025960877537727356, + 0.002092990092933178, + 0.002118990058079362, + -0.012642440386116505, + -0.016418922692537308, + 0.02212589606642723, + -0.009808453731238842, + 0.0028209867887198925, + -0.027455871924757957, + 0.009996953420341015, + -0.010406451299786568, + -0.01583392545580864, + -0.021020902320742607, + -0.013441937044262886, + -0.021995896473526955, + 0.01628892309963703, + 0.009691454470157623, + -0.0021628648974001408, + 0.04081980884075165, + 0.004699477925896645, + 0.00740996515378356, + 0.014403932727873325, + -0.007591964211314917, + 0.025401880964636803, + 0.019655907526612282, + 0.04118380695581436, + 0.011361946351826191, + -0.01702992059290409, + -0.02627287618815899, + -0.024569883942604065, + 0.0033962340094149113, + -0.024283885955810547, + 0.026909874752163887, + 0.01333793718367815, + 0.0022116147447377443, + 0.00025390504742972553, + 0.013038938865065575, + 0.020695902407169342, + -0.005849972367286682, + -0.008963458240032196, + 0.05262375250458717, + 0.02092990279197693, + 0.006142470985651016, + -0.015404927544295788, + 0.011485446244478226, + -0.01895391196012497, + -0.00869045965373516, + -0.003223984967917204, + 0.0016038675094023347, + 0.00592472217977047, + -0.005073226056993008, + 0.007435965351760387, + 0.06177571043372154, + -0.010412951000034809, + 0.02880786545574665, + -0.0012455566320568323, + -0.01756291836500168, + -0.0023026142735034227, + -0.03340984508395195, + -0.005749222822487354, + 0.02339988946914673, + 0.0024391135666519403, + 0.04310779646039009, + -0.02078690193593502, + -0.007195466198027134, + 0.025661880150437355, + -0.02212589606642723, + -0.028937865048646927, + -0.002144990023225546, + -0.0006256220513023436, + 0.01810891553759575, + 0.00033799841185100377, + 0.009476955980062485, + -0.007949463091790676, + 0.017198920249938965, + 0.018251914530992508, + 0.0024846133310347795, + -0.014884930104017258, + -0.0038674818351864815, + -0.004400479141622782, + -0.0014689931413158774, + -0.009697954170405865, + 0.008657959289848804, + 0.011719444766640663, + -0.009866953827440739, + -0.014611931517720222, + -0.014416932128369808, + -0.009613455273211002, + -0.00740996515378356, + 0.03564583137631416, + -0.030861854553222656, + 0.004549978766590357, + 0.009249456226825714, + 0.002000365639105439, + 0.028391866013407707, + -0.010159452445805073, + -0.018433913588523865, + -0.02919786237180233, + 0.023477889597415924, + -0.03936381638050079, + 0.011673945002257824, + 0.05917572230100632, + 0.02187889814376831, + -0.007091466803103685, + 0.004933476913720369, + -0.01627592369914055, + -0.025024883449077606, + 0.03197985142469406, + -0.01173244509845972, + -0.016171924769878387, + -0.014507931657135487, + -0.00485222740098834, + 0.024972882121801376, + -0.011361946351826191, + -0.001390181016176939, + 0.010952448472380638, + 0.01435193233191967, + 0.008852958679199219, + -0.008599460124969482, + -0.0022603643592447042, + 0.013084438629448414, + 0.016197923570871353, + 0.002404988743364811, + 0.0138059351593256, + -0.013519936241209507, + 0.016834920272231102, + 0.02172289788722992, + -0.00642196973785758, + 0.007390465587377548, + -0.034267839044332504, + -0.025310881435871124, + 0.015443927608430386, + 0.00994495302438736, + -0.024374885484576225, + 0.009437955915927887, + -0.018199915066361427, + -0.01602892577648163, + -0.020032906904816628, + 0.013441937044262886, + -0.005180475767701864, + 0.00638621998950839, + 0.017705917358398438, + 0.017211919650435448, + -0.026909874752163887, + 0.025921879336237907, + -0.006321220193058252, + -0.013064938597381115, + 0.008215961046516895, + 0.002310739131644368, + -0.03356584161520004, + -0.010022953152656555, + -0.002741362201049924, + 0.034813836216926575, + 0.005203225649893284, + -0.02618187665939331, + -0.003490483621135354, + 0.008456460200250149, + -0.046097785234451294, + -0.015131928957998753, + -0.012980438768863678, + -0.01184944435954094, + 0.0031573602464050055, + 0.009125957265496254, + -0.01628892309963703, + 0.03364384174346924, + -0.009600454941391945, + 0.025362880900502205, + -0.03569783270359039, + -0.005375474691390991, + 0.0017208668868988752, + -0.014923930168151855, + 0.02538888156414032, + -0.010659949854016304, + -0.021449899300932884, + -0.020825902000069618, + 0.012551440857350826, + 0.0015128678642213345, + -0.004777477588504553, + 0.030055858194828033, + -0.006701468490064144, + 0.005693973507732153, + 0.0006223720847629011, + 0.00365623296238482, + 0.006824967917054892, + 0.013467936776578426, + -1.7786049284040928e-05, + -0.03923381492495537, + -0.004410229157656431, + 0.006464219652116299, + 0.021839898079633713, + -0.028183868154883385, + -0.015040929429233074, + 0.0006995592266321182, + -0.011101948097348213, + -0.011862444691359997, + -0.0001487883710069582, + -0.009294955991208553, + -0.013454937376081944, + -0.002336739096790552, + 0.03182385116815567, + 0.002765737008303404, + 0.004579228349030018, + 0.015846924856305122, + 0.019382908940315247, + -0.01574292592704296, + -0.013675935566425323, + 0.005271475296467543, + -0.03871382027864456, + 0.013558936305344105, + -0.0026097376830875874, + -0.035411834716796875, + 0.025661880150437355, + -0.034371837973594666, + 0.013493936508893967, + 0.005508724134415388, + 0.013220937922596931, + 0.004517478868365288, + -0.024621885269880295, + -0.00290873646736145, + 0.024361886084079742, + 0.018927911296486855, + -0.017354918643832207, + -0.00030387358856387436, + 0.0030891105998307467, + 0.002297739265486598, + -0.012993439100682735, + 0.0014438057551160455, + -0.004650728311389685, + -0.02276289276778698, + -0.011030448600649834, + 0.006681968457996845, + -0.0073839654214680195, + 0.001891491119749844, + -0.013415937311947346, + 0.0004883102374151349, + -0.017211919650435448, + -0.010211451910436153, + 0.17274318635463715, + -0.00918445736169815, + 0.006356970407068729, + 0.01738091930747032, + -0.009470455348491669, + -0.02371188811957836, + 0.027533870190382004, + -0.0017728667007759213, + -0.006330970209091902, + 0.02701387368142605, + -0.02350389026105404, + 0.0034807336051017046, + -0.008898458443582058, + 0.006961467210203409, + 0.022008897736668587, + -0.018875911831855774, + -0.03746582567691803, + -0.007227966096252203, + -0.009171457029879093, + 0.027039872482419014, + 0.022008897736668587, + -0.020994901657104492, + 0.008989457972347736, + -0.02098190225660801, + 0.03405984118580818, + 0.0065649691969156265, + -0.008326460607349873, + -0.007689463905990124, + 0.037049826234579086, + 0.0035197334364056587, + -0.002114115050062537, + -0.006720968522131443, + 0.01879791170358658, + -0.016691921278834343, + -0.011036948300898075, + 0.007182466331869364, + 0.018719911575317383, + -0.0023594889789819717, + 0.027793869376182556, + 0.024517884477972984, + 0.021072901785373688, + -0.016600921750068665, + 0.005895472597330809, + -0.011712945066392422, + -0.006701468490064144, + 0.015950925648212433, + -0.006194470915943384, + 0.016106924042105675, + -0.01726391911506653, + -0.013519936241209507, + -0.023971887305378914, + -0.00494972663000226, + -0.004829477518796921, + 0.02265889383852482, + -0.006028721574693918, + -0.01517092902213335, + 0.008579960092902184, + -0.024361886084079742, + -0.0056322235614061356, + 0.010152952745556831, + -0.03400783985853195, + 0.023048892617225647, + -0.013974934816360474, + 0.02607787773013115, + -0.00883345864713192, + 0.004072230774909258, + -0.02787186950445175, + 0.011465946212410927, + 0.012902439571917057, + -0.014026934280991554, + -0.01886291243135929, + -0.026701875030994415, + -0.017484918236732483, + 0.013376937247812748, + -0.00989945326000452, + -0.024309886619448662, + 0.017289919778704643, + 0.0026877373456954956, + 0.02622087672352791, + 7.962462404975668e-05, + -0.004689727909862995, + 0.023828888311982155, + 0.0036659827455878258, + -0.008521459996700287, + 0.0015957425348460674, + -0.04458979144692421, + 0.017952915281057358, + 0.0012975564459338784, + 0.009177956730127335, + -0.03418983891606331, + -0.00439072959125042, + 0.028001869097352028, + -0.007760963402688503, + -0.0003603420627769083, + 0.02514188177883625, + -0.014039934612810612, + 0.005037476308643818, + 0.010458450764417648, + -0.028391866013407707, + -0.0037472324911504984, + 0.0008401210652664304, + 0.04612378403544426, + 0.024023886770009995, + -0.0032646097242832184, + -0.01865491271018982, + 0.014286933466792107, + -0.0011204322800040245, + 0.023074891418218613, + -0.005508724134415388, + -0.0019142410019412637, + -0.002959111239761114, + -0.019070910289883614, + -0.010672950185835361, + -0.002455363515764475, + 0.013402936980128288, + 0.01861591264605522, + 0.009457455947995186, + -0.018394913524389267, + -0.0168739203363657, + -0.011816944926977158, + -0.020799903199076653, + 0.003490483621135354, + 0.012317442335188389, + 0.008137961849570274, + -0.00366923282854259, + -0.015495927073061466, + -0.02538888156414032, + 0.007767463568598032, + -0.01324043795466423, + -0.025050882250070572, + 0.019811907783150673, + -0.03395584225654602, + 0.01184944435954094, + 0.002830736804753542, + -1.9207916921004653e-05, + 0.03569783270359039, + -0.01032195147126913, + -0.02914586290717125, + -0.005849972367286682, + 0.016691921278834343, + 0.03299384564161301, + -0.013727935962378979, + 0.012362942099571228, + -0.021735897287726402, + 0.004436229355633259, + -0.01561292726546526, + 0.004962726961821318, + -0.010490951128304005, + -0.013012939132750034, + -0.025921879336237907, + 0.0030631106346845627, + 0.006282220594584942, + -0.006688468623906374, + -0.0098019540309906, + 0.0276118703186512, + -0.021813897415995598, + -0.013961934484541416, + -0.0540277473628521, + 0.008111962117254734, + 0.019525907933712006, + 0.00013599154772236943, + 0.0003889825602527708, + 0.003961731214076281, + -0.02202189713716507, + -0.0005476224469020963, + -0.0039487313479185104, + -0.1632792353630066, + 0.008924458175897598, + 0.014312933199107647, + -0.02683187462389469, + 0.009151956997811794, + 0.006714468356221914, + -0.003180110128596425, + -0.007500964682549238, + -0.0035359833855181932, + 0.011465946212410927, + 0.020747901871800423, + -0.011608945205807686, + 0.004081980790942907, + 0.009470455348491669, + -0.014234933070838451, + -0.01588592492043972, + -0.02711787261068821, + 0.026090877130627632, + 0.02494688332080841, + 0.027923868969082832, + 0.013961934484541416, + -0.030653856694698334, + 0.01658792234957218, + 0.015482927672564983, + 0.013493936508893967, + -0.008332961238920689, + -0.003662732895463705, + 0.04997176676988602, + 0.011153947561979294, + -0.007390465587377548, + -0.008592959493398666, + -0.007617964409291744, + 0.031589850783348083, + -0.01985090784728527, + 0.00393248163163662, + -0.02103390172123909, + 0.0032971096225082874, + -0.003293859539553523, + -0.015261928550899029, + 0.023646889254450798, + 0.021410899236798286, + 0.0016851171385496855, + -0.006096971221268177, + 0.009548455476760864, + -0.02623387612402439, + 0.009054457768797874, + 0.024777883663773537, + -0.006233470980077982, + -0.018940910696983337, + 0.002817736705765128, + -0.013246937654912472, + -0.024712884798645973, + 0.009606954641640186, + 0.021735897287726402, + -0.001193556934595108, + 0.023243891075253487, + -0.0013154313201084733, + 0.015651926398277283, + -0.00590197229757905, + 0.003076110500842333, + -0.011205947026610374, + -0.005476224236190319, + 0.015300928615033627, + 0.0076959640718996525, + 0.012889439240098, + -0.021839898079633713, + -0.007390465587377548, + 0.00021023339650128037, + -0.004338729660958052, + -0.005823972634971142, + -0.023620888590812683, + -0.012902439571917057, + 0.03023785911500454, + 0.0031849851366132498, + 0.0006508094375021756, + 0.008131462149322033, + -0.00019266315212007612, + 0.003701732726767659, + 0.012154943309724331, + -0.012824439443647861, + -0.0026129877660423517, + 0.058759722858667374, + -0.03140785172581673, + -0.019187910482287407, + -0.01465093158185482, + -0.010620949789881706, + -0.0015185553347691894, + 0.005388474557548761, + 0.013207938522100449, + 0.011985943652689457, + 0.003193109994754195, + -0.03171985223889351, + -0.01229794230312109, + -0.0272738728672266, + 0.015391928143799305, + -0.00341573404148221, + 0.012733439914882183, + 0.0020149906631559134, + -0.021020902320742607, + -0.02489488385617733, + -0.0002780768263619393, + -0.022229894995689392, + -0.02820986695587635, + -0.0008921208209358156, + 0.01900591142475605, + -0.0037277324590831995, + -0.017952915281057358, + 0.023191891610622406, + 0.03364384174346924, + -0.0036464829463511705, + -0.002190489787608385, + -0.014468932524323463, + 0.03413784131407738, + -0.0024959882721304893, + -0.002760862000286579, + -0.007955962792038918, + 0.006967967376112938, + -0.025856878608465195, + 0.019655907526612282, + -0.012031443417072296, + 0.03153785318136215, + 0.008553960360586643, + -0.013922934420406818, + 0.015430927276611328, + 0.0009904328035190701, + -0.018719911575317383, + -0.08392760902643204, + 0.02553188055753708, + 0.03775182366371155, + 0.005297475028783083, + 0.005414474755525589, + 0.0051772259175777435, + -0.015443927608430386, + 0.016210924834012985, + -0.004536978900432587, + 0.028287867084145546, + -0.043029800057411194, + -0.018329914659261703, + -0.0013235562946647406, + -0.013233938254415989, + 0.021202901378273964, + -0.00939895585179329, + -0.008079461753368378, + -0.027689870446920395, + -0.01647092215716839, + 0.029535861685872078, + 0.019265910610556602, + -0.0016258049290627241, + -0.008878958411514759, + 0.0012471816735342145, + -0.009639455005526543, + -0.01930490881204605, + -0.03112185373902321, + 0.012525441125035286, + 0.017887916415929794, + 0.014728930778801441, + 0.031199853867292404, + -0.0178099162876606, + 0.010536450892686844, + -0.018732912838459015, + 0.01861591264605522, + -0.010471451096236706, + 0.0049139768816530704, + -0.018186915665864944, + 0.03242184966802597, + -0.03148585185408592, + 0.01019845250993967, + 0.00979545433074236, + 0.03304584324359894, + -0.030055858194828033, + 0.0014486807631328702, + -0.00739696528762579, + -0.021449899300932884, + 0.0018866161117330194, + 0.007747963536530733, + -0.016808921471238136, + -0.020695902407169342, + -0.02677987515926361, + 0.0011017448268830776, + 0.01678292080760002, + 0.017432918772101402, + 0.00591497216373682, + -0.0071889664977788925, + -0.016899921000003815, + -0.013272937387228012, + -0.009762953966856003, + -0.022788893431425095, + 0.00869045965373516, + -0.021696899086236954, + 0.0226718932390213, + 0.019980905577540398, + -0.0015307428548112512, + -0.024530885741114616, + -0.0069029675796628, + -0.0011253071716055274, + -0.031199853867292404, + -0.03660782799124718, + 0.01831691339612007, + 0.00399423111230135, + -0.002081615151837468, + -0.021813897415995598, + -0.01086144894361496, + -0.030809855088591576, + -0.00937945581972599, + 0.008664458990097046, + -0.014572931453585625, + -0.031069854274392128, + -0.02588287927210331, + 0.02449188567698002, + -0.015573927201330662, + 0.032187849283218384, + 0.01900591142475605, + 0.0002602018939796835, + -0.023243891075253487, + 0.013415937311947346, + -0.032837845385074615, + 0.015352928079664707, + 0.011069447733461857, + 0.009190957061946392, + -0.01125794742256403, + -0.012330441735684872, + 0.030939854681491852, + 0.012362942099571228, + 0.0009051207453012466, + 0.0073839654214680195, + 0.006785968318581581, + -0.0392078161239624, + -0.012180943042039871, + -0.05340375006198883, + 0.008280960842967033, + 0.0266758743673563, + -0.009606954641640186, + -0.026298876851797104, + -0.0038544819690287113, + -0.0008124961750581861, + 0.005489224102348089, + -0.011816944926977158, + 0.0024082388263195753, + -0.022398894652724266, + 0.024387884885072708, + -0.005498974118381739, + -0.016509922221302986, + -0.03145985305309296, + -0.022333895787596703, + -0.00370498257689178, + 0.01462493184953928, + 0.01325993798673153, + 0.027429871261119843, + -0.009418455883860588, + 0.02475188486278057, + -0.002760862000286579, + -0.00393573148176074, + -0.022645894438028336, + -0.011342447251081467, + -0.012044443748891354, + 0.017185918986797333, + -0.016145924106240273, + -0.03811582177877426, + 0.013844935223460197, + -0.025128882378339767, + -0.0047514778561890125, + 0.01286343950778246, + -0.004556478466838598, + -0.010503950528800488, + 0.0018671161960810423, + 0.03447583690285683, + 0.022645894438028336, + 0.05459974333643913, + -0.03192785009741783, + -0.03260384872555733, + 0.010347951203584671, + -0.032447848469018936, + 0.01429993286728859, + 0.0020036157220602036, + 0.023542890325188637, + -0.010971948504447937, + 0.019564907997846603, + -0.021072901785373688, + 0.043029800057411194, + 0.008345960639417171, + 0.018043914809823036, + -0.021345900371670723, + 0.007799963466823101, + -0.018719911575317383, + -0.0007600901881232858, + 0.019668906927108765, + 0.006168471183627844, + -0.0187069121748209, + 0.05046576261520386, + 0.01076394971460104, + 0.012447441928088665, + -0.01884991116821766, + 0.011842944659292698, + -0.02909386344254017, + -0.03403383865952492, + -0.00016706953465472907, + 0.015898926183581352, + -0.043627794831991196, + -0.0027462372090667486, + -0.022151896730065346, + 0.009359955787658691, + 0.042951799929142, + -0.00740996515378356, + 0.008540960028767586, + 0.009522455744445324, + 0.0031378602143377066, + 0.00033027969766408205, + 0.03385183960199356, + 0.005476224236190319, + 0.007026467006653547, + 0.0046864780597388744, + 0.002396863652393222, + 0.030861854553222656, + 0.00925595685839653, + -0.016834920272231102, + -0.00595072191208601, + 0.002380613936111331, + 0.008514960296452045, + -0.004150230437517166, + 0.024972882121801376, + -0.011023947969079018, + -0.01269444078207016, + 0.018342914059758186, + 0.01316243875771761, + 0.0029737360309809446, + -0.015625927597284317, + 0.013935934752225876, + 0.037777822464704514, + -0.006733968388289213, + 0.005775223020464182, + -0.008527959696948528, + -0.013116938062012196, + -0.005989721976220608, + 0.013233938254415989, + 0.00826796144247055, + -0.0312778539955616, + -0.009236456826329231, + 0.0023594889789819717, + -0.002101115183904767, + 0.0108874486759305, + -0.0008766833925619721, + -0.0008547459729015827, + -0.025843879207968712, + 0.020357904955744743, + -0.02880786545574665, + -0.010035952553153038, + -0.03671182692050934, + 0.03013385832309723, + -0.0012138693127781153, + 0.022294895723462105, + -0.005775223020464182, + 0.025011882185935974, + 0.015079929493367672, + 0.009125957265496254, + -0.00317361019551754, + 0.017159920185804367, + -0.012466941960155964, + -0.014026934280991554, + 0.012603441253304482, + 0.005528224166482687, + -0.01861591264605522, + -0.030965855345129967, + -0.021150900050997734, + -0.003903231816366315, + 0.0061099715530872345, + 0.010230951942503452, + 0.014715931378304958, + 0.11699945479631424, + 0.03821982070803642, + -0.005433974321931601, + 0.005037476308643818, + -0.009164957329630852, + 0.03112185373902321, + 0.006425220053642988, + 0.0028843614272773266, + 0.018433913588523865, + -0.062087707221508026, + 0.002565863076597452, + -0.03078385628759861, + 0.01569092646241188, + -0.05137575790286064, + -0.017991915345191956, + -0.014728930778801441, + 0.0009530580136924982, + 0.0017712416592985392, + -0.003890231717377901, + 0.015092928893864155, + 0.004185980185866356, + -0.011322947219014168, + 0.02369888871908188, + 0.010510451160371304, + -0.03450183942914009, + -0.009814954362809658, + 0.01791391521692276, + -0.012544941157102585, + -0.024231886491179466, + 0.005606223829090595, + -0.014403932727873325, + -0.01628892309963703, + -0.06453169882297516, + -0.027793869376182556, + 0.006733968388289213, + -0.009502955712378025, + -0.015664925798773766, + -0.03320184350013733, + 0.009990452788770199, + -0.005872722249478102, + 0.006535719148814678, + 0.02533688209950924, + -0.009710954502224922, + -0.015950925648212433, + 0.014767930842936039, + -0.008053462021052837, + -0.022827893495559692, + -0.02579187974333763, + -0.035255834460258484 + ], + "metadata": { + "source": "Kreye_Marieke_BA_241_V2.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 17, + "has_images": true, + "image_count": 98, + "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", + "links": [], + "last_modified": "2025-05-05T23:00:23", + "_known_field_names": "frozenset({'is_continuation', 'sent_to', 'header_footer_type', 'email_message_id', 'filename', 'languages', 'detection_class_prob', 'sent_from', 'link_texts', 'cc_recipient', 'subject', 'image_mime_type', 'image_path', 'filetype', 'page_number', 'last_modified', 'signature', 'detection_origin', 'text_as_html', 'attached_to_filename', 'bcc_recipient', 'data_source', 'link_start_indexes', 'category_depth', 'emphasized_text_tags', 'parent_id', 'orig_elements', 'page_name', 'coordinates', 'url', 'link_urls', 'file_directory', 'links', 'table_as_cells', 'emphasized_text_contents', 'key_value_pairs', 'image_base64'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "Kreye_Marieke_BA_241_V2.pdf", + "detection_class_prob": 0.3422867953777313, + "parent_id": "e02392183bc6851689602ad4b9f6039f", + "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", + "id": "ce00eae5-7e07-454f-9e4f-f79ac36f92f4", + "processing_timestamp": "2025-05-05T23:15:46.977945", + "chunk_number": 27, + "total_chunks": 56, + "chunking_strategy": "hybrid", + "word_count": 624 + } +} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000028.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000028.json new file mode 100644 index 0000000000000000000000000000000000000000..03019b0d84bbddd55e7a3d30f9f49daacc4efca1 --- /dev/null +++ b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000028.json @@ -0,0 +1,1570 @@ +{ + "id": "61a115b2-0ff7-441a-f6d9-eb3d00000028", + "content": "F\u00fcr den K\u00fchlbedarf nimmt die Anzahl der Geb\u00e4ude mit einem spezifischen K\u00fchlbedarf zwischen 20 und 30 kWh/(m2*a) um 155 H\u00e4user zu. [IMAGE: spezifischer Heizbedarf Status Quo spezifischer K\u00fchlbedarf Status Quo Grafenb\u00fchl Grafenb\u00fchl 250 250 1 1 2 200 z 200 3 3 \u00ae Pi [2 a & 150 & 150 \u00f6 \u00f6 3 E3 5 100 \u00a9 100 E 3 z z N 50 8 50 & | E 0 _ [| ni 0 I- _ 10-20 20-30 30-40 40-50 50-60 60-70 20-350 30-40 40-50 50-60 60-70 spezifischer Heizbedarf [kVVh/(m? *a)] spezifischer K\u00fchlbedarf [kWh/(m? *a)] mohne B\u00e4ume m Status Quo mohne B\u00e4ume mStatus Quo]\n\nAbbildung 17: Spezifischer Heiz- und K\u00fchlbedarf im Fallstudiengebiet Gromb\u00fchl mit und ohne dem Verschattungseffekt durch B\u00e4ume (eigene Darstellung und Berechnung auf Grundlage der Simulationsergebnisse)\n31\nFallstudien\nDer Verschattungseffekt der B\u00e4ume hat somit auch einen Einfluss auf die w\u00e4rmebedingten CO2e-Emissionen. Ein erh\u00f6hter Heizbedarf f\u00fchrt zu einem Anstieg um 3,0 % auf 959 t CO2e. Der reduzierte K\u00fchlbedarf bedingt eine Reduktion der k\u00fchlseitigen Emissionen um 7,0 % auf 301 t CO2e. Die Fallstudiengebiete unterschieden sich stark. W\u00e4hrend Gromb\u00fchl eine typische gr\u00fcnderzeitliche, enge Bebauungsstruktur aufweist, ist Grafenb\u00fchl durch eine lockere Bebauung mit Ein- und Zweifamilienh\u00e4usern charakterisiert. Aus den st\u00e4dtebaulichen Unterschieden resultiert die st\u00e4rkere thermische Belastung in Gromb\u00fchl. Hinsichtlich des energetischen Zustands weisen die Geb\u00e4ude in Grafenb\u00fchl im Durchschnitt einen deutlich geringeren spezifischen Heizbedarf auf. Der spezifische K\u00fchlbedarf ist in Gromb\u00fchl etwas geringer. Das Potential, welches der Verschattungseffekt auf den thermischen Geb\u00e4udeenergiebedarf hat, wird in beiden Fallstudien ersichtlich. In den nachfolgenden Kapiteln erfolgt die Erl\u00e4uterung der Baumpflanzungsszenarien. ## 5.3 Aufstellung der Baumpflanzungsszenarien\n\nDie Baumpflanzungsszenarien werden f\u00fcr den \u00f6ffentlichen Raum aufgestellt. Eine Ber\u00fccksichtigung von Potentialfl\u00e4chen in Innenh\u00f6fen findet im Rahmen dieser Arbeit nicht statt. Zum einen liegen hierf\u00fcr keine genauen Daten vor, zum anderen k\u00f6nnen Gemeinden nicht ohne die Zustimmung und/ oder Entsch\u00e4digung der Eigent\u00fcmer im privaten Raum B\u00e4ume anpflanzen. Des Weiteren werden Stellpl\u00e4tze in den Innenh\u00f6fen auch f\u00fcr alternative Mobilit\u00e4tsformen weiterhin ben\u00f6tigt oder werden nach Wunsch des Grundst\u00fccksbesitzers umgestaltet oder umgenutzt. Als Potentialfl\u00e4che f\u00fcr Baumpflanzungen wurde ausschlie\u00dflich der Parkraum des \u00f6ffentlichen Stra\u00dfenraums betrachtet. Diese Fl\u00e4chen sind abh\u00e4ngig von der Mobilit\u00e4tsver\u00e4nderung verf\u00fcgbar. Wie bereits in Kapitel 4 erl\u00e4utert, kann diese Potentialfl\u00e4che \u00fcber den Stra\u00dfenquerschnitt je Quartiersarchetyp und dem ergriffenen Mobilit\u00e4tsszenario errechnet werden. Eine Zuordnung der Stra\u00dfenquerschnitte und der prozentuale Anteil der Potentialfl\u00e4che an der Stra\u00dfenbreite ist in Anhang 4 dargestellt. Die Forschungsgesellschaft Landschaftsentwicklung Landschaftsbau e.V (FLL) definiert erg\u00e4nzend zu DIN 18916 Pflanzempfehlungen f\u00fcr Stadtb\u00e4ume. In der Empfehlung zur Baumpflanzung Teil 2 wird eine unversiegelte Fl\u00e4che von mindestens 6 m2 f\u00fcr B\u00e4ume im Stra\u00dfenraum vorgesehen (vgl. L\u00f6sken et al. 2010, S. 16).", + "embedding": [ + 0.02290240302681923, + -0.010723834857344627, + 0.025129562243819237, + -0.036973413079977036, + 0.010073710232973099, + 0.0010572568280622363, + -0.029944345355033875, + 0.0016156557248905301, + -0.004644205793738365, + -0.016980478540062904, + -0.0028241791296750307, + 0.009977157227694988, + -0.016607139259576797, + -0.003302117111161351, + 0.006552739534527063, + 0.02914617210626602, + 0.0354028157889843, + 0.014135378412902355, + 0.022207221016287804, + 0.007930230349302292, + -0.019645344465970993, + 0.030485043302178383, + 0.014676076360046864, + 0.011007057502865791, + -0.004373856820166111, + 0.0035789029207080603, + 0.024833466857671738, + -0.02007017843425274, + -0.022052735090255737, + 0.001391974394209683, + 0.02055937983095646, + -0.023494595661759377, + -0.027549827471375465, + 0.006617107894271612, + -0.027137868106365204, + -0.006115031894296408, + -0.007119184359908104, + -0.006610671058297157, + 0.0221685990691185, + -0.010710961185395718, + 0.012403858825564384, + 0.0019149704603478312, + -0.00031419997685588896, + -0.012114199809730053, + 0.02053363248705864, + 0.002091984497383237, + 0.008091152645647526, + -0.007582639344036579, + -0.025554396212100983, + 0.02287665568292141, + 0.010150953195989132, + 0.03584052249789238, + -0.01459883339703083, + 0.007698503322899342, + -0.027189362794160843, + 0.0005736865568906069, + -0.02868271805346012, + -0.001371054444462061, + -0.00917898491024971, + 0.0016237018862739205, + -0.013993767090141773, + -0.013491691090166569, + -0.0034533836878836155, + 0.004518686793744564, + -0.04395098611712456, + -0.00848380196839571, + -0.005619392264634371, + -0.0063950358889997005, + 0.005947673227638006, + -0.014959299005568027, + 0.01533263735473156, + 0.046860452741384506, + 0.016632886603474617, + -0.004006954841315746, + 0.01914326846599579, + -0.01115510519593954, + 0.016787370666861534, + 0.00035764891072176397, + -0.02241320163011551, + 0.004425351973623037, + 0.025206804275512695, + -0.03156643733382225, + -0.03519683703780174, + 0.052988361567258835, + 0.016607139259576797, + 0.01699335128068924, + -0.00868978165090084, + 0.028888696804642677, + -0.018460959196090698, + 0.02097134105861187, + 0.023623334243893623, + 0.013131226412951946, + 0.01341444905847311, + 0.003434073179960251, + 0.0016719783889129758, + -0.008760587312281132, + -0.002664866391569376, + 0.00717067951336503, + 0.015023667365312576, + -0.017907388508319855, + -0.014508717693388462, + 0.012210752815008163, + -0.016246674582362175, + -0.006681476719677448, + -0.018280725926160812, + -0.0024250929709523916, + 0.008219890296459198, + 0.009281974285840988, + 0.008110463619232178, + -0.024498747661709785, + -0.020546507090330124, + 0.04624251276254654, + -0.01604069396853447, + -0.011039241217076778, + 0.02182100899517536, + -0.02568313293159008, + 0.04420846328139305, + 0.00416787713766098, + -0.008290695957839489, + 0.003311772597953677, + 0.028090525418519974, + -0.018319347873330116, + -0.004460754804313183, + -0.012133510783314705, + 0.026622917503118515, + 0.0009164501680061221, + -0.004399604629725218, + -0.01843521185219288, + -0.031205972656607628, + -0.02527117356657982, + -0.019413616508245468, + 0.008625413291156292, + 0.015152405016124249, + 0.029815606772899628, + -0.021885376423597336, + 0.026159461587667465, + -0.0011908219894394279, + 0.0013943881494924426, + -0.027678564190864563, + -0.04348753020167351, + -0.005265364423394203, + 0.0217051450163126, + -0.045521583408117294, + -0.02287665568292141, + -0.002766247373074293, + 0.022490443661808968, + -0.00315567827783525, + 0.02224584110081196, + 0.004306269809603691, + -0.01579609327018261, + -0.004666734952479601, + 0.003707640338689089, + 0.02736959420144558, + -0.003240966936573386, + 0.012339490465819836, + -0.0023414134047925472, + -0.009172547608613968, + 0.005654795095324516, + -0.04001161828637123, + -0.0037430431693792343, + 0.02639118954539299, + -0.0019503732910379767, + -0.004547652788460255, + 0.013556060381233692, + -0.008316443301737309, + 0.007473212666809559, + 0.007782182656228542, + -0.004576618317514658, + 0.007325164508074522, + -0.02282516099512577, + 0.018911540508270264, + 0.02685464546084404, + -0.03393520787358284, + 0.015010793693363667, + 0.009230479598045349, + 0.006803777534514666, + -0.0036497083492577076, + 0.018563948571681976, + 0.01882142387330532, + -0.02685464546084404, + -0.035068098455667496, + 0.011773045174777508, + 0.0014281817711889744, + 0.020224662497639656, + -0.04763288050889969, + 0.0028515357989817858, + 0.022026987746357918, + 0.016735875979065895, + 0.004834093619138002, + 0.0060667553916573524, + 0.0014426647685468197, + 0.008026784285902977, + 0.020816855132579803, + 0.007917356677353382, + -0.6319466829299927, + 0.019156141206622124, + -0.017057720571756363, + -0.017366690561175346, + -0.002746936632320285, + 0.030819760635495186, + 0.02519393153488636, + -0.0022915278095752, + -0.011972588486969471, + 0.01109717320650816, + 0.014779066666960716, + 0.003171770367771387, + -0.007582639344036579, + 0.009899914264678955, + -0.00766631867736578, + -0.026185208931565285, + 0.0005390883306972682, + -0.003112229285761714, + 0.020842602476477623, + -0.009256226941943169, + -0.007318727672100067, + 0.012899498455226421, + -0.01786876656115055, + 0.009172547608613968, + 0.014830561354756355, + 0.013762040063738823, + -0.011077863164246082, + -0.03383221849799156, + -0.0032844156958162785, + 0.013092604465782642, + -0.011959714815020561, + 0.027163615450263023, + 0.0009687497513368726, + 0.026700159534811974, + 0.05319434031844139, + 0.0033922335132956505, + 0.0023027921561151743, + 0.002780730137601495, + 0.00554858660325408, + 0.011341774836182594, + -0.028888696804642677, + -0.010369806550443172, + 0.0037913196720182896, + -0.0016993351746350527, + 0.00012461388541851193, + 0.0091661112383008, + 0.025618765503168106, + -0.009964283555746078, + -0.01097487285733223, + -0.01759841851890087, + 0.022464696317911148, + 0.011361085809767246, + 0.004528341814875603, + -0.0023623332381248474, + 0.012416733428835869, + 0.0068810200318694115, + 0.020984213799238205, + -0.019246257841587067, + -0.014071010053157806, + 0.00718355318531394, + 0.012378111481666565, + 0.009243353269994259, + -0.012397422455251217, + -0.02729235216975212, + -0.024061040952801704, + 0.02282516099512577, + -0.04536709934473038, + -0.01794600859284401, + 0.018306473270058632, + -0.015371259301900864, + -0.012577654793858528, + 0.0003127919335383922, + -0.00208393856883049, + -0.009990030899643898, + 0.011560628190636635, + 0.00921760592609644, + 0.03813204914331436, + -0.01762416586279869, + -0.017147837206721306, + 0.018834298476576805, + -0.005355480592697859, + -0.020816855132579803, + -0.013774913735687733, + -0.005320077762007713, + 0.008837830275297165, + -0.03900746628642082, + -0.00022106643882580101, + -0.0043577649630606174, + -0.0007812757976353168, + 0.01745680719614029, + 0.025013698264956474, + 0.022284463047981262, + -0.00013265998859424144, + -0.02633969485759735, + -0.014997920021414757, + 0.04021759703755379, + -0.0037108587566763163, + 0.02870846539735794, + 0.007621260825544596, + -0.058704305440187454, + -0.013388700783252716, + -0.006868146359920502, + 0.012339490465819836, + 0.006279171910136938, + 0.016349663957953453, + 0.011676492169499397, + -0.012545470148324966, + -0.016414033249020576, + 0.0220012404024601, + -0.029352152720093727, + -0.004972486291080713, + -0.00767919234931469, + -0.0071578058414161205, + -0.019104646518826485, + 0.012287995778024197, + -0.023739196360111237, + 0.0400373674929142, + 0.003080044873058796, + 0.006996883545070887, + 0.007524707354605198, + 0.027112120762467384, + -0.0015182980569079518, + 0.022619180381298065, + -0.02641693688929081, + -0.005838246084749699, + 0.030073082074522972, + 0.01911752112209797, + -0.0025023354683071375, + -0.010897629894316196, + -0.01745680719614029, + 0.015165278688073158, + 0.015409880317747593, + 0.02960962802171707, + -0.006687913555651903, + 0.033703479915857315, + -0.0014651938108727336, + 0.02424127422273159, + -0.006314574740827084, + 0.014083883725106716, + -0.033703479915857315, + -0.02729235216975212, + -0.011541318148374557, + 0.018808551132678986, + -0.014083883725106716, + -0.0012463399907574058, + 0.0060056047514081, + -0.02173089236021042, + 0.006874583195894957, + -0.011277405545115471, + -0.004560526460409164, + -0.0063918172381818295, + -0.0024106099735945463, + -0.0037205140106379986, + -0.004100289661437273, + 0.001665541552938521, + 0.006472278386354446, + -0.0027388904709368944, + -0.024575991556048393, + -0.007357348687946796, + -0.01923338510096073, + 0.017443932592868805, + 0.015834713354706764, + -0.03071676939725876, + -0.005957328248769045, + -0.0074217175133526325, + -0.01258409209549427, + 0.010897629894316196, + 0.006893893703818321, + 0.0002403770777164027, + -0.041736699640750885, + -0.008638286963105202, + -0.014843435026705265, + 0.013723419047892094, + 0.001201281906105578, + -0.01759841851890087, + -0.020623749122023582, + -0.016542769968509674, + -0.00460880296304822, + -0.016169430688023567, + -0.009893477894365788, + 0.01999293640255928, + 0.004010173492133617, + -0.019645344465970993, + -0.004071323666721582, + 0.03846677020192146, + 0.028116272762417793, + 0.02304401434957981, + 0.020173167809844017, + -0.009584507904946804, + -0.013362953439354897, + 0.012835130095481873, + 0.04181394353508949, + -0.013852155767381191, + 0.028579726815223694, + -0.004537997301667929, + -0.009964283555746078, + 0.01645265333354473, + 0.014676076360046864, + -0.028605474159121513, + 0.012616275809705257, + 0.027652816846966743, + 0.013890777714550495, + 0.021962620317935944, + -0.009603817947208881, + 0.025786124169826508, + -0.037926070392131805, + 0.02788454480469227, + -0.008670471608638763, + 0.029970092698931694, + 0.008927945978939533, + 0.01596345193684101, + -0.00238003465346992, + -0.030279062688350677, + 0.012088452465832233, + 0.0006207561818882823, + 0.028528232127428055, + -0.014843435026705265, + 0.0029577442910522223, + 0.006021697074174881, + -0.00827782228589058, + 0.015899082645773888, + 0.006098939571529627, + 0.020636623725295067, + 0.009430022910237312, + -0.0013179503148421645, + 0.019130393862724304, + 0.007595513015985489, + 0.014972172677516937, + -0.0008657597354613245, + -0.00277429330162704, + -0.008155521005392075, + 0.006034570746123791, + -0.01593770459294319, + 0.017147837206721306, + 0.016658633947372437, + 0.04940945655107498, + 0.022026987746357918, + -0.026571422815322876, + 0.026004977524280548, + 0.018151989206671715, + 0.014894929714500904, + 0.023764943704009056, + 0.0033825780265033245, + -0.02094559371471405, + 0.014032389037311077, + 0.005368354264646769, + 0.012249373830854893, + 0.012146384455263615, + -0.016542769968509674, + 0.02099708840250969, + -0.0064046913757920265, + 0.012519722804427147, + 0.006642855703830719, + 0.012577654793858528, + 0.015203899703919888, + -0.009944972582161427, + 0.024009546265006065, + -0.004496157635003328, + 0.01579609327018261, + 0.028631223365664482, + 0.01027968991547823, + 0.0036271794233471155, + 0.01284156646579504, + -0.01925913244485855, + -0.0037591352593153715, + -0.0024427943862974644, + -0.01609218865633011, + -0.03609799966216087, + 0.009198294952511787, + -0.0031138386111706495, + 0.018499581143260002, + -0.016658633947372437, + -0.023031141608953476, + 0.007827240973711014, + 0.004631332121789455, + 0.001168292947113514, + -0.004119600169360638, + 0.015268268994987011, + 0.0006054685800336301, + -0.002724407473579049, + 0.003041423624381423, + -0.011052115820348263, + -0.022129978984594345, + 0.030922750011086464, + -0.005609737243503332, + -0.013929398730397224, + -0.002326930407434702, + 0.01194040384143591, + 0.00014553373330272734, + 0.008303569629788399, + -0.020495012402534485, + -0.02917191945016384, + -0.01716070994734764, + 0.0024653233122080564, + 0.010286127217113972, + -0.009005188941955566, + 0.008490239270031452, + -0.010356932878494263, + 8.639493898954242e-05, + 0.0186283178627491, + 0.0005479390383698046, + 0.008367937989532948, + -0.012558343820273876, + -0.020134545862674713, + 0.029017435386776924, + 0.011522007174789906, + -0.023327236995100975, + -0.00013487266551237553, + 0.004689263645559549, + -0.017907388508319855, + -0.019619597122073174, + 0.000584146473556757, + -0.0005423067486844957, + 0.03012457676231861, + -0.014495844021439552, + 0.0015376086812466383, + 0.008503112941980362, + -0.009236916899681091, + 0.04477490484714508, + 0.008329316973686218, + -0.005204213783144951, + -0.018151989206671715, + -0.013749166391789913, + 0.01618230529129505, + 0.02397092431783676, + 0.03115447796881199, + 0.012287995778024197, + 0.01100062020123005, + 0.0136976707726717, + -0.0013090996071696281, + -0.004055231809616089, + -0.02021178975701332, + 0.0022239405661821365, + 0.009526575915515423, + -0.0070741260424256325, + -0.007524707354605198, + 0.010453485883772373, + -0.02636544220149517, + 0.02143479511141777, + -0.01436710637062788, + 0.0029883193783462048, + -0.02521967887878418, + -0.0014981827698647976, + -0.0021370425820350647, + -0.016401158645749092, + -0.00318947178311646, + -0.0027115338016301394, + 0.05515114963054657, + 0.009738992899656296, + 0.012172131799161434, + 0.01914326846599579, + 0.023494595661759377, + 0.0240224190056324, + -0.011077863164246082, + -0.009623128920793533, + -0.0026986601296812296, + 0.020713865756988525, + -0.0008448399021290243, + -0.02285090833902359, + -0.013517438434064388, + 0.008767024613916874, + -0.02914617210626602, + 0.021640775725245476, + 0.01341444905847311, + 0.02873421274125576, + 0.02053363248705864, + -0.004811564460396767, + 0.0018795676296576858, + 0.021756639704108238, + -0.004293396137654781, + -0.006411128211766481, + 0.020636623725295067, + 0.007923793978989124, + -0.01440572738647461, + 0.03311128914356232, + -0.017830144613981247, + -0.017096340656280518, + 0.0038685621693730354, + -0.013195594772696495, + -0.002206239150837064, + 0.0038074119947850704, + -0.018203483894467354, + 0.007408843841403723, + -0.02597923018038273, + -0.028013283386826515, + -0.03473338112235069, + 0.016053568571805954, + -0.005889741238206625, + -0.011283842846751213, + -0.005744911264628172, + -0.003839596174657345, + -0.002182100899517536, + -0.008110463619232178, + -0.017366690561175346, + 0.027498332783579826, + -0.017855891957879066, + -0.02919766679406166, + 0.00016283283184748143, + 0.022554811090230942, + 0.015731723979115486, + 0.010704523883759975, + -0.0010363369947299361, + -0.005484217777848244, + -0.009391401894390583, + -0.020868349820375443, + -0.026983382180333138, + -0.007222174201160669, + -0.0223359577357769, + -0.019027404487133026, + 0.019490858539938927, + -0.019980061799287796, + -0.013015362434089184, + -0.015487122349441051, + 0.007325164508074522, + -0.00920473225414753, + 0.01914326846599579, + 0.008586792275309563, + -0.003723732428625226, + -0.021499164402484894, + -0.0010902457870543003, + 0.0016462309285998344, + 0.004238682333379984, + 0.03012457676231861, + -0.03105148859322071, + 0.025348415598273277, + 0.012996051460504532, + -0.004241900984197855, + -0.012860877439379692, + -0.00029167093452997506, + 0.006037789396941662, + -0.022052735090255737, + -0.008915072306990623, + -0.01210776250809431, + 0.0011530052870512009, + 0.013079730793833733, + -0.03352324664592743, + 0.017070593312382698, + -0.011773045174777508, + 0.004808346275240183, + 0.0014547338942065835, + 0.004560526460409164, + -0.00459592929109931, + 0.0400373674929142, + 0.005226742941886187, + 0.013247090391814709, + -0.023417353630065918, + 0.04948670044541359, + 0.00935277994722128, + 0.002161181066185236, + 0.02067524380981922, + -0.01784301921725273, + 0.012642024084925652, + -0.019980061799287796, + -0.016362538561224937, + -0.010659465566277504, + 0.007730687502771616, + 0.023893682286143303, + -0.016027819365262985, + -0.027961786836385727, + -0.025181056931614876, + 0.0026825678069144487, + 0.019671091809868813, + -0.01598919928073883, + 0.018808551132678986, + -0.04227739945054054, + 0.029017435386776924, + -0.008181269280612469, + 0.00870265532284975, + 0.010768893174827099, + -0.022786539047956467, + -0.019027404487133026, + -0.010736708529293537, + 0.019980061799287796, + 0.00019159761723130941, + -0.03118022531270981, + -0.02560589089989662, + -0.017804397270083427, + 0.002227158984169364, + -0.015255395323038101, + -0.034656137228012085, + 0.012352364137768745, + -0.01680024527013302, + 0.02568313293159008, + -3.287583922428894e-06, + 0.009307721629738808, + 0.0035949950106441975, + 0.020327653735876083, + 0.007994599640369415, + -0.018203483894467354, + 0.0026117623783648014, + -0.006108595058321953, + -0.010073710232973099, + -0.03905896097421646, + 0.012873751111328602, + -0.003424417693167925, + 0.014238368719816208, + 0.007376659195870161, + 0.019709713757038116, + 0.028116272762417793, + 0.030279062688350677, + -0.029995840042829514, + -0.019001657143235207, + -0.018036125227808952, + -0.007305854000151157, + -0.0004940301878377795, + 0.022786539047956467, + -0.006069973576813936, + 0.0136976707726717, + -0.021833881735801697, + -0.004824438132345676, + 0.025593018159270287, + -0.005355480592697859, + -0.004740758799016476, + -0.01620805263519287, + 0.0031959086190909147, + -0.05288536846637726, + 0.040269091725349426, + 0.01082682516425848, + 0.007235048338770866, + -0.00321039161644876, + -0.013124789111316204, + -0.014470096677541733, + -0.024176904931664467, + 0.00412603747099638, + 0.00933990627527237, + 0.006675039883702993, + -0.007910920307040215, + -0.013993767090141773, + 0.005246053449809551, + -0.012036957778036594, + -0.0035628105979412794, + -0.027498332783579826, + 0.0007144932169467211, + -0.01459883339703083, + -0.02881145477294922, + -0.017006225883960724, + 0.006816651206463575, + -0.014096757397055626, + 0.02209135703742504, + -0.002804868621751666, + -0.002676130970939994, + 0.025399910286068916, + 0.0026841771323233843, + 0.01876992918550968, + 0.01977408118546009, + -0.005886522587388754, + 0.020855477079749107, + 0.015834713354706764, + 0.04418271407485008, + 0.013916525058448315, + -0.022554811090230942, + -0.023327236995100975, + -0.03805480897426605, + 0.002973836613819003, + -0.018744181841611862, + 0.021512039005756378, + 0.004393167793750763, + 0.002428311388939619, + 0.010028651915490627, + 0.013028236106038094, + 0.02734384685754776, + 0.003749480005353689, + -0.015422753989696503, + 0.04371925815939903, + -0.004869496449828148, + 0.00931415893137455, + -0.02070099115371704, + 0.0008504721918143332, + -0.02279941365122795, + 0.0047471956349909306, + 0.007099873851984739, + -0.00590905174612999, + 0.01293811947107315, + -0.013787787407636642, + -0.01367192342877388, + 0.04807058721780777, + 0.00671366136521101, + 0.018692687153816223, + -0.00548099959269166, + -0.014907803386449814, + 0.013504564762115479, + -0.031283214688301086, + -0.0050304182805120945, + 0.027189362794160843, + 0.0006638027844019234, + 0.03434716910123825, + 0.008136210963129997, + -0.02241320163011551, + 0.01118085253983736, + -0.014547338709235191, + -0.016053568571805954, + -0.006082847248762846, + -0.0011867989087477326, + 0.013929398730397224, + -0.005033636465668678, + -0.0012246156111359596, + -0.010189574211835861, + 0.015139531344175339, + 0.025181056931614876, + 0.007917356677353382, + -0.0015569193055853248, + -0.0040648868307471275, + -0.004386730492115021, + -0.011567065492272377, + -0.00944933295249939, + 0.0073509118519723415, + -0.011361085809767246, + -0.001157028367742896, + -0.01168292947113514, + -0.01002221554517746, + -0.016903234645724297, + -0.011663618497550488, + 0.022039862349629402, + -0.017855891957879066, + 0.00545525224879384, + 0.013221342116594315, + 0.007222174201160669, + 0.026043599471449852, + -0.011399706825613976, + -0.012899498455226421, + -0.023687701672315598, + 0.022696422412991524, + -0.053863774985075, + 0.008664034307003021, + 0.060094669461250305, + 0.003488786518573761, + 0.002128996653482318, + 0.00505294743925333, + -0.006842398550361395, + -0.02312125638127327, + 0.02243894897401333, + -0.009784051217138767, + -0.017662785947322845, + -0.004653860814869404, + 0.00434489082545042, + 0.02072673849761486, + -0.014289863407611847, + -0.00037253418122418225, + 0.009796924889087677, + 0.008734839968383312, + 0.013723419047892094, + -0.02138330042362213, + -0.008747713640332222, + 0.02058512717485428, + 0.008741277270019054, + -0.0077049401588737965, + 0.034192681312561035, + -0.023571837693452835, + 0.007910920307040215, + 0.007305854000151157, + 0.007904483005404472, + -0.008625413291156292, + -0.025181056931614876, + -0.027060624212026596, + 0.01104567851871252, + 0.005815716926008463, + -0.007975288666784763, + 0.015229647979140282, + -0.014006641693413258, + -0.013594681397080421, + -0.016079315915703773, + 0.028167767450213432, + 0.006629982031881809, + 0.0058543384075164795, + 0.008097589015960693, + 0.015911957249045372, + -0.02549002692103386, + 0.02375207096338272, + 0.011773045174777508, + -0.011142231523990631, + -0.005690197926014662, + -0.013285711407661438, + -0.03782308101654053, + -0.004241900984197855, + -0.0008182877791114151, + 0.022400327026844025, + 0.001080590533092618, + -0.03957391157746315, + -0.000813460152130574, + 0.0013935836032032967, + -0.04490364342927933, + -0.018422337248921394, + -0.007711376994848251, + 0.0035241893492639065, + -0.00321039161644876, + 0.01958097517490387, + -0.012043394148349762, + 0.02963537536561489, + -0.0015472639352083206, + 0.02875996008515358, + -0.037462614476680756, + -0.011283842846751213, + -0.004843748640269041, + -0.012223626486957073, + 0.029300658032298088, + 0.004470410291105509, + -0.00856748130172491, + -0.026571422815322876, + 0.013099041767418385, + -0.002893375465646386, + -0.007692066486924887, + 0.016813119873404503, + -0.006938952021300793, + 0.002697050804272294, + -0.003717295592650771, + -0.002206239150837064, + 0.01194040384143591, + 0.015615860000252724, + -0.006945388857275248, + -0.030794013291597366, + -0.012886624783277512, + 0.019169015809893608, + 0.008116899989545345, + -0.03581477701663971, + -0.012442480772733688, + 0.015834713354706764, + -0.008709092624485493, + -0.003258668351918459, + 0.011200163513422012, + -0.013980893418192863, + -0.02146054245531559, + -0.008181269280612469, + 0.032235872000455856, + 0.0013782959431409836, + -0.008651160635054111, + 0.006156871560961008, + 0.025374162942171097, + -0.026352569460868835, + -0.009919225238263607, + 0.00845805462449789, + -0.03195264935493469, + 0.006208366714417934, + 0.012088452465832233, + -0.014289863407611847, + 0.027498332783579826, + -0.018924415111541748, + 0.013865030370652676, + 0.011142231523990631, + 0.002970617963001132, + -0.01596345193684101, + -0.019272005185484886, + 0.007988162338733673, + 0.020482137799263, + 0.019877072423696518, + -0.03254484385251999, + 0.006996883545070887, + 0.01713496260344982, + -0.004975704941898584, + -0.003226483939215541, + 0.0022352051455527544, + -0.01107142586261034, + -0.025309795513749123, + -0.003916838672012091, + 0.010981310158967972, + -0.02309550903737545, + -0.01772715523838997, + 0.004840530455112457, + -0.0025135998148471117, + -0.024382885545492172, + -0.0030317683704197407, + 0.18486706912517548, + -0.02361045964062214, + -0.0005302376230247319, + 0.03061378002166748, + -0.004840530455112457, + -0.02824500948190689, + 0.013285711407661438, + 0.012963867746293545, + 0.0034855681005865335, + 0.04140198230743408, + -0.024254146963357925, + -0.026571422815322876, + -0.023816440254449844, + 0.005188121926039457, + 0.00939783826470375, + -0.017031973227858543, + -0.038827233016490936, + -0.013350079767405987, + -0.010479233227670193, + 0.03529982641339302, + 0.02350747026503086, + -0.015680229291319847, + -0.012249373830854893, + -0.0019841669127345085, + 0.02224584110081196, + 0.006758719217032194, + -0.008232763968408108, + 0.004415696486830711, + 0.020842602476477623, + 0.010768893174827099, + 0.001905315206386149, + -0.002767856465652585, + 0.008116899989545345, + -0.027936039492487907, + -0.01017026323825121, + 0.006008823402225971, + 0.005526057910174131, + -0.011026367545127869, + 0.027936039492487907, + 0.02827075682580471, + 0.009005188941955566, + -0.007312290836125612, + 0.0015343902632594109, + -0.006707224529236555, + -0.012983177788555622, + 0.0391104556620121, + -0.001037141541019082, + 0.010221758857369423, + -0.012390985153615475, + -0.0035885581746697426, + -0.03674168512225151, + -0.015705976635217667, + -0.0032634958624839783, + 0.03159218654036522, + -0.007814367301762104, + -0.009848419576883316, + 0.00034195900661870837, + -0.027524080127477646, + 0.009912787936627865, + 0.015615860000252724, + -0.030742518603801727, + 0.02480771765112877, + -0.01745680719614029, + 0.027910292148590088, + -0.018641192466020584, + -0.011258095502853394, + -0.03437291458249092, + 0.011290280148386955, + -0.0021386519074440002, + 0.004560526460409164, + -0.02870846539735794, + -0.02102283574640751, + -0.03287956118583679, + 0.013118352741003036, + 0.00015549077943433076, + -0.0363297238945961, + 0.018641192466020584, + -0.006076410412788391, + 0.02004443109035492, + 0.01789451390504837, + -0.009281974285840988, + 0.009700371883809566, + -0.0003652926825452596, + -0.011386833153665066, + 0.006977573037147522, + -0.04055231437087059, + 0.015602986328303814, + -0.0071449317038059235, + 0.016401158645749092, + -0.03959965705871582, + 0.01876992918550968, + 0.01726370118558407, + 0.0023945176508277655, + -0.002911076880991459, + 0.013002488762140274, + -0.005403757095336914, + -0.005287893116474152, + 0.017611291259527206, + -0.010994183830916882, + -0.007717813830822706, + 0.016607139259576797, + 0.057725898921489716, + 0.04284384474158287, + -0.004360983148217201, + -0.018396589905023575, + 0.019078899174928665, + -0.0005704680806957185, + 0.01889866590499878, + 0.007241485174745321, + 0.0020227881614118814, + -0.006720098201185465, + -0.011979025788605213, + -0.0022850907407701015, + -0.0036593638360500336, + 0.007357348687946796, + 0.00180232513230294, + -0.0069518256932497025, + -0.013530312106013298, + -0.000281009852187708, + -0.01285444013774395, + -0.02543853223323822, + 0.010968435555696487, + 0.017340943217277527, + 0.01534551102668047, + 0.014109631069004536, + -0.013041109777987003, + -0.05468769371509552, + 0.009391401894390583, + -0.004187187645584345, + -0.003826722502708435, + 0.01923338510096073, + -0.027601322159171104, + -0.006559176370501518, + 0.018036125227808952, + 0.008754150941967964, + 0.01911752112209797, + -0.006269516889005899, + -0.0272666048258543, + 0.0012857659021392465, + 0.0040037366561591625, + 0.02121594175696373, + -0.03669019043445587, + 0.012893062084913254, + -0.007112747523933649, + 0.01889866590499878, + 0.0029014216270297766, + 0.0029448706191033125, + -0.004296614322811365, + -0.011103610508143902, + -0.01799750328063965, + -0.005094787105917931, + -0.010517854243516922, + -0.006172963883727789, + -0.02292815037071705, + 0.011373959481716156, + -0.011116484180092812, + -0.021280311048030853, + -0.04899749532341957, + 0.004219371825456619, + 0.013272837735712528, + -0.022232968360185623, + -0.00514628179371357, + -0.01269351877272129, + -0.022979645058512688, + 0.009655313566327095, + -0.0017009443836286664, + -0.1606644093990326, + 0.011026367545127869, + 0.010028651915490627, + -0.028142020106315613, + 0.017714282497763634, + 0.013530312106013298, + -0.002418655902147293, + -0.011380395852029324, + -0.005831809248775244, + 0.005461689084768295, + 0.031025739386677742, + -0.0021595717407763004, + -0.003020503791049123, + -0.010015778243541718, + -0.006958262529224157, + -0.012558343820273876, + -0.028631223365664482, + 0.031823914498090744, + 0.022554811090230942, + 0.03172092139720917, + 0.003636834677308798, + -0.026957634836435318, + 0.005397320259362459, + -0.007531144190579653, + 0.0221685990691185, + -0.015139531344175339, + -0.01092337816953659, + 0.022709297016263008, + -0.0040133921429514885, + 0.00044575362699106336, + -0.015242521651089191, + 0.011129357852041721, + 0.04706643521785736, + -0.010646591894328594, + -0.007531144190579653, + -0.03445015847682953, + -0.007621260825544596, + -0.002423483645543456, + -0.011637871153652668, + 0.04050081968307495, + 0.01704484596848488, + -0.004679608624428511, + 0.0028998125344514847, + 0.007743561174720526, + -0.025181056931614876, + 0.005001452285796404, + 0.03112873062491417, + -0.0006802972638979554, + -0.014817687682807446, + -0.007955978624522686, + 0.003739824751392007, + -0.03733387961983681, + 0.0016035865992307663, + 0.028167767450213432, + -0.003046251367777586, + 0.010633718222379684, + 0.008104026317596436, + 0.014083883725106716, + -0.010575786232948303, + 0.0024653233122080564, + -0.008715529926121235, + -0.014199747703969479, + 0.016864614561200142, + 0.003144413698464632, + -0.00019914083532057703, + -0.022516191005706787, + 0.005046510603278875, + 0.01529401633888483, + 0.00015056254051160067, + -0.011650744825601578, + -0.01533263735473156, + -0.013259964063763618, + 0.04274085536599159, + 0.011277405545115471, + 0.009887040592730045, + 0.015397006645798683, + -0.004229027312248945, + -0.00127691519446671, + 0.009758302941918373, + -0.015036541037261486, + -0.022284463047981262, + 0.06467772275209427, + -0.035171087831258774, + -0.028991688042879105, + -0.018692687153816223, + -0.0018554293783381581, + 0.0006026524933986366, + 0.008419433608651161, + 0.01906602457165718, + -0.00180232513230294, + -0.0019777300767600536, + -0.016658633947372437, + -0.016272421926259995, + -0.023790692910552025, + 0.009024499915540218, + 0.00360465026460588, + 0.01625954732298851, + -0.008149084635078907, + -0.028013283386826515, + -0.002804868621751666, + 0.0077564348466694355, + -0.006102158222347498, + -0.04477490484714508, + 0.0024267020635306835, + 0.015538617968559265, + 0.00859322864562273, + -0.018615443259477615, + 0.021872503682971, + 0.037926070392131805, + -0.008870014920830727, + -0.0068810200318694115, + -0.002051754156127572, + 0.03782308101654053, + -0.004473628476262093, + 0.0013066857354715466, + 0.002297964645549655, + -0.003472694428637624, + -0.02309550903737545, + 0.008310006000101566, + -0.014276989735662937, + 0.02336585894227028, + 0.011573501862585545, + -0.025039445608854294, + 0.013131226412951946, + -0.006913204211741686, + -0.007762872148305178, + -0.0837823748588562, + 0.028348000720143318, + 0.017740029841661453, + 0.014431474730372429, + 0.013787787407636642, + 0.000977600459009409, + -0.008902198635041714, + 0.029429394751787186, + -0.01865406520664692, + 0.028193514794111252, + -0.05134052038192749, + -0.028039030730724335, + 0.001763703883625567, + -0.011341774836182594, + 0.02285090833902359, + -0.004151784814894199, + -0.018589695915579796, + -0.019452238455414772, + -0.02783305011689663, + 0.029068930074572563, + 0.017765777185559273, + -0.0015319763915613294, + -0.01718645729124546, + -0.01198546215891838, + 0.00315567827783525, + -0.014032389037311077, + -0.02646843157708645, + 0.004914554301649332, + 0.020610876381397247, + 0.01876992918550968, + 0.020932719111442566, + -0.02568313293159008, + 0.02070099115371704, + -0.01928487978875637, + -0.0010878319153562188, + -0.005123753100633621, + -0.008728403598070145, + -0.03486211970448494, + 0.009069557301700115, + -0.027704311534762383, + -0.011206600815057755, + 0.012880188412964344, + 0.030794013291597366, + -0.048328060656785965, + 0.01017026323825121, + -0.012558343820273876, + -0.014972172677516937, + 0.00640790956094861, + 0.01100062020123005, + -0.01530689001083374, + -0.029944345355033875, + -0.022323084995150566, + -0.005461689084768295, + 0.02636544220149517, + 0.01533263735473156, + 0.008908635936677456, + 0.003546718508005142, + -0.0056419214233756065, + -0.014676076360046864, + -0.017688533291220665, + -0.018860045820474625, + 0.022323084995150566, + -0.018306473270058632, + 0.01840946450829506, + 0.012564781121909618, + 0.0021080768201500177, + -0.03251909464597702, + -0.020829729735851288, + 0.0065977973863482475, + -0.019761208444833755, + -0.02881145477294922, + 0.0063242302276194096, + 0.018641192466020584, + -0.0007157000945881009, + -0.02633969485759735, + -0.013053983449935913, + -0.041221752762794495, + -0.010369806550443172, + 0.01365904975682497, + -0.016825992614030838, + -0.027987534180283546, + -0.02258056029677391, + 0.03638122230768204, + -0.0018763492116704583, + 0.029506636783480644, + 0.020662371069192886, + 0.0013187548611313105, + -0.027601322159171104, + 0.025940608233213425, + -0.03996012359857559, + 0.008419433608651161, + 0.009674623608589172, + 0.01645265333354473, + -0.006414346396923065, + -0.006578486878424883, + 0.02573462761938572, + 0.012120637111365795, + 0.000988060375675559, + 0.016143683344125748, + 0.005085131619125605, + -0.018950162455439568, + -0.003701203502714634, + -0.04250912740826607, + 0.024498747661709785, + 0.019568102434277534, + -0.006098939571529627, + -0.010749582201242447, + -0.010646591894328594, + 0.018306473270058632, + 0.01285444013774395, + 0.0028515357989817858, + 0.015783218666911125, + -0.015886208042502403, + 0.013272837735712528, + -0.010775329545140266, + -0.0023719887249171734, + -0.017765777185559273, + -0.01808761991560459, + -0.014135378412902355, + 0.005123753100633621, + 0.008953694254159927, + 0.01748255454003811, + -0.027549827471375465, + 0.022477569058537483, + -0.012436043471097946, + -0.005236398428678513, + -0.027137868106365204, + -0.006797340698540211, + -0.012957430444657803, + -0.0032828066032379866, + -0.003630397841334343, + -0.014251242391765118, + 0.003199127269908786, + -0.0016357710119336843, + -0.005117316264659166, + 0.018177736550569534, + -0.015899082645773888, + -0.005188121926039457, + 0.013749166391789913, + 0.015191026031970978, + 0.021640775725245476, + 0.03898171707987785, + -0.04016610234975815, + -0.034707631915807724, + 0.017443932592868805, + -0.0397026501595974, + 0.002299573738127947, + 0.018924415111541748, + 0.008561044931411743, + -0.005699853412806988, + 0.017109215259552002, + -0.006028133910149336, + 0.04917772859334946, + 0.009887040592730045, + 0.029068930074572563, + -0.013060420751571655, + 0.022670675069093704, + -0.016851739957928658, + -0.007395970169454813, + 0.0074925231747329235, + 0.007846551015973091, + -0.018718434497714043, + 0.03591776639223099, + 0.0022126759868115187, + 0.03913620486855507, + -0.025863366201519966, + 0.012455354444682598, + -0.020327653735876083, + -0.018422337248921394, + 0.0007498959894292057, + 0.012790071777999401, + -0.033703479915857315, + -0.01100062020123005, + -2.871449942176696e-05, + 0.005886522587388754, + 0.021808134391903877, + -0.02236170507967472, + -0.007447464857250452, + 0.014534465037286282, + 0.003987644333392382, + 0.01118085253983736, + 0.04008886218070984, + 0.012307305820286274, + 0.012764324434101582, + -0.0027984315529465675, + -0.0050304182805120945, + 0.028039030730724335, + -0.0008520814008079469, + -0.008638286963105202, + -0.016851739957928658, + 0.002331758150830865, + 0.00382028566673398, + 0.0029287782963365316, + 0.024717602878808975, + -0.012455354444682598, + -0.0012567999074235559, + 0.02473047561943531, + 0.013285711407661438, + -0.0025152091402560472, + -0.0301760733127594, + 0.012152820825576782, + 0.02927491068840027, + -0.02328861504793167, + 0.00471822964027524, + 0.014431474730372429, + -0.02192399837076664, + -0.0009277146891690791, + -0.011013493873178959, + -0.0038556884974241257, + -0.036947667598724365, + -0.006208366714417934, + 0.006543084047734737, + -0.010884756222367287, + 0.013839282095432281, + 0.010723834857344627, + 0.008799209259450436, + -0.03148919343948364, + 0.03251909464597702, + -0.02113869972527027, + -0.021203069016337395, + -0.0108525725081563, + 0.01799750328063965, + 0.00041879923082888126, + 0.013053983449935913, + -0.015178152360022068, + 0.018757054582238197, + 0.014019515365362167, + 0.00545525224879384, + -0.009468643926084042, + 0.019838450476527214, + 0.01647840067744255, + -0.02641693688929081, + 0.012796509079635143, + 0.008310006000101566, + -0.014534465037286282, + -0.026983382180333138, + -0.00935277994722128, + -0.012545470148324966, + 0.013736292719841003, + 0.014212621375918388, + 0.03156643733382225, + 0.10556475818157196, + 0.021550659090280533, + -0.013073294423520565, + 0.0049692681059241295, + -0.0028949847910553217, + 0.018860045820474625, + -0.003826722502708435, + -0.0042773038148880005, + 0.024524495005607605, + -0.06375081837177277, + -0.0033536122646182775, + -0.01819061115384102, + 0.022747918963432312, + -0.033240024000406265, + -0.0091661112383008, + 0.006675039883702993, + 0.008020346984267235, + 0.00270670629106462, + 0.000660584366414696, + 0.002521645976230502, + 0.026751654222607613, + -0.007975288666784763, + 0.00868978165090084, + 0.015667354688048363, + -0.04325580224394798, + -0.03210713714361191, + 0.017225079238414764, + -0.017109215259552002, + -0.0027903856243938208, + 0.014083883725106716, + -0.014019515365362167, + -0.0039007465820759535, + -0.06462623178958893, + -0.0254127848893404, + 0.021396175026893616, + -0.01838371716439724, + -0.012326616793870926, + -0.013086168095469475, + 0.014933551661670208, + -0.009249790571630001, + 0.00506582111120224, + 0.027163615450263023, + -0.012339490465819836, + -0.007376659195870161, + -0.001309904153458774, + 0.0014330093981698155, + 0.005252490285784006, + -0.015397006645798683, + -0.023237120360136032 + ], + "metadata": { + "source": "Kreye_Marieke_BA_241_V2.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 17, + "has_images": true, + "image_count": 98, + "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", + "links": [], + "last_modified": "2025-05-05T23:00:23", + "_known_field_names": "frozenset({'is_continuation', 'sent_to', 'header_footer_type', 'email_message_id', 'filename', 'languages', 'detection_class_prob', 'sent_from', 'link_texts', 'cc_recipient', 'subject', 'image_mime_type', 'image_path', 'filetype', 'page_number', 'last_modified', 'signature', 'detection_origin', 'text_as_html', 'attached_to_filename', 'bcc_recipient', 'data_source', 'link_start_indexes', 'category_depth', 'emphasized_text_tags', 'parent_id', 'orig_elements', 'page_name', 'coordinates', 'url', 'link_urls', 'file_directory', 'links', 'table_as_cells', 'emphasized_text_contents', 'key_value_pairs', 'image_base64'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "Kreye_Marieke_BA_241_V2.pdf", + "detection_class_prob": 0.3422867953777313, + "parent_id": "e02392183bc6851689602ad4b9f6039f", + "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", + "id": "ce00eae5-7e07-454f-9e4f-f79ac36f92f4", + "processing_timestamp": "2025-05-05T23:15:46.977945", + "chunk_number": 28, + "total_chunks": 56, + "chunking_strategy": "hybrid", + "word_count": 430 + } +} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000029.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000029.json new file mode 100644 index 0000000000000000000000000000000000000000..a77c574193d245218eab64c1cf8e986fed17e14f --- /dev/null +++ b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000029.json @@ -0,0 +1,1570 @@ +{ + "id": "61a115b2-0ff7-441a-f6d9-eb3d00000029", + "content": "L\u00f6sken et al. 2010, S. 16). Die Berechnungen der maximal m\u00f6glichen Neupflanzungen von B\u00e4umen auf der zuvor bestimmten Potentialfl\u00e4che im Stra\u00dfenraum baut auf dieser Richtlinie der FLL von 6 m2 unversiegelte Fl\u00e4che pro Baum auf. \u00dcber diese Fl\u00e4chenvorgabe wird die Anzahl der m\u00f6glichen Neupflanzungen im gesamten Quartier je Mobilit\u00e4tsszenario bestimmt. ## \ud835\udc43\ud835\udc5c\ud835\udc61\ud835\udc52\ud835\udc5b\ud835\udc61\ud835\udc56\ud835\udc4e\ud835\udc59\ud835\udc53\ud835\udc59\u00e4\ud835\udc50\u210e\ud835\udc52 \ud835\udc57\ud835\udc52 \ud835\udc40\ud835\udc5c\ud835\udc4f\ud835\udc56\ud835\udc59\ud835\udc56\ud835\udc61\u00e4\ud835\udc61\ud835\udc60\ud835\udc60\ud835\udc67\ud835\udc52\ud835\udc5b\ud835\udc4e\ud835\udc5f\ud835\udc56\ud835\udc5c [\ud835\udc5a2]\n\n\n| Potentialfl\u00e4che | je | Mobilit\u00e4tsszenario | [m?] | om? | = | Anzahl | neuer | B\u00e4ume |\n|---|---|---|---|---|---|---|---|---|\n\n\n## = \ud835\udc34\ud835\udc5b\ud835\udc67\ud835\udc4e\u210e\ud835\udc59 \ud835\udc5b\ud835\udc52\ud835\udc62\ud835\udc52\ud835\udc5f \ud835\udc35\u00e4\ud835\udc62\ud835\udc5a\ud835\udc52\n\n6 \ud835\udc5a2\nF\u00fcr die m\u00f6glichen Pflanzabst\u00e4nde wurden im Stuttgarter Westen vergleichbare Stra\u00dfen mit den in den Fallstudiengebieten untersucht (vgl. Abbildung 18). Bei der Ortsbegehung wurde deutlich, dass in Stra\u00dfenz\u00fcgen mit Altbestand die Pflanzabst\u00e4nde h\u00e4ufig deutlich geringer sind als in Stra\u00dfenz\u00fcgen mit Neupflanzungen. W\u00e4hrend in der Ludwigstra\u00dfe\n32\nFallstudien\n(Quartiersarchetyp Blockrandbebauung) und der Hasenbergsteige (Quartiersarchetyp Ein- und Zweifamilienhausquartier) Pflanzabst\u00e4nde von etwa 5,0 m vorzufinden sind, lagen die Abst\u00e4nde in der Seyfferstra\u00dfe (Quartiersarchetyp Blockrandbebauung) und im Olga-Areal (Quartiersarchetyp neues Innenstadtquartier) zwischen 10,0 m und 20,0 m. Nach R\u00fccksprache mit den beteiligten Gemeinden wurden drei m\u00f6gliche Pflanzabst\u00e4nde von 5,0 m, 10,0 m und 15,0 m festgelegt. Die unterschiedlichen Pflanzabst\u00e4nde erm\u00f6glichen die durch die Potentialfl\u00e4che und das gew\u00e4hlte Mobilit\u00e4tsszenario vorgegebene Anzahl an neuen B\u00e4umen auf unterschiedliche Weise in dem Quartier zu verteilen und gegebenenfalls auf spezifische Anforderungen oder Ziele zu reagieren. [IMAGE: Ur ER; 0 vo]\n\nAbbildung 18: Vergleichsbild Baumbepflanzung im Stra\u00dfenraum (von links nach rechts: Seyfferstra\u00dfe, Hasenbergstra\u00dfe, Ludwigstra\u00dfe, Hasenbergsteige) (eigene Fotos)\nDie Neupflanzung der B\u00e4ume wird sich vorzugsweise auf thermisch belastete Gebiete konzentrieren. Je geringer die Anzahl der B\u00e4ume und der Pflanzabstand, desto kleiner ist der gew\u00e4hlte Gebietsausschnitt. Mit einer Zunahme der Anzahl neu gepflanzter B\u00e4ume nimmt auch der Platzbedarf zu. Somit werden die Stra\u00dfenz\u00fcge f\u00fcr die Neupflanzung mit jedem Mobilit\u00e4tsszenario sukzessive erweitert, da mit einer zunehmenden Verringerung des MIV eine gr\u00f6\u00dfere Potentialfl\u00e4che zur Bepflanzung zur Verf\u00fcgung steht. Wie bereits erw\u00e4hnt erfolgt das Pflanzen automatisch mittels eines Python-Skripts (vgl. Kapitel 3.2.1). Die Simulation des thermischen Energiebedarfs und der Evapotranspiration erfolgt auf den f\u00fcr die Baumpflanzungsszenarien gew\u00e4hlten Gebietsausschnitten und werden mit SimStadt (vgl. Kapitel 3.2.2) durchgef\u00fchrt. Die Erl\u00e4uterung der Baumpflanzungsszenarien in den Fallstudiengebieten Gromb\u00fchl und Grafenb\u00fchl folgt in Kapitel 5.3.1 und 5.3.2. ## 5.3.1 Baumpflanzungsszenarien Gromb\u00fchl\n\nDie Baumpflanzungsszenarien f\u00fcr das Fallstudiengebiet Gromb\u00fchl beruhen auf den in den vorrangegangenen Kapiteln definierten Annahmen und Ans\u00e4tzen, da die in den Quartiersarchetypen hinterlegten Stra\u00dfenquerschnitte mit einer tolerierbaren Abweichung auf das Gebiet angewendet werden k\u00f6nnen. Bei der Berechnung der gesamten Stra\u00dfenfl\u00e4che je Quartiersarchetyp wurden die Stra\u00dfen mit Stra\u00dfenbahnverkehr ausgenommen, da hier die Pflanzung neuer B\u00e4ume auf Grund der Oberleitung schwieriger umzusetzen ist als in Stra\u00dfenz\u00fcgen ohne Stra\u00dfenbahnverkehr. Nach dem in den Kapiteln 3.1 und 5.3 erl\u00e4uterten Vorgehen,\n33\nFallstudien\nk\u00f6nnen in Gromb\u00fchl je nach Mobilit\u00e4tsszenario 75 (3 % MIV-Reduktion), 250 (10 % MIV- Reduktion) bzw. 500 (20 % MIV-Reduktion) neue B\u00e4ume gepflanzt werden. Wie aus der Analyse des Fallstudiengebiets in Kapitel 5.2.1 bereits hervorgeht, sind einige Bl\u00f6cke von einem erh\u00f6hten \u00dcberhitzungsrisiko betroffen.", + "embedding": [ + 0.010164172388613224, + -0.01269530225545168, + 0.010507824830710888, + -0.017526257783174515, + -0.008174954913556576, + 0.019165214151144028, + -0.03616277873516083, + 0.005772694945335388, + -0.03494677692651749, + -0.009655303321778774, + -0.004074260126799345, + 0.004355129785835743, + -0.007884172722697258, + 0.016415998339653015, + -0.0006464129546657205, + 0.010150955058634281, + 0.02618364803493023, + 0.012107128277420998, + 0.025562431663274765, + 0.001833912800066173, + -0.0023543473798781633, + 0.023791300132870674, + 0.004338608123362064, + -0.017711302265524864, + -0.0035885211545974016, + 0.012754780240356922, + 0.024399301037192345, + -0.005118433851748705, + -0.011366955004632473, + -0.0003246521227993071, + 0.021517910063266754, + -0.014195475727319717, + -0.022456344217061996, + 0.009694955311715603, + -0.011988172307610512, + -0.012801041826605797, + 0.014089737087488174, + -0.014710954390466213, + 0.030294256284832954, + -0.0008541737915948033, + 0.013970780186355114, + 0.0062055643647909164, + -0.0181078240275383, + -0.03425947204232216, + 0.011479302309453487, + 0.0027194777503609657, + 0.0037966950330883265, + -0.0015332171460613608, + -0.020116865634918213, + 0.024412518367171288, + 0.016931476071476936, + 0.028998952358961105, + -0.01949564926326275, + 0.019376693293452263, + -0.02702956087887287, + -0.00861112866550684, + -0.009694955311715603, + 0.001749651855789125, + -0.00551495561376214, + 0.011340520344674587, + -0.01991860568523407, + 0.004857390653342009, + -0.022456344217061996, + 0.010177389718592167, + -0.037722427397966385, + -0.009390954859554768, + -0.015490780584514141, + -0.003515825606882572, + 0.0068466076627373695, + -0.006294781807810068, + 0.007599998731166124, + 0.03161599487066269, + 0.01155860722064972, + -0.02098921500146389, + 0.01997147500514984, + 0.0031688690651208162, + 0.018517563119530678, + -0.013878258876502514, + -0.005822259932756424, + 0.012087302282452583, + 0.02609112672507763, + -0.007362085860222578, + -0.02176903933286667, + 0.05731059983372688, + 0.021940866485238075, + 0.0043485211208462715, + -0.017156170681118965, + 0.024438953027129173, + 0.001532391062937677, + 0.016310257837176323, + 0.02200695313513279, + 0.01987895369529724, + 0.006321216467767954, + 0.008604520000517368, + -0.0016719996929168701, + -0.004292347002774477, + -0.009212519973516464, + -0.0011598259443417192, + 0.03174816817045212, + -0.014169041067361832, + -0.019892171025276184, + 0.005772694945335388, + -0.0391763411462307, + -0.00030709776910953224, + -0.009133215993642807, + -0.028390951454639435, + 0.004510433878749609, + 0.01295304112136364, + 0.019072692841291428, + -0.01607234589755535, + -0.018980171531438828, + 0.022720692679286003, + -0.0052704340778291225, + -0.005994086153805256, + 0.02141217142343521, + -0.03412729874253273, + 0.05363616719841957, + 0.006146085914224386, + -0.008677216246724129, + -0.007666085846722126, + 0.03626851737499237, + -0.009080346673727036, + 0.004467477556318045, + -0.009278607554733753, + 0.012470606714487076, + 0.0022634780034422874, + 0.02098921500146389, + -0.0008004781557247043, + -0.055037207901477814, + -0.011274432763457298, + 0.006450085900723934, + 0.012807650491595268, + 0.0030994778499007225, + 0.010137737728655338, + -0.02376486547291279, + 0.012457389384508133, + -0.009761041961610317, + -0.006499651353806257, + -0.044463299214839935, + -0.04528277739882469, + -0.012226085178554058, + 0.014935649931430817, + -0.026130778715014458, + -0.0069325207732617855, + 0.005194433964788914, + 0.025694604963064194, + 0.002237043110653758, + 0.019931823015213013, + 0.0004173803608864546, + -0.03447095304727554, + -0.014102954417467117, + -0.01917843148112297, + 0.020724866539239883, + -0.006423651240766048, + 0.006122955586761236, + -0.014459824189543724, + -0.016587823629379272, + 0.017261911183595657, + -0.04179338365793228, + -0.010362433269619942, + 0.005957738030701876, + 0.0031969561241567135, + -0.023090779781341553, + -0.0019148692954331636, + 0.017658432945609093, + 0.0087763462215662, + -0.004368347115814686, + 0.01485634595155716, + 0.001574521535076201, + -0.017711302265524864, + -0.014142606407403946, + 0.0174601711332798, + -0.02683130092918873, + 0.030902255326509476, + 0.0024253909941762686, + 0.011300867423415184, + -0.006631825119256973, + 0.0037537384778261185, + 0.012345041148364544, + -0.02693703956902027, + -0.03494677692651749, + 0.01525286678224802, + 0.007553738076239824, + 0.022601734846830368, + -0.0371408648788929, + -0.0009318259544670582, + 0.010507824830710888, + 0.011036519892513752, + -0.004222956020385027, + 0.010871302336454391, + -0.008115476928651333, + 0.007652868516743183, + 0.009093564003705978, + -0.009787476621568203, + -0.6327428817749023, + 0.007097737863659859, + -0.005353042855858803, + 0.0029623473528772593, + 0.024505039677023888, + 0.019799649715423584, + 0.004685564432293177, + 0.005115129519253969, + -0.018861213698983192, + 0.024716518819332123, + 0.019852519035339355, + -0.0004031303687952459, + -0.0044806948862969875, + 0.011287650093436241, + -0.004384868778288364, + -0.017433736473321915, + 0.006704520899802446, + -0.016270605847239494, + 0.022218432277441025, + -0.005845390260219574, + -0.01348834577947855, + 0.006707825232297182, + -0.017209040001034737, + 0.019231300801038742, + 0.014565562829375267, + 0.01506782416254282, + -0.001769477967172861, + -0.029871299862861633, + -0.009886607527732849, + -0.018781909719109535, + -0.021187474951148033, + 0.019376693293452263, + 0.0009946085046976805, + 0.013825389556586742, + 0.04752973094582558, + -0.004814433865249157, + -0.014287997968494892, + 0.014935649931430817, + 0.009787476621568203, + -0.005144868977367878, + -0.0183853879570961, + -0.009873390197753906, + -0.0065789553336799145, + -0.0013754345709457994, + -0.008716868236660957, + 0.00036079343408346176, + 0.030479298904538155, + -0.01932382397353649, + -0.009622259065508842, + -0.0029061734676361084, + 0.020909909158945084, + 0.019006606191396713, + 0.011505736969411373, + -0.009463651105761528, + 0.013019128702580929, + 0.00763965118676424, + 0.024346431717276573, + -0.005177912302315235, + 0.0008397172787226737, + -0.005637216381728649, + 0.009747824631631374, + -0.00634765112772584, + -0.02350051887333393, + -0.021517910063266754, + -0.004517043009400368, + 0.041158951818943024, + -0.03542260453104973, + -0.012576346285641193, + 0.02548312582075596, + -0.029686257243156433, + -0.024253908544778824, + -0.00014456520148087293, + -0.01198156364262104, + -0.022813213989138603, + 0.027545038610696793, + -0.006684694439172745, + 0.03764312341809273, + -0.007110955659300089, + -0.02154434472322464, + 0.011948520317673683, + -0.001248217187821865, + -0.01884799636900425, + -0.013825389556586742, + -0.0003467499336693436, + 0.027148516848683357, + -0.0285495612770319, + -0.00910017266869545, + 0.017671650275588036, + 0.0030697386246174574, + 0.021848345175385475, + 0.03687651455402374, + -0.0009524780907668173, + -0.0031986082904040813, + -0.03468243032693863, + 0.010269911028444767, + 0.03653286397457123, + -0.004226260352879763, + 0.0373259074985981, + 0.0022882604971528053, + -0.04795268923044205, + -0.014340867288410664, + 0.01249043270945549, + 0.03838329762220383, + -0.01327686756849289, + 0.029977038502693176, + 0.011261215433478355, + -0.03357216715812683, + 0.0040808687917888165, + 0.021108170971274376, + -0.02372521348297596, + 0.005181216634809971, + 0.003377042943611741, + -0.004999477416276932, + -0.02224486693739891, + -0.0065558250062167645, + -0.02841738611459732, + 0.028866779059171677, + -0.0065558250062167645, + -0.010996867902576923, + -0.006516173016279936, + 0.014182258397340775, + 0.00291278213262558, + 0.0038826081436127424, + -0.00721008563414216, + -0.00019526627147570252, + 0.0200507789850235, + 0.016402781009674072, + -0.005263825412839651, + -0.018319301307201385, + -0.011241389438509941, + -0.013838606886565685, + 0.005210955627262592, + 0.037537384778261185, + -0.006879650987684727, + 0.03341355919837952, + 0.011670954525470734, + 0.026210082694888115, + -0.01161147654056549, + -0.008128694258630276, + -0.031774602830410004, + -0.02237704023718834, + -0.002324608387425542, + 0.0323297344148159, + -0.023659126833081245, + -0.010910955257713795, + 0.0005902390694245696, + 0.003074695123359561, + 0.005240695085376501, + -0.01065321546047926, + -0.005690086167305708, + -0.014658085070550442, + -0.010858085006475449, + 0.002570782322436571, + -0.013587475754320621, + -0.003063129959627986, + 0.005346434190869331, + -0.01030956394970417, + -0.011095997877418995, + -0.012569737620651722, + -0.012754780240356922, + 0.010534259490668774, + 0.014843128621578217, + -0.024505039677023888, + -0.012292171828448772, + 0.002192434389144182, + -0.003104434348642826, + 0.01987895369529724, + 0.008954781107604504, + 0.006806955672800541, + -0.0315895602107048, + -0.03920277580618858, + -0.03333425521850586, + 0.00632452080026269, + 0.011221563443541527, + -0.016495302319526672, + -0.024954430758953094, + -0.012682084925472736, + 0.01958817057311535, + 0.012378085404634476, + -0.0024138258304446936, + 0.014089737087488174, + -0.009886607527732849, + -0.010223650373518467, + -0.00763965118676424, + 0.022390257567167282, + 0.02656695246696472, + 0.012530084699392319, + 0.0041535645723342896, + -0.014671302400529385, + -9.866574691841379e-05, + 0.009615650400519371, + 0.031034430488944054, + -0.013514780439436436, + 0.025469908490777016, + -0.00701182521879673, + 0.0064699118956923485, + 0.013204172253608704, + 0.016045911237597466, + -0.03174816817045212, + 0.03412729874253273, + 0.04470121115446091, + 0.030585039407014847, + 0.02971269190311432, + -0.00902747642248869, + 0.003723999485373497, + -0.03793390840291977, + 0.018028518185019493, + -0.01139999832957983, + 0.0285495612770319, + 0.010547476820647717, + 0.024769388139247894, + 0.02163686603307724, + -0.050226081162691116, + -0.01002538949251175, + 0.0029920865781605244, + 0.025060169398784637, + 0.001964434515684843, + -0.008915129117667675, + 0.013825389556586742, + 0.009635476395487785, + 0.010673041455447674, + -0.0010061737848445773, + 0.011208346113562584, + 0.004252695012837648, + -0.004203130025416613, + 0.010091477073729038, + 0.008558259345591068, + 0.02256208285689354, + 0.00632452080026269, + 0.002304782159626484, + -0.018358953297138214, + 0.005382781848311424, + 0.005128346849232912, + 0.015900518745183945, + 0.012298780493438244, + 0.011393389664590359, + 0.02847025729715824, + -0.003780173370614648, + 0.04454260319471359, + 0.001608391059562564, + 0.03867408260703087, + 0.024690082296729088, + -0.0030284342356026173, + -0.008875477127730846, + 0.04211060330271721, + -0.0009433911764062941, + 0.007566955406218767, + 0.0251262579113245, + 0.0039718253538012505, + 0.016640692949295044, + -0.0010813476983457804, + -0.00029904342954978347, + 0.0026666081976145506, + -0.0028830431401729584, + 0.00998573750257492, + 0.0006773911882191896, + 0.018768692389130592, + 0.0037636517081409693, + 0.024438953027129173, + 0.019376693293452263, + -0.004358434118330479, + 0.019852519035339355, + 0.0061427815817296505, + -0.0032299994491040707, + -0.012721736915409565, + -0.001878521405160427, + -0.02270747534930706, + -0.012615998275578022, + -0.0035356516018509865, + -0.0028599125798791647, + 0.012675476260483265, + -0.012166607193648815, + -0.005686781834810972, + -0.006397216580808163, + -0.007824694737792015, + -0.008135302923619747, + 0.006545912008732557, + -0.0028747820761054754, + 0.0086838249117136, + -0.0005910651525482535, + 0.0034398254938423634, + -0.02061912789940834, + -0.01615164987742901, + 0.02810017019510269, + -0.012311997823417187, + -0.0031093908473849297, + 0.006212173029780388, + 0.010547476820647717, + 0.010104694403707981, + -0.005230781622231007, + -0.009675129316747189, + 0.002769042970612645, + -0.03468243032693863, + 0.006466607563197613, + -0.008829216472804546, + -0.02910469099879265, + 0.02298503927886486, + -0.0017959127435460687, + 0.002772347303107381, + -0.008478955365717411, + -0.0005770216230303049, + 0.016680344939231873, + -0.0034827820491045713, + -0.022813213989138603, + 0.03172173351049423, + -0.010408693924546242, + -0.015596519224345684, + -0.016323475167155266, + -0.005577738396823406, + -0.024623995646834373, + -0.016402781009674072, + -0.015213214792311192, + -0.008551650680601597, + 0.019839301705360413, + -0.020738083869218826, + 0.012483824044466019, + 0.0016356519190594554, + 0.0023807822726666927, + 0.03957286477088928, + -0.01149251963943243, + -0.01035582460463047, + -0.03589842841029167, + -0.0033026952296495438, + 0.009794085286557674, + 0.0166274756193161, + 0.023011473938822746, + 0.017050432041287422, + 0.001076391083188355, + -0.02205982245504856, + -0.0031754777301102877, + 0.001990869175642729, + -0.031325213611125946, + -7.63614007155411e-05, + -0.0033588691148906946, + -0.007791650947183371, + -0.010045215487480164, + 0.013091824017465115, + -0.014988519251346588, + 0.01402365043759346, + -0.008016346953809261, + 0.008320346474647522, + -0.016878606751561165, + -0.01620451919734478, + -0.004768173210322857, + -0.023989561945199966, + -0.013547823764383793, + 0.0028186081908643246, + 0.049565210938453674, + 0.011366955004632473, + 0.002169304061681032, + 0.02075130119919777, + 0.016733214259147644, + 0.018834779039025307, + -0.013957562856376171, + 0.005564521066844463, + 0.012292171828448772, + 0.014340867288410664, + 0.024042431265115738, + -0.008650781586766243, + -0.006099825259298086, + 0.0036645212676376104, + -0.02368556149303913, + 0.024676864966750145, + 0.00381982559338212, + 0.017935996875166893, + 0.010428519919514656, + -0.00044278253335505724, + -0.001977651845663786, + 0.03650642931461334, + -0.02971269190311432, + -0.024306779727339745, + 0.018266431987285614, + 0.011551998555660248, + -0.0056603471748530865, + 0.0190330408513546, + -0.012503650039434433, + -0.01378573663532734, + -0.0086838249117136, + 0.011598259210586548, + -0.01051443349570036, + 0.01620451919734478, + 1.992934448935557e-05, + -0.015133910812437534, + -0.0347352996468544, + -0.03172173351049423, + -0.02836451679468155, + 0.03724660351872444, + -0.015609736554324627, + -0.010487998835742474, + -0.009899824857711792, + -0.019151996821165085, + 0.006043651141226292, + -0.02102886699140072, + -0.026038257405161858, + -0.0010350868105888367, + -0.003117651678621769, + -0.025152692571282387, + -0.023698778823018074, + 0.0071506076492369175, + -0.0013927824329584837, + 0.020923126488924026, + 0.0010722606675699353, + -0.01135373767465353, + 0.015556867234408855, + -0.03211825713515282, + -0.02609112672507763, + -0.014618432149291039, + -0.007375303190201521, + -0.011849389411509037, + 0.03996938467025757, + -0.017539475113153458, + -0.02860243059694767, + 0.0068003470078110695, + 0.022020170465111732, + 0.002825216855853796, + 0.005676868837326765, + 0.026963474228978157, + -0.0023427822161465883, + -0.013865041546523571, + -0.00647652056068182, + -0.01052104216068983, + 0.015358606353402138, + 0.022125909104943275, + -0.02767721377313137, + 0.0182928666472435, + -0.020024344325065613, + 0.006925912108272314, + -0.006099825259298086, + 0.0051613906398415565, + 0.0019479127367958426, + 0.0013993910979479551, + -0.0035488689318299294, + -0.006866433657705784, + 0.005805738270282745, + 0.008822607807815075, + -0.007447998970746994, + 0.020870257169008255, + -0.0035323472693562508, + 0.02168973535299301, + 0.010719303041696548, + 0.005346434190869331, + -0.0047813905403018, + 0.025641735643148422, + 0.005832172930240631, + 0.023064345121383667, + -0.014724171720445156, + 0.03666503727436066, + -0.008650781586766243, + 0.008756520226597786, + 0.02215234376490116, + -0.010316172614693642, + 0.0036744342651218176, + -0.019693909212946892, + 0.02910469099879265, + 0.01732799783349037, + 0.02154434472322464, + 0.04234851524233818, + -0.012450780719518661, + -0.013415650464594364, + -0.041899122297763824, + 0.007461216300725937, + 0.01596660539507866, + -0.02276034466922283, + 0.006899476982653141, + -0.02934260480105877, + 0.014354084618389606, + -0.005742955487221479, + 0.001641434500925243, + 0.01323721557855606, + -0.02001112699508667, + -0.02139895409345627, + 0.024716518819332123, + -0.005898260045796633, + -0.0028946083039045334, + -0.023923475295305252, + -0.008181563578546047, + -0.01442017126828432, + 0.006235303357243538, + -0.02823234349489212, + -0.004252695012837648, + 0.011221563443541527, + -0.021478258073329926, + 0.015120693482458591, + 0.0053563471883535385, + 0.037828169763088226, + 0.0076726945117115974, + 0.00021829344041179866, + 0.016178084537386894, + -0.005006086081266403, + -0.004064347129315138, + -0.010957215912640095, + 0.009159650653600693, + -0.026765212416648865, + 0.019984692335128784, + 0.00648973835632205, + 0.03534330055117607, + 0.01927095279097557, + -0.0006612825090996921, + 0.010335998609662056, + 0.026077909395098686, + -0.0198657363653183, + -0.016957910731434822, + -0.004057738464325666, + 0.0007641303236596286, + -0.01469773706048727, + -0.001312652020715177, + -0.01960138790309429, + 0.01044834591448307, + -0.018041735514998436, + 0.003628173377364874, + 0.026989908888936043, + -0.010547476820647717, + -0.02047373540699482, + 0.021623648703098297, + 0.015120693482458591, + -0.04509773105382919, + 0.027148516848683357, + 0.022733910009264946, + 0.0044575645588338375, + -0.005799129605293274, + -0.017856692895293236, + -0.017209040001034737, + -0.028338082134723663, + 0.013891476206481457, + -0.02141217142343521, + 0.001619130140170455, + -0.01023686770349741, + -0.004110608249902725, + 0.00018762497347779572, + -0.0054026078432798386, + -0.0018157388549298048, + -0.017631996423006058, + 0.0061427815817296505, + -0.01945599727332592, + -0.000748847727663815, + -0.0031407822389155626, + -0.00021075540280435234, + -0.02749216929078102, + 0.03579268977046013, + 0.0007409998797811568, + 0.010316172614693642, + 0.0386212132871151, + -0.011783302761614323, + 0.026659473776817322, + 0.02350051887333393, + -0.02080417051911354, + 0.02150469273328781, + 0.018002083525061607, + 0.027915125712752342, + 0.008300520479679108, + -0.017420519143342972, + -0.0254038218408823, + -0.02921042963862419, + 0.004705390427261591, + -0.013494954444468021, + 0.03383651748299599, + 0.013428867794573307, + -0.009086955338716507, + 0.0017281736945733428, + 0.003866086481139064, + 0.02562851831316948, + -0.017473388463258743, + -0.014182258397340775, + 0.0508076436817646, + 0.02860243059694767, + 0.0019049561815336347, + -0.018041735514998436, + -0.010468171909451485, + -0.02730712667107582, + -0.008155128918588161, + -0.007679303176701069, + 0.0003791738417930901, + -0.001043347641825676, + -0.013065389357507229, + -0.01788312755525112, + 0.045758601278066635, + 0.013759301975369453, + 0.0026352170389145613, + 0.0003405543102417141, + -0.01165773719549179, + -0.01035582460463047, + -0.020579475909471512, + 0.0038363472558557987, + 0.0182928666472435, + -0.008822607807815075, + 0.04425181820988655, + 0.008386433124542236, + -0.01009808573871851, + 0.010752346366643906, + -0.018610084429383278, + -0.03050573356449604, + -0.015173562802374363, + 0.013891476206481457, + 0.018094606697559357, + -0.021927649155259132, + 0.014195475727319717, + -0.0028599125798791647, + 0.011750259436666965, + 0.0021560867317020893, + 0.004295651335269213, + -0.01769808493554592, + -0.025800343602895737, + -0.0005497607635334134, + -0.020500170066952705, + 0.007249738089740276, + 0.005300173070281744, + -0.0028830431401729584, + -0.0016092171426862478, + -0.008498781360685825, + -0.016548171639442444, + -0.01987895369529724, + -0.004163477569818497, + 0.0358455590903759, + -0.034338776022195816, + 0.004857390653342009, + 0.009020867757499218, + 0.005775999277830124, + 0.03425947204232216, + -0.021425388753414154, + -0.02507338672876358, + 0.0016306954203173518, + 0.02215234376490116, + -0.02712208218872547, + 0.013587475754320621, + 0.04216347262263298, + 0.008333563804626465, + -0.013865041546523571, + 0.013435476459562778, + -0.00488712964579463, + -0.02376486547291279, + -0.007659477181732655, + -0.007950259372591972, + -0.020817387849092484, + 0.02141217142343521, + -0.005617390386760235, + 0.009833737276494503, + -0.02529808320105076, + -0.026765212416648865, + 0.02841738611459732, + 0.012596172280609608, + 0.005019303411245346, + -0.01731478050351143, + -0.005670260172337294, + 0.0190330408513546, + 0.009754433296620846, + -0.005881738383322954, + 0.030109213665127754, + -0.006218781694769859, + 0.02385738678276539, + 0.008545042015612125, + 0.0021213910076767206, + 0.018927302211523056, + -0.020037561655044556, + -0.019931823015213013, + 0.006711129564791918, + 0.030770082026720047, + -0.006602086126804352, + -0.0047384342178702354, + -0.03037356026470661, + -0.005498433951288462, + -0.01274817157536745, + 0.01681252010166645, + 0.011472693644464016, + -0.00894156377762556, + 0.0029937387444078922, + 0.012173215858638287, + -0.015913736075162888, + 0.023487301543354988, + 0.00371408648788929, + -0.012497041374444962, + 0.006502955686300993, + -0.012417737394571304, + -0.02279999665915966, + -0.0043716514483094215, + -0.022720692679286003, + 0.035634081810712814, + 0.012781215831637383, + -0.043855298310518265, + 0.0020784344524145126, + -0.01574191078543663, + -0.041714079678058624, + -0.032250430434942245, + -0.009390954859554768, + -0.009569389745593071, + -0.003443129826337099, + 0.014221911318600178, + -0.01479025837033987, + 0.03388938680291176, + -0.0023692171089351177, + 0.04039234295487404, + -0.03264695033431053, + 0.003117651678621769, + -0.00358191248960793, + -0.00768591184169054, + 0.0263290386646986, + 0.004817738197743893, + -0.023156866431236267, + -0.022535648196935654, + 0.012338432483375072, + -0.000922738981898874, + 0.0038396515883505344, + 0.01506782416254282, + -0.012047650292515755, + -0.012721736915409565, + 0.012331823818385601, + 0.011307476088404655, + 0.031642429530620575, + -0.006793737877160311, + 0.01281425915658474, + -0.030664343386888504, + 0.0006088259979151189, + 0.01768486760556698, + 0.009219128638505936, + -0.02757147327065468, + -0.015979822725057602, + 0.009813911281526089, + -0.0017298258608207107, + 0.0028747820761054754, + 0.020909909158945084, + -0.025826778262853622, + 0.0009037390118464828, + -0.01634990982711315, + 0.0388062559068203, + 1.1055365575884935e-05, + 0.0010078259510919452, + 0.011386780999600887, + 0.017301563173532486, + -0.00826747715473175, + -0.0014415215700864792, + 0.016521736979484558, + -0.03272625431418419, + -0.0019809561781585217, + 0.024082083255052567, + -0.017142953351140022, + 0.03137808293104172, + -0.018504345789551735, + 0.016957910731434822, + -0.014922432601451874, + 0.018411822617053986, + 0.0072827814146876335, + -0.025549214333295822, + -0.009741215966641903, + 0.031325213611125946, + 0.03513181954622269, + -0.03690294921398163, + -0.008796172216534615, + 0.010203824378550053, + -0.010884519666433334, + -0.006569042336195707, + -0.01423512864857912, + 0.006853216327726841, + -0.015028171241283417, + -0.004850781988352537, + 0.008036172948777676, + -0.01541147567331791, + -0.012834085151553154, + 0.0139046935364604, + -0.0043947817757725716, + -0.028998952358961105, + -0.0029937387444078922, + 0.18324588239192963, + -0.01634990982711315, + -0.009040694683790207, + 0.016363127157092094, + -0.008743302896618843, + 0.003694260260090232, + 0.028919648379087448, + 0.0016315215034410357, + 0.002618695143610239, + 0.01792277954518795, + -0.021055301651358604, + -0.0032861733343452215, + 0.009741215966641903, + 0.0030152169056236744, + 0.015358606353402138, + -0.011307476088404655, + -0.023341909050941467, + -0.018504345789551735, + 0.0048342603258788586, + 0.01777738891541958, + 0.002278347499668598, + -0.03277912363409996, + -0.010547476820647717, + -0.004844173323363066, + 0.016865389421582222, + 0.0036083473823964596, + -0.007758607622236013, + 0.008690433576703072, + 0.020394431427121162, + -0.0024171301629394293, + -0.0014696085127070546, + 0.005865216720849276, + 0.01786991022527218, + -0.011439650319516659, + 0.021835127845406532, + -0.001736434525810182, + 0.012212867848575115, + -0.0023394778836518526, + 0.038277558982372284, + 0.026447996497154236, + 0.01611199788749218, + -0.0038528689183294773, + -0.016045911237597466, + -0.01014434639364481, + -0.0362156480550766, + 0.025707822293043137, + -0.002679825760424137, + 0.009437215514481068, + -0.015028171241283417, + -0.0053563471883535385, + -0.0251262579113245, + 0.0078048682771623135, + 0.002955738687887788, + 0.022495996206998825, + -0.011479302309453487, + -0.014248345978558064, + 0.019257735460996628, + -0.0068466076627373695, + 0.012133562937378883, + 0.017539475113153458, + -0.0338100828230381, + 0.021385736763477325, + -0.0182003453373909, + 0.02372521348297596, + -0.022482778877019882, + -0.01875547505915165, + -0.03420660272240639, + 0.008921737782657146, + 0.012239302508533001, + -0.01991860568523407, + -0.013171127997338772, + -0.02367234416306019, + -0.030003473162651062, + 0.011433041654527187, + -0.012589563615620136, + -0.045705731958150864, + -0.006003999151289463, + 0.0077453902922570705, + 0.01423512864857912, + 0.01494886726140976, + -0.014922432601451874, + -0.019350258633494377, + 0.006255129352211952, + -0.013825389556586742, + 0.008855651132762432, + -0.04425181820988655, + 0.013058780692517757, + -0.0076726945117115974, + -0.011089389212429523, + -0.037828169763088226, + -0.004930086433887482, + -0.006697912234812975, + 0.008373215794563293, + -0.0157022587954998, + 0.009278607554733753, + 0.008545042015612125, + 0.009536346420645714, + 0.021755822002887726, + -0.030902255326509476, + -0.0040808687917888165, + -0.020500170066952705, + 0.05694051459431648, + 0.03404799476265907, + -0.009179476648569107, + -0.015847649425268173, + 0.002083390951156616, + 0.01616486720740795, + 0.017301563173532486, + -0.013666780665516853, + -0.014843128621578217, + -0.008459129370748997, + -0.021702952682971954, + -0.0010945650283247232, + -0.01169738918542862, + 0.0062518250197172165, + 0.00721008563414216, + -0.009377737529575825, + -0.00798330269753933, + -0.0022287822794169188, + -0.0063013904727995396, + -0.028390951454639435, + 0.005382781848311424, + 0.001139999832957983, + 0.015503997914493084, + -0.012781215831637383, + -0.02317008376121521, + -0.052631642669439316, + -0.0021907822228968143, + -0.016772866249084473, + -0.004996173083782196, + 0.02317008376121521, + -0.028258778154850006, + -0.00068358686985448, + 0.014644867740571499, + 0.02205982245504856, + 0.012245911173522472, + -0.01954851858317852, + -0.05160068720579147, + -0.0060337381437420845, + -0.011532172560691833, + 0.021465040743350983, + -0.03647999465465546, + 0.00701182521879673, + -0.0024815648794174194, + 0.02529808320105076, + -0.00376034714281559, + 0.01578156277537346, + -0.006886259652674198, + -0.013375997543334961, + -0.029791995882987976, + -0.0009359563700854778, + -0.0051613906398415565, + -0.001933043240569532, + -0.0046293907798826694, + 0.019297387450933456, + -0.009794085286557674, + -0.02261495217680931, + -0.03087582066655159, + 0.0034133908338844776, + 0.01625738851726055, + -0.03394225612282753, + -0.009734607301652431, + -0.013217389583587646, + -0.02043408341705799, + -0.01629704050719738, + 0.006456694565713406, + -0.16717353463172913, + 0.016957910731434822, + 0.04137042909860611, + -0.018213562667369843, + 0.02636869251728058, + -0.004606259986758232, + 0.002597216982394457, + -0.0026996517553925514, + -0.02823234349489212, + 0.006991998758167028, + 0.04174051433801651, + 0.003538955934345722, + -0.0023196518886834383, + -0.004553390666842461, + 0.006529390346258879, + 0.004404694773256779, + -0.012549910694360733, + 0.03460312634706497, + 0.025787126272916794, + 0.019984692335128784, + -0.006522781681269407, + -0.035211123526096344, + 0.01945599727332592, + -0.01997147500514984, + 0.009529737755656242, + -0.018834779039025307, + -0.013706432655453682, + 0.005927999038249254, + 0.008241042494773865, + -0.007309216074645519, + -0.02056625857949257, + -0.0006464129546657205, + 0.019350258633494377, + -0.012404520064592361, + 0.009549563750624657, + -0.009575998410582542, + -0.012959649786353111, + -0.004553390666842461, + -0.007619824726134539, + 0.026659473776817322, + 0.01670677959918976, + 0.017394084483385086, + -0.008280694484710693, + -0.012206259183585644, + -0.029501212760806084, + -0.007593390066176653, + 0.02902538701891899, + -0.006364172790199518, + -0.013263650238513947, + -0.007467824965715408, + 0.0026583473663777113, + -0.016310257837176323, + -0.0008723476785235107, + 0.023830952122807503, + -0.0026203475426882505, + 0.02529808320105076, + -0.004414608236402273, + 0.021385736763477325, + -0.012827476486563683, + 0.006839998997747898, + -0.0020685214549303055, + 0.0013192606857046485, + 0.01764521561563015, + -0.0005910651525482535, + -0.018649736419320107, + -0.042137037962675095, + 0.0011713911080732942, + 0.01749982312321663, + -0.017988866195082664, + -0.005115129519253969, + -0.02298503927886486, + -0.006466607563197613, + 0.05826225131750107, + 0.004322086460888386, + 0.005445564165711403, + -0.005313390400260687, + 0.010335998609662056, + -0.003010260406881571, + 0.009318259544670582, + 0.016891824081540108, + -0.03074364736676216, + 0.0705808624625206, + -0.02817947417497635, + -0.015503997914493084, + -0.010388867929577827, + 0.006139477249234915, + 0.00839965045452118, + 0.0011383476667106152, + 0.01442017126828432, + 0.00236756494268775, + -0.0009921302553266287, + -0.0354754738509655, + 0.017817040905356407, + -0.04203129932284355, + 0.012159998528659344, + -0.00021726083650719374, + 0.020315127447247505, + -0.023844169452786446, + -0.016601040959358215, + -0.014446606859564781, + 0.0007740433793514967, + -0.012140171602368355, + -0.05125703662633896, + -0.0029259994626045227, + 0.011789911426603794, + -8.529346814611927e-05, + -0.01249043270945549, + 0.01411617174744606, + 0.017380867153406143, + -0.003667825600132346, + -0.0020685214549303055, + -0.020235823467373848, + 0.01620451919734478, + -0.006030433811247349, + 0.006787129212170839, + -0.00031453254632651806, + 0.010117911733686924, + -0.025562431663274765, + 0.02381773479282856, + 0.007633042521774769, + 0.024914778769016266, + 0.00835999846458435, + -0.026633039116859436, + 0.022971821948885918, + 0.013005911372601986, + -0.01086469367146492, + -0.07729529589414597, + 0.01198156364262104, + 0.006400520913302898, + 0.009463651105761528, + 0.0022948691621422768, + 0.009595824405550957, + -0.02252243086695671, + 0.014684519730508327, + -0.015385041013360023, + 0.019244518131017685, + -0.038013212382793427, + -0.029686257243156433, + -0.010342607274651527, + -0.0022056519519537687, + 0.02664625644683838, + 0.0016786084743216634, + -0.018702605739235878, + 0.009853563271462917, + -0.006925912108272314, + 0.023659126833081245, + 0.019389910623431206, + 0.001977651845663786, + -0.011366955004632473, + 0.001304391073063016, + -0.0012473911046981812, + -0.0032217386178672314, + -0.02939547412097454, + 0.008511998690664768, + 0.02108173631131649, + 0.014512693509459496, + 0.022231649607419968, + -0.019984692335128784, + 0.021147822961211205, + -0.011208346113562584, + 0.0157022587954998, + 0.00551495561376214, + -0.008815998211503029, + -0.019059475511312485, + 0.003063129959627986, + -0.026989908888936043, + -0.013838606886565685, + 0.009159650653600693, + 0.026210082694888115, + -0.033360689878463745, + -0.006426955573260784, + -0.01353460643440485, + 0.002517912769690156, + 0.0016513476148247719, + 0.0015249563148245215, + -0.026712343096733093, + -0.03460312634706497, + -0.01699756272137165, + -0.01002538949251175, + 0.02749216929078102, + 0.01374608464539051, + -0.002357651712372899, + -0.012477215379476547, + -0.00525721674785018, + -0.006443477235734463, + -0.00540921650826931, + -0.0138121722266078, + 0.005366260185837746, + -0.0380660817027092, + 0.02712208218872547, + 0.009232345968484879, + -0.00721008563414216, + -0.02860243059694767, + -0.012245911173522472, + -0.0010590433375909925, + 0.0051349555142223835, + -0.010930781252682209, + 0.005871825385838747, + -0.0018851301865652204, + -0.01044834591448307, + -0.04208416864275932, + -0.005961042363196611, + -0.023566605523228645, + -0.009622259065508842, + 0.00442452123388648, + -0.016495302319526672, + -0.014882780611515045, + -0.023923475295305252, + 0.04248068854212761, + -0.0007269564084708691, + 0.02627616934478283, + 0.009331476874649525, + -0.0036116517148911953, + -0.007077911868691444, + 0.023011473938822746, + -0.020975997671484947, + 0.012292171828448772, + -0.011347129009664059, + 0.00810225959867239, + -0.025602083653211594, + -0.003942086361348629, + 0.014750606380403042, + 0.011016693897545338, + 0.010474780574440956, + 0.017103301361203194, + 0.006793737877160311, + -0.0388062559068203, + -0.004361738450825214, + -0.05268451198935509, + 0.027518603950738907, + 0.010091477073729038, + 0.005557912401854992, + -0.028998952358961105, + 0.0052208686247467995, + 0.015940170735120773, + 0.012556520290672779, + 0.01276799850165844, + 0.009536346420645714, + -0.005217564292252064, + 0.0025691301561892033, + -0.007302607409656048, + -0.008835825137794018, + -0.0199582576751709, + -0.013838606886565685, + 0.006572346668690443, + -0.00894156377762556, + 0.01269530225545168, + 0.015107476152479649, + -0.005842085927724838, + 0.006413738243281841, + 0.006724346894770861, + -0.015636172145605087, + -0.010884519666433334, + -0.0015513910911977291, + -0.009628867730498314, + 0.009119998663663864, + -0.009298433549702168, + -0.019046258181333542, + -0.001206086715683341, + 0.0009301737882196903, + -0.012060867622494698, + 0.003486086381599307, + -0.006886259652674198, + -0.017341215163469315, + 0.02344764769077301, + 0.017935996875166893, + 0.012840693816542625, + 0.036797210574150085, + -0.025271648541092873, + -0.026249734684824944, + 0.021808693185448647, + -0.03153669089078903, + -0.0036612169351428747, + 0.01378573663532734, + 0.0024286953266710043, + -0.011247998103499413, + 0.009807302616536617, + -0.0043419124558568, + 0.036559298634529114, + -0.00711756432428956, + 0.017063649371266365, + -0.012893563136458397, + 0.003345651552081108, + -0.032250430434942245, + 0.005544694606214762, + 0.01732799783349037, + 0.000466739060357213, + -0.02860243059694767, + 0.04533564671874046, + -0.0006468259962275624, + 0.019773215055465698, + 0.004794607870280743, + 0.026210082694888115, + -0.019852519035339355, + -0.008697042241692543, + 0.005125042516738176, + -5.906520891585387e-05, + -0.032752688974142075, + -0.023606257513165474, + -0.006321216467767954, + -0.010639998130500317, + 0.039810776710510254, + -0.020090430974960327, + -0.006532694678753614, + 0.01378573663532734, + -0.0019082606304436922, + -0.005594260059297085, + 0.04850781708955765, + 0.03309634327888489, + -0.008901911787688732, + 0.0032878255005925894, + -0.013798953965306282, + 0.01949564926326275, + 0.0007806520443409681, + -0.015133910812437534, + 0.004510433878749609, + 0.0022882604971528053, + 0.005343129392713308, + 0.00488712964579463, + 0.02237704023718834, + 0.0011746954405680299, + -0.0050523472018539906, + 0.011644519865512848, + 0.013719649985432625, + -0.004127129912376404, + -0.015953388065099716, + 0.00893495511263609, + 0.015979822725057602, + -0.023275822401046753, + 0.010137737728655338, + 0.016191301867365837, + -0.02276034466922283, + 0.024782605469226837, + 0.0044806948862969875, + 0.019019823521375656, + -0.020182954147458076, + 0.005349738523364067, + 0.026262952014803886, + -0.0068466076627373695, + 0.043723125010728836, + 0.00977425929158926, + -0.010210433043539524, + -0.014816693030297756, + 0.03653286397457123, + 0.009040694683790207, + -0.011882432736456394, + -0.025430256500840187, + 0.035211123526096344, + 0.014618432149291039, + 0.00043782603461295366, + -0.0025592169258743525, + 0.012060867622494698, + 0.009582607075572014, + 0.008743302896618843, + -0.015953388065099716, + -0.004103999584913254, + 0.0167199969291687, + -0.028628865256905556, + 0.009172867983579636, + 0.0013721302384510636, + -0.0252187792211771, + -0.01615164987742901, + -0.013587475754320621, + -0.01423512864857912, + 0.02279999665915966, + 0.014155823737382889, + 0.02034156210720539, + 0.11018015444278717, + 0.022271301597356796, + -0.015081041492521763, + -0.0021891300566494465, + -0.012827476486563683, + 0.03359860181808472, + 0.008868868462741375, + 0.017817040905356407, + 0.008822607807815075, + -0.05064903572201729, + 0.010963824577629566, + -0.018834779039025307, + 0.02071164920926094, + -0.034523822367191315, + -0.0075273034162819386, + 0.020579475909471512, + -0.01568904146552086, + 0.028893213719129562, + -0.009252172894775867, + 0.018173910677433014, + 0.03616277873516083, + -0.0053067817352712154, + 0.016971128061413765, + 0.03613634407520294, + -0.02757147327065468, + -0.02121390961110592, + 0.01675964891910553, + -0.006215477362275124, + -0.018279649317264557, + 0.006635129451751709, + -0.007811476942151785, + -0.00421304302290082, + -0.05310747027397156, + -0.02168973535299301, + 0.03148382157087326, + -0.01123478077352047, + -0.008954781107604504, + -0.007137390319257975, + 0.0047615645453333855, + -0.018002083525061607, + 0.004982955753803253, + 0.018081389367580414, + -0.01973356306552887, + -0.036982256919145584, + 0.011684171855449677, + -0.01694469340145588, + -0.01675964891910553, + -0.019839301705360413, + -0.053768340498209 + ], + "metadata": { + "source": "Kreye_Marieke_BA_241_V2.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 17, + "has_images": true, + "image_count": 98, + "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", + "links": [], + "last_modified": "2025-05-05T23:00:23", + "_known_field_names": "frozenset({'is_continuation', 'sent_to', 'header_footer_type', 'email_message_id', 'filename', 'languages', 'detection_class_prob', 'sent_from', 'link_texts', 'cc_recipient', 'subject', 'image_mime_type', 'image_path', 'filetype', 'page_number', 'last_modified', 'signature', 'detection_origin', 'text_as_html', 'attached_to_filename', 'bcc_recipient', 'data_source', 'link_start_indexes', 'category_depth', 'emphasized_text_tags', 'parent_id', 'orig_elements', 'page_name', 'coordinates', 'url', 'link_urls', 'file_directory', 'links', 'table_as_cells', 'emphasized_text_contents', 'key_value_pairs', 'image_base64'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "Kreye_Marieke_BA_241_V2.pdf", + "detection_class_prob": 0.3422867953777313, + "parent_id": "e02392183bc6851689602ad4b9f6039f", + "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", + "id": "ce00eae5-7e07-454f-9e4f-f79ac36f92f4", + "processing_timestamp": "2025-05-05T23:15:46.977945", + "chunk_number": 29, + "total_chunks": 56, + "chunking_strategy": "hybrid", + "word_count": 483 + } +} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000030.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000030.json new file mode 100644 index 0000000000000000000000000000000000000000..06dec0e88aade48af0a8c297d24d11b8de6ae5e1 --- /dev/null +++ b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000030.json @@ -0,0 +1,1570 @@ +{ + "id": "61a115b2-0ff7-441a-f6d9-eb3d00000030", + "content": "500 (20 % MIV-Reduktion) neue B\u00e4ume gepflanzt werden. Wie aus der Analyse des Fallstudiengebiets in Kapitel 5.2.1 bereits hervorgeht, sind einige Bl\u00f6cke von einem erh\u00f6hten \u00dcberhitzungsrisiko betroffen. Deshalb wird bei der Aufstellung der Pflanzszenarien in diesen Gebieten begonnen und mit zunehmender Anzahl an zus\u00e4tzlichen B\u00e4umen die Anzahl der Stra\u00dfenz\u00fcge erweitert. Je nach angewandtem Mobilit\u00e4tsszenario, welches die Anzahl der zus\u00e4tzlichen B\u00e4ume definiert, und dem Pflanzabstand der B\u00e4ume (5,0 m, 10,0 m bzw. 15,0 m Pflanzabstand) w\u00fcrden sich neun m\u00f6gliche Baumpflanzungsszenarien ergeben. Im Rahmen dieser Arbeit wird der Fokus auf f\u00fcnf Szenarien, aufgeteilt auf drei Gebietsausschnitte, gelegt. Durch diese Fokussierung lassen sich die Szenarien je Gebietsausschnitt optimal untereinander vergleichen. Zudem w\u00fcrden sich 75 B\u00e4ume bei einem geringeren Pflanzabstand auf eine zu geringe Fl\u00e4che konzentrieren. In nachfolgender Tabelle sind die Anzahl und der Abstand der B\u00e4ume je Baumpflanzungsszenarien A bis E dargestellt:\nTabelle 1: Baumpflanzungsszenarien in Gromb\u00fchl (eigene Berechnungen)\n\n| Gebiets- | ausschnitt | Fl\u00e4che | des | Gebiets- | ausschnitts | Baum- | pflanzungs- | szenario | Anzahl | Bestands | -b\u00e4ume | Anzahl | der | neuen | B\u00e4ume | Pflanz- | abstand | Szenario | A | 75 | 15 | m | I | 2,3 | ha | 7 | Szenario | B | 250 | 5 | m | Szenario | C | 250 | 15 | m | II | 8,5 | ha | 88 | Szenario | D | 500 | 10 | m | III | 39,8 | ha | Szenario | E | 788 | 500 | 15 | m |\n|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|\n\n34\nFallstudien\nDer Gebietsausschnitt I f\u00fcr Szenario A und B wird durch die Ernst-Reuter-Stra\u00dfe, Steinheilstra\u00dfe, Matterstrockstra\u00dfe und den Josefplatz begrenzt. Dabei wird der \u00f6stliche Teil der Matterstrockstra\u00dfe, in welchem die Stra\u00dfenbahn verkehrt, ausgenommen. F\u00fcr die Szenarien C und D wird der Gebietsausschnitt bis an die Rimparer Stra\u00dfe, Schiestelstra\u00dfe und Gabelsbergstra\u00dfe ausgedehnt. Zudem wird der Block nord\u00f6stlich des Gebietsausschnitts I mit betrachtet, da dieser auch ein hohes \u00dcberw\u00e4rmungspotential aufweist. Szenario E erstreckt sich \u00fcber das gesamte Fallstudiengebiet. In Abbildung 19 sind die Gebietsausschnitte Baumpflanzungsszenarien dargestellt. der\n\n[IMAGE: ze) e N a eh . | | =... I u l | 1 N NE F 1 Voss (m =-Groemb\u00fchl\"\u2014\u2014.. ; 5 %y -\u2014\u2014\u2014. 2 / tg . IS tr. % Re . [? 4 Tastape-_L_-- -- nr 2 *- =\u00bb Gebietsausschnitt | \"= + Gebietsausschnitt Il -- + Gebietsausschnitt III \u00fc . 0,2 Ir faal t t t + | km]\n\nAbbildung 19: Gebietsausschnitte Gromb\u00fchl f\u00fcr die Baumpflanzungsszenarien (eigene Darstellung)\nDie Ergebnisse der Simulationen werden in Kapitel 6 zusammengefasst. Anschlie\u00dfend erfolgt die Interpretation in Kapitel 7. ## 5.3.2 Baumpflanzungsszenarien Grafenb\u00fchl\n\nDas definierte modellhafte Vorgehen l\u00e4sst sich auf das Fallstudiengebiet in Grafenb\u00fchl nicht anwenden.", + "embedding": [ + 0.005680750589817762, + -0.014697602950036526, + 0.02256222628057003, + -0.02559017390012741, + -0.012929067015647888, + 0.021490387618541718, + -0.037219636142253876, + -0.002341300016269088, + -0.04123903438448906, + -0.01906535029411316, + -0.012285962700843811, + -0.009164229966700077, + -0.006715746130794287, + 0.008541222661733627, + 0.0069401622749865055, + 0.01913234032690525, + 0.04190893471240997, + 0.010617912746965885, + 0.022120092064142227, + 0.00029140643891878426, + 0.0031870484817773104, + 0.023902026936411858, + 0.012031401507556438, + -0.00661526108160615, + -0.0010860750917345285, + 0.020137188956141472, + 0.02709074877202511, + -0.003647604724392295, + -0.021517183631658554, + 0.008460834622383118, + 0.017243221402168274, + -0.017470987513661385, + -0.017953315749764442, + 0.0037949825637042522, + -0.01147538423538208, + -0.008588115684688091, + 0.004364397376775742, + -0.020887477323412895, + 0.030225880444049835, + -0.0007222357671707869, + 0.010028400458395481, + -0.008775687776505947, + -0.013284114189445972, + -0.035049159079790115, + 0.0059286137111485004, + 0.005908516701310873, + 0.003513624658808112, + 0.009271414019167423, + -0.04008680582046509, + 0.019400298595428467, + 0.009264715015888214, + 0.02094106934964657, + -0.024156589061021805, + 0.014711000956594944, + -0.026983564719557762, + 0.006859774235635996, + -0.011716548353433609, + 0.00224751397036016, + -0.015233522281050682, + -0.00011231289681745693, + -0.014376050792634487, + 0.007368898019194603, + -0.015756044536828995, + 0.015608666464686394, + -0.030306268483400345, + -0.00823976844549179, + 0.002699696458876133, + -0.014965562149882317, + 0.014697602950036526, + -0.018931370228528976, + 0.015421094372868538, + 0.02792142517864704, + -0.0035035761538892984, + -0.02691657468676567, + 0.028189385309815407, + -0.0013741319999098778, + 0.015756044536828995, + -0.01485837809741497, + 0.004139981232583523, + 0.01493876613676548, + 0.02692997269332409, + -0.019467288628220558, + -0.03346819430589676, + 0.052466556429862976, + 0.029234429821372032, + 0.0031535534653812647, + -0.012493631802499294, + 0.018395449966192245, + -0.0050845397636294365, + 0.004444785416126251, + 0.016399148851633072, + 0.021664561703801155, + -0.004856773652136326, + 0.013002756051719189, + -0.0030480441637337208, + 0.006441086996346712, + -0.008038798347115517, + 0.0014838281786069274, + 0.013136736117303371, + -0.018382051959633827, + -0.010229370556771755, + 0.002383168786764145, + -0.011060046032071114, + 0.002423362573608756, + -0.00996141042560339, + -0.005506576504558325, + -0.0007004640065133572, + 0.015206726267933846, + 0.01655992493033409, + -0.021517183631658554, + -0.017712151631712914, + 0.03697847202420235, + -0.025884930044412613, + -0.003190397983416915, + 0.018998360261321068, + -0.029743552207946777, + 0.04319514334201813, + 0.006347300950437784, + -0.008574717678129673, + -0.01357217039912939, + 0.03502236306667328, + -0.0152469202876091, + 0.005262063350528479, + -0.018328459933400154, + 0.015340706333518028, + -0.0024133140686899424, + 0.011227521114051342, + -0.010745193809270859, + -0.03475440293550491, + -0.024866681545972824, + -0.00921782199293375, + 0.012962562032043934, + 0.012239069677889347, + 0.010604514740407467, + -0.013190328143537045, + 0.0007754090474918485, + -0.010524126701056957, + -0.011997906491160393, + -0.05793293938040733, + -0.05525333806872368, + -0.00793831329792738, + 0.013826732523739338, + -0.03175325319170952, + -0.009164229966700077, + 0.0036744007375091314, + 0.03258392959833145, + 0.003349499311298132, + 0.02861812151968479, + -0.007797634229063988, + -0.031217332929372787, + -0.004592163488268852, + -0.012004605494439602, + 0.026554830372333527, + -0.013672655448317528, + 0.010792086832225323, + -0.01237304974347353, + -0.021034855395555496, + 0.010457136668264866, + -0.03866661712527275, + -0.010383447632193565, + 0.01835525594651699, + 0.011361501179635525, + -0.004344300366938114, + 0.018073897808790207, + 0.010684902779757977, + 0.004210320301353931, + 0.0019929520785808563, + 0.008393844589591026, + 0.006424339488148689, + -0.029743552207946777, + -0.006595164071768522, + 0.010758591815829277, + -0.035585079342126846, + 0.02179853990674019, + -0.007757440209388733, + 0.0010701649589464068, + -0.016224974766373634, + 0.003949059639126062, + 0.0024367605801671743, + -0.02473270148038864, + -0.038559433072805405, + 0.002738215494900942, + 0.00360741070471704, + 0.018690206110477448, + -0.03250354155898094, + -0.002605910412967205, + 0.025322213768959045, + 0.023285718634724617, + 0.002636055927723646, + 0.0037916330620646477, + 0.0019996510818600655, + 0.009773838333785534, + 0.017551375553011894, + -0.005992254242300987, + -0.6289555430412292, + 0.014469836838543415, + 0.00035651231883093715, + 0.005841526668518782, + 0.029904328286647797, + 0.033575378358364105, + 0.02218708209693432, + 0.001879069022834301, + 0.00396915664896369, + 0.025791143998503685, + 0.020954467356204987, + 0.00418017478659749, + 0.006193223875015974, + -0.0008511914638802409, + -0.007904818281531334, + -0.023540280759334564, + 0.003989253658801317, + -0.0077842362225055695, + 0.02068650722503662, + 0.009592966176569462, + -0.026420850306749344, + 0.009492481127381325, + -0.008333553560078144, + 0.013116639107465744, + 0.02832336537539959, + 0.02358047477900982, + -0.006742541678249836, + -0.02824297733604908, + -0.007248316425830126, + -0.0010609538294374943, + -0.016291964799165726, + 0.02374125085771084, + -0.004963957704603672, + 0.024022608995437622, + 0.04035476595163345, + 0.0037011965177953243, + -0.016506332904100418, + 0.008742192760109901, + 0.008112487383186817, + 0.0017635113326832652, + -0.015354104340076447, + -0.011683053337037563, + -0.0007272600196301937, + -0.013920518569648266, + -0.01081218384206295, + 0.008849376812577248, + 0.0253624077886343, + -0.026514636352658272, + 0.0077373431995511055, + 0.004622309003025293, + 0.03258392959833145, + 0.012312758713960648, + -0.002294406993314624, + -0.001750113326124847, + 0.013866926543414593, + 0.02644764631986618, + 0.02605910412967205, + -0.007556470111012459, + 0.004401241894811392, + 0.011750043369829655, + -0.005597013048827648, + 0.008936463855206966, + -0.014242070727050304, + -0.017551375553011894, + -0.01952088065445423, + 0.030627820640802383, + -0.03303946182131767, + -0.013411395251750946, + 0.02808220125734806, + -0.032235581427812576, + -0.012352952733635902, + 0.003614109707996249, + -0.0135051803663373, + -0.01874379813671112, + 0.0337897464632988, + 0.0054261889308691025, + 0.01702885329723358, + 0.0017936568474397063, + -0.018864380195736885, + 0.020740099251270294, + 0.00836034957319498, + -0.012721397913992405, + -0.028189385309815407, + -0.00036635147989727557, + 0.020820487290620804, + -0.02309814654290676, + -0.02130281552672386, + 0.014443040825426579, + -0.0035270226653665304, + 0.02185213193297386, + 0.018395449966192245, + 0.02333931066095829, + -0.01851603202521801, + -0.021034855395555496, + 0.017913121730089188, + 0.033655766397714615, + 0.009666654281318188, + 0.05249335244297981, + 0.008454135619103909, + -0.062434665858745575, + -0.019427094608545303, + 0.012259166687726974, + 0.022843584418296814, + -0.020123790949583054, + 0.02146359160542488, + 0.008179477415978909, + -0.025844736024737358, + -0.005764488130807877, + 0.021731551736593246, + -0.024210181087255478, + 0.003443285124376416, + 0.009733644314110279, + -0.007335403468459845, + -0.00922452099621296, + 0.015059348195791245, + -0.02824297733604908, + 0.02537580579519272, + -0.012567320838570595, + -0.010972958989441395, + -0.0019175882916897535, + 0.016747495159506798, + 0.006353999953716993, + 0.015072746202349663, + -0.00972694531083107, + 0.0033695960883051157, + 0.02411639504134655, + 0.005697498098015785, + -0.010638009756803513, + -0.016224974766373634, + -0.006662154104560614, + -0.0016462788917124271, + 0.005473081488162279, + 0.032717909663915634, + -0.007188025396317244, + 0.017390599474310875, + -0.010986356995999813, + 0.022977564483880997, + -0.003945710137486458, + 0.002944209845736623, + -0.03384333848953247, + -0.027653465047478676, + -0.007228219415992498, + 0.02388862892985344, + -0.02374125085771084, + -0.021972713991999626, + -0.007268413435667753, + -0.008762289769947529, + 0.021490387618541718, + -0.001855622511357069, + 0.006491329520940781, + -0.010262865573167801, + 0.0008490980253554881, + 0.007100938353687525, + -0.007241617422550917, + -0.00392561312764883, + 0.012507029809057713, + -0.005087889265269041, + -0.020713303238153458, + -0.018154285848140717, + -0.013270716182887554, + 0.025241825729608536, + 0.021731551736593246, + -0.026005512103438377, + -0.005506576504558325, + -0.003717944025993347, + -0.0007959247450344265, + 0.0033126547932624817, + 0.007114336360245943, + 0.006698998622596264, + -0.02241484820842743, + -0.02926122583448887, + -0.03523673117160797, + 0.015622064471244812, + 0.007322005461901426, + -0.02699696272611618, + -0.022508634254336357, + -0.01275489293038845, + 0.017069047316908836, + -0.010416942648589611, + -0.003945710137486458, + 0.006176476366817951, + -0.005322354380041361, + -0.017457589507102966, + -0.005650605075061321, + 0.031083352863788605, + 0.02000320889055729, + 0.011542374268174171, + 0.002726492239162326, + -0.02537580579519272, + 0.0026662014424800873, + 0.009733644314110279, + 0.03258392959833145, + -0.01819447986781597, + 0.015809636563062668, + -0.020418547093868256, + -0.00449502794072032, + 0.0073956940323114395, + 0.01563546247780323, + -0.02861812151968479, + 0.030681412667036057, + 0.03387013450264931, + 0.014188478700816631, + 0.04190893471240997, + -0.0047998325899243355, + 0.013679354451596737, + -0.039336517453193665, + 0.013411395251750946, + -0.009318307042121887, + 0.02099466137588024, + 0.0012192176654934883, + 0.01618478074669838, + 0.005727643612772226, + -0.044534940272569656, + 0.0006912528770044446, + 0.0031887232325971127, + 0.020110392943024635, + -0.00247025559656322, + -0.0068396772257983685, + 0.01579623855650425, + 0.00529220886528492, + 0.002718118717893958, + 0.01202470250427723, + 0.004963957704603672, + 0.007811032235622406, + -0.019802238792181015, + 0.009773838333785534, + 0.01420187670737505, + 0.010175778530538082, + 0.015193328261375427, + -0.00754977110773325, + -0.01349848136305809, + 0.023848434910178185, + -0.007382296025753021, + 0.0004634869401343167, + 0.016546526923775673, + 0.010122186504304409, + 0.022441644221544266, + -0.003982554655522108, + 0.03234276548027992, + 0.005181675311177969, + 0.03403091058135033, + 0.021677959710359573, + 0.003985904157161713, + -0.01819447986781597, + 0.03960447758436203, + 0.004347649868577719, + 0.011133735068142414, + 0.02100805938243866, + -0.006320504937320948, + 0.012627611868083477, + -0.010303059592843056, + 0.01961466670036316, + 0.012821882963180542, + -0.003882069606333971, + 0.02597871609032154, + -0.0034499841276556253, + 0.02754628099501133, + 0.00929151102900505, + 0.015608666464686394, + 0.014108090661466122, + 0.004608910996466875, + 0.010336554609239101, + 0.0010098740458488464, + 0.0034968771506100893, + -0.00746938306838274, + -0.00980733335018158, + -0.01673409715294838, + -0.017604967579245567, + -0.010805484838783741, + 0.000442133896285668, + 0.007167928386479616, + -0.011428491212427616, + -0.011448588222265244, + 0.002389867790043354, + -0.003905516117811203, + -0.003908865619450808, + 0.0067023481242358685, + 0.007603363133966923, + 0.00626356340944767, + -0.012352952733635902, + 0.00011880254896823317, + -0.019748646765947342, + -0.017310211434960365, + 0.02139660157263279, + -0.008145982399582863, + -0.010463835671544075, + 0.0031820242293179035, + 0.008554620668292046, + -0.019159136340022087, + 0.012071595527231693, + -0.008306758478283882, + -0.0007394019630737603, + -0.040729910135269165, + -0.004672551527619362, + 0.00593531271442771, + -0.024062803015112877, + 0.015729248523712158, + -0.0023379505146294832, + -0.0034499841276556253, + 0.0017074071802198887, + -0.0065549700520932674, + 0.016868077218532562, + -0.016077596694231033, + -0.04231087490916252, + 0.0390685573220253, + -0.01796671375632286, + -0.009867624379694462, + -0.014108090661466122, + 0.00404284568503499, + -0.021409999579191208, + -0.013679354451596737, + -0.01026956457644701, + -0.01389372255653143, + 0.021490387618541718, + -0.016238372772932053, + 0.01026956457644701, + 0.008025400340557098, + 0.0008934789220802486, + 0.05174306407570839, + 0.0026193084195256233, + -0.006595164071768522, + -0.0234196987003088, + -0.01548808440566063, + 0.004454833921045065, + 0.023915424942970276, + 0.02902006171643734, + 0.006822929717600346, + 0.011957712471485138, + 0.007275112438946962, + -0.008199574425816536, + 0.000626356340944767, + -0.05852245166897774, + 0.00418017478659749, + 0.0027482639998197556, + -0.014268866740167141, + -0.009814032353460789, + 0.012694601900875568, + -0.023071350529789925, + 0.023057952523231506, + -0.004829977639019489, + 0.00011283625644864514, + -0.01540769636631012, + -0.010363350622355938, + 0.007147831376641989, + -0.007449286058545113, + -0.014416244812309742, + -0.006216670386493206, + 0.052011024206876755, + 0.013042950071394444, + 0.0030379958916455507, + 0.02348668873310089, + 0.014228672720491886, + 0.014657408930361271, + -0.020244373008608818, + -0.015367502346634865, + 0.013746344484388828, + 0.017564773559570312, + 0.0271577388048172, + -0.018006907775998116, + -0.010885871946811676, + 0.0024451343342661858, + -0.02528201974928379, + 0.03033306449651718, + 0.001879069022834301, + 0.009907818399369717, + 0.018944768235087395, + 0.007878022268414497, + -0.012038100510835648, + 0.014362652786076069, + -0.018569624051451683, + -0.015220124274492264, + 0.009438889101147652, + 0.006256864406168461, + -0.012654407881200314, + 0.017913121730089188, + -0.020123790949583054, + -0.024679109454154968, + -0.005429538432508707, + 0.01459041889756918, + -0.009405394084751606, + 0.010611213743686676, + -0.018770594149827957, + -0.0009546072687953711, + -0.013933916576206684, + -0.039256129413843155, + -0.03472760692238808, + 0.020673109218478203, + -0.01555507443845272, + -0.006832978222519159, + -0.006772687193006277, + -0.0058113811537623405, + -0.0007548934081569314, + -0.01268790289759636, + -0.01434925477951765, + -0.0024786293506622314, + -0.003989253658801317, + -0.02474609948694706, + -0.01781933568418026, + 0.021892325952649117, + 0.010838979855179787, + 0.017444191500544548, + -0.007945012301206589, + -0.010765290819108486, + -0.0033260527998209, + -0.029046857729554176, + -0.02848414145410061, + 0.005406091921031475, + -0.005419489927589893, + -0.01976204477250576, + 0.013444889336824417, + -0.018944768235087395, + -0.029770348221063614, + 0.014844980090856552, + 0.024558527395129204, + -0.0011204074835404754, + -0.0054697319865226746, + 0.0009353476343676448, + -0.008145982399582863, + -0.012245768681168556, + -0.0010877498425543308, + -0.0008130909409373999, + 0.015059348195791245, + 0.02163776569068432, + -0.03344139829277992, + 0.02885928563773632, + -0.0026980217080563307, + -0.0007812706753611565, + -0.023995812982320786, + -0.005081190261989832, + -0.006464533507823944, + -0.02848414145410061, + -0.0063372524455189705, + -0.0010157356737181544, + 0.000837374827824533, + 0.008963259868323803, + -0.013264017179608345, + 0.021182233467698097, + -0.0004957258934155107, + 0.011214123107492924, + 0.009860925376415253, + 0.021195631474256516, + 0.0076368581503629684, + 0.024478139355778694, + 0.021369805559515953, + 0.020244373008608818, + -0.018569624051451683, + 0.04512445256114006, + -0.0017752345884218812, + 0.004350999370217323, + 0.02950238808989525, + -0.01930651254951954, + 0.013706150464713573, + -0.03057422861456871, + 0.008333553560078144, + -0.002282683737576008, + 0.025349009782075882, + 0.036067407578229904, + -0.014483234845101833, + -0.027264922857284546, + -0.025643765926361084, + 0.023433096706867218, + 0.0066789016127586365, + -0.023835036903619766, + 0.0049606082029640675, + -0.020244373008608818, + 0.0017400648212060332, + 0.0012669480638578534, + 0.002068315865471959, + -0.004917064681649208, + -0.020659711211919785, + -0.03395052254199982, + 0.01788632571697235, + -0.0031468544621020555, + -0.005134782288223505, + -0.01889117620885372, + -0.0136525584384799, + -0.01827486790716648, + 0.0003115034196525812, + -0.020364955067634583, + -0.016077596694231033, + 0.0030714906752109528, + -0.012285962700843811, + 0.013270716182887554, + 0.01434925477951765, + 0.024223579093813896, + 0.0029257875867187977, + 0.010028400458395481, + 0.020981263369321823, + -0.022937370464205742, + -8.567390614189208e-05, + -0.01626516878604889, + 0.011770140379667282, + -0.03285188972949982, + 0.02249523624777794, + -0.0014394472818821669, + 0.01788632571697235, + 0.01727001741528511, + 0.003183698980137706, + 0.008326854556798935, + 0.02746589295566082, + -0.034084502607584, + -0.0075430721044540405, + -0.011528976261615753, + -0.015756044536828995, + -0.0070875403471291065, + 0.00754977110773325, + -0.006203272379934788, + 0.00349017814733088, + -0.01780593767762184, + 0.002681274199858308, + 0.022548828274011612, + -0.012004605494439602, + -0.02169135771691799, + 0.0011430166196078062, + 0.015474686399102211, + -0.04930462688207626, + 0.025389203801751137, + 0.010745193809270859, + 0.0047763860784471035, + -0.015729248523712158, + -0.009834129363298416, + -0.011897421441972256, + -0.0182882659137249, + 0.027023758739233017, + -0.01710924133658409, + 0.011180628091096878, + 0.0011513903737068176, + -0.030842188745737076, + 0.004886919166892767, + -0.006129583343863487, + 0.011127036064863205, + -0.02131621353328228, + 0.011173929087817669, + -0.0061429813504219055, + -0.008340252563357353, + -0.005684100091457367, + 0.008561319671571255, + -0.016667107120156288, + 0.031136944890022278, + -0.010222671553492546, + -0.005064442753791809, + 0.027599873021245003, + -0.017779141664505005, + 0.022763196378946304, + 0.017926519736647606, + -0.016626914963126183, + 0.029046857729554176, + 0.022361256182193756, + 0.0515286959707737, + 0.019654860720038414, + -0.021048253402113914, + -0.010483932681381702, + -0.0390685573220253, + 0.011428491212427616, + -0.010068594478070736, + 0.01642594486474991, + 0.007107637356966734, + -0.01073179580271244, + -0.008119186386466026, + -0.00589176919311285, + 0.026782596483826637, + -0.013545374386012554, + -0.0035337216686457396, + 0.05361878499388695, + 0.02224067412316799, + 0.004196922294795513, + -0.01930651254951954, + -0.0035739156883209944, + -0.018529430031776428, + -0.005530023016035557, + 0.002056592609733343, + -0.007489480078220367, + 0.01765855960547924, + -0.023634066805243492, + -0.00964655727148056, + 0.03981884568929672, + 0.0013791562523692846, + 0.021048253402113914, + -0.017872927710413933, + -0.020030004903674126, + -0.01101315300911665, + -0.014000906608998775, + 0.010798785835504532, + 0.021744949743151665, + -0.013109940104186535, + 0.051153551787137985, + 0.010510728694498539, + -0.018850982189178467, + 0.017926519736647606, + -0.020431945100426674, + -0.012326156720519066, + -0.014952164143323898, + 0.010571019724011421, + 0.023299116641283035, + -0.004233766812831163, + 0.006223369389772415, + 0.005024248734116554, + 0.016131188720464706, + 0.02225407212972641, + 0.013645859435200691, + -0.005566867534071207, + -0.016198178753256798, + -0.011542374268174171, + 0.001369945122860372, + -0.0037916330620646477, + 0.011964411474764347, + -0.0027817590162158012, + 0.004113185219466686, + -0.010437039658427238, + -0.01081888284534216, + -0.00558361504226923, + 0.005975506734102964, + 0.02257562428712845, + -0.029154041782021523, + 0.010825581848621368, + 0.02358047477900982, + 0.0004793970729224384, + 0.030708208680152893, + -0.012192176654934883, + -0.01976204477250576, + -0.005489828996360302, + 0.01969505473971367, + -0.03424527868628502, + 0.008420640602707863, + 0.03997962176799774, + 0.006397543475031853, + 0.0034700811374932528, + 0.01780593767762184, + -0.009231219999492168, + -0.011582568287849426, + 0.010323156602680683, + -0.006765988189727068, + -0.014456438831984997, + 0.008923065848648548, + -0.0035973621997982264, + 0.0014310735277831554, + -0.01710924133658409, + -0.020900875329971313, + 0.007080841343849897, + -0.0038787201046943665, + 0.00031506226514466107, + -0.018864380195736885, + -0.005245315842330456, + 0.021329611539840698, + 0.013002756051719189, + -0.0027030459605157375, + 0.027894629165530205, + -0.009613062255084515, + 0.011354802176356316, + 0.0017233173130080104, + 0.003949059639126062, + 0.006012351252138615, + -0.012821882963180542, + -0.026327064260840416, + 0.0038720211014151573, + 0.023620668798685074, + -0.00952597614377737, + -0.003630857216194272, + -0.025938522070646286, + -0.015916820615530014, + -0.01749778352677822, + 0.021972713991999626, + 0.011428491212427616, + -0.003600711701437831, + 0.00388876860961318, + 0.020512333139777184, + -0.014215274713933468, + 0.014831582084298134, + 0.003274135524407029, + -0.009519277140498161, + 0.003841875586658716, + -0.00882927980273962, + -0.03344139829277992, + 0.002733191242441535, + -0.01050402969121933, + 0.0286985095590353, + 0.02591172605752945, + -0.029823940247297287, + -0.01284197997301817, + -0.015622064471244812, + -0.0376751683652401, + -0.023821638897061348, + 0.0014243745245039463, + 0.0003743065462913364, + -0.007007152307778597, + 0.008306758478283882, + -0.00868190173059702, + 0.035049159079790115, + -0.002780084265395999, + 0.024786293506622314, + -0.029368409886956215, + 0.01275489293038845, + 0.00456871697679162, + -0.012507029809057713, + 0.03151208907365799, + 0.006065943278372288, + -0.03711245208978653, + -0.021825335919857025, + 0.014443040825426579, + -0.0008650081581436098, + 0.013692752458155155, + 0.017631763592362404, + -0.013089843094348907, + -0.008742192760109901, + 0.0029291370883584023, + 0.002599211409687996, + 0.02123582549393177, + 0.0009119011810980737, + 0.015568472445011139, + -0.034191686660051346, + -0.010209273546934128, + 0.01420187670737505, + 0.020030004903674126, + -0.036067407578229904, + -0.026514636352658272, + 0.006658804602921009, + -0.006427688989788294, + 0.0010492305736988783, + 0.010155681520700455, + -0.01647953689098358, + -0.011508879251778126, + -0.023781444877386093, + 0.018998360261321068, + 0.012419942766427994, + -0.011066745035350323, + 0.01338459923863411, + 0.021329611539840698, + -0.021209029480814934, + 0.0015441190917044878, + 0.018408847972750664, + -0.024451343342661858, + -0.013712849467992783, + 0.014389448799192905, + -0.017229823395609856, + 0.02620648220181465, + -0.023634066805243492, + 0.014818184077739716, + -0.02270960435271263, + 0.017846131697297096, + -0.006879871245473623, + -0.020659711211919785, + 8.112068462651223e-05, + 0.02465231344103813, + 0.02987753227353096, + -0.01571585051715374, + 0.00573769211769104, + 0.007965109311044216, + -0.01187062542885542, + -0.009358501061797142, + -0.010718397796154022, + -0.0026025609113276005, + -0.025349009782075882, + -0.00964655727148056, + -0.0018238023621961474, + -0.015206726267933846, + -0.0048902686685323715, + 0.00905704591423273, + 0.0039021666161715984, + -0.03711245208978653, + 0.007033948320895433, + 0.18671448528766632, + -0.013270716182887554, + -0.012614213861525059, + 0.02124922350049019, + 0.004294057842344046, + -0.004699347540736198, + 0.03143170103430748, + 0.007100938353687525, + 0.004484979435801506, + 0.021878927946090698, + -0.023205330595374107, + -0.0060960883274674416, + 0.0012803460704162717, + -0.001569240354001522, + 0.011877324432134628, + -0.018248071894049644, + -0.027278320863842964, + -0.008266564458608627, + 0.01147538423538208, + 0.017645161598920822, + 0.015313910320401192, + -0.02738550491631031, + -0.007114336360245943, + -0.011267715133726597, + 0.02731851488351822, + 0.016626914963126183, + -0.014952164143323898, + 0.021101845428347588, + 0.01647953689098358, + -0.0009001779253594577, + -0.005607061553746462, + 0.011066745035350323, + 0.011669655330479145, + -0.010175778530538082, + 0.012848678976297379, + 0.007067443337291479, + 0.00929821003228426, + -0.0011036599753424525, + 0.030681412667036057, + 0.019748646765947342, + -0.0007004640065133572, + 0.003284184029325843, + -0.0005271274130791426, + -0.013284114189445972, + -0.03904176130890846, + 0.016506332904100418, + 0.0033411255571991205, + 0.01131460815668106, + -0.012473534792661667, + -0.015421094372868538, + -0.026970166712999344, + -0.0029726806096732616, + 0.005808031652122736, + 0.01696186326444149, + -0.012868775986135006, + -0.024960467591881752, + 0.015447890385985374, + -0.008259865455329418, + 0.00305474316701293, + 0.00964655727148056, + -0.041828546673059464, + 0.02257562428712845, + -0.0033394508063793182, + 0.010691601783037186, + -0.018609818071126938, + -0.0184356439858675, + -0.027050554752349854, + 0.0035169741604477167, + 0.010316457599401474, + -0.006055894773453474, + -0.01905195228755474, + -0.03842545300722122, + -0.015756044536828995, + 0.01579623855650425, + -0.019936218857765198, + -0.04472251236438751, + 0.014952164143323898, + 0.0019343357998877764, + 0.026394054293632507, + 0.010048497468233109, + -0.023044554516673088, + -0.0027147692162543535, + 0.0023379505146294832, + -0.016466138884425163, + 0.014228672720491886, + -0.04445455223321915, + 0.028912877663969994, + -0.00540944142267108, + -0.010564320720732212, + -0.03220878541469574, + -0.008923065848648548, + 0.009325006045401096, + 0.007409092038869858, + -0.018033703789114952, + 0.018315061926841736, + 0.0015617039753124118, + 0.008688600733876228, + 0.02800181321799755, + -0.02939520590007305, + 0.0015608665999025106, + -0.01851603202521801, + 0.052171800285577774, + 0.03400411456823349, + -0.014697602950036526, + -0.008956560865044594, + -0.003600711701437831, + -0.003213844494894147, + 0.029314817860722542, + -0.010865775868296623, + 0.001334775472059846, + -0.0004605561261996627, + -0.0332806259393692, + 0.00015732178871985525, + -0.009499180130660534, + 0.010631310753524303, + 0.005908516701310873, + 0.0018522730097174644, + -0.01819447986781597, + -0.0030480441637337208, + -0.014751194044947624, + -0.024638915434479713, + 0.004836676642298698, + 0.008688600733876228, + 0.017792539671063423, + -0.0017132688080891967, + -0.015823034569621086, + -0.03711245208978653, + -0.0033612223342061043, + -0.012701300904154778, + 0.0024736050982028246, + 0.01850263401865959, + -0.0332806259393692, + 0.012158682569861412, + 0.010564320720732212, + 0.027894629165530205, + 0.02628687024116516, + -0.008608212694525719, + -0.046571437269449234, + -0.001340637099929154, + 0.014483234845101833, + 0.03429887071251869, + -0.018475838005542755, + 0.0006858099368400872, + -0.006065943278372288, + 0.006682251114398241, + -0.0033796445932239294, + 0.021182233467698097, + -0.0010793760884553194, + -0.03228917345404625, + -0.035987019538879395, + -0.0116361603140831, + -0.002540595130994916, + 0.0011153832310810685, + -0.004260562825948, + 0.0304938405752182, + -0.01735040545463562, + -0.014617214910686016, + -0.03510275110602379, + -0.005134782288223505, + 0.011254317127168179, + -0.02061951719224453, + -0.0012284287950024009, + 0.0006225881516002119, + -0.02731851488351822, + -0.003962457645684481, + 0.004284009337425232, + -0.1699937880039215, + 0.003758138045668602, + 0.024920273572206497, + -0.03740720823407173, + 0.021584173664450645, + 0.0008063919376581907, + 0.00558361504226923, + 0.008380446583032608, + -0.026648616418242455, + -0.00550322700291872, + 0.03244994953274727, + 0.016519730910658836, + -0.0136525584384799, + -0.009894420392811298, + -0.006729143671691418, + 0.02016398496925831, + -0.011971110478043556, + 0.03065461665391922, + 0.040649522095918655, + 0.020498935133218765, + -0.012252467684447765, + -0.045713964849710464, + 0.007904818281531334, + -0.0015700777294114232, + 0.002270960481837392, + -0.00937189906835556, + -0.013049649074673653, + 0.014469836838543415, + 0.004327552858740091, + -0.011642859317362309, + -0.027291718870401382, + 0.011073444038629532, + 0.01688147522509098, + -0.013907120563089848, + -0.0014118138933554292, + -0.009358501061797142, + 0.0010148982983082533, + -0.018261469900608063, + -0.020271169021725655, + 0.01314343512058258, + 0.029127245768904686, + 0.00012968842929694802, + -0.02209329605102539, + -0.010169079527258873, + -0.019547676667571068, + 0.002950908849015832, + 0.03097616881132126, + -0.007670353166759014, + -0.0019711803179234266, + 0.0017074071802198887, + -0.009834129363298416, + -0.00913743395358324, + -0.0011664631310850382, + 0.03483479097485542, + 0.01315013412386179, + 0.032101601362228394, + 0.0077373431995511055, + 0.01548808440566063, + -0.010671504773199558, + 0.0067458911798894405, + -0.007496179081499577, + -0.0032640870194882154, + 0.015474686399102211, + 0.00952597614377737, + -0.020016606897115707, + -0.030359860509634018, + 0.020632915198802948, + 0.014791388064622879, + -0.01275489293038845, + -0.012393146753311157, + -0.028350161388516426, + -0.0066320085898041725, + 0.03896137326955795, + -0.009358501061797142, + 0.0008641707827337086, + -0.0053792959079146385, + 0.006618610583245754, + -0.004917064681649208, + -0.003108335193246603, + 0.0028320015408098698, + -0.0135051803663373, + 0.07417131215333939, + -0.031217332929372787, + -0.018341857939958572, + -0.0017300163162872195, + 0.0068162307143211365, + 0.016439342871308327, + 0.004230417311191559, + 0.024799691513180733, + -0.00610948633402586, + -0.003798332065343857, + -0.03274470567703247, + 0.00882927980273962, + -0.03981884568929672, + 0.016385750845074654, + -0.018931370228528976, + 0.002629356924444437, + -0.024799691513180733, + -0.014952164143323898, + -0.010524126701056957, + 0.00497735571116209, + 0.002202295698225498, + -0.04732172563672066, + -0.00801200233399868, + 0.022736400365829468, + 0.003711245022714138, + -0.006149680353701115, + 0.010899269953370094, + 0.03033306449651718, + -0.006481281016021967, + -0.010021701455116272, + -0.013277415186166763, + 0.011569170281291008, + -0.014215274713933468, + -0.0005032622721046209, + 0.008809182792901993, + 0.01781933568418026, + -0.02335270866751671, + 0.005543421022593975, + -0.006139631848782301, + 0.012667805887758732, + 0.002101810649037361, + -0.004461532924324274, + 0.014992358162999153, + 0.010028400458395481, + -0.01883758418262005, + -0.08703339099884033, + 0.013170231133699417, + 0.014309060759842396, + 0.001974529819563031, + 0.012929067015647888, + -0.00010310177458450198, + -0.01680108718574047, + 0.03539750725030899, + -0.006933463271707296, + 0.027425698935985565, + -0.04247165098786354, + -0.029046857729554176, + -0.0038452250882983208, + -0.007516276091337204, + 0.016305362805724144, + -0.016399148851633072, + -0.01806049980223179, + -0.010604514740407467, + -0.007563169114291668, + 0.02861812151968479, + 0.007677052170038223, + 0.005975506734102964, + -0.002816928783431649, + -0.010061895474791527, + 0.006199922878295183, + -0.005305606871843338, + -0.029475592076778412, + -0.008882871828973293, + 0.02497386559844017, + 0.007891420274972916, + 0.026340462267398834, + -0.021570775657892227, + 0.03472760692238808, + -0.01594361662864685, + 0.0069870552979409695, + -0.0049137151800096035, + -0.008608212694525719, + -0.023902026936411858, + 0.01201800350099802, + -0.02667541243135929, + -0.010859076865017414, + 0.00570084759965539, + 0.02597871609032154, + -0.027492688968777657, + -0.0066085620783269405, + -0.024866681545972824, + -0.004029447678476572, + 0.00793161429464817, + -0.005720944609493017, + -0.016238372772932053, + -0.024545129388570786, + -0.026085900142788887, + 0.004139981232583523, + 0.03295907378196716, + 0.007080841343849897, + -0.002775060012936592, + 0.0024903526064008474, + -0.0055635180324316025, + -0.0019762045703828335, + -0.007563169114291668, + -0.02068650722503662, + 0.00762346014380455, + -0.026260074228048325, + 0.01657332293689251, + 0.008279962465167046, + 0.0010257841786369681, + -0.03290548175573349, + -0.010048497468233109, + 0.0002514217921998352, + -0.0012853703228756785, + -0.033012665808200836, + 0.0200835969299078, + -0.0031937474850565195, + -0.0003954502462875098, + -0.042659223079681396, + -0.009700149297714233, + -0.032101601362228394, + -0.013799936510622501, + 0.018261469900608063, + -0.02185213193297386, + -0.017551375553011894, + -0.025630367919802666, + 0.04131942242383957, + -0.016667107120156288, + 0.03287868574261665, + 0.007167928386479616, + 0.009539374150335789, + -0.01898496225476265, + 0.0264610443264246, + -0.017926519736647606, + 0.015890024602413177, + 0.00600900175049901, + -0.005385994911193848, + -0.01412148866802454, + -0.00907044392079115, + 0.018382051959633827, + 0.011971110478043556, + 0.005523324012756348, + 0.0002836607163771987, + 0.006424339488148689, + -0.030306268483400345, + -0.004769687075167894, + -0.047107357531785965, + 0.024933671578764915, + 0.019547676667571068, + -0.009673353284597397, + -0.02599211409687996, + -0.005030947737395763, + 0.012815183959901333, + 0.020485537126660347, + -0.0024149888195097446, + 0.00010477652540430427, + 0.0013389623491093516, + 0.02061951719224453, + 0.00597215723246336, + -0.016010606661438942, + -0.019963014870882034, + -0.015340706333518028, + 0.005238616839051247, + 0.010175778530538082, + 0.012225671671330929, + 0.015354104340076447, + -0.011334705166518688, + 0.012560621835291386, + 0.014684204943478107, + -0.00988102238625288, + -0.021343009546399117, + -0.001287882449105382, + -3.0956700356910005e-05, + 0.01897156424820423, + -0.0018053801031783223, + -0.020338159054517746, + 0.0012183802900835872, + 0.0073956940323114395, + -0.005081190261989832, + -0.0030949371866881847, + -0.010872474871575832, + -0.0017601618310436606, + 0.017725549638271332, + 0.017162833362817764, + 0.036362163722515106, + 0.06414961069822311, + -0.026568228378891945, + -0.02296416647732258, + 0.019092146307229996, + -0.040756706148386, + 0.0030698159243911505, + 0.01626516878604889, + 0.002669550944119692, + -0.014550224877893925, + 0.01338459923863411, + -0.015126338228583336, + 0.042123302817344666, + -0.0007653605425730348, + 0.009572869166731834, + -0.01968165673315525, + 0.0014955514343455434, + -0.0376751683652401, + -0.0005547608016058803, + 0.022388052195310593, + 0.0038150795735418797, + -0.019185932353138924, + 0.0529220886528492, + 0.0057577891275286674, + 0.02910044975578785, + 0.008661804720759392, + 0.007844527252018452, + -0.005925264209508896, + -0.019038554280996323, + 0.002068315865471959, + 0.006782735697925091, + -0.025804542005062103, + -0.02654143236577511, + 8.995237266162803e-08, + 0.0014386099064722657, + 0.04287359118461609, + -0.017524579539895058, + -0.004655804019421339, + 0.01789972372353077, + 0.0008001116220839322, + -0.0018321761162951589, + 0.03510275110602379, + 0.012346253730356693, + 0.007978507317602634, + -0.006099437829107046, + -0.004474930930882692, + 0.016774291172623634, + 0.0038686715997755527, + -0.007663654163479805, + -0.0008968284237198532, + -0.008313457481563091, + 0.001387530006468296, + 0.0042873588390648365, + 0.022589022293686867, + 0.0012594116851687431, + -2.518666519790713e-07, + -0.00023865181719884276, + 0.02589832805097103, + 0.000749450467992574, + -0.008742192760109901, + 0.01735040545463562, + 0.02824297733604908, + -0.019400298595428467, + 0.007878022268414497, + 0.009432190097868443, + -0.03360217437148094, + 0.0022575624752789736, + 0.02560357190668583, + 0.022776594385504723, + -0.03397731855511665, + 0.004595512989908457, + 0.007482781074941158, + -0.019735248759388924, + 0.0312977209687233, + 0.008782386779785156, + -0.0014553574146702886, + -0.015756044536828995, + 0.03813070058822632, + -0.00610948633402586, + -0.012259166687726974, + -0.025241825729608536, + 0.030922576785087585, + 0.008306758478283882, + 0.005124733783304691, + -0.003354523563757539, + 0.01741739548742771, + 0.014483234845101833, + -0.0011497156228870153, + 0.010296360589563847, + -0.009827430360019207, + 0.005600362550467253, + -0.02086068131029606, + 0.01252712681889534, + 0.005741041619330645, + -0.012433340772986412, + -0.010557621717453003, + -0.0011137084802612662, + -0.018864380195736885, + 0.022441644221544266, + 0.01540769636631012, + 0.031163740903139114, + 0.10884532332420349, + 0.02784103713929653, + -0.013719548471271992, + -0.006223369389772415, + -0.019078748300671577, + 0.028108997270464897, + 0.007556470111012459, + 0.017403997480869293, + 0.006695649120956659, + -0.06313136219978333, + 0.014376050792634487, + -0.008099089376628399, + 0.008259865455329418, + -0.03384333848953247, + -0.00816607940942049, + 0.025724153965711594, + -0.017698753625154495, + 0.02311154454946518, + -0.019279716536402702, + 0.01459041889756918, + 0.028752101585268974, + -0.015139736235141754, + 0.038157496601343155, + 0.038720209151506424, + -0.012808484956622124, + -0.018087295815348625, + 0.013089843094348907, + -0.009083841927349567, + -0.011776839382946491, + 0.012339554727077484, + -0.015916820615530014, + -0.0044347369112074375, + -0.07690449804067612, + -0.034191686660051346, + 0.008212972432374954, + -0.011180628091096878, + -0.0024149888195097446, + -0.009398695081472397, + 0.013056348077952862, + -0.018703604117035866, + -0.00816607940942049, + 0.02084728330373764, + -0.024303967133164406, + -0.022428246214985847, + 0.008072293363511562, + -0.023232126608490944, + -0.005895118694752455, + -0.024531731382012367, + -0.028912877663969994 + ], + "metadata": { + "source": "Kreye_Marieke_BA_241_V2.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 17, + "has_images": true, + "image_count": 98, + "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", + "links": [], + "last_modified": "2025-05-05T23:00:23", + "_known_field_names": "frozenset({'is_continuation', 'sent_to', 'header_footer_type', 'email_message_id', 'filename', 'languages', 'detection_class_prob', 'sent_from', 'link_texts', 'cc_recipient', 'subject', 'image_mime_type', 'image_path', 'filetype', 'page_number', 'last_modified', 'signature', 'detection_origin', 'text_as_html', 'attached_to_filename', 'bcc_recipient', 'data_source', 'link_start_indexes', 'category_depth', 'emphasized_text_tags', 'parent_id', 'orig_elements', 'page_name', 'coordinates', 'url', 'link_urls', 'file_directory', 'links', 'table_as_cells', 'emphasized_text_contents', 'key_value_pairs', 'image_base64'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "Kreye_Marieke_BA_241_V2.pdf", + "detection_class_prob": 0.3422867953777313, + "parent_id": "e02392183bc6851689602ad4b9f6039f", + "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", + "id": "ce00eae5-7e07-454f-9e4f-f79ac36f92f4", + "processing_timestamp": "2025-05-05T23:15:46.977945", + "chunk_number": 30, + "total_chunks": 56, + "chunking_strategy": "hybrid", + "word_count": 449 + } +} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000031.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000031.json new file mode 100644 index 0000000000000000000000000000000000000000..83e0988d194381ac22c7376cd4bcd4cee1be4c2c --- /dev/null +++ b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000031.json @@ -0,0 +1,1570 @@ +{ + "id": "61a115b2-0ff7-441a-f6d9-eb3d00000031", + "content": "Anschlie\u00dfend erfolgt die Interpretation in Kapitel 7. ## 5.3.2 Baumpflanzungsszenarien Grafenb\u00fchl\n\nDas definierte modellhafte Vorgehen l\u00e4sst sich auf das Fallstudiengebiet in Grafenb\u00fchl nicht anwenden. Zum einen f\u00fchrt eine geringe Datenverf\u00fcgbarkeit zu einer geringen Datenqualit\u00e4t, zum anderen lassen sich die in den Quartiersarchetypen hinterlegten Stra\u00dfenquerschnitte nicht auf die bestehende Situation \u00fcbertragen. Der Stra\u00dfenquerschnitt Wohnstra\u00dfe, welcher dem Quartiersarchetyp Ein- und Zweifamilienhausquartier zugeordnet ist, sieht eine Stra\u00dfenbreite von 12,25 m, sowie einen beidseitigen Gehweg vor. Die Mehrheit der Stra\u00dfen in Grafenb\u00fchl ist deutlich schmaler als die vorgegebene Breite und in den Stra\u00dfen, in welchen ein Gehweg vorhanden ist, ist dieser meist nur einseitig. Deshalb wurde f\u00fcr die Aufstellung der Baumpflanzungsszenarien in Grafenb\u00fchl verschiedene Annahmen getroffen und die Datenerhebung erfolgte gr\u00f6\u00dftenteils manuell. Die Stra\u00dfenl\u00e4ngen sind in den Basis-DLM Daten enthalten und beruhen somit auf exakten Werten. Die Breite der Stra\u00dfen wurde h\u00e4ndisch \u00fcber GoogleEarth bestimmt. Abgesehen von der Eisenbahnstra\u00dfe verf\u00fcgt das Quartier \u00fcber keine gekennzeichneten Parkfl\u00e4chen, weshalb der Stra\u00dfenrand zum Parken innerhalb des Quartiers genutzt wird. Zur Bestimmung der Potentialfl\u00e4che zur Pflanzung neuer B\u00e4ume wird aber die Parkfl\u00e4che ben\u00f6tigt. Infolgedessen wurde angenommen, dass an den Stra\u00dfenseiten in der Gesamtl\u00e4nge der Stra\u00dfe die\n35\nFallstudien\nM\u00f6glichkeit zum Parken besteht. Da das Python-Skript B\u00e4ume automatisch an beide Stra\u00dfenseiten pflanzt, wurde angenommen das in Grafenb\u00fchl an beiden Stra\u00dfenseiten geparkt werden kann. Um Einfahrten auf die Grundst\u00fccke freizuhalten, wurde f\u00fcr jedes Geb\u00e4ude eine Einfahrtsbreite von 4,0 m, welcher von der Gesamtl\u00e4nge der Stra\u00dfe abgezogen wurde, festgelegt. Parken in einem Abstand von unter 5,0 m zu Kreuzungen ist nicht erlaubt, weshalb auch dieser Abstand von der Gesamtl\u00e4nge abgezogen wurde. Sehr enge Stra\u00dfen, wie beispielsweise die Lichtenbergstra\u00dfe in Nord-S\u00fcd-Ausrichtung, werden bei der Bepflanzung ausgenommen, da zus\u00e4tzliche B\u00e4ume die Stra\u00dfe f\u00fcr den allt\u00e4glichen Verkehr zu stark verschm\u00e4lern w\u00fcrde. Soll in engen Stra\u00dfen dennoch eine Bepflanzung stattfinden, muss \u00fcber eine Ausweisung zur Fahrradstra\u00dfe oder Fu\u00dfg\u00e4ngerzone nachgedacht werden. Unter Ber\u00fccksichtigung dieser Annahmen ist es m\u00f6glich nach den drei Mobilit\u00e4tsszenarien 20 neue B\u00e4ume bei einer MIV-Reduktion von 3 %, 67 neue B\u00e4ume bei einer MIV-Reduktion um 10 % bzw. 135 neue B\u00e4ume bei einer MIV-Reduktion um 20 % in dem Gebiet zu pflanzen. F\u00fcr die Pflanzung der neuen B\u00e4ume wurde die Hirschbergstra\u00dfe ausgenommen, da es sich bei dieser Stra\u00dfe um die Hauptverkehrsstra\u00dfe durch das Quartier handelt und in dieser der Linienbus verkehrt. Somit besteht in dieser Stra\u00dfe auch weiterhin ein gro\u00dfer Platzbedarf. Des Weiteren wurde festgelegt, dass nur Stra\u00dfenz\u00fcge, welche in ihrem Stra\u00dfenquerschnitt einen Gehweg oder ausgewiesene Parkfl\u00e4chen aufweisen, sich f\u00fcr die Baumpflanzungsszenarien eignen. Das Fallstudiengebiet weist bereits eine gro\u00dfe Anzahl an B\u00e4umen auf. Zudem sind die Innenh\u00f6fe zum gr\u00f6\u00dften Teil Gr\u00fcnfl\u00e4chen meist mit Baumbepflanzung. Da der Effekt von 20 neuen B\u00e4umen auf den Energiebedarf der Geb\u00e4ude und der Energiebilanz des st\u00e4dtischen Raums gering ausfallen w\u00fcrde, wurde f\u00fcr das Mobilit\u00e4tsszenario 1 kein Baumpflanzungsszenario aufgestellt. F\u00fcr Grafenb\u00fchl werden die in Tabelle 2 aufgelisteten Baumpflanzungsszenarien im Folgenden weiter untersucht:\nTabelle 2: Baumpflanzungsszenarien in Grafenb\u00fchl (eigene Berechnungen)\n\n| Gebiets- | ausschnitt | Fl\u00e4che | des | Gebiets- | ausschnitts | Baum- | pflanzungs- | szenario | Anzahl | Bestands- | b\u00e4ume | Anzahl | der | neuen | B\u00e4ume | Pflanz- | abstand | Szenario | F | 67 | 10 | m | IV | 3,0 | ha | 40 | Szenario | G | 135 | 5 | m | V | 20,7 | ha | Szenario | H | 404 | 135 | 15 | m |\n|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|\n\n36\nFallstudien\nDer Gebietsausschnitt IV f\u00fcr die Szenarien F und G befindet sich im Norden des Fallstudiengebiets.", + "embedding": [ + 0.011886604130268097, + 0.0074341194704174995, + 0.02100454829633236, + -0.01903454028069973, + -0.009357539936900139, + 0.020711708813905716, + -0.03207919001579285, + -1.864041405497119e-05, + -0.029230663552880287, + -0.025277337059378624, + -0.00839250162243843, + 0.0035040858201682568, + -0.00384351285174489, + 0.0011206086492165923, + 0.010289300233125687, + -0.001743723638355732, + 0.03226554021239281, + 0.004146335180848837, + 0.013550463132560253, + 0.007706991862505674, + -0.0004571450990624726, + 0.02329401671886444, + 0.01164700835943222, + -0.010588794946670532, + -0.0018601936753839254, + 0.024465372785925865, + 0.0156535804271698, + -0.010382476262748241, + -0.01959359645843506, + 0.009457371197640896, + 0.005966596305370331, + -0.017210951074957848, + -0.014908171258866787, + -0.001826916472055018, + -0.0032594986259937286, + -0.019926367327570915, + -9.390401100972667e-05, + -0.024971187114715576, + 0.024744901806116104, + 0.014828305691480637, + 0.008751895278692245, + -0.010043049231171608, + -0.01959359645843506, + -0.043313562870025635, + 0.011254338547587395, + 0.010069671086966991, + 0.004652148112654686, + -0.0020232517272233963, + -0.02604936622083187, + 0.01404296513646841, + 0.02401280403137207, + 0.03774961829185486, + -0.0347413644194603, + 0.02288138121366501, + -0.014162763021886349, + 0.00473534082993865, + -0.008206149563193321, + 0.003973294049501419, + -0.010056359693408012, + -0.013470597565174103, + -0.008399156853556633, + -0.0060264952480793, + -0.011800083331763744, + 0.016452232375741005, + -0.03396933153271675, + 0.0036039173137396574, + 0.006405854597687721, + 0.0055739255622029305, + 0.004219545051455498, + 0.0008701979531906545, + 0.029390394687652588, + 0.04307396709918976, + 0.007860067300498486, + -0.0169048011302948, + 0.03575298935174942, + -0.012132855132222176, + 0.020392248407006264, + -0.019700083881616592, + -0.013557118363678455, + 0.013037994503974915, + 0.022655095905065536, + -0.022774893790483475, + -0.030854590237140656, + 0.058461327105760574, + 0.026036055758595467, + 0.007513984572142363, + -0.008033107966184616, + 0.02642207033932209, + -0.0029200713615864515, + 0.006182897835969925, + 0.02413260191679001, + 0.026901261880993843, + 0.001960025168955326, + 0.012199409306049347, + -0.004522366914898157, + 0.00018604016804601997, + 0.004662131424993277, + 0.008518954738974571, + 0.03561988100409508, + -0.010828390717506409, + -0.009211120195686817, + 0.013843301683664322, + -0.008259393274784088, + 0.0009209456038661301, + -0.007001515943557024, + -0.004465796053409576, + -0.008385846391320229, + 0.010462341830134392, + 0.004152990411967039, + -0.021457117050886154, + -0.012984750792384148, + 0.028511878103017807, + -0.01956697553396225, + -0.008472367189824581, + 0.019340690225362778, + -0.031174050644040108, + 0.04043841361999512, + -0.008678684942424297, + -0.0048385001718997955, + -0.015640268102288246, + 0.030987698584794998, + -0.015826620161533356, + 0.0026771482080221176, + -0.021244144067168236, + 0.01460202131420374, + 0.010721903294324875, + 0.01824919879436493, + -0.0094706816598773, + -0.036764614284038544, + -0.014735129661858082, + -0.01537405140697956, + 0.025902947410941124, + 0.01725088432431221, + -0.003730370430275798, + -0.018768321722745895, + 0.011720218695700169, + -0.01678500324487686, + -0.003026558319106698, + -0.04693411663174629, + -0.050634536892175674, + -0.000629354442935437, + 0.0029233992099761963, + -0.023427126929163933, + -0.017304128035902977, + 0.004239511210471392, + 0.03623218089342117, + -0.0009342564735561609, + 0.026129232719540596, + 0.001492480980232358, + -0.027793090790510178, + -0.002549031050875783, + -0.009870007634162903, + 0.031227294355630875, + -0.005537320859730244, + 0.008958213962614536, + -0.01993967965245247, + -0.006439132150262594, + 0.019300756976008415, + -0.035513393580913544, + -0.01762358844280243, + 0.008239426650106907, + 0.023746587336063385, + -0.008745240047574043, + 0.01141406875103712, + 0.01741061359643936, + -0.0005316027672961354, + -0.0041230409406125546, + -0.00614296505227685, + -0.010934877209365368, + -0.030668238177895546, + -0.011853327043354511, + 0.008525609970092773, + -0.023653410375118256, + 0.021710025146603584, + -0.0036604884080588818, + -0.004286099225282669, + -0.00281691225245595, + -0.0017603621818125248, + -0.016039595007896423, + -0.031253915280103683, + -0.02758011594414711, + 0.013184414245188236, + 0.013550463132560253, + 0.009790142998099327, + -0.02792619913816452, + -0.0008177863783203065, + 0.013843301683664322, + 0.00223788945004344, + 0.00017012952594086528, + 0.0077668908052146435, + 0.00012842906289733946, + 0.007633782457560301, + 0.020179275423288345, + -0.0010099620558321476, + -0.6359400153160095, + 0.0022578558418899775, + 0.003959983121603727, + 0.0004995734780095518, + 0.026981128379702568, + 0.01737068220973015, + 0.010056359693408012, + 0.008698651567101479, + 0.016665205359458923, + 0.021989552304148674, + 0.006941617000848055, + 0.0017686814535409212, + 0.005557287018746138, + 0.0033210613764822483, + -0.010595450177788734, + -0.015147767029702663, + -0.0005045650759711862, + -0.011773461475968361, + 0.021111035719513893, + -0.0005673756822943687, + -0.007959898561239243, + 0.01975332759320736, + -0.0026272323448210955, + 0.020139342173933983, + 0.013936477713286877, + 0.021430496126413345, + -0.013630327768623829, + -0.03399595618247986, + 0.000538674124982208, + 0.00214804126881063, + -0.02920404262840748, + 0.01556040346622467, + -0.004928348585963249, + 0.01940724439918995, + 0.0369509682059288, + 0.0027037698309868574, + -0.025064362213015556, + 0.005091406870633364, + 0.01697135530412197, + 0.0156535804271698, + -0.009803453460335732, + -0.0023493680637329817, + -0.016918111592531204, + 0.01183336041867733, + -0.014881549403071404, + 0.011587109416723251, + 0.015706822276115417, + -0.020498735830187798, + -0.005507371388375759, + -0.006578896194696426, + 0.021989552304148674, + 0.013317522592842579, + -0.005663773976266384, + 0.00166302639991045, + 0.026129232719540596, + 0.019580285996198654, + 0.019300756976008415, + -0.0061562759801745415, + 0.0023942922707647085, + -0.00190345395822078, + 0.0009966511279344559, + 0.007094691973179579, + -0.013224346563220024, + -0.020591910928487778, + -0.00807969644665718, + 0.047759391367435455, + -0.024718280881643295, + -0.021297387778759003, + 0.013024683110415936, + -0.0316266193985939, + -0.006132982205599546, + 0.006941617000848055, + -0.019367311149835587, + -0.022934623062610626, + 0.038361918181180954, + -0.0006559761823154986, + 0.017703453078866005, + -0.002678812015801668, + -0.014775062911212444, + 0.00711465859785676, + 0.002778643509373069, + -0.020924683660268784, + -0.021749956533312798, + 0.00647240923717618, + 0.01556040346622467, + -0.024465372785925865, + -0.019580285996198654, + 0.013590395450592041, + 0.0005915016517974436, + 0.011467311531305313, + 0.01556040346622467, + 0.020086098462343216, + -0.0239462498575449, + -0.012638668529689312, + -0.0063492837361991405, + 0.04086436331272125, + 0.005287741776555777, + 0.047759391367435455, + 0.015187699347734451, + -0.05867430195212364, + -0.009330918081104755, + 0.014375736005604267, + 0.01615939289331436, + -0.013683571480214596, + 0.016665205359458923, + 0.018209265545010567, + -0.027633359655737877, + -0.0016796650597825646, + 0.023067733272910118, + -0.02357354573905468, + 0.0036837824154645205, + 0.003497430356219411, + -0.0017686814535409212, + 0.002876811195164919, + -0.0032594986259937286, + -0.028884582221508026, + 0.016412299126386642, + -0.014295871369540691, + -0.0007512320880778134, + 0.0019450504332780838, + 0.015094523318111897, + 0.01102139800786972, + 0.01993967965245247, + 6.437052070396021e-05, + 0.0014775062445551157, + 0.019873125478625298, + 0.006771903485059738, + -0.022189214825630188, + -0.023027800023555756, + 0.0010207771556451917, + 0.00037436812999658287, + 0.0130712715908885, + 0.04086436331272125, + 0.000340882979799062, + 0.015493849292397499, + -0.005870092194527388, + 0.021470429375767708, + -0.001638900488615036, + -0.002364342799410224, + -0.02970985509455204, + -0.01790311560034752, + -0.01433580368757248, + 0.024811455979943275, + -0.03239865228533745, + -0.020778262987732887, + -0.004003243055194616, + -0.008672029711306095, + 0.011560488492250443, + -0.013696881942451, + 0.003294439520686865, + -0.019580285996198654, + -0.013104548677802086, + -0.0022096040192991495, + 0.007021482568234205, + -0.0045689549297094345, + 0.006771903485059738, + -0.01197312492877245, + -0.01991305686533451, + -0.010948188602924347, + -0.021403875201940536, + 0.020365627482533455, + 0.022335635498166084, + -0.03873462229967117, + -0.0038701347075402737, + -0.0018834876827895641, + -0.007860067300498486, + 0.0092377420514822, + 0.017770007252693176, + -0.0023909644223749638, + -0.031227294355630875, + -0.015147767029702663, + -0.027819711714982986, + 0.0075539168901741505, + 0.005061457399278879, + -0.03822880983352661, + -0.01441566925495863, + -0.015240943059325218, + 0.015187699347734451, + -0.020871439948678017, + -0.011826705187559128, + 0.0024392164777964354, + -0.0034674808848649263, + -0.01257211435586214, + 0.004778601229190826, + 0.020924683660268784, + 0.020898060873150826, + 0.0050514740869402885, + 0.0013028010725975037, + -0.019966300576925278, + -0.0016655222279950976, + 0.018515415489673615, + 0.03402257710695267, + -0.02200286276638508, + 0.021736646071076393, + -0.023467058315873146, + 0.0003880949807353318, + 0.00678521441295743, + 0.005607202649116516, + -0.02808593027293682, + 0.034262172877788544, + 0.031759727746248245, + 0.021962931379675865, + 0.021057792007923126, + 0.0024076031986624002, + 0.02917741984128952, + -0.02301448956131935, + 0.015134455636143684, + -0.007314321584999561, + 0.033543385565280914, + -0.0017270849784836173, + 0.030348777770996094, + 0.00965703371912241, + -0.04610884189605713, + -0.00550071569159627, + -0.0032761371694505215, + 0.02072501927614212, + 0.003480791812762618, + -0.010602105408906937, + 0.013923167251050472, + 0.018821565434336662, + 0.0036005894653499126, + 0.016066215932369232, + 0.005167944356799126, + 0.005620513577014208, + -0.008192839100956917, + 0.01062872726470232, + 0.0029200713615864515, + 0.01422931719571352, + 0.00011574215022847056, + -0.014016343280673027, + -0.009650378488004208, + 0.015587025322020054, + 0.0028152484446763992, + 0.01433580368757248, + 0.014908171258866787, + 0.01504127960652113, + 0.019952990114688873, + -0.008419123478233814, + 0.019859813153743744, + -0.006515669636428356, + 0.029629990458488464, + 0.015280875377357006, + 0.0012096250429749489, + -0.012691911309957504, + 0.023626789450645447, + -0.006119671277701855, + 0.014322493225336075, + 0.028937825933098793, + -0.010102948173880577, + 0.0026588456239551306, + -0.000556144688744098, + 0.00981676485389471, + 0.020139342173933983, + -0.004885088186711073, + 0.01963352970778942, + -0.0027353831101208925, + 0.0267681535333395, + 0.005074767861515284, + 0.016132770106196404, + 0.021270764991641045, + 0.007267733570188284, + 0.01538736280053854, + -0.012232686392962933, + 0.011014742776751518, + -0.018794944509863853, + -0.006372577510774136, + -0.008166217245161533, + -0.009803453460335732, + -0.02053866721689701, + -0.007793512661010027, + 0.01859528198838234, + -0.015054591000080109, + -0.012765121646225452, + 0.0062361410818994045, + -0.006479064468294382, + -0.013563773594796658, + 0.017849871888756752, + 0.006615500897169113, + 0.01741061359643936, + -0.011121229268610477, + -0.0024142584297806025, + -0.01750379055738449, + -0.008825104683637619, + 0.019420554861426353, + -0.00863875262439251, + 0.00011948582687182352, + 0.005487404763698578, + 0.01963352970778942, + -0.001268691965378821, + -0.0016813288675621152, + -0.0010590458987280726, + -0.01178677286952734, + -0.013144480995833874, + -0.020405558869242668, + -0.00703479303047061, + -0.010542206466197968, + 0.026275651529431343, + 0.0015948083018884063, + -0.0013735151151195168, + 0.023626789450645447, + 0.00022316499962471426, + 0.013410698622465134, + 0.00023751577828079462, + -0.02586301416158676, + 0.0447777584195137, + -0.021643469110131264, + -0.019899746403098106, + -0.013211035169661045, + -0.0014101199340075254, + -0.027340520173311234, + -0.015400673262774944, + 0.0044890898279845715, + -0.016944734379649162, + 0.01875501126050949, + -0.016824936494231224, + 0.008618785999715328, + 0.006489047780632973, + -0.004851811099797487, + 0.05199224501848221, + -0.006509013939648867, + -0.0022229147143661976, + -0.035859476774930954, + -0.009909940883517265, + 0.022894691675901413, + 0.02470496855676174, + 0.03311743587255478, + 0.007939931936562061, + 0.014562088996171951, + -0.009364195168018341, + 0.0002670492685865611, + -0.004479106981307268, + -0.047786012291908264, + 0.0007412488921545446, + 0.014389047399163246, + -0.009317606687545776, + -0.008146250620484352, + 0.021204210817813873, + -0.017224261537194252, + 0.01947379857301712, + -0.004505728371441364, + -0.001478338148444891, + -0.027393763884902, + -0.0008211141102947295, + 0.003222893690690398, + -0.011181128211319447, + -0.021111035719513893, + -0.0022478727623820305, + 0.05012872442603111, + 0.009264363907277584, + -0.002019924111664295, + 0.014575399458408356, + 0.014109519310295582, + 0.01493479311466217, + -0.022122660651803017, + -0.00742746377363801, + 0.014775062911212444, + 0.014708507806062698, + 0.030348777770996094, + -0.030854590237140656, + -0.004405897110700607, + 0.01388323400169611, + -0.026155853644013405, + 0.03428879380226135, + -0.015587025322020054, + 0.0075871944427490234, + 0.012345829047262669, + 0.01388323400169611, + -0.013171102851629257, + 0.01896798610687256, + -0.01868845708668232, + -0.003697093343362212, + 0.0032095827627927065, + 0.002380981342867017, + -0.012924851849675179, + 0.006968238856643438, + -0.009710277430713177, + -0.0112676490098238, + -0.010921566747128963, + 0.006988205015659332, + -0.007926621474325657, + 0.009244397282600403, + -0.017517101019620895, + 0.004326032008975744, + -0.012092922814190388, + -0.0391339510679245, + -0.03008255921304226, + 0.02542375586926937, + -0.01249224878847599, + 0.0004009898693766445, + -0.010535551235079765, + -0.01734405942261219, + 0.0048584663309156895, + -0.021470429375767708, + -0.011147851124405861, + 0.001753706717863679, + -0.016771692782640457, + -0.026501936838030815, + -0.016705138608813286, + 0.01731743849813938, + 0.004269460681825876, + 0.03367649391293526, + -0.009763521142303944, + -0.013064616359770298, + -0.0021264110691845417, + -0.03005593828856945, + -0.03186621516942978, + -0.019021229818463326, + 0.006881718058139086, + -0.007048103958368301, + 0.017676832154393196, + -0.011041364632546902, + -0.015427295118570328, + 0.019793258979916573, + 0.01147396769374609, + -0.0020698397420346737, + -0.008026452735066414, + 0.0075539168901741505, + -0.013670260086655617, + -0.017024599015712738, + 0.0015215985476970673, + -0.006059772334992886, + -0.0011064658174291253, + 0.01947379857301712, + -0.02262847311794758, + 0.031200671568512917, + -0.011959814466536045, + -0.016958044841885567, + -0.01581330969929695, + 0.01956697553396225, + -0.005530665162950754, + -0.01931406743824482, + -0.009018112905323505, + -0.006672072224318981, + 0.001893470878712833, + 0.023214152082800865, + -0.023054420948028564, + 0.010029738768935204, + -0.002232898026704788, + 0.012924851849675179, + 0.005008213687688112, + 0.0017770007252693176, + 0.0037935972213745117, + 0.040678009390830994, + 0.0044125523418188095, + 0.020312383770942688, + -0.012405727989971638, + 0.039400167763233185, + 0.015613647177815437, + -0.0029417015612125397, + 0.03737691417336464, + -0.006029822863638401, + 0.019007917493581772, + -0.026661666110157967, + 0.004715374670922756, + 0.00455564446747303, + 0.0231609083712101, + 0.03471473976969719, + -0.002730391686782241, + -0.015640268102288246, + -0.014681885950267315, + 0.0017636899137869477, + 0.005454127676784992, + -0.016665205359458923, + 0.006988205015659332, + -0.024678347632288933, + 0.007054759655147791, + -0.0030748103745281696, + 0.004948314744979143, + -0.019087783992290497, + -0.018581969663500786, + -0.027526872232556343, + 0.023906316608190536, + 0.011201094835996628, + -0.0009350884356535971, + -0.028778094798326492, + -0.011939847841858864, + -0.016705138608813286, + 0.006555601954460144, + -0.009963183663785458, + -0.005514026619493961, + 0.0022994522005319595, + -0.01903454028069973, + -0.0009026431944221258, + 0.001785319996997714, + 0.02848525531589985, + 0.028405390679836273, + 0.01076849177479744, + 0.014775062911212444, + -0.013097893446683884, + 0.00518791051581502, + -0.006009856704622507, + -0.008166217245161533, + -0.04275450482964516, + 0.0251974705606699, + -0.0002845197741407901, + 0.012951473705470562, + 0.024691658094525337, + 0.013324177823960781, + 0.015413983725011349, + 0.023081043735146523, + -0.023440437391400337, + -0.0063492837361991405, + -0.014468912966549397, + -0.010262678377330303, + -0.022428810596466064, + 0.013390731997787952, + -0.01653209701180458, + -0.004482434596866369, + -0.014948103576898575, + 0.010269333608448505, + 0.024944564327597618, + -0.009783487766981125, + -0.01993967965245247, + -0.008399156853556633, + 0.01653209701180458, + -0.048664528876543045, + 0.024026114493608475, + 0.015786688774824142, + -0.0031779694836586714, + -0.013231001794338226, + -0.007607160601764917, + -0.02623571828007698, + -0.00633930042386055, + 0.018834877759218216, + -0.016638584434986115, + 0.014974725432693958, + -0.004732013214379549, + -0.023094354197382927, + 0.002537383930757642, + 0.000754975713789463, + 0.014814995229244232, + -0.016944734379649162, + 0.011766806244850159, + -0.01259873528033495, + -0.0024675019085407257, + -0.02188306488096714, + 0.006828474812209606, + -0.01186663843691349, + 0.022774893790483475, + 0.0039100670255720615, + 0.00012801311095245183, + 0.03561988100409508, + -0.008425778709352016, + 0.018448861315846443, + 0.02304111048579216, + -0.014282559975981712, + 0.03221229836344719, + 0.026808086782693863, + 0.051140353083610535, + 0.02097792737185955, + -0.028964446857571602, + -0.019047850742936134, + -0.042222071439027786, + 0.011766806244850159, + -0.01325762365013361, + 0.01158045418560505, + 0.006595534738153219, + -0.0029034328181296587, + 0.000308645743643865, + 0.0070281377993524075, + 0.028511878103017807, + -0.03487447276711464, + -0.004605560097843409, + 0.05199224501848221, + 0.023959560319781303, + 0.01581330969929695, + -0.013217691332101822, + -0.0016255896771326661, + -0.02216259390115738, + 0.003370977006852627, + -0.00582350417971611, + -0.007713647559285164, + -0.0005137162515893579, + -0.015067901462316513, + -0.0058867307379841805, + 0.03982611373066902, + 0.0018468828639015555, + 0.027659982442855835, + -0.014442291110754013, + -0.021749956533312798, + -0.014242627657949924, + -0.013224346563220024, + -0.00032029274734668434, + 0.010988120920956135, + -0.008026452735066414, + 0.04802560806274414, + 0.008825104683637619, + -0.00981676485389471, + 0.014788373373448849, + -0.0170645322650671, + -0.02107110247015953, + -0.006612173281610012, + 0.01512114517390728, + 0.020937994122505188, + -0.0005486573209054768, + 0.005177927203476429, + -0.0035972618497908115, + 0.021244144067168236, + 0.009949873201549053, + 0.013297555968165398, + -0.0008169544744305313, + -0.02213597111403942, + -0.004242838826030493, + -0.00031800492433831096, + -0.009018112905323505, + 0.022708339616656303, + -9.473593672737479e-05, + -0.014442291110754013, + -0.005018197000026703, + -0.010668659582734108, + -0.012765121646225452, + -0.0013310867361724377, + 0.029070934280753136, + -0.019021229818463326, + -0.0007329296204261482, + 0.017264194786548615, + -0.0018718406790867448, + 0.029922829940915108, + -0.01281836535781622, + -0.02294793538749218, + -0.01404296513646841, + 0.026302272453904152, + -0.038708001375198364, + 0.011048019863665104, + 0.052391573786735535, + 0.006232813466340303, + -0.013829991221427917, + 0.018462171778082848, + -0.0027420385740697384, + -0.0191010944545269, + 0.020871439948678017, + -0.014269249513745308, + -0.014814995229244232, + -0.0076670595444738865, + 0.003796924836933613, + 0.02037893794476986, + -0.017197640612721443, + -0.013517185114324093, + 0.0034441868774592876, + 0.009117944166064262, + 0.018368996679782867, + -0.006179570220410824, + -0.01406958606094122, + 0.0006975725991651416, + 0.006545619107782841, + -0.004529022611677647, + 0.01746385730803013, + -0.009437404572963715, + 0.016225947067141533, + 0.01618601381778717, + 0.0009850041242316365, + 0.013151136226952076, + -0.023626789450645447, + -0.02345374785363674, + 0.00595661299303174, + 0.019713394343852997, + -0.007021482568234205, + 0.0078267902135849, + -0.02970985509455204, + -0.01862190291285515, + -0.017490480095148087, + 0.015613647177815437, + -0.006329317111521959, + -0.006335972808301449, + 0.01058213971555233, + 0.017383992671966553, + -0.007840100675821304, + 0.019926367327570915, + 0.007540606427937746, + -0.0028019375167787075, + -0.00014600357098970562, + -0.015959730371832848, + -0.02016596309840679, + -0.004512384068220854, + -0.011480622924864292, + 0.0313071608543396, + 0.020937994122505188, + -0.023560235276818275, + -0.005504043307155371, + -0.011593765579164028, + -0.027819711714982986, + -0.018981296569108963, + -0.005061457399278879, + -0.01404296513646841, + -0.003143028588965535, + 0.007261077873408794, + -0.003916722722351551, + 0.028565119951963425, + -0.011840016581118107, + 0.03189283609390259, + -0.03112080693244934, + 0.015427295118570328, + 0.0025789805222302675, + -0.01112788449972868, + 0.037057455629110336, + -0.001976663712412119, + -0.033729735761880875, + -0.03093445487320423, + 0.015347429551184177, + -0.0029616679530590773, + 0.007407497614622116, + 0.022016173228621483, + -0.010342543944716454, + -0.017383992671966553, + 0.01504127960652113, + 0.0012054654071107507, + 0.019141027703881264, + -0.0029267268255352974, + 0.010695281438529491, + -0.025503620505332947, + -0.010182813741266727, + -0.006445787381380796, + 0.01959359645843506, + -0.03878786787390709, + -0.024465372785925865, + -0.004558972083032131, + -0.008678684942424297, + -0.0016996313352137804, + 0.015067901462316513, + -0.01778331771492958, + -0.004086436238139868, + -0.01388323400169611, + 0.04123706743121147, + 0.010961499065160751, + 0.009570513851940632, + 0.032478515058755875, + 0.0245718602091074, + -0.011300926096737385, + -0.010475652292370796, + 0.01160042081028223, + -0.027074303478002548, + -0.018981296569108963, + 0.008425778709352016, + -0.02845863439142704, + 0.02864498645067215, + -0.03167986497282982, + 0.015014657750725746, + -0.01131423655897379, + 0.012718533165752888, + -0.006226158235222101, + -0.012092922814190388, + -0.006954927928745747, + 0.03205256909132004, + 0.024185845628380775, + -0.021896377205848694, + 0.011340858414769173, + 0.013683571480214596, + -0.011087952181696892, + -0.012971440330147743, + -0.01759696565568447, + -0.014096207916736603, + -0.018954675644636154, + -0.01637236587703228, + -0.0045456611551344395, + -0.0022512003779411316, + 0.0134639423340559, + 0.0014983044238761067, + -0.009870007634162903, + -0.032984327524900436, + -0.00336099392734468, + 0.18581970036029816, + -0.009750209748744965, + -0.003860151395201683, + 0.01697135530412197, + -0.0017903116531670094, + -0.006908339913934469, + 0.04033192619681358, + 0.016012972220778465, + 0.0020515373907983303, + 0.021763266995549202, + -0.027220722287893295, + -0.00795324333012104, + 0.01653209701180458, + -0.003197935875505209, + 0.021111035719513893, + -0.027633359655737877, + -0.029257286339998245, + -0.0126786008477211, + -0.002154696499928832, + 0.010961499065160751, + 0.00627607386559248, + -0.03769637644290924, + -0.011986435391008854, + -0.02107110247015953, + 0.030668238177895546, + 0.007041448727250099, + -0.02047211304306984, + 0.01537405140697956, + 0.009696966968476772, + 0.010229401290416718, + 0.003983276896178722, + 0.017290815711021423, + 0.021989552304148674, + -0.004755307454615831, + -0.0029134161304682493, + 0.003427548334002495, + 0.020299071446061134, + 0.014269249513745308, + 0.031546756625175476, + 0.030987698584794998, + 0.019340690225362778, + -0.010781802237033844, + 0.003687110263854265, + -0.011806739494204521, + -0.01609283871948719, + 0.015161077491939068, + 0.005470766220241785, + 0.007460740860551596, + -0.004958298057317734, + -0.011434034444391727, + -0.015706822276115417, + -0.014988035894930363, + -0.00023439605138264596, + 0.02163015864789486, + -0.020512046292424202, + -0.009044733829796314, + 0.0015557075385004282, + -0.016239257529377937, + 0.008871693164110184, + 0.005610530264675617, + -0.04515046253800392, + 0.02181651070713997, + -0.002307771472260356, + 0.023520302027463913, + -0.004143007565289736, + -0.015280875377357006, + -0.025809770449995995, + 0.005683740135282278, + 0.0037370258942246437, + -0.026967816054821014, + -0.010588794946670532, + -0.03146689012646675, + -0.012245997786521912, + 0.015666890889406204, + -0.020831506699323654, + -0.04211558401584625, + 0.0078267902135849, + -0.006249452009797096, + 0.0419558547437191, + 0.016638584434986115, + -0.023360570892691612, + 0.01017615757882595, + -0.012399072758853436, + -0.007134624756872654, + 0.002545703435316682, + -0.03647177666425705, + 0.031733106821775436, + 0.0005852621980011463, + -0.007813478820025921, + -0.03628542274236679, + -0.0009251052397303283, + 0.010229401290416718, + 0.00672198785468936, + -0.009870007634162903, + 0.019393933936953545, + 0.008818449452519417, + 0.010169502347707748, + 0.031759727746248245, + -0.029097555205225945, + -0.019274136051535606, + -0.011933192610740662, + 0.055053744465112686, + 0.030295534059405327, + -0.004715374670922756, + -0.02109772525727749, + 0.0120529904961586, + 0.012425694614648819, + 0.020831506699323654, + -0.0066820550709962845, + -0.0037470089737325907, + -0.003109751269221306, + -0.02348036877810955, + -0.0023061076644808054, + -0.003487447276711464, + 0.019300756976008415, + 0.0057868994772434235, + 0.002565669594332576, + -0.01574675552546978, + -0.005880075506865978, + -0.00839250162243843, + -0.031919460743665695, + 0.011008086614310741, + -0.006692038383334875, + 0.029656611382961273, + -0.003284456441178918, + -0.011553832329809666, + -0.03452838957309723, + -0.007913310080766678, + -0.008898315019905567, + -0.005966596305370331, + 0.019154338166117668, + -0.040624767541885376, + 0.007367564830929041, + 0.005607202649116516, + 0.010821734555065632, + 0.024491995573043823, + -0.020605221390724182, + -0.04142341762781143, + 0.006768575869500637, + 0.0071080029010772705, + 0.04014557600021362, + -0.013350799679756165, + -0.008518954738974571, + -0.02007278800010681, + 0.005736983846873045, + -0.0017736729932948947, + 0.01806284673511982, + -0.016425609588623047, + -0.015866553410887718, + -0.026754843071103096, + 0.004269460681825876, + 0.0002254528080811724, + -0.002141385804861784, + -0.0050481464713811874, + 0.038867730647325516, + -0.01840892992913723, + -0.013763436116278172, + -0.04240842163562775, + 0.0036039173137396574, + 0.01406958606094122, + -0.007740269415080547, + -0.004206234123557806, + 0.0011289279209449887, + -0.01866183616220951, + 0.0019866470247507095, + 0.006811836268752813, + -0.1687818020582199, + 0.009949873201549053, + 0.02686133049428463, + -0.02952350303530693, + 0.014841617085039616, + 0.0029433653689920902, + 0.007414152845740318, + -0.004206234123557806, + -0.019673461094498634, + 0.008751895278692245, + 0.03519393131136894, + 0.014628643169999123, + -0.005660446360707283, + 0.005527337547391653, + -0.013843301683664322, + -0.0021264110691845417, + -0.013018027879297733, + 0.0275534950196743, + 0.03522055596113205, + 0.027633359655737877, + -0.006445787381380796, + -0.03804245963692665, + 0.010748525150120258, + 0.01599966175854206, + -0.003630538936704397, + -0.018182644620537758, + -0.014468912966549397, + 0.03045526333153248, + 0.002953348681330681, + -0.011440690606832504, + -0.010655349120497704, + 0.0005981571157462895, + 0.01850210502743721, + -0.027819711714982986, + -0.0030748103745281696, + -0.012685256078839302, + 0.008665374480187893, + -0.008086351677775383, + -0.01803622581064701, + 0.012092922814190388, + 0.022495364770293236, + 0.004229527898132801, + -0.016452232375741005, + -0.004935003817081451, + -0.018675146624445915, + 0.006109687965363264, + 0.03577961027622223, + -0.0033776324708014727, + -0.022096039727330208, + 0.003256170777603984, + -0.013856613077223301, + -0.02088475041091442, + 0.002217923291027546, + 0.02172333560883999, + -0.0007125473348423839, + 0.034075818955898285, + -0.00036771269515156746, + 0.015240943059325218, + -0.01615939289331436, + 8.537673420505598e-05, + -0.008725273422896862, + -0.010209434665739536, + 0.018116090446710587, + 0.009670345112681389, + -0.013237657025456429, + -0.03769637644290924, + -0.006462425924837589, + 0.006246124394237995, + -0.012106233276426792, + -0.010056359693408012, + -0.025250714272260666, + -0.010409098118543625, + 0.03058837167918682, + -0.015161077491939068, + 0.0006484888144768775, + -0.0020548650063574314, + 0.0019167648861184716, + 0.0003984940703958273, + 0.0009600463090464473, + 0.00190345395822078, + -0.009896629489958286, + 0.0698021873831749, + -0.032797977328300476, + -0.03170648589730263, + -0.011760151013731956, + 0.003217902034521103, + 0.002520745387300849, + 0.02197624184191227, + 0.027127547189593315, + 0.001994966296479106, + 0.0067951977252960205, + -0.04110395908355713, + 0.007919966243207455, + -0.03026891127228737, + 0.02475821226835251, + -0.01042240858078003, + 0.010821734555065632, + -0.015893176198005676, + -0.022295702248811722, + -0.010535551235079765, + 0.007074725814163685, + 0.010096292942762375, + -0.04017219692468643, + 0.010715248063206673, + 0.011087952181696892, + -0.0036005894653499126, + -0.018448861315846443, + 0.024744901806116104, + 0.027713226154446602, + -0.0038035803008824587, + -0.006499030627310276, + -0.00929764099419117, + 0.020432181656360626, + -0.011959814466536045, + -0.006309350952506065, + 0.0027004422154277563, + 0.007760235574096441, + -0.024345576763153076, + 0.011380791664123535, + -0.006725315470248461, + 0.020831506699323654, + -0.0011372471926733851, + -0.010009772144258022, + 0.01152055524289608, + 0.011048019863665104, + -0.012146166525781155, + -0.08625441789627075, + 0.015520471148192883, + 0.019580285996198654, + 0.005969923920929432, + 0.00640918267890811, + -0.005840142723172903, + -0.01750379055738449, + 0.010761835612356663, + 0.002845197916030884, + 0.01875501126050949, + -0.04967615753412247, + -0.025823082774877548, + -0.007773546501994133, + -0.01042240858078003, + 0.024092668667435646, + -0.016265880316495895, + -0.006445787381380796, + -0.0058667645789682865, + 0.00259395525790751, + 0.0313071608543396, + 0.007267733570188284, + 0.011181128211319447, + -0.009557202458381653, + 0.004988247528672218, + 0.005241153761744499, + -0.012798398733139038, + -0.026022745296359062, + 0.004642164800316095, + 0.025596797466278076, + 0.00973689928650856, + 0.02125745452940464, + -0.023440437391400337, + 0.027979442849755287, + -0.012651978991925716, + 0.018954675644636154, + -0.01750379055738449, + -0.0024192500859498978, + -0.014961414970457554, + 0.011806739494204521, + -0.027526872232556343, + -0.006345955654978752, + 0.0031779694836586714, + 0.020059477537870407, + -0.030721481889486313, + 0.009623756632208824, + -0.010901600122451782, + -0.017796630039811134, + 0.00831263605505228, + -0.00036958453711122274, + -0.013923167251050472, + -0.03133378177881241, + -0.017610277980566025, + 0.0013244312722235918, + 0.01940724439918995, + 0.007800167892128229, + 0.009630412794649601, + -0.008612130768597126, + -0.01875501126050949, + 0.005833487492054701, + 0.0005586404586210847, + -0.03769637644290924, + 0.004841827787458897, + -0.014988035894930363, + 0.014655265025794506, + 0.015706822276115417, + 0.013936477713286877, + -0.02773984707891941, + -0.01230589672923088, + -0.004665459040552378, + -0.004552316386252642, + -0.03277135640382767, + 0.011241027154028416, + 0.004159646108746529, + -0.003249515313655138, + -0.02736714296042919, + -0.020418869331479073, + -0.03269148990511894, + 0.0004900062922388315, + 0.0042262002825737, + -0.028219038620591164, + -0.021244144067168236, + -0.02795282006263733, + 0.05002223700284958, + -0.018395617604255676, + 0.028245659545063972, + 0.013097893446683884, + 0.004056486766785383, + -0.023280706256628036, + 0.019047850742936134, + -0.023467058315873146, + 0.02241550013422966, + -0.0034475144930183887, + 0.017610277980566025, + -0.02163015864789486, + -0.004725357983261347, + 0.017290815711021423, + 0.015946418046951294, + 0.01018946897238493, + -0.013683571480214596, + 0.004219545051455498, + -0.03202594444155693, + -0.001607287209481001, + -0.04637506231665611, + 0.014522155746817589, + 0.0175304114818573, + 0.0026139214169234037, + -0.036924343556165695, + 0.0037336982786655426, + 0.0010307602351531386, + 0.006489047780632973, + -0.01493479311466217, + -0.004465796053409576, + -0.009257707744836807, + 0.021896377205848694, + 0.00859216507524252, + 0.0001219816185766831, + -0.024971187114715576, + -0.023001179099082947, + -0.0006272746250033379, + -0.0035473459865897894, + 0.010675315745174885, + 0.021829821169376373, + -0.016958044841885567, + 0.024864699691534042, + 0.012472282163798809, + -0.00840581301599741, + -0.018581969663500786, + -0.012638668529689312, + -0.008272703737020493, + 0.019606906920671463, + -0.013224346563220024, + -0.0366315059363842, + -0.00698154978454113, + 0.0017603621818125248, + -0.010369165800511837, + 0.0018002947326749563, + -0.0041762846522033215, + -0.01828913204371929, + 0.01868845708668232, + 0.016425609588623047, + 0.04214220494031906, + 0.0776289775967598, + -0.031573377549648285, + -0.027340520173311234, + 0.018994607031345367, + -0.03242527320981026, + -0.0003546098305378109, + 0.010182813741266727, + 0.013989721424877644, + -0.012811709195375443, + 0.01466857548803091, + -0.020898060873150826, + 0.0255169328302145, + 0.008512299507856369, + 0.019207581877708435, + -0.00876520574092865, + 0.008166217245161533, + -0.03375636041164398, + -0.0007316817063838243, + 0.016079528257250786, + 0.003770303213968873, + -0.024052737280726433, + 0.05084751173853874, + -0.004482434596866369, + 0.013224346563220024, + 0.003497430356219411, + 0.01319772470742464, + -0.02000623382627964, + -0.02489132061600685, + -0.003232876770198345, + 0.01249224878847599, + -0.020605221390724182, + -0.007713647559285164, + -0.01031592208892107, + 0.0015507159987464547, + 0.03758988901972771, + -0.02025914005935192, + 0.0030149114318192005, + 0.03338365629315376, + -0.009264363907277584, + -0.0016929758712649345, + 0.036391910165548325, + 0.014841617085039616, + 0.008166217245161533, + -0.008538921363651752, + -0.00025373839889653027, + 0.019513731822371483, + -0.005041490774601698, + -0.003009919775649905, + -0.007161246612668037, + 0.005297725088894367, + 0.0023593511432409286, + 0.0028235677164047956, + 0.029070934280753136, + 0.006169586908072233, + 0.0026904589030891657, + -0.0038867732509970665, + 0.01593310758471489, + 0.004149662796407938, + -0.011340858414769173, + 0.004232855513691902, + 0.031733106821775436, + -0.006908339913934469, + 0.02123083360493183, + 0.007833445444703102, + -0.0432070754468441, + -0.0007221145206131041, + 0.004056486766785383, + 0.013603705912828445, + -0.03519393131136894, + 0.005969923920929432, + 0.013896545395255089, + -0.019673461094498634, + 0.01681162603199482, + 0.00756057258695364, + -0.011573798954486847, + -0.01572013460099697, + 0.03199932351708412, + -0.012751810252666473, + -0.025942880660295486, + -0.03128053620457649, + 0.016079528257250786, + 0.003993260208517313, + 0.015693511813879013, + -0.010149535723030567, + 0.008991491049528122, + 0.024904632940888405, + 0.011447345837950706, + 0.005281086545437574, + -0.002974978880956769, + -0.015094523318111897, + -0.013224346563220024, + -0.0011289279209449887, + -0.006821819581091404, + -0.019180959090590477, + -0.015134455636143684, + -0.012092922814190388, + -0.014482223428785801, + 0.005274431314319372, + 0.00358395092189312, + 0.01884818822145462, + 0.10430395603179932, + 0.029603367671370506, + -0.0030814658384770155, + -0.01806284673511982, + -0.011713563464581966, + 0.028751472011208534, + 0.012299241498112679, + 0.018422240391373634, + -0.002762004965916276, + -0.050980620086193085, + 0.006309350952506065, + -0.028165794909000397, + 0.012372450903058052, + -0.04541667923331261, + -0.019420554861426353, + 0.014269249513745308, + -0.015360740944743156, + 0.0328778401017189, + -0.01693142205476761, + 0.014508845284581184, + 0.020764952525496483, + -0.010429064743220806, + 0.02989620715379715, + 0.022894691675901413, + -0.024159222841262817, + 0.0005615521804429591, + 0.003402590285986662, + -0.00570703437551856, + -0.012645323760807514, + 0.00589338643476367, + -0.008179527707397938, + 0.002058192854747176, + -0.0635727047920227, + -0.02864498645067215, + 0.007893344387412071, + -0.012292585335671902, + -0.006492375396192074, + -0.023813141509890556, + 0.008652064017951488, + -0.016292501240968704, + 0.00673197116702795, + 0.016425609588623047, + -0.0259828120470047, + -0.023546922951936722, + 0.012192754074931145, + -0.016425609588623047, + -0.009557202458381653, + -0.02197624184191227, + -0.02899106778204441 + ], + "metadata": { + "source": "Kreye_Marieke_BA_241_V2.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 17, + "has_images": true, + "image_count": 98, + "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", + "links": [], + "last_modified": "2025-05-05T23:00:23", + "_known_field_names": "frozenset({'is_continuation', 'sent_to', 'header_footer_type', 'email_message_id', 'filename', 'languages', 'detection_class_prob', 'sent_from', 'link_texts', 'cc_recipient', 'subject', 'image_mime_type', 'image_path', 'filetype', 'page_number', 'last_modified', 'signature', 'detection_origin', 'text_as_html', 'attached_to_filename', 'bcc_recipient', 'data_source', 'link_start_indexes', 'category_depth', 'emphasized_text_tags', 'parent_id', 'orig_elements', 'page_name', 'coordinates', 'url', 'link_urls', 'file_directory', 'links', 'table_as_cells', 'emphasized_text_contents', 'key_value_pairs', 'image_base64'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "Kreye_Marieke_BA_241_V2.pdf", + "detection_class_prob": 0.3422867953777313, + "parent_id": "e02392183bc6851689602ad4b9f6039f", + "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", + "id": "ce00eae5-7e07-454f-9e4f-f79ac36f92f4", + "processing_timestamp": "2025-05-05T23:15:46.977945", + "chunk_number": 31, + "total_chunks": 56, + "chunking_strategy": "hybrid", + "word_count": 581 + } +} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000032.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000032.json new file mode 100644 index 0000000000000000000000000000000000000000..c0ac7b55665cb6c27efead9b57f18c40ca523a23 --- /dev/null +++ b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000032.json @@ -0,0 +1,1570 @@ +{ + "id": "61a115b2-0ff7-441a-f6d9-eb3d00000032", + "content": "Da der Effekt von 20 neuen B\u00e4umen auf den Energiebedarf der Geb\u00e4ude und der Energiebilanz des st\u00e4dtischen Raums gering ausfallen w\u00fcrde, wurde f\u00fcr das Mobilit\u00e4tsszenario 1 kein Baumpflanzungsszenario aufgestellt. F\u00fcr Grafenb\u00fchl werden die in Tabelle 2 aufgelisteten Baumpflanzungsszenarien im Folgenden weiter untersucht:\nTabelle 2: Baumpflanzungsszenarien in Grafenb\u00fchl (eigene Berechnungen)\n\n| Gebiets- | ausschnitt | Fl\u00e4che | des | Gebiets- | ausschnitts | Baum- | pflanzungs- | szenario | Anzahl | Bestands- | b\u00e4ume | Anzahl | der | neuen | B\u00e4ume | Pflanz- | abstand | Szenario | F | 67 | 10 | m | IV | 3,0 | ha | 40 | Szenario | G | 135 | 5 | m | V | 20,7 | ha | Szenario | H | 404 | 135 | 15 | m |\n|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|\n\n36\nFallstudien\nDer Gebietsausschnitt IV f\u00fcr die Szenarien F und G befindet sich im Norden des Fallstudiengebiets. Das Pflanzen findet in der Lichtenbergstra\u00dfe und der Wunnensteinstra\u00dfe statt. Diese Stra\u00dfenz\u00fcge wurden ausgew\u00e4hlt, da auch in diesem Fallstudiengebiet ein kleinerer Ausschnitt untersucht werden sollte. Die Breite des Stra\u00dfenquerschnitts der beiden Stra\u00dfenz\u00fcge von etwa 8,0 m und das Vorhandensein von einem einseitigen Gehweg eignet sich zur Durchf\u00fchrung der Simulation. Szenario H erstreckt sich auf das gesamte Fallstudiengebiet. Die Karte in Abbildung 20 verortet die beschriebenen Gebietsausschnitte in Grafenb\u00fchl. [IMAGE: 5 1, 3 Amse\\ 7 9 3 A 2 Ei 2 A E 3 5, \u00ae _ Meisdwe: : N er u x l 2 ! \u0131 \u00fc \u0131 ! I Hirschberg x I & I \u201astra\u00dfe S \u0131 = Eu l 5 \u00ae hnhofstra\u00dfe 2 3 \\ Ba 3 = S I 5 zZ \u00b0 Seestra\u00dfe \u00a9 e \u0131 [3 \u0131 l I l x I N -----. \u2014\u2014\u2014\u2014 \\._r . < 11138 \"= = - Gebietsausschnitt IV [#7] \\ | 11138 n 8 ar \"= = - Gebietsausschnitt V a { i t + + + {km]\n\nAbbildung 20: Gebietsausschnitte Grafenb\u00fchl f\u00fcr die Baumpflanzungsszenarien (eigene Darstellung)\nDie Ergebnisse der Simulationen werden in Kapitel 6 vorgestellt. Anschlie\u00dfend erfolgt die Interpretation in Kapitel 7. 37\nErgebnisse\n\n## 6 Ergebnisse\n\nIm Folgenden werden die Ergebnisse der Simulation, untergliedert in drei Themenbereiche, detailliert beschrieben. Zun\u00e4chst wird die Zunahme des Gr\u00fcnanteils je Gebietsausschnitt vorgestellt (vgl. Kapitel 6.1). Im n\u00e4chsten Schritt werden die Auswirkungen dieses erh\u00f6hten Gr\u00fcnanteils auf den thermischen Geb\u00e4udeenergiebedarf sowie die damit verbundenen CO2e-Emissionen dargestellt (vgl. Kapitel 6.2). Das letzte Kapitel widmet sich der Evapotranspiration (vgl. Kapitel 6.3). In diesem Kapitel wird zudem der durch die Evapotranspiration bedingte Energieentzug sowie die zu erwartende Temperatur\u00e4nderung ber\u00fccksichtigt. Grundlage f\u00fcr die, in dem Ergebnisteil vorgestellten, Diagramme sind die Output-Daten aus dem Tool SimStadt f\u00fcr die verschiedenen durchgef\u00fchrten Simulationen. Es wurde davon abgesehen f\u00fcr jedes Szenario alle Ergebnisse visuell in diesem Kapitel darzustellen, da sich der Verlauf der Diagramme zwischen den verschiedenen Gebietsausschnitten und Szenarien abgesehen von unterschiedlichen Zahlenwerten kaum unterscheidet. Die Diagramme der \u00fcbrigen Gebietsausschnitte sind in Anhang 5 bis 8 abgebildet. ## 6.1 Zunahme des Gr\u00fcnanteils\n\nAuf Basis der in Kapitel 5.3 erl\u00e4uterten Baumpflanzungsszenarien hat sich in jedem Gebietsausschnitt der Gr\u00fcnanteil mit jedem Szenario erh\u00f6ht.", + "embedding": [ + 0.011748728342354298, + -0.019109854474663734, + 0.026655999943614006, + -0.013572489842772484, + 0.003690475132316351, + 0.017695778980851173, + -0.041735075414180756, + -0.0157927218824625, + -0.03428144007921219, + -0.025915922597050667, + 0.0016486544627696276, + 0.004367778077721596, + -0.006564882583916187, + 0.014497586525976658, + 0.018713384866714478, + 0.005874364171177149, + 0.037981826812028885, + 0.004529669880867004, + 0.018898403272032738, + 0.00849106628447771, + 0.007612224202603102, + 0.01932130567729473, + 0.016057034954428673, + -0.006217971444129944, + 0.0005339955678209662, + 0.022083379328250885, + 0.02719784341752529, + -0.01991601102054119, + -0.020999694243073463, + 0.01581915281713009, + 0.017695778980851173, + -0.007532930467277765, + -0.02496439591050148, + 0.003829239634796977, + -0.013598921708762646, + -0.010539494454860687, + -0.00348232826218009, + -0.016400642693042755, + 0.03251054137945175, + 0.0005678606685250998, + 0.00508142402395606, + -0.00012048971257172525, + -0.013473372906446457, + -0.030845366418361664, + 0.012165021151304245, + 0.011094552464783192, + 0.0075725773349404335, + 0.012858844362199306, + -0.022836672142148018, + 0.011781767010688782, + 0.014946919865906239, + 0.03198191523551941, + -0.0291273295879364, + 0.019810285419225693, + -0.022004086524248123, + -0.0007004303624853492, + -0.019308090209960938, + 0.0013058731565251946, + -0.009680476039648056, + 0.0017956787487491965, + -0.011134199798107147, + -0.0011885840212926269, + -0.00789636094123125, + 0.003285745158791542, + -0.0465720109641552, + -0.0076783024705946445, + -0.002107898937538266, + -0.006168412510305643, + 0.0047014737501740456, + -0.021118635311722755, + 0.022876320406794548, + 0.032669130712747574, + 0.005458070430904627, + -0.02032569609582424, + 0.026285961270332336, + -0.009416162967681885, + 0.011134199798107147, + -0.0181583259254694, + -0.0070505584590137005, + 0.013156197033822536, + 0.024448983371257782, + -0.023946788161993027, + -0.029074467718601227, + 0.05524148792028427, + 0.017814720049500465, + 0.018330130726099014, + -0.001800634665414691, + 0.03565587103366852, + -0.018396208062767982, + 0.009607790037989616, + 0.01950632408261299, + 0.02418467029929161, + 0.006660696119070053, + 0.02012746036052704, + 0.0011183758033439517, + -0.0037268181331455708, + -0.005811589770019054, + 0.002580359112471342, + 0.017999738454818726, + -0.0181583259254694, + -0.012607746757566929, + 0.009944789111614227, + -0.008372125215828419, + 0.003138720989227295, + -0.009958005510270596, + -0.016664955765008926, + -0.005474590230733156, + 0.027805764228105545, + 0.011372081935405731, + -0.03187618777155876, + -0.022717731073498726, + 0.03544441983103752, + -0.020484283566474915, + -0.0037532495334744453, + 0.006614441517740488, + -0.032669130712747574, + 0.04363813251256943, + 0.010519671253859997, + -0.00673338258638978, + -0.0026513931807130575, + 0.02180585078895092, + -0.021739771589636803, + 0.01581915281713009, + -0.011081336997449398, + 0.010896317660808563, + 0.01581915281713009, + 0.016479937359690666, + -0.004979002755135298, + -0.04059853032231331, + -0.02886301651597023, + -0.015501977875828743, + 0.011491022072732449, + -0.0018039385322481394, + -0.005253227893263102, + -0.020669303834438324, + 0.013347824104130268, + -0.007645263336598873, + -0.003961396403610706, + -0.045673344284296036, + -0.05962909013032913, + -0.012706863693892956, + 0.02065608836710453, + -0.03013172186911106, + -0.009264182299375534, + 0.0002498587127774954, + 0.02994670160114765, + 0.007380950264632702, + 0.03615806624293327, + -0.0037730729673057795, + -0.030898230150341988, + -0.0005009563756175339, + 0.008035125210881233, + 0.029576662927865982, + -0.010869885794818401, + 0.010803807526826859, + -0.01776185631752014, + -0.017986522987484932, + 0.013394078239798546, + -0.030448896810412407, + -0.006264226045459509, + 0.019770637154579163, + -0.0025043690111488104, + -0.007043950725346804, + 0.002056688303127885, + 0.003128809155896306, + 0.004192670341581106, + 0.006488892715424299, + -0.006251010578125715, + 0.0008606702904216945, + -0.03555014356970787, + 0.0005827283021062613, + 0.008015302009880543, + -0.02997313253581524, + 0.03187618777155876, + -0.006852323189377785, + 0.0033105246257036924, + -0.01355927437543869, + 0.003621092764660716, + -0.005084727890789509, + -0.03214050084352493, + -0.022334476932883263, + 0.011114375665783882, + 0.00532921776175499, + 0.013024039566516876, + -0.03325061872601509, + -0.013004216365516186, + 0.024488631635904312, + 0.010275181382894516, + 0.0016412206459790468, + 0.004936051554977894, + -0.0025241924449801445, + 0.006878754589706659, + 0.02410537749528885, + -0.005444854963570833, + -0.6271626949310303, + 0.011424943804740906, + 0.0031601963564753532, + 0.001623049145564437, + 0.026695648208260536, + 0.027620743960142136, + 0.017986522987484932, + 0.012250923551619053, + -0.003806112101301551, + 0.014418292790651321, + 0.013215666636824608, + -0.00022445984359364957, + -0.002629917813464999, + 0.0026992999482899904, + 0.0012026256881654263, + -0.021422596648335457, + 5.91414027439896e-06, + -0.006624353118240833, + 0.019902795553207397, + 0.010169455781579018, + -0.025982001796364784, + 0.02303490787744522, + 0.0077972435392439365, + 0.01567378081381321, + 0.022876320406794548, + 0.02522870898246765, + -0.018105464056134224, + -0.020259616896510124, + -0.005282962694764137, + 0.011695865541696548, + -0.004453680012375116, + 0.03113611228764057, + -0.012369864620268345, + 0.022612005472183228, + 0.0418408028781414, + 0.002659653080627322, + -0.010592357255518436, + 0.004063817672431469, + 0.002715819515287876, + 0.00647237291559577, + -0.014378645457327366, + -0.0002663782797753811, + -0.008748771622776985, + 0.0021574576385319233, + -0.010810415260493755, + 0.01075094472616911, + 0.021898360922932625, + -0.02135651744902134, + -0.00031222013058140874, + -0.009792809374630451, + 0.017880797386169434, + 0.021686909720301628, + -0.0018155022989958525, + 0.007195930927991867, + 0.021330086514353752, + 0.02113185077905655, + 0.025836629793047905, + -0.006019736174494028, + 0.007057166192680597, + 0.005577011499553919, + -0.00251593254506588, + 0.005540668498724699, + -0.00411337660625577, + -0.013070294633507729, + -0.013651784509420395, + 0.0393826887011528, + -0.032034777104854584, + -0.014973350800573826, + 0.013572489842772484, + -0.04829004779458046, + -0.015052644535899162, + 0.006687127519398928, + -0.0035781417973339558, + -0.022717731073498726, + 0.027250705286860466, + -0.0069316173903644085, + 0.029391644522547722, + -0.001644524629227817, + -0.015515193343162537, + 0.022532712668180466, + 0.0006851497455500066, + -0.01682354509830475, + -0.02369569055736065, + 0.01053288672119379, + 0.019902795553207397, + -0.02886301651597023, + -0.028149370104074478, + 0.016810327768325806, + -0.016294917091727257, + 0.021369732916355133, + 0.025611963123083115, + 0.019479893147945404, + -0.018118679523468018, + -0.023153848946094513, + 0.00915845762938261, + 0.03465148061513901, + 0.00432813074439764, + 0.048422202467918396, + 0.00601643230766058, + -0.05608729273080826, + -0.02012746036052704, + 0.011834629811346531, + 0.027065686881542206, + -0.0035979654639959335, + 0.018938051536679268, + 0.014960135333240032, + -0.021462243050336838, + -0.007823674939572811, + 0.04033421725034714, + -0.025400511920452118, + 0.016030604019761086, + -0.015488761477172375, + -0.002598530612885952, + -0.011841237545013428, + -0.007605616468936205, + -0.026365255936980247, + 0.02986740693449974, + -0.009191496297717094, + -0.003176715923473239, + 0.008517497219145298, + 0.017074642702937126, + -0.0060065207071602345, + 0.012898490764200687, + -0.020114244893193245, + 0.011418336071074009, + 0.028836585581302643, + 0.0018452375661581755, + -0.007638655602931976, + -0.016664955765008926, + -0.0060527753084897995, + -0.0013628656743094325, + 0.014656174927949905, + 0.03983202204108238, + -0.006683823652565479, + 0.030528191477060318, + -0.016017388552427292, + 0.025585532188415527, + 0.009858887642621994, + 0.005715776234865189, + -0.023193495348095894, + -0.021898360922932625, + -0.01136547327041626, + 0.015686996281147003, + -0.040175627917051315, + -0.0133346077054739, + -0.00018181867199018598, + -0.010248749516904354, + 0.017748640850186348, + -0.009198104031383991, + 0.0006066817441023886, + -0.018369777128100395, + -0.00035248661879450083, + -0.0017973306821659207, + -0.0015982697950676084, + 0.0029503977857530117, + 0.01657244563102722, + -0.012416119687259197, + -0.0231802798807621, + -0.006763117853552103, + -0.018700169399380684, + 0.01641385816037655, + 0.020682519301772118, + -0.023523887619376183, + 0.000408240215620026, + -0.006554970983415842, + -0.003307220758870244, + -0.0015974437119439244, + 0.01801295392215252, + 0.005656305700540543, + -0.03557657450437546, + -0.01686319150030613, + -0.032484110444784164, + 0.016360996291041374, + 0.00989853497594595, + -0.03636951744556427, + -0.022823456674814224, + -0.020629655569791794, + 0.010724513791501522, + -0.012779549695551395, + -0.0033898185938596725, + 0.019863147288560867, + -0.005035168956965208, + -0.01392931304872036, + -0.006455853581428528, + 0.027990782633423805, + 0.027541449293494225, + 0.024673650041222572, + 0.005603442899882793, + -0.03005242720246315, + 0.00024944572942331433, + 0.0073346951976418495, + 0.03232552111148834, + -0.01934773661196232, + 0.02006138302385807, + -0.018898403272032738, + -0.011649610474705696, + 0.003551710629835725, + 0.007684910204261541, + -0.031003955751657486, + 0.01704820990562439, + 0.036977436393499374, + 0.01868695393204689, + 0.02463400363922119, + 0.0017874189652502537, + 0.01872660033404827, + -0.02941807545721531, + 0.014656174927949905, + -0.004037386272102594, + 0.01764291524887085, + 0.004034082405269146, + 0.02547980658710003, + 0.013513019308447838, + -0.035312261432409286, + -0.0036673475988209248, + -0.0014718949096277356, + 0.01887197233736515, + 0.0016511323628947139, + -0.013598921708762646, + 0.015396252274513245, + 0.00393826887011528, + 0.005299482494592667, + 0.005200365092605352, + 0.024396121501922607, + 0.005421727430075407, + -0.002715819515287876, + 0.009132025763392448, + 0.0031255052890628576, + 0.016731034964323044, + 0.00495917908847332, + -0.00765187107026577, + -0.018713384866714478, + 0.016400642693042755, + 0.006293961312621832, + 0.008035125210881233, + 0.020180324092507362, + 0.00863643828779459, + 0.018898403272032738, + -0.009343476966023445, + 0.04297734797000885, + -0.001899752183817327, + 0.03290701285004616, + 0.018264051526784897, + 0.00021867798932362348, + -0.013797156512737274, + 0.030924661085009575, + 0.010182671248912811, + 0.0076783024705946445, + 0.01913628540933132, + -0.013433725573122501, + 0.004668434616178274, + -0.0074998908676207066, + 0.014735468663275242, + 0.017034994438290596, + -0.0128720598295331, + 0.02236090786755085, + -0.005012041889131069, + 0.019995303824543953, + 0.0037268181331455708, + 0.01006373018026352, + 0.016849976032972336, + 0.006654088385403156, + 0.016744250431656837, + 0.004711385350674391, + 0.004559405148029327, + -0.027515018358826637, + -0.006360039580613375, + -0.0091782808303833, + -0.013209058903157711, + -0.010836847126483917, + -0.001436377759091556, + 0.01515837013721466, + -0.0076188319362699986, + -0.013625352643430233, + 0.0025357562117278576, + -0.0013901229249313474, + -0.002413511276245117, + 0.005864452105015516, + -0.0026679127477109432, + 0.011894100345671177, + -0.009706907905638218, + 0.009098987095057964, + -0.00893379095941782, + -0.014140764251351357, + 0.019440246745944023, + -0.0077509889379143715, + -0.013116549700498581, + 0.004526366014033556, + 0.009145241230726242, + -0.006303873378783464, + -0.006482284516096115, + -0.01612311415374279, + -0.01895126700401306, + -0.028519408777356148, + -0.01864730566740036, + -0.00017221666348632425, + -0.02151510678231716, + 0.012839020229876041, + -0.0023474327754229307, + 0.014338999055325985, + 0.015131939202547073, + -0.002330913208425045, + 0.008332477882504463, + -0.013037255965173244, + -0.02436969056725502, + 0.036977436393499374, + -0.01181480661034584, + -0.022493066266179085, + -0.015607702545821667, + 0.004248837009072304, + -0.026021648198366165, + -0.010195886716246605, + -0.016585662961006165, + -0.002894231118261814, + 0.024171454831957817, + -0.0184622872620821, + 0.014286136254668236, + 0.00488649308681488, + 0.002724079415202141, + 0.046677734702825546, + 0.007473459932953119, + -0.00902630016207695, + -0.03618449717760086, + -0.005233404226601124, + 0.013176020234823227, + 0.023801416158676147, + 0.03496865555644035, + 0.006221275310963392, + 0.009052732028067112, + -0.0009994348511099815, + -0.001800634665414691, + 0.004440464079380035, + -0.04643985256552696, + -0.00488649308681488, + 0.002605138346552849, + -0.0036772594321519136, + -0.017140720039606094, + 0.012607746757566929, + -0.032748423516750336, + 0.00802190974354744, + -0.016175976023077965, + -0.00513428682461381, + -0.016876406967639923, + 0.00336669129319489, + 0.010546102188527584, + -0.007638655602931976, + -0.016321348026394844, + -0.0037928964011371136, + 0.054659999907016754, + 0.00021310262673068792, + 0.00997122097760439, + 0.015250880271196365, + 0.011603355407714844, + 0.011378689669072628, + -0.015039429068565369, + -0.013129765167832375, + 0.013308176770806313, + 0.02154153771698475, + 0.030898230150341988, + -0.02648419700562954, + -0.019334521144628525, + 0.010176063515245914, + -0.01638742722570896, + 0.024567924439907074, + -0.001504108076915145, + 0.01776185631752014, + 0.008239968679845333, + 0.011801591143012047, + -0.025611963123083115, + 0.016479937359690666, + -0.005391992162913084, + -0.02057679370045662, + 0.004153023473918438, + 0.0005695126601494849, + -0.012700255960226059, + 0.013195843435823917, + -0.019770637154579163, + -0.00666730385273695, + -0.005596835166215897, + 0.009594574570655823, + 0.003502151696011424, + 0.003531886963173747, + -0.011035081930458546, + 0.011431552469730377, + -0.008306046947836876, + -0.04556762054562569, + -0.03298630565404892, + 0.02812293916940689, + -0.01190731581300497, + -0.00765187107026577, + -0.010136417113244534, + -0.009944789111614227, + -0.010704690590500832, + -0.01424648892134428, + -0.010499847121536732, + 0.006845715455710888, + -0.0034096420276910067, + -0.020550362765789032, + -0.012217883951961994, + 0.03269556164741516, + 0.01424648892134428, + 0.011761943809688091, + -0.002025300869718194, + -0.01046020071953535, + -0.005021953489631414, + -0.030263878405094147, + -0.04149719327688217, + -0.004896404687315226, + -0.0032510540913790464, + -0.02699960768222809, + 0.011999825946986675, + -0.015647349879145622, + -0.025532668456435204, + 0.010770768858492374, + 0.0029454417526721954, + -0.01461652759462595, + -0.007770812138915062, + 0.009706907905638218, + -0.019559187814593315, + -0.005699256435036659, + -0.0030263876542448997, + 0.0004823718627449125, + 0.00765187107026577, + 0.01946667768061161, + -0.0219512227922678, + 0.0387747660279274, + -0.009931573644280434, + 0.003789592534303665, + -0.016215624287724495, + 0.004195974208414555, + -0.012158413417637348, + -0.009482241235673428, + -0.011008650995790958, + -0.01698213256895542, + -0.008167282678186893, + 0.009806024841964245, + -0.021607615053653717, + 0.01645350642502308, + -0.002823196817189455, + 0.002311089774593711, + 0.006049471441656351, + 0.014999781735241413, + 0.001240620738826692, + 0.026774941012263298, + 0.022189104929566383, + 0.0180526003241539, + -0.013354431837797165, + 0.04662487283349037, + 0.00749328313395381, + 0.0014289440587162971, + 0.02785862609744072, + -0.012753118760883808, + 0.020087813958525658, + -0.027144979685544968, + 0.011154022999107838, + -0.007869930006563663, + 0.014272920787334442, + 0.03005242720246315, + -0.011563709005713463, + -0.029814545065164566, + -0.01663852483034134, + 0.006703647319227457, + 0.008054949343204498, + -0.021567968651652336, + 0.0066639999859035015, + -0.031664736568927765, + 0.01060557272285223, + -0.011411728337407112, + -0.0017775072483345866, + -0.0008672781405039132, + -0.019255226477980614, + -0.027092117816209793, + 0.02703925408422947, + 0.016519583761692047, + -0.01641385816037655, + -0.02443576790392399, + -0.019123069941997528, + -0.019374167546629906, + 0.002527496311813593, + -0.02024640142917633, + -0.02804364636540413, + 0.0018138503655791283, + -0.01521123293787241, + 0.01134565006941557, + 0.00666730385273695, + 0.031215405091643333, + 0.013387470506131649, + 0.020418206229805946, + 0.01558127161115408, + -0.02436969056725502, + 0.0062444028444588184, + -0.010949180461466312, + 2.4637411115691066e-05, + -0.030739640817046165, + 0.023682475090026855, + -0.015779506415128708, + 0.02699960768222809, + 0.029893839731812477, + 0.004734512884169817, + 0.014510802924633026, + 0.029735250398516655, + -0.024726513773202896, + -0.010189278982579708, + -0.015568056143820286, + -0.006092422641813755, + -0.01597774215042591, + 0.009713515639305115, + -0.008695908822119236, + 0.0075131068006157875, + -0.01667817123234272, + -0.0005971829523332417, + 0.020272834226489067, + -0.003345215693116188, + -0.012264139018952847, + -0.007863322272896767, + 0.023801416158676147, + -0.03629022091627121, + 0.019863147288560867, + 0.014193626120686531, + -0.016057034954428673, + -0.0004357040161266923, + -0.01378394104540348, + -0.021449027583003044, + -0.02188514545559883, + 0.014286136254668236, + -0.02396000362932682, + 0.016916053369641304, + 0.00785671453922987, + -0.020338911563158035, + 0.0015982697950676084, + -0.0013455201406031847, + 0.01447115559130907, + -0.017894012853503227, + 0.006624353118240833, + -0.002281354507431388, + -0.007817067205905914, + -0.013513019308447838, + -0.011306002736091614, + -0.0035285830963402987, + 0.026907097548246384, + -0.005008738022297621, + -0.011854453012347221, + 0.025863060727715492, + -0.011477806605398655, + 0.02619345299899578, + 0.024871885776519775, + -0.01058574952185154, + 0.03515367582440376, + 0.026312394067645073, + 0.04601695388555527, + 0.0196913443505764, + -0.03232552111148834, + -0.021792635321617126, + -0.03607876971364021, + 0.006905185990035534, + -0.015462330542504787, + 0.014510802924633026, + 0.008517497219145298, + -0.012587922625243664, + -0.002894231118261814, + 0.0010977264028042555, + 0.024448983371257782, + -0.017074642702937126, + -0.001179498271085322, + 0.04414032772183418, + 0.020008519291877747, + 0.010420553386211395, + -0.020669303834438324, + -0.007546145934611559, + -0.02057679370045662, + -0.006637568585574627, + -0.004242229275405407, + -0.011107767932116985, + 0.019995303824543953, + -0.012528452090919018, + 0.0011514149373397231, + 0.04350597783923149, + 0.013413902372121811, + 0.02767360769212246, + -0.028175802901387215, + -0.015488761477172375, + -0.008722340688109398, + -0.018938051536679268, + 0.005851236637681723, + 0.024422552436590195, + -0.0028364125173538923, + 0.04855436086654663, + 0.008378732949495316, + -0.018938051536679268, + 0.0028116332832723856, + -0.02777933143079281, + -0.0016023996286094189, + -0.003591357497498393, + 0.0037664652336388826, + 0.019123069941997528, + -0.004942659288644791, + 0.003977915737777948, + -0.0031849758233875036, + 0.023867495357990265, + 0.03068677894771099, + 0.006591313984245062, + -0.006432726047933102, + -0.01218484528362751, + -0.0067234705202281475, + -0.0003355540393386036, + 0.0018039385322481394, + 0.01622883975505829, + 0.0022169281728565693, + -0.00636334391310811, + -0.012938138097524643, + -0.004070425406098366, + -0.019030559808015823, + -0.003303916659206152, + 0.029444506391882896, + -0.031188974156975746, + 0.014193626120686531, + 0.02904803678393364, + 0.005084727890789509, + 0.039435550570487976, + -0.013255313970148563, + -0.01801295392215252, + -0.009984436444938183, + 0.03237838298082352, + -0.0219512227922678, + 0.01452401839196682, + 0.04651914909482002, + -0.004215797875076532, + 0.010612180456519127, + 0.02131687104701996, + -0.009700299240648746, + -0.014021823182702065, + 0.012488805688917637, + -0.019360952079296112, + -0.027250705286860466, + 0.016585662961006165, + -0.0004435508162714541, + 0.008008694276213646, + -0.009435986168682575, + -0.010413945652544498, + 0.009687083773314953, + -0.0006669781869277358, + 0.0075725773349404335, + -0.015462330542504787, + -0.006680519785732031, + 0.006042863707989454, + 0.01331478450447321, + -0.014114332385361195, + 0.014167195186018944, + -0.0056794327683746815, + 0.012297178618609905, + -0.009997651912271976, + 0.009402947500348091, + -0.0061023342423141, + -0.01355927437543869, + -0.019294874742627144, + -0.004275268409401178, + 0.02080146037042141, + 0.0010944224195554852, + 0.002401947509497404, + -0.020616440102458, + -0.01447115559130907, + -0.022281615063548088, + 0.021158283576369286, + 0.008643046021461487, + 0.0030643828213214874, + -0.0031139415223151445, + 0.023048123344779015, + -0.011854453012347221, + 0.01361213717609644, + 0.00785671453922987, + -0.00120014778804034, + -0.0035451026633381844, + -0.008008694276213646, + -0.03142685815691948, + 0.0002686497464310378, + -0.0001421716733602807, + 0.024752944707870483, + 0.034942224621772766, + -0.02722427435219288, + -0.007777419872581959, + -0.012515236623585224, + -0.04543546214699745, + -0.032404813915491104, + -0.0011530669871717691, + 0.0012364909052848816, + -0.0036376123316586018, + 0.010803807526826859, + -0.010354475118219852, + 0.028255095705389977, + -0.002846324350684881, + 0.012607746757566929, + -0.03301273658871651, + 0.00038015691097825766, + 0.003158544423058629, + -0.010889709927141666, + 0.03740033879876137, + 0.006739990320056677, + -0.024026082828640938, + -0.02344459295272827, + 0.013797156512737274, + -0.004456983879208565, + 0.009369907900691032, + 0.006839107722043991, + -0.01954597234725952, + 0.0004220753617119044, + 0.000650045636575669, + 0.011966786347329617, + 0.016598878428339958, + 0.007916184142231941, + -0.000481958850286901, + -0.0377439446747303, + -0.0057983738370239735, + 0.009495456703007221, + 0.010017476044595242, + -0.04480111226439476, + -0.021449027583003044, + 0.002274746773764491, + -0.008345693349838257, + -0.0037796807009726763, + 0.008028517477214336, + -0.011656218208372593, + -0.008239968679845333, + -0.013460156507790089, + 0.030951092019677162, + 0.010328044183552265, + -0.0023507368750870228, + 0.017735425382852554, + 0.026180235669016838, + -0.01257470715790987, + -0.010103377513587475, + 0.021607615053653717, + -0.02012746036052704, + -0.010050514712929726, + 0.023418162018060684, + -0.008993261493742466, + 0.031929053366184235, + -0.01860765926539898, + 0.013585705310106277, + -0.01645350642502308, + 0.015131939202547073, + -0.00016695103840902448, + -0.009680476039648056, + -0.003541798796504736, + 0.017920443788170815, + 0.034043557941913605, + -0.026391686871647835, + 0.008002086542546749, + 0.000658718403428793, + -0.017206799238920212, + -0.0036673475988209248, + -0.0061122458428144455, + -0.011834629811346531, + -0.019360952079296112, + -0.008471242152154446, + 0.0010275180684402585, + -0.009046124294400215, + -0.006412902381271124, + 0.010876494459807873, + 0.00893379095941782, + -0.038246139883995056, + 0.003042907454073429, + 0.19009415805339813, + -0.008411772549152374, + -0.01198000181466341, + 0.024647219106554985, + 0.008054949343204498, + -0.015541624277830124, + 0.02896874211728573, + 0.011405120603740215, + 0.006402990780770779, + 0.016744250431656837, + -0.030448896810412407, + 0.0005154110258445144, + 0.004037386272102594, + -0.00029384210938587785, + 0.011021866463124752, + -0.019810285419225693, + -0.0269731767475605, + 0.002762074349448085, + 0.002215276239439845, + 0.025096552446484566, + 0.018541580066084862, + -0.0385633148252964, + -0.007982263341546059, + -0.00923114363104105, + 0.03068677894771099, + 0.011695865541696548, + -0.03317132592201233, + 0.009786201640963554, + 0.018105464056134224, + 0.011187062598764896, + 0.003181671956554055, + 0.011728904210031033, + 0.010440376587212086, + -0.004384297411888838, + 0.01262756995856762, + 0.010195886716246605, + 0.019519539549946785, + 0.0015561447944492102, + 0.03245767951011658, + 0.01604381948709488, + -0.00404729787260294, + -0.009958005510270596, + -0.016321348026394844, + 0.007195930927991867, + -0.025717688724398613, + 0.030396034941077232, + 0.0009589618421159685, + 0.01797330752015114, + -0.004456983879208565, + -0.01144476793706417, + -0.026735294610261917, + -0.015541624277830124, + 0.010387514717876911, + 0.017920443788170815, + -0.012336825020611286, + -0.005467982031404972, + 0.017960092052817345, + -0.014642959460616112, + 0.011861061677336693, + 0.010665043257176876, + -0.050536710768938065, + 0.028202233836054802, + -0.004476807080209255, + 0.015594487078487873, + -0.019083423539996147, + -0.02894231118261814, + -0.03314489126205444, + 0.02150188945233822, + 0.0076320478692650795, + -0.019175933673977852, + -0.024263964965939522, + -0.025241924449801445, + -0.008973438292741776, + 0.01634778082370758, + -0.015607702545821667, + -0.032854147255420685, + -0.00241846707649529, + -0.002264834940433502, + 0.022863104939460754, + 0.008920575492084026, + -0.010347867384552956, + -0.0026745207142084837, + -0.009455809369683266, + -0.018898403272032738, + 0.002821544883772731, + -0.03790253400802612, + 0.023748554289340973, + -0.0026034864131361246, + -0.017180366441607475, + -0.04419318959116936, + -0.008206929080188274, + 0.005058296490460634, + -0.006597921717911959, + -0.01316941250115633, + 0.016215624287724495, + 0.003918445203453302, + 0.014867625199258327, + 0.023907141759991646, + -0.025017257779836655, + -0.006026344373822212, + -0.016744250431656837, + 0.05423709750175476, + 0.032034777104854584, + -0.016096683219075203, + -0.011312611401081085, + 0.007757596671581268, + 0.0025787069462239742, + 0.020484283566474915, + -0.001850193366408348, + -0.01060557272285223, + -0.0028248487506061792, + -0.03150615096092224, + 0.011339042335748672, + 0.0008862756658345461, + 0.010598964989185333, + 0.002142590004950762, + -0.005758726969361305, + -0.012118767015635967, + -0.00038387381937354803, + -0.023246359080076218, + -0.023523887619376183, + 0.005851236637681723, + 0.005884275771677494, + 0.01831691525876522, + 0.0071694995276629925, + -0.01581915281713009, + -0.03444002941250801, + -0.0002219819143647328, + -0.011491022072732449, + 0.004126592073589563, + 0.015369820408523083, + -0.03224622830748558, + -0.003806112101301551, + 0.006792852655053139, + 0.016360996291041374, + 0.02162083052098751, + -0.008411772549152374, + -0.03993774577975273, + -0.0014025126583874226, + 0.02024640142917633, + 0.02678815647959709, + -0.011689257808029652, + 0.002144241938367486, + -0.004341346677392721, + 0.005534060765057802, + -0.00858357548713684, + 0.018184758722782135, + -0.00039110114448703825, + -0.02229483053088188, + -0.03985845297574997, + -0.00765187107026577, + -0.007129852194339037, + -0.0020913793705403805, + 0.006482284516096115, + 0.035417988896369934, + -0.013433725573122501, + -0.010684866458177567, + -0.039620570838451385, + 0.0030478632543236017, + 0.012601139023900032, + -0.01942703127861023, + -0.0017279484309256077, + -0.006918401923030615, + -0.028466546908020973, + 0.00206659990362823, + 0.011319219134747982, + -0.16651740670204163, + 0.0006574794533662498, + 0.025863060727715492, + -0.040994998067617416, + 0.01731252297759056, + -0.005147502291947603, + 0.0025787069462239742, + -0.007850105874240398, + -0.014510802924633026, + -0.0017989827319979668, + 0.04342668130993843, + 0.010407337918877602, + -0.015290526673197746, + -0.0003628113481681794, + 0.007057166192680597, + 0.01778828725218773, + -0.03005242720246315, + 0.03544441983103752, + 0.02547980658710003, + 0.028519408777356148, + -0.0154358996078372, + -0.03153258189558983, + 0.009098987095057964, + -0.0033782548271119595, + 0.005249923560768366, + -0.01023553404957056, + -0.008537321351468563, + 0.023087769746780396, + 0.009535104036331177, + -0.003934965003281832, + -0.021118635311722755, + 0.007909576408565044, + 0.0222551841288805, + -0.02291596680879593, + -0.004969090688973665, + -0.014140764251351357, + 0.011623179540038109, + -0.01597774215042591, + -0.009594574570655823, + 0.020735381171107292, + 0.029180193319916725, + -0.005197061225771904, + -0.02678815647959709, + -0.002980132820084691, + -0.01700856350362301, + 0.0006946484791114926, + 0.03993774577975273, + -0.0012819196563214064, + -0.012521844357252121, + -0.0030726424884051085, + 0.000260596425505355, + -0.012085727415978909, + -0.0034790243953466415, + 0.027250705286860466, + -0.0007627917802892625, + 0.043558839708566666, + 0.01294474583119154, + 0.0183565616607666, + -0.014365429989993572, + 0.0122046684846282, + -0.005411815829575062, + -0.009455809369683266, + 0.002823196817189455, + 0.008365517482161522, + -0.0157927218824625, + -0.026246314868330956, + 0.006700342986732721, + 0.013863234780728817, + -0.008629830554127693, + -0.005421727430075407, + -0.03031674027442932, + -0.007565969601273537, + 0.02978811413049698, + -0.01415397971868515, + 0.0010010867845267057, + -0.0071562835946679115, + -0.0037664652336388826, + -0.0006124635692685843, + 0.00785671453922987, + 0.007473459932953119, + -0.022704515606164932, + 0.07702090591192245, + -0.022281615063548088, + -0.027329999953508377, + 0.0017973306821659207, + 0.007645263336598873, + 0.016546014696359634, + 0.012786158360540867, + 0.026246314868330956, + -0.005048384889960289, + 0.0025225405115634203, + -0.03182332590222359, + -0.003700386732816696, + -0.029180193319916725, + 0.010222318582236767, + 0.00129761325661093, + -0.00031552405562251806, + -0.019215580075979233, + -0.019440246745944023, + -0.014114332385361195, + 0.010400730185210705, + 0.0033699951600283384, + -0.04112715646624565, + 0.0027885057497769594, + 0.011405120603740215, + -0.004658522550016642, + -0.020814675837755203, + 0.01883232593536377, + 0.03235195204615593, + -0.024092162027955055, + -0.012951353564858437, + -0.0030775985214859247, + 0.02588949166238308, + -0.003670651465654373, + 0.00013556383782997727, + 0.007043950725346804, + 0.014907272532582283, + -0.023299220949411392, + 0.0007929400308057666, + 0.0021392861381173134, + 0.024620788171887398, + 0.002340825041756034, + -0.015449115075170994, + 0.014590096659958363, + 0.011120983399450779, + -0.014590096659958363, + -0.07717949897050858, + 0.0017775072483345866, + 0.009924965910613537, + 0.010823631659150124, + 0.02625953033566475, + -0.008808242157101631, + -0.00952849630266428, + 0.022189104929566383, + -0.00344598526135087, + 0.016255270689725876, + -0.05177898332476616, + -0.020378557965159416, + -0.009098987095057964, + -0.009046124294400215, + 0.03208763897418976, + -0.02203051745891571, + -0.013968960382044315, + -0.013446941040456295, + -0.009515279904007912, + 0.03280128538608551, + 0.02388071082532406, + 0.0019014041172340512, + -0.008154066279530525, + -0.010810415260493755, + 0.006211363710463047, + -0.012297178618609905, + -0.018819110468029976, + 0.002517584478482604, + 0.03227265924215317, + 0.01581915281713009, + 0.02625953033566475, + -0.021752988919615746, + 0.037876103073358536, + -0.018171541392803192, + 0.009806024841964245, + -0.008101203478872776, + -0.007473459932953119, + -0.029391644522547722, + 0.0018815805669873953, + -0.03327704966068268, + -0.016876406967639923, + -0.005778550636023283, + 0.02960309386253357, + -0.03206120803952217, + -0.0012042776215821505, + -0.01657244563102722, + -0.006607833318412304, + 0.0009573099086992443, + -0.008160674013197422, + -0.020775029435753822, + -0.02997313253581524, + -0.022823456674814224, + 0.005540668498724699, + 0.02738286182284355, + 0.004248837009072304, + 0.010354475118219852, + -0.0029371820855885744, + 0.0038920140359550714, + 0.0030957700219005346, + -0.01361213717609644, + -0.028360821306705475, + 0.013572489842772484, + -0.027092117816209793, + 0.01563413441181183, + 0.00856375228613615, + -0.001101030269637704, + -0.03819327801465988, + -0.011464591138064861, + -0.0035946613643318415, + -0.016744250431656837, + -0.04065139219164848, + 0.01760326884686947, + 0.00947563350200653, + -0.008623222820460796, + -0.03251054137945175, + -0.0067532057873904705, + -0.03161187469959259, + -0.009839064441621304, + 0.006525235716253519, + -0.027620743960142136, + -0.025717688724398613, + -0.027700038626790047, + 0.045303307473659515, + 0.0016387427458539605, + 0.029814545065164566, + 0.0007706385804340243, + 0.005600139033049345, + -0.01850193366408348, + 0.028175802901387215, + -0.02166047878563404, + 0.005725687835365534, + -0.013955743983387947, + 0.00865626148879528, + -0.022572359070181847, + -0.014193626120686531, + 0.015250880271196365, + 0.012303786352276802, + 0.008061557076871395, + 0.006971264258027077, + -0.009435986168682575, + -0.03496865555644035, + -0.004807198885828257, + -0.04556762054562569, + 0.021145068109035492, + 0.02277059480547905, + -0.00035579054383561015, + -0.016929268836975098, + 2.1965885025565512e-05, + 0.008966830559074879, + 0.014854409731924534, + -0.008894143626093864, + -0.00868930108845234, + 0.002923966385424137, + 0.020153893157839775, + 0.011061513796448708, + -0.009587966836988926, + -0.02024640142917633, + -0.020299265161156654, + 0.0054250312969088554, + 0.002172325272113085, + 0.018713384866714478, + 0.01794687658548355, + -0.01675746589899063, + 0.015488761477172375, + 0.00561005063354969, + 0.0026100941468030214, + -0.017391817644238472, + -0.004083641339093447, + -0.0035748379305005074, + -0.0028859712183475494, + -0.009085770696401596, + -0.019902795553207397, + 0.004929443821310997, + 0.012356649152934551, + -0.0092840064316988, + -0.00952849630266428, + -0.015290526673197746, + -0.01090292539447546, + 0.0232860054820776, + 0.017960092052817345, + 0.02459435723721981, + 0.06507394462823868, + -0.030766073614358902, + -0.01994244195520878, + 0.010248749516904354, + -0.04435177892446518, + 0.0032923531252890825, + 0.008801634423434734, + 0.01727287657558918, + -0.01563413441181183, + 0.020629655569791794, + -0.018224405124783516, + 0.040730684995651245, + 0.0019129677675664425, + 0.017814720049500465, + -0.0033964263275265694, + 0.005950354039669037, + -0.041365038603544235, + 0.0034790243953466415, + 0.017074642702937126, + -0.0003477372520137578, + -0.022043732926249504, + 0.039435550570487976, + -0.002805025316774845, + 0.029180193319916725, + 0.006690431386232376, + 0.007843498140573502, + -0.02266486920416355, + -0.02660313807427883, + -0.0006430248031392694, + 0.013050471432507038, + -0.018924836069345474, + -0.00895361416041851, + -0.0040605138055980206, + 0.000228589735343121, + 0.033488500863313675, + -0.01506586093455553, + -0.0019410511013120413, + 0.02084110677242279, + 0.0008482806151732802, + 0.0005930530605837703, + 0.03977915644645691, + 0.006462461315095425, + 0.0029371820855885744, + -0.01194035541266203, + -0.0010564273688942194, + 0.01850193366408348, + -0.007427204865962267, + -0.007308263797312975, + 0.001082858769223094, + -0.0003184149682056159, + -0.005633178167045116, + 0.005223492626100779, + 0.02748858742415905, + 0.005240011960268021, + -0.005838020704686642, + 0.01292492263019085, + 0.01905699260532856, + 0.0002767030382528901, + -0.0053060902282595634, + 0.011233316734433174, + 0.03298630565404892, + -0.013664999976754189, + 0.02266486920416355, + 0.0013802112080156803, + -0.03837829828262329, + 0.007182714994996786, + 0.013982175849378109, + 0.019770637154579163, + -0.05325913801789284, + 0.0026728687807917595, + -0.0034096420276910067, + -0.0283079594373703, + 0.024898316711187363, + 0.0039019256364554167, + -0.008715732023119926, + -0.015911662951111794, + 0.03354136273264885, + -0.013968960382044315, + -0.01346676517277956, + -0.029523801058530807, + 0.014061469584703445, + 0.020034952089190483, + 0.007341302931308746, + -0.011755336076021194, + 0.011385297402739525, + 0.019929226487874985, + 0.01021571084856987, + 0.014312567189335823, + -0.0019906098023056984, + 0.01028839685022831, + -0.01653279922902584, + 0.011246533133089542, + 0.005540668498724699, + -0.01753718964755535, + -0.022717731073498726, + 0.002362300409004092, + -0.012654000893235207, + 0.012085727415978909, + 0.012131982482969761, + 0.01786758191883564, + 0.09938181936740875, + 0.03221979737281799, + 0.003452592995017767, + -0.0031222014222294092, + -0.0070968130603432655, + 0.03264269605278969, + -0.005758726969361305, + 0.02213624306023121, + -0.0041497196070849895, + -0.05540007725358009, + -0.006944832857698202, + -0.024250749498605728, + 0.008728948421776295, + -0.03777037560939789, + -0.011015258729457855, + 0.023418162018060684, + -0.010665043257176876, + 0.022638438269495964, + -0.014087901450693607, + 0.017444681376218796, + 0.03570873290300369, + -0.021792635321617126, + 0.028466546908020973, + 0.025902707129716873, + -0.03182332590222359, + -0.018594443798065186, + 0.012561491690576077, + -0.0041199843399226665, + -0.009198104031383991, + 0.005639785900712013, + -0.020616440102458, + -0.007182714994996786, + -0.07924114167690277, + -0.02422431856393814, + 0.016175976023077965, + -0.01506586093455553, + -0.018026169389486313, + -0.008332477882504463, + 0.004043994005769491, + -0.007843498140573502, + -0.002872755518183112, + 0.028096508234739304, + -0.028625134378671646, + -0.021739771589636803, + 0.010308220051229, + -0.015264095738530159, + -0.007869930006563663, + -0.01716715097427368, + -0.02793792076408863 + ], + "metadata": { + "source": "Kreye_Marieke_BA_241_V2.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 17, + "has_images": true, + "image_count": 98, + "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", + "links": [], + "last_modified": "2025-05-05T23:00:23", + "_known_field_names": "frozenset({'is_continuation', 'sent_to', 'header_footer_type', 'email_message_id', 'filename', 'languages', 'detection_class_prob', 'sent_from', 'link_texts', 'cc_recipient', 'subject', 'image_mime_type', 'image_path', 'filetype', 'page_number', 'last_modified', 'signature', 'detection_origin', 'text_as_html', 'attached_to_filename', 'bcc_recipient', 'data_source', 'link_start_indexes', 'category_depth', 'emphasized_text_tags', 'parent_id', 'orig_elements', 'page_name', 'coordinates', 'url', 'link_urls', 'file_directory', 'links', 'table_as_cells', 'emphasized_text_contents', 'key_value_pairs', 'image_base64'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "Kreye_Marieke_BA_241_V2.pdf", + "detection_class_prob": 0.3422867953777313, + "parent_id": "e02392183bc6851689602ad4b9f6039f", + "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", + "id": "ce00eae5-7e07-454f-9e4f-f79ac36f92f4", + "processing_timestamp": "2025-05-05T23:15:46.977945", + "chunk_number": 32, + "total_chunks": 56, + "chunking_strategy": "hybrid", + "word_count": 510 + } +} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000033.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000033.json new file mode 100644 index 0000000000000000000000000000000000000000..7e21b2605a55f41c4f65967b026cbed748fdfd2a --- /dev/null +++ b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000033.json @@ -0,0 +1,1570 @@ +{ + "id": "61a115b2-0ff7-441a-f6d9-eb3d00000033", + "content": "Die Diagramme der \u00fcbrigen Gebietsausschnitte sind in Anhang 5 bis 8 abgebildet. ## 6.1 Zunahme des Gr\u00fcnanteils\n\nAuf Basis der in Kapitel 5.3 erl\u00e4uterten Baumpflanzungsszenarien hat sich in jedem Gebietsausschnitt der Gr\u00fcnanteil mit jedem Szenario erh\u00f6ht. Eine zusammenfassende \u00dcbersicht der Anzahl neuer B\u00e4ume je Gebietsausschnitt und Szenario ist in Tabelle 3 dargestellt. Tabelle 3: \u00dcbersicht aller Baumpflanzungsszenarien (eigene Berechnungen)\n\n| Gebiets- | ausschnitt | Baumpflanzungs- | szenario | Anzahl | Bestands- | b\u00e4ume | Anzahl | der | neuen | B\u00e4ume | Szenario | A | 75 | I | 7 | l | h | Szenario | B | 250 | \u00fc | b | m | o | II | Szenario | C | 88 | 250 | r | G | Szenario | D | 500 | III | Szenario | E | 788 | 500 | Szenario | F | 67 | - | n | e | f | a | r | IV | l | h | \u00fc | b | Szenario | G | 40 | 135 | G | V | Szenario | H | 404 | 135 |\n|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|\n\n38\nErgebnisse\nBei der Betrachtung des gesamten Fallstudiengebiets Gromb\u00fchl (Gebietsausschnitt III) und Grafenb\u00fchl (Gebietsausschnitt V) k\u00f6nnen in Gromb\u00fchl 12 neue B\u00e4ume pro Hektar Gebietsfl\u00e4che gepflanzt werden. In Grafenb\u00fchl liegt die Anzahl neuer B\u00e4ume pro Hektar Gebietsfl\u00e4che bei 6 B\u00e4umen. Zur visuellen Verdeutlichung ist in Abbildung 21 die Zunahme des Baumbestands im 3D- Modell f\u00fcr den Gebietsausschnitt II dargestellt. Die visuelle Darstellung des steigenden Gr\u00fcnanteils in den \u00fcbrigen Gebietsausschnitten befindet sich in Anhang 5. [IMAGE: Gebietsausschnitt II \u2014 Teil 1 X Status Quo Szenario C Szenario D Gebietsausschnitt II - Teil 2 Status Quo Szenario C Szenario D]\n\nAbbildung 21: Zunahme des Gr\u00fcnanteils im Gebietsausschnitt II (Datengrundlage CGSC und eigene Berechnungen)\n\n## 6.2 Auswirkungen auf den thermischen Geb\u00e4udeenergiebedarf\n\nDie Kurven des Heiz- und K\u00fchlbedarfs verlaufen in jedem Szenario \u00e4hnlich. Der H\u00f6chstwert des Heizbedarfs ist im Januar zu beobachten, w\u00e4hrend der H\u00f6chstwert des K\u00fchlbedarfs im Juli liegt. Ein Unterschied zwischen dem monatlichen thermischen Geb\u00e4udeenergiebedarf des Status Quos des Gebietsausschnittes und dem in diesen simulierten Szenarien ist gering. Dennoch ist j\u00e4hrlich betrachtet stets mit einer kleinen Erh\u00f6hung des Heizbedarfs und einer Reduktion des K\u00fchlbedarfs zu rechnen. Die Betrachtung des Energiebedarfs je Quadratmeter Nutzfl\u00e4che verdeutlicht diese Auswirkungen. Mit einem zunehmenden Gr\u00fcnanteil nimmt die Anzahl der Geb\u00e4ude mit einem h\u00f6heren spezifischen Heizbedarf zu, w\u00e4hrend sich der spezifische K\u00fchlbedarf reduziert. Dieser Effekt spiegelt sich auch in den CO2e-Emissionen des Heiz- und K\u00fchlbedarfs wider. Der Heiz- und K\u00fchlbedarf eines Jahres der 37 Wohngeb\u00e4ude in Gebietsausschnitt I weist trotz einer Erh\u00f6hung des Baumbestands eine sehr geringe Ver\u00e4nderung auf. In dem in Abbildung 22 dargestellten Diagramm ist der Heiz- und K\u00fchlbedarf in MWh je\n39\nErgebnisse\nMonat f\u00fcr den Status Quo, sowohl mit als auch ohne der Verschattungswirkung der B\u00e4ume, sowie die Geb\u00e4udeenergiebedarfe der Szenarien A und B visualisiert. Der H\u00f6chstwert des Heizbedarfs liegt f\u00fcr beide Szenarien im Januar bei knapp unter 600 MWh. Der h\u00f6chste K\u00fchlbedarf wird im Juli erreicht. Dieser liegt bei Szenario A bei 170 MWh und bei Szenario B bei 165 MWh. Auf ein Jahr gesehen nimmt mit einer Erh\u00f6hung des Baumbestands in diesem Gebietsausschnitt der Heizbedarf in Szenario B im Vergleich zum Status Quo um 5,6 MWh zu und der K\u00fchlbedarf um 18 MWh ab. [IMAGE: $ $ X & RS) Kr pr A ER monatlicher Heiz- und K\u00fchlbedarf Gebietsausschnitt | Gromb\u00fchl 700 600 50 4 E 2 1 0 RQ x & S S Ss Ri & Heiz- und K\u00fchlbedarf [MWh] {=} \u00f6 \u00a9 [02 o \u00b0 [52 {=} \u00a9 N N S N N S RX RS I ES > \u00a3 S dv S & & NG S gg u Heizbedarf ohne B\u00e4ume m K\u00fchlbedarf ohne B\u00e4ume m Heizbedarf Status Quo mK\u00fchlbedarf Status Quo wHeizbedarf Szenario A =K\u00fchlbedarf Szenario A mHeizbedarf Szenario B \" K\u00fchlbedarf Szenario B]\n\nAbbildung 22: Monatlicher Heiz- und K\u00fchlbedarf im Gebietsausschnitt I (eigene Darstellung und Berechnung auf Grundlage der Simulationsergebnisse)\nEine Erh\u00f6hung des Heizbedarfs und eine Reduktion des K\u00fchlbedarfs wird auch aus den untenstehenden Diagrammen in Abbildung Abbildung 23 ersichtlich. Die Anzahl der H\u00e4user auf der y-Achse ist gegen den spezifischen Energiebedarf auf der x-Achse in kWh/(m2*a) aufgetragen. 40\nErgebnisse\nIn Abbildung 23 ist der spezifische Energiebedarf der 37 Wohngeb\u00e4ude des Gebietsausschnitts I f\u00fcr den Fall, dass keine Baumverschattung ber\u00fccksichtigt wird, sowie f\u00fcr den Status Quo und die Szenario A und B, in welchen der Verschattungseffekt mit in die Simulation eingeflossen ist, dargestellt. Im Vergleich zum Status Quo weisen mehr Geb\u00e4ude einen spezifischen Heizbedarf in dem Intervall von 90-120 kWh/(m2*a) bzw. 120-150 kWh/(m2*a) auf und die Anzahl der Geb\u00e4ude mit einem geringen spezifischen Heizbedarf (60-90 kWh/(m2*a)) hat sich leicht reduziert.", + "embedding": [ + 0.007641397882252932, + -0.010478323325514793, + 0.03433072939515114, + -0.025388527661561966, + 0.005092086270451546, + 0.011092773638665676, + -0.03480137139558792, + -0.013831648975610733, + -0.031297702342271805, + -0.015949537977576256, + 0.015505042858421803, + 0.018172014504671097, + -0.018198162317276, + -0.000498423061799258, + 0.005873221438378096, + 0.013053782284259796, + 0.03961237892508507, + 0.012426258996129036, + 0.024486463516950607, + 0.020773619413375854, + 0.0009723335388116539, + 0.029075223952531815, + 0.006490939296782017, + -0.002562384819611907, + 0.005294723901897669, + 0.03006880171597004, + 0.012694263830780983, + -0.02081283926963806, + -0.02483944408595562, + 0.003758600214496255, + 0.021191967651247978, + -0.0042782677337527275, + -0.024865591898560524, + 0.007301489356905222, + -0.013962382450699806, + -0.007288415916264057, + -0.00032315790303982794, + -0.01574036478996277, + 0.023179125040769577, + 0.0005364176467992365, + 0.0027977058198302984, + 0.0016897359164431691, + -0.014315363951027393, + -0.010569837875664234, + 0.01791054755449295, + 0.018629584461450577, + 0.00809896644204855, + 0.0030885888263583183, + -0.03893256187438965, + 0.023388298228383064, + 0.01818508841097355, + 0.030905498191714287, + -0.02325756475329399, + 0.0056673153303563595, + -0.01733531802892685, + -0.002861438784748316, + -0.025649994611740112, + -0.0011120553826913238, + -0.006981191225349903, + -0.005582338199019432, + -0.009046787396073341, + -0.003147419076412916, + -0.007033484987914562, + 0.004712957888841629, + -0.04031834006309509, + -0.015256648883223534, + -0.009020640514791012, + -0.01023646630346775, + 0.014733713120222092, + -0.018172014504671097, + 0.021584169939160347, + 0.046462833881378174, + 0.0002641233731992543, + -0.018224308267235756, + 0.02944127842783928, + -0.010452177375555038, + 0.009706993587315083, + -0.014446098357439041, + -0.0030428320169448853, + 0.014354584738612175, + 0.02915366366505623, + -0.023505959659814835, + -0.02938898466527462, + 0.049443569034338, + 0.022538527846336365, + 0.018446555361151695, + -0.015400456264615059, + 0.03171604871749878, + -0.01626330055296421, + 0.016472473740577698, + 0.02631673775613308, + 0.011419608257710934, + 0.004281535744667053, + 0.019531648606061935, + -0.007236122619360685, + -0.006229471415281296, + -0.006098737474530935, + -0.005552923306822777, + 0.018721098080277443, + -0.025911463424563408, + -0.018864905461668968, + 0.006556306034326553, + -0.008380044251680374, + -0.003500400809571147, + -0.012844608165323734, + -0.005180331412702799, + 0.005873221438378096, + 0.028107792139053345, + 0.012269378639757633, + -0.023296784609556198, + -0.014733713120222092, + 0.02870916947722435, + -0.0224470142275095, + -0.016446327790617943, + 0.014576831832528114, + -0.03576879948377609, + 0.03791283816099167, + 0.013831648975610733, + -0.011681076139211655, + -0.008053209632635117, + 0.016132565215229988, + -0.013740135356783867, + 0.0004105862171854824, + -0.011001259088516235, + 0.018564216792583466, + 0.023375224322080612, + 0.01728302426636219, + 0.0018172014970332384, + -0.03503669053316116, + -0.03270962834358215, + -0.02330985851585865, + 0.018511923030018806, + 0.006366741843521595, + 0.011615708470344543, + -0.011556878685951233, + 0.034304581582546234, + -0.015387382358312607, + -0.004314219579100609, + -0.03548118472099304, + -0.054542191326618195, + 0.001401304267346859, + 0.015478895977139473, + -0.01682545617222786, + -0.02808164618909359, + 0.010759402066469193, + 0.02687889337539673, + 0.0015156964072957635, + 0.03281421586871147, + -0.007190365809947252, + -0.016407107934355736, + -0.002204500837251544, + -0.0038108937442302704, + 0.029232105240225792, + 0.0012550456449389458, + 0.012413186021149158, + -0.014302290976047516, + -0.0085238516330719, + 0.004405733197927475, + -0.03474907577037811, + -0.003131077392026782, + 0.010020755231380463, + 0.0002516628010198474, + -0.0014993546064943075, + 0.0029464156832545996, + 0.011870640330016613, + 0.005320870783179998, + 0.001541026053018868, + -0.012994951568543911, + 0.005739219021052122, + -0.026931187137961388, + 0.012164791114628315, + 0.01751834526658058, + -0.016733942553400993, + 0.019191740080714226, + -0.00633732695132494, + 0.01870802417397499, + -0.010942429304122925, + 0.0004273364902473986, + -0.012432795949280262, + -0.027637150138616562, + -0.028813757002353668, + 0.012387039139866829, + -0.0004918863996863365, + 0.01648554764688015, + -0.03712843358516693, + -0.008628439158201218, + 0.019871555268764496, + 0.01864265650510788, + -0.0016578695503994823, + 0.0016897359164431691, + 0.0002927214081864804, + 0.0020280098542571068, + 0.019008712843060493, + -0.010759402066469193, + -0.6271044611930847, + 0.013857795856893063, + -0.011406534351408482, + -0.0021783539559692144, + 0.028892196714878082, + 0.018328895792365074, + 0.024761004373431206, + 0.01723073050379753, + -0.016341740265488625, + 0.0046900794841349125, + 0.006435377057641745, + -0.0012893632519990206, + 0.0030918573029339314, + -0.0027715591713786125, + 0.010197245515882969, + -0.023113757371902466, + -0.003051002975553274, + -0.007111925166100264, + 0.008746099658310413, + 0.005735950544476509, + -0.02768944390118122, + 0.012668116949498653, + -0.0041638752445578575, + 0.024015821516513824, + 0.019819261506199837, + 0.016119493171572685, + -0.0059353201650083065, + -0.012556993402540684, + -0.0009657968184910715, + 0.010811694897711277, + -0.015701143071055412, + 0.02023761160671711, + -0.01693004183471203, + 0.017727520316839218, + 0.03932476416230202, + 0.005294723901897669, + -0.007393003441393375, + 0.002997075207531452, + 0.005111696198582649, + 0.014119263738393784, + -0.026120636612176895, + -0.001438890234567225, + 6.414132803911343e-05, + -0.01219747494906187, + -0.002902293112128973, + 0.013302176259458065, + 0.021231189370155334, + -0.009876947849988937, + 0.008824539370834827, + -0.016799308359622955, + 0.020446784794330597, + 0.019061004742980003, + 0.002926805755123496, + 0.007556420750916004, + 0.024538757279515266, + 0.008236236870288849, + 0.02234242670238018, + -0.005007109139114618, + 0.010184172540903091, + 0.008648049086332321, + -0.0006030102376826108, + 0.0034579122439026833, + -0.004281535744667053, + -0.018773391842842102, + -0.01199483685195446, + 0.0369454063475132, + -0.031977515667676926, + -0.015138988383114338, + 0.01648554764688015, + -0.022603895515203476, + -0.020093804225325584, + -0.00072475615888834, + -0.0007778668077662587, + -0.015308941714465618, + 0.02478715218603611, + -0.00229601445607841, + 0.02626444399356842, + -0.014955960214138031, + -0.006268691271543503, + 0.01355710718780756, + -0.005467946175485849, + -0.020146097987890244, + -0.023845866322517395, + 0.007850571535527706, + 0.016001831740140915, + -0.03286650776863098, + -0.014877520501613617, + 0.00812511332333088, + -0.016629355028271675, + 0.023845866322517395, + 0.02076054736971855, + 0.023179125040769577, + -0.011641855351626873, + -0.025048619136214256, + 0.004729299806058407, + 0.04212246835231781, + -0.005834001116454601, + 0.05043714493513107, + 0.0019463011994957924, + -0.05234586074948311, + -0.028787609189748764, + -0.006588989403098822, + 0.012981878593564034, + 0.009203667752444744, + 0.038461919873952866, + 0.01796284131705761, + -0.012190937995910645, + -0.012550456449389458, + 0.0437697172164917, + -0.030147241428494453, + 0.0038141622208058834, + -0.015949537977576256, + -0.001977350562810898, + -0.011870640330016613, + 0.001643979107029736, + -0.020146097987890244, + 0.039533939212560654, + -0.002142402110621333, + 0.005677120294421911, + 0.007471443619579077, + 0.028160085901618004, + 0.006046443711966276, + 0.017021557316184044, + -0.03433072939515114, + 0.0037945520598441362, + 0.03519356995820999, + 0.00421943748369813, + -0.003023221855983138, + -0.008902980014681816, + -0.015230502001941204, + 0.003470985684543848, + 0.011413071304559708, + 0.03132384642958641, + -0.0030003434512764215, + 0.03030412271618843, + -0.0032422011718153954, + 0.032369717955589294, + 0.01716536469757557, + 0.007510663941502571, + -0.037938982248306274, + -0.017923621460795403, + -0.011968690901994705, + 0.028447700664401054, + -0.033284857869148254, + -0.019374767318367958, + -0.00021019563428126276, + -0.017923621460795403, + 0.0021538413129746914, + -0.005654241889715195, + 0.003997189458459616, + -0.020904354751110077, + -0.0036899650003761053, + 0.008648049086332321, + -0.00025207133148796856, + 0.006863530725240707, + 0.011275800876319408, + -0.013687841594219208, + -0.015125914476811886, + -0.021649537608027458, + -0.01938784122467041, + 0.01159609854221344, + 0.02563692256808281, + -0.026172930374741554, + -0.0006769566098228097, + -0.023322930559515953, + -0.003604987869039178, + 0.0013465593801811337, + 0.01333486009389162, + -0.011752979829907417, + -0.025715362280607224, + -0.020250683650374413, + -0.02229013293981552, + 0.009870410896837711, + -0.005039792507886887, + -0.027035774663090706, + -0.029885774478316307, + -0.019531648606061935, + 0.004670469090342522, + -0.007504126988351345, + -0.008138186298310757, + 0.018145868554711342, + -0.002769924933090806, + -0.006471328902989626, + -0.01500825397670269, + 0.033284857869148254, + 0.013818575069308281, + 0.02551926113665104, + 0.009909630753099918, + -0.01537430938333273, + -0.0003245878033339977, + 0.004520125221461058, + 0.044188063591718674, + -0.010942429304122925, + 0.017413757741451263, + -0.017479125410318375, + -0.01532201562076807, + 0.012053667567670345, + 0.015714216977357864, + -0.024708710610866547, + 0.015138988383114338, + 0.04593989998102188, + 0.006863530725240707, + 0.02285228855907917, + -0.003758600214496255, + 0.03103623352944851, + -0.042148616164922714, + 0.026578206568956375, + 0.0007464090012945235, + 0.02341444604098797, + 0.0033369832672178745, + 0.025663068518042564, + -0.008772246539592743, + -0.022381646558642387, + -0.0020149366464465857, + -0.0002733156143222004, + 0.027323389425873756, + -0.007817888632416725, + -0.006664161570370197, + 0.012641970068216324, + -0.005896099843084812, + 0.005644436925649643, + 0.010308369994163513, + 0.008406191132962704, + 0.0008669293019920588, + -0.005124769639223814, + 0.004716226365417242, + 0.0023515764623880386, + 0.011851029470562935, + 0.004830618388950825, + -0.006981191225349903, + -0.01733531802892685, + 0.007144609000533819, + -0.003160492517054081, + 0.007497590500861406, + 0.020603666082024574, + 0.02524472028017044, + 0.02291765622794628, + -0.012583140283823013, + 0.03252660110592842, + -0.0020966453012079, + 0.029545865952968597, + 0.020250683650374413, + 0.006229471415281296, + -0.022786922752857208, + 0.02768944390118122, + 0.005500629544258118, + 0.010144952684640884, + 0.013491740450263023, + -0.01842040941119194, + 0.002263331087306142, + -0.0034317653626203537, + 0.01693004183471203, + 0.013308713212609291, + 0.001681565074250102, + 0.01916559226810932, + -0.007124998606741428, + 0.009007567539811134, + 0.008713415823876858, + 0.02745412290096283, + 0.024643344804644585, + 0.0017142485594376922, + 0.003804357023909688, + 0.0013318518176674843, + -0.006376546807587147, + -0.00821008998900652, + -0.010452177375555038, + -0.02716650813817978, + -0.02127040922641754, + -0.009863873943686485, + -0.004366512876003981, + 0.018002061173319817, + 0.0003727959410753101, + -0.01665550097823143, + 0.007504126988351345, + -0.007968232035636902, + -0.0068700676783919334, + 0.003487327368929982, + 0.0027437780518084764, + 0.005203209817409515, + -0.0039056758396327496, + 0.006641283165663481, + -0.021401142701506615, + -0.018433483317494392, + 0.022211693227291107, + -0.00403640978038311, + -0.012994951568543911, + 0.00043959281174466014, + 0.005490824580192566, + -0.022316280752420425, + 0.017034629359841347, + -0.02251238189637661, + -0.007582567632198334, + -0.012256304733455181, + -0.010393346659839153, + 0.010295296087861061, + -0.025728436186909676, + 0.0018547874642536044, + -0.006268691271543503, + 0.0019626428838819265, + 0.010164562612771988, + -0.008955273777246475, + -0.004722762852907181, + -0.018904125317931175, + -0.012151718139648438, + 0.041181184351444244, + 0.0018923735478892922, + -0.02130962908267975, + -0.009354012086987495, + -0.010367199778556824, + -0.020930500701069832, + -0.016014905646443367, + -0.013289103284478188, + -0.011916397139430046, + 0.03490595519542694, + -0.00887029618024826, + 0.013164905831217766, + -0.00177307880949229, + -0.015766510739922523, + 0.03775595501065254, + 0.009857337921857834, + -0.008085893467068672, + -0.025048619136214256, + -0.00949781946837902, + -0.00016729856724850833, + 0.024630270898342133, + 0.03660549968481064, + 0.0075891041196882725, + 0.015465823002159595, + 0.009569723159074783, + -0.0004044580564368516, + 0.0008840881637297571, + -0.04353439435362816, + -0.0015688070561736822, + -0.004353439435362816, + -0.00821008998900652, + -0.004768519662320614, + 0.01750527136027813, + -0.02455183118581772, + 0.018433483317494392, + -0.012328208424150944, + 0.01848577708005905, + -0.024695638567209244, + 0.00044776368304155767, + 0.0016104785026982427, + -0.015871098265051842, + -0.0050005726516246796, + -0.0023646499030292034, + 0.06259540468454361, + 0.0013114246539771557, + 0.017871327698230743, + 0.029127517715096474, + 0.018747244030237198, + 0.016302520409226418, + -0.008563071489334106, + -0.017701372504234314, + 0.0190479326993227, + 0.007464906666427851, + 0.031062379479408264, + -0.027558710426092148, + -0.012164791114628315, + 0.00958279613405466, + -0.034487608820199966, + 0.03307568281888962, + -0.00195120379794389, + 0.02602912299335003, + 0.009791970252990723, + 0.014328437857329845, + -0.02342751808464527, + 0.003238932928070426, + 0.0005564362509176135, + -0.01893027126789093, + 0.011707223020493984, + -0.01188371330499649, + -0.01336100697517395, + 0.015531189739704132, + -0.02319219708442688, + -0.011785662733018398, + 0.0020901085808873177, + -0.0008130015921778977, + 0.003709574928507209, + -0.0022077690809965134, + -0.009622016921639442, + 0.016054125502705574, + -0.025846095755696297, + -0.04837154969573021, + -0.02894449047744274, + 0.019374767318367958, + -0.0235974732786417, + -0.0025509456172585487, + -0.005010377615690231, + -0.009164447896182537, + -0.009001030586659908, + -0.01978004164993763, + 0.0033059341367334127, + 0.022708481177687645, + -0.016289446502923965, + -0.01774059236049652, + -0.005938588175922632, + 0.02137499675154686, + 0.015073620714247227, + 0.0062425448559224606, + 0.004758714698255062, + -0.0068047004751861095, + -0.014119263738393784, + -0.02568921633064747, + -0.02808164618909359, + 0.0010597618529573083, + -0.009968461468815804, + -0.010426030494272709, + 0.016341740265488625, + -0.020093804225325584, + -0.0250224731862545, + 0.00615429924800992, + 0.015831878408789635, + -0.004722762852907181, + -0.008530388586223125, + 0.004771788138896227, + -0.008654585108160973, + -0.008621902205049992, + -0.00952396634966135, + -0.006922360975295305, + 0.009968461468815804, + 0.027035774663090706, + -0.025571554899215698, + 0.03179448843002319, + 0.002412040950730443, + 0.002650630194693804, + -0.021296555176377296, + 0.0008644780609756708, + -0.007340709678828716, + -0.023231416940689087, + -0.012844608165323734, + -0.021165821701288223, + -0.01575343683362007, + 0.012066740542650223, + -0.025558480992913246, + 0.012909974902868271, + -0.007412613369524479, + -0.007471443619579077, + 0.0035200107377022505, + 0.01251123659312725, + -0.00501691410318017, + 0.01881261169910431, + 0.02439494989812374, + 0.017374537885189056, + -0.024577977135777473, + 0.05820273980498314, + 0.007510663941502571, + -0.0009674309985712171, + 0.026512838900089264, + -0.014799079857766628, + 0.023832794278860092, + -0.02478715218603611, + -0.0044253431260585785, + -0.0015794291393831372, + 0.014289218001067638, + 0.02353210560977459, + -0.008974883705377579, + -0.02006765641272068, + -0.014759860001504421, + 7.296331659745192e-06, + 0.013145295903086662, + -0.022433940321207047, + 0.017805960029363632, + -0.03650091215968132, + 0.011805272661149502, + -0.010040365159511566, + -0.00095926015637815, + 0.005010377615690231, + -0.016054125502705574, + -0.024290362372994423, + 0.022538527846336365, + 0.022094031795859337, + -0.012543919496238232, + -0.03859265521168709, + -0.024146554991602898, + -0.016171786934137344, + 0.0029660258442163467, + -0.010863988660275936, + -0.023571325466036797, + 0.01336100697517395, + -0.012204011902213097, + 0.01967545598745346, + 0.01415848359465599, + 0.029990362003445625, + 0.003301031421869993, + 0.021584169939160347, + 0.009935777634382248, + -0.020930500701069832, + 0.0060431757010519505, + -0.0002953769580926746, + -0.004964620806276798, + -0.03263118490576744, + 0.02580687589943409, + -0.011837956495583057, + 0.014825226739048958, + 0.02295687608420849, + 0.020093804225325584, + 0.028787609189748764, + 0.03315412253141403, + -0.02210710570216179, + -0.02052522636950016, + -0.011811809614300728, + -0.01699540950357914, + -0.006856994237750769, + -0.0007946171099320054, + -0.01063520461320877, + 0.003559231059625745, + -0.0071772923693060875, + -0.0015688070561736822, + 0.04065825045108795, + 0.007602177560329437, + -0.011576488614082336, + -0.008138186298310757, + 0.015962611883878708, + -0.030094947665929794, + 0.03937705606222153, + 0.009118691086769104, + -0.005079012829810381, + 0.005170526448637247, + -0.004869838710874319, + -0.01626330055296421, + -0.019583940505981445, + 0.018198162317276, + -0.003634402994066477, + 0.010471787303686142, + 0.008144723251461983, + -0.022590821608901024, + 0.003987384494394064, + -0.006677235011011362, + 0.002611410105600953, + -0.029911920428276062, + 0.01949242688715458, + -0.006948507856577635, + -0.019597014412283897, + -0.02091742679476738, + -0.008935663849115372, + -0.0041704121977090836, + 0.01903485879302025, + -0.007124998606741428, + -0.009955388493835926, + 0.02388508804142475, + 0.004958083853125572, + 0.029232105240225792, + 0.027950912714004517, + -0.012609286233782768, + 0.031193112954497337, + 0.021518804132938385, + 0.03780825063586235, + 0.012158255092799664, + -0.023519031703472137, + -0.02091742679476738, + -0.042436230927705765, + -0.0019413987174630165, + -0.01625022664666176, + 0.014106189832091331, + -0.003309202380478382, + -0.001584331737831235, + 0.004085435066372156, + 0.002745412290096283, + 0.0173483919352293, + -0.004945010412484407, + -0.005706535652279854, + 0.03474907577037811, + 0.021558023989200592, + 0.0167731624096632, + -0.020433712750673294, + 0.006121615879237652, + -0.011805272661149502, + 0.0027813641354441643, + -0.0017175169195979834, + -0.008399654179811478, + 0.012007910758256912, + -0.02076054736971855, + -0.0033271783031523228, + 0.0477701760828495, + 0.010504470206797123, + 0.021283483132719994, + -0.017688298597931862, + -0.01313222199678421, + -0.015152061358094215, + -0.02460412308573723, + 0.004824081901460886, + 0.023349078372120857, + -0.0023532104678452015, + 0.03482751548290253, + 0.00655303755775094, + -0.015779584646224976, + 0.01893027126789093, + -0.019296327605843544, + -0.008236236870288849, + -0.0043828547932207584, + -0.0038435773458331823, + 0.020446784794330597, + 0.0029382449574768543, + -0.001567989937029779, + -0.0038762607146054506, + 0.021727977320551872, + 0.02831696718931198, + 0.007929012179374695, + -0.007399539928883314, + -0.007791741751134396, + -0.009412841871380806, + -0.007948622107505798, + -0.0007321099401451647, + 0.004624712280929089, + -0.003292860696092248, + -0.004637785721570253, + -0.014537611976265907, + -0.006566110998392105, + -0.012975341640412807, + -0.002080303616821766, + 0.03631788492202759, + -0.024460315704345703, + 0.012831534259021282, + 0.01954472064971924, + -0.0004330561205279082, + 0.04110274463891983, + -0.0012975342106074095, + -0.0301210954785347, + -0.02570228837430477, + 0.022643115371465683, + -0.038801826536655426, + 0.017975913360714912, + 0.04860687255859375, + -0.0065007442608475685, + 0.01972774788737297, + 0.017269950360059738, + -0.0035821094643324614, + -0.017309170216321945, + 0.02580687589943409, + -0.01244586892426014, + -0.020028436556458473, + -0.002150573069229722, + 0.0009666139376349747, + 0.012210547924041748, + -0.014864446595311165, + -0.007948622107505798, + 0.01113853044807911, + 0.004712957888841629, + -4.1824641812127084e-05, + -0.024643344804644585, + -0.01745297759771347, + 0.0198977030813694, + 0.018629584461450577, + -0.01694311574101448, + 0.029467426240444183, + -0.019479354843497276, + 0.012262841686606407, + -0.011968690901994705, + 0.01003382820636034, + -0.007523736916482449, + -0.01636788621544838, + -0.020878206938505173, + 0.007543347310274839, + 0.016812382265925407, + -0.00934747513383627, + 0.0024365533608943224, + -0.021348848938941956, + -0.03252660110592842, + -0.017988987267017365, + 0.019714675843715668, + 0.01241972204297781, + -0.004284804221242666, + 0.006955044809728861, + 0.012530846521258354, + -0.02017224393785, + 0.006036638747900724, + 0.0017600053688511252, + -0.0031245406717061996, + 0.007556420750916004, + -0.007275342475622892, + -0.04358668997883797, + -0.0036736230831593275, + -0.0045822239480912685, + 0.019230959936976433, + 0.031585317105054855, + -0.03216054290533066, + 0.0008832710445858538, + -0.00136044982355088, + -0.04217476397752762, + -0.03477522358298302, + -0.0066576250828802586, + 0.0036768915597349405, + -0.0014405243564397097, + 0.015505042858421803, + -0.013805502094328403, + 0.02631673775613308, + -0.0006491756066679955, + 0.010648277588188648, + -0.04614907503128052, + -0.018341969698667526, + 0.010981649160385132, + 0.002147304592654109, + 0.036579351872205734, + -0.000759890943299979, + -0.02933669090270996, + -0.023845866322517395, + 0.01609334535896778, + 0.0029006588738411665, + 0.0008456850773654878, + 0.015413529239594936, + -0.024577977135777473, + -0.0057130721397697926, + 0.0026277517899870872, + 0.011975226923823357, + 0.004980962257832289, + 0.015831878408789635, + 0.0070204115472733974, + -0.03035641647875309, + -0.002815681742504239, + 0.008595755323767662, + 0.01676008850336075, + -0.03399081900715828, + -0.010994723066687584, + 0.0003844394232146442, + -0.006902751047164202, + -0.012583140283823013, + 0.012844608165323734, + -0.01711307093501091, + -0.025493115186691284, + -0.011805272661149502, + 0.03613485395908356, + 0.02062981203198433, + -0.003068978898227215, + 0.010837841778993607, + 0.028212379664182663, + -0.02358439937233925, + -0.012177865020930767, + 0.013001488521695137, + -0.0184727031737566, + -0.006562842987477779, + 0.022473160177469254, + -0.00497442577034235, + 0.03273577243089676, + -0.023453665897250175, + 0.012753093615174294, + -0.016864676028490067, + 0.01818508841097355, + -0.0037030382081866264, + -0.011779126711189747, + -0.019570868462324142, + 0.011720295995473862, + 0.02354517951607704, + -0.018891051411628723, + 0.02483944408595562, + 0.01474678609520197, + -0.01032144296914339, + 0.0006128152599558234, + 0.002993806730955839, + 0.0015500140143558383, + -0.036187149584293365, + 0.0014233655529096723, + 0.004677006043493748, + -0.010216856375336647, + -0.0014650369994342327, + 0.00926249846816063, + -0.0018923735478892922, + -0.047038063406944275, + 0.013380616903305054, + 0.18846602737903595, + -0.012890364974737167, + -0.012864218093454838, + 0.03187292814254761, + -0.0002737241447903216, + -0.01699540950357914, + 0.017988987267017365, + 0.010700571350753307, + 0.008746099658310413, + 0.03676237910985947, + -0.0289967842400074, + 0.0018449825001880527, + 0.006732796784490347, + 0.005709804128855467, + 0.01532201562076807, + -0.02018531784415245, + -0.025506187230348587, + 0.007262269500643015, + 0.003895870875567198, + 0.03365091234445572, + 0.017413757741451263, + -0.02978118695318699, + 0.006902751047164202, + -0.011282337829470634, + 0.03171604871749878, + 0.008118576370179653, + -0.021453436464071274, + 0.0022535258904099464, + 0.016838528215885162, + 0.012524309568107128, + 0.0010303467279300094, + 0.002171817235648632, + 0.009648163802921772, + -0.007308026310056448, + -0.016224078834056854, + 0.006856994237750769, + 0.014511465094983578, + -0.013779355213046074, + 0.03234357386827469, + 0.019858483225107193, + 0.006726260297000408, + -0.008536924608051777, + -0.011047015897929668, + -0.0033663983922451735, + -0.021623389795422554, + 0.025597700849175453, + 0.003051002975553274, + 0.006026833783835173, + -0.004042946733534336, + -0.0030215878505259752, + -0.03006880171597004, + -0.024996325373649597, + 0.010890135541558266, + 0.03255274519324303, + -0.014302290976047516, + -0.0014879154041409492, + 0.014027750119566917, + -0.021675683557987213, + 0.016851602122187614, + 0.013289103284478188, + -0.03644861653447151, + 0.03997843340039253, + -0.02057751826941967, + 0.021636463701725006, + -0.007909402251243591, + -0.0014625857584178448, + -0.03132384642958641, + 0.018851831555366516, + -0.0005098622641526163, + -0.01162224542349577, + -0.01389701571315527, + -0.022813068702816963, + -0.021466510370373726, + 0.00963508989661932, + -0.012838071212172508, + -0.03472292795777321, + 0.006843920797109604, + -0.009667773731052876, + 0.02181949093937874, + 0.012190937995910645, + 0.003225859487429261, + -0.013223736546933651, + 0.002774827415123582, + -0.016838528215885162, + 0.00017485661373939365, + -0.0397954061627388, + 0.023558253422379494, + 0.002670240355655551, + -0.00568692572414875, + -0.0375206358730793, + -0.006409230642020702, + 0.005647705402225256, + -0.0018172014970332384, + -0.012635433115065098, + 0.00881146639585495, + -0.0026391909923404455, + 0.003823967184871435, + 0.030827058479189873, + -0.018943345174193382, + 0.006683771498501301, + -0.007628324441611767, + 0.06892292201519012, + 0.047665588557720184, + -0.00934747513383627, + -0.008366971276700497, + 0.004873106721788645, + -0.0062360079027712345, + 0.02779403142631054, + -0.0005368261481635273, + -0.005163989961147308, + -0.0033288125414401293, + -0.025427747517824173, + 0.009706993587315083, + 0.0029349764809012413, + 0.012602750211954117, + -0.0077459849417209625, + -0.012458942830562592, + -0.022250913083553314, + 0.0001696476829238236, + -0.013295639306306839, + -0.015949537977576256, + 0.001484647043980658, + 0.013171442784368992, + 0.016511693596839905, + 0.0002153024252038449, + -0.02500939927995205, + -0.03171604871749878, + 0.0018842025892809033, + -0.002928439760580659, + -0.0066510881297290325, + 0.009622016921639442, + -0.046070635318756104, + -0.0057817078195512295, + -0.0018286406993865967, + 0.009818117134273052, + 0.03179448843002319, + -0.001411926350556314, + -0.03736375272274017, + -0.00037953691207803786, + 0.017923621460795403, + 0.017583712935447693, + -0.018237382173538208, + 0.008288530632853508, + -0.012785777449607849, + 0.018041281029582024, + -0.009733140468597412, + 0.01643325388431549, + -0.00497442577034235, + -0.01921788603067398, + -0.04128577187657356, + -0.007013875059783459, + 0.0006932983524166048, + -0.003833772148936987, + 0.0022290132474154234, + 0.027924764901399612, + -0.012609286233782768, + -0.016394034028053284, + -0.046253662556409836, + 0.0036115245893597603, + 0.020316051319241524, + -0.0015974050620570779, + 0.00354615761898458, + -0.005503898020833731, + -0.031245406717061996, + -0.002832023659721017, + 0.009896557778120041, + -0.1636788696050644, + -0.00036666778032667935, + 0.0204729326069355, + -0.04541696235537529, + 0.021701831370592117, + 0.002384259831160307, + -0.0013294005766510963, + -0.00010948965791612864, + -0.018341969698667526, + 0.0013898649485781789, + 0.03835733234882355, + 0.02364976704120636, + -0.0071707554161548615, + -0.0015974050620570779, + -0.0013187783770263195, + 0.014903667382895947, + -0.02944127842783928, + 0.030225683003664017, + 0.02711421437561512, + 0.03025182895362377, + 0.001802493934519589, + -0.0221724733710289, + 0.0077852047979831696, + 0.0016701258718967438, + 0.015452749095857143, + -0.01676008850336075, + -0.007621787488460541, + 0.03195137158036232, + 0.008549998514354229, + -0.0038795291911810637, + -0.011367314495146275, + 0.0025738240219652653, + 0.023440591990947723, + -0.023688986897468567, + -0.0021914273966103792, + -0.012576603330671787, + -0.00024716882035136223, + -0.010497934184968472, + -0.016341740265488625, + 0.023296784609556198, + 0.016394034028053284, + -0.010412956587970257, + -0.010962039232254028, + 0.0018923735478892922, + -0.02962430566549301, + -0.0020606934558600187, + 0.027611004188656807, + -0.0023858940694481134, + -0.021845638751983643, + 0.004569150507450104, + -0.005170526448637247, + -0.012903437949717045, + 0.00733417272567749, + 0.024421095848083496, + -0.003438302082940936, + 0.028447700664401054, + 0.012092887423932552, + 0.02263004146516323, + -0.007379930000752211, + 0.013249882496893406, + 0.005915709771215916, + -0.01387086883187294, + 0.01233474537730217, + 0.006817773915827274, + -0.00024390047474298626, + -0.029519720003008842, + 0.005507166497409344, + 0.010628667660057545, + -0.005494093056768179, + -0.003338617505505681, + -0.015936464071273804, + 0.00013829197268933058, + 0.028552288189530373, + -0.006255618296563625, + 0.002719265641644597, + -0.011190823279321194, + -0.001536123570986092, + -0.00323403044603765, + 0.00430441414937377, + 0.00693543441593647, + -0.004546272102743387, + 0.06379815191030502, + -0.02381972037255764, + -0.02706192247569561, + -0.0032160545233637094, + -0.007621787488460541, + 0.009968461468815804, + -0.005314333830028772, + 0.028787609189748764, + -0.0024055042304098606, + -0.008177407085895538, + -0.03474907577037811, + -0.016184858977794647, + -0.03025182895362377, + 0.0034938640892505646, + 0.0015050742076709867, + 0.011720295995473862, + -0.02489173784852028, + -0.014969034120440483, + -0.020708253607153893, + 0.014485318213701248, + -0.0034284971188753843, + -0.03276192024350166, + -0.003263445571064949, + 0.009648163802921772, + 0.0009478209540247917, + -0.03284035995602608, + 0.010805158875882626, + 0.029232105240225792, + -0.01179873663932085, + -0.007353783119469881, + -0.008687268942594528, + 0.02928439900279045, + -0.012478552758693695, + 0.0008710147230885923, + 0.006438645534217358, + 0.004768519662320614, + -0.025048619136214256, + 0.008053209632635117, + -0.006291570141911507, + 0.025610774755477905, + 0.013883942738175392, + -0.015949537977576256, + 0.003297763178125024, + 0.004095240030437708, + -0.012942657805979252, + -0.09825961291790009, + 0.01625022664666176, + 0.017139216884970665, + 0.0258722435683012, + 0.02949357219040394, + -0.0023679181467741728, + -0.00974621344357729, + 0.035559628158807755, + 0.002055790973827243, + 0.022551601752638817, + -0.04907751455903053, + -0.025493115186691284, + -0.008491167798638344, + 0.007902865298092365, + 0.020224537700414658, + -0.012236694805324078, + -0.018211234360933304, + -0.014563758857548237, + -0.005510434973984957, + 0.03278806805610657, + 0.01336100697517395, + -0.003925285767763853, + -0.00025533969164825976, + -0.023061463609337807, + 0.0113738514482975, + -0.02096972055733204, + -0.02483944408595562, + 0.014328437857329845, + 0.0173483919352293, + 0.01313222199678421, + 0.022486234083771706, + -0.025048619136214256, + 0.02665664628148079, + -0.02115274779498577, + -0.002516628010198474, + -0.01204713061451912, + -0.011903323233127594, + -0.027218801900744438, + 0.008549998514354229, + -0.035272013396024704, + -0.02001536265015602, + -0.003408886957913637, + 0.02263004146516323, + -0.030722470954060555, + -0.004020067863166332, + -0.009988071396946907, + -0.008085893467068672, + -0.005128038115799427, + -0.006164104212075472, + -0.026081416755914688, + -0.029075223952531815, + -0.02512705884873867, + -0.003951432649046183, + 0.023832794278860092, + 0.00220940331928432, + 0.0038566505536437035, + 0.006830847356468439, + -0.0006642917287535965, + -0.009556649252772331, + -0.010609057731926441, + -0.01740068569779396, + 0.014119263738393784, + -0.03383393958210945, + 0.01818508841097355, + 0.010327979922294617, + 0.01315836887806654, + -0.03148072957992554, + -0.0036180613096803427, + -0.003928554244339466, + -0.021924078464508057, + -0.0301210954785347, + 0.02079976722598076, + 0.0035200107377022505, + -0.006837383843958378, + -0.029885774478316307, + -0.006876604165881872, + -0.03908944129943848, + -0.009510892443358898, + 0.020224537700414658, + -0.0340954065322876, + -0.02001536265015602, + -0.02711421437561512, + 0.027924764901399612, + 0.007308026310056448, + 0.03989999368786812, + 0.00013022324128542095, + -0.007131535559892654, + -0.02779403142631054, + 0.021623389795422554, + -0.021453436464071274, + 0.01341330073773861, + -0.004712957888841629, + 0.007798278238624334, + -0.01682545617222786, + -0.01159609854221344, + 0.020224537700414658, + 0.011713759042322636, + 0.016616281121969223, + 0.0037422585301101208, + -0.008961810730397701, + -0.03911558911204338, + -0.001706077717244625, + -0.04003072530031204, + 0.025480041280388832, + 0.01384472195059061, + -0.004641054198145866, + -0.02342751808464527, + -0.007602177560329437, + 0.006850457284599543, + 0.017766740173101425, + -0.01389701571315527, + -0.014341510832309723, + -0.001357998582534492, + 0.024774078279733658, + -0.004252120852470398, + -0.011955616995692253, + -0.01984540931880474, + -0.028918342664837837, + -0.005605217069387436, + 0.007876718416810036, + 0.01608027145266533, + 0.004075630102306604, + -0.012818461284041405, + 0.013635547831654549, + -0.014511465094983578, + 0.00015187604003585875, + -0.021178895607590675, + -0.003555962583050132, + -0.004863301757723093, + 0.0013432910200208426, + -0.00844541098922491, + -0.0036082561127841473, + 0.013289103284478188, + 0.0038893341552466154, + -0.012465479783713818, + 0.012563529424369335, + -0.011929470114409924, + -0.013530961237847805, + 0.017636006698012352, + 0.025310087949037552, + 0.02938898466527462, + 0.047953203320503235, + -0.03142843395471573, + -0.02665664628148079, + 0.005873221438378096, + -0.030042655766010284, + 0.0018547874642536044, + 0.0019495695596560836, + 0.0015769778983667493, + -0.015570409595966339, + 0.010824768804013729, + -0.01154380477964878, + 0.044083479791879654, + -0.003363130148500204, + 0.025166280567646027, + -0.008419264107942581, + 0.007379930000752211, + -0.03610870987176895, + -0.0023368687834590673, + 0.01852499693632126, + 0.011380387470126152, + -0.03263118490576744, + 0.03247430548071861, + -0.007654470857232809, + 0.030487149953842163, + 0.0045854924246668816, + 0.006987728178501129, + -0.023113757371902466, + -0.022303206846117973, + -0.0009388329926878214, + 0.003052636981010437, + -0.022473160177469254, + -0.004020067863166332, + -0.009465135633945465, + 0.0002786266559269279, + 0.030957791954278946, + -0.012158255092799664, + -0.0054091159254312515, + 0.015949537977576256, + 0.010105731897056103, + 0.0025395064149051905, + 0.02978118695318699, + 0.009105617180466652, + 0.011092773638665676, + 0.0028761462308466434, + 0.004523393698036671, + 0.023100683465600014, + -0.004186753649264574, + -0.00870034284889698, + -0.0023532104678452015, + -0.001611295621842146, + -0.0014127434697002172, + 0.020538298413157463, + 0.019518574699759483, + 0.004190022125840187, + 0.0017044434789568186, + 0.010288759134709835, + 0.023976601660251617, + 0.007752521429210901, + -0.02615985833108425, + 0.00798784289509058, + 0.03456604853272438, + -0.02052522636950016, + 0.01643325388431549, + -0.007406076416373253, + -0.015152061358094215, + 0.00024819019017741084, + 0.014367657713592052, + 0.009791970252990723, + -0.04792705550789833, + -0.0005331492866389453, + -0.0008718318422324955, + -0.017871327698230743, + 0.02313990332186222, + 0.017701372504234314, + 0.0021571097895503044, + -0.021231189370155334, + 0.02740182913839817, + -0.021558023989200592, + -0.006598794832825661, + -0.02734953537583351, + 0.014393804594874382, + 0.005428725853562355, + 0.005853611510246992, + -0.0054123844020068645, + 0.01575343683362007, + 0.018498849123716354, + 0.010354126803576946, + 0.011354240588843822, + 0.002358113182708621, + 0.008765709586441517, + -0.003683428280055523, + 0.013243346475064754, + -0.0024986520875245333, + -0.023780500516295433, + -0.022237839177250862, + -0.007791741751134396, + -0.013478667475283146, + 0.0301210954785347, + 0.028630727902054787, + 0.021231189370155334, + 0.10950273275375366, + 0.018381189554929733, + -0.003268348053097725, + 0.0034154236782342196, + -0.017832105979323387, + 0.01784517988562584, + 0.002021473366767168, + 0.009471672587096691, + 0.016838528215885162, + -0.0636412724852562, + -0.00622293446213007, + -0.01532201562076807, + 0.004954815376549959, + -0.03553348034620285, + -0.01825045607984066, + 0.011105846613645554, + -0.0015026229666545987, + 0.01500825397670269, + -0.005167258437722921, + 0.011851029470562935, + 0.027088068425655365, + -0.03741604834794998, + 0.027715591713786125, + 0.01903485879302025, + -0.042044028639793396, + -0.015478895977139473, + 0.015400456264615059, + -0.013766282238066196, + -0.02040756493806839, + 0.01023646630346775, + -0.02449953742325306, + -0.004020067863166332, + -0.07085778564214706, + -0.026408251374959946, + 0.009981534443795681, + -0.010903209447860718, + -0.014328437857329845, + -0.010131878778338432, + 0.012792314402759075, + -0.008641512133181095, + -0.001366169424727559, + 0.023675912991166115, + -0.02512705884873867, + -0.008281993679702282, + 0.003165394999086857, + -0.013687841594219208, + -0.006164104212075472, + -0.012994951568543911, + -0.027924764901399612 + ], + "metadata": { + "source": "Kreye_Marieke_BA_241_V2.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 17, + "has_images": true, + "image_count": 98, + "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", + "links": [], + "last_modified": "2025-05-05T23:00:23", + "_known_field_names": "frozenset({'is_continuation', 'sent_to', 'header_footer_type', 'email_message_id', 'filename', 'languages', 'detection_class_prob', 'sent_from', 'link_texts', 'cc_recipient', 'subject', 'image_mime_type', 'image_path', 'filetype', 'page_number', 'last_modified', 'signature', 'detection_origin', 'text_as_html', 'attached_to_filename', 'bcc_recipient', 'data_source', 'link_start_indexes', 'category_depth', 'emphasized_text_tags', 'parent_id', 'orig_elements', 'page_name', 'coordinates', 'url', 'link_urls', 'file_directory', 'links', 'table_as_cells', 'emphasized_text_contents', 'key_value_pairs', 'image_base64'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "Kreye_Marieke_BA_241_V2.pdf", + "detection_class_prob": 0.3422867953777313, + "parent_id": "e02392183bc6851689602ad4b9f6039f", + "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", + "id": "ce00eae5-7e07-454f-9e4f-f79ac36f92f4", + "processing_timestamp": "2025-05-05T23:15:46.977945", + "chunk_number": 33, + "total_chunks": 56, + "chunking_strategy": "hybrid", + "word_count": 781 + } +} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000034.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000034.json new file mode 100644 index 0000000000000000000000000000000000000000..5ff39655d898b76dbc11446ace3111dfb35d7568 --- /dev/null +++ b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000034.json @@ -0,0 +1,1570 @@ +{ + "id": "61a115b2-0ff7-441a-f6d9-eb3d00000034", + "content": "Im Vergleich zum Status Quo weisen mehr Geb\u00e4ude einen spezifischen Heizbedarf in dem Intervall von 90-120 kWh/(m2*a) bzw. 120-150 kWh/(m2*a) auf und die Anzahl der Geb\u00e4ude mit einem geringen spezifischen Heizbedarf (60-90 kWh/(m2*a)) hat sich leicht reduziert. Mit einer Zunahme der B\u00e4ume steigt die Anzahl der Geb\u00e4ude mit einem spezifischen K\u00fchlbedarf von 10-20 kWh/(m2*a). [IMAGE: spezifischer Heizbedarf spezifischer K\u00fchlbedarf Gebietsausschnitt | Gromb\u00fchl Gebietsausschnitt | Gromb\u00fchl 25 25 o o E1 E1 220 Z 20 3 3 Pi] Pi] \u00a9 15 \u00a9 15 E E 5 5 3 3 o 10 o 10 5 5 zZ zZ 8 5 | 85 \u00a9 < I ILL o Bu 60-90 90-120 120-150 150-210 10-20 20-30 30-40 sezifischer Heizbedarf [KWh/(m? *a)] sezifischer Heizbedarf [kWh/(m? *a)] wohne B\u00e4ume m Status Quo mSzenarioA =SzenarioB wohne B\u00e4ume m Status Quo m Szenario A = Szenario B]\n\n- Abbildung 23: Spezifischer Heiz- und K\u00fchlbedarf im Status Quo, in Szenario A und in Szenario B des Gebietsausschnitts I (eigene Darstellung und Berechnung auf Grundlage der Simulationsergebnisse\nDer h\u00f6chste Heizbedarf liegt f\u00fcr beide Szenarien des Gebietsausschnitts II im Januar mit etwa 2.600 MWh. Der H\u00f6chstwert des K\u00fchlbedarfs liegt im Juli mit 726 MWh (Szenario C) bzw. 714 MWh (Szenario D). Auf das Jahr gesehen nimmt der Heizbedarf in Szenario D, verglichen mit dem Stauts Quo um 260 MWh zu, w\u00e4hrend der K\u00fchlbedarf um 300 MWh abnimmt. Die Betrachtung des Energiebedarfs je Quadratmeter Nutzfl\u00e4che zeigt in Gebietsausschnitt II ein \u00e4hnliches Bild wie in Gebietsausschnitt I, jedoch ist die Ver\u00e4nderung etwas weniger deutlich zu erkennen. Der spezifische Heizbedarf verschiebt sich um bis zu drei Geb\u00e4ude hin zu einem h\u00f6heren Bedarf. In Szenario D nimmt die Anzahl der Geb\u00e4ude in dem kleinsten Intervall des spezifischen K\u00fchlbedarfs von 10-20 kWh/(m2*a) um acht Geb\u00e4ude zu. In dem einzelnstehenden Block im Nordosten ist keine \u00c4nderung des Geb\u00e4udeenergiebedarfs mit einer Erh\u00f6hung der Baumanzahl zu erkennen. (vgl. Anhang 6.1)\nWie bereits in den anderen Baumpflanzungsszenarien in dem Fallstudiengebiet Gromb\u00fchl liegt auch im Gebietsausschnitt III der h\u00f6chste Heizbedarf mit 7.800 MWh im Januar und der h\u00f6chste K\u00fchlbedarf im Juli mit etwa 2.300 MWh. Pro Jahr nimmt der Heizbedarf in Szenario E um 48,5 MWh zu, w\u00e4hrend sich der K\u00fchlbedarf um 137 MWh reduziert. Auf den spezifischen Energiebedarf haben die zus\u00e4tzlichen B\u00e4ume eine geringe Auswirkung. Es ist eine Umverteilung von maximal zehn Geb\u00e4uden zu geringeren bzw. niedrigeren Intervallen beobachten. (vgl. Anhang 6.2)\nDer Effekt der Verschattung auf die 37 Wohngeb\u00e4ude zeigt auch in dem Gebietsausschnitt IV eine geringe Auswirkung auf den thermischen Geb\u00e4udeenergiebedarf. Der H\u00f6chstwert des Heizbedarfs liegt mit etwa 121 MWh pro Monat sowohl f\u00fcr den Status Quo als auch f\u00fcr die beiden Szenarien im Januar. Der 41\nErgebnisse\nK\u00fchlbedarf erreicht im Juli mit knapp \u00fcber 80 MWh pro Monat den H\u00f6hepunkt. Im Vergleich zum Status Quo steigt der j\u00e4hrliche Heizbedarf in Szenario G um 5 MWh an, w\u00e4hrend der K\u00fchlbedarf um 6 MWh sinkt. Der j\u00e4hrliche Geb\u00e4udeenergiebedarf pro Quadratmeter Nutzfl\u00e4che im Gebietsausschnitt IV weist ebenso eine Verschiebung hinzu einem geringeren spezifischen K\u00fchlbedarf auf.", + "embedding": [ + 0.019629690796136856, + -0.0017689547967165709, + 0.022746965289115906, + -0.02519904635846615, + 0.015625495463609695, + 0.005611743777990341, + -0.026046840474009514, + -0.02334694191813469, + -0.015755925327539444, + -0.02628161385655403, + 0.010199613869190216, + 0.021273108199238777, + -0.00945616327226162, + -0.0072518992237746716, + 0.003052058396860957, + 0.01569071039557457, + 0.03610298037528992, + 0.009488770738244057, + 0.03203357011079788, + 0.010969149880111217, + -0.025785980746150017, + 0.03159010782837868, + 0.00835403148084879, + 0.008027956821024418, + 0.0010255046654492617, + 0.006886695511639118, + 0.009645286947488785, + -0.0236208438873291, + -0.01883406937122345, + -0.002631422132253647, + 0.02605988271534443, + -0.01805149018764496, + -0.02689463272690773, + 0.00501176668331027, + -0.02958148904144764, + 0.0030210812110453844, + -0.01082567684352398, + -0.012143018655478954, + 0.018716681748628616, + -0.015508107841014862, + 0.018742768093943596, + 0.005465010181069374, + 0.0001168773669633083, + 0.005885646678507328, + 0.01576896756887436, + 0.013023420237004757, + 0.005275886971503496, + -0.012827775441110134, + -0.030755357816815376, + 0.02864239364862442, + 0.009045309387147427, + 0.03057275526225567, + -0.00262653105892241, + 0.002574359066784382, + -0.029816262423992157, + -0.0020265537314116955, + -0.030024949461221695, + -0.006218242924660444, + -0.008334467187523842, + -0.0024145825300365686, + -0.015729838982224464, + -0.012658216059207916, + -0.005634569097310305, + 0.004027021583169699, + -0.042520128190517426, + -0.015312463976442814, + -0.013199499808251858, + 0.0003709098673425615, + 0.007838833145797253, + -0.012606044299900532, + 0.01617330126464367, + 0.04844164475798607, + 0.004953073337674141, + -0.01261256542056799, + 0.016160257160663605, + -0.010688725858926773, + 0.022851308807730675, + 0.008262730203568935, + -0.01215606089681387, + -0.004372660536319017, + 0.025812065228819847, + -0.03521605581045151, + -0.030937958508729935, + 0.04325053468346596, + 0.012690823525190353, + 0.028851080685853958, + -0.01036917231976986, + 0.021586138755083084, + -0.018116705119609833, + 0.028016330674290657, + 0.02101224847137928, + 0.00034645426785573363, + 0.0268685482442379, + 0.004219405353069305, + 0.0008261915063485503, + -0.005269365850836039, + -0.000494818203151226, + 0.003978110384196043, + 0.002122745616361499, + -0.007577973883599043, + -0.014438583515584469, + 0.002924889326095581, + -0.03195531293749809, + -0.010382215492427349, + -0.030624927952885628, + 0.014269025065004826, + 0.010780026204884052, + 0.01644720323383808, + 0.014934216625988483, + -0.014882044866681099, + -0.019512305036187172, + 0.052354540675878525, + -0.013251671567559242, + -0.014255981892347336, + 0.015442893840372562, + -0.030207552015781403, + 0.03743336349725723, + -0.007591017056256533, + -0.01274951733648777, + -0.0029167374595999718, + 0.023542586714029312, + -0.01050612423568964, + -0.002602075459435582, + 0.004835686646401882, + 0.029868433251976967, + 0.006404105108231306, + -0.010649596340954304, + -0.016368946060538292, + -0.026477258652448654, + -0.028485877439379692, + -0.019447090104222298, + -0.002668920671567321, + 0.017477598041296005, + 0.030181465670466423, + -0.01524724904447794, + 0.02778155729174614, + -0.007499715778976679, + 0.001687436131760478, + -0.017908018082380295, + -0.037146419286727905, + -0.009130088612437248, + 0.009182261303067207, + -0.032633546739816666, + -0.015495065599679947, + -0.001698848675005138, + 0.020242711529135704, + -0.00739537226036191, + 0.017621072009205818, + -0.0029265196062624454, + -0.010832198895514011, + -0.01092349924147129, + 0.005843257065862417, + 0.033520471304655075, + 0.009104003198444843, + 0.012729953043162823, + 0.01329732220619917, + -0.012697345577180386, + -0.0031678148079663515, + -0.041633207350969315, + -0.0010882739443331957, + 0.02096007578074932, + -0.005996512249112129, + 7.418197492370382e-05, + 0.012658216059207916, + -0.004698735196143389, + 0.0012252252781763673, + 0.011282181367278099, + -0.008517068810760975, + 0.010003969073295593, + -0.025212088599801064, + 0.010212657041847706, + 0.02560337819159031, + -0.0405636802315712, + 0.01888624206185341, + 0.003792247734963894, + 0.018690597265958786, + -0.012371270917356014, + 0.014895088039338589, + 0.010956106707453728, + -0.03250311687588692, + -0.02960757352411747, + 0.011210445314645767, + -0.002271109726279974, + 0.006012815982103348, + -0.03952024132013321, + -0.011308267712593079, + 0.019655777141451836, + 0.012860382907092571, + -0.0015512999380007386, + 0.004962855484336615, + 0.009586593136191368, + -0.002543381880968809, + 0.00412484398111701, + -0.0028303274884819984, + -0.6327412724494934, + 0.02775547094643116, + -0.01059742458164692, + -0.004353095777332783, + 0.00922791101038456, + 0.02587728016078472, + 0.03865940496325493, + 0.022590449079871178, + -0.018599295988678932, + 0.005719348788261414, + 0.022746965289115906, + -0.009175739251077175, + -0.006332369055598974, + 0.009736588224768639, + -0.020138368010520935, + -0.02856413647532463, + -0.0004094274190720171, + 0.002289043739438057, + 0.012084324844181538, + -0.009749630466103554, + -0.005973686929792166, + 0.014673356898128986, + -0.014242938719689846, + 0.021729612722992897, + 0.007845355197787285, + -0.00405636802315712, + -0.004591130651533604, + -0.030155379325151443, + -0.001928731333464384, + 0.023033909499645233, + -0.009743109345436096, + 0.022133944556117058, + 0.005272626411169767, + 0.019994894042611122, + 0.0482068695127964, + -0.00279119866900146, + 0.0031727058812975883, + 0.0016670564655214548, + 0.008151865564286709, + 0.012547350488603115, + -0.029216283932328224, + -0.0017396080074831843, + 0.014503798447549343, + -0.001496682409197092, + 0.0045943912118673325, + 0.01660371944308281, + 0.020190538838505745, + -0.01929057389497757, + -0.010519166477024555, + -0.013812520541250706, + 0.020334012806415558, + 0.0171645674854517, + 0.0029216285329312086, + 0.007271463517099619, + 0.006361715495586395, + -0.0036618178710341454, + 0.01805149018764496, + -0.018077576532959938, + -0.010434387251734734, + 0.008054043166339397, + 0.004043325316160917, + -6.603010842809454e-05, + 0.0055269645527005196, + -0.019577519968152046, + -0.024364294484257698, + 0.02184699848294258, + -0.03323352336883545, + -0.010069184005260468, + 0.019629690796136856, + -0.0004744385660160333, + -0.010212657041847706, + 0.007917091250419617, + -0.009638765826821327, + 0.003971588797867298, + 0.012742995284497738, + 0.004943291191011667, + 0.038137685507535934, + -0.026229441165924072, + -0.009625722654163837, + 0.00736928591504693, + -0.004809600301086903, + -0.02501644380390644, + -0.018038447946310043, + -0.0060910736210644245, + 0.0035085626877844334, + -0.04306793585419655, + 0.0007108426652848721, + 0.0006228024722076952, + -0.004529176279902458, + 0.030651012435555458, + 0.027077235281467438, + 0.019760120660066605, + 0.010675682686269283, + -0.019864464178681374, + -0.008490982465445995, + 0.042572300881147385, + -0.013903820887207985, + 0.028172846883535385, + 0.0038770269602537155, + -0.06344107538461685, + -0.020855732262134552, + -0.01736021228134632, + 0.016381988301873207, + 0.00076749810250476, + 0.028355447575449944, + 0.014960302971303463, + -0.0027683733496814966, + -0.016538504511117935, + 0.02111659198999405, + -0.023229554295539856, + -0.004092236515134573, + -0.01908188685774803, + -0.006828002166002989, + -0.014008165337145329, + 0.012801689095795155, + -0.019381875172257423, + 0.042728815227746964, + 0.007454065605998039, + 0.010375694371759892, + 0.021807869896292686, + 0.029946692287921906, + -0.0008526850724592805, + 0.03385958820581436, + -0.039024610072374344, + -0.006316065322607756, + 0.04186797887086868, + 0.011223487555980682, + 0.008380117826163769, + -0.006658443249762058, + -0.025994667783379555, + -0.0025955538731068373, + 0.019199272617697716, + 0.025838151574134827, + -0.004278098698705435, + 0.03219008445739746, + -0.0008045890717767179, + 0.020086195319890976, + 0.0025564248207956553, + 0.02141658030450344, + -0.026581602171063423, + -0.020034024491906166, + 0.001129033276811242, + 0.00597042590379715, + -0.013903820887207985, + -0.003254224546253681, + 0.004190058913081884, + -0.022316545248031616, + 0.008621412329375744, + -0.009619200602173805, + 0.000951322668697685, + -0.012579957954585552, + -0.0035411701537668705, + -0.007617102935910225, + -0.0011632711393758655, + 0.0033015054650604725, + 0.003146620001643896, + 0.007512758951634169, + -0.01794714666903019, + -0.018103662878274918, + -0.02788590081036091, + 0.014973346143960953, + 0.016642848029732704, + -0.02022966928780079, + 7.963352982187644e-05, + -0.01486900169402361, + -0.01475161500275135, + 0.007988828234374523, + 0.004486786667257547, + -0.01867755316197872, + -0.037250764667987823, + -0.006788873113691807, + -0.002411321736872196, + 0.006058466155081987, + 0.0015121710021048784, + -0.020386183634400368, + -0.016003740951418877, + -0.01835147850215435, + -0.008836621418595314, + -0.012143018655478954, + -0.015534194186329842, + 0.018651466816663742, + 0.006296500563621521, + -0.008856186643242836, + -0.001451847143471241, + 0.03847680240869522, + 0.022173073142766953, + 0.030729271471500397, + 0.022107858210802078, + 0.0027243534568697214, + -0.003730293596163392, + 0.014634228311479092, + 0.02965974621474743, + -0.013786434195935726, + 0.015782011672854424, + 0.0009708871366456151, + -0.010375694371759892, + 0.01625155843794346, + 0.024520810693502426, + -0.011106100864708424, + 0.005109589081257582, + 0.03505954146385193, + 0.01162129919975996, + 0.011706078425049782, + -0.009873539209365845, + 0.01647328957915306, + -0.05436315760016441, + 0.03678121417760849, + -0.005363927222788334, + 0.029764089733362198, + 0.01184955146163702, + 0.01850799471139908, + -0.009521378204226494, + -0.015312463976442814, + 0.0022221985273063183, + 0.0004895195015706122, + 0.02963365986943245, + -0.011549562215805054, + 0.004020499996840954, + -0.0004167641163803637, + -0.012410399504005909, + 0.02316433936357498, + 0.005063938442617655, + 0.01802540384232998, + 0.004203101620078087, + 0.0009839300764724612, + 0.008830100297927856, + 0.009110524319112301, + 0.019864464178681374, + -0.0010825677309185266, + -0.005497617647051811, + -0.008947486989200115, + 0.005399795714765787, + -0.015351592563092709, + 0.0200209803879261, + 0.015064646489918232, + 0.039937619119882584, + 0.03307700902223587, + -0.022577404975891113, + 0.02321651205420494, + 0.012599523179233074, + 0.018990585580468178, + 0.030807528644800186, + 0.0015260291984304786, + -0.02702506259083748, + 0.013825563713908195, + 0.013616875745356083, + 0.014699443243443966, + 0.006384540814906359, + -0.019251445308327675, + 0.02585119567811489, + -0.008849664591252804, + 0.014947259798645973, + 0.004248752258718014, + 0.01647328957915306, + 0.008614891208708286, + -0.016029827296733856, + 0.010995235294103622, + 0.007584495469927788, + 0.01524724904447794, + 0.031016215682029724, + 0.008823579177260399, + -0.004431353881955147, + 0.012456050142645836, + -0.012436485849320889, + 0.010290914215147495, + -0.012188668362796307, + -0.02448168210685253, + -0.04043325036764145, + 0.004907422699034214, + -7.392722909571603e-05, + 0.01660371944308281, + 0.0005592179368250072, + -0.01921231672167778, + -0.0019319920102134347, + 0.0007393741980195045, + 0.0043661389499902725, + 0.0002071592753054574, + 0.009156174957752228, + 0.008177950978279114, + 0.0037368149496614933, + 0.006528013851493597, + -0.008164907805621624, + -0.017177609726786613, + 0.013942950405180454, + -0.0025890322867780924, + -0.02088181860744953, + -0.005409577861428261, + 0.014464669860899448, + -0.0001344038755632937, + 0.017373254522681236, + -0.01916014403104782, + -0.03226834163069725, + -0.018625382333993912, + -0.0007014679722487926, + 0.015325506217777729, + -0.0014029359444975853, + 0.001922209863550961, + -0.01272343099117279, + -0.00334878615103662, + 0.01338210143148899, + 0.003293353598564863, + 0.0027618519961833954, + -0.009984404779970646, + -0.022107858210802078, + 0.03868549317121506, + 0.017399340867996216, + -0.008412725292146206, + -0.012501700781285763, + -0.0032069438602775335, + -0.013056027702987194, + -0.015677666291594505, + -0.008654019795358181, + -0.008947486989200115, + 0.0369638167321682, + -0.010930020362138748, + -0.006335629615932703, + 0.0010230591287836432, + -0.01867755316197872, + 0.05258931219577789, + 0.001966229872778058, + -0.007493194658309221, + -0.016747191548347473, + -0.012227797880768776, + 0.008843143470585346, + 0.01741238310933113, + 0.028903253376483917, + 0.012697345577180386, + 0.01293864008039236, + 0.0236208438873291, + 0.005553050432354212, + -0.01239735633134842, + -0.026503343135118484, + 0.007427979726344347, + 0.0010515906615182757, + -0.006606271490454674, + -0.01248213555663824, + 0.002569467993453145, + -0.02402517758309841, + 0.022107858210802078, + -0.010310479439795017, + 0.002784677082672715, + -0.03159010782837868, + 6.913800461916253e-05, + 0.0035868205595761538, + -0.02273392118513584, + 0.009182261303067207, + 0.0018618860049173236, + 0.06318021565675735, + 0.0013165262062102556, + 0.017608027905225754, + 0.031094474717974663, + 0.02517296001315117, + 0.022473061457276344, + -0.007427979726344347, + -0.007284506689757109, + 0.0014159790007397532, + 0.015351592563092709, + 0.014242938719689846, + -0.019251445308327675, + -0.013955993577837944, + 0.019277531653642654, + -0.041502777487039566, + 0.028042417019605637, + 0.012925597839057446, + 0.033572640269994736, + 0.006886695511639118, + -0.001584722544066608, + 0.003590081352740526, + 0.011901723220944405, + 0.0005017473013140261, + -0.005849778652191162, + 0.0462765097618103, + 0.0024634937290102243, + -0.010225699283182621, + 0.03297266364097595, + -0.01351253129541874, + -0.025342518463730812, + 0.01081263367086649, + -0.028094587847590446, + 0.003645514138042927, + -7.693322550039738e-05, + -0.022199159488081932, + 0.007101905066519976, + -0.023073039948940277, + -0.029085854068398476, + -0.029868433251976967, + 0.018716681748628616, + -0.009097481146454811, + -0.02189917117357254, + 0.000614650605712086, + -0.004744385369122028, + -0.013264714740216732, + -0.012110411189496517, + -0.008230122737586498, + 0.02184699848294258, + -0.016003740951418877, + -0.0304684117436409, + 0.01297776959836483, + 0.018821027129888535, + 0.01574288122355938, + 0.0033080268185585737, + 0.0016181452665477991, + -0.005057417321950197, + -0.020294884219765663, + -0.013108199462294579, + -0.028981510549783707, + 0.0028547830879688263, + -0.018547123298048973, + -0.028955424204468727, + 0.023581715300679207, + -0.01430815365165472, + -0.02453385293483734, + -0.013153850100934505, + 0.007134512532502413, + -0.0004045363166369498, + 0.012090845964848995, + 0.009860496036708355, + -0.004186797887086868, + -0.011771293357014656, + -0.004310706164687872, + 0.0017347169341519475, + 0.006107377354055643, + 0.02778155729174614, + -0.027364181354641914, + 0.027051148936152458, + 0.015273334458470345, + 0.0027129407972097397, + -0.0125343082472682, + -0.002732505090534687, + 0.006329108029603958, + -0.017960188910365105, + -0.016368946060538292, + -0.0241034347563982, + 0.00468243146315217, + 0.015755925327539444, + -0.02189917117357254, + 0.009390948340296745, + -0.0107343764975667, + -0.003844419727101922, + 0.002515665488317609, + 0.0009301278041675687, + -0.010727854445576668, + 0.028485877439379692, + 0.019486218690872192, + 0.01320602186024189, + -0.038033343851566315, + 0.04739820584654808, + 0.014269025065004826, + 0.003563995473086834, + 1.2208692169224378e-05, + -0.013760348781943321, + 0.019251445308327675, + -0.014347282238304615, + -0.010225699283182621, + -0.009743109345436096, + 0.008119258098304272, + 0.017021095380187035, + -0.025003401562571526, + -0.03281614929437637, + -0.025003401562571526, + 0.005409577861428261, + 0.012332141399383545, + -0.02015141025185585, + 0.010740897618234158, + -0.03923329710960388, + 0.02022966928780079, + -0.01972099207341671, + -0.001199139398522675, + 0.01878189668059349, + -0.016564590856432915, + -0.014464669860899448, + -0.005579136312007904, + 0.013056027702987194, + -0.010682203806936741, + -0.02501644380390644, + -0.020542699843645096, + -0.00037050226819701493, + -0.002937932265922427, + -0.006104116793721914, + -0.04685039818286896, + 0.014621185138821602, + -0.007180162705481052, + 0.02071225829422474, + 0.01477770134806633, + 0.016773277893662453, + -0.006475841626524925, + 0.017764544114470482, + 0.010858284309506416, + -0.014986389316618443, + -0.005989990662783384, + 0.012390835210680962, + -0.006841045338660479, + -0.025864237919449806, + 0.01606895588338375, + 0.003492258954793215, + 0.013525574468076229, + 0.012703866697847843, + 0.018534081056714058, + 0.02963365986943245, + 0.03435521945357323, + -0.02109050564467907, + -0.02235567569732666, + -0.019734034314751625, + -0.006661704275757074, + 0.009560507722198963, + 0.014516841620206833, + -0.007969263009727001, + 0.0027308748103678226, + -0.023073039948940277, + -0.013603832572698593, + 0.041815806180238724, + -0.0028694565407931805, + -0.007141034118831158, + -0.009723545052111149, + -0.005836735479533672, + -0.033676985651254654, + 0.04012021794915199, + -0.004535697866231203, + 0.004757428541779518, + -0.004522654693573713, + -0.012358227744698524, + -0.010167006403207779, + -0.015325506217777729, + 0.008621412329375744, + 0.022146986797451973, + 0.012756038457155228, + 0.00466938829049468, + -0.00960615836083889, + 0.019577519968152046, + 0.004630259238183498, + -0.001661350135691464, + -0.019577519968152046, + 0.0031808577477931976, + -0.024925142526626587, + -0.019499260932207108, + -0.019421003758907318, + -0.0031596629414707422, + -0.005898689851164818, + 0.01708631031215191, + -0.0125343082472682, + 0.00449982937425375, + 0.02684246189892292, + 0.007832312025129795, + 0.029868433251976967, + 0.02253827638924122, + -0.001808083732612431, + 0.012456050142645836, + 0.018181920051574707, + 0.04463309049606323, + 0.01571679674088955, + -0.01475161500275135, + -0.01966881938278675, + -0.05968469753861427, + 0.0030602102633565664, + -0.015142904594540596, + 0.01317993551492691, + 0.0010434387950226665, + 0.009156174957752228, + -0.0002798127825371921, + 0.008164907805621624, + 0.010519166477024555, + -0.004851990379393101, + -0.006006294395774603, + 0.04098105803132057, + -0.0048911189660429955, + 0.008347510360181332, + -0.02088181860744953, + -0.0016222211997956038, + -0.004851990379393101, + 0.019760120660066605, + 0.0015072798123583198, + -0.0034955197479575872, + 0.0016409704694524407, + -0.007760575506836176, + 0.0025042530614882708, + 0.055093564093112946, + -0.0010393628617748618, + 0.00989962462335825, + -0.010030054487287998, + -0.007421458140015602, + 0.008980094455182552, + -0.0338074155151844, + 0.002093398943543434, + 0.025433819741010666, + 0.00029326335061341524, + 0.02785981446504593, + -0.002505883341655135, + -0.01297776959836483, + 0.010427866131067276, + -0.012716909870505333, + -0.016395030543208122, + -0.008040999993681908, + 0.0011078384704887867, + 0.012403878383338451, + -0.0023950180038809776, + -0.004245491232722998, + -0.002662399085238576, + 0.0023298030719161034, + 0.016408074647188187, + 0.0033650898840278387, + -0.002390126930549741, + -0.0005469901370815933, + 0.002771634142845869, + -0.0031531413551419973, + -0.006717137061059475, + -0.004075932782143354, + 0.00489764055237174, + -0.008732277899980545, + -0.016799364238977432, + -0.012540829367935658, + -0.009110524319112301, + -0.0044020069763064384, + 0.02063400112092495, + -0.02058182843029499, + 0.012573436833918095, + 0.003099339082837105, + -0.00043734756764024496, + 0.02504253014922142, + -0.009260518476366997, + -0.018416693434119225, + -0.027468524873256683, + 0.015338549390435219, + -0.05843256786465645, + 0.022642619907855988, + 0.05305885896086693, + 0.008973573334515095, + 0.009880060330033302, + 0.0016099934000521898, + -0.001325493329204619, + -0.020412269979715347, + 0.030129292979836464, + -0.0028645654674619436, + -0.02536860480904579, + 0.0007047287654131651, + 0.0015480391448363662, + 0.012045196257531643, + -0.012110411189496517, + -0.0005103067378513515, + -0.005914993584156036, + 0.01432119682431221, + 0.0012341924011707306, + -0.01215606089681387, + -0.016434160992503166, + 0.022473061457276344, + 0.0054552280344069, + -0.007714925333857536, + 0.02877282351255417, + -0.029790176078677177, + 0.007956220768392086, + -0.004773732274770737, + 0.015808096155524254, + -0.010636554099619389, + -0.019577519968152046, + -0.018129747360944748, + 0.013088635168969631, + 0.004829165060073137, + -0.007101905066519976, + 0.008314902894198895, + -0.01229301281273365, + -0.010656118392944336, + -0.014216853305697441, + 0.02428603731095791, + 0.012579957954585552, + -0.002132527995854616, + 0.011751729063689709, + 0.010525688529014587, + -0.02339911460876465, + 0.015260291285812855, + 0.00037050226819701493, + -0.020973118022084236, + 0.00602585868909955, + -0.010434387251734734, + -0.037250764667987823, + -0.011451739817857742, + 0.0015863529406487942, + 0.03834637254476547, + 0.011093057692050934, + -0.030181465670466423, + 0.009521378204226494, + -0.004261794965714216, + -0.0508415512740612, + -0.01921231672167778, + -0.01703413762152195, + 0.00529871229082346, + -0.0021341582760214806, + 0.012273448519408703, + -0.015651581808924675, + 0.030129292979836464, + 0.0067236581817269325, + 0.017047179862856865, + -0.05551094189286232, + -0.012371270917356014, + 0.005187847185879946, + -0.010362651199102402, + 0.017908018082380295, + -0.006342151202261448, + -0.012742995284497738, + -0.012273448519408703, + 0.017021095380187035, + -0.0027504393365234137, + -0.0083409883081913, + 0.024951228871941566, + -0.01293864008039236, + 0.002942823339253664, + 0.007310592569410801, + 0.007180162705481052, + -0.004382442682981491, + 0.02461211197078228, + -0.01320602186024189, + -0.03826811537146568, + -0.00025148503482341766, + 0.02060791477560997, + 0.005158500280231237, + -0.037302933633327484, + -0.014542927034199238, + 0.011914766393601894, + -0.008575762622058392, + -0.02676420286297798, + 0.011014800518751144, + -0.012586480006575584, + -0.0357377752661705, + -0.01711239479482174, + 0.013290801085531712, + 0.012997333891689777, + -0.01184955146163702, + -0.0014746724627912045, + 0.007864919491112232, + -0.02630770020186901, + -0.009019223973155022, + 0.014138595201075077, + -0.03412044793367386, + 0.001300222473219037, + 0.022133944556117058, + -0.010903934948146343, + 0.021860040724277496, + -0.015508107841014862, + 0.020399227738380432, + 0.011340875178575516, + -0.006247589364647865, + -0.020373141393065453, + -0.018964499235153198, + -0.015103776007890701, + 0.010571339167654514, + 0.007780140265822411, + -0.031720537692308426, + 0.013629918918013573, + 0.007864919491112232, + -0.0014029359444975853, + -0.004685692023485899, + 0.007010604254901409, + -0.003043906530365348, + -0.03132924810051918, + -0.010056140832602978, + 0.011908244341611862, + -0.017242824658751488, + -0.011001757346093655, + 0.0037009466905146837, + -0.0015700492076575756, + -0.0184819083660841, + 0.00858228374272585, + 0.1783236861228943, + -0.019473176449537277, + 0.009332255460321903, + 0.039885446429252625, + -0.0013621767284348607, + -0.02184699848294258, + 0.010590903460979462, + 0.008777928538620472, + 0.005484574940055609, + 0.05467619001865387, + -0.025590335950255394, + -0.003658557077869773, + -0.0021080723963677883, + 0.005592179484665394, + 0.00866706296801567, + -0.024507766589522362, + -0.03049449808895588, + 0.0023884964175522327, + -0.009071395732462406, + 0.04291141778230667, + 0.029972778633236885, + -0.015847226604819298, + 0.002637943485751748, + -0.002593923592939973, + 0.022446975111961365, + 0.005050895735621452, + -0.012129975482821465, + 0.002365671331062913, + 0.018260177224874496, + 0.013955993577837944, + -0.00401071785017848, + -0.004242230672389269, + -0.010219178162515163, + -0.014673356898128986, + -0.01756889931857586, + -0.001332014799118042, + 0.0030928177293390036, + -0.025107745081186295, + 0.032659631222486496, + 0.02958148904144764, + -0.007004082668572664, + -0.004878076259046793, + -0.008314902894198895, + -0.010519166477024555, + -0.009553985670208931, + 0.02116876281797886, + -0.00018912326777353883, + 0.01429511047899723, + -0.010043097659945488, + 0.00012920706649310887, + -0.030755357816815376, + -0.014099465683102608, + 0.005465010181069374, + 0.0369638167321682, + -0.0018798201344907284, + -0.006893217097967863, + 0.011686514131724834, + -0.013114720582962036, + 0.004829165060073137, + 0.011119144037365913, + -0.01713848114013672, + 0.018599295988678932, + -0.025381647050380707, + 0.02294261008501053, + -0.002686854684725404, + 7.056457980070263e-05, + -0.034407392144203186, + 0.030024949461221695, + 0.0005637014983221889, + 0.017073266208171844, + -0.0187036395072937, + -0.015899397432804108, + -0.05671089515089989, + -0.004147668834775686, + 0.002548272954300046, + -0.039911530911922455, + 0.025238174945116043, + -0.008321424014866352, + 0.019929679110646248, + 0.01614721491932869, + -0.0021781784016638994, + 9.119899186771363e-05, + 0.012319098226726055, + -0.01238431315869093, + -0.0018358000088483095, + -0.03878983482718468, + 0.01647328957915306, + -0.005050895735621452, + -0.0038215944077819586, + -0.03130316361784935, + 0.0062051997520029545, + 0.005292190704494715, + 0.0009236063342541456, + -0.003131946548819542, + 0.008621412329375744, + -0.009612679481506348, + 0.006854088045656681, + 0.02103833295404911, + -0.018338436260819435, + -0.012423442676663399, + 0.019055800512433052, + 0.061249855905771255, + 0.04763297736644745, + -0.0037205112166702747, + -0.00935181975364685, + 0.008217080496251583, + 0.007845355197787285, + 0.020920947194099426, + 0.011973459273576736, + 0.00411180080845952, + 0.001021428732201457, + -0.020751388743519783, + -0.004382442682981491, + 0.006518231239169836, + -0.0018781897379085422, + 0.005745434667915106, + -0.010512645356357098, + -0.02587728016078472, + 0.0035053021274507046, + -0.01827322132885456, + -0.01429511047899723, + -0.0022596970666199923, + 0.02189917117357254, + 0.009938754141330719, + 0.010532209649682045, + -0.02514687366783619, + -0.03339004144072533, + 0.010871327482163906, + -0.006997561082243919, + 0.00855619739741087, + 0.01272343099117279, + -0.036311667412519455, + 0.006182374432682991, + 0.011601734906435013, + 0.003342264797538519, + 0.018168877810239792, + 0.004848729353398085, + -0.033520471304655075, + -0.002391757210716605, + 0.00738232908770442, + 0.023659974336624146, + -0.035346485674381256, + 0.022016556933522224, + 0.00603890186175704, + 0.019434046000242233, + -0.012182147242128849, + 0.016890665516257286, + -0.006795394700020552, + -0.025459906086325645, + -0.0205035712569952, + -0.002073834417387843, + -0.012058238498866558, + 0.007630145642906427, + -0.022146986797451973, + 0.02412952110171318, + -0.009645286947488785, + -0.0268685482442379, + -0.03910286724567413, + 0.005328059196472168, + 0.019434046000242233, + -0.003195531200617552, + 0.007486673071980476, + -0.016486331820487976, + -0.03031189553439617, + 0.00020410232536960393, + 0.0020722041372209787, + -0.16350685060024261, + 0.00812577921897173, + 0.019407961517572403, + -0.043380964547395706, + 0.012012588791549206, + 0.001724934671074152, + -0.007245377637445927, + -0.005921514704823494, + -0.012527786195278168, + -0.0007597538060508668, + 0.020699216052889824, + 0.0021260064095258713, + 0.008562719449400902, + -0.0012146278750151396, + -0.007643188815563917, + -0.003919416572898626, + -0.03610298037528992, + 0.025942495092749596, + 0.019121015444397926, + 0.02613813988864422, + 0.01338210143148899, + -0.018077576532959938, + 0.0025205567944794893, + -0.0063128042966127396, + 0.034459564834833145, + -0.018586251884698868, + -0.01249517872929573, + 0.015273334458470345, + 0.0012211493449285626, + -0.006534534972161055, + -0.017503684386610985, + 0.018716681748628616, + 0.03738119453191757, + -0.013225586153566837, + -0.0018243874656036496, + -0.02684246189892292, + -0.01625155843794346, + 0.0038215944077819586, + -0.009945275261998177, + 0.0518067330121994, + 0.018012361600995064, + -0.013525574468076229, + 0.011073493398725986, + 0.015260291285812855, + -0.021325279027223587, + 0.005647612269967794, + 0.020764430984854698, + 0.00423897011205554, + -0.019303616136312485, + -0.005879125092178583, + -0.00832794513553381, + -0.029033683240413666, + 0.001243974664248526, + 0.02068617381155491, + 0.00648236321285367, + 0.013799477368593216, + 0.012925597839057446, + 0.02646421454846859, + -0.005399795714765787, + 0.006228025071322918, + -0.002947714412584901, + -0.016695020720362663, + 0.013323408551514149, + -0.005575875751674175, + 0.003811812261119485, + -0.012814732268452644, + 0.018064532428979874, + 0.014882044866681099, + 0.0015570062678307295, + -0.007004082668572664, + -0.0009081177995540202, + -0.013173414394259453, + 0.03039015270769596, + -0.0004903346998617053, + 0.014451626688241959, + 0.006658443249762058, + -0.011777814477682114, + -0.021325279027223587, + 0.013486445881426334, + -0.010069184005260468, + -0.019225358963012695, + 0.06271066516637802, + -0.027207665145397186, + -0.018312349915504456, + -0.013669047504663467, + 0.01035612914711237, + 0.009293125942349434, + 0.005963904783129692, + 0.019225358963012695, + 0.0031564021483063698, + -0.011262617073953152, + -0.01579505391418934, + -0.029059769585728645, + -0.024494724348187447, + 0.01249517872929573, + -0.0015904288738965988, + 0.020516613498330116, + -0.00811273604631424, + -0.016081999987363815, + -0.00960615836083889, + 0.004685692023485899, + -0.0039520240388810635, + -0.03513779863715172, + -0.0001075027248589322, + 0.010310479439795017, + -0.002217307221144438, + -0.03391176089644432, + 0.017190653830766678, + 0.022342631593346596, + -0.013773391023278236, + -0.007160598412156105, + -0.00856924057006836, + 0.03161619231104851, + -0.007727968040853739, + 0.004858511500060558, + 0.009834409691393375, + -0.0067693088203668594, + -0.02681637555360794, + 0.005999772809445858, + -0.01473857183009386, + 0.02313825488090515, + 0.0125343082472682, + -0.030911872163414955, + -0.00025963690131902695, + -0.0017640636069700122, + -0.005778042133897543, + -0.08733582496643066, + 0.015521151013672352, + 0.01522116269916296, + 0.024246906861662865, + 0.029111940413713455, + 0.009508335962891579, + -0.006378019228577614, + 0.03957241401076317, + -0.025785980746150017, + 0.023986048996448517, + -0.0455721877515316, + -0.02162526734173298, + -0.0031237946823239326, + -0.007088861893862486, + 0.016695020720362663, + -0.019994894042611122, + -0.013173414394259453, + -0.030781442299485207, + -0.019199272617697716, + 0.031694453209638596, + 0.010688725858926773, + -0.0031058606691658497, + -0.013551660813391209, + -0.01229301281273365, + 0.007630145642906427, + -0.0184819083660841, + -0.026229441165924072, + 0.010636554099619389, + 0.016460245475172997, + 0.0024814277421683073, + 0.010395258665084839, + -0.023059995844960213, + 0.017660200595855713, + -0.026112055405974388, + 0.0005168282659724355, + -0.002047748537734151, + -0.008347510360181332, + -0.04176363721489906, + 0.007695360574871302, + -0.03654644265770912, + -0.017829759046435356, + 0.01779063045978546, + 0.02339911460876465, + -0.032842233777046204, + 0.017634114250540733, + -0.010388736613094807, + -0.013669047504663467, + -0.006179113872349262, + 0.0010809373343363404, + -0.009906146675348282, + -0.03247703239321709, + -0.00835403148084879, + -0.006893217097967863, + 0.023542586714029312, + 0.014673356898128986, + 0.006801916286349297, + 0.015351592563092709, + -0.009886582382023335, + -0.015286377631127834, + -0.014529884792864323, + -0.013369059190154076, + 0.011529997922480106, + -0.02407734841108322, + 0.024912100285291672, + 0.01566462405025959, + 0.0083409883081913, + -0.027416352182626724, + -0.020594872534275055, + -0.001358100795187056, + -0.02015141025185585, + -0.029346713796257973, + 0.0040694111958146095, + 0.01606895588338375, + 0.0018732986645773053, + -0.03331178054213524, + -0.021286150440573692, + -0.03396392986178398, + -0.017555857077240944, + 0.016029827296733856, + -0.01756889931857586, + -0.031042302027344704, + -0.01926448754966259, + 0.02227741666138172, + 0.0037563794758170843, + 0.02649030089378357, + 0.010206134989857674, + -0.0016393400728702545, + -0.03417262062430382, + 0.01229301281273365, + -0.02329476922750473, + 0.0048552509397268295, + 0.00822360161691904, + 0.012234319001436234, + -0.010760461911559105, + 0.0008229307713918388, + 0.02448168210685253, + -0.0004426462692208588, + 0.00625411095097661, + 0.010167006403207779, + -0.0016760234721004963, + -0.026581602171063423, + -0.015834182500839233, + -0.03662469983100891, + 0.0218209121376276, + 0.016734149307012558, + -0.010427866131067276, + -0.009208346717059612, + -0.0024749061558395624, + 0.025251217186450958, + 0.00716711999848485, + -0.007760575506836176, + -0.0012423442676663399, + -0.012253883294761181, + 0.013140806928277016, + -0.02375127375125885, + -0.003899852279573679, + -0.023386070504784584, + -0.020399227738380432, + -0.019407961517572403, + 0.007754053920507431, + 0.012462571263313293, + 0.0033194394782185555, + -0.02960757352411747, + 0.015860268846154213, + -0.028929339721798897, + 0.005197629332542419, + -0.03125099092721939, + -0.008171429857611656, + -0.019029714167118073, + -0.009038788266479969, + -0.002890651347115636, + -0.002549903467297554, + 0.014803786762058735, + -0.009221389889717102, + -0.004623738117516041, + 0.031877052038908005, + -0.018951456993818283, + -0.007245377637445927, + 0.00843881070613861, + 0.019003627821803093, + 0.01329732220619917, + 0.031772710382938385, + -0.03258137404918671, + -0.036311667412519455, + 0.006071509327739477, + -0.028851080685853958, + -0.004620477091521025, + 0.0067693088203668594, + -0.00021357886726036668, + -0.002686854684725404, + 0.009514857083559036, + -0.009325733408331871, + 0.04773732274770737, + 0.012371270917356014, + 0.024899056181311607, + -0.010962627828121185, + 0.01931666024029255, + -0.01969490572810173, + -0.010669161565601826, + 0.003697686130180955, + 0.005334580782800913, + -0.015821140259504318, + 0.029398886486887932, + 0.0032379208132624626, + 0.03769422322511673, + -0.022499147802591324, + 0.005774781107902527, + -0.030624927952885628, + -0.010806112550199032, + 0.008445332758128643, + 0.013369059190154076, + -0.02289043739438057, + -0.004336792044341564, + -0.01138000376522541, + 0.005862821359187365, + 0.030964044854044914, + -0.01226692646741867, + -0.019655777141451836, + 0.023764317855238914, + 0.011960417032241821, + 0.00799534935504198, + 0.030703185126185417, + 0.014634228311479092, + 0.014855959452688694, + -0.012775602750480175, + 0.002567837480455637, + 0.029190199449658394, + 0.007943177595734596, + -0.019107971340417862, + -0.024872971698641777, + -0.002062421990558505, + -0.0045487405732274055, + 0.014386411756277084, + 0.01687762141227722, + -0.0019825336057692766, + -0.010486559011042118, + 0.04147668927907944, + 0.010662639513611794, + 0.0007931764703243971, + -0.030051035806536674, + 0.011588691733777523, + 0.02552512101829052, + -0.012312577106058598, + 0.0036129066720604897, + -0.002910215873271227, + -0.016212429851293564, + -0.011282181367278099, + -0.0030585797503590584, + -0.002536860527470708, + -0.031903140246868134, + -0.011327832005918026, + -0.0018684074748307467, + -0.011080015450716019, + 0.015025517903268337, + 0.010395258665084839, + 0.010753940790891647, + -0.02522513084113598, + 0.02469036914408207, + -0.017021095380187035, + -0.016864579170942307, + -0.020842688158154488, + 0.014099465683102608, + -2.148780731658917e-05, + 0.011869115754961967, + -0.012058238498866558, + 0.01387773547321558, + 0.012240841053426266, + 0.01149739045649767, + 0.0032379208132624626, + 0.021612225100398064, + 0.02068617381155491, + -0.017725415527820587, + 0.017699329182505608, + 0.006231285631656647, + 0.0007854322320781648, + -0.028981510549783707, + -0.009717023000121117, + -0.008510547690093517, + 0.021273108199238777, + 0.029346713796257973, + 0.031146645545959473, + 0.11665645241737366, + 0.016916749998927116, + -0.023816488683223724, + 0.0006126126390881836, + -0.005057417321950197, + 0.02512078732252121, + 0.0016189604066312313, + -0.002225459087640047, + 0.018560167402029037, + -0.05561528354883194, + -0.005540007725358009, + -0.012579957954585552, + 0.02466428279876709, + -0.031094474717974663, + -0.006485623773187399, + -0.000646850501652807, + 0.013186457566916943, + 0.005249801091849804, + 0.0004267501353751868, + 0.004343313630670309, + 0.031772710382938385, + -0.026320742443203926, + 0.011777814477682114, + 0.020360099151730537, + -0.04666779935359955, + -0.034616079181432724, + 0.02058182843029499, + -0.013349493965506554, + -0.012912554666399956, + 0.0037824653554707766, + -0.03286832198500633, + 0.0017477598739787936, + -0.064797542989254, + -0.02605988271534443, + 0.020777473226189613, + -0.016003740951418877, + -0.023477371782064438, + -0.018990585580468178, + 0.015886355191469193, + 0.0015488544013351202, + -0.0016328186029568315, + 0.023046953603625298, + -0.009130088612437248, + 0.0019548172131180763, + -0.00023946103465277702, + -0.006087813060730696, + 0.008138822391629219, + -0.004082453902810812, + -0.023933876305818558 + ], + "metadata": { + "source": "Kreye_Marieke_BA_241_V2.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 17, + "has_images": true, + "image_count": 98, + "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", + "links": [], + "last_modified": "2025-05-05T23:00:23", + "_known_field_names": "frozenset({'is_continuation', 'sent_to', 'header_footer_type', 'email_message_id', 'filename', 'languages', 'detection_class_prob', 'sent_from', 'link_texts', 'cc_recipient', 'subject', 'image_mime_type', 'image_path', 'filetype', 'page_number', 'last_modified', 'signature', 'detection_origin', 'text_as_html', 'attached_to_filename', 'bcc_recipient', 'data_source', 'link_start_indexes', 'category_depth', 'emphasized_text_tags', 'parent_id', 'orig_elements', 'page_name', 'coordinates', 'url', 'link_urls', 'file_directory', 'links', 'table_as_cells', 'emphasized_text_contents', 'key_value_pairs', 'image_base64'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "Kreye_Marieke_BA_241_V2.pdf", + "detection_class_prob": 0.3422867953777313, + "parent_id": "e02392183bc6851689602ad4b9f6039f", + "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", + "id": "ce00eae5-7e07-454f-9e4f-f79ac36f92f4", + "processing_timestamp": "2025-05-05T23:15:46.977945", + "chunk_number": 34, + "total_chunks": 56, + "chunking_strategy": "hybrid", + "word_count": 495 + } +} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000035.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000035.json new file mode 100644 index 0000000000000000000000000000000000000000..96aa5225b6b6b2851d28347df348b7350bcbf03c --- /dev/null +++ b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000035.json @@ -0,0 +1,1570 @@ +{ + "id": "61a115b2-0ff7-441a-f6d9-eb3d00000035", + "content": "Im Vergleich zum Status Quo steigt der j\u00e4hrliche Heizbedarf in Szenario G um 5 MWh an, w\u00e4hrend der K\u00fchlbedarf um 6 MWh sinkt. Der j\u00e4hrliche Geb\u00e4udeenergiebedarf pro Quadratmeter Nutzfl\u00e4che im Gebietsausschnitt IV weist ebenso eine Verschiebung hinzu einem geringeren spezifischen K\u00fchlbedarf auf. Im Vergleich zum Status Quo erh\u00f6ht sich in Szenario G die Anzahl der Geb\u00e4ude in dem Intervall von 20-30 kWh/(m2*a) um zwei Geb\u00e4ude. F\u00fcr den spezifischen Heizbedarf ist keine Ver\u00e4nderung zu erkennen. (vgl. Anhang 6.3)\nDie Auswirkung der Verschattung auf den monatlichen thermischen Geb\u00e4udeenergiebedarf der 376 Wohngeb\u00e4ude in dem Gebietsausschnitt V ist gering. Der Verlauf des Grafens ist vergleichbar mit dem der \u00fcbrigen Gebietsausschnitte. Der H\u00f6chstwert des Heizbedarfs wird im Januar mit 1.160 MWh erreicht. Im Juli erreicht der K\u00fchlbedarf seinen H\u00f6hepunkt mit knapp 800 MWh. Summiert \u00fcber das Jahr ist eine Zunahme des Heizbedarfs von 10 MWh in Szenario H im Vergleich zum Stauts Quo zu verzeichnen. Der K\u00fchlbedarf reduziert sich mit einer Zunahme von 135 B\u00e4umen um 26,6 MWh pro Jahr im Vergleich zum Status Quo. In Gebietsausschnitt V reduziert sich die Anzahl der Wohngeb\u00e4ude mit einem spezifischen K\u00fchlbedarf von 30-40 kWh/(m2*a) auf knapp 200 Wohngeb\u00e4ude im Szenario ohne B\u00e4ume auf etwa 150 H\u00e4user in Szenario H. F\u00fcr den spezifischen Heizbedarf ist eine Verschiebung des Energiebedarfs zu den h\u00f6heren Intervallen zu erkennen. (vgl. Anhang 6.4)\nZwischen dem Fallstudiengebiet Gromb\u00fchl und dem Fallstudiengebiet Grafenb\u00fchl sind gro\u00dfe Unterschiede im spezifischen Geb\u00e4udeenergiebedarf zu erkennen. W\u00e4hrend im Status Quo des gesamten Quartiers Grafenb\u00fchl die Mehrheit der Geb\u00e4ude einen spezifischen Heizbedarf von 20-40 kWh/(m2*a) aufweisen, liegt dieser in Gromb\u00fchl zwischen 100 und 200 kWh/(m2*a). Die Ver\u00e4nderung des spezifischen K\u00fchlbedarfs mit einer Zunahme der Anzahl der B\u00e4ume folgt in den beiden Quartieren einem \u00e4hnlichen Verlauf. 42\nErgebnisse\nDie Ver\u00e4nderung des thermischen Geb\u00e4udeenergiebedarfs spiegelt sich in den CO2e- Emissionen der einzelnen Gebietsausschnitte wider. In Tabelle 4 ist zusammenfassend dargestellt, welche Zu- bzw. Abnahme der Emissionen im Vergleich zum Status Quo mit einer Zunahme des Gr\u00fcnanteils zu erwarten sind. Angesetzt wurde, wie in Kapitel 3.1 bereits erl\u00e4utert, f\u00fcr den Heizbedarf der Emissionsfaktor f\u00fcr Gas und f\u00fcr den K\u00fchlbedarf der Emissionsfaktor des deutschen Strommixes. Tabelle 4: Zu- bzw. Abnahme der CO2e-Emissionen in t nach Szenarien (gerundete Werte) (eigene Berechnungen auf Grundlage der Simulationsergebnisse)\n\n| - | s | g | n | CO2e-Emissionen | Heizbedarf | [t] | CO2e-Emissionen | K\u00fchlbedarf | [t] | - | s | u | a | s | t | e | i | b | e | G | t | t | i | n | h | c | s | u | z | n | a | l | f | p | m | u | a | B | o | i | r | a | n | e | z | s | Zunahme | im | Vergleich | zum | Status | Quo | CO2e | Emissionen | des | Szenarios | Abnahme | im | Vergleich | zum | Status | Quo | CO2e | Emissionen | des | Szenarios | A | +1 | 537 | - | 2 | 54 | I | B | + | 2 | 538 | - | 4 | 52 | C | + | 5 | 2.314 | - | 8 | 229 | II | D | + | 9 | 2.318 | - | 13 | 224 | III | E | + | 10 | 7.080 | - | 15 | 721 | F | + | 1 | 101 | - | 1 | 30 | IV | G | + | 1 | 101 | - | 1 | 30 | V | H | + | 1 | 961 | - | 3 | 298 |\n|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|\n\nAus Tabelle 4 wird ersichtlich, dass mit einer Erh\u00f6hung des Baumbestands sich die Gesamtemissionen des Energiebedarfs reduzieren. Wird in Gromb\u00fchl das gesamte Fallstudiengebiet betrachtet (Szenario E) k\u00f6nnen bei einer Erh\u00f6hung des Baumbestands um den Faktor 1,6 die Gesamtemissionen um 0,07 % reduziert werden. F\u00fcr Grafenb\u00fchl liegt die Reduktion im gesamten Fallstudiengebiet bei einer Zunahme des Gr\u00fcnanteils um 1,3 bei knapp 0,06 %. ## 6.3 Auswirkungen auf die Evapotranspiration\n\nDie Daten der t\u00e4glichen Evapotranspiration weisen sowohl im Status Quo der einzelnen Gebietsausschnitte als auch f\u00fcr die einzelnen Szenarien gro\u00dfe \u00c4hnlichkeiten auf.", + "embedding": [ + 0.01857670210301876, + -0.009076045826077461, + 0.02876734919846058, + -0.0226104985922575, + 0.020089374855160713, + 0.009613443166017532, + -0.033650368452072144, + -0.024428362026810646, + -0.020195528864860535, + -0.025556232780218124, + 0.014635786414146423, + 0.011670148931443691, + -0.003811541013419628, + -0.001612192252650857, + 0.005032295826822519, + 0.014012140221893787, + 0.0427529513835907, + 0.01174976397305727, + 0.03327883407473564, + 0.008067595772445202, + 0.0015591159462928772, + 0.02515816129744053, + 0.010747948661446571, + 0.005519933998584747, + -0.005801901686936617, + 0.009620076976716518, + 0.01544519979506731, + -0.03062501922249794, + -0.017727481201291084, + 0.012346872128546238, + 0.02181435562670231, + -0.015644235536456108, + -0.040417592972517014, + 0.001312808832153678, + -0.017276331782341003, + -0.004551291931420565, + -0.016519995406270027, + -0.012300429865717888, + 0.023446450009942055, + -0.006826937664300203, + 0.005898102652281523, + 0.002429898828268051, + -0.0010432808194309473, + -0.00998497661203146, + 0.01544519979506731, + 0.012472927570343018, + 0.016427110880613327, + -0.009560366161167622, + -0.032509226351976395, + 0.022146081551909447, + 0.018775736913084984, + 0.03540188446640968, + -0.010681603103876114, + 0.0004042920481879264, + -0.022544153034687042, + 0.0019920195918530226, + -0.02218588814139366, + -0.0015076983254402876, + -0.007715965621173382, + -0.0031082802452147007, + -0.018085746094584465, + -0.006899917498230934, + -0.01698441244661808, + 0.011033233255147934, + -0.05121861770749092, + -0.011590534821152687, + -0.017462098971009254, + -0.007696061860769987, + 0.00727808615192771, + -0.01629442162811756, + 0.023127993568778038, + 0.05156361684203148, + 0.0006360861589200795, + -0.015418661758303642, + 0.0271750595420599, + -0.01205495186150074, + 0.018417472019791603, + 0.0009495679987594485, + -0.007178568281233311, + 0.003320585237815976, + 0.019837263971567154, + -0.03439343720674515, + -0.032694995403289795, + 0.04179757833480835, + 0.021058017387986183, + 0.03367690369486809, + -0.0021396379452198744, + 0.02842235378921032, + -0.016785375773906708, + 0.022411463782191277, + 0.019478999078273773, + 0.015259433537721634, + 0.013720220886170864, + 0.024056827649474144, + 0.0031613565515726805, + -0.007198471575975418, + -0.0021479311399161816, + 0.00980584416538477, + 0.01734267733991146, + -0.013116477988660336, + -0.022238966077566147, + 0.006253050174564123, + -0.018802275881171227, + -0.010462663136422634, + -0.026193149387836456, + -8.448667358607054e-05, + 0.01112611684948206, + 0.023021839559078217, + 0.010893908329308033, + -0.019956685602664948, + -0.03359729051589966, + 0.03662263974547386, + -0.021230515092611313, + -0.0096399812027812, + 0.009613443166017532, + -0.017302870750427246, + 0.03510996699333191, + 0.0038347619120031595, + -0.011079675517976284, + -0.002171152038499713, + 0.023181069642305374, + -0.026710642501711845, + 0.0059213233180344105, + -0.008744318969547749, + 0.023207606747746468, + 0.006913186516612768, + 0.0013973992317914963, + -0.00945421401411295, + -0.030253484845161438, + -0.03487112373113632, + -0.022557422518730164, + -0.002904268214479089, + 0.01961168833076954, + 0.013083305209875107, + -0.02357914112508297, + 0.02903272956609726, + -0.007795580197125673, + 0.0037252921611070633, + -0.031447701156139374, + -0.04545984044671059, + -0.017355946823954582, + 0.01302359439432621, + -0.028369275853037834, + -0.00888364389538765, + 0.00396081805229187, + 0.022676844149827957, + -0.002504537347704172, + 0.03028002381324768, + -0.0013094915775582194, + -0.020460909232497215, + -0.0072648171335458755, + -0.0005320068448781967, + 0.026989292353391647, + 0.005642673000693321, + 0.015232894569635391, + -0.000878246733918786, + -0.019585151225328445, + 0.005702383816242218, + -0.035587653517723083, + -0.0030585210770368576, + 0.008923451416194439, + -0.016573071479797363, + 0.00012875146057922393, + 0.01629442162811756, + 0.0019173809560015798, + 0.007729234639555216, + 0.00717193353921175, + -0.010509105399250984, + 0.01610865443944931, + -0.03195192664861679, + 0.00814057607203722, + 0.025821615010499954, + -0.036463409662246704, + 0.02148262783885002, + 0.0007845339132472873, + 0.02393740601837635, + -0.01210139412432909, + 0.017355946823954582, + 0.00682030338793993, + -0.02903272956609726, + -0.034366898238658905, + 0.011199097149074078, + 0.0015184794319793582, + -0.0005125179304741323, + -0.026113534346222878, + -0.01954534277319908, + 0.030067717656493187, + 0.018762467429041862, + -0.011079675517976284, + -0.0010872345883399248, + 0.004571195226162672, + 0.009931900538504124, + 0.01698441244661808, + 0.003642360446974635, + -0.6271494626998901, + 0.022013390436768532, + -0.007258182391524315, + -0.0026305934879928827, + 0.012373410165309906, + 0.020832443609833717, + 0.03359729051589966, + 0.028661197051405907, + -0.01593615673482418, + 0.014423481188714504, + 0.016599608585238457, + 0.0028760714922100306, + -0.01421117689460516, + 0.0052711390890181065, + 0.000772508792579174, + -0.027652746066451073, + -0.010310069657862186, + 0.006485259160399437, + 0.022066466510295868, + -0.0008019495871849358, + -0.013786566443741322, + 0.01689152978360653, + -0.005715652834624052, + 0.020368026569485664, + 0.024852972477674484, + 0.004375476390123367, + -0.01732940785586834, + -0.025038739666342735, + -0.009447579272091389, + 0.013693682849407196, + -0.008936719968914986, + 0.019903607666492462, + -0.004922825843095779, + 0.02059360034763813, + 0.04636213928461075, + -0.001313638174906373, + 0.004700568970292807, + 0.005141765344887972, + 0.007629716768860817, + 0.009520559571683407, + -0.028475429862737656, + 0.0017183448653668165, + 0.010084494948387146, + 0.006538335233926773, + 0.007297989912331104, + 0.0271750595420599, + 0.01364060677587986, + -0.018696123734116554, + 0.0018012765794992447, + -0.020222065970301628, + 0.01245965901762247, + 0.019731109961867332, + -0.0005539837875403464, + 0.019518805667757988, + 0.01364060677587986, + 0.004863115027546883, + 0.02190723828971386, + -0.004869749769568443, + -0.003944231662899256, + 0.01169668696820736, + 0.006083869840949774, + -0.00275001535192132, + 0.009261812083423138, + -0.014609248377382755, + -0.02093859575688839, + 0.03245615214109421, + -0.03901107236742973, + -0.006359202787280083, + 0.01451636478304863, + -0.015113472938537598, + -0.016241343691945076, + 0.007450584322214127, + 0.001462915213778615, + -0.005015709437429905, + 0.021880701184272766, + 0.0046375407837331295, + 0.03935606777667999, + -0.023207606747746468, + -0.0062829055823385715, + 0.02192050777375698, + -0.010290165431797504, + -0.02006283774971962, + -0.01751517504453659, + 0.013541088439524174, + 0.010442759841680527, + -0.0378168560564518, + -0.017316140234470367, + 0.00848557148128748, + -0.009918631985783577, + 0.022557422518730164, + 0.018364395946264267, + 0.020898789167404175, + -0.010820928029716015, + -0.01169668696820736, + -0.0016296079847961664, + 0.04752981662750244, + -0.001101332949474454, + 0.03986029326915741, + 0.007158664520829916, + -0.055146265774965286, + -0.012698502279818058, + -0.008478937670588493, + 0.02234511822462082, + -0.000338568672304973, + 0.02269011363387108, + 0.017263062298297882, + -0.01945246011018753, + -0.008963258005678654, + 0.03447305038571358, + -0.024879511445760727, + -0.005503347609192133, + -0.010854100808501244, + -0.006783813238143921, + -0.01188245415687561, + -0.0008682949119247496, + -0.02657795138657093, + 0.03755147382616997, + -0.00021686640684492886, + 0.010807659476995468, + 0.007098953705281019, + 0.029430802911520004, + 0.005937909707427025, + 0.021522434428334236, + -0.025131622329354286, + -0.0004258542903698981, + 0.036994174122810364, + 0.008226824924349785, + -0.007311258930712938, + -0.015100204385817051, + -0.015007320791482925, + 0.003599235787987709, + 0.013507915660738945, + 0.03439343720674515, + -0.004491581115871668, + 0.03595918416976929, + -0.00039123030728660524, + 0.030598480254411697, + -0.0006763080018572509, + 0.01628115214407444, + -0.025224506855010986, + -0.016944605857133865, + -0.0059611308388412, + 0.015564621426165104, + -0.019770918413996696, + -0.0011394815519452095, + 0.005513299722224474, + -0.012088124640285969, + 0.01438367459923029, + -0.01882881298661232, + -0.006813668645918369, + -0.02359241060912609, + -0.006063966080546379, + 0.0036987538915127516, + 0.00923527404665947, + 0.010190647095441818, + 0.012134566903114319, + 0.0023900915402919054, + -0.018059207126498222, + -0.016918066889047623, + -0.02242473140358925, + 0.012253988534212112, + 0.0191870778799057, + -0.02623295597732067, + 0.000799876288510859, + -0.023021839559078217, + -0.008877009153366089, + -0.002930806251242757, + 0.014091755263507366, + -0.011849281378090382, + -0.030067717656493187, + -0.010197281837463379, + -0.01910746470093727, + 0.019956685602664948, + 0.012771481648087502, + -0.020195528864860535, + -0.02076609805226326, + -0.019757648929953575, + 0.0012348530581220984, + -0.003947549033910036, + -0.015511545352637768, + 0.02095186524093151, + -0.006216560490429401, + -0.010701506398618221, + -0.005805219057947397, + 0.03187231346964836, + 0.028714273124933243, + 0.02842235378921032, + 0.015219626016914845, + -0.013799834996461868, + -0.0022557422053068876, + 0.00941440649330616, + 0.036914560943841934, + -0.016864990815520287, + 0.012227450497448444, + -0.0009586904780007899, + -0.035428423434495926, + 0.015431931242346764, + 0.021628588438034058, + -0.016320958733558655, + 0.013919256627559662, + 0.04437177628278732, + 0.004292544908821583, + 0.02341991290450096, + -0.011962068267166615, + 0.02462739869952202, + -0.03882530704140663, + 0.03001464158296585, + 0.008067595772445202, + 0.022597230970859528, + 0.026126803830266, + 0.026166610419750214, + -0.006840206682682037, + -0.008472302928566933, + 0.00464417552575469, + -0.008830567821860313, + 0.023021839559078217, + -0.015325778163969517, + -0.0006792106432840228, + 0.005155034828931093, + -0.01381310448050499, + 0.015113472938537598, + 0.00717193353921175, + 0.02481316588819027, + 0.01289090421050787, + -0.005009074695408344, + 0.016161730512976646, + 0.006813668645918369, + 0.018523624166846275, + 0.001824497478082776, + -0.012419851496815681, + -0.010681603103876114, + 0.008565186522901058, + -0.008804029785096645, + 0.010117667727172375, + 0.024401824921369553, + 0.029377726837992668, + 0.02956349402666092, + -0.01302359439432621, + 0.023366836830973625, + 0.009586905129253864, + 0.016586340963840485, + 0.021708201617002487, + 0.0016893188003450632, + -0.02331376075744629, + 0.02051398530602455, + 0.0077624074183404446, + 0.02084571309387684, + 0.005350753199309111, + -0.013143016025424004, + 0.010767851956188679, + -0.008233459666371346, + 0.010674968361854553, + 0.006097138859331608, + -0.000972788839135319, + 0.015538083389401436, + -0.007861925289034843, + 0.008644800633192062, + 0.005490078590810299, + 0.010256992653012276, + 0.026723911985754967, + 0.009759402833878994, + 0.005616134963929653, + 0.006339299492537975, + -0.0032774608116596937, + -0.00710558844730258, + -0.009998246096074581, + -0.02385779283940792, + -0.024600859731435776, + 0.002612348645925522, + 0.002524441108107567, + 0.010674968361854553, + -0.003456593258306384, + -0.022597230970859528, + -0.0010507446713745594, + -0.005201476160436869, + 0.005553106777369976, + 0.009407772682607174, + -0.0012282185489311814, + 0.0014372064033523202, + -0.0003420932625886053, + 0.00792163610458374, + -0.01099342666566372, + -0.02006283774971962, + 0.018616508692502975, + -0.005815171170979738, + -0.008591724559664726, + -0.006926455534994602, + 0.011836012825369835, + -0.009872189722955227, + 0.02279626578092575, + -0.019027849659323692, + -0.02392413653433323, + -0.017833633348345757, + -0.009487386792898178, + 0.01508693490177393, + -0.010018149390816689, + -0.0006485258927568793, + -0.007556736469268799, + -0.003219408681616187, + 0.020009761676192284, + -0.0007708501652814448, + 0.007649620063602924, + -0.0061303116381168365, + -0.01734267733991146, + 0.043602172285318375, + 0.01451636478304863, + -0.007788945455104113, + -0.007954808883368969, + -0.006395692937076092, + -0.02525104396045208, + -0.013839642517268658, + -0.010290165431797504, + -0.007623082026839256, + 0.026113534346222878, + -0.010940350592136383, + -0.0009785940637812018, + 0.0039044246077537537, + -0.025821615010499954, + 0.040629900991916656, + 0.0009421041468158364, + 0.0020069472957402468, + -0.023950675502419472, + -0.018059207126498222, + 0.0003022860619239509, + 0.01628115214407444, + 0.03372998163104057, + 0.004262689501047134, + 0.017992861568927765, + 0.013786566443741322, + 0.007702696602791548, + -0.010475932620465755, + -0.03842723369598389, + 0.001571555738337338, + 0.008459033444523811, + 0.0035328904632478952, + -0.006979532074183226, + 0.014450020156800747, + -0.02429567091166973, + 0.023897599428892136, + -0.0014372064033523202, + 0.004183074925094843, + -0.03195192664861679, + 0.002728452906012535, + 0.01020391657948494, + -0.006893283221870661, + -0.010117667727172375, + 0.0001230499183293432, + 0.059180062264204025, + 0.0040039424784481525, + 0.027055637910962105, + 0.026007382199168205, + 0.024600859731435776, + 0.012187642976641655, + -0.014410212635993958, + -0.017621327191591263, + 0.006986166350543499, + 0.011636976152658463, + 0.014595979824662209, + -0.02068648301064968, + -0.016214806586503983, + 0.017024219036102295, + -0.04445139318704605, + 0.02550315670669079, + 0.003735243808478117, + 0.014317329041659832, + 0.009666519239544868, + 0.007649620063602924, + -0.0008396834600716829, + 0.01671903021633625, + 0.0026106899604201317, + -0.012240719050168991, + 0.02675044909119606, + -0.0023237462155520916, + -0.0043257176876068115, + 0.015206356532871723, + -0.012300429865717888, + -0.017581520602107048, + 0.01228052657097578, + -0.012539273127913475, + -0.0003441665612626821, + 0.006156849674880505, + -0.02129686065018177, + 0.00406697066500783, + -0.025277582928538322, + -0.04442485421895981, + -0.030147332698106766, + 0.012764847837388515, + -0.009082679636776447, + -0.007642985787242651, + -0.001163531793281436, + -0.011073040775954723, + -0.01751517504453659, + -0.008240093477070332, + -0.008213555440306664, + 0.02137647569179535, + -0.019518805667757988, + -0.029351187869906425, + 0.005954496096819639, + 0.018231704831123352, + 0.015020590275526047, + 0.008379419334232807, + 0.0027450392954051495, + -0.018603239208459854, + -0.02243800088763237, + -0.02077936753630638, + -0.022915687412023544, + -0.005599548574537039, + -0.016320958733558655, + -0.015564621426165104, + 0.013667144812643528, + -0.015617698431015015, + -0.025184698402881622, + -0.01866958476603031, + 0.005642673000693321, + -0.007357700727880001, + 0.005861612502485514, + 0.012751578353345394, + -0.01166351418942213, + -0.012910807505249977, + -0.007324527949094772, + -0.0022557422053068876, + 0.004395380150526762, + 0.01770094223320484, + -0.028581582009792328, + 0.03635725751519203, + 0.003987356089055538, + -0.0010922105284407735, + -0.019399384036660194, + 0.0012273892061784863, + -0.002428240142762661, + -0.022477809339761734, + -0.007218375336378813, + -0.01451636478304863, + -0.007430680561810732, + 0.015471738763153553, + -0.026909679174423218, + 0.012134566903114319, + -0.017196718603372574, + -0.007178568281233311, + 0.0036888020113110542, + 0.004335669334977865, + -0.0022010074462741613, + 0.0191870778799057, + 0.020925326272845268, + 0.0035262559540569782, + -0.031447701156139374, + 0.049334410578012466, + 0.00945421401411295, + 0.013932526111602783, + 0.0102105513215065, + 0.003116573439911008, + 0.015471738763153553, + -0.0360918752849102, + -0.010349876247346401, + -0.015524814836680889, + 0.010820928029716015, + 0.020115913823246956, + -0.022862611338496208, + -0.021840892732143402, + -0.019731109961867332, + -0.006389058195054531, + 0.012963883578777313, + -0.02157551236450672, + 0.016480186954140663, + -0.04129335284233093, + 0.017541714012622833, + -0.020633406937122345, + -0.0015433590160682797, + 0.011404767632484436, + -0.01910746470093727, + -0.023711832240223885, + 0.004096826072782278, + 0.008432495407760143, + -0.009547097608447075, + -0.027334289625287056, + -0.03301345184445381, + -0.00814721081405878, + 0.0006306956056505442, + -0.017183449119329453, + -0.042726412415504456, + 0.006166801322251558, + -0.013972332701086998, + 0.012426486238837242, + 0.011033233255147934, + 0.02648506872355938, + 0.002046754350885749, + 0.02076609805226326, + 0.006110407877713442, + -0.012240719050168991, + 0.008293170481920242, + 0.002517806366086006, + -0.005977717228233814, + -0.031208857893943787, + 0.0260339193046093, + -0.0037186574190855026, + 0.006203291472047567, + 0.013395128771662712, + 0.016838451847434044, + 0.02683006413280964, + 0.0330665297806263, + -0.018258243799209595, + -0.016825184226036072, + -0.012293795123696327, + -0.021323399618268013, + -0.0005792779265902936, + 0.020726291462779045, + -0.0032277018763124943, + -0.0015881421277299523, + -0.011676783673465252, + -0.007118857465684414, + 0.039992984384298325, + -0.007132126484066248, + -0.006478624418377876, + -0.02148262783885002, + 0.004216247703880072, + -0.035587653517723083, + 0.02207973599433899, + 0.003206139663234353, + -0.016042308881878853, + -0.009367965161800385, + -0.014078485779464245, + -0.016772108152508736, + -0.02665756642818451, + 0.01583000272512436, + 0.0034201033413410187, + 0.013454839587211609, + 0.0016851722029969096, + -0.011152654886245728, + 0.004202978685498238, + 0.003695436753332615, + 0.013567626476287842, + -0.018961504101753235, + 0.010595354251563549, + -0.012326967902481556, + -0.015060396865010262, + -0.0177672877907753, + 0.001278806827031076, + -0.009202101267874241, + 0.023791447281837463, + -0.003648994956165552, + 0.0015325779095292091, + 0.03062501922249794, + -0.0017979593249037862, + 0.02515816129744053, + 0.018775736913084984, + -0.0030800835229456425, + 0.03367690369486809, + 0.017130373045802116, + 0.04214257374405861, + 0.018364395946264267, + -0.023539334535598755, + -0.013826373033225536, + -0.05992313101887703, + 0.008293170481920242, + -0.0166261475533247, + 0.012764847837388515, + -0.0039774044416844845, + 0.00653501832857728, + -0.002196031389757991, + 0.0024730232544243336, + 0.01837766543030739, + -0.0024547784123569727, + -0.008041057735681534, + 0.05026324465870857, + 0.007430680561810732, + 0.00292417174205184, + -0.023366836830973625, + 0.003831444540992379, + -0.008399322628974915, + 0.01417136937379837, + 0.0062696365639567375, + -0.011517554521560669, + 0.0015773610211908817, + -0.02128359116613865, + 0.0005913030472584069, + 0.05870237573981285, + 0.008863740600645542, + 0.013488012365996838, + -0.023287221789360046, + -0.01074131391942501, + 1.8465261746314354e-06, + -0.02948387898504734, + -0.002700256183743477, + 0.026949485763907433, + -0.010276896879076958, + 0.03675533086061478, + 0.003940914291888475, + -0.01750190556049347, + 0.004982536658644676, + -0.018988043069839478, + -0.013335417956113815, + -0.005314263515174389, + -0.00831970851868391, + 0.01360079925507307, + -0.0013285658787935972, + -0.009779306128621101, + 0.0070525119081139565, + 0.008777491748332977, + 0.02692294865846634, + -0.0026770352851599455, + -0.004571195226162672, + -0.0018195215379819274, + -0.0007011875277385116, + -0.0033968824427574873, + -0.006253050174564123, + 0.003456593258306384, + -0.0041764406487345695, + -0.008187017403542995, + -0.009354695677757263, + -0.0069397250190377235, + -0.021044747903943062, + -0.005463540554046631, + 0.028263123705983162, + -0.025290852412581444, + 0.01602903939783573, + 0.018974773585796356, + 0.001340176328085363, + 0.04073605313897133, + -0.010946984402835369, + -0.018510356545448303, + -0.02058033086359501, + 0.025834884494543076, + -0.04150565713644028, + 0.02295549586415291, + 0.05599548667669296, + 0.00470720324665308, + 0.018510356545448303, + 0.015790196135640144, + -0.00763635104522109, + -0.021150901913642883, + 0.026100264862179756, + -0.012738309800624847, + -0.028661197051405907, + -0.012021779082715511, + 0.0019522123038768768, + 0.020102644339203835, + -0.00670751603320241, + 0.002403360791504383, + 0.007112222723662853, + 0.010927081108093262, + -0.003056862624362111, + -0.014277521520853043, + -0.012605618685483932, + 0.016214806586503983, + 0.006807033903896809, + -0.009686422534286976, + 0.027865052223205566, + -0.029351187869906425, + 0.009965073317289352, + 0.004892970435321331, + 0.00814721081405878, + -0.018815545365214348, + -0.030120793730020523, + -0.010349876247346401, + 0.008910181932151318, + 0.00406697066500783, + -0.0014513047644868493, + 0.00321111548691988, + -0.016692493110895157, + -0.019943416118621826, + -0.017899978905916214, + 0.020819174125790596, + 0.016347497701644897, + 0.003798271995037794, + 0.0022491076961159706, + 0.004007259849458933, + -0.024879511445760727, + 0.01961168833076954, + -0.005888151004910469, + -0.018404202535748482, + 0.0007003582431934774, + -0.008060961030423641, + -0.0412137396633625, + -0.003579332260414958, + 0.009520559571683407, + 0.029510416090488434, + 0.01961168833076954, + -0.031129242852330208, + 0.008299804292619228, + 0.0012331943726167083, + -0.05379281938076019, + -0.026896409690380096, + -0.02876734919846058, + 0.007059146650135517, + 0.0031198905780911446, + 0.01060862373560667, + -0.018775736913084984, + 0.034526124596595764, + 0.0023154530208557844, + 0.015285971574485302, + -0.04145258292555809, + -0.008684608153998852, + -0.008870374411344528, + -0.01056218147277832, + 0.03407497704029083, + -1.9437116861809045e-05, + -0.022331848740577698, + -0.007430680561810732, + 0.018404202535748482, + -0.005337484180927277, + 0.0023088185116648674, + 0.01768767274916172, + -0.009659884497523308, + 0.006365837529301643, + -0.0019306499743834138, + 0.012419851496815681, + -0.0008040228276513517, + 0.02198685333132744, + -0.013434935361146927, + -0.03465881571173668, + 0.0019488950492814183, + 0.024083366617560387, + -4.2683910578489304e-05, + -0.035083428025245667, + -0.005894785281270742, + 0.004093508701771498, + -0.004043749999254942, + -0.024441631510853767, + 0.01610865443944931, + -0.01981072500348091, + -0.020527254790067673, + -0.014595979824662209, + 0.02815697155892849, + 0.022915687412023544, + -0.0004702227597590536, + 0.0036125050392001867, + 0.01654653251171112, + -0.018589969724416733, + -0.018881889060139656, + 0.017462098971009254, + -0.025237776339054108, + -0.004017211496829987, + 0.01962495781481266, + -0.016652686521410942, + 0.020553793758153915, + -0.020540524274110794, + 0.011583900079131126, + 0.006047379691153765, + 0.011836012825369835, + -0.013839642517268658, + -0.018019400537014008, + -0.003642360446974635, + 0.011219000443816185, + 0.017899978905916214, + -0.028024280443787575, + 0.016334228217601776, + 0.005430367775261402, + -0.00814721081405878, + -0.005692432168871164, + -0.0008268290548585355, + -0.006485259160399437, + -0.02834273874759674, + -0.0028047501109540462, + -0.004096826072782278, + -0.007364335004240274, + -0.013308879919350147, + -0.0014032043982297182, + -0.004120046738535166, + -0.022583961486816406, + 0.011597169563174248, + 0.19287922978401184, + -0.012904172763228416, + -0.008459033444523811, + 0.03431382030248642, + -0.0027417221572250128, + -0.02895311638712883, + 0.019757648929953575, + 0.0008682949119247496, + -0.0003261289093643427, + 0.041134122759103775, + -0.02588796056807041, + -0.006860110443085432, + -0.0029026095289736986, + 0.00464085815474391, + 0.009487386792898178, + -0.02323414571583271, + -0.03035963699221611, + 0.011199097149074078, + -0.0021728104911744595, + 0.03354421630501747, + 0.030412713065743446, + -0.021363206207752228, + -0.00814057607203722, + -0.006087186746299267, + 0.022942226380109787, + 0.006087186746299267, + -0.019664764404296875, + -0.005155034828931093, + 0.022637037560343742, + 0.013905988074839115, + -0.009746133349835873, + 0.0023436499759554863, + 0.0002643447951413691, + -0.02034148760139942, + -0.013521185144782066, + -0.001245634164661169, + 0.007861925289034843, + -0.022570692002773285, + 0.025715462863445282, + 0.020540524274110794, + -0.003305657533928752, + -0.008611627854406834, + -0.010907177813351154, + -0.009507290087640285, + -0.005971082486212254, + 0.021336669102311134, + -0.006345933768898249, + 0.015033858828246593, + -0.010887273587286472, + -0.015299240127205849, + -0.03227038308978081, + -0.011152654886245728, + 0.008870374411344528, + 0.03784339502453804, + -0.00791500136256218, + -0.014038678258657455, + 0.00739087350666523, + -0.018059207126498222, + 0.008525379002094269, + 0.003668898483738303, + -0.03035963699221611, + 0.02075282856822014, + -0.02006283774971962, + 0.0252643134444952, + -0.008286535739898682, + -0.0059180064126849174, + -0.03232346102595329, + 0.0203282181173563, + -0.000891515810508281, + -0.002546003321185708, + -0.016573071479797363, + -0.020129183307290077, + -0.04187719151377678, + 0.010615257546305656, + -0.013527818955481052, + -0.03028002381324768, + 0.015803465619683266, + 0.004697251599282026, + 0.029245035722851753, + 0.015100204385817051, + -0.004574512597173452, + 0.000768776866607368, + 0.0070525119081139565, + -0.014755208045244217, + -0.00464085815474391, + -0.04108104854822159, + 0.02850196696817875, + -0.009162294678390026, + -0.009600173681974411, + -0.03009425662457943, + -0.0023370154667645693, + 0.0025260995607823133, + -0.003599235787987709, + -0.013892718590795994, + 0.010396318510174751, + -0.0043257176876068115, + 0.01280465442687273, + 0.011424670927226543, + -0.01565750502049923, + -0.007463853340595961, + -0.0001699063286650926, + 0.06278925389051437, + 0.03150077909231186, + -0.0021661759819835424, + -7.873328286223114e-05, + 0.02271665260195732, + -0.007357700727880001, + 0.021522434428334236, + 0.012028413824737072, + -0.007424045819789171, + 0.00653501832857728, + -0.021336669102311134, + 0.007258182391524315, + 0.006163483951240778, + 0.00677717849612236, + 0.006276271305978298, + -0.009222005493938923, + -0.012393313460052013, + 0.006899917498230934, + -0.016174999997019768, + -0.01113275159150362, + 0.011809474788606167, + 0.01978418603539467, + 0.013235899619758129, + 0.013096574693918228, + -0.019863801077008247, + -0.019518805667757988, + 0.011491016484797001, + -0.018006131052970886, + -0.0030518865678459406, + 0.016413843259215355, + -0.04296525567770004, + 0.00040284075657837093, + -0.004760279785841703, + 0.0048199906013906, + 0.025463350117206573, + 0.0030187140218913555, + -0.03821492940187454, + 0.001457110047340393, + 0.021336669102311134, + 0.017462098971009254, + -0.018191898241639137, + 0.017899978905916214, + -0.0002506610762793571, + 0.013036863878369331, + -0.015100204385817051, + 0.016864990815520287, + -0.006826937664300203, + -0.021761277690529823, + -0.02683006413280964, + -0.00813394133001566, + -0.01394579466432333, + 0.006866744719445705, + -0.008114038035273552, + 0.028926577419042587, + -0.014635786414146423, + -0.023539334535598755, + -0.05360705032944679, + 0.006641170475631952, + 0.011079675517976284, + -0.008246728219091892, + 0.0015607746317982674, + -0.0072382790967822075, + -0.034977275878190994, + 0.0044484566897153854, + 0.007603178266435862, + -0.16729646921157837, + 0.002754991175606847, + 0.014476558193564415, + -0.04023182764649391, + 0.011437940411269665, + 0.004431870300322771, + 0.0017316138837486506, + -0.00012470854562707245, + -0.022743189707398415, + -0.0019024532521143556, + 0.03351767733693123, + 0.00406697066500783, + -0.008027789182960987, + 0.004793452564626932, + -0.01394579466432333, + 0.0036158221773803234, + -0.03378305956721306, + 0.023817984387278557, + 0.021058017387986183, + 0.02509181573987007, + 2.274142752867192e-05, + -0.01978418603539467, + 0.0018526942003518343, + -0.004037115257233381, + 0.017302870750427246, + -0.009354695677757263, + -0.015299240127205849, + 0.029590031132102013, + 0.0031348182819783688, + 0.00019385285850148648, + -0.01474193949252367, + 0.014237714931368828, + 0.0412137396633625, + -0.01884208247065544, + -0.005075420252978802, + -0.012174373492598534, + -0.012705137021839619, + -0.005410464014858007, + -0.007503660395741463, + 0.029988102614879608, + 0.020819174125790596, + -0.004604368004947901, + -0.012439755722880363, + 0.010296800173819065, + -0.030757710337638855, + -0.0022690114565193653, + 0.022982032969594002, + 0.0027350876480340958, + -0.017568251118063927, + -0.0029772480484098196, + 0.004763597156852484, + -0.02085898257791996, + -0.012943980284035206, + 0.02173474058508873, + -0.00018130942771676928, + 0.02773236110806465, + 0.015776926651597023, + 0.01874919980764389, + -0.009686422534286976, + 0.005075420252978802, + -0.002851191908121109, + -0.01209475938230753, + 0.015166549943387508, + 0.003516304073855281, + 0.0024862925056368113, + -0.026471799239516258, + 0.017634596675634384, + 0.0023983847349882126, + 0.0035892841406166553, + -0.0073776040226221085, + -0.011192462407052517, + -0.010807659476995468, + 0.020222065970301628, + 0.0009006382897496223, + 0.005602865945547819, + 0.014901168644428253, + -0.015538083389401436, + -0.007019339129328728, + 0.008943354710936546, + -0.0041532195173203945, + -0.015856541693210602, + 0.05960467457771301, + -0.02728121355175972, + -0.017807094380259514, + -0.013441570103168488, + 0.005164986476302147, + 0.012957248836755753, + 0.003148087300360203, + 0.026816794648766518, + 0.0034201033413410187, + 0.0020915374625474215, + -0.022663574665784836, + -0.01803267002105713, + -0.017634596675634384, + 0.01095361914485693, + -0.0004127925494685769, + 0.02200012281537056, + -0.006544969975948334, + -0.016427110880613327, + -0.014131561852991581, + 0.010296800173819065, + -0.00567252840846777, + -0.030678095296025276, + -0.015591160394251347, + 0.012121297419071198, + -0.001824497478082776, + -0.03378305956721306, + 0.016068845987319946, + 0.032349999994039536, + -0.024441631510853767, + -0.013932526111602783, + -0.01210139412432909, + 0.03346459940075874, + -0.011291980743408203, + -0.003292388515546918, + 0.013010325841605663, + -0.006840206682682037, + -0.030067717656493187, + 0.0004024260852020234, + -0.003924328368157148, + 0.03282768651843071, + 0.006143580656498671, + -0.022849341854453087, + -0.0027334289625287056, + 0.00039330360596068203, + -0.015060396865010262, + -0.091185063123703, + 0.004491581115871668, + 0.017886709421873093, + 0.016161730512976646, + 0.027838513255119324, + 0.0027384047862142324, + -0.010270262137055397, + 0.024746820330619812, + -0.004455090966075659, + 0.022013390436768532, + -0.04407985880970955, + -0.023512795567512512, + -0.0012638791231438518, + -0.00774250365793705, + 0.024959124624729156, + -0.03487112373113632, + -0.011006695218384266, + -0.023963944986462593, + -0.01996995322406292, + 0.03372998163104057, + 0.02059360034763813, + -0.0010598672088235617, + -0.0012091442476958036, + -0.017475368455052376, + -5.4320265917340294e-05, + -0.012877634726464748, + -0.019850531592965126, + 0.01478174701333046, + 0.02137647569179535, + 0.001101332949474454, + 0.026378916576504707, + -0.019770918413996696, + 0.010363145731389523, + -0.03070463426411152, + -0.0008313903235830367, + -0.004687299951910973, + 0.0009288350702263415, + -0.04524753615260124, + 0.008074230514466763, + -0.03309306502342224, + -0.0011162606533616781, + 0.009202101267874241, + 0.03579995781183243, + -0.030678095296025276, + 0.005048882216215134, + -0.01796632446348667, + -0.015365585684776306, + 0.0022408145014196634, + -0.005403829738497734, + -0.008001250214874744, + -0.04057682305574417, + -0.018457280471920967, + 0.005539837758988142, + 0.022822804749011993, + 0.0046508098021149635, + 0.015790196135640144, + 0.010276896879076958, + -0.010329972952604294, + -0.01091381162405014, + -0.008877009153366089, + -0.03227038308978081, + 0.011451208963990211, + -0.02217262051999569, + 0.02234511822462082, + 0.017209986224770546, + 0.0046010506339371204, + -0.03142116218805313, + -0.010363145731389523, + -0.003375320229679346, + -0.023273952305316925, + -0.03447305038571358, + 0.01600250042974949, + 0.010648430325090885, + 0.00012336090730968863, + -0.0336238294839859, + -0.014582710340619087, + -0.02770582213997841, + -0.01096025388687849, + 0.01998322270810604, + -0.01751517504453659, + -0.0357203409075737, + -0.025715462863445282, + 0.02507854625582695, + -0.0051351310685276985, + 0.027493517845869064, + 0.0069397250190377235, + 0.001218266668729484, + -0.02701583132147789, + 0.01723652519285679, + -0.016931336373090744, + 0.002280621789395809, + -0.005735556595027447, + 0.003463227767497301, + -0.01495424471795559, + -0.0041631716303527355, + 0.018072476610541344, + -0.003907741978764534, + 0.0052844081073999405, + 0.005884833633899689, + -0.004670713562518358, + -0.024746820330619812, + -0.00827326625585556, + -0.039913371205329895, + 0.012247353792190552, + 0.015007320791482925, + -0.001945577678270638, + -0.010820928029716015, + -0.00492614321410656, + 0.02077936753630638, + 0.013627337291836739, + -0.008963258005678654, + -0.005237966310232878, + -0.006952994037419558, + 0.017647866159677505, + -0.004747010767459869, + -0.02349952794611454, + -0.01989034004509449, + -0.01337522454559803, + -0.003347123507410288, + 0.019240153953433037, + 0.025197967886924744, + 0.01042949128895998, + -0.02799774333834648, + 0.017130373045802116, + -0.019492266699671745, + 0.0054701752960681915, + -0.02462739869952202, + -0.0005444466369226575, + -0.008379419334232807, + -0.006899917498230934, + -0.004770231433212757, + -0.012526004575192928, + 0.011497651226818562, + 0.00018213875591754913, + -0.0028677782975137234, + 0.008585089817643166, + -0.007583274971693754, + -0.002333698095753789, + 0.0022225696593523026, + 0.02533065900206566, + 0.024308940395712852, + 0.03924991562962532, + -0.03696763515472412, + -0.027387365698814392, + 0.004584464710205793, + -0.034977275878190994, + 0.005350753199309111, + 0.00809413380920887, + 0.003801589133217931, + -0.009029603563249111, + 0.019147271290421486, + -0.0242160577327013, + 0.042116034775972366, + 0.0072250100784003735, + 0.024348746985197067, + 0.0017780556809157133, + 0.020460909232497215, + -0.026591220870614052, + -0.003566063242033124, + 0.011676783673465252, + 0.00853201374411583, + -0.013905988074839115, + 0.035348810255527496, + 0.004129998851567507, + 0.02376490831375122, + -0.013176188804209232, + 0.025768538936972618, + -0.018536893650889397, + -0.018881889060139656, + -0.0016586340498179197, + 0.014808285050094128, + -0.017846902832388878, + -0.00614026328548789, + -0.022159351035952568, + 0.007324527949094772, + 0.0355345755815506, + -0.018775736913084984, + -0.014503096230328083, + 0.02762620896100998, + 0.009314889088273048, + 0.007244913373142481, + 0.040868744254112244, + 0.006199974101036787, + 0.014901168644428253, + -0.0013716903049498796, + 0.0056194523349404335, + 0.023181069642305374, + 0.0137732969596982, + -0.013322148472070694, + -0.020487448200583458, + -0.0040039424784481525, + 0.002322087762877345, + 0.014317329041659832, + 0.021880701184272766, + 0.0028279710095375776, + -0.002720159711316228, + 0.03245615214109421, + 0.014330598525702953, + 0.007244913373142481, + -0.023340297862887383, + 0.020912058651447296, + 0.040974896401166916, + -0.009560366161167622, + 0.022464539855718613, + -0.010157475247979164, + -0.01900131069123745, + -0.014144831337034702, + 0.02154897339642048, + -0.003741878317669034, + -0.04073605313897133, + -0.0010399635648354888, + 0.004740376025438309, + -0.00967978872358799, + 0.009115852415561676, + 0.014768477529287338, + -0.0019439191091805696, + -0.029775798320770264, + 0.024866241961717606, + -0.026976024731993675, + -0.01644038036465645, + -0.026259494945406914, + 0.016254613175988197, + 0.0024995615240186453, + 0.012174373492598534, + -0.006826937664300203, + 0.015431931242346764, + 0.013972332701086998, + 0.0054734922014176846, + 0.011763032525777817, + 0.012366775423288345, + 0.009938535280525684, + -0.017554983496665955, + 0.026631027460098267, + 0.008167114108800888, + -0.0012464635074138641, + -0.028024280443787575, + -0.016055578365921974, + -0.0169976819306612, + 0.015790196135640144, + 0.02385779283940792, + 0.018802275881171227, + 0.11453863233327866, + 0.02913888357579708, + -0.006846841424703598, + -0.002191055566072464, + -0.006959628313779831, + 0.030412713065743446, + 0.0036921193823218346, + 0.005984351504594088, + 0.01360079925507307, + -0.05642009526491165, + -0.002856167731806636, + -0.018895158544182777, + 0.011491016484797001, + -0.03924991562962532, + -0.013295610435307026, + -9.226152178598568e-05, + 0.0035328904632478952, + 0.008565186522901058, + -0.003798271995037794, + 0.021840892732143402, + 0.02631257101893425, + -0.02059360034763813, + 0.027440441772341728, + 0.01839093491435051, + -0.045804835855960846, + -0.03168654441833496, + 0.03126193583011627, + -0.008784125559031963, + -0.013474742881953716, + 0.023645486682653427, + -0.038772229105234146, + -0.0017000999068841338, + -0.05960467457771301, + -0.02799774333834648, + 0.017130373045802116, + -0.011822743341326714, + -0.01943919062614441, + -0.022756459191441536, + 0.011510919779539108, + -0.012559177353978157, + 0.0003259216027799994, + 0.022331848740577698, + -0.009527194313704967, + -0.014940975233912468, + 0.001741565763950348, + -0.01601576991379261, + 0.005334167275577784, + -0.010409587062895298, + -0.03420766815543175 + ], + "metadata": { + "source": "Kreye_Marieke_BA_241_V2.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 17, + "has_images": true, + "image_count": 98, + "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", + "links": [], + "last_modified": "2025-05-05T23:00:23", + "_known_field_names": "frozenset({'is_continuation', 'sent_to', 'header_footer_type', 'email_message_id', 'filename', 'languages', 'detection_class_prob', 'sent_from', 'link_texts', 'cc_recipient', 'subject', 'image_mime_type', 'image_path', 'filetype', 'page_number', 'last_modified', 'signature', 'detection_origin', 'text_as_html', 'attached_to_filename', 'bcc_recipient', 'data_source', 'link_start_indexes', 'category_depth', 'emphasized_text_tags', 'parent_id', 'orig_elements', 'page_name', 'coordinates', 'url', 'link_urls', 'file_directory', 'links', 'table_as_cells', 'emphasized_text_contents', 'key_value_pairs', 'image_base64'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "Kreye_Marieke_BA_241_V2.pdf", + "detection_class_prob": 0.3422867953777313, + "parent_id": "e02392183bc6851689602ad4b9f6039f", + "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", + "id": "ce00eae5-7e07-454f-9e4f-f79ac36f92f4", + "processing_timestamp": "2025-05-05T23:15:46.977945", + "chunk_number": 35, + "total_chunks": 56, + "chunking_strategy": "hybrid", + "word_count": 714 + } +} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000036.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000036.json new file mode 100644 index 0000000000000000000000000000000000000000..5028cf4c93621ed81b56fd18a54aa2deb4736aa0 --- /dev/null +++ b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000036.json @@ -0,0 +1,1570 @@ +{ + "id": "61a115b2-0ff7-441a-f6d9-eb3d00000036", + "content": "F\u00fcr Grafenb\u00fchl liegt die Reduktion im gesamten Fallstudiengebiet bei einer Zunahme des Gr\u00fcnanteils um 1,3 bei knapp 0,06 %. ## 6.3 Auswirkungen auf die Evapotranspiration\n\nDie Daten der t\u00e4glichen Evapotranspiration weisen sowohl im Status Quo der einzelnen Gebietsausschnitte als auch f\u00fcr die einzelnen Szenarien gro\u00dfe \u00c4hnlichkeiten auf. \u00dcber das Jahr ist die Evapotranspiration durch viele Spitzen gekennzeichnet, aber im Schnitt steigt die Evapotranspirationsrate bis April an und sinkt ab Anfang Juni in Gromb\u00fchl und ab Anfang Juli in Grafenb\u00fchl wieder ab. Die Evapotranspiration f\u00fcr den Gebietsausschnitt I ist in Abbildung 24 dargestellt. F\u00fcr die anderen Gebietsausschnitte ergibt sich ein \u00e4hnlicher Verlauf der Graphen, aber in diesem Gebietsausschnitt ist die Auswirkung zus\u00e4tzlichen Gr\u00fcns zwischen Status Quo und den beiden Szenarien am deutlichsten zu beobachten. W\u00e4hrend die Evapotranspiration im Status Quo ann\u00e4hrend gleichbleibend ist, erh\u00f6ht sich diese im 43\nErgebnisse\nJahresdurchschnitt in Szenario A um den Faktor 9,4 und in Szenario B um den Faktor 28,6. [IMAGE: t\u00e4gliche Evapotranspiration Gebietsausschnitt | Gromb\u00fchl [MWh] \u2014 D D &@ @ > > 0 o 0. oO a e} a o Evapotranspiration x x N N N N > \u00a3 N x Ro RG gr DEN Zr > IS RS E E X) \u00a9 S N N SS PS g S S & S > & N & g ce ee 2 Ss \u00a9 Status Quo Szenario A Szenario B]\n\nAbbildung 24: T\u00e4gliche Evapotranspiration im Gebietsausschnitt I (eigene Darstellung und Berechnung auf Grundlage der Simulationsergebnisse)\nIn dem Gebietsausschnitt II liegt die t\u00e4gliche Evapotranspiration im Durchschnitt bei 8,4 MWh (Status Quo), 31,6 MWh (Szenario C) bzw. 53,8 MWh (Szenario D). Im Vergleich zum Status Quo steigt die Summe der Evapotranspiration pro Jahr in Szenario C um den Faktor 3,7 und in Szenario D um den Faktor 6,3 (vgl. Anhang 7.1). Der Unterschied der t\u00e4glichen Evapotranspiration ist zwischen Status Quo und Szenario E in dem Gebietsausschnitt III geringer als bei den vorherigen Szenarien. Der Mai, der Monat mit der h\u00f6chsten Evapotranspirationsmenge, verzeichnet im gesamten Fallstudiengebiet im Schnitt eine t\u00e4gliche Evapotranspiration von 62 MWh (Status Quo) und 108 MWh (Szenario E). Die Summe der j\u00e4hrlichen Evapotranspiration nimmt ausgehend vom Status Quo mit einer Zunahme von 500 B\u00e4umen in dem Quartier um den Faktor 1,7 zu (vgl. Anhang 7.2). In dem Gebietsausschnitt IV steigt die t\u00e4gliche Evapotranspiration bei einer Verdopplung der B\u00e4ume erkennbar an. Summiert auf das Jahr kann ein Anstieg der Evapotranspiration von Szenario F auf Szenario G um den Faktor 1,7 beobachtet werden (vgl. Anhang 7.5). In dem gesamten Fallstudiengebiet (Gebietsausschnitt V) ist der Unterschied zwischen der t\u00e4glichen Evapotranspiration im Status Quo und der in Szenario H eher gering. Der H\u00f6chstwert liegt, wie bei allen anderen Szenarien im Mai bei 1.120 MWh. Im Jahresdurchschnitt erh\u00f6ht sich die Evapotranspiration um den Faktor 1,3 im Vergleich zum Status Quo (vgl. Anhang 7.6). In der in Abbildung 25 dargestellten Diagramme ist die Zunahme der Evapotranspiration in Gebietsausschnitt I ersichtlich. F\u00fcr jede Stunde eines Jahres ist die Summe der Evapotranspiration der 7 B\u00e4ume im Status Quo, der 82 B\u00e4ume in Szenario A an und der 257 B\u00e4ume in Szenario B dargestellt. F\u00fcr die anderen vier Gebietsausschnitte ergibt sich ein \u00e4hnlicher Verlauf (vgl. Anhang 7.3, 7.4, 7.7 und 7.8).", + "embedding": [ + 0.008350077085196972, + -0.0023456185590475798, + 0.03942587226629257, + -0.027011137455701828, + 0.015102861449122429, + 0.020089533179998398, + -0.03095891885459423, + -0.0024316515773534775, + -0.021505020558834076, + -0.03256919980049133, + 0.011207024566829205, + 0.01128494180738926, + 0.007577402982860804, + 0.010882372036576271, + 0.006236585788428783, + 0.019401269033551216, + 0.04093226045370102, + 0.00833059847354889, + 0.010174627415835857, + 0.001374094164930284, + 0.003032259875908494, + 0.020570019260048866, + -0.005687922239303589, + 0.004704223480075598, + -0.001774229109287262, + 0.008168271742761135, + 0.016518348827958107, + -0.01984279602766037, + -0.015817098319530487, + -0.0010616156505420804, + 0.011382337659597397, + -0.00398998660966754, + -0.02908891625702381, + 0.004155559465289116, + -0.0080124381929636, + -0.01742737740278244, + -0.018115641549229622, + -0.014895083382725716, + 0.016076821833848953, + -0.008142299950122833, + 0.014440569095313549, + -0.0016881960909813643, + -0.0007061204523779452, + -0.010486294515430927, + 0.004989917855709791, + 0.015531403943896294, + 0.00030314482864923775, + 0.0010819063754752278, + -0.028283776715397835, + 0.028335722163319588, + 0.018998699262738228, + 0.024868426844477654, + -0.009791537187993526, + -7.193095370894298e-05, + -0.012927685864269733, + 0.0003408857446629554, + -0.009551294147968292, + 0.00021731466404162347, + -0.012700429186224937, + 0.0028244818095117807, + -0.01577814109623432, + -0.007577402982860804, + -0.02334905043244362, + 0.00936948787420988, + -0.052100326865911484, + -0.008889001794159412, + -0.012590046972036362, + -0.003973753657191992, + 0.01540154218673706, + -0.031140724197030067, + 0.037140313535928726, + 0.0375039242208004, + 0.013531540520489216, + -0.042438652366399765, + 0.026361830532550812, + -0.010025287047028542, + 0.00133270095102489, + -0.0015112601686269045, + -0.007194312289357185, + 0.00035874167224392295, + 0.01889481022953987, + -0.017336474731564522, + -0.023232175037264824, + 0.03773767501115799, + 0.012427720241248608, + 0.01897272653877735, + 0.003925055731087923, + 0.015271681360900402, + -0.023465925827622414, + 0.02955641783773899, + 0.020557032898068428, + 0.01789487898349762, + 0.013895152136683464, + 0.020206408575177193, + 0.007635840680450201, + -0.0020258352160453796, + -0.018933767452836037, + 0.02637481689453125, + 0.020803770050406456, + -0.036984480917453766, + -0.0232581477612257, + 0.010122682899236679, + 0.002882919507101178, + 0.0003197832847945392, + -0.026193011552095413, + -0.0023634745739400387, + 0.023284120485186577, + 0.019622033461928368, + 0.0020079794339835644, + -0.029062945395708084, + -0.03246530890464783, + 0.02451780065894127, + -0.008739661425352097, + -0.009142231196165085, + 0.002904021879658103, + -0.008213723078370094, + 0.034828782081604004, + 0.004636046011000872, + -0.013934110291302204, + -0.01470029167830944, + 0.023608772084116936, + -0.017998768016695976, + -0.005418459884822369, + -0.02753058262169361, + 0.01727154478430748, + 0.01850522682070732, + 0.01968696340918541, + -0.0024332748726010323, + -0.028205860406160355, + -0.015388556756079197, + -0.025309955701231956, + -0.0021540732122957706, + 0.008648758754134178, + 0.004941219929605722, + -0.0258164145052433, + 0.02823183313012123, + -0.020284324884414673, + -0.00925261341035366, + -0.0248164813965559, + -0.03677670285105705, + -0.012784838676452637, + -0.006353461183607578, + -0.024323008954524994, + -0.01377827674150467, + 0.0072008054703474045, + 0.044230736792087555, + 0.00991490576416254, + 0.030673224478960037, + 0.013635429553687572, + -0.010395391844213009, + -0.0003047680947929621, + -0.013109492138028145, + 0.03025766834616661, + -0.003454308956861496, + 0.02085571363568306, + -0.008687716908752918, + -0.025777455419301987, + 0.013908138498663902, + -0.047659073024988174, + 0.007213791832327843, + -0.011083656921982765, + -0.012635498307645321, + -0.008291640318930149, + 0.008129313588142395, + 0.002231989987194538, + 0.007304694503545761, + -0.007012506946921349, + -0.011726469732820988, + 0.024725578725337982, + -0.024764537811279297, + 0.007064451463520527, + 0.019037656486034393, + -0.015609320253133774, + 0.02364773117005825, + -0.003951027989387512, + 0.009388967417180538, + -0.006778756622225046, + 0.009453898295760155, + 0.009752579033374786, + -0.03324447572231293, + -0.030673224478960037, + 0.0214790478348732, + 0.013869180344045162, + -0.006583964452147484, + -0.015388556756079197, + -0.01290820725262165, + 0.036594897508621216, + 0.01625862717628479, + -0.014453555457293987, + -0.009934384375810623, + -0.011122615076601505, + 0.016297584399580956, + 0.008083862252533436, + 0.004798372741788626, + -0.6341384053230286, + 0.010252544656395912, + -0.00805788952857256, + -5.508957110578194e-05, + 0.023933425545692444, + 0.01462237536907196, + 0.01307053305208683, + 0.021375158801674843, + -0.011414802633225918, + 0.01884286478161812, + 0.014726264402270317, + -0.004564622417092323, + -0.0037107847165316343, + -0.007739729713648558, + 0.010259037837386131, + -0.028673360124230385, + -0.012875741347670555, + 0.003480281215161085, + 0.01571320928633213, + -0.006447610445320606, + -0.022738702595233917, + 0.0008781866054050624, + -0.01229136623442173, + 0.0273747481405735, + 0.021024534478783607, + 0.023050369694828987, + -0.004678251221776009, + -0.03311461582779884, + -0.007337159942835569, + 0.015232723206281662, + -0.006947576068341732, + 0.011999178677797318, + -0.011544663459062576, + 0.0285435002297163, + 0.040958233177661896, + -0.018297448754310608, + -0.00696056243032217, + 0.005756099242717028, + -0.00025931664276868105, + 0.02286856435239315, + -0.01399904116988182, + 0.0034153505694121122, + 0.020660921931266785, + -0.002020965563133359, + 0.0004679062694776803, + 0.002352111740037799, + 0.01202515047043562, + -0.02427106536924839, + 0.0003761917760130018, + -0.02171279862523079, + 0.009707127697765827, + 0.02646571956574917, + -0.006535266526043415, + 0.008421501144766808, + 0.01255758199840784, + 0.008031917735934258, + 0.01884286478161812, + 0.00964869000017643, + 0.0027790304739028215, + -0.0023212695959955454, + 0.00925910659134388, + -0.001447141170501709, + 0.006921603810042143, + 0.013544526882469654, + -0.013596471399068832, + 0.035192396491765976, + -0.028361694887280464, + -0.007648827042430639, + 0.014232791028916836, + -0.019972657784819603, + -0.008655251003801823, + 0.01163556706160307, + -0.002231989987194538, + -0.027894193306565285, + 0.019024671986699104, + 0.007441048976033926, + 0.023998357355594635, + -0.005100300069898367, + -0.008031917735934258, + 0.009408446960151196, + -0.009194175712764263, + -0.0068696592934429646, + -0.018635086715221405, + 0.020336270332336426, + 0.025725509971380234, + -0.014518486335873604, + -0.014985986985266209, + 0.007304694503545761, + -0.0019333091331645846, + 0.016154738143086433, + 0.022686757147312164, + 0.03223155811429024, + -0.008220216259360313, + 0.0013521801447495818, + -0.0035906631965190172, + 0.03134850412607193, + -0.006804728880524635, + 0.05113935470581055, + 0.013018588535487652, + -0.038231149315834045, + -0.02177772857248783, + -0.008544869720935822, + 0.02893308363854885, + -0.0037335106171667576, + 0.02021939493715763, + 0.01307053305208683, + -0.03786753490567207, + -0.0071878195740282536, + 0.04326976463198662, + -0.019180504605174065, + -0.00041088907164521515, + -0.021582936868071556, + 0.007142367772758007, + -0.010960288345813751, + -0.007668306119740009, + -0.01836237870156765, + 0.030465446412563324, + -0.005230161361396313, + -0.002029081806540489, + -0.004967192187905312, + 0.016674183309078217, + -0.00762285478413105, + 0.010297995992004871, + -0.021829674020409584, + -0.011434282176196575, + 0.021686825901269913, + -0.0046100737527012825, + -0.012538102455437183, + -0.01399904116988182, + -0.01657029427587986, + 0.017622169107198715, + 0.020271338522434235, + 0.03662087023258209, + -0.009304557926952839, + 0.03591961786150932, + -0.016778072342276573, + 0.03212767094373703, + 0.008427994325757027, + -0.008382542990148067, + -0.028725305572152138, + -0.0066878534853458405, + -0.01127844862639904, + 0.03532225638628006, + -0.03212767094373703, + 0.003290359163656831, + -0.0063989125192165375, + -0.00026093990891240537, + 0.021141409873962402, + -0.01766112819314003, + -0.005762592423707247, + -0.011181052774190903, + -0.004574362188577652, + 0.023465925827622414, + 0.013544526882469654, + 0.003960767760872841, + 0.013544526882469654, + -0.010583690367639065, + -0.025413844734430313, + -0.026959192007780075, + -0.02768641524016857, + 0.013713346794247627, + 0.02405030094087124, + -0.01975189335644245, + -0.005304831545799971, + -0.022660786285996437, + -0.006493061780929565, + -0.0107395239174366, + 0.001882987911812961, + -0.015193765051662922, + -0.017920849844813347, + -0.00894094631075859, + -0.018803907558321953, + 0.01528466772288084, + 0.009694141335785389, + -0.026959192007780075, + -0.018764948472380638, + -0.029374612495303154, + 0.010596676729619503, + 0.006106724496930838, + -0.006415145006030798, + 0.017414391040802002, + -0.009395460598170757, + -0.014466541819274426, + -0.003905576653778553, + 0.031634196639060974, + 0.019102588295936584, + 0.0205310620367527, + 0.010012301616370678, + -0.013083519414067268, + 0.019258420914411545, + 0.0023391256108880043, + 0.042750317603349686, + -0.005736620165407658, + 0.00567818246781826, + -0.010713552124798298, + -0.031867947429418564, + 0.009746085852384567, + 0.016855988651514053, + -0.03469892218708992, + 0.03464697673916817, + 0.0625411719083786, + 0.0009609731496311724, + 0.02807599864900112, + -0.01827147603034973, + 0.01884286478161812, + -0.022647799924016, + 0.018089670687913895, + 0.0005738243344239891, + 0.01497300062328577, + 0.03334836661815643, + 0.025855371728539467, + 0.004662018269300461, + -0.027011137455701828, + -0.0007280345307663083, + -0.015817098319530487, + 0.02138814516365528, + -0.007135875057429075, + -0.018868837505578995, + 0.01718064211308956, + -0.0037270174361765385, + 0.018622100353240967, + 0.00313939549960196, + 0.006282037124037743, + 0.0012702052481472492, + -0.0048665497452020645, + 0.011564143002033234, + -0.0031458884477615356, + 0.015985917299985886, + 0.004934726748615503, + -0.016609251499176025, + -0.0070254928432404995, + 0.003025766694918275, + 0.0038081808015704155, + 0.006561238784343004, + 0.022985437884926796, + 0.030361557379364967, + 0.004522417671978474, + -6.858296546852216e-05, + 0.025037245824933052, + 0.004486705642193556, + 0.009505842812359333, + 0.008668237365782261, + 0.020401200279593468, + -0.031867947429418564, + 0.01882987841963768, + 0.008376049809157848, + 0.021258285269141197, + 0.019180504605174065, + -0.0015802489360794425, + 0.00871368870139122, + -0.006207366939634085, + 0.01540154218673706, + 0.020414186641573906, + -0.01990772783756256, + 0.01311598438769579, + -0.0024543774779886007, + 0.00025972246658056974, + 0.001792085007764399, + 0.018401337787508965, + 0.03498461842536926, + 0.009155217558145523, + 0.0005713894497603178, + 0.0011135600507259369, + -0.005291845183819532, + -0.008304625749588013, + -0.009668168611824512, + -0.016284599900245667, + -0.019388282671570778, + 0.006545006297528744, + 0.0027254626620560884, + 0.005908686202019453, + -0.003960767760872841, + -0.0161936953663826, + 0.01166803203523159, + -0.003980246838182211, + 0.002584238536655903, + -0.0032108190935105085, + -0.0018975973362103105, + -0.0031848468352109194, + -0.004463979974389076, + -0.010479801334440708, + -0.010362926870584488, + -0.009499349631369114, + 0.01821953058242798, + -0.004197764676064253, + -0.002527424367144704, + 0.013109492138028145, + -0.0029721991159021854, + -0.0146613335236907, + 0.007239764090627432, + -0.0056164986453950405, + -0.007408583536744118, + -0.003405611030757427, + -0.008525390177965164, + 0.007954000495374203, + -0.02760849893093109, + 0.009200668893754482, + -0.00925910659134388, + 0.015102861449122429, + 0.002270948374643922, + -0.014258763752877712, + 0.0027433186769485474, + -0.010609663091599941, + -0.003447815775871277, + 0.04155559465289116, + 7.75616499595344e-05, + -0.01649237610399723, + -0.01633654348552227, + 0.0013659779215231538, + -0.01595994643867016, + -0.021842660382390022, + -0.022154327481985092, + -0.011226504109799862, + 0.02302439697086811, + -0.011973205953836441, + 0.018245503306388855, + 0.0022936740424484015, + -0.013349735178053379, + 0.04973685368895531, + -0.001401689718477428, + -0.021842660382390022, + -0.017167655751109123, + -0.010259037837386131, + -0.004058163613080978, + 0.01497300062328577, + 0.023297104984521866, + 0.0068501802161335945, + 0.030075863003730774, + -0.010044766589999199, + 0.007252749986946583, + 0.0065125408582389355, + -0.03643906116485596, + -0.0015834954101592302, + 0.0038828509859740734, + 0.015583348460495472, + 0.0018862345023080707, + 0.02333606407046318, + -0.008921466767787933, + 0.01586904376745224, + -0.004425021819770336, + -0.009122751653194427, + -0.02558266371488571, + 7.639492832822725e-05, + 0.00437632342800498, + 0.0013927617110311985, + -0.011168066412210464, + -0.0001626309094717726, + 0.054178107529878616, + 0.0008327351533807814, + 0.020271338522434235, + 0.02405030094087124, + 0.017985781654715538, + 0.02310231328010559, + -0.006765770260244608, + -0.01311598438769579, + 0.015908000990748405, + 0.005733373574912548, + 0.023686690255999565, + -0.009551294147968292, + -0.006035300903022289, + 0.028491554781794548, + -0.0248164813965559, + 0.04114003852009773, + -0.006200874224305153, + 0.005739866755902767, + 0.027634471654891968, + 0.0027903933078050613, + -0.010044766589999199, + 0.011882303282618523, + -0.00941493920981884, + -0.00933702290058136, + 0.017790989950299263, + -0.017245572060346603, + -0.01897272653877735, + -5.4785210522823036e-05, + -0.00026986788725480437, + -0.01642744615674019, + 0.0009617847972549498, + -0.011849837377667427, + 0.008927959948778152, + 0.024258079007267952, + -0.02029731124639511, + 0.0015745675191283226, + -0.013310777023434639, + -0.045087821781635284, + -0.02877724915742874, + 0.006122957449406385, + -0.017375433817505836, + -0.013895152136683464, + 0.004551636520773172, + -0.001553465030156076, + -0.00875914003700018, + 0.00972011312842369, + -0.01237577572464943, + 0.0065125408582389355, + -0.018557170405983925, + -0.021414117887616158, + -0.002417042152956128, + 0.022673772647976875, + 0.02007654681801796, + 0.011492718942463398, + -0.004967192187905312, + -0.0062430789694190025, + -0.017946822568774223, + -0.019660990685224533, + -0.019570088014006615, + 0.008850043639540672, + -0.008103340864181519, + -0.0038666182663291693, + 0.006895631551742554, + 0.004425021819770336, + -0.01890779659152031, + -0.014453555457293987, + -0.01236928254365921, + -0.011505705304443836, + -0.013713346794247627, + 0.03490670025348663, + -0.008486432023346424, + -0.01718064211308956, + -0.012005670927464962, + 0.011719976551830769, + 0.010005808435380459, + 0.023543842136859894, + -0.019401269033551216, + 0.047814905643463135, + 0.010207093320786953, + -0.006876152474433184, + -0.03259516879916191, + 0.004087382461875677, + 0.003059855429455638, + -0.01438862457871437, + -0.01100573968142271, + -0.010460322722792625, + 0.0012831913772970438, + 0.02427106536924839, + -0.009811016730964184, + 0.019583074375987053, + -0.009596745483577251, + 0.0026329364627599716, + 0.013180915266275406, + 0.0025712524075061083, + -0.0039640143513679504, + 0.014362652786076069, + 0.02877724915742874, + 0.0031182928942143917, + -0.014102930203080177, + 0.04459434747695923, + 0.01625862717628479, + 0.02146606147289276, + 0.019492171704769135, + -0.008350077085196972, + 0.017219599336385727, + -0.032413363456726074, + -0.004713962785899639, + 0.008161778561770916, + 0.0061813946813344955, + 0.018946753814816475, + -0.007655319757759571, + -0.030231695622205734, + -0.01672612689435482, + -0.010096711106598377, + 0.02519308030605316, + -0.021647868677973747, + 0.016297584399580956, + -0.0323873907327652, + 0.011304420419037342, + -0.019505158066749573, + -0.0010632388293743134, + 0.004905508365482092, + -0.018180573359131813, + -0.0025696291122585535, + 0.014985986985266209, + 0.013934110291302204, + -0.007778687868267298, + -0.023310091346502304, + -0.041269902139902115, + -0.023751620203256607, + 0.0015250579454004765, + -0.011882303282618523, + -0.026881275698542595, + -0.00470746960490942, + -0.02543981559574604, + 0.006902124732732773, + -0.0023943164851516485, + 0.03836100921034813, + 0.008966918103396893, + 0.02138814516365528, + 0.01944022625684738, + -0.0017628662753850222, + 0.011719976551830769, + 0.004535403568297625, + -0.000845721282530576, + -0.02163488231599331, + 0.021050507202744484, + -0.006424884777516127, + 0.009570772759616375, + 0.029660306870937347, + 0.010635634884238243, + 0.013557513244450092, + 0.04365934804081917, + -0.029894055798649788, + -0.010401885025203228, + -0.012460185214877129, + -0.027504609897732735, + -0.007843618281185627, + 0.012667963281273842, + 0.00629827007651329, + -0.0039023300632834435, + -0.024569746106863022, + -0.011408309452235699, + 0.04124392941594124, + 0.0036004027351737022, + -0.009453898295760155, + -0.02372564747929573, + 0.007531951647251844, + -0.03397170081734657, + 0.01820654608309269, + 0.008577334694564342, + -0.002878049621358514, + -0.014089943841099739, + -0.016206681728363037, + -0.0245957188308239, + -0.043607402592897415, + 0.015687236562371254, + -0.022751688957214355, + 0.005194449331611395, + -0.009116258472204208, + -0.007389104459434748, + -0.009005877189338207, + -0.002941356971859932, + 0.00793452188372612, + -0.03334836661815643, + 0.01136285811662674, + -0.005983356386423111, + -0.00038674299139529467, + -0.009401953779160976, + 0.0027692909352481365, + -0.009940877556800842, + 0.03449114412069321, + 0.002967329230159521, + -0.0025680060498416424, + 0.0390622615814209, + 0.0019982396624982357, + 0.012038136832416058, + 0.021608909592032433, + -0.0037107847165316343, + 0.043217819184064865, + 0.01594696007668972, + 0.04363337531685829, + 0.03841295465826988, + -0.01764814183115959, + -0.00897990446537733, + -0.04441254213452339, + 0.003629621583968401, + -0.010207093320786953, + 0.01233681757003069, + -0.008973411284387112, + -0.006184641271829605, + -0.012836783193051815, + -0.009843481704592705, + 0.011077163740992546, + -0.002379707060754299, + -0.003788701491430402, + 0.05661949887871742, + 0.02584238536655903, + 0.002792016603052616, + -0.01166803203523159, + 0.003196209669113159, + 0.00011342567449901253, + 0.013739318586885929, + -0.0009804522851482034, + -0.0042399694211781025, + -0.0006931343232281506, + -0.020985575392842293, + -0.0066748675890266895, + 0.05038616061210632, + 0.01789487898349762, + 0.02062196470797062, + -0.02597224712371826, + -0.010285009630024433, + -0.012070601806044579, + -0.009966850280761719, + -0.0073631322011351585, + 0.021738771349191666, + -0.012453692965209484, + 0.03537420183420181, + -0.013323762454092503, + -0.008389036171138287, + 0.01131740678101778, + -0.013135463930666447, + -0.02107647806406021, + -0.0055742934346199036, + -0.022582868114113808, + 0.014713278040289879, + 0.007583896163851023, + -0.026413775980472565, + 0.003954274579882622, + 0.021375158801674843, + 0.010947301983833313, + -0.0002737231261562556, + -0.007726743351668119, + -0.014817167073488235, + 0.004252955317497253, + 0.006236585788428783, + 0.010278516449034214, + 0.005110039841383696, + 0.005720387678593397, + -0.010083724744617939, + -0.011083656921982765, + -0.0020550540648400784, + -0.025258010253310204, + -0.010505774058401585, + 0.03363405913114548, + -0.043996986001729965, + 0.011499212123453617, + 0.026244955137372017, + 0.006739798001945019, + 0.03103683516383171, + -0.008668237365782261, + -0.019193490967154503, + -0.02193356305360794, + 0.02006356045603752, + -0.02224523015320301, + 0.014947027899324894, + 0.058697279542684555, + -0.006460596341639757, + 0.005931411869823933, + 0.0168040432035923, + -0.018011754378676414, + -0.020024603232741356, + 0.027011137455701828, + -0.009382474236190319, + -0.021673839539289474, + 0.001993370009586215, + -0.005463911686092615, + -0.0031751072965562344, + -0.00437957001850009, + -0.013947096653282642, + 0.010934315621852875, + 0.0010713551891967654, + 0.005090560298413038, + -0.01881689392030239, + -0.01073303073644638, + 0.011895289644598961, + 0.00495745288208127, + -0.015232723206281662, + 0.028959056362509727, + -0.010843412950634956, + 0.021842660382390022, + 0.011661538854241371, + 0.012752373702824116, + -0.011330393142998219, + -0.0036101422738283873, + -0.010466815903782845, + -0.01712869666516781, + 0.009051328524947166, + 0.002451130887493491, + -0.006434624083340168, + 0.0001301656011492014, + -0.02162189595401287, + -0.013518555089831352, + 0.023284120485186577, + -0.0009179566404782236, + 0.004538650158792734, + -0.014752236194908619, + 0.021972520276904106, + -0.025011274963617325, + 0.0060482872650027275, + 0.009849974885582924, + -0.010791468434035778, + -0.004041931126266718, + -0.013531540520489216, + -0.03166016936302185, + 0.004739935044199228, + 0.009622717276215553, + 0.02076481096446514, + 0.024855440482497215, + -0.023790579289197922, + 0.0029803153593093157, + -0.011499212123453617, + -0.04503587633371353, + -0.033815864473581314, + -0.020946618169546127, + 0.0017937083030119538, + -0.00871368870139122, + 0.007492993492633104, + -0.009362994693219662, + 0.01758321188390255, + -0.011823865585029125, + 0.024881413206458092, + -0.047425322234630585, + -0.0026686484925448895, + -0.00995386391878128, + -0.008681223727762699, + 0.02389446832239628, + -0.016830015927553177, + -0.035062532871961594, + -0.016323557123541832, + 0.024063287302851677, + -0.0051847100257873535, + 0.006074259523302317, + 0.01882987841963768, + -0.00936948787420988, + 0.014362652786076069, + -0.00568142905831337, + 0.007467021234333515, + 0.007272229064255953, + -0.0005024006823077798, + -0.010564211755990982, + -0.03153030946850777, + -0.00468474393710494, + 0.018713004887104034, + 0.006119710858911276, + -0.051606856286525726, + -0.0012247537961229682, + 0.0034413228277117014, + -0.002920254599303007, + -0.017765017226338387, + 0.005178216844797134, + -0.021829674020409584, + -0.011791400611400604, + -0.01881689392030239, + 0.026413775980472565, + 0.032802946865558624, + -0.0025923550128936768, + 0.004551636520773172, + 0.027712387964129448, + -0.024024328216910362, + -0.01905064284801483, + -0.003928302321583033, + -0.021427104249596596, + 0.006197627633810043, + 0.017323488369584084, + -0.0033698990009725094, + 0.01633654348552227, + -0.030075863003730774, + 0.017362447455525398, + -0.003399117849767208, + 0.029036972671747208, + -0.007876084186136723, + -0.022673772647976875, + -0.01104469783604145, + 0.01828446239233017, + 0.032647114247083664, + -0.02528398297727108, + 0.018946753814816475, + -0.014479528181254864, + -0.011681018397212029, + -0.007726743351668119, + -0.002285557799041271, + -0.016401473432779312, + -0.03340030834078789, + -0.015985917299985886, + -0.017713071778416634, + 0.0033698990009725094, + -0.005655456800013781, + -0.013947096653282642, + 0.0015128833474591374, + -0.032023780047893524, + 0.02651766501367092, + 0.18087072670459747, + -0.026335857808589935, + -0.013005603104829788, + 0.02823183313012123, + -0.02062196470797062, + -0.016440432518720627, + 0.022582868114113808, + -0.0021362174302339554, + -0.010810947977006435, + 0.022154327481985092, + -0.030127806589007378, + -0.0017661128658801317, + -0.00396726094186306, + 0.006346968002617359, + 0.0064800758846104145, + -0.02007654681801796, + -0.03233544901013374, + 0.010531745851039886, + 0.003619882045313716, + 0.030283641070127487, + 0.022349119186401367, + -0.021907590329647064, + 0.0014382131630554795, + -0.0026783880311995745, + 0.02302439697086811, + -0.0006622922956012189, + -0.0021281009539961815, + -0.013239352963864803, + 0.017154669389128685, + 0.006158669013530016, + -0.0023650978691875935, + -0.004347105044871569, + 0.006528773810714483, + -0.01131740678101778, + -0.005077574402093887, + 0.0023050368763506413, + 0.01960904709994793, + -0.012323831208050251, + 0.026881275698542595, + -0.000991815235465765, + -0.0028601938392966986, + -0.01633654348552227, + -0.003538718679919839, + -0.012427720241248608, + -0.029660306870937347, + 0.016855988651514053, + 0.00197226763702929, + -0.00603205431252718, + -0.012129039503633976, + -0.02068689465522766, + -0.029660306870937347, + -0.004184778314083815, + -0.011077163740992546, + 0.0336080864071846, + -0.004012712277472019, + -0.009005877189338207, + 0.02443988434970379, + -0.012622511945664883, + 0.00925910659134388, + -0.0016532958252355456, + -0.0323873907327652, + 0.03220558539032936, + -0.020089533179998398, + 0.00735014583915472, + -0.02334905043244362, + 0.0036880590487271547, + -0.02823183313012123, + 0.01377827674150467, + 0.004457486793398857, + -0.017401406541466713, + -0.0099603570997715, + -0.02823183313012123, + -0.026647524908185005, + 0.022050438448786736, + -0.02216731384396553, + -0.01633654348552227, + -0.0004192083142697811, + 0.011888796463608742, + 0.030932946130633354, + 0.013583485037088394, + -0.0008830564329400659, + 0.005937905050814152, + -0.009187682531774044, + -0.016907932236790657, + -0.015336612239480019, + -0.051087409257888794, + 0.02389446832239628, + 0.007609868422150612, + 0.0026783880311995745, + -0.023595785722136497, + -0.0014244153862819076, + 0.007570910267531872, + -0.010259037837386131, + -0.019505158066749573, + 0.015687236562371254, + -0.011642060242593288, + 0.003749743103981018, + 0.008616292849183083, + -0.020738840103149414, + 0.004879536107182503, + -0.00530807813629508, + 0.0484122671186924, + 0.02776433154940605, + -0.0008242130279541016, + 0.0029738224111497402, + 0.020583005622029305, + -0.005340543109923601, + 0.01360945776104927, + 0.008726675063371658, + -0.011804386042058468, + -0.006707333028316498, + -0.0234269667416811, + 0.014843138866126537, + 0.01104469783604145, + 0.008817577734589577, + 0.006483322009444237, + 0.001873248373158276, + -0.008512403815984726, + -0.012629005126655102, + -0.013856193982064724, + -0.005252887029200792, + 0.004733441863209009, + 0.008466952480375767, + 0.0030030410271137953, + 0.000503618095535785, + -0.020115505903959274, + -0.022647799924016, + 0.01588202826678753, + -0.03340030834078789, + -0.0032319214660674334, + 0.01458341721445322, + -0.025478774681687355, + -0.0026605320163071156, + -0.008142299950122833, + 0.011778414249420166, + 0.016388488933444023, + -0.013622444123029709, + -0.029270723462104797, + 0.003309838240966201, + 0.031088780611753464, + 0.018777934834361076, + -0.006876152474433184, + 0.008694210089743137, + -0.0016159607330337167, + 0.011934247799217701, + -0.003528979141265154, + 0.017375433817505836, + -0.009395460598170757, + -0.026647524908185005, + -0.017687100917100906, + 0.000780790694989264, + -0.005158737767487764, + -0.008233202621340752, + 0.012005670927464962, + 0.03677670285105705, + -0.012817303650081158, + -0.017336474731564522, + -0.054801441729068756, + 0.006785249803215265, + -0.006087245419621468, + -0.004782139789313078, + 0.003564690938219428, + 0.0036426077131181955, + -0.0336080864071846, + -0.0013578615617007017, + 0.014739250764250755, + -0.1623784899711609, + -0.009739592671394348, + 0.011797892861068249, + -0.02792016603052616, + 0.009635703638195992, + 0.01532362587749958, + 0.0049477131105959415, + -0.004308146424591541, + -0.01057719811797142, + -0.0065742251463234425, + 0.03056933544576168, + 0.018258489668369293, + -0.01725855842232704, + -0.004778893664479256, + 0.0014877227367833257, + 0.02232314646244049, + -0.018297448754310608, + 0.037218231707811356, + 0.030751140788197517, + 0.02140113152563572, + -0.0006018256535753608, + -0.014479528181254864, + 0.027089053764939308, + -0.0013237729435786605, + 0.013167928904294968, + 0.004681497346609831, + -0.010473309084773064, + 0.018232516944408417, + 0.011921261437237263, + 0.003095567226409912, + -0.0032741264440119267, + 0.0046717580407857895, + 0.023076342418789864, + -0.03272503241896629, + 0.006580718327313662, + -0.023297104984521866, + -0.0032936055213212967, + -0.02327113412320614, + 0.003235168056562543, + 0.038932397961616516, + 0.02138814516365528, + 0.0009853221708908677, + -0.022141341120004654, + 0.010551225394010544, + -0.02628391422331333, + 0.007077437359839678, + 0.013934110291302204, + 0.006262558046728373, + -0.02255689725279808, + 0.0007592824404127896, + 0.004642539191991091, + -0.018466267734766006, + -0.005759345833212137, + 0.01586904376745224, + -0.0036361145321279764, + 0.03540017455816269, + 0.00698004150763154, + 0.019881755113601685, + -0.010012301616370678, + 0.009492856450378895, + 0.005321064032614231, + -0.013401679694652557, + 0.009057820774614811, + 0.010129176080226898, + 0.010051259770989418, + -0.041036151349544525, + 0.008259174413979053, + -0.0021832920610904694, + -0.0027579281013458967, + -0.0032400379423052073, + -0.014765222556889057, + -0.01882987841963768, + 0.019699949771165848, + -0.0001562393008498475, + -0.0032367913518100977, + 0.008025424554944038, + -0.016297584399580956, + 0.007895562797784805, + 0.014466541819274426, + 0.0006440305733121932, + -0.031712114810943604, + 0.0594245009124279, + -0.018933767452836037, + -0.003160497872158885, + -0.017531266435980797, + -0.001023468910716474, + 0.004486705642193556, + 0.0011468370212242007, + 0.013174422085285187, + -0.007531951647251844, + 0.005661949981004, + -0.02473856508731842, + -0.009207162074744701, + -0.002306660171598196, + 0.00234237196855247, + -0.010934315621852875, + 0.011265462264418602, + -0.0036815661005675793, + 0.0026329364627599716, + -0.021271269768476486, + 0.011038204655051231, + 0.003058232134208083, + -0.03768572956323624, + -0.0006963808555155993, + 0.014258763752877712, + -0.010259037837386131, + -0.024634676054120064, + 0.006785249803215265, + 0.025154121220111847, + -0.02162189595401287, + -0.020180435851216316, + -0.016206681728363037, + 0.010882372036576271, + -0.019492171704769135, + -0.006405405700206757, + 0.023245161399245262, + 0.021336201578378677, + -0.023998357355594635, + 0.004252955317497253, + -0.0019787605851888657, + 0.031088780611753464, + -0.0063242423348128796, + -0.01240824069827795, + 0.011161573231220245, + -0.01042785681784153, + -0.014505499973893166, + -0.08217619359493256, + 0.0025128149427473545, + 0.013739318586885929, + 0.025699539110064507, + 0.021959535777568817, + -0.0016963124508038163, + -0.0178039763122797, + 0.019388282671570778, + 0.002009602729231119, + 0.009901919402182102, + -0.04716560244560242, + -0.015154805965721607, + -0.00991490576416254, + -0.016245640814304352, + 0.039633650332689285, + -0.02092064544558525, + -0.003619882045313716, + -0.017674114555120468, + -0.0052041891030967236, + 0.039010316133499146, + 0.01501195877790451, + -0.0022303666919469833, + -0.0030744648538529873, + -0.0072008054703474045, + -0.003373145591467619, + -0.025790441781282425, + -0.01649237610399723, + 0.020751826465129852, + 0.0168040432035923, + -0.0007580649689771235, + 0.03867267444729805, + -0.0168040432035923, + 0.011440775357186794, + -0.02512814849615097, + 0.0025144382379949093, + -0.0027205930091440678, + 0.0005377066554501653, + -0.03158225119113922, + 0.010252544656395912, + -0.04054267704486847, + -0.01633654348552227, + 0.0016963124508038163, + 0.03820517659187317, + -0.01890779659152031, + 0.009213654324412346, + -0.021336201578378677, + -0.008830564096570015, + -0.002111868467181921, + -0.014076958410441875, + -0.017985781654715538, + -0.03965962305665016, + -0.03329642117023468, + -0.0007840372272767127, + 0.01999863050878048, + 0.004444500897079706, + 0.01734946109354496, + 0.012200463563203812, + -0.019479185342788696, + -0.017790989950299263, + -0.008921466767787933, + -0.03340030834078789, + 0.012317338027060032, + -0.025881344452500343, + 0.020725853741168976, + 0.015817098319530487, + -0.001626512035727501, + -0.02101154811680317, + -0.009090286679565907, + -0.01920647732913494, + -0.0073631322011351585, + -0.033893782645463943, + 0.017453350126743317, + 0.006967055145651102, + -0.0012718284269794822, + -0.047191571444272995, + -0.0014162991428747773, + -0.03503656014800072, + -0.016778072342276573, + 0.015557375736534595, + -0.033945728093385696, + -0.02706308104097843, + -0.02582939900457859, + 0.013713346794247627, + 0.0016946891555562615, + 0.029270723462104797, + -0.0007986465934664011, + 0.014219805598258972, + -0.03168614208698273, + 0.016440432518720627, + -0.020985575392842293, + -0.004830838181078434, + -0.007596882525831461, + 0.017336474731564522, + -0.010551225394010544, + -0.01470029167830944, + 0.029738223180174828, + 0.004571115598082542, + 0.0006355084478855133, + 0.01368737407028675, + -0.019037656486034393, + -0.023050369694828987, + -0.013622444123029709, + -0.04612671211361885, + -0.0046100737527012825, + 0.02677738666534424, + 0.0041458201594650745, + -0.014297721907496452, + 0.011531678028404713, + 0.015336612239480019, + 0.03290683776140213, + -0.009694141335785389, + -0.005850248504430056, + -0.0042984071187675, + -0.0010729784844443202, + -0.004265941679477692, + -0.028335722163319588, + -0.025868358090519905, + -0.0009074053959921002, + 0.010707058943808079, + 0.02350488305091858, + 0.022284187376499176, + 0.005447678733617067, + -0.01928439363837242, + 0.02179071493446827, + -0.015349597670137882, + 0.010648621246218681, + -0.019505158066749573, + -0.004973685368895531, + 0.012797825038433075, + -0.0070254928432404995, + -0.007902055978775024, + -0.019803838804364204, + -0.012323831208050251, + -0.00365559384226799, + -0.002728709252551198, + 0.0020696634892374277, + 0.0007515719044022262, + -0.010525253601372242, + 0.0009358125389553607, + 0.022310160100460052, + 0.011258969083428383, + 0.03825711831450462, + -0.045087821781635284, + -0.007116395514458418, + 0.015102861449122429, + -0.026959192007780075, + -0.009187682531774044, + -0.00024714216124266386, + 0.008811084553599358, + -0.00898639764636755, + 0.014765222556889057, + -0.02171279862523079, + 0.03989337012171745, + 0.0004748051578644663, + 0.027868220582604408, + 0.013908138498663902, + 0.014856125228106976, + -0.03669878467917442, + 0.0008197490242309868, + 0.007473513949662447, + 0.016011890023946762, + -0.00698004150763154, + 0.03732211887836456, + 0.0068501802161335945, + 0.005541828460991383, + -0.010908343829214573, + 0.024777524173259735, + -0.015492445789277554, + -0.03758184239268303, + -0.005785318091511726, + 0.0063372282311320305, + -0.028829194605350494, + -0.0026134573854506016, + -0.024959329515695572, + 0.01272640097886324, + 0.035737812519073486, + 0.005110039841383696, + 0.0015964815393090248, + 0.016518348827958107, + 0.010194106958806515, + 0.005859988275915384, + 0.034958645701408386, + -0.002959212986752391, + 0.011797892861068249, + -0.01610279269516468, + 0.005814536940306425, + 0.02682933211326599, + 0.013148450292646885, + -0.014466541819274426, + -0.009492856450378895, + -0.011908275075256824, + 0.01703779399394989, + 0.0019251927733421326, + 0.01758321188390255, + -0.001194723416119814, + -0.0016930658603087068, + 0.017778003588318825, + 0.025920303538441658, + 0.019920714199543, + -0.030127806589007378, + 0.002939733676612377, + 0.0476331003010273, + 0.006700839847326279, + 0.021881617605686188, + -0.005158737767487764, + -0.02721891552209854, + -0.0058242762461304665, + 0.02677738666534424, + 0.009901919402182102, + -0.05765838921070099, + -0.006178148090839386, + -0.009187682531774044, + -0.01097327470779419, + 0.015830084681510925, + 0.006197627633810043, + -0.005191202741116285, + -0.015310639515519142, + 0.02310231328010559, + -0.016232654452323914, + -0.004863303154706955, + -0.01758321188390255, + 0.03155628219246864, + 0.012966644018888474, + 0.01062264945358038, + 0.008538376539945602, + 0.015336612239480019, + 0.03701045364141464, + 0.01127844862639904, + 0.014076958410441875, + -0.0017336475430056453, + 0.007148860953748226, + -0.00671382574364543, + 0.020089533179998398, + 0.008661744184792042, + -0.021414117887616158, + -0.019427241757512093, + -0.006408651825040579, + 0.004941219929605722, + 0.01898571290075779, + 0.02776433154940605, + 0.01664821058511734, + 0.10887566208839417, + 0.02023238129913807, + -0.008908480405807495, + 0.00602880772203207, + 0.0010908343829214573, + 0.03345225378870964, + 0.010453829541802406, + 0.0036068959161639214, + 9.536684228805825e-05, + -0.06778756529092789, + -0.006191134452819824, + -0.014193832874298096, + 0.005343789700418711, + -0.035841699689626694, + -0.03810128569602966, + -0.005496376659721136, + 0.001772605930455029, + 0.018700018525123596, + -0.013161436654627323, + 0.01727154478430748, + 0.030205722898244858, + -0.017310502007603645, + 0.02815391682088375, + 0.019479185342788696, + -0.034049615263938904, + -0.011694004759192467, + 0.019492171704769135, + -0.006103477906435728, + -0.004197764676064253, + 0.01782994717359543, + -0.035192396491765976, + -0.005795057862997055, + -0.06856673210859299, + -0.02721891552209854, + 0.016674183309078217, + -0.005957384128123522, + -0.005736620165407658, + -0.04004920646548271, + 0.01720661297440529, + -0.002792016603052616, + 0.002848830772563815, + 0.0245957188308239, + -0.01303157489746809, + -0.016843002289533615, + 0.00968115497380495, + -0.021440090611577034, + 0.003483527572825551, + -0.01616772450506687, + -0.030517389997839928 + ], + "metadata": { + "source": "Kreye_Marieke_BA_241_V2.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 17, + "has_images": true, + "image_count": 98, + "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", + "links": [], + "last_modified": "2025-05-05T23:00:23", + "_known_field_names": "frozenset({'is_continuation', 'sent_to', 'header_footer_type', 'email_message_id', 'filename', 'languages', 'detection_class_prob', 'sent_from', 'link_texts', 'cc_recipient', 'subject', 'image_mime_type', 'image_path', 'filetype', 'page_number', 'last_modified', 'signature', 'detection_origin', 'text_as_html', 'attached_to_filename', 'bcc_recipient', 'data_source', 'link_start_indexes', 'category_depth', 'emphasized_text_tags', 'parent_id', 'orig_elements', 'page_name', 'coordinates', 'url', 'link_urls', 'file_directory', 'links', 'table_as_cells', 'emphasized_text_contents', 'key_value_pairs', 'image_base64'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "Kreye_Marieke_BA_241_V2.pdf", + "detection_class_prob": 0.3422867953777313, + "parent_id": "e02392183bc6851689602ad4b9f6039f", + "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", + "id": "ce00eae5-7e07-454f-9e4f-f79ac36f92f4", + "processing_timestamp": "2025-05-05T23:15:46.977945", + "chunk_number": 36, + "total_chunks": 56, + "chunking_strategy": "hybrid", + "word_count": 527 + } +} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000037.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000037.json new file mode 100644 index 0000000000000000000000000000000000000000..ddb5f0d14fd36c87c33032a7059aee13eb1a26a3 --- /dev/null +++ b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000037.json @@ -0,0 +1,1570 @@ +{ + "id": "61a115b2-0ff7-441a-f6d9-eb3d00000037", + "content": "F\u00fcr die anderen vier Gebietsausschnitte ergibt sich ein \u00e4hnlicher Verlauf (vgl. Anhang 7.3, 7.4, 7.7 und 7.8). 44\nErgebnisse\n\n[IMAGE: Evapotranspiration in GAl_5tatusQuo 0 00:00 - 91:00 - 02:00 - 03:00 04:00 - 05:00 - 06:00 - 07:00 08:00 - 2.5 09.00 - 10:00 - 11:00 - 2.0 LAVIR FR] 12:00 - 13:00 - 14:00 - 15:00 - 16:00 17:00 - 18:00 19.00 - 20:00 - 21:00 - 22:00 23:00 - -0.0 January - February March - April Day June - July August - October - Navambar - December - Septerrber -]\n\n\n[IMAGE: Evapotranspiration in GAL_SzenarioA 20 00.00 - 91:00 - 02:00 - 03:00 04:00 - 05:00 - 06:00 - 07:00 08:00 - 2.5 09:00 - 10:00 - 11:00 - 2.0 LAVIR FR] 12:00 - 13:00 - 14:00 - 15:00 - 16:00 17:00 - 18:00 19.00 - 20:00 - 21:00 - 22:00 23:00 - -0.0 January - February March - April Day June - July August - October - Navambar - December - Septerrber -]\n\n\n[IMAGE: Evapotranspiration in GAl_SzenarioB \u201c0 ii | -0.0 00.00 - 01:00 1 0200 - 03:00 | 04:00 - 05:00 - 06:00 - 07:00 08:00 - 09.00 - 10.00 - 11:00 - | | 12:00 - | 13:00 - 12:00 - 15:00 - ul LAVIR FR] 16:00 17:00 - 18:00 19:00 - 20:00 - 21:00 - 22:00 23:00 - January - February March - April Day June - July August - October - Navambar - December - Septerrber -]\n\nAbbildung 25: T\u00e4gliche Evapotranspiration im Status Quo (oben), in Szenario A (mitte) und in Szenario B (unten) im Gebietsausschnitt I (eigene Berechnungen auf Grundlage der Simulationsergebnisse)\n45\nErgebnisse\nMit der Anzahl der B\u00e4ume steigt durch die Evapotranspiration der Energieentzug aus dem Gebiet an. Die Differenz zwischen solarer Strahlung und Evapotranspiration ist am Jahresende und am Jahresanfang f\u00fcr alle Gebietsausschnitte am h\u00f6chsten. Der geringste Energieentzug ist in den Sommermonaten zu verzeichnen. In Tabelle 5 ist der Energieentzug durch Evapotranspiration im Jahresmittel dargestellt:\nTabelle 5: Auflistung der \u00fcber die Monate gemittelte prozentuale Verringerung der Globalstrahlung (eigene Berechnungen auf Grundlage der Simulationsergebnisse)\n\n| Gebiets- | ausschnitt | Baumpflanzungs- | szenario | Prozentuale | Verringerung | der | Globalstrahlung | gemittelt | \u00fcber | die | Monate | Status | Quo | 0,6 | % | I | Szenario | A | 5,9 | % | Szenario | B | 17,5 | % | l | h | \u00fc | b | Status | Quo | 1,7 | % | m | o | r | II | Szenario | C | 6,5 | % | G | Szenario | D | 11,1 | % | Status | Quo | 2,8 | % | III | Szenario | E | 4,8 | % | Status | Quo | 1,6 | % | l | h | IV | Szenario | F | 4,9 | % | \u00fc | b | n | e | Szenario | G | 8,4 | % | f | a | r | G | V | Status | Quo | 2,9 | % | Szenario | H | 3,9 | % |\n|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|\n\nDie Diagramme in Abbildung 26 verdeutlichen, dass der Energieentzug eher gering ist. F\u00fcr jede Stunde eines Jahres ist die Globalstrahlung in MWh/h dargestellt. Das obere Diagramm zeigt die Globalstrahlung f\u00fcr Szenario B im Gebietsausschnitt I ohne Ber\u00fccksichtigung der B\u00e4ume und damit ohne Energieentzug durch die Evapotranspiration. In dem unteren Diagramm ist die Globalstrahlung abz\u00fcglich der Evapotranspiration f\u00fcr das Baumpflanzungsszenario B dargestellt. Obwohl in Szenario B die prozentuale Verringerung der Globalstrahlung durch die Evapotranspiration im Vergleich zu den \u00fcbrigen Szenarien am gr\u00f6\u00dften ist, ist kaum ein Unterschied in den untenstehenden Diagrammen erkennbar, weshalb die Diagramme der \u00fcbrigen sieben Szenarien im weiteren Verlauf dieser Arbeit nicht abgebildet werden. 46\nErgebnisse\n\n[IMAGE: Irradiance in GAI_Szenario\u00df m- 01:00 0:0- Fe Se EG u Fer BE GE SE Ge Ge]\n\n\n[IMAGE: Difterence between irradiance and evapotranspiration in GA1_Szenario\u00df 000. 0200 - 0200 0300 0800 - no- En sun. s on. 10m 2000. mau /n\u0131 21:09 2200- u 2500 E 8 March April May R s August - October - September - November -]\n\nAbbildung 26: Globalstrahlung auf den Gebietsausschnitt I in Szenario B ohne (oben) und mit (unten) Ber\u00fccksichtigung des Energieentzugs durch Evapotranspiration (eigene Berechnungen auf Grundlage der Simulationsergebnisse)\nDie durch die Evapotranspiration entzogene Energie aus der Umwelt wird als \u201eVerdunstungsk\u00e4lte\u201c sp\u00fcrbar. Die Auswirkung dieses Effekts wurde \u00fcber die Temperatur\u00e4nderung durch die Energiemenge der Evapotranspiration bestimmt. In allen Gebietsausschnitten ist mit einer Erh\u00f6hung der Anzahl der zus\u00e4tzlichen B\u00e4ume eine Zunahme der m\u00f6glichen Temperaturabsenkung zu verzeichnen. Dabei ist das Delta in den Wintermonaten am geringsten und weist im Mai den h\u00f6chsten Wert auf. In Gebietsausschnitt I weist der Status Quo im Jahresmittel eine Temperatur\u00e4nderung von 0,1 K auf. Diese erh\u00f6ht sich im Szenario A auf 1,3 K und in Szenario B auf 3,8 K. Wird nur der Monat Mai mit der h\u00f6chsten mittleren Temperatur\u00e4nderung betrachtet, kann eine Temperaturverringerung bis 0,3 K im Status Quo, bis 2,8 K im Szenario A und in bis 8,2 K Szenario B erreicht werden. In Abbildung 27 ist die \u00fcber den Tag gemittelte 47\nErgebnisse\nTemperatur\u00e4nderung f\u00fcr den Gebietsausschnitt I in Gromb\u00fchl dargestellt. Der Verlauf der m\u00f6glichen Temperatur\u00e4nderung der Gebietsausschnitte II-V ist in Anhang 8 zu finden. [IMAGE: t\u00e4gliche Temperatur\u00e4nderung Gebietsausschnitt | Gromb\u00fchl Temperatur\u00e4nderung [K] \u00a9 2 0 N N dv N N & N > \u00a3 N $ N & CR N \u00ae S S S & & & & EFT TEE EEE SF S Rx Kal Do & S \u00b0 \u2014\u2014 Status Quo Szenario A Szenario B]\n\nAbbildung 27: T\u00e4gliche Temperatur\u00e4nderung im Gebietsausschnitt I (eigene Darstellung und Berechnung auf Grundlage der Simulationsergebnisse)\nAuch f\u00fcr den Gebietsausschnitt II ist, wie bereits erw\u00e4hnt, im Mai ist das Delta der Temperatur am gr\u00f6\u00dften: 0,6 K (Stauts Quo), 2,8 K (Szenario C) bzw. 4,8 K (Szenario D). W\u00e4hrend im Status Quo im Jahresmittel eine Temperaturabsenkung von 0,4 K pro Jahr zu erkennen ist, zeigt sich in Szenario C eine Temperaturabsenkung von 1,3 K und in Szenario D von 2,3 K pro Jahr. (vgl.", + "embedding": [ + 0.0048562572337687016, + -0.011903596110641956, + 0.021321404725313187, + -0.006316978484392166, + 0.0030623890925198793, + 0.0130888307467103, + -0.03272527828812599, + -0.01886124163866043, + -0.021077951416373253, + -0.02045009657740593, + 0.019501909613609314, + 0.023768752813339233, + -0.020181016996502876, + 0.007213912438601255, + 0.00966766756027937, + 0.011461536400020123, + 0.03231525421142578, + -0.0004965170519426465, + 0.020975444465875626, + 0.0024857886601239443, + 0.015311946161091328, + 0.021359844133257866, + -0.002766080666333437, + 0.011294962838292122, + -0.011019475758075714, + 0.013851224444806576, + 0.016272947192192078, + -0.030931411311030388, + -0.015465705655515194, + -0.002215106738731265, + 0.015081305988132954, + -0.011826716363430023, + -0.025229474529623985, + -6.867151387268677e-05, + -0.016080746427178383, + -0.018604975193738937, + -0.006778258830308914, + -0.014158745296299458, + 0.02962445095181465, + -0.0039304932579398155, + 0.014607211574912071, + 0.012851784005761147, + -0.0064002652652561665, + 0.006099151447415352, + -0.002240733476355672, + 0.022833378985524178, + 0.003997763153165579, + -0.006134388502687216, + -0.02230803109705448, + 0.03351970762014389, + 0.015516959130764008, + 0.02467850036919117, + -0.006823105737566948, + -0.016003865748643875, + -0.01811806857585907, + 0.009731734171509743, + -0.025947021320462227, + -0.0023784770164638758, + 0.0037735297810286283, + -2.3258596684172517e-06, + -0.017631161957979202, + -0.012300809845328331, + -0.021680178120732307, + 0.013063204474747181, + -0.032571520656347275, + -0.012275183573365211, + -0.02006569691002369, + 0.007162658963352442, + -0.002308003604412079, + -0.01887405477464199, + 0.013056796975433826, + 0.04033640772104263, + 0.004869070835411549, + -0.022961512207984924, + 0.02349967323243618, + -0.018745921552181244, + 0.01651640050113201, + -0.0032609959598630667, + 0.0011668151710182428, + -0.0015400038100779057, + 0.027958715334534645, + -0.03195647895336151, + -0.033673468977212906, + 0.028035596013069153, + 0.013050390407443047, + 0.022243965417146683, + 0.0018515281844884157, + 0.023730313405394554, + -0.02739492990076542, + 0.008616973645985126, + 0.028394369408488274, + 0.02118045650422573, + 0.007271572481840849, + 0.036031123250722885, + -0.005263080820441246, + -0.006566838826984167, + -0.007553466130048037, + 0.04551299661397934, + 0.01424843817949295, + -0.029060663655400276, + -0.02770244888961315, + 0.00962282158434391, + -0.014953171834349632, + -0.014953171834349632, + -0.03521106764674187, + 0.0031024308409541845, + 0.03431413322687149, + 0.026369862258434296, + -0.0042796568013727665, + -0.03582610934972763, + -0.026395488530397415, + 0.022154271602630615, + -0.004193166736513376, + -0.010545382276177406, + -0.009360147640109062, + -0.013684650883078575, + 0.02384563349187374, + -0.0065155853517353535, + -0.021757056936621666, + -0.014581585302948952, + 0.007553466130048037, + -0.010538975708186626, + -0.0017618347192183137, + -0.012992730364203453, + 0.02654924802482128, + 0.013197744265198708, + 0.006003051530569792, + -0.011359029449522495, + -0.028291862457990646, + -0.03013698384165764, + -0.016298573464155197, + -0.006701378617435694, + 0.006675752345472574, + 0.008873241022229195, + -0.014325317926704884, + 0.03118767961859703, + -0.025767633691430092, + -0.007104998920112848, + -0.026779888197779655, + -0.016029493883252144, + -0.01001362781971693, + 0.0013013551943004131, + -0.011429502628743649, + -0.0027196321170777082, + 0.021001070737838745, + 0.015542586334049702, + 0.007796919904649258, + 0.023653432726860046, + -6.94473237672355e-06, + -0.0042412169277668, + -0.0014831445878371596, + -0.011275742202997208, + 0.02235928550362587, + 0.0015912571689113975, + 0.007265165913850069, + -0.00273725064471364, + -0.02538323402404785, + 0.0086490074172616, + -0.029983224347233772, + 0.001015457441098988, + 0.006435501854866743, + -0.009879088029265404, + -0.015888545662164688, + 6.957245204830542e-05, + 0.005160574335604906, + 0.011679362505674362, + -0.006714192219078541, + -0.006409875117242336, + 0.00067390181357041, + -0.024370979517698288, + -0.006893578916788101, + 0.00432770699262619, + -0.019040629267692566, + 0.02898378297686577, + -0.010250675491988659, + 0.01813088171184063, + -0.026062341406941414, + 0.0018098847940564156, + -0.003501246217638254, + -0.033289067447185516, + -0.02736930176615715, + 0.017272386699914932, + 0.006489958614110947, + -0.010160981677472591, + -0.030752025544643402, + -0.020309150218963623, + 0.01893812231719494, + 0.009565161541104317, + -0.0061536082066595554, + 0.0019748567137867212, + 0.007354859262704849, + 0.011147608980536461, + 0.007835359312593937, + 0.008770734071731567, + -0.6318516135215759, + 0.013543704524636269, + 0.0009465857874602079, + 0.0005794033640995622, + 0.006650125607848167, + 0.018566535785794258, + 0.003831189824268222, + 0.007361265830695629, + -0.02777932956814766, + 0.024101899936795235, + -0.002581888809800148, + -0.017618346959352493, + -0.020962631329894066, + -0.004141913261264563, + 0.0005417641950771213, + -0.030982665717601776, + -0.019950376823544502, + 0.025588247925043106, + 0.009135914035141468, + 0.006179234944283962, + -0.031059544533491135, + 0.018604975193738937, + 0.007463772781193256, + 0.02083449624478817, + 0.007130625657737255, + 0.0075726862996816635, + 0.02114201709628105, + -0.03200773149728775, + 0.00017878618382383138, + 0.024435047060251236, + -0.015901358798146248, + 0.011512789875268936, + 0.004535923711955547, + 0.019963189959526062, + 0.03851691260933876, + -0.017362080514431, + 0.0017570297932252288, + 0.0014230819651857018, + 0.00539762107655406, + 0.021039510145783424, + -0.025947021320462227, + 0.0022038952447474003, + 0.012800530530512333, + -0.008347893133759499, + -0.004129100125283003, + 0.0150428656488657, + 0.023025579750537872, + -0.028676263988018036, + 0.008104439824819565, + -0.021846750751137733, + 0.01964285597205162, + 0.02353811264038086, + -0.010474908165633678, + -0.00770081952214241, + 0.010116134770214558, + 0.02383282035589218, + 0.005778817925602198, + -0.0015672320732846856, + 0.01891249604523182, + 0.011532009579241276, + 0.00020431277516763657, + 0.004071440082043409, + 0.022974325343966484, + 0.012236743234097958, + -0.007989119738340378, + 0.024793820455670357, + -0.03544170781970024, + -0.010231454856693745, + 0.019143136218190193, + -0.013966544531285763, + -0.007816139608621597, + 0.015683533623814583, + 0.004378960467875004, + -0.014299691654741764, + 0.026036715134978294, + 0.0034435861743986607, + 0.031777091324329376, + -0.0003263398539274931, + 0.010064881294965744, + 0.016272947192192078, + -0.004574363585561514, + -0.02161611057817936, + -0.007905833423137665, + -0.00012963499466422945, + 0.016388267278671265, + -0.01970692351460457, + -0.005983831360936165, + 0.021475164219737053, + -0.01060944888740778, + 0.04236091300845146, + 0.024473486468195915, + 0.03687680512666702, + -0.005753191187977791, + -0.00039681323687545955, + -0.004093863535672426, + 0.03149519860744476, + -0.030752025544643402, + 0.02042447030544281, + 0.010577415116131306, + -0.024370979517698288, + -0.021372657269239426, + -0.0017874614568427205, + 0.03403224050998688, + -0.0031056341249495745, + 0.029214423149824142, + 0.013787157833576202, + -0.03077765181660652, + -0.0040490166284143925, + 0.03244338557124138, + -0.02472975291311741, + -0.005250267684459686, + -0.01970692351460457, + 0.005429654382169247, + -0.011013069190084934, + -0.006586058530956507, + -0.016798293218016624, + 0.0278305821120739, + -0.02539604716002941, + 0.004058626480400562, + 0.004013780038803816, + 0.01255067065358162, + -0.011089948937296867, + 0.011333402246236801, + -0.01291585061699152, + -0.01847684197127819, + 0.028214983642101288, + 0.016747040674090385, + -0.014363758265972137, + 0.0028685873840004206, + -0.017592720687389374, + 0.012460976839065552, + 0.024755381047725677, + 0.02621610090136528, + -0.01409467775374651, + 0.03190522640943527, + -0.005615448113530874, + 0.020296337082982063, + 0.008206946775317192, + -0.005365587770938873, + -0.02587014064192772, + -0.003972136415541172, + -0.0028317489195615053, + 0.01925845630466938, + -0.011230896227061749, + -0.005157371051609516, + -0.010135355405509472, + -0.005692327860742807, + 0.00751502625644207, + -0.022141458466649055, + 0.012166270054876804, + -0.022513044998049736, + -0.00022062976495362818, + 0.015311946161091328, + 0.02315371297299862, + 0.010679922066628933, + 0.008796360343694687, + -0.01274927705526352, + -0.028419995680451393, + -0.029598824679851532, + -0.02547292783856392, + 0.010193015448749065, + 0.016657346859574318, + -0.010724768973886967, + -0.007329232525080442, + -0.02734367549419403, + -0.007860986515879631, + -0.00866822712123394, + 0.00021502393065020442, + -0.024025019258260727, + -0.02967570349574089, + -0.007495806086808443, + -0.0166317205876112, + 0.008194133639335632, + -0.003959323279559612, + -0.014491891488432884, + -0.002807724056765437, + -0.02123171091079712, + 0.010160981677472591, + 0.008328673429787159, + -0.013300251215696335, + 0.00866822712123394, + -0.0026027103886008263, + -0.007277979515492916, + -0.010039255023002625, + 0.01806681416928768, + 0.036415524780750275, + 0.024204406887292862, + 0.01700330711901188, + -0.013024764135479927, + 0.02383282035589218, + 0.004391773603856564, + 0.041079580783843994, + -0.01193562988191843, + 0.006095948163419962, + -0.004023389890789986, + -0.009770174510776997, + 0.016067933291196823, + 0.006675752345472574, + -0.022846192121505737, + 0.022128645330667496, + 0.054533589631319046, + 0.005964611656963825, + 0.013248997740447521, + -0.015581025741994381, + 0.01733645424246788, + -0.037261202931404114, + 0.012845377437770367, + -0.008809173479676247, + 0.030367624014616013, + 0.03498042747378349, + 0.02898378297686577, + -0.016836734488606453, + -0.025613874197006226, + -0.005794834811240435, + -0.012486603111028671, + 0.04230966046452522, + -0.005432857666164637, + -0.01815650798380375, + 0.011134795844554901, + -0.011653736233711243, + 0.017272386699914932, + 0.0075598726980388165, + 0.013120864517986774, + 0.013953731395304203, + 0.00019630443421192467, + 0.013774344697594643, + -0.004929934162646532, + 0.00983424112200737, + -0.0029582807328552008, + -0.0015311945462599397, + -0.023807192221283913, + -0.004465450532734394, + 0.010218641720712185, + 0.015965426340699196, + 0.011993289925158024, + 0.024793820455670357, + 0.013031170703470707, + 0.010193015448749065, + 0.02472975291311741, + 0.0016449129907414317, + 0.010654295794665813, + 0.016388267278671265, + 0.021744243800640106, + -0.019104694947600365, + 0.01691361330449581, + 0.00022082997020334005, + 0.01059663575142622, + 0.010205828584730625, + -0.016349826008081436, + 0.008636193349957466, + -0.004881883971393108, + 0.019527535885572433, + 0.0036742263473570347, + -0.005826868116855621, + 0.008098033256828785, + -0.0041579301469028, + -0.009283267892897129, + -0.008950120769441128, + 0.012416129931807518, + 0.027138661593198776, + 0.01618325337767601, + -0.00015055679250508547, + -0.0021302183158695698, + -0.016823921352624893, + 0.001198047655634582, + -0.00655722850933671, + -0.009020593948662281, + -0.03003447875380516, + 0.006195251829922199, + 0.00789301935583353, + 0.012268777005374432, + 0.003533279523253441, + -0.0185537226498127, + -0.0008028360898606479, + -0.0054360609501600266, + 0.01423562504351139, + 0.0007131426827982068, + -0.01000081468373537, + 0.018797175958752632, + -0.0009377765818499029, + -0.011339808814227581, + -0.03049575909972191, + -0.0189509354531765, + 0.014415011741220951, + -0.006198455113917589, + 0.0020357200410217047, + -0.0042956736870110035, + -0.005983831360936165, + -0.007085779216140509, + 0.004212386906147003, + -0.01042365562170744, + -0.0033763160463422537, + -0.015004425309598446, + -0.007258759345859289, + -0.009161541238427162, + -0.01390247792005539, + 0.006899985484778881, + -0.024114713072776794, + 0.012608330696821213, + 0.01273646391928196, + -0.01000722125172615, + 0.018771547824144363, + -0.00047409371472895145, + 0.008629786781966686, + 0.023435605689883232, + 0.0049907974898815155, + 0.004539126995950937, + -0.009885494597256184, + 0.006944832392036915, + -0.019822243601083755, + -0.02306401915848255, + -0.014299691654741764, + -0.01963004283607006, + 0.01927126944065094, + -0.014825038611888885, + 0.008251793682575226, + 0.018976561725139618, + -0.011506382375955582, + 0.0469224639236927, + -0.008021153509616852, + -0.031418319791555405, + -0.011391062289476395, + -0.02431972697377205, + -0.016798293218016624, + 0.006201658397912979, + 0.026882395148277283, + -0.005464890971779823, + 0.025677941739559174, + -0.011352622881531715, + 0.005468094255775213, + 0.004084253218024969, + -0.02813810296356678, + -0.001046690042130649, + 0.006944832392036915, + -0.008277419954538345, + -0.006214471533894539, + 0.014209997840225697, + -0.002807724056765437, + 0.029573198407888412, + -0.0004648841277230531, + 0.004308486822992563, + -0.024178780615329742, + 0.012006103061139584, + 0.009071847423911095, + -0.003385926131159067, + -0.013774344697594643, + 0.005000407341867685, + 0.046102412045001984, + 0.011294962838292122, + 0.014222811907529831, + 0.031085172668099403, + 0.02466568723320961, + 0.038568165153265, + -0.003991356585174799, + -0.013133677653968334, + 0.018592162057757378, + -0.012717243283987045, + 0.01779773458838463, + -0.007681599818170071, + -0.008821987546980381, + 0.01658046618103981, + -0.03198210522532463, + 0.02898378297686577, + -0.00040101760532706976, + 0.00029931170865893364, + 0.04084894061088562, + 0.010641481727361679, + -0.0013974553439766169, + 0.013774344697594643, + -0.025652313604950905, + -0.012179083190858364, + 0.01965566910803318, + -0.0022503435611724854, + 0.004039406776428223, + 0.005519347731024027, + -0.003735089674592018, + -0.017541468143463135, + -0.018617788329720497, + -0.013454010710120201, + 0.01178186945617199, + 0.023640619590878487, + -0.014889105223119259, + 0.005179794039577246, + -0.01042365562170744, + -0.03887568414211273, + -0.028701890259981155, + 0.009949561208486557, + 0.0008368715061806142, + -0.01292866375297308, + 0.009059034287929535, + -0.0024825853761285543, + -0.006345808506011963, + 0.006390655413269997, + -0.011179642751812935, + 0.00217186170630157, + -0.019181575626134872, + -0.01620887964963913, + -0.0024937971029430628, + 0.029060663655400276, + 0.010545382276177406, + 0.0029887123964726925, + -0.006579651962965727, + -7.15745409252122e-05, + -0.013684650883078575, + -0.012979917228221893, + -0.01807962730526924, + 0.021282963454723358, + -0.007854579947888851, + 0.007495806086808443, + 0.00999440811574459, + 0.0027804956771433353, + -0.005522551015019417, + -0.018604975193738937, + -0.01845121569931507, + -0.0055738044902682304, + -0.009706107899546623, + 0.033750347793102264, + -0.005532161332666874, + -0.00434052012860775, + 0.00045287160901352763, + 0.010096915066242218, + 0.0015736387576907873, + 0.028727516531944275, + -0.016695786267518997, + 0.039567604660987854, + -0.007950679399073124, + -0.0009161540656350553, + -0.014338131994009018, + 0.0037094629369676113, + 0.011455129832029343, + -0.009430620819330215, + -0.01617044024169445, + -0.018002748489379883, + -0.014581585302948952, + 0.012505823746323586, + -0.011013069190084934, + 0.017913054674863815, + -0.016670159995555878, + -0.006256115157157183, + -0.0008576932013966143, + 0.005102914292365313, + -0.0005693929851986468, + 0.022961512207984924, + 0.02731804922223091, + -0.004362943582236767, + -0.02924005128443241, + 0.034493520855903625, + 0.0029887123964726925, + 0.02353811264038086, + 0.01933533512055874, + 0.0039497134275734425, + 0.01815650798380375, + -0.016875173896551132, + 0.004167539998888969, + 0.007470179349184036, + 0.0033122494351118803, + 0.013159303925931454, + -0.0048722741194069386, + -0.025665126740932465, + -0.021782685071229935, + -0.011711396276950836, + 0.026023901998996735, + -0.021334217861294746, + 0.00434372341260314, + -0.024819446727633476, + 0.019527535885572433, + -0.01274287048727274, + 0.0009610007982701063, + 0.010257082059979439, + -0.02080886997282505, + -0.005833274684846401, + 0.005743581335991621, + -0.0032113443594425917, + 0.0053239441476762295, + -0.008354300633072853, + -0.03672304376959801, + -0.018669042736291885, + 0.016644533723592758, + -0.01586291939020157, + -0.03703056275844574, + -0.017426148056983948, + -0.02355092577636242, + 0.01738770678639412, + 0.008828394114971161, + 0.021680178120732307, + -0.0017217930871993303, + 0.035672347992658615, + 0.021282963454723358, + -0.0017826564144343138, + 0.011070729233324528, + 0.008411960676312447, + -0.00850806012749672, + -0.02201332524418831, + 0.019412215799093246, + -0.007739259861409664, + 0.00663731200620532, + 0.013248997740447521, + -0.005416841246187687, + 0.016106372699141502, + 0.05432857945561409, + -0.01576041243970394, + -0.027215542271733284, + -0.009385773912072182, + -0.022935885936021805, + -0.015170998871326447, + 0.009789394214749336, + 0.0019444249337539077, + 0.0074445526115596294, + -0.022538671270012856, + -0.02241053804755211, + 0.05673748627305031, + -0.009488280862569809, + -0.0018499265424907207, + -0.010346774943172932, + 0.005182997789233923, + -0.020731991156935692, + 0.01963004283607006, + 0.0062817418947815895, + -0.005548177752643824, + -0.02000162936747074, + -0.008046779781579971, + -0.017118627205491066, + -0.039439473301172256, + 0.0130888307467103, + -0.018054001033306122, + -0.005429654382169247, + -0.015465705655515194, + -0.0040650335140526295, + -0.002243936760351062, + -0.0069768656976521015, + 0.0026908020954579115, + -0.014901919290423393, + 0.012416129931807518, + -0.01501723937690258, + -0.015555399470031261, + -0.007380486000329256, + -0.014748158864676952, + -0.028830023482441902, + 0.022974325343966484, + 0.001385442796163261, + 0.012467383407056332, + 0.04669182375073433, + -0.015491332858800888, + 0.006752632092684507, + 0.020591042935848236, + -0.0022535468451678753, + 0.040618300437927246, + 0.01659327931702137, + 0.05853135511279106, + 0.028727516531944275, + -0.004116286523640156, + -0.012544263154268265, + -0.055712420493364334, + -0.005778817925602198, + -0.014581585302948952, + 0.00645792530849576, + -0.001502364524640143, + 0.0015824479050934315, + -0.01699049398303032, + -0.00982142798602581, + 0.01732364110648632, + -3.4686123399296775e-05, + 0.0009746149880811572, + 0.06996085494756699, + 0.02077043056488037, + -0.00415152357891202, + -0.019091881811618805, + 0.014440638944506645, + -0.006079931743443012, + 0.006970459129661322, + -0.011993289925158024, + -0.0016817513387650251, + -0.013018357567489147, + -0.0030736008193343878, + -0.007290792651474476, + 0.060017701238393784, + 0.014620025642216206, + 0.022256778553128242, + -0.01579885371029377, + -0.002447348553687334, + 0.0028013172559440136, + -0.012569890357553959, + -0.0012589109828695655, + 0.021001070737838745, + -0.0129222571849823, + 0.0261776614934206, + -0.014632838778197765, + -0.012159863486886024, + 0.005961408372968435, + -0.021334217861294746, + -0.014709718525409698, + -0.006038288120180368, + -0.014581585302948952, + 0.012428943067789078, + -0.0029646875336766243, + -0.0010683125583454967, + 0.012390503659844398, + 0.010769615881145, + 0.009770174510776997, + -0.004382163751870394, + -0.006720598787069321, + -0.006246505305171013, + -0.006477145478129387, + 0.011499975807964802, + 0.01176264975219965, + -0.0037799363490194082, + -0.003161692526191473, + -0.01852809451520443, + -0.013428384438157082, + 0.0047601573169231415, + -0.022474605590105057, + -0.015606652945280075, + 0.0193481482565403, + -0.0414896085858345, + 0.0045135002583265305, + 0.017182694748044014, + 0.00274045392870903, + 0.02510134130716324, + -0.010711955837905407, + -0.019143136218190193, + -0.023230591788887978, + 0.017438961192965508, + -0.02772807516157627, + 0.04195088893175125, + 0.0478450246155262, + 0.008123659528791904, + 0.003161692526191473, + 0.008783547207713127, + -0.013530891388654709, + -0.01177546288818121, + 0.032161492854356766, + -0.003001525765284896, + -0.032571520656347275, + 0.007579092867672443, + 0.009981594979763031, + 0.005413637962192297, + -0.021385470405220985, + -0.012307216413319111, + 0.010513348504900932, + -0.005243861116468906, + -0.008264606818556786, + -0.024063460528850555, + -0.006592465564608574, + 0.01585010625422001, + 0.018976561725139618, + -0.005839681252837181, + 0.023602180182933807, + -0.015734786167740822, + 0.03546733409166336, + 0.013377130962908268, + 0.005612244363874197, + -0.015350385569036007, + -0.01310805045068264, + -0.007777699735015631, + -0.0005061270785517991, + 0.016119185835123062, + -0.007828952744603157, + -0.01485066581517458, + -0.003808766370639205, + -0.015901358798146248, + -0.019860683009028435, + 0.01772085390985012, + -0.007579092867672443, + 0.0033250628039240837, + -0.007374079432338476, + 0.009898307733237743, + -0.010673515498638153, + 0.007643159478902817, + 0.018733108416199684, + -0.014158745296299458, + -0.0004084253450855613, + -0.006195251829922199, + -0.019450655207037926, + -0.006932018790394068, + 0.007752072997391224, + 0.02009132318198681, + 0.022154271602630615, + -0.032520268112421036, + 0.0074573662132024765, + -0.008988561108708382, + -0.03733808547258377, + -0.037184324115514755, + -0.02156485803425312, + 0.006951238960027695, + -0.0035428896080702543, + 0.01426125131547451, + -0.00980220828205347, + 0.029086289927363396, + -0.009302487596869469, + 0.014209997840225697, + -0.05709626153111458, + 0.003738292958587408, + -0.003118447493761778, + -0.012352063320577145, + 0.016670159995555878, + -0.011980476789176464, + -0.01998881623148918, + -0.020898563787341118, + 0.01178827602416277, + -0.017208321020007133, + 0.007912239991128445, + 0.005279097706079483, + -0.005189404357224703, + 0.012563483789563179, + 2.506360033294186e-05, + 0.02934255823493004, + -0.01212142314761877, + 0.009962375275790691, + 0.011845936067402363, + -0.039080698043107986, + 0.008879647590219975, + 0.013300251215696335, + 0.007271572481840849, + -0.05289348214864731, + 0.007918646559119225, + 0.01654202677309513, + -0.0036293796729296446, + -0.021731430664658546, + 0.025588247925043106, + -0.025742007419466972, + -0.02161611057817936, + -0.013505264185369015, + 0.029470691457390785, + 0.01660609431564808, + -0.01467127911746502, + -0.014543144963681698, + 0.024601619690656662, + -0.020706363022327423, + -0.015376012772321701, + -0.0033122494351118803, + -0.026344234123826027, + 0.0010907358955591917, + 0.02273087203502655, + -0.0043981801718473434, + 0.030572637915611267, + -0.017900241538882256, + 0.013505264185369015, + -0.0015744395786896348, + 0.015734786167740822, + -0.0018403164576739073, + -0.026831142604351044, + -0.020373215898871422, + 0.025306353345513344, + 0.044462304562330246, + -0.013466824777424335, + 0.014030611142516136, + 0.008065999485552311, + -0.008001932874321938, + 0.007380486000329256, + 0.009757361374795437, + -0.008732293732464314, + -0.02510134130716324, + -0.02194925770163536, + -0.007643159478902817, + -0.0005533762741833925, + -0.00548090785741806, + -0.005737174768000841, + -0.01176264975219965, + -0.022487418726086617, + 0.013261810876429081, + 0.18041187524795532, + -0.029445063322782516, + -0.003337876172736287, + 0.03049575909972191, + -0.002588295377790928, + -0.014440638944506645, + 0.017464587464928627, + 0.0030287541449069977, + -0.0021077950950711966, + 0.03249463811516762, + -0.023422792553901672, + 0.003664616262540221, + 0.0039336965419352055, + 0.006483552046120167, + 0.0009097474394366145, + -0.009738141670823097, + -0.018707482144236565, + 0.015465705655515194, + -0.001728199771605432, + 0.03967011347413063, + 0.03613362833857536, + -0.041745875030756, + -0.011737022548913956, + -0.008751513436436653, + 0.047921907156705856, + -0.0003725880233105272, + -0.011493569239974022, + -0.002623532200232148, + 0.03418600186705589, + -0.005717954598367214, + -0.008367113769054413, + 0.006041491404175758, + -0.0030239492189139128, + -0.015440079383552074, + 0.0045263138599693775, + 0.01174983661621809, + 0.010571008548140526, + -0.014543144963681698, + 0.02311527170240879, + 0.013428384438157082, + -0.013402757234871387, + -0.013774344697594643, + -0.00903981365263462, + -0.012300809845328331, + -0.032930292189121246, + 0.01583729311823845, + 0.005522551015019417, + -0.004106676671653986, + -0.014363758265972137, + -0.0013397953007370234, + -0.019373776391148567, + -0.0034724161960184574, + -0.003382722847163677, + 0.03290466591715813, + -0.022128645330667496, + -0.01810525543987751, + 0.027933089062571526, + -0.0016064730007201433, + 0.0014326920500025153, + 0.007085779216140509, + -0.0355185903608799, + 0.025921395048499107, + -0.011435909196734428, + 0.00132698193192482, + -0.018643414601683617, + 0.009936748072504997, + -0.03405786678195, + 0.006345808506011963, + 0.007284386083483696, + -0.013569330796599388, + -0.011006662622094154, + -0.02654924802482128, + -0.039465099573135376, + 0.019373776391148567, + -0.02542167343199253, + -0.01846402883529663, + -0.004619210492819548, + 0.017964307218790054, + 0.00848884042352438, + 0.00547450128942728, + 0.004212386906147003, + 0.0021990900859236717, + -0.015478519722819328, + -0.015273505821824074, + -0.003690243000164628, + -0.034467894583940506, + 0.01887405477464199, + 0.013812785036861897, + -0.013184931129217148, + -0.007277979515492916, + -0.004801800474524498, + -0.0018307064892724156, + 0.003911273088306189, + -0.011006662622094154, + 0.00788661278784275, + -0.01819494739174843, + 0.028035596013069153, + -0.0041483198292553425, + -0.02466568723320961, + -0.001821096520870924, + 0.0019043831853196025, + 0.04520547762513161, + 0.026523621752858162, + 0.011230896227061749, + -0.007976306602358818, + -0.0029006206896156073, + 0.011897189542651176, + 0.004923527128994465, + 0.006483552046120167, + -0.010711955837905407, + 0.005150964017957449, + -0.023422792553901672, + 0.012601923197507858, + 0.014120304957032204, + -0.0005293512949720025, + 0.03321218863129616, + -0.014286878518760204, + -0.004862663801759481, + 0.008937307633459568, + -0.00753424596041441, + 0.0006414680392481387, + -0.02005288377404213, + 0.012826156802475452, + -0.003571719629690051, + -0.007745666429400444, + -0.02967570349574089, + -0.021487977355718613, + 0.019783802330493927, + -0.022256778553128242, + -0.005743581335991621, + 0.01734926737844944, + -0.014940358698368073, + 0.0013502060901373625, + -0.009232014417648315, + 0.013184931129217148, + 0.008110846392810345, + -0.021475164219737053, + -0.031008291989564896, + -0.012320030480623245, + 0.021731430664658546, + 0.012460976839065552, + -0.014953171834349632, + 0.022641178220510483, + 0.014286878518760204, + 0.013864037580788136, + -0.013633397407829762, + 0.01960441656410694, + -0.01619606651365757, + -0.019565975293517113, + -0.023217778652906418, + -0.0172980148345232, + -0.004270046949386597, + 0.0007872197893448174, + 0.019501909613609314, + 0.038773179054260254, + -0.003600549651309848, + -0.01701612025499344, + -0.05092022940516472, + 0.018797175958752632, + -0.0009377765818499029, + 0.005035643931478262, + -0.004199573304504156, + -0.005830071400851011, + -0.02665175497531891, + 0.004667260684072971, + 0.01768241450190544, + -0.1591929793357849, + -0.0074573662132024765, + 0.01274287048727274, + -0.03638989478349686, + 0.012262370437383652, + 0.017656788229942322, + 0.005509737879037857, + 0.00646753516048193, + -0.003108837641775608, + 0.0016232904745265841, + 0.0223336573690176, + 0.010526161640882492, + -0.029957598075270653, + 0.0018819598481059074, + -0.007079372648149729, + 0.015606652945280075, + -0.03808125853538513, + 0.03595424443483353, + 0.02580607496201992, + 0.01731082797050476, + 0.01158966962248087, + -0.02164173685014248, + 0.019091881811618805, + -0.0006570842815563083, + 0.03013698384165764, + 0.01652921363711357, + -0.0029166373424232006, + 0.011218082159757614, + 0.012979917228221893, + -0.00443021347746253, + -0.021487977355718613, + 0.010551788844168186, + 0.02315371297299862, + -0.010385215282440186, + 0.01586291939020157, + -0.017823360860347748, + -0.00945624802261591, + -0.020168203860521317, + 0.006964052561670542, + 0.035287950187921524, + 0.009526721201837063, + 0.009296081028878689, + -0.01766960136592388, + 0.022615551948547363, + -0.02895815670490265, + 0.01294147688895464, + 0.0052086240611970425, + -0.0021334218326956034, + -0.008898867294192314, + -0.01174983661621809, + 0.0024169168900698423, + -0.021077951416373253, + -0.014901919290423393, + 0.020347589626908302, + 0.004350130446255207, + 0.03572360426187515, + -0.0016689380863681436, + 0.029393810778856277, + 0.005352774169296026, + -0.013210557401180267, + -0.0030639907345175743, + -0.004551940597593784, + 0.014607211574912071, + -0.004212386906147003, + 0.006358621641993523, + -0.039234459400177, + 0.008802766911685467, + 0.014812225475907326, + -0.004779377020895481, + 0.005154167767614126, + -0.007399706169962883, + -0.03851691260933876, + 0.004189963452517986, + -0.020616671070456505, + 0.0030303557869046926, + -0.001187636749818921, + -0.01893812231719494, + 0.007194692734628916, + 0.017848987132310867, + -0.009968781843781471, + -0.022551484405994415, + 0.059556420892477036, + -0.01772085390985012, + -0.010263488627970219, + -0.003927289973944426, + -0.0049779838882386684, + 0.008367113769054413, + 0.0024121119640767574, + 0.01289663091301918, + 0.0053367577493190765, + 0.0055673979222774506, + -0.021282963454723358, + -0.00547770457342267, + -0.022846192121505737, + 0.012371283024549484, + 0.004087456502020359, + 0.02433254010975361, + -0.006714192219078541, + -0.00029730962705798447, + -0.022179897874593735, + 0.011333402246236801, + -0.010160981677472591, + -0.0192840825766325, + -0.01062226202338934, + 0.005945391487330198, + -0.007233132608234882, + -0.03152082487940788, + -0.0012004501186311245, + 0.02082168310880661, + -0.0265748742967844, + -0.034519147127866745, + -0.04051579162478447, + 0.009071847423911095, + -0.008527280762791634, + -0.000853689038194716, + 0.017503026872873306, + 0.004894697107374668, + -0.03287903964519501, + 0.020270710811018944, + -0.003988153301179409, + 0.02888127788901329, + -0.014453452080488205, + -0.014184371568262577, + 0.007143439259380102, + -0.010654295794665813, + -0.021206084638834, + -0.08636193722486496, + -0.003466009395197034, + 0.03556984290480614, + 0.024845072999596596, + 0.032135866582393646, + 0.0001821897312765941, + -0.013582144863903522, + 0.016311386600136757, + 0.0005778017221018672, + 0.025306353345513344, + -0.03344282880425453, + -0.025690754875540733, + -0.005045254249125719, + -0.006874358747154474, + 0.023012764751911163, + -0.023666245862841606, + -0.001960441702976823, + -0.02926567755639553, + -0.012249556370079517, + 0.04125896841287613, + 0.021359844133257866, + 0.005157371051609516, + 0.008757920935750008, + -0.009321707300841808, + 0.0006594868027605116, + -0.01583729311823845, + -0.034134749323129654, + 0.03203335776925087, + 0.025152593851089478, + 0.0026843955274671316, + 0.025601061061024666, + -0.009244827553629875, + 0.01734926737844944, + -0.027446182444691658, + -0.0030335590709000826, + 0.0033795193303376436, + 0.001006648293696344, + -0.045743636786937714, + 0.024165965616703033, + -0.030188238248229027, + -0.01691361330449581, + 0.006951238960027695, + 0.022551484405994415, + -0.016272947192192078, + 0.014876292087137699, + -0.02857375703752041, + -0.013723091222345829, + -0.00850806012749672, + -0.020257895812392235, + -0.02429410070180893, + -0.03152082487940788, + -0.03013698384165764, + -0.009244827553629875, + 0.02241053804755211, + -0.008245387114584446, + 0.012768496759235859, + 0.01000722125172615, + -0.02308964543044567, + -0.0212701503187418, + -0.012307216413319111, + -0.014209997840225697, + 0.012672397308051586, + -0.02622891403734684, + 0.023653432726860046, + 0.008027560077607632, + -0.007591906003654003, + -0.032597146928310394, + -0.017259573563933372, + 0.0030960242729634047, + 0.0010130549781024456, + -0.026100780814886093, + 0.02161611057817936, + 0.01097462885081768, + -0.010686328634619713, + -0.04602552950382233, + -0.0027084206230938435, + -0.014991612173616886, + -0.013992171734571457, + 0.007374079432338476, + -0.027625570073723793, + -0.02510134130716324, + -0.025229474529623985, + 0.005887731444090605, + 0.0025050088297575712, + 0.032263997942209244, + 0.005557788070291281, + 0.011013069190084934, + -0.027625570073723793, + 0.02539604716002941, + -0.022295217961072922, + -0.011359029449522495, + -0.009296081028878689, + 0.019002187997102737, + -0.031367067247629166, + 0.00033835237263701856, + 0.020578229799866676, + 0.0030736008193343878, + 0.0015376012306660414, + 0.02967570349574089, + -0.016003865748643875, + -0.02198769710958004, + -0.015145372599363327, + -0.04599990323185921, + 0.008905273862183094, + 0.013966544531285763, + 0.010538975708186626, + -0.007925053127110004, + -0.002658768789842725, + 0.006669345311820507, + 0.03195647895336151, + 0.00028329502674750984, + -0.004314893390983343, + -0.009859868325293064, + -0.000829664000775665, + -0.026446741074323654, + -0.024768194183707237, + -0.02775370329618454, + -0.014312504790723324, + -0.0039497134275734425, + 0.024499112740159035, + 0.03193085268139839, + 0.012890223413705826, + -0.02506290003657341, + 0.02269243262708187, + -0.017554281279444695, + 0.024076273664832115, + -0.013812785036861897, + 0.0053207408636808395, + 0.012275183573365211, + -0.012787717394530773, + 0.005266284104436636, + 0.0052406578324735165, + -0.002469772007316351, + 0.0036710230633616447, + -0.008033966645598412, + 0.006259318441152573, + -0.007265165913850069, + 0.0074381460435688496, + 0.013441197574138641, + 0.029009411111474037, + 0.011890782974660397, + 0.04369350150227547, + -0.03823501616716385, + -0.013479637913405895, + 0.018579348921775818, + -0.016260134056210518, + -0.023627806454896927, + 0.0009353741188533604, + 0.008456806652247906, + -0.007976306602358818, + 0.010474908165633678, + -0.023204965516924858, + 0.05273972451686859, + 0.020155390724539757, + 0.01423562504351139, + 0.0125570772215724, + 0.010878528468310833, + -0.043411608785390854, + 0.008751513436436653, + 0.003978543449193239, + 0.010724768973886967, + -0.022090204060077667, + 0.046051159501075745, + 0.01424843817949295, + 0.01586291939020157, + -0.0109682222828269, + 0.004718513693660498, + -0.018656227737665176, + -0.02934255823493004, + -0.025665126740932465, + 0.008565720170736313, + -0.0166317205876112, + 0.00041523241088725626, + -0.02388407289981842, + 0.00028229397139512, + 0.04364224895834923, + 0.017656788229942322, + -0.00927686132490635, + 0.009174354374408722, + 0.01964285597205162, + 0.002836554078385234, + 0.034519147127866745, + 0.015632279217243195, + 0.017567094415426254, + -0.02580607496201992, + 0.017246760427951813, + 0.023025579750537872, + 0.010641481727361679, + -0.020539790391921997, + 0.0015968629159033298, + -0.01893812231719494, + 0.017643975093960762, + 0.005644278135150671, + 0.020629484206438065, + -0.009007780812680721, + -0.00850165355950594, + 0.010308335535228252, + 0.026908021420240402, + 0.017208321020007133, + -0.03457040339708328, + -0.007905833423137665, + 0.04576926305890083, + 0.007060152478516102, + 0.013723091222345829, + -0.010103321634232998, + -0.029957598075270653, + -0.019578788429498672, + 0.03310967981815338, + 0.0033250628039240837, + -0.05355977639555931, + 0.0011940434342250228, + -0.015939800068736076, + -0.009693294763565063, + 0.012262370437383652, + 0.008540093898773193, + 0.002277571940794587, + -0.029470691457390785, + 0.015491332858800888, + -0.00046288204612210393, + -0.014197184704244137, + -0.02698490209877491, + 0.015734786167740822, + 0.006899985484778881, + 0.024435047060251236, + 0.008565720170736313, + -0.0027612755075097084, + 0.024140339344739914, + 0.0029134340584278107, + 0.019091881811618805, + 0.016836734488606453, + 0.010756801813840866, + -0.01505567878484726, + 0.010212235152721405, + 0.011877969838678837, + -0.01728520169854164, + -0.028778770938515663, + -0.018797175958752632, + 0.01196766272187233, + 0.013146490789949894, + 0.017259573563933372, + 0.01579885371029377, + 0.10424936562776566, + 0.02965007722377777, + -0.006095948163419962, + 0.009731734171509743, + -0.0027340471278876066, + 0.041079580783843994, + 0.010122541338205338, + 0.0088476138189435, + -0.0029630856588482857, + -0.05581492558121681, + -0.007047338876873255, + -0.005798038095235825, + 0.012544263154268265, + -0.05191966891288757, + -0.032930292189121246, + -0.0008020352106541395, + 0.007957086898386478, + 0.0017810547724366188, + -0.019015002995729446, + 0.02578044682741165, + 0.03692805767059326, + -0.014209997840225697, + 0.03890131041407585, + 0.010282708331942558, + -0.03187960013747215, + -0.01886124163866043, + 0.026856768876314163, + 0.011032288894057274, + -0.008168506436049938, + -0.0048722741194069386, + -0.016311386600136757, + -0.010359588079154491, + -0.06555306911468506, + -0.030931411311030388, + 0.012166270054876804, + -0.006662938743829727, + -0.014748158864676952, + -0.025998273864388466, + 0.0238584466278553, + 0.0009994407882913947, + -0.0031424725893884897, + 0.029111918061971664, + -0.010942596010863781, + -0.002951874164864421, + -0.00327701261267066, + -0.024396605789661407, + -0.002163853496313095, + -0.011602482758462429, + -0.031085172668099403 + ], + "metadata": { + "source": "Kreye_Marieke_BA_241_V2.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 17, + "has_images": true, + "image_count": 98, + "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", + "links": [], + "last_modified": "2025-05-05T23:00:23", + "_known_field_names": "frozenset({'is_continuation', 'sent_to', 'header_footer_type', 'email_message_id', 'filename', 'languages', 'detection_class_prob', 'sent_from', 'link_texts', 'cc_recipient', 'subject', 'image_mime_type', 'image_path', 'filetype', 'page_number', 'last_modified', 'signature', 'detection_origin', 'text_as_html', 'attached_to_filename', 'bcc_recipient', 'data_source', 'link_start_indexes', 'category_depth', 'emphasized_text_tags', 'parent_id', 'orig_elements', 'page_name', 'coordinates', 'url', 'link_urls', 'file_directory', 'links', 'table_as_cells', 'emphasized_text_contents', 'key_value_pairs', 'image_base64'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "Kreye_Marieke_BA_241_V2.pdf", + "detection_class_prob": 0.3422867953777313, + "parent_id": "e02392183bc6851689602ad4b9f6039f", + "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", + "id": "ce00eae5-7e07-454f-9e4f-f79ac36f92f4", + "processing_timestamp": "2025-05-05T23:15:46.977945", + "chunk_number": 37, + "total_chunks": 56, + "chunking_strategy": "hybrid", + "word_count": 1008 + } +} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000038.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000038.json new file mode 100644 index 0000000000000000000000000000000000000000..1fb3ae1eac135f60c5f1a38502aad4e4eadb1432 --- /dev/null +++ b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000038.json @@ -0,0 +1,1570 @@ +{ + "id": "61a115b2-0ff7-441a-f6d9-eb3d00000038", + "content": "W\u00e4hrend im Status Quo im Jahresmittel eine Temperaturabsenkung von 0,4 K pro Jahr zu erkennen ist, zeigt sich in Szenario C eine Temperaturabsenkung von 1,3 K und in Szenario D von 2,3 K pro Jahr. (vgl. Anhang 8.1)\nIm Baumpflanzungsszenario in Gebietsausschnitt III ist im Status Quo eine mittlere Temperaturabsenkung um 0,3 K und in Szenario E um 0,5 K pro Jahr zu erwarten. Der H\u00f6chstwert der Temperatur\u00e4nderung des Szenarios E liegt mit 1,1 K im Mai. (vgl. Anhang 8.2)\nDie Temperatur\u00e4nderung in dem Gebietsausschnitt IV nimmt bis zur Mitte des Jahres bis zu einem H\u00f6chstwert von 2,3 K (Szenario F, Mai) bzw. 3,8 K (Szenario G, Mai) zu. Im Jahresmittel betr\u00e4gt die Temperaturverringerung im Status Quo 0,4 K, im Szenario F 1,2 K und im Szenario G 2 K. (vgl. Anhang 8.5)\nDie Temperatur\u00e4nderung durch Evapotranspiration steigt bei der Betrachtung des gesamten Fallstudiengebiets in Gebietsausschnitt V und einer Zunahme von 135 B\u00e4umen im Jahresmittel um ca. 25 %. Im Jahresmittel betr\u00e4gt die Temperaturabsenkung im Status Quo 0,7 K und in Szenario G 1 K. Der H\u00f6chstwert der Temperatur\u00e4nderung wird im Mai mit 1,4 K (Status Quo) bzw. 1,9 K (Szenario H) erreicht. (vgl. Anhang 8.6)\nDie nachfolgenden Diagramme verdeutlichen f\u00fcr den Gebietsausschnitt I f\u00fcr jede Stunde eines Jahres welche Temperaturabsenkungen m\u00f6glich sind. Der Verlauf der Diagramme sieht f\u00fcr die vier anderen Gebietsausschnitte \u00e4hnlich aus (vgl. Anhang 8.3, 8.4, 8.7 und 8.8). 48\nErgebnisse\n\n[IMAGE: 00:00 - 01.00 - 07.00 - 03:00 - 04:00 - 05:00 - 06:00 - 07:00 - 08:00 - 09:00 10:00 - 11:00 12:00 - 13:00 - 14:00 13.00 - 16:00 - 17:00 - 18:00 - 19:00 - 20:00 - 21:00 - 22:00 - 23:00 - January - Cooling effect in GAl_StatusQuo -OK --5K --10 K -15& -20K -25K -30K \\ ' \\ \u0131 \u0131 ' ' 35K Er. F= = an v > = L Fa Pe = 3 5 & & 3 \u00e4 5 \u00a3 8 2 2 E| ES E} 5 & 5 & \u00ae zZ \u00f6 g 3 = fe}]\n\n\n[IMAGE: 00:00 - 01:00 - 02:00 - 0300 - 04:00 - 05:00 - 06:00 - 07:00 - VB:00 - 09:00 10.00 - 11:00 - 12:00 - 13:00 - 14:00 - 15:00 - 16:00 - 17:00 - 18:00 - 19:00 - 20:00 - 21:00 - 22:00 - 23:00 - January - Cooling effect in GAl_5zenarivA 0X --5K --19& -15 & -20 K -2>K -3IK ' f f ' ' ' 35K Fr z = m v > = L Fe Pa Fa = pe] P vw [3 5 3 v o E77 o 3 E 2 \u00a3 \u00e4 u 5 8 8 8 E a = 4 8 F S S \u00ae & F % 8 = [>]]\n\n\n[IMAGE: 00:00 - 01:00 - 02:00 - 03:00 a 04:00 - 05:00 - 06:00 - 07:00 - 0B:00 - 09:00 10.00 - 11:00 - 12:00 - 13:00 - 14:00 - 15:00 - 16:00 - 17:00 - 18:00 - 19:00 - 20:00 - 21:00 - 22:00 - 23:00 - January - Cooling effect in GAl1_5zenarioB 0x --5K --19& | | N) \" -2>K -39K& ' ' ' ' ' ' ' 35K > 2 = > v > 2 pn PR pn = 2 fe} P 63 E 53 3 vo \u00b0 o S 3 E E 8 3 a 5 ? 8 8 : 2 = F; y F fe] Ss \u00ae E32 F g 8 z [>]]\n\nAbbildung 28: St\u00fcndliche Temperaturver\u00e4nderung durch Evapotranspiration in einem Jahr f\u00fcr den Status Quo (oben), das Szenario A (mitte) und das Szenario B (unten) in Gebietsausschnitt I (eigene Berechnungen auf Grundlage der Simulationsergebnisse)\n49\nInterpretation der Simulationsergebnisse\n\n## Interpretation der Simulationsergebnisse\n\nIn diesem Kapitel werden die Ergebnisse der verschiedenen Simulationen interpretiert. Die Ergebnisse der Simulationen verdeutlichen, dass die Anzahl neuer B\u00e4ume von dem vorherrschenden Quartiersarchetypen als auch der gew\u00e4hlten Gebietsgr\u00f6\u00dfe abh\u00e4ngt. Durch zu Beginn festgelegte Mobilit\u00e4tsszenarien, die auf definierte Stra\u00dfenquerschnitte angewandt werden, variiert die Potentialfl\u00e4che f\u00fcr Stadtgr\u00fcn. Dies zeigt der Vergleich der Fallstudiengebiete: Im Stadtteil Gromb\u00fchl k\u00f6nnen pro Hektar doppelt so viele B\u00e4ume gepflanzt werden wie im Stadtteil Grafenb\u00fchl. Diese Diskrepanz ist damit zu erkl\u00e4ren, dass ein gr\u00f6\u00dferes, dicht bebautes Gebiet mit breiteren Stra\u00dfen eine gr\u00f6\u00dfere Potentialfl\u00e4che f\u00fcr die Neupflanzung von B\u00e4umen bietet. Die in Kapitel 6 vorgestellten Ergebnisse zeigen, dass eine Zunahme von Stadtgr\u00fcn einen geringen Einfluss auf den thermischen Geb\u00e4udeenergiebedarf hat. Grund hierf\u00fcr ist, dass eine Zunahme der B\u00e4ume zu gegenseitiger Verschattung f\u00fchrt, wodurch der Verschattungseffekt jedes einzelnen Baums auf das Geb\u00e4ude gemindert wird.", + "embedding": [ + 0.005345415323972702, + -0.01324875932186842, + 0.02345423959195614, + -0.01707909256219864, + -0.00878222193568945, + 0.020843839272856712, + -0.029750678688287735, + -0.00876910425722599, + -0.03297760337591171, + -0.025894109159708023, + 0.0058078099973499775, + 0.013209406286478043, + -0.0045977127738296986, + 0.019938725978136063, + 0.007437669672071934, + 0.0034728802274912596, + 0.039457689970731735, + 0.020633958280086517, + 0.025185760110616684, + 0.01245514489710331, + 0.003728673094883561, + 0.03287266194820404, + 9.469255746807903e-05, + 0.01023827400058508, + -0.011937000788748264, + 0.012245263904333115, + 0.016252685338258743, + -0.02168336510658264, + -0.0035647032782435417, + 0.01266502682119608, + 0.028884917497634888, + 0.0012970010284334421, + -0.03108867257833481, + -0.003512233030050993, + -0.01261911541223526, + -0.020437194034457207, + -0.01336025819182396, + -0.01711844652891159, + 0.022837713360786438, + -0.011110592633485794, + 0.015137691050767899, + 0.005309341941028833, + -0.0041123623959720135, + -0.013150377199053764, + 0.007818079553544521, + 0.012809320352971554, + 0.01145165041089058, + -0.0029940884560346603, + -0.02131607197225094, + 0.026641812175512314, + 0.02047654800117016, + 0.029645737260580063, + -0.017813678830862045, + 0.01056621316820383, + -0.024451175704598427, + 0.00540444441139698, + -0.02413635328412056, + 0.009884098544716835, + -0.011969794519245625, + 0.0006321035325527191, + -0.015741100534796715, + -0.0033564616460353136, + -0.013904638588428497, + 0.024988995864987373, + -0.03982498124241829, + -0.019886257126927376, + -0.00902489759027958, + -0.00037344120210036635, + -0.002064379630610347, + -0.00815257802605629, + 0.02177518792450428, + 0.04759059101343155, + 0.003843451850116253, + -0.016947917640209198, + 0.014639222994446754, + -0.0015601725317537785, + 0.007988608442246914, + 0.01206817664206028, + -0.008526429533958435, + 0.005948823876678944, + 0.02817656844854355, + -0.02601216733455658, + -0.02254912629723549, + 0.034997712820768356, + 0.02109307423233986, + 0.033922068774700165, + -0.018745025619864464, + 0.016292039304971695, + -0.026051519438624382, + -0.0012182955397292972, + 0.036388177424669266, + 0.023336181417107582, + 0.009070808999240398, + 0.03313501551747322, + -0.004273052792996168, + -0.013393052853643894, + -0.003699158551171422, + 0.027940452098846436, + 0.009746364317834377, + -0.014508047141134739, + -0.024831585586071014, + -0.009031455963850021, + -0.009247896261513233, + -0.009811952710151672, + -0.02925221063196659, + 0.007194994483143091, + 0.0077393739484250546, + 0.02038472518324852, + 0.010461272671818733, + -0.037253934890031815, + -0.023637885227799416, + 0.026130225509405136, + -0.012586320750415325, + -0.01866632141172886, + 0.0027399351820349693, + -0.018351498991250992, + 0.032111842185258865, + 0.0010108737042173743, + -0.010179244913160801, + -0.01143853273242712, + 0.02762562967836857, + -0.010907270014286041, + -0.006912966258823872, + -0.025618640705943108, + 0.0230344757437706, + 0.00850675255060196, + 0.007988608442246914, + 0.00022012944100424647, + -0.03880181163549423, + -0.030747614800930023, + -0.009195425547659397, + 0.010369449853897095, + 0.003087551100179553, + 0.01292737852782011, + -0.02733704261481762, + 0.035574886947870255, + -0.018626967445015907, + -0.017944853752851486, + -0.0315871387720108, + -0.03662429377436638, + -0.013412728905677795, + 0.010467831045389175, + -0.026694281026721, + -0.003928716294467449, + 0.017839912325143814, + 0.017525091767311096, + 0.01511145569384098, + 0.030563969165086746, + -0.012041941285133362, + -0.027284573763608932, + -0.012258381582796574, + -0.010972858406603336, + 0.03200690448284149, + -0.005286386236548424, + 0.01588539406657219, + -0.004551801364868879, + -0.00575206009671092, + -0.0048699029721319675, + -0.03200690448284149, + 0.006621100008487701, + 0.013720992021262646, + 0.0033810571767389774, + -0.00720811216160655, + -0.002066019456833601, + -0.006037367507815361, + 0.004328802693635225, + -0.0027284573297947645, + -0.001446213573217392, + 0.011733678169548512, + -0.025907227769494057, + -0.007103171199560165, + 0.01203538291156292, + -0.020660193637013435, + 0.02872750721871853, + -0.004958446603268385, + 0.025316935032606125, + -0.022116245701909065, + 0.012920819222927094, + 0.0017610355280339718, + -0.03630946949124336, + -0.03179702162742615, + 0.010461272671818733, + 0.005053549073636532, + 0.008847810328006744, + -0.032374195754528046, + -0.019820667803287506, + 0.012861790135502815, + 0.023270592093467712, + 0.00043083063792437315, + 0.011431973427534103, + 0.007962373085319996, + 0.023021358996629715, + 0.013130701147019863, + 0.00990377552807331, + -0.6267056465148926, + 0.010441596619784832, + -0.0076409922912716866, + 0.004227141384035349, + 0.018968025222420692, + 0.020529018715023994, + 0.01360293384641409, + 0.027966687455773354, + -0.02662869356572628, + 0.026313871145248413, + 0.017393914982676506, + -0.007457346189767122, + 0.0021135706920176744, + 0.012205910868942738, + -0.006503041833639145, + -0.03174455091357231, + -0.015281984582543373, + 0.010251391679048538, + 0.00271042063832283, + -5.8567959058564156e-05, + -0.006571909412741661, + 0.015741100534796715, + -0.002398878103122115, + 0.02274588868021965, + 0.02045031264424324, + 0.0157935693860054, + -0.0003644228563643992, + -0.03415818512439728, + -0.014547400176525116, + 0.0057815746404230595, + -0.003872966393828392, + 0.009510247968137264, + 0.007299934979528189, + 0.027074690908193588, + 0.05535620078444481, + -0.0003486407804302871, + -0.003212168114259839, + -0.003179374150931835, + -0.0012699459912255406, + 0.011104034259915352, + -0.022562243044376373, + 0.0020840561483055353, + 0.003856569528579712, + -0.010769535787403584, + -0.0033974540419876575, + 0.011123710311949253, + 0.015609923750162125, + -0.021722717210650444, + -0.002393958857282996, + -0.024700408801436424, + 0.028097864240407944, + 0.012750291265547276, + 0.00020240021694917232, + -0.0009911974193528295, + 0.015295102261006832, + 0.01983378641307354, + 0.028517626225948334, + -0.0173152107745409, + 0.0009649622370488942, + 0.005043710581958294, + -0.005748780909925699, + -0.0018381013069301844, + 0.012671585194766521, + -0.01299296598881483, + -0.016121510416269302, + 0.05031904950737953, + -0.03108867257833481, + -0.01870567351579666, + 0.02254912629723549, + -0.02131607197225094, + -0.004158273804932833, + 0.008795339614152908, + -0.0018184250220656395, + -0.012081294320523739, + 0.015255749225616455, + 0.0011559870326891541, + 0.03394830599427223, + -0.009070808999240398, + 0.005529061425477266, + 0.025159524753689766, + 0.001404401264153421, + -0.021735835820436478, + -0.021539071574807167, + -0.0012847032630816102, + 0.016292039304971695, + -0.022378597408533096, + -0.01019236259162426, + 0.0236510019749403, + -0.018718792125582695, + 0.02967197261750698, + 0.01828591153025627, + 0.029357152059674263, + -0.030983731150627136, + -0.02031913585960865, + 0.003215447533875704, + 0.04299943894147873, + -0.00241035595536232, + 0.027966687455773354, + -0.004587874747812748, + -0.038749340921640396, + -0.016895446926355362, + 0.016580624505877495, + 0.02801915816962719, + 0.005722545552998781, + 0.026694281026721, + 0.019243495538830757, + -0.037936050444841385, + -0.00784431491047144, + 0.03838204964995384, + -0.011602502316236496, + -0.0009485652553848922, + -0.011622178368270397, + 0.0004250916827004403, + -0.012317410670220852, + -0.014560517854988575, + -0.026222048327326775, + 0.03633570671081543, + -0.0163707435131073, + 0.0014371952274814248, + 0.005010916851460934, + 0.018364615738391876, + 0.0002490291080903262, + 0.023152533918619156, + -0.01798420585691929, + 4.206849916954525e-05, + 0.026326989755034447, + 0.012232146225869656, + -0.005502826068550348, + -0.008959309197962284, + -0.023205004632472992, + -0.002689104527235031, + 0.010041509754955769, + 0.036807939410209656, + -0.00842804741114378, + 0.023401768878102303, + -0.011641855351626873, + 0.02407076582312584, + -0.004440302029252052, + 0.008572340942919254, + -0.022601595148444176, + -0.01581980474293232, + -0.012133764103055, + 0.006283322349190712, + -0.015557453967630863, + -0.00573566323146224, + -0.010376008227467537, + -0.00841492973268032, + 0.0245954692363739, + -0.014180107042193413, + 0.017787443473935127, + -0.021670248359441757, + 0.008854368701577187, + 0.009470894932746887, + 0.008349341340363026, + 0.0012617475586012006, + 0.007201553322374821, + -0.010985976085066795, + -0.03428936377167702, + -0.025133289396762848, + -0.029593268409371376, + 0.01676427200436592, + 0.008933073841035366, + -0.02533005364239216, + -0.00633251341059804, + -0.018692556768655777, + -0.010999093763530254, + 0.008283753879368305, + -0.004833829589188099, + -0.020555252209305763, + -0.022955771535634995, + -0.014298166148364544, + -0.018810614943504333, + 0.012127205729484558, + -0.013616051524877548, + -0.00881501566618681, + -0.022995123639702797, + -0.02678610570728779, + 0.015478747896850109, + 0.0007308953208848834, + -0.008388694375753403, + 0.013242200016975403, + -0.01572798192501068, + -0.015780452638864517, + -0.010723624378442764, + 0.03494524210691452, + 0.031036201864480972, + 0.023926472291350365, + 0.011930442415177822, + -0.010782653465867043, + 0.01925661228597164, + -0.0023923192638903856, + 0.03623076528310776, + -0.017223386093974113, + 0.004450140055269003, + 0.00023816611792426556, + -0.015360689722001553, + 0.013773462735116482, + 0.014744163490831852, + -0.021276719868183136, + 0.022916417568922043, + 0.04313061386346817, + 0.01296017225831747, + 0.024241294711828232, + -0.014180107042193413, + 0.006345631089061499, + -0.03814593330025673, + 0.0270222220569849, + 0.0022595038171857595, + 0.017577562481164932, + 0.028124097734689713, + 0.0327414870262146, + -0.007929579354822636, + -0.022365478798747063, + -0.014245695434510708, + -0.005968500394374132, + 0.036414410918951035, + -0.006371865980327129, + -0.015714865177869797, + 0.012428910471498966, + -0.006768672727048397, + 0.006204616744071245, + -0.002962934086099267, + 0.0061521464958786964, + -0.001770873786881566, + -0.009543041698634624, + 0.015426278114318848, + 0.004227141384035349, + 0.014350635930895805, + 0.006102955434471369, + 0.004168112296611071, + -0.022536007687449455, + -0.007536051794886589, + -0.0021676805336028337, + 0.009451218880712986, + 0.016357626765966415, + 0.03077385015785694, + 0.02274588868021965, + -0.012474821880459785, + 0.028517626225948334, + 0.01140573900192976, + 0.01763003133237362, + 0.01538692507892847, + 0.014822868630290031, + -0.03371218964457512, + 0.020843839272856712, + 0.003672923194244504, + 0.013379935175180435, + 0.023703472688794136, + -0.008027960546314716, + -0.0008755986928008497, + -0.0028858683072030544, + 0.0025497302412986755, + 0.007234347052872181, + 0.003203969681635499, + 0.014062048867344856, + -0.011425415053963661, + 0.0020348650868982077, + 0.004709212575107813, + 0.016895446926355362, + 0.023992059752345085, + 0.004987961146980524, + -9.14643969736062e-05, + -0.011169621720910072, + -0.009503688663244247, + 0.004053333308547735, + -0.0076147569343447685, + -0.012520733289420605, + -0.02914726920425892, + -0.0005193743272684515, + -0.005693031009286642, + 0.01324875932186842, + 0.0007276159594766796, + -0.019427141174674034, + 0.005083063617348671, + -0.013183170929551125, + 0.00015126213838811964, + 0.01950584538280964, + 0.007680344861000776, + 0.006483365315943956, + -0.0034499242901802063, + 0.011536914855241776, + -0.022090010344982147, + -0.019650138914585114, + 0.015832923352718353, + 0.0006472707609646022, + -0.004151714965701103, + 0.013327464461326599, + 0.011222092434763908, + -0.013170053251087666, + 0.007175317965447903, + -0.008480517193675041, + -0.0010625242721289396, + -0.028622565791010857, + -0.004158273804932833, + 0.004899417515844107, + -0.011117151938378811, + 0.008283753879368305, + -0.019650138914585114, + 0.021145544946193695, + 0.007437669672071934, + -0.004181229509413242, + 0.018259676173329353, + -0.005614325404167175, + -0.019177906215190887, + 0.034577950835227966, + 0.003715555416420102, + 0.0008928155293688178, + -0.00811978429555893, + -2.4083063181024045e-05, + -0.01331434678286314, + -0.0039385543204844, + -0.01860073395073414, + -0.0139439906924963, + 0.024031411856412888, + -0.01795797236263752, + 0.002198834903538227, + 0.015373807400465012, + -0.00720811216160655, + 0.0509224571287632, + 0.006283322349190712, + -0.02054213546216488, + -0.00880189798772335, + -0.022050658240914345, + -0.005952103529125452, + 0.013045436702668667, + 0.029357152059674263, + 0.008198489435017109, + 0.016751153394579887, + -0.00509618129581213, + 0.006037367507815361, + -0.004089406691491604, + -0.0425272062420845, + 0.005817648023366928, + 0.00044435812742449343, + 0.0005074865184724331, + -0.009490571916103363, + 0.008113224990665913, + -0.01996496133506298, + 0.011943559162318707, + -0.004053333308547735, + 0.004902696702629328, + -0.028779977932572365, + -0.004328802693635225, + 0.008696957491338253, + -0.015741100534796715, + -0.008965868502855301, + -0.003997583407908678, + 0.06784413754940033, + 0.012848672457039356, + 0.01989937387406826, + 0.02054213546216488, + 0.017997324466705322, + 0.028333980590105057, + -0.008014843799173832, + -0.017354562878608704, + 0.013117583468556404, + 0.0016659330576658249, + 0.02815033309161663, + -0.004892858676612377, + -0.004450140055269003, + 0.009405307471752167, + -0.032531607896089554, + 0.028124097734689713, + -0.0015027831541374326, + 0.00663421768695116, + 0.022247420623898506, + 0.01672491803765297, + -0.009766040369868279, + 0.016029687598347664, + -0.00823128316551447, + -0.008677281439304352, + 0.01915167085826397, + -0.004915814381092787, + -0.010828564874827862, + 0.010107098147273064, + -0.00907736737281084, + -0.026169579476118088, + -0.01119585707783699, + -0.0003269147709943354, + 0.0014699891908094287, + 0.017262740060687065, + -0.021014368161559105, + 0.007680344861000776, + -0.006506321486085653, + -0.04601648077368736, + -0.042081207036972046, + 0.02870127186179161, + -0.005715986713767052, + -0.014639222994446754, + -0.007306493818759918, + -0.009851304814219475, + 0.0015987054212018847, + -0.0014265371719375253, + 0.00542084127664566, + 0.01643633097410202, + -0.008336224593222141, + -0.011897647753357887, + -0.004177950322628021, + 0.014980279840528965, + 0.01027106773108244, + 0.0053388564847409725, + -0.010494066402316093, + -0.0012519092997536063, + -0.01393087301403284, + -0.019243495538830757, + -0.021276719868183136, + 0.014940927736461163, + -0.012186234816908836, + 0.003495835931971669, + 0.015177044086158276, + -0.003984465729445219, + -0.021814540028572083, + -0.006398101337254047, + 0.004889579024165869, + -0.008651046082377434, + -0.005627443082630634, + 0.01967637427151203, + -0.00807387288659811, + -0.01804979518055916, + -0.0037089965771883726, + -0.00017575512174516916, + 0.003312189830467105, + 0.02462170459330082, + -0.030563969165086746, + 0.03355477750301361, + -0.0015773894265294075, + 0.003307270584627986, + -0.003581100143492222, + -0.004259935114532709, + 0.010021833702921867, + -0.013497993350028992, + -0.009543041698634624, + -0.02585475705564022, + -0.006378424819558859, + 0.025448111817240715, + -0.018522027879953384, + 0.011313915252685547, + -0.0071294065564870834, + 0.0033974540419876575, + -0.0015995253343135118, + 0.012842114083468914, + 0.0014355555176734924, + 0.01421946007758379, + 0.029304681345820427, + 0.008146019652485847, + -0.025959696620702744, + 0.055408671498298645, + 0.0031974108424037695, + 0.008421488106250763, + 0.012855231761932373, + -0.0011699245078489184, + 0.025684228166937828, + -0.02501523122191429, + 0.0010969579452648759, + -0.004846946801990271, + 0.009975922293961048, + 0.015832923352718353, + -0.010362890549004078, + -0.02071266435086727, + -0.018351498991250992, + 0.00943154189735651, + 0.018299028277397156, + -0.026746751740574837, + 0.009464336559176445, + -0.028386449441313744, + 0.016816740855574608, + -0.00807387288659811, + 0.01727585680782795, + 0.015032750554382801, + -0.02177518792450428, + -0.0018315425841137767, + 0.005017475690692663, + 0.001849579275585711, + -0.00023324703215621412, + -0.020948780700564384, + -0.035312533378601074, + -0.012953613884747028, + -0.00013619741366710514, + -0.011222092434763908, + -0.03888051584362984, + 0.006473527289927006, + -0.02627451904118061, + 0.006375145632773638, + 0.003184293396770954, + 0.019164789468050003, + -0.010972858406603336, + 0.026195812970399857, + 0.013255317695438862, + -0.016842976212501526, + -0.001849579275585711, + -0.002066019456833601, + 0.0017364401137456298, + -0.02843892015516758, + 0.019951844587922096, + -0.014586752280592918, + 0.009051132015883923, + 0.007293376140296459, + 0.008631370030343533, + 0.01934843510389328, + 0.04926964268088341, + -0.02307382971048355, + -0.03137725964188576, + -0.017197150737047195, + -0.03657182306051254, + -0.012009147554636002, + 0.00752293411642313, + -0.003909039776772261, + 0.008257518522441387, + -0.018876202404499054, + -0.004650183487683535, + 0.050135403871536255, + 0.0005816828343085945, + -0.010034951381385326, + -0.01065803598612547, + 0.01358981616795063, + -0.022273655980825424, + 0.02018796093761921, + -0.005584810860455036, + -0.015439395792782307, + -0.005033872555941343, + -0.005342135671526194, + -0.02144724875688553, + -0.023244356736540794, + 0.012789643369615078, + -0.020883193239569664, + 0.00693264277651906, + -0.002921941690146923, + -0.001171564101241529, + 0.0014552319189533591, + -0.007004789542406797, + 0.011956676840782166, + -0.021814540028572083, + 0.01963702216744423, + -0.003312189830467105, + -0.011818942613899708, + -0.0084936348721385, + -0.0025398919824510813, + -0.021539071574807167, + 0.02799292281270027, + -0.0012035382678732276, + -0.001308478880673647, + 0.027415748685598373, + -0.009739805944263935, + 0.028806213289499283, + 0.022824594751000404, + -0.00285143475048244, + 0.03961510211229324, + 0.02100125141441822, + 0.04871870577335358, + 0.01815473474562168, + -0.017551327124238014, + -0.012041941285133362, + -0.043891433626413345, + -0.0017561165150254965, + -0.003407292300835252, + 0.012979848310351372, + -0.00031830635271035135, + 0.002964573912322521, + -0.02009613811969757, + -0.0011182739399373531, + 0.012868349440395832, + 0.007293376140296459, + -0.004092685878276825, + 0.047931648790836334, + 0.013497993350028992, + 0.0037647464778274298, + -0.01646256633102894, + 0.0078967846930027, + -0.009543041698634624, + 0.004364875610917807, + -0.009313483722507954, + -0.02210312709212303, + 0.00044148866436444223, + -0.014258813112974167, + 0.009169191122055054, + 0.05771736800670624, + 0.010428478941321373, + 0.017157798632979393, + -0.01352422870695591, + -0.009516806341707706, + -0.0015527938958257437, + -0.019204141572117805, + 0.0008919956744648516, + 0.0221687164157629, + -0.0059193093329668045, + 0.036414410918951035, + -0.00897898618131876, + -0.020843839272856712, + 0.002098813420161605, + -0.02815033309161663, + -0.021827658638358116, + 0.00014562567230314016, + -0.008946191519498825, + 0.018364615738391876, + -0.020856957882642746, + -0.002072578063234687, + 0.002028306247666478, + 0.0052142394706606865, + -0.0006706364220008254, + -0.001367508084513247, + -0.003909039776772261, + -0.02290330082178116, + -0.008113224990665913, + 0.003390895202755928, + 0.000298220053082332, + 0.013812814839184284, + -0.005611046217381954, + -0.005030593369156122, + -0.01511145569384098, + 0.0012338727246969938, + -0.02720586769282818, + -0.01724962145090103, + 0.0176037959754467, + -0.03121984750032425, + 0.006237410940229893, + 0.023624766618013382, + 0.00346632138825953, + 0.04118921235203743, + -0.014691692776978016, + -0.030747614800930023, + -0.01718403398990631, + 0.02041095867753029, + -0.03090502694249153, + 0.040716979652643204, + 0.04011356830596924, + 0.0032728370279073715, + 0.0031236244831234217, + 0.011025329120457172, + -0.012264939956367016, + -0.005568413995206356, + 0.027835512533783913, + -0.003827054984867573, + -0.017525091767311096, + 0.004410787485539913, + 0.004909255541861057, + 0.02157842367887497, + -0.011674649082124233, + -0.015177044086158276, + 0.0022004744969308376, + 0.01122865080833435, + -0.0077524916268885136, + -0.012671585194766521, + -0.008336224593222141, + 0.024451175704598427, + 0.007621315773576498, + -0.012710938230156898, + 0.02830774523317814, + -0.028937388211488724, + 0.01908608339726925, + 0.006985113024711609, + 0.014245695434510708, + -0.009713570587337017, + -0.03179702162742615, + -0.001529838191345334, + -0.001122373272664845, + 0.01815473474562168, + -0.005617605056613684, + -0.002892427146434784, + -0.01351111102849245, + -0.02300824038684368, + -0.012264939956367016, + 0.017485737800598145, + 0.0021053720265626907, + -0.0032679180148988962, + -0.0006374325603246689, + 0.01057933084666729, + -0.012592880055308342, + -0.00016888888785615563, + 0.02047654800117016, + -0.02336241491138935, + 0.015426278114318848, + -0.0037975404411554337, + -0.04620012640953064, + -0.0014675295678898692, + -0.0018971305107697845, + 0.01989937387406826, + 0.021499719470739365, + -0.02219495177268982, + -0.0002939158584922552, + -0.004958446603268385, + -0.03539124131202698, + -0.030327852815389633, + -0.00943154189735651, + -0.0017889103619381785, + 0.0008616612758487463, + 0.013812814839184284, + -0.020660193637013435, + 0.03381713107228279, + 0.005509384907782078, + 0.013720992021262646, + -0.05797971785068512, + 0.008303429931402206, + -0.005765177775174379, + -0.006755555514246225, + 0.0399823933839798, + -0.004092685878276825, + -0.0038467312697321177, + -0.01850890927016735, + 0.014652340672910213, + -0.01915167085826397, + -0.00870351679623127, + 0.01352422870695591, + -0.0071294065564870834, + -0.0023710031528025866, + 0.005191283766180277, + 0.01950584538280964, + 0.0003951671824324876, + 0.00935283675789833, + 0.00425337627530098, + -0.03979874774813652, + 0.01378658041357994, + 0.01672491803765297, + 0.004027097951620817, + -0.039169102907180786, + -0.014022696763277054, + 0.006722761318087578, + -0.0004162783152423799, + -0.005161769222468138, + 0.017433268949389458, + -0.03051149845123291, + -0.021079955622553825, + -0.014586752280592918, + 0.022378597408533096, + 0.011386062018573284, + -0.013379935175180435, + -0.004358317237347364, + 0.014822868630290031, + -0.02258847840130329, + -0.025448111817240715, + 0.00513553386554122, + -0.03245289996266365, + 0.00273337634280324, + 0.022706536576151848, + -0.004132038913667202, + 0.026051519438624382, + -0.01614774577319622, + 0.017813678830862045, + -0.0004554260813165456, + 0.012396115809679031, + -0.00811978429555893, + -0.02773057110607624, + -0.020174842327833176, + 0.02704845741391182, + 0.032111842185258865, + -0.02588099241256714, + 0.009569277055561543, + 0.010697389021515846, + -0.012933936901390553, + -0.0027661703061312437, + -0.007759050466120243, + 0.0016757713165134192, + -0.02627451904118061, + -0.005715986713767052, + -0.0012535490095615387, + -0.008323106914758682, + -0.005797971971333027, + -0.0020512621849775314, + 0.009228220209479332, + -0.020699545741081238, + 0.021460365504026413, + 0.17808431386947632, + -0.018128499388694763, + -0.009910333901643753, + 0.0328201949596405, + 0.0006780150579288602, + -0.01656750775873661, + 0.009890657849609852, + -0.00724746473133564, + -0.005748780909925699, + 0.01378658041357994, + -0.005584810860455036, + 0.015609923750162125, + 0.018823731690645218, + -0.0008493635104969144, + 0.007798403035849333, + -0.01238955743610859, + -0.010526860132813454, + 0.005407723598182201, + 0.008224724791944027, + 0.02016172558069229, + 0.0357847660779953, + -0.04344543442130089, + 0.0006919525330886245, + -0.009588953107595444, + 0.031692080199718475, + -0.0009051132365129888, + -0.015373807400465012, + -0.003225285792723298, + 0.039169102907180786, + -0.0018544982885941863, + -0.01724962145090103, + 0.010907270014286041, + 0.003518791636452079, + -0.02387400157749653, + -0.0033646600786596537, + -0.0004459978372324258, + 0.007667227182537317, + -0.012776525691151619, + 0.013550463132560253, + 0.010461272671818733, + 0.004368155263364315, + -0.00999559834599495, + 0.002148004248738289, + -0.0078967846930027, + -0.027415748685598373, + 0.02691728062927723, + 0.004709212575107813, + 0.0009870980866253376, + -0.023244356736540794, + -0.0015134412096813321, + -0.02746821939945221, + -0.0008919956744648516, + 0.008014843799173832, + 0.03935274854302406, + -0.023821530863642693, + -0.016292039304971695, + 0.02475287951529026, + -0.012448586523532867, + 0.009707011282444, + -0.0037877021823078394, + -0.034184422343969345, + 0.025736698880791664, + -0.020069902762770653, + 0.004102524369955063, + -0.007667227182537317, + -0.006106235086917877, + -0.03756875917315483, + 0.019112318754196167, + 0.001653635292313993, + -0.0028153613675385714, + -0.014389988966286182, + -0.036965347826480865, + -0.034604184329509735, + 0.01588539406657219, + -0.015295102261006832, + -0.026864809915423393, + 0.005860280245542526, + 0.01303887739777565, + 0.0187974963337183, + 0.008237842470407486, + -0.008946191519498825, + 0.0044599780812859535, + 0.0016159223159775138, + -0.018233440816402435, + 0.0012158360332250595, + -0.04921717196702957, + 0.03804099187254906, + 0.001146968686953187, + -0.01566239446401596, + -0.02093566209077835, + 0.0032138079404830933, + 0.006827702280133963, + 0.0044698165729641914, + -0.014652340672910213, + 0.01888931915163994, + -0.004984681494534016, + 0.01023827400058508, + 0.025343170389533043, + -0.014232577756047249, + 0.011058122850954533, + 0.0004935490433126688, + 0.04475719481706619, + 0.03365971893072128, + -0.0012765048304572701, + 0.00999559834599495, + 0.00420746486634016, + -0.0055749728344380856, + 0.018613850697875023, + 0.011497561819851398, + -0.012540409341454506, + 0.009149514138698578, + -0.01828591153025627, + 0.02115866169333458, + 0.0034138511400669813, + -0.005755339749157429, + 0.01546563021838665, + -0.010356332175433636, + -0.023598533123731613, + -0.006224293261766434, + -0.017328327521681786, + -0.01174679584801197, + 0.005643840413540602, + 0.00120107876136899, + 0.012127205729484558, + 0.0019561597146093845, + -0.030590204522013664, + -0.03129855543375015, + 0.007332729175686836, + -0.017197150737047195, + 0.005060107912868261, + 0.030852556228637695, + -0.0406382717192173, + -0.007372081745415926, + -0.0038762458134442568, + 0.017197150737047195, + 0.013694756664335728, + -0.002280819695442915, + -0.046121422201395035, + -0.001979115419089794, + 0.0175644438713789, + 0.014534282498061657, + -0.005378209054470062, + 0.0060570440255105495, + -0.0035220710560679436, + 0.024897173047065735, + -0.009005220606923103, + 0.027966687455773354, + -0.016619978472590446, + -0.03247913718223572, + -0.015255749225616455, + -0.013130701147019863, + -0.010743300430476665, + -0.0074901399202644825, + 0.008401812054216862, + 0.04407507926225662, + 0.005499546881765127, + -0.0199911966919899, + -0.044599782675504684, + 0.010448154993355274, + 0.022024422883987427, + 0.0014306363882496953, + -0.0014798273332417011, + -0.01019236259162426, + -0.030590204522013664, + 0.0020086299628019333, + 0.00936595443636179, + -0.16433708369731903, + 0.0033679394982755184, + 0.021788306534290314, + -0.0406382717192173, + 0.023887118324637413, + 0.011956676840782166, + 0.006142308469861746, + -0.0051519307307899, + -0.020555252209305763, + -0.004069730173796415, + 0.02801915816962719, + 0.022916417568922043, + -0.005115857347846031, + -0.005712707526981831, + -0.006611261982470751, + 0.011668090708553791, + -0.02342800423502922, + 0.029881855472922325, + 0.02898985892534256, + 0.03436806797981262, + 0.007588522043079138, + -0.0321643128991127, + 0.02533005364239216, + -0.004364875610917807, + 0.015780452638864517, + 0.008637928403913975, + -0.0025989210698753595, + 0.012179676443338394, + 0.01387840323150158, + -0.010389125905930996, + -0.029567033052444458, + 0.010782653465867043, + 0.017997324466705322, + -0.002689104527235031, + 0.004204185213893652, + -0.013839050196111202, + -0.0011559870326891541, + -0.01023827400058508, + -0.002139805816113949, + 0.040428392589092255, + 0.02170960046350956, + -0.0013560301158577204, + -0.017971089109778404, + 0.00853954628109932, + -0.024542998522520065, + 0.0023710031528025866, + 0.017223386093974113, + -0.010480948723852634, + -0.004145156126469374, + 0.00037979503395035863, + -0.009838187135756016, + -0.021880129352211952, + 0.0030613159760832787, + 0.009562717750668526, + 0.009621747769415379, + 0.03478782996535301, + 0.006273484323173761, + 0.01027106773108244, + -0.014376871287822723, + 0.0008739589829929173, + 0.011864854022860527, + -0.006020970642566681, + 0.01928284764289856, + 0.01659374311566353, + 0.004322243854403496, + -0.026090873405337334, + 0.0157542172819376, + 0.006460409611463547, + 0.0030826320871710777, + -0.0071425242349505424, + -0.022824594751000404, + -0.02186701074242592, + 0.02071266435086727, + -0.006040647160261869, + -0.003686040872707963, + 0.004728888627141714, + -0.012828996405005455, + 0.0012232146691530943, + -0.000371801492292434, + 0.0016388780204579234, + -0.020856957882642746, + 0.07671162486076355, + -0.03426312655210495, + -0.0003023192984983325, + -0.005991456098854542, + 0.01002839207649231, + 0.016987269744277, + -0.0005656957509927452, + 0.020633958280086517, + 0.0003927076468244195, + -0.008532987907528877, + -0.025093937292695045, + -0.014376871287822723, + -0.022929536178708076, + 0.018233440816402435, + -0.00959551241248846, + -0.00017032361938618124, + -0.013019201345741749, + -0.0021807982120662928, + -0.02126360312104225, + 0.01331434678286314, + -0.008480517193675041, + -0.027074690908193588, + -0.006260366644710302, + 0.0013625889550894499, + 0.0025382523890584707, + -0.03436806797981262, + 0.006116073112934828, + 0.01601656898856163, + -0.008710075169801712, + -0.025776050984859467, + -0.01967637427151203, + 0.01921726018190384, + -0.006293160375207663, + -0.0025448112282902002, + 0.004879740998148918, + 0.010631801560521126, + -0.024739762768149376, + 0.0035712621174752712, + -0.003479439066722989, + 0.024674173444509506, + -0.0020807767286896706, + -0.034735359251499176, + 0.008250960148870945, + 0.012061617337167263, + -0.021460365504026413, + -0.09103602916002274, + 0.0024907011538743973, + 0.00935283675789833, + 0.021919481456279755, + 0.027153396978974342, + -0.004217302892357111, + -0.016961034387350082, + 0.018430205062031746, + 0.0026907443534582853, + 0.01294049620628357, + -0.054306793957948685, + -0.029514562338590622, + -7.809061207808554e-05, + -0.013379935175180435, + 0.018561379984021187, + -0.013812814839184284, + -0.0012855231761932373, + -0.030301617458462715, + -0.02210312709212303, + 0.03814593330025673, + 0.01568862982094288, + -0.008762545883655548, + 0.00331710884347558, + -0.014980279840528965, + 0.007083495147526264, + -0.013104465790092945, + -0.030432792380452156, + 0.0065259975381195545, + 0.03250537067651749, + 0.00991689320653677, + 0.01766938529908657, + -0.01714468188583851, + 0.020948780700564384, + -0.014403106644749641, + -0.005532340612262487, + -0.005797971971333027, + 0.010408801957964897, + -0.0364406444132328, + 0.012842114083468914, + -0.02733704261481762, + -0.005732384044677019, + -0.0037385111209005117, + 0.040008630603551865, + -0.023860884830355644, + 0.011169621720910072, + -0.02759939432144165, + -0.016344508156180382, + -0.008264077827334404, + -0.016816740855574608, + -0.02620893158018589, + -0.03452548012137413, + -0.010651477612555027, + 0.005456914659589529, + 0.041399091482162476, + 0.005099460482597351, + 0.016961034387350082, + 0.016974152997136116, + -0.0212242491543293, + -0.014534282498061657, + -0.010021833702921867, + -0.02161777764558792, + 0.016751153394579887, + -0.02446429245173931, + 0.02369035594165325, + 0.01604280434548855, + -0.011497561819851398, + -0.025316935032606125, + -0.003433527424931526, + -0.0012855231761932373, + -0.010153009556233883, + -0.026799222454428673, + 0.02041095867753029, + 0.003407292300835252, + -0.0038368930108845234, + -0.03901169076561928, + 0.001571650500409305, + -0.03200690448284149, + -0.02025354839861393, + 0.008264077827334404, + -0.033213719725608826, + -0.03554864972829819, + -0.02378217875957489, + 0.014048932120203972, + -0.008532987907528877, + 0.023926472291350365, + 0.010762977413833141, + 0.005588090512901545, + -0.03633570671081543, + 0.030327852815389633, + -0.01864008605480194, + 0.008375576697289944, + -0.014783516526222229, + 0.0032531607430428267, + -0.014350635930895805, + -0.00603408832103014, + 0.010362890549004078, + 0.008034519851207733, + 0.003653246909379959, + 0.01442934200167656, + -0.002356245880946517, + -0.03575853258371353, + -0.01303887739777565, + -0.03911663219332695, + 0.008421488106250763, + 0.013091348111629486, + -0.006460409611463547, + -0.01795797236263752, + 0.008244400843977928, + 0.01676427200436592, + 0.01961078681051731, + 0.004699374083429575, + -0.012842114083468914, + -0.02203753963112831, + 0.009766040369868279, + -0.027914216741919518, + -0.03476159647107124, + -0.029042329639196396, + -0.008874044753611088, + -0.010330096818506718, + 0.014324400573968887, + 0.03442053869366646, + 0.016095275059342384, + -0.02277212403714657, + 0.016882330179214478, + -0.009825069457292557, + 0.01065803598612547, + -0.026038402691483498, + 0.0014995037345215678, + -0.0009485652553848922, + -0.004686256404966116, + 0.0008764185477048159, + -0.00668012909591198, + 0.005640560761094093, + 0.0051519307307899, + -8.00889974925667e-05, + 0.006266925483942032, + -0.012842114083468914, + 0.01763003133237362, + 0.017354562878608704, + 0.024385586380958557, + 0.012153441086411476, + 0.0473807118833065, + -0.03898545727133751, + -0.023624766618013382, + 0.021565306931734085, + -0.036965347826480865, + -0.009162631817162037, + 0.015308219939470291, + 0.010867917910218239, + -0.006926083937287331, + 0.008388694375753403, + -0.023480473086237907, + 0.04176638647913933, + 0.005509384907782078, + 0.024215059354901314, + 0.0023529664613306522, + 0.011025329120457172, + -0.030878791585564613, + 0.009346278384327888, + 0.021407896652817726, + 0.0017839913489297032, + -0.02378217875957489, + 0.0306426752358675, + 0.01386528555303812, + 0.02620893158018589, + -0.0075294929556548595, + 0.026195812970399857, + -0.02759939432144165, + -0.017682502046227455, + -0.0049814023077487946, + -0.00017134843801613897, + -0.009975922293961048, + -0.007647551130503416, + -0.022955771535634995, + 0.004181229509413242, + 0.020489664748311043, + -0.011064681224524975, + -0.006568629760295153, + 0.02064707688987255, + -0.0012199352495372295, + 0.005591369699686766, + 0.03137725964188576, + 0.013707874342799187, + 0.015413160435855389, + -0.018495792523026466, + 0.004928932059556246, + 0.03250537067651749, + 0.004286170471459627, + -0.006699805613607168, + -0.023126298561692238, + -0.01976819708943367, + 0.0050896224565804005, + 0.0022709816694259644, + 0.020633958280086517, + 0.00393199548125267, + -0.00693920161575079, + 0.016554389148950577, + 0.02148660086095333, + 0.013406170532107353, + -0.04050709679722786, + 0.006821143440902233, + 0.03630946949124336, + -0.004325523041188717, + 0.0047321682795882225, + -0.005601208191365004, + -0.034735359251499176, + -0.0027169794775545597, + 0.0212242491543293, + 0.0029399783816188574, + -0.036256998777389526, + -0.00821816548705101, + 0.008500194177031517, + -0.014062048867344856, + 0.015491865575313568, + 0.014376871287822723, + -0.0027268175035715103, + -0.02565799281001091, + 0.021722717210650444, + -0.015229513868689537, + -0.009733246639370918, + -0.03505018353462219, + 0.005519222933799028, + 0.019046731293201447, + 0.006880172528326511, + 0.010913829319179058, + 0.015636159107089043, + 0.025159524753689766, + 0.003974627703428268, + 0.01776120811700821, + 0.011622178368270397, + 0.0030760732479393482, + -0.004168112296611071, + 0.021368542686104774, + 0.008519870229065418, + -0.01763003133237362, + -0.03560112044215202, + -0.015806687995791435, + -0.010323538444936275, + 0.02261471375823021, + 0.020083019509911537, + 0.016646213829517365, + 0.1145952045917511, + 0.02898985892534256, + -0.0073655229061841965, + 0.003433527424931526, + -0.016606859862804413, + 0.031036201864480972, + 0.00873631052672863, + 0.017459502443671227, + 0.016121510416269302, + -0.06007853150367737, + 0.0005009277374483645, + -0.016672449186444283, + 0.0029350591357797384, + -0.051525868475437164, + -0.012789643369615078, + 0.008742868900299072, + -0.0003709816373884678, + 0.002713700057938695, + -0.008762545883655548, + 0.02477911487221718, + 0.030616439878940582, + -0.00939874816685915, + 0.026484400033950806, + 0.018430205062031746, + -0.020778251811861992, + -0.02316565252840519, + 0.01727585680782795, + -0.0059586623683571815, + -0.024228176102042198, + 0.02585475705564022, + -0.026694281026721, + 0.0019250053446739912, + -0.07188435643911362, + -0.022916417568922043, + 0.01093350537121296, + -0.0059324270114302635, + -0.014180107042193413, + -0.01831214688718319, + 0.011182739399373531, + -0.0018102264730259776, + -0.0018790938192978501, + 0.022221185266971588, + -0.020135490223765373, + -0.02581540308892727, + -0.004148435778915882, + -0.02210312709212303, + 0.008841251023113728, + -0.030485263094305992, + -0.04163520783185959 + ], + "metadata": { + "source": "Kreye_Marieke_BA_241_V2.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 17, + "has_images": true, + "image_count": 98, + "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", + "links": [], + "last_modified": "2025-05-05T23:00:23", + "_known_field_names": "frozenset({'is_continuation', 'sent_to', 'header_footer_type', 'email_message_id', 'filename', 'languages', 'detection_class_prob', 'sent_from', 'link_texts', 'cc_recipient', 'subject', 'image_mime_type', 'image_path', 'filetype', 'page_number', 'last_modified', 'signature', 'detection_origin', 'text_as_html', 'attached_to_filename', 'bcc_recipient', 'data_source', 'link_start_indexes', 'category_depth', 'emphasized_text_tags', 'parent_id', 'orig_elements', 'page_name', 'coordinates', 'url', 'link_urls', 'file_directory', 'links', 'table_as_cells', 'emphasized_text_contents', 'key_value_pairs', 'image_base64'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "Kreye_Marieke_BA_241_V2.pdf", + "detection_class_prob": 0.3422867953777313, + "parent_id": "e02392183bc6851689602ad4b9f6039f", + "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", + "id": "ce00eae5-7e07-454f-9e4f-f79ac36f92f4", + "processing_timestamp": "2025-05-05T23:15:46.977945", + "chunk_number": 38, + "total_chunks": 56, + "chunking_strategy": "hybrid", + "word_count": 748 + } +} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000039.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000039.json new file mode 100644 index 0000000000000000000000000000000000000000..30468a3414147059e7a522f31bae9af23bbf2011 --- /dev/null +++ b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000039.json @@ -0,0 +1,1570 @@ +{ + "id": "61a115b2-0ff7-441a-f6d9-eb3d00000039", + "content": "Die in Kapitel 6 vorgestellten Ergebnisse zeigen, dass eine Zunahme von Stadtgr\u00fcn einen geringen Einfluss auf den thermischen Geb\u00e4udeenergiebedarf hat. Grund hierf\u00fcr ist, dass eine Zunahme der B\u00e4ume zu gegenseitiger Verschattung f\u00fchrt, wodurch der Verschattungseffekt jedes einzelnen Baums auf das Geb\u00e4ude gemindert wird. Au\u00dferdem wird in dem angewandten Workflow die Temperaturabsenkung durch Evapotranspiration, welche ebenso auf den Energiebedarf wirkt, nicht ber\u00fccksichtigt. Die unterschiedliche prozentuale Ver\u00e4nderung des thermischen Geb\u00e4udeenergiebedarfs innerhalb der jeweiligen Gebietsausschnitte ist zum einen auf die gew\u00e4hlte Gebietsgr\u00f6\u00dfe als auch auf die Anzahl der neuen B\u00e4ume und deren Pflanzabstand zur\u00fcckzuf\u00fchren. Dennoch ist ein leichter Anstieg des Heizbedarfs zu erkennen, welcher auf eine zus\u00e4tzliche Verschattung der H\u00e4userfassade in den Herbst- und Wintermonaten zur\u00fcckzuf\u00fchren ist, da auch die kahlen Baumgerippe einen minimalen Verschattungseffekt aufweisen. Der Verschattungseffekt voll belaubter B\u00e4ume hat im Vergleich einen deutlich gr\u00f6\u00dferen Effekt auf den K\u00fchlbedarf. Die Unterschiede im spezifischen Energiebedarf in den beiden Fallstudiengebieten lassen sich durch die Geb\u00e4udetypologie erkl\u00e4ren. In Gromb\u00fchl dominieren Altbauten aus der Gr\u00fcnderzeit, w\u00e4hrend Grafenb\u00fchl haupts\u00e4chlich aus sp\u00e4ter errichteten Ein- und Zweifamilienhaussiedlungen besteht. Der generell schlechtere energetische Zustand der Altbauten f\u00fchrt zu einem erh\u00f6hten Heiz- bzw. K\u00fchlbedarf. Die Ver\u00e4nderung im Heiz- und K\u00fchlbedarf spiegeln sich auch in den w\u00e4rmebedingten CO2e-Emissionen wider. Folglich f\u00fchrt ein h\u00f6herer Heizbedarf zu gestiegenen CO2e- Emissionen, w\u00e4hrend der verringerte K\u00fchlbedarf zu einer Reduktion der CO2e- Emissionen beitr\u00e4gt. Dadurch, dass der Effekt der Verschattung auf den K\u00fchlbedarf gr\u00f6\u00dfer als auf den Heizbedarf ist, ist f\u00fcr die Summe der CO2e-Emissionen des thermischen Geb\u00e4udeenergiebedarfs eine Reduktion festzustellen. Neben der Verschattung des Stra\u00dfenraums hat die Zunahme der Evapotranspiration, die mit einer steigenden Anzahl von B\u00e4umen einhergeht, einen gro\u00dfen Einfluss auf den thermischen Komfort im Freien. Pflanzen nutzen die einfallende Globalstrahlung f\u00fcr die Photosynthese, wodurch die einfallende Strahlung im st\u00e4dtischen Raum reduziert wird. Diese Reduktion der solaren Strahlung f\u00fchrt zu einer gef\u00fchlten Temperaturabsenkung, da weniger Strahlung auf versiegelte Fl\u00e4chen und auf den Menschen einwirkt. Die Simulationsergebnisse zeigen, dass die Erh\u00f6hung der Baumanzahl in den untersuchten Gebietsausschnitten nur einen geringen Energieentzug, insbesondere in den\n50\nInterpretation der Simulationsergebnisse\nSommermonaten, zur Folge hat. Dies ist auf die h\u00f6here Strahlungsintensit\u00e4t im Sommer und die abnehmende Evapotranspirationsrate der B\u00e4ume ab der zweiten Jahresh\u00e4lfte zur\u00fcckzuf\u00fchren. Die Kurven der Evapotranspiration weisen viele Spitzen auf, was darauf zur\u00fcckzuf\u00fchren ist, dass die Wetterdaten f\u00fcr die Simulationen auf einem Vergleichsjahr basieren und nicht auf einer Mittelung der Daten \u00fcber einen l\u00e4ngeren Zeitraum. Die st\u00fcndliche Aufl\u00f6sung der Daten des betrachteten Jahres bildet die spezifischen Wetterbedingungen dieses Jahres ab. Die Evapotranspiration variiert st\u00fcndlich, da sie von verschiedenen Faktoren wie der Temperatur, der Niederschlagsmenge, der Wasserverf\u00fcgbarkeit im Boden und der einfallenden solaren Strahlung, beeinflusst wird. Aus den Simulationen geht hervor, dass die Maxima der Evapotranspiration zeitlich versetzt zu den Maxima der Lufttemperatur und der Niederschlagsmenge auftreten. H\u00f6here Lufttemperaturen erh\u00f6hen zun\u00e4chst die Evapotranspiration, da warme Luft mehr Wasser aufnehmen kann. Erreichen jedoch hochsommerliche Temperaturen in Kombination mit ausbleibenden Niederschl\u00e4gen ihren H\u00f6hepunkt, nimmt die Evapotranspiration ab, da den Pflanzen nicht gen\u00fcgend Wasser im Wurzelraum zur Verf\u00fcgung steht. Je mehr Globalstrahlung auf die Pflanzen trifft, desto h\u00f6her ist die zu erwartende Evapotranspiration, da mehr Energie f\u00fcr den Verdunstungsprozess zur Verf\u00fcgung steht.", + "embedding": [ + 0.017300771549344063, + -0.0073866997845470905, + 0.019567588344216347, + -0.028478527441620827, + 0.017444076016545296, + 0.019307034090161324, + -0.023905808106064796, + -0.017743712291121483, + -0.004908181726932526, + -0.019020425155758858, + 0.007484407164156437, + 0.010298388078808784, + -0.009171493351459503, + 0.018733816221356392, + 0.006715773604810238, + 0.007985972799360752, + 0.04179282486438751, + -0.005005889572203159, + 0.024674443528056145, + 0.008174874819815159, + 0.005129652563482523, + 0.019789058715105057, + 0.010233249515295029, + 0.01625855639576912, + -0.006911188829690218, + 0.01937217265367508, + 0.018772900104522705, + -0.02307203598320484, + -0.007855696603655815, + 0.0061816382221877575, + 0.013770267367362976, + -0.014291374944150448, + -0.024231500923633575, + -0.01020068023353815, + -0.01671452447772026, + -0.01242841500788927, + -0.006077416706830263, + -0.01826481893658638, + 0.021130912005901337, + -0.008546164259314537, + 0.019632726907730103, + -0.009777280502021313, + -0.009594893082976341, + -0.00055693369358778, + 0.01370512880384922, + 0.011295006610453129, + 0.006442192010581493, + -0.00885882880538702, + -0.01659727469086647, + 0.027905309572815895, + 0.02527371607720852, + 0.024791691452264786, + -0.0031217599753290415, + -0.001999750267714262, + -0.019671810790896416, + -0.0033008905593305826, + -0.021417520940303802, + 0.003918077331036329, + 0.006269575096666813, + -0.010734815150499344, + -0.01057848334312439, + -0.0018792441114783287, + -0.01649305410683155, + 0.0024996877182275057, + -0.036373306065797806, + -6.559644680237398e-05, + -0.01982814259827137, + -0.00012671462900470942, + 0.0012172746937721968, + -0.02206890471279621, + 0.028765136376023293, + 0.0489841103553772, + 0.005680072121322155, + -0.009868474677205086, + 0.007093576714396477, + -0.017639489844441414, + 0.011685837060213089, + 0.01097582746297121, + -0.008363775908946991, + 0.0044001019559800625, + 0.007992487400770187, + -0.025039218366146088, + -0.02549518644809723, + 0.048723556101322174, + 0.012063640169799328, + 0.01782187819480896, + -0.002196794142946601, + 0.024817747995257378, + 0.0035500451922416687, + 0.015346617437899113, + 0.023358646780252457, + 0.00857221893966198, + 0.005728926043957472, + 0.020740080624818802, + -0.0021072286181151867, + -0.00498634809628129, + 0.007100090384483337, + 0.015633227303624153, + 0.013978710398077965, + -0.02806164138019085, + -0.025599408894777298, + 0.003387199016287923, + -0.014851565472781658, + -0.001753852586261928, + -0.03389804810285568, + 0.00649104593321681, + 0.010441692546010017, + 0.02894752472639084, + 0.012825760059058666, + -0.03718102350831032, + -0.023371674120426178, + 0.03590431064367294, + -0.021313298493623734, + -0.021795323118567467, + 0.006497559603303671, + -0.02806164138019085, + 0.029989739879965782, + -0.001571464934386313, + -0.021795323118567467, + -0.0027276724576950073, + 0.015216340310871601, + -0.013731184415519238, + 0.003911563660949469, + -0.018564457073807716, + 0.0251694954931736, + 0.01241538766771555, + 0.010350498370826244, + -0.016115251928567886, + -0.043512482196092606, + -0.024908941239118576, + -0.0204013604670763, + 0.010050862096250057, + 0.0017733941785991192, + 0.004488038830459118, + -0.023879753425717354, + 0.025221604853868484, + -0.01605011336505413, + -0.01353576872497797, + -0.022134043276309967, + -0.04275687411427498, + -0.0226160679012537, + -0.0020241772290319204, + -0.032256558537483215, + -0.01826481893658638, + 0.009679572656750679, + 0.029129913076758385, + 0.010011779144406319, + 0.022772399708628654, + 0.005149194039404392, + -0.008337721228599548, + -0.007087062578648329, + 0.0012254170142114162, + 0.015893779695034027, + -0.015620199032127857, + 0.006536643020808697, + -0.00029006964177824557, + -0.021313298493623734, + -0.0030875622760504484, + -0.027827143669128418, + 0.01443467941135168, + 0.020740080624818802, + -0.013522741384804249, + -0.0018531887326389551, + 0.0034621083177626133, + 0.0018580741016194224, + 0.00426331115886569, + -0.005979709327220917, + -0.0015201683854684234, + 0.01135363057255745, + -0.012747593224048615, + 0.00034258750383742154, + 0.022576984018087387, + -0.03890067711472511, + 0.027566589415073395, + 0.003195040626451373, + 0.023658283054828644, + -0.01915070228278637, + 0.02894752472639084, + -9.964146738639101e-05, + -0.03574797883629799, + -0.03262133151292801, + 0.013822377659380436, + 0.001564136939123273, + 0.015385700389742851, + -0.024335723370313644, + -0.00908681284636259, + 0.022863594815135002, + 0.020245028659701347, + 0.0018564456840977073, + -0.0021169993560761213, + 0.0002788739511743188, + 0.011509963311254978, + 0.007061007432639599, + -0.01242841500788927, + -0.6328330039978027, + 0.016988106071949005, + -0.0015348246088251472, + -0.008389831520617008, + 0.004204686731100082, + 0.019632726907730103, + 0.03486209362745285, + 0.02139146439731121, + -0.018772900104522705, + 0.013574851676821709, + 0.00797294545918703, + 0.001954153412953019, + -0.010291874408721924, + 0.00985544640570879, + 0.007634225767105818, + -0.02404911443591118, + -0.006373796612024307, + 0.0027846684679389, + 0.019020425155758858, + 0.010689218528568745, + -0.01572442054748535, + 0.016076168045401573, + -0.005621447693556547, + 0.005787550937384367, + 0.0222773477435112, + 0.018017293885350227, + -0.010936744511127472, + -0.029807351529598236, + 0.008800203911960125, + 0.026120515540242195, + -0.007484407164156437, + 0.03288188576698303, + -0.0006766255828551948, + 0.016870856285095215, + 0.0537261888384819, + 0.016011029481887817, + 0.009523240849375725, + 0.001099211280234158, + 0.004279595799744129, + 0.004491295665502548, + -0.03254316747188568, + -0.008168361149728298, + 0.012721538543701172, + 0.0038920219521969557, + -0.004927723202854395, + 0.016844801604747772, + 0.02850458398461342, + -0.0211699940264225, + -0.0026153086218982935, + -0.01276062149554491, + 0.020127778872847557, + 0.016636358574032784, + 0.0005491985357366502, + 0.004689968191087246, + 0.01761343516409397, + 0.011106104589998722, + 0.020570721477270126, + -0.01263685803860426, + -0.0032862345688045025, + 0.0006212579319253564, + 0.009718655608594418, + 0.001007203245535493, + -0.0024785178247839212, + -0.008976077660918236, + -0.030927732586860657, + 0.03254316747188568, + -0.030797455459833145, + -0.005833147559314966, + 0.009340852499008179, + -0.03238683566451073, + -0.007510462775826454, + 0.011067021638154984, + 0.0005638546426780522, + -0.00797294545918703, + 0.005478143226355314, + -0.00017414355534128845, + 0.03277766332030296, + -0.01481248252093792, + -0.012623830698430538, + 0.021586880087852478, + -0.011926849372684956, + -0.02584693394601345, + -0.01758738048374653, + -0.0037878004368394613, + 0.021534768864512444, + -0.02952074259519577, + -0.010832522995769978, + 0.004058124963194132, + -0.011829141527414322, + 0.011653267778456211, + 0.0204013604670763, + 0.03183967247605324, + -0.01264337170869112, + -0.028374306857585907, + -0.01747013069689274, + 0.0460919626057148, + -0.013210076838731766, + 0.026341985911130905, + 0.011881251819431782, + -0.044841304421424866, + -0.01537267304956913, + -0.005520483013242483, + 0.016193417832255363, + 0.005266443360596895, + 0.021209077909588814, + 0.003784543601796031, + -0.012389332056045532, + -0.010285360738635063, + 0.041037220507860184, + -0.013939627446234226, + 0.0017163980519399047, + -0.009777280502021313, + 0.012369790114462376, + -0.005816862918436527, + -0.0017750225961208344, + -0.018303902819752693, + 0.03921334445476532, + -0.01503395289182663, + 0.011392713524401188, + 0.00891745276749134, + 0.0022635608911514282, + -0.0058592031709849834, + 0.0015144688077270985, + -0.031917836517095566, + 0.011249409057199955, + 0.02196468412876129, + -0.003390456084161997, + -0.0071847704239189625, + -0.00795991811901331, + -0.008253040723502636, + -0.0005325067904777825, + 0.030771400779485703, + 0.026029322296380997, + 0.0010381439933553338, + 0.04499763622879982, + -0.00537392171099782, + 0.03423676639795303, + 0.000974633963778615, + 0.008083680644631386, + -0.026485292240977287, + -0.007836154662072659, + -0.00052965700160712, + 0.015281478874385357, + -0.009738197550177574, + -0.0053804353810846806, + -0.015633227303624153, + -0.014916704036295414, + 0.01135363057255745, + -0.02025805599987507, + 0.0024622331839054823, + -0.027566589415073395, + -0.0042828526347875595, + 0.0017880502855405211, + 0.006419393699616194, + 0.008337721228599548, + 0.011549046263098717, + 0.008246527053415775, + -0.02395791932940483, + -0.015555060468614101, + -0.023332590237259865, + 0.008454970084130764, + 0.01973694935441017, + -0.018955286592245102, + 0.008611301891505718, + -0.034575484693050385, + -0.018303902819752693, + -0.0023726678919047117, + 0.003370914375409484, + -0.022433679550886154, + -0.03566981106996536, + -0.013405491597950459, + -0.025768768042325974, + 0.018199680373072624, + 0.006227235309779644, + -0.027905309572815895, + -0.021469630300998688, + -0.01727471500635147, + -0.005064513999968767, + 0.002146311802789569, + -0.006989355199038982, + 0.022472763434052467, + -0.0036640374455600977, + -0.0047388216480612755, + -0.00409395107999444, + 0.02216009795665741, + 0.030771400779485703, + 0.023436812683939934, + 0.006429164204746485, + -0.006618065759539604, + 0.014148070476949215, + 0.012799704447388649, + 0.034262821078300476, + -0.001703370362520218, + 0.018981343135237694, + -0.003849681932479143, + -0.033142440021038055, + 0.01760040782392025, + 0.030276348814368248, + -0.02272028848528862, + 0.01387448888272047, + 0.02441388927400112, + 0.006546413525938988, + 0.02816586382687092, + -0.00723688118159771, + 0.016753608360886574, + -0.03053690306842327, + 0.008103222586214542, + -0.00426331115886569, + 0.016896912828087807, + 0.01370512880384922, + 0.022668179124593735, + -0.0009436932159587741, + -0.025312799960374832, + -0.009158465079963207, + -0.01097582746297121, + 0.03408043459057808, + -0.01827784813940525, + -0.014213208109140396, + 0.007562573533505201, + -0.023905808106064796, + 0.015620199032127857, + -0.008832773193717003, + 0.0251694954931736, + -0.005468372255563736, + -0.0012034327955916524, + 0.026889149099588394, + 0.005618190858513117, + 0.018004266545176506, + 0.006806967314332724, + -0.013060257770121098, + -0.012317679822444916, + 0.005263186059892178, + -0.010174624621868134, + 0.008481025695800781, + 0.021248159930109978, + 0.011750975623726845, + 0.025990238413214684, + -0.02361919917166233, + 0.038926735520362854, + 0.0034002268221229315, + 0.01737893745303154, + 0.03272555395960808, + 0.00022147070558276027, + -0.030693234875798225, + 0.029651019722223282, + 0.023006899282336235, + 0.023436812683939934, + 0.014447706751525402, + -0.007901293225586414, + 0.00743229640647769, + 0.00231078639626503, + 0.011164729483425617, + 0.017743712291121483, + -0.008709009736776352, + 0.01947639510035515, + -0.013653017580509186, + 0.01096931379288435, + 0.001605662633664906, + 0.026211710646748543, + 0.03955206274986267, + 0.006543156690895557, + -0.0010772270616143942, + 0.01894225925207138, + -0.003406740725040436, + -0.005553052294999361, + -0.0040548681281507015, + -4.004996662843041e-05, + -0.021000634878873825, + 0.003229238325729966, + -0.008226985111832619, + 0.018421152606606483, + -0.009966181591153145, + -0.012161347083747387, + -0.001663472969084978, + -0.0022244779393076897, + 0.008103222586214542, + 0.0039539034478366375, + 0.009191034361720085, + 0.005660530645400286, + 0.01135363057255745, + 0.0026918461080640554, + -0.0107999537140131, + -0.01285832840949297, + 0.03074534609913826, + -0.008656899444758892, + -0.010949772782623768, + -0.000900538987480104, + 0.0031005898490548134, + -0.0056084198877215385, + 0.0018759871600195765, + -0.01905950903892517, + -0.028270084410905838, + -0.0211699940264225, + -0.017235632985830307, + 0.0024785178247839212, + -0.01816059835255146, + 0.007008896674960852, + -0.0038431682623922825, + 0.02493499591946602, + 0.010155083611607552, + 0.009028187952935696, + 0.0024166363291442394, + -0.01430440228432417, + -0.01203107088804245, + 0.03931756317615509, + 0.018903177231550217, + -0.009673058986663818, + -0.014278346672654152, + -0.0036803220864385366, + -0.0062728323973715305, + -0.0215999074280262, + -0.016336722299456596, + -0.008767634630203247, + 0.01387448888272047, + -0.01580258645117283, + 0.0060709030367434025, + 0.007569087203592062, + 0.004406615626066923, + 0.04400753229856491, + 0.004572718869894743, + -0.010526372119784355, + -0.009959667921066284, + -0.015971945598721504, + 0.012786676175892353, + 0.02751447819173336, + 0.019241895526647568, + 0.0026788185350596905, + 0.016506081447005272, + 0.005282728001475334, + -0.009041216224431992, + 0.003589128376916051, + -0.03277766332030296, + 0.005992736667394638, + -0.005315296817570925, + -0.00022615253692492843, + 0.0018124772468581796, + 0.009594893082976341, + -0.024479027837514877, + 0.009555810131132603, + 0.005667044781148434, + 0.001153764664195478, + -0.027149703353643417, + 0.003986472729593515, + -0.0007543846149928868, + -0.01959364488720894, + -0.01715746708214283, + -0.003940875642001629, + 0.0452321358025074, + 0.008454970084130764, + 0.02751447819173336, + 0.024023057892918587, + 0.003455594414845109, + 0.014382568188011646, + -0.0022521617356687784, + -0.022329458966851234, + 0.01018765289336443, + 0.019580615684390068, + 0.020740080624818802, + -0.021313298493623734, + -0.0055139693431556225, + 0.01625855639576912, + -0.03475787490606308, + 0.031005898490548134, + -0.00668320432305336, + 0.01736591011285782, + 0.012389332056045532, + 0.012369790114462376, + -0.002625079359859228, + 0.008852314203977585, + -0.010545914061367512, + 0.004315421916544437, + 0.029598908498883247, + -0.01559414342045784, + -0.008793690241873264, + 0.013405491597950459, + -0.008800203911960125, + -0.019228868186473846, + 0.00409069424495101, + -0.013822377659380436, + -0.00428610946983099, + 0.007757988758385181, + -0.010650135576725006, + 0.0015112118562683463, + -0.006748342886567116, + -0.03634725138545036, + -0.02683703973889351, + 0.004435928072780371, + -0.01153601799160242, + -0.004895153921097517, + 0.009178007021546364, + 0.003517475910484791, + -0.001441188040189445, + 0.002836779225617647, + -0.008064139634370804, + 0.02407516911625862, + -0.013965682126581669, + -0.024987107142806053, + -0.0023694108240306377, + 0.016063140705227852, + 0.005686586257070303, + 0.00840285886079073, + -0.009373421780765057, + 0.004569462034851313, + -0.021977711468935013, + -0.018916204571723938, + -0.025534270331263542, + -0.005064513999968767, + -0.019463367760181427, + -0.016232499852776527, + 0.002618565456941724, + -0.008109736256301403, + -0.020310167223215103, + -0.007777530234307051, + 0.012734565883874893, + -0.015750475227832794, + -0.005654016975313425, + 0.024987107142806053, + -0.01331429835408926, + -0.007119631860405207, + 0.0015177257591858506, + 0.004370789509266615, + 0.010330957360565662, + 0.03217839077115059, + -0.02808769792318344, + 0.02884330227971077, + 0.008428914472460747, + 0.017743712291121483, + -0.009790307842195034, + 0.01041563693434, + 0.00203231954947114, + -0.01749618537724018, + -0.0024166363291442394, + -0.0020714025013148785, + -0.010826009325683117, + 0.02931229956448078, + -0.01937217265367508, + 0.014069903641939163, + -0.018955286592245102, + 0.0004246212192811072, + 0.009353880770504475, + -0.0024345493875443935, + -0.0036900928243994713, + 0.032699499279260635, + 0.01616736128926277, + -0.010428665205836296, + -0.03996894881129265, + 0.04911438748240471, + 0.014968814328312874, + 0.012669427320361137, + -0.007692850194871426, + -0.008213957771658897, + 0.015086064115166664, + -0.02664162404835224, + -0.009770766831934452, + -0.009119382128119469, + -0.005299012642353773, + 0.028348250314593315, + -0.008637357503175735, + -0.030276348814368248, + -0.019228868186473846, + -0.0015771646285429597, + 0.016545165330171585, + -0.03139673173427582, + 0.010871605947613716, + -0.0483066700398922, + 0.013431547209620476, + -0.013770267367362976, + 0.006191409192979336, + 0.0037584882229566574, + -0.021469630300998688, + -0.008441942743957043, + 0.01225905492901802, + 0.023762503638863564, + 0.002165853278711438, + -0.02417938970029354, + -0.020427417010068893, + -0.01848629117012024, + 0.001065013580955565, + -0.02772292122244835, + -0.04244421049952507, + 0.008611301891505718, + -0.009477643296122551, + 0.018538400530815125, + 0.002014406491070986, + 0.028426416218280792, + -0.004354504868388176, + 0.03155306354165077, + 0.0074974349699914455, + -0.010995369404554367, + -0.0031527006067335606, + 0.0051687355153262615, + -0.0009713770705275238, + -0.027931364253163338, + 0.030432680621743202, + 0.008168361149728298, + 0.004875612445175648, + 0.03410648927092552, + 0.01447376236319542, + 0.014903675764799118, + 0.03632119670510292, + -0.019085563719272614, + -0.013978710398077965, + -0.015893779695034027, + -0.01704021729528904, + -0.0067288014106452465, + 0.030667180195450783, + -0.006233748979866505, + 0.014330457895994186, + -0.005097083281725645, + -0.003605412784963846, + 0.04223576560616493, + -0.0015950776869431138, + -0.0027130162343382835, + -0.017287742346525192, + -0.002147940220311284, + -0.0367380827665329, + 0.01671452447772026, + -0.0020534894429147243, + -0.01057848334312439, + -0.011262437328696251, + -0.009047729894518852, + -0.021691102534532547, + -0.04398147761821747, + 0.016427915543317795, + -0.012356762774288654, + -0.005966681521385908, + -0.0011838912032544613, + -0.004406615626066923, + -0.007816613651812077, + 0.001054428517818451, + 0.030120017006993294, + -0.01336640864610672, + 0.013666045852005482, + -0.004709509667009115, + -0.029025690630078316, + -0.009008646942675114, + -0.002608794718980789, + -0.02562546357512474, + 0.016076168045401573, + -0.008376804180443287, + -0.0002864055859390646, + 0.03408043459057808, + -0.007940376177430153, + 0.027201814576983452, + 0.022355513647198677, + -0.00028070597909390926, + 0.04095905274152756, + 0.008617816492915154, + 0.04536241292953491, + 0.023410756140947342, + -0.02282451093196869, + -0.01704021729528904, + -0.04846300184726715, + 0.0073020197451114655, + -0.01096280012279749, + 0.00886534247547388, + -0.012174375355243683, + 0.0009086813079193234, + -0.018225736916065216, + -0.0035988991148769855, + 0.021326325833797455, + -0.009060757234692574, + 0.007634225767105818, + 0.051407258957624435, + 0.009888015687465668, + 0.01019416656345129, + -0.011653267778456211, + -0.012701996602118015, + -0.01904648169875145, + -0.00632168585434556, + -0.0053967200219631195, + -0.012565205805003643, + 0.009047729894518852, + -0.015151201747357845, + -0.008344234898686409, + 0.04869750142097473, + 0.019515477120876312, + 0.018421152606606483, + -0.016063140705227852, + -0.0028579493518918753, + -0.0016805718187242746, + -0.0219386275857687, + 0.0016887141391634941, + 0.024895913898944855, + -0.010044348426163197, + 0.03929150849580765, + -0.006963299587368965, + -0.011438311077654362, + 0.019880253821611404, + -0.0035793574061244726, + -0.004269824828952551, + 0.00539997685700655, + -0.00890442542731762, + 0.018095459789037704, + 0.0045108371414244175, + -0.00777101656422019, + -0.009757738560438156, + 0.01847326196730137, + 0.02540399320423603, + 0.004979833960533142, + -0.000942064740229398, + -0.000265846261754632, + 0.009575351141393185, + -0.00648778909817338, + 0.0071847704239189625, + 0.00907378550618887, + -0.012708510272204876, + -0.008311665616929531, + -0.01904648169875145, + -0.0038920219521969557, + -0.01387448888272047, + -0.009868474677205086, + 0.016297638416290283, + -0.032699499279260635, + 0.0029849691782146692, + 0.012122264131903648, + 0.00409395107999444, + 0.045622967183589935, + -0.017079299315810204, + -0.01892923191189766, + -0.028374306857585907, + 0.029781296849250793, + -0.03918728977441788, + 0.02962496504187584, + 0.04559691250324249, + -0.002511087106540799, + 0.013783294707536697, + -0.002556683961302042, + -0.0032650644425302744, + -0.015112118795514107, + 0.023697365075349808, + -0.018681704998016357, + -0.030146071687340736, + 0.00762771163135767, + -0.006038333754986525, + 0.020896412432193756, + -0.016909940168261528, + -0.008025056682527065, + 0.01739196479320526, + 0.0018613310530781746, + -0.005409747827798128, + -0.02218615449965, + -0.022889649495482445, + 0.01905950903892517, + 0.004488038830459118, + -0.01559414342045784, + 0.03710285946726799, + -0.02438783273100853, + 0.004116749856621027, + 0.008793690241873264, + 0.01425229199230671, + -0.029598908498883247, + -0.016636358574032784, + -0.021469630300998688, + -0.012793190777301788, + 0.005416261497884989, + 0.0037096343003213406, + -0.00556608010083437, + -0.007158714812248945, + -0.022590013220906258, + -0.019020425155758858, + 0.01375723909586668, + -0.00022126715339254588, + 0.011392713524401188, + -0.008852314203977585, + 0.021326325833797455, + -0.034914206713438034, + 0.009093326516449451, + -0.008311665616929531, + -0.017769766971468925, + -6.704679890390253e-06, + 0.0017929356545209885, + -0.051511481404304504, + -0.002279845532029867, + 0.0006053803954273462, + 0.021782295778393745, + 0.03322060778737068, + -0.04286109656095505, + 0.007341102696955204, + -0.000540649110917002, + -0.06586799770593643, + -0.024466000497341156, + -0.005526997148990631, + 0.006582239642739296, + -0.0009445074247196317, + 0.00464762793853879, + -0.015450838953256607, + 0.026016294956207275, + 0.004849557299166918, + 0.024466000497341156, + -0.033924102783203125, + -0.019424283877015114, + -0.010096458718180656, + -0.011340603232383728, + 0.035044483840465546, + 0.0009721912792883813, + -0.02385369874536991, + -0.01981511525809765, + 0.013835405930876732, + -0.0186165664345026, + -0.0003751567273866385, + 0.011887766420841217, + 0.0034849068615585566, + -0.0015535518759861588, + -0.008383317850530148, + 0.02886935882270336, + 0.00962746236473322, + 0.011920335702598095, + 0.001546223764307797, + -0.040047116577625275, + 0.0015633226139470935, + 0.034705761820077896, + 0.0020583749283105135, + -0.05145937204360962, + -0.0015690223081037402, + 0.008963050320744514, + -0.008832773193717003, + -0.01658424735069275, + 0.00980333611369133, + -0.03064112365245819, + -0.024114251136779785, + -0.013822377659380436, + 0.035122647881507874, + 0.02081824652850628, + 0.00038960931124165654, + -0.0024459485430270433, + 0.018994370475411415, + -0.013047230429947376, + -0.0211699940264225, + 0.011796572245657444, + -0.03850984945893288, + 0.0125847477465868, + 0.02016686275601387, + 0.0036738081835210323, + 0.015515977516770363, + -0.020753107964992523, + 0.024557193741202354, + -0.0028221230022609234, + 0.01615433394908905, + -0.017574353143572807, + -0.019541533663868904, + 0.002045347122475505, + 0.017339853569865227, + 0.019645754247903824, + -0.016440942883491516, + 0.014017793349921703, + 0.001996493199840188, + -0.004865841940045357, + -0.0010772270616143942, + 0.002209821715950966, + -0.008318179287016392, + -0.02385369874536991, + 0.00985544640570879, + -0.004615058656781912, + -0.0010641993721947074, + -0.0059438832104206085, + -0.0037422035820782185, + 0.012630344368517399, + -0.0350184291601181, + 0.020297139883041382, + 0.19239291548728943, + -0.013718156144022942, + -0.006201179698109627, + 0.027879254892468452, + -0.009718655608594418, + -0.01838206872344017, + 0.0054976847022771835, + 0.00213002716191113, + -0.015190285630524158, + 0.03233472257852554, + -0.025234634056687355, + -0.0035793574061244726, + -0.005071027670055628, + 0.003768258960917592, + 0.01091720350086689, + -0.01387448888272047, + -0.025377938523888588, + 0.013457602821290493, + -0.00011959011317230761, + 0.030719289556145668, + 0.018316930159926414, + -0.02985946275293827, + 0.0031331591308116913, + -0.012780162505805492, + 0.044945526868104935, + -0.0010869977995753288, + 0.0002770419523585588, + 0.000806495372671634, + 0.024322694167494774, + -0.0034165114630013704, + -0.0014998127007856965, + 0.009497185237705708, + -0.007744960952550173, + -0.03556559234857559, + -0.0033448589965701103, + 0.0027113878168165684, + 0.013170992955565453, + -0.014499817974865437, + 0.023905808106064796, + 0.016636358574032784, + -0.011985473334789276, + -0.017066271975636482, + -0.010142055340111256, + -0.0054976847022771835, + -0.01770462840795517, + 0.02493499591946602, + -0.01680571772158146, + -0.00036009345785714686, + -0.01469523273408413, + -0.015984974801540375, + -0.024452971294522285, + -0.0115229906514287, + 0.00648453226312995, + 0.03199600428342819, + -0.013679073192179203, + -0.005530253984034061, + 0.01320356223732233, + -0.014734315685927868, + 0.014825509861111641, + 0.009334338828921318, + -0.027358146384358406, + 0.04343431442975998, + -0.02037530578672886, + 0.014747343957424164, + -0.007080548908561468, + -0.010956286452710629, + -0.03952600806951523, + 0.01937217265367508, + -0.0016773149836808443, + -0.004615058656781912, + -0.022759372368454933, + -0.018460234627127647, + -0.02384067140519619, + 0.03282977640628815, + -0.010063889436423779, + -0.023814614862203598, + 0.0009428790071979165, + -0.002522486262023449, + 0.016649385914206505, + 0.01392659917473793, + -0.0029719416052103043, + 0.002380810212343931, + -0.004061381798237562, + -0.03142278641462326, + -0.0033334598410874605, + -0.0472644567489624, + 0.026758871972560883, + -0.0003936804714612663, + 0.0032145821023732424, + -0.016453970223665237, + -0.007308533415198326, + 0.015750475227832794, + -0.009666545316576958, + -0.01969786547124386, + 0.014890648424625397, + -0.0035467883571982384, + 0.01247401162981987, + 0.009718655608594418, + -0.016740581020712852, + 0.01916372962296009, + -0.011978959664702415, + 0.03574797883629799, + 0.04874961078166962, + -0.02038833312690258, + -0.0005247715744189918, + 0.01594589091837406, + -0.005855946335941553, + 0.021365409716963768, + 0.014148070476949215, + -0.0008581990259699523, + -0.0030826767906546593, + -0.02195165492594242, + 0.01452587265521288, + 0.002274960046634078, + -0.005416261497884989, + 0.018460234627127647, + 0.004129777196794748, + -0.01780885085463524, + 0.012447956949472427, + -0.009373421780765057, + -0.02294176071882248, + 0.00649104593321681, + 0.012903925962746143, + 0.005090569611638784, + 0.01770462840795517, + -0.020740080624818802, + -0.04197521507740021, + 0.011093077249825, + -0.007777530234307051, + -0.008103222586214542, + 0.021104855462908745, + -0.03186572715640068, + -0.005999250803142786, + 0.013392464257776737, + 0.006191409192979336, + 0.017300771549344063, + -0.00032019615173339844, + -0.04002106189727783, + -0.0005960167618468404, + 0.026029322296380997, + 0.008722038008272648, + -0.02317625842988491, + 0.0024150079116225243, + -0.0039017926901578903, + 0.018642622977495193, + 0.00139233423396945, + 0.007204311899840832, + -0.013229617848992348, + -0.02084430120885372, + -0.018342986702919006, + -0.004146061837673187, + -0.015476894564926624, + 0.002716273069381714, + -0.013770267367362976, + 0.025886017829179764, + -0.017457103356719017, + -0.02561243623495102, + -0.03397621214389801, + 0.0035370176192373037, + 0.009217089973390102, + -0.01448678970336914, + 0.008311665616929531, + -0.005129652563482523, + -0.027097592130303383, + 0.005325067788362503, + 0.007562573533505201, + -0.1632108837366104, + 0.0038757373113185167, + 0.008950022049248219, + -0.03665991500020027, + 0.021769268438220024, + 0.010311415418982506, + -0.011503449641168118, + -0.0030061393044888973, + -0.01520331297069788, + 0.008116249926388264, + 0.03074534609913826, + 0.01603708416223526, + -0.011379686184227467, + -0.013066771440207958, + -0.004670426249504089, + 0.013242646120488644, + -0.013307783752679825, + 0.021665045991539955, + 0.022681206464767456, + 0.021990738809108734, + 0.007660280913114548, + -0.02694126032292843, + 0.016466999426484108, + -0.004468497354537249, + 0.0013801207533106208, + -0.007347616367042065, + -0.008415887132287025, + 0.009347367100417614, + 0.00010798732546390966, + -0.01024627685546875, + -0.002074659336358309, + 0.01814757101237774, + 0.02606840617954731, + -0.015125147067010403, + 0.006562698166817427, + -0.018408123403787613, + 0.009920584969222546, + -0.017522241920232773, + -0.009151951409876347, + 0.04022950306534767, + 0.025807851925492287, + -0.01063059363514185, + -0.008090194314718246, + 0.009412504732608795, + -0.03418465703725815, + -0.006539899855852127, + 0.012506580911576748, + 0.007679822389036417, + -0.016401860862970352, + -0.004937494173645973, + 0.008754607290029526, + -0.00958837941288948, + -0.016440942883491516, + 0.021912572905421257, + 0.0039278483018279076, + 0.01803032122552395, + 0.014382568188011646, + 0.01926795206964016, + -0.0023059009108692408, + -0.00019358331337571144, + 0.004869098775088787, + -0.009959667921066284, + 0.004247026517987251, + 0.01503395289182663, + 0.0061653535813093185, + -0.02772292122244835, + 0.009275714866816998, + 0.0115229906514287, + -0.0050417156890034676, + -0.0059601678512990475, + -0.01771765761077404, + -0.017795823514461517, + 0.03139673173427582, + -0.005455344915390015, + -0.0004181073745712638, + 0.01319053489714861, + -0.012441443279385567, + 0.007992487400770187, + 0.0021397978998720646, + -0.006276089232414961, + -0.024439943954348564, + 0.0530487485229969, + -0.0259381290525198, + -0.021912572905421257, + -0.021912572905421257, + 0.004657398909330368, + 0.019124647602438927, + -0.0003816705720964819, + 0.011119132861495018, + 0.0007490920834243298, + -0.004194915760308504, + -0.03598247468471527, + -0.026537401601672173, + -0.011099590919911861, + -0.0004466054670047015, + 0.011965932324528694, + 0.031579118221998215, + -0.007666795048862696, + -0.005282728001475334, + -0.024101223796606064, + 0.03277766332030296, + -0.004207943566143513, + -0.020414387807250023, + -0.004732307977974415, + 0.004983090795576572, + 0.007777530234307051, + -0.02195165492594242, + 0.006872105877846479, + 0.034132543951272964, + -0.017196549102663994, + -0.02639409713447094, + -0.012916953302919865, + 0.026563458144664764, + -0.016128279268741608, + -0.009490671567618847, + 0.010513344779610634, + 0.027097592130303383, + -0.014291374944150448, + -0.006083930842578411, + -0.019645754247903824, + 0.027019426226615906, + 0.0012571719707921147, + -0.017756739631295204, + 0.01370512880384922, + 0.01135363057255745, + -0.01693599484860897, + -0.09275714308023453, + -0.005429289303719997, + 0.014851565472781658, + 0.018864093348383904, + 0.026328958570957184, + -0.0025208578445017338, + -0.003973444923758507, + 0.023436812683939934, + -0.0014379312051460147, + 0.012962549924850464, + -0.03322060778737068, + -0.020218973979353905, + 0.0006000879220664501, + -0.01259126141667366, + 0.01625855639576912, + -0.012408873997628689, + -0.005979709327220917, + -0.007015410345047712, + -0.012884384021162987, + 0.0336635485291481, + 0.013340353034436703, + -0.0017685088096186519, + -0.012369790114462376, + -0.014369540847837925, + 0.0021414263173937798, + -0.0014648007927462459, + -0.029025690630078316, + 0.018538400530815125, + 0.02774897776544094, + -0.0019753233063966036, + 0.01603708416223526, + -0.011679323390126228, + 0.012903925962746143, + -0.026680706068873405, + -0.005064513999968767, + -0.0008211515378206968, + -0.006670176517218351, + -0.025703629478812218, + 0.016011029481887817, + -0.02539096586406231, + -0.01336640864610672, + -0.003142929868772626, + 0.06003158912062645, + -0.032595276832580566, + 0.003621697425842285, + -0.018082432448863983, + -0.02238157019019127, + -0.004106978885829449, + -0.003992986399680376, + -0.023580117151141167, + -0.037154968827962875, + -0.021183021366596222, + 0.005272957030683756, + 0.025755740702152252, + 0.006859078072011471, + 0.007393213454633951, + -0.005116624757647514, + -0.012135292403399944, + -0.012050611898303032, + -0.005771266296505928, + -0.01991933584213257, + 0.019450338557362556, + -0.02183440700173378, + 0.028374306857585907, + 0.011790058575570583, + -0.01465614978224039, + -0.020922468975186348, + -0.022107988595962524, + -0.007634225767105818, + -0.013952654786407948, + -0.025195550173521042, + 0.014187153428792953, + 0.010226735845208168, + -0.001193661941215396, + -0.03387198969721794, + -0.023345617577433586, + -0.031005898490548134, + -0.013600907288491726, + 0.006468247622251511, + -0.028921470046043396, + -0.028270084410905838, + -0.026120515540242195, + 0.027670811861753464, + -0.00012763064296450466, + 0.02574271336197853, + -0.0001526682317489758, + 0.006761370692402124, + -0.019346117973327637, + 0.014942758716642857, + -0.019007397815585136, + -0.0026348500978201628, + -0.02485683001577854, + 0.013692100532352924, + -0.013835405930876732, + -0.01971089281141758, + 0.009901043958961964, + -0.0019622957333922386, + 0.004488038830459118, + 0.026094460859894753, + 0.0055986493825912476, + -0.0358782559633255, + -0.018356014043092728, + -0.0329861082136631, + 0.009927098639309406, + 0.000258518208283931, + -0.0030224237125366926, + 0.0025159723591059446, + -0.0055465386249125, + 0.027019426226615906, + 0.027775032445788383, + -0.007230367511510849, + -0.011939876712858677, + -0.004755106288939714, + 0.0009241516818292439, + 0.0002454905188642442, + -0.015750475227832794, + -0.012460984289646149, + -0.007126145996153355, + -0.0047388216480612755, + 0.018329957500100136, + 0.019880253821611404, + 0.0064943027682602406, + -0.02428361214697361, + 0.019098591059446335, + -0.012513095512986183, + 0.010624079965054989, + -0.02025805599987507, + -0.000614744087215513, + -0.01113216020166874, + -0.01717049442231655, + -0.006012278608977795, + -0.007328074891120195, + -0.0011057250667363405, + -0.012565205805003643, + -0.009692600928246975, + 0.0016984848771244287, + -0.009998750872910023, + 9.256783232558519e-05, + -0.002535513835027814, + 0.027019426226615906, + 0.015046980232000351, + 0.037050746381282806, + -0.04932282865047455, + -0.02761870063841343, + 0.012617317028343678, + -0.035591647028923035, + -0.010181139223277569, + 0.005706127732992172, + 0.006002507638186216, + -0.008591760881245136, + 0.013255673460662365, + -0.02662859670817852, + 0.049609437584877014, + 0.011027938686311245, + 0.01959364488720894, + 0.0026609054766595364, + 0.02540399320423603, + -0.03856195881962776, + -0.005224103108048439, + 0.00612301379442215, + -0.004227485042065382, + -0.02617262676358223, + 0.028765136376023293, + 0.01336640864610672, + 0.015763502568006516, + -0.011496935039758682, + 0.030224237591028214, + -0.020518610253930092, + -0.03754580020904541, + -0.007888265885412693, + 0.019749976694583893, + -0.010624079965054989, + -0.005605163052678108, + -0.008142305538058281, + 0.01041563693434, + 0.03400226682424545, + 0.00035317250876687467, + 0.006569212302565575, + 0.012389332056045532, + 0.01276062149554491, + 0.0013817492872476578, + 0.03843168169260025, + 0.007191284094005823, + 0.020010530948638916, + -0.015620199032127857, + 0.002866091439500451, + 0.03105800971388817, + 0.0058266338892281055, + -0.01939822919666767, + -0.014460735023021698, + -0.012741079553961754, + 0.01404384896159172, + 0.019632726907730103, + 0.016623331233859062, + -0.0029898546636104584, + -0.0015071406960487366, + 0.033038217574357986, + 0.011281978338956833, + 0.011601156555116177, + -0.03064112365245819, + 0.0044945525005459785, + 0.035591647028923035, + 0.0019036710727959871, + 0.007666795048862696, + 0.0017294257413595915, + -0.016623331233859062, + -0.013255673460662365, + 0.011939876712858677, + 0.0015445953467860818, + -0.042730819433927536, + -0.017431046813726425, + 0.0006607481045648456, + -0.010428665205836296, + 0.015581116080284119, + 0.004947264678776264, + 0.0012685712426900864, + -0.027123648673295975, + 0.04288715124130249, + -0.021886516362428665, + -0.012708510272204876, + -0.02251184545457363, + 0.009386450052261353, + 0.01636277697980404, + 0.012278596870601177, + 0.006578982807695866, + 0.01375723909586668, + 0.01939822919666767, + 0.015346617437899113, + 0.006451962981373072, + 0.003605412784963846, + 0.014669178053736687, + -0.012447956949472427, + 0.01847326196730137, + -0.01040912326425314, + -0.016883885487914085, + -0.019137674942612648, + -0.005914570763707161, + -0.010122514329850674, + 0.030693234875798225, + 0.024648386985063553, + 0.019463367760181427, + 0.09968787431716919, + 0.024140307679772377, + -0.0036575235426425934, + -0.009145437739789486, + -0.009575351141393185, + 0.03556559234857559, + 0.015555060468614101, + 0.021808350458741188, + 0.0014509588945657015, + -0.0532311350107193, + 0.003177127568051219, + -0.012193916365504265, + 0.02139146439731121, + -0.039578117430210114, + -0.035044483840465546, + 0.01503395289182663, + 0.0015266822883859277, + 0.010389582253992558, + 0.0014631722588092089, + 0.024023057892918587, + 0.0343409888446331, + -0.020205944776535034, + 0.018864093348383904, + 0.01783490553498268, + -0.037910573184490204, + -0.022342486307024956, + 0.022811483591794968, + -0.000793874787632376, + 0.002535513835027814, + 0.010076917707920074, + -0.02070099674165249, + 0.011731433682143688, + -0.06216813251376152, + -0.013125396333634853, + 0.01961969956755638, + -0.01280621811747551, + -0.02806164138019085, + -0.01894225925207138, + 0.013744211755692959, + 0.001786421868018806, + 0.0009787051239982247, + 0.0329861082136631, + -0.02595115639269352, + -0.02894752472639084, + -0.0030989614315330982, + -0.014395596459507942, + -0.0034653651528060436, + -0.008969563990831375, + -0.03694652393460274 + ], + "metadata": { + "source": "Kreye_Marieke_BA_241_V2.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 17, + "has_images": true, + "image_count": 98, + "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", + "links": [], + "last_modified": "2025-05-05T23:00:23", + "_known_field_names": "frozenset({'is_continuation', 'sent_to', 'header_footer_type', 'email_message_id', 'filename', 'languages', 'detection_class_prob', 'sent_from', 'link_texts', 'cc_recipient', 'subject', 'image_mime_type', 'image_path', 'filetype', 'page_number', 'last_modified', 'signature', 'detection_origin', 'text_as_html', 'attached_to_filename', 'bcc_recipient', 'data_source', 'link_start_indexes', 'category_depth', 'emphasized_text_tags', 'parent_id', 'orig_elements', 'page_name', 'coordinates', 'url', 'link_urls', 'file_directory', 'links', 'table_as_cells', 'emphasized_text_contents', 'key_value_pairs', 'image_base64'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "Kreye_Marieke_BA_241_V2.pdf", + "detection_class_prob": 0.3422867953777313, + "parent_id": "e02392183bc6851689602ad4b9f6039f", + "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", + "id": "ce00eae5-7e07-454f-9e4f-f79ac36f92f4", + "processing_timestamp": "2025-05-05T23:15:46.977945", + "chunk_number": 39, + "total_chunks": 56, + "chunking_strategy": "hybrid", + "word_count": 512 + } +} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000040.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000040.json new file mode 100644 index 0000000000000000000000000000000000000000..60a2a10d79e65aa84cadf623b6208bfcffadad77 --- /dev/null +++ b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000040.json @@ -0,0 +1,1570 @@ +{ + "id": "61a115b2-0ff7-441a-f6d9-eb3d00000040", + "content": "Erreichen jedoch hochsommerliche Temperaturen in Kombination mit ausbleibenden Niederschl\u00e4gen ihren H\u00f6hepunkt, nimmt die Evapotranspiration ab, da den Pflanzen nicht gen\u00fcgend Wasser im Wurzelraum zur Verf\u00fcgung steht. Je mehr Globalstrahlung auf die Pflanzen trifft, desto h\u00f6her ist die zu erwartende Evapotranspiration, da mehr Energie f\u00fcr den Verdunstungsprozess zur Verf\u00fcgung steht. Dieser Zusammenhang ist f\u00fcr Gromb\u00fchl von Januar bis Anfang Juni zutreffend. In den Hochsommermonaten ist ein R\u00fcckgang der Evapotranspiration trotz hoher Temperaturen, steigender Globalstrahlung und hohen Niederschlagsmengen zu verzeichnen. Eine m\u00f6gliche Erkl\u00e4rung hierf\u00fcr ist, dass auf Grund der hohen Temperaturen die Niederschlagsmengen schnell verdunsten und nicht bis in die Bodenschichten der Wurzeln eindringen. So leiden die Pflanzen unter einem Wassermangel und folglich nimmt die Evapotranspirationsrate ab. Im Herbst geht der Baum in die Ruhephase \u00fcber und beginnt seine Bl\u00e4tter abzuwerfen, was zu einer verringerten Belaubungsdichte und damit auch zu einer geringeren Evapotranspiration f\u00fchrt, da die Hauptmenge der Evapotranspiration \u00fcber die Blattoberfl\u00e4che erfolgt. Zum Jahresende korreliert der R\u00fcckgang der Evapotranspiration wieder mit den sinkenden Temperaturen und der abnehmenden solaren Einstrahlung. Die Einfl\u00fcsse der Wetterdaten auf die Evapotranspiration sind in Anhang 9 dargestellt und verdeutlichen die vorangegangene Erkl\u00e4rung der Ergebnisse. Mit einer k\u00fcnstlichen Bew\u00e4sserung der B\u00e4ume k\u00f6nnte ein gr\u00f6\u00dferer Teil der Globalstrahlung genutzt werden und die Menge der Evapotranspiration auch in der zweiten Jahresh\u00e4lfte erh\u00f6ht werden. Eine Erh\u00f6hung des Baumbestands f\u00fchrt \u00fcber das Jahr zu einer steigenden Temperaturabsenkung, was mit der proportional zunehmenden Evapotranspirationsrate erkl\u00e4rt werden kann. Wird dem System eine gr\u00f6\u00dfere Energiemenge entzogen, resultiert dies in einem gr\u00f6\u00dferen Delta T, das als \u201eVerdunstungsk\u00e4lte\u201c wahrnehmbar wird. Zusammenfassend kann festgehalten werden, dass die Simulation auf Basis der Mobilit\u00e4tsszenarien und dar\u00fcber bestimmten Potentialfl\u00e4che einen positiven Effekt von zus\u00e4tzlichem Stadtgr\u00fcn, unabh\u00e4ngig vom betrachteten Quartiersarchetyp und der Gebietsgr\u00f6\u00dfe, aufweist. 51\nKritische W\u00fcrdigung\n\n## 8 Kritische W\u00fcrdigung\n\nIm Laufe der Anwendung des Tools auf reale Fallstudiengebiete, konnten Grenzen des Modells aufgezeigt und Herausforderungen identifiziert werden. Diese Herausforderungen werden im Folgenden beleuchtet. F\u00fcr die Durchf\u00fchrung der Simulation sind Geoinformationsdaten notwendig, die nicht in jeder Gemeinde in gleicher Detailtiefe zur Verf\u00fcgung stehen, frei zug\u00e4nglich sind oder kostenpflichtig bei den zust\u00e4ndigen Beh\u00f6rden bestellt werden m\u00fcssen. Ohne eine ausreichende Datenverf\u00fcgbarkeit m\u00fcssen Daten h\u00e4ndisch erfasst, Annahmen getroffen oder auf Standardwerte zur\u00fcckgegriffen werden. Die manuelle Erfassung ist zeitintensiver und f\u00fchrt zu einem Verlust der Genauigkeit. Zudem erfordert eine manuelle Erfassung die Nutzung einer Software, die Geoinformationen verarbeiten kann. Das Tool hat gewollt einen vereinfachten modellhaften Charakter. In der Vorbereitung der Baumpflanzungsszenarien konnten jedoch Grenzen des Tools identifiziert werden. W\u00e4hrend die typischen baulichen Charakteristika der standardisierten Quartiersarchetypen gut auf die reale Situation der Fallstudiengebiete anwendbar sind, sind die Stra\u00dfenquerschnitte deutlich diverser als in dem Modell angenommen. Dies f\u00fchrte dazu, dass f\u00fcr Gromb\u00fchl die definierten Stra\u00dfenquerschnitte je Quartiersarchetyp angewendet werden konnten, hingegen f\u00fcr Grafenb\u00fchl eine manuelle Messung der Stra\u00dfenbreite und Berechnung der Potentialfl\u00e4chen durchgef\u00fchrt werden musste. Dieses Nachjustieren stellt einen zus\u00e4tzlichen Zeitbedarf dar. Um jedoch eine qualitative Aussage zu treffen, inwiefern die zugeordneten Stra\u00dfenquerschnitte in der Masse die Gegebenheiten der Quartiersarchetypen darstellen, ist das Durchf\u00fchren von zus\u00e4tzlichen Simulationen in weiteren Quartieren n\u00f6tig.", + "embedding": [ + 0.008273148909211159, + -0.0074531082063913345, + 0.02285531722009182, + -0.018755115568637848, + 0.008207016624510288, + 0.018067339435219765, + -0.019800005480647087, + -0.007049701176583767, + -0.01871543563902378, + -0.025699004530906677, + 0.01245932187885046, + 0.01209559477865696, + -0.007856515236198902, + 0.02359599806368351, + 0.003974550403654575, + 0.004847496282309294, + 0.04967857152223587, + 0.003643888747319579, + 0.02125491574406624, + 0.0008113604271784425, + 0.01666533574461937, + 0.009635473601520061, + -0.006791785359382629, + 0.003590982872992754, + -0.0010903560323640704, + 0.008451705798506737, + 0.02638678066432476, + -0.03124088980257511, + -0.021135877817869186, + 0.002680010860785842, + 0.011738480068743229, + 0.0045201415196061134, + -0.015422048047184944, + -0.016030466184020042, + -0.012141887098550797, + -0.025870949029922485, + -0.0039018047973513603, + -0.023926660418510437, + 0.01769699901342392, + -0.0036471954081207514, + 0.019218040630221367, + 0.007267937995493412, + -0.0011994743254035711, + 0.008431865833699703, + 0.01237335056066513, + 0.01165912114083767, + -0.0007464681402780116, + 0.005403007380664349, + -0.012869342230260372, + 0.039414841681718826, + 0.018331868574023247, + 0.015593992546200752, + -0.00913948193192482, + -0.009265133179724216, + -0.008134271018207073, + 0.015713030472397804, + -0.02681002765893936, + 0.004047295544296503, + 0.005406314041465521, + -0.008107817731797695, + -0.004625953268259764, + 0.005803107749670744, + -0.012386576272547245, + 0.024535076692700386, + -0.038727063685655594, + 0.001613627769984305, + -0.02490541711449623, + -0.00824669562280178, + -0.001613627769984305, + -0.01554108690470457, + 0.027167141437530518, + 0.03356874734163284, + 0.014998801983892918, + -0.020686177536845207, + 0.007711024023592472, + -0.009364331141114235, + 0.019270947203040123, + -0.0011101957643404603, + -0.01519719883799553, + -0.003713327692821622, + 0.005373247899115086, + -0.011011024937033653, + -0.02151944488286972, + 0.036028869450092316, + 0.004004309885203838, + 0.011592988856136799, + 0.004864029586315155, + 0.018173150718212128, + 0.005244289990514517, + 0.016189182177186012, + 0.019363531842827797, + 0.014363931491971016, + 0.008372346870601177, + 0.018371548503637314, + 0.0015739483060315251, + -0.005455913487821817, + 0.0020335677545517683, + 0.03661083057522774, + 0.019879363477230072, + -0.04113427922129631, + -0.030129868537187576, + 0.014668140560388565, + -0.015580765902996063, + -0.0075126271694898605, + -0.03258999064564705, + 0.01712826080620289, + 0.02519639953970909, + 0.026360327377915382, + 0.0034388788044452667, + -0.03319840505719185, + -0.023252110928297043, + 0.023252110928297043, + -0.011407818645238876, + -0.02729940600693226, + 0.005452606827020645, + -0.02625451609492302, + 0.046504221856594086, + -0.01653307117521763, + -0.013021446764469147, + -0.013676156289875507, + 0.009040283039212227, + -0.015977559611201286, + -0.003025552025064826, + -0.0342300683259964, + 0.019998403266072273, + 0.01771022565662861, + 0.00036145426565781236, + -0.007869741879403591, + -0.03460041061043739, + -0.01826573722064495, + -0.019046097993850708, + 0.004004309885203838, + 0.0023691889364272356, + -0.0016772800590842962, + -0.03153187409043312, + 0.032219648361206055, + -0.03335712477564812, + -0.011969943530857563, + -0.024270547553896904, + -0.024733474478125572, + -0.012333670631051064, + -0.0005989104975014925, + -0.022617241367697716, + -0.014112628996372223, + 0.00979419145733118, + 0.026452913880348206, + 0.013768741860985756, + 0.022365938872098923, + 0.01621563546359539, + -0.0025708924513310194, + -0.00964870024472475, + -0.0059122261591255665, + 0.020553912967443466, + -0.026743896305561066, + -0.013537278398871422, + -0.0072613246738910675, + -0.02285531722009182, + 0.010349702090024948, + -0.028965940698981285, + -0.0031313635408878326, + 0.011030864901840687, + -0.00832605455070734, + -0.004698698874562979, + -0.005776654928922653, + -0.005171544384211302, + 0.015818841755390167, + -0.02228657901287079, + -0.01069359015673399, + 0.007082767318934202, + -0.019866138696670532, + -0.007420042064040899, + 0.021731067448854446, + -0.03637275472283363, + 0.02612225152552128, + -0.012049302458763123, + 0.01113667618483305, + -0.014363931491971016, + 0.01974709890782833, + -0.010766335763037205, + -0.03303968906402588, + -0.020077761262655258, + 0.028516240417957306, + 0.010766335763037205, + 0.00035380772897042334, + -0.027325859293341637, + -0.0016376007115468383, + 0.025897402316331863, + 0.004662326071411371, + -0.012730464339256287, + -0.006748799700289965, + -0.0015235224273055792, + 0.010686976835131645, + -0.0027742492966353893, + -0.014588781632483006, + -0.6336001753807068, + 0.00037695400533266366, + 0.002972646150738001, + -0.00781683623790741, + 0.01062745787203312, + 0.020858122035861015, + 0.023040488362312317, + 0.00884849950671196, + -0.021334273740649223, + 0.03563207387924194, + -0.0016268541803583503, + -0.006616535130888224, + -0.02346373349428177, + -0.0009357717935927212, + -0.007929260842502117, + -0.031637683510780334, + -0.013028060086071491, + 0.006633067969232798, + 0.02727295458316803, + 0.006203208118677139, + -0.016004012897610664, + 0.023807622492313385, + -0.014615234918892384, + 0.02166493609547615, + 0.012399802915751934, + 0.004255612380802631, + 0.008643489331007004, + -0.03288097307085991, + 0.01002565398812294, + 0.010673750191926956, + -0.018821246922016144, + 0.021281369030475616, + -0.00855090469121933, + 0.02253788150846958, + 0.046980373561382294, + 0.004566434305161238, + -0.007684571202844381, + 0.009417236782610416, + 0.005829560570418835, + 0.018649304285645485, + -0.016400806605815887, + 0.0009886776097118855, + 0.01563367247581482, + -0.001979008549824357, + 0.0008295468287542462, + -0.0008845193078741431, + 0.025302210822701454, + -0.033251311630010605, + -0.004761524498462677, + -0.0139274587854743, + 0.02448217198252678, + 0.03145251423120499, + -0.001777305151335895, + 0.0026717442087829113, + 0.004387876950204372, + 0.020937480032444, + 0.004668939393013716, + -0.01237335056066513, + -0.007082767318934202, + -0.005624550860375166, + 0.0031495499424636364, + 0.011004411615431309, + 0.014139082282781601, + 0.006649601273238659, + -0.02788137085735798, + 0.041081372648477554, + -0.034997206181287766, + -0.012108821421861649, + 0.02375471591949463, + -0.02343728207051754, + -0.014390384778380394, + 0.023979565128684044, + -0.0001328845537500456, + -0.01075972244143486, + 0.012624653056263924, + 0.006633067969232798, + 0.01931062713265419, + -0.004893789067864418, + 0.007367136422544718, + 0.020686177536845207, + -0.014139082282781601, + -0.017868943512439728, + -0.00692404992878437, + -0.0022666840814054012, + 0.028992392122745514, + -0.03166413679718971, + -0.007162126246839762, + 0.006441284436732531, + -0.005204610526561737, + 0.013153711333870888, + 0.010620844550430775, + 0.024508623406291008, + -0.008087978698313236, + -0.005905612837523222, + -0.0030949909705668688, + 0.03219319507479668, + -0.021188784390687943, + 0.021612029522657394, + 0.009926456026732922, + -0.0410284698009491, + -0.022220447659492493, + 0.0010481966892257333, + 0.027643295004963875, + -0.010012427344918251, + 0.00892785843461752, + 0.011844292283058167, + -0.023093393072485924, + 0.003083417657762766, + 0.04266854748129845, + -0.011480564251542091, + -0.004582967143505812, + -0.010673750191926956, + 0.005283969454467297, + -0.01340501382946968, + -0.007730863988399506, + -0.017326658591628075, + 0.03335712477564812, + -0.012869342230260372, + -0.0022551107686012983, + 0.0033958926796913147, + -0.004225852899253368, + -0.020593592897057533, + 0.004774750676006079, + -0.01525010447949171, + -0.017617641016840935, + 0.0038720450829714537, + 0.012512228451669216, + -0.015951106324791908, + -0.006107316352427006, + -0.009165934287011623, + 0.012181567028164864, + 0.016625655815005302, + 0.0181466992944479, + -0.007023248355835676, + 0.042695000767707825, + -0.01540882233530283, + 0.020818442106246948, + -0.002871794393286109, + -0.0037497004959732294, + -0.024204416200518608, + -0.0038290591910481453, + 0.005773348268121481, + 0.012029462493956089, + -0.013246295973658562, + 0.0034752516075968742, + -0.020249705761671066, + 0.0074531082063913345, + 0.011553309857845306, + -0.0152633311226964, + 0.00804829876869917, + -0.02888658083975315, + -0.0015574152348563075, + 0.0005439380183815956, + 0.020024854689836502, + 0.0033859729301184416, + 0.015607219189405441, + 0.0023262030445039272, + -0.031187985092401505, + -0.015951106324791908, + -0.04010261595249176, + 0.011454111896455288, + 0.014602008275687695, + -0.022207221016287804, + 0.00645451107993722, + -0.017286978662014008, + -0.018556717783212662, + 0.005016133654862642, + -0.004189480096101761, + -0.022762732580304146, + -0.0309499092400074, + -0.00038646053872071207, + -0.020739084109663963, + 0.0031230971217155457, + 0.021572351455688477, + -0.03290742263197899, + 0.004106814973056316, + -0.025725457817316055, + 0.0010374501580372453, + 0.005330262240022421, + -0.010005814023315907, + 0.01771022565662861, + -0.010686976835131645, + -0.02224690094590187, + -0.016136277467012405, + 0.01608337089419365, + 0.027352312579751015, + 0.03481203317642212, + 0.0068182386457920074, + -0.015091386623680592, + 0.02182365395128727, + 0.010111626237630844, + 0.03938838839530945, + -0.009397397749125957, + 0.005856013856828213, + -0.0025196399074047804, + -0.027378765866160393, + 0.012578360736370087, + 0.01901964470744133, + -0.020117441192269325, + 0.030579566955566406, + 0.04663648456335068, + 0.015144293196499348, + 0.023662131279706955, + 0.007929260842502117, + 0.006160221993923187, + -0.02183688059449196, + -0.005326955579221249, + -0.008015233092010021, + 0.028278164565563202, + 0.02374148927628994, + 0.020302610471844673, + 0.0076316655613482, + -0.04219239577651024, + -0.003452105214819312, + -0.014787178486585617, + 0.0344681479036808, + -0.02092425525188446, + -0.008722848258912563, + 0.011844292283058167, + -0.004176253918558359, + 0.011024251580238342, + -0.0009299852536059916, + 0.02065972611308098, + -0.002711423672735691, + 0.006094089709222317, + 0.02240561693906784, + -0.0033314137253910303, + 0.013623250648379326, + 0.0062362742610275745, + -0.02019679918885231, + -0.01062745787203312, + 0.0030222453642636538, + 0.0031098707113415003, + 0.013464532792568207, + 0.017617641016840935, + 0.022815637290477753, + 0.014681367203593254, + -0.004110121633857489, + 0.036478567868471146, + 0.00412334781140089, + 0.005307115614414215, + 0.021030066534876823, + 0.011579763144254684, + -0.01694309152662754, + 0.028383975848555565, + 0.003805912798270583, + 0.010885373689234257, + 0.014244893565773964, + -0.009027056396007538, + 0.004596193786710501, + 0.0017475455533713102, + 0.017326658591628075, + 0.005297196097671986, + -0.0027577162254601717, + 0.01665210910141468, + -0.00824669562280178, + 0.004374650772660971, + -0.010422447696328163, + 0.029256921261548996, + 0.04174269735813141, + 0.007790382951498032, + 0.006805012002587318, + 0.018318641930818558, + 0.003971243742853403, + 0.00670250691473484, + -0.011579763144254684, + -0.004837576299905777, + -0.013623250648379326, + -0.003137976862490177, + 0.006904210429638624, + 0.012942087836563587, + -0.015316236764192581, + -0.009384171105921268, + -0.0018599705072119832, + -0.002974299481138587, + -0.004182866774499416, + -0.005217837169766426, + 0.009000604040920734, + 0.004034069366753101, + -0.0018533571856096387, + -0.02019679918885231, + -0.017630867660045624, + -0.004470542538911104, + 0.025421250611543655, + -0.004189480096101761, + -0.012664332054555416, + 0.011540083214640617, + 0.005439380183815956, + -0.013200003653764725, + -0.0023063633125275373, + -0.0020930867176502943, + -0.02401924505829811, + -0.013583570718765259, + -0.0008853459148667753, + -0.004556514322757721, + -0.02684970758855343, + 0.010997798293828964, + -0.005317035596817732, + 0.01960160955786705, + 0.012406416237354279, + 0.005495592951774597, + 0.009602407924830914, + -0.014509422704577446, + -0.008603810332715511, + 0.03415071219205856, + 0.012631266377866268, + -0.009668540209531784, + -0.016109824180603027, + -0.000674962589982897, + -0.009033669717609882, + -0.020024854689836502, + -0.026042893528938293, + -0.015567539259791374, + 0.0030933376401662827, + -0.022604014724493027, + 0.014654913917183876, + 0.017035676166415215, + 0.010819241404533386, + 0.0377483069896698, + -0.0011440884554758668, + -0.011758320033550262, + -0.0010895293671637774, + -0.017921848222613335, + -0.000301935215247795, + 0.02212786115705967, + 0.016400806605815887, + -0.0032305619679391384, + 0.025103814899921417, + -0.011599602177739143, + 1.0326711162633728e-05, + 0.0073803626000881195, + -0.02625451609492302, + 0.014866537414491177, + 0.005938678979873657, + 0.008207016624510288, + 0.013173551298677921, + 0.024521850049495697, + 0.004877255763858557, + 0.010283569805324078, + 0.0011118489783257246, + 0.00645451107993722, + -0.02682325430214405, + -0.00029387534596025944, + 0.008974150754511356, + -0.022775959223508835, + -0.013028060086071491, + 0.0035876764450222254, + 0.049731478095054626, + 0.014178761281073093, + 0.016480164602398872, + 0.024878965690732002, + -0.0015979212475940585, + 0.029706621542572975, + 0.0019558623898774385, + -0.02096393331885338, + 0.017194394022226334, + -0.001696293125860393, + 0.018318641930818558, + -0.011626055464148521, + -0.012505615130066872, + 0.02729940600693226, + -0.0222733523696661, + 0.025103814899921417, + -0.017591187730431557, + 0.01290902215987444, + 0.0305266622453928, + 0.011890584602952003, + -0.00689759710803628, + 0.011599602177739143, + -0.02756393514573574, + 0.007988779805600643, + 0.0154749546200037, + -0.0072613246738910675, + 0.0023361227940768003, + 0.006930663250386715, + 0.0020434875041246414, + -0.019575156271457672, + -0.010429061017930508, + -0.019416438415646553, + 0.0033628265373408794, + 0.028648504987359047, + -0.015012028627097607, + -0.007386975921690464, + -0.006371845491230488, + -0.04094910994172096, + -0.013808420859277248, + -0.0006361099076457322, + -0.0010729962959885597, + -0.013742288574576378, + 0.0073340702801942825, + -0.0036802615504711866, + 0.008583970367908478, + 0.022167541086673737, + -0.01682405360043049, + 0.015726257115602493, + -0.004113427828997374, + -0.027749106287956238, + -0.011566536501049995, + 0.004774750676006079, + 0.008154110983014107, + 0.00937094446271658, + -0.004225852899253368, + -0.0019823152106255293, + -0.022775959223508835, + -0.012505615130066872, + -0.02137395367026329, + 0.003971243742853403, + -0.019046097993850708, + -0.0059717451222240925, + 0.008828659541904926, + -0.011645895428955555, + -0.016017239540815353, + -0.01018437184393406, + 0.011619442142546177, + -0.004116734489798546, + -0.0023493494372814894, + 0.03229900822043419, + 0.00015396422531921417, + -0.01253868080675602, + 0.011368139646947384, + 0.010032267309725285, + 0.013623250648379326, + 0.02506413497030735, + -0.018239283934235573, + 0.03465331718325615, + -0.007301004137843847, + -0.00221212487667799, + -0.008266535587608814, + 0.007519240491092205, + -0.006305713206529617, + -0.019654514268040657, + -0.0010233970824629068, + 0.005356715060770512, + -0.0011548349866643548, + 0.026161931455135345, + -0.007492787670344114, + 0.015131066553294659, + -0.027537483721971512, + 0.0010308369528502226, + 0.012704011984169483, + 0.005317035596817732, + 0.0019740485586225986, + 0.033701010048389435, + 0.01046212762594223, + -0.013821647502481937, + -0.03079119138419628, + 0.031346701085567474, + 0.002751102903857827, + 0.026770347729325294, + 0.0030883776489645243, + 0.0010283569572493434, + 0.009463530033826828, + -0.031002813950181007, + 0.002486573765054345, + 0.001777305151335895, + 0.0035645300522446632, + 0.02724650129675865, + -0.0028899807948619127, + -0.019350305199623108, + -0.0060312640853226185, + -0.0061040096916258335, + 0.011811225675046444, + -0.018067339435219765, + 0.006811625324189663, + -0.020170345902442932, + 0.00972805917263031, + -0.008775753900408745, + 0.007472948171198368, + 0.013292589224874973, + -0.02095070667564869, + -0.006352005992084742, + 0.010799401439726353, + 0.004933468531817198, + 0.006652907934039831, + 0.001969088800251484, + -0.025844495743513107, + -0.018556717783212662, + 0.005951905623078346, + -0.01707535609602928, + -0.03613467887043953, + -7.972039747983217e-05, + -0.01917836256325245, + 0.0009076655842363834, + 0.014721046201884747, + 0.028860127553343773, + 0.004969840869307518, + 0.0210565198212862, + 0.02329179085791111, + -0.016440486535429955, + 0.00769779784604907, + -0.00907334964722395, + 0.0014375505270436406, + -0.025394797325134277, + 0.024204416200518608, + 0.00884849950671196, + 0.009020443074405193, + 0.019958723336458206, + -0.015858521685004234, + 0.006484270561486483, + 0.03430942818522453, + -0.025275759398937225, + -0.027352312579751015, + -0.013100805692374706, + -0.02756393514573574, + -0.021889785304665565, + 0.02801363542675972, + 0.011592988856136799, + 0.013887779787182808, + -0.02140040695667267, + 0.002193938475102186, + 0.036637283861637115, + -0.004116734489798546, + -0.01519719883799553, + -0.006570242345333099, + -0.0045333681628108025, + -0.03169059008359909, + 0.017921848222613335, + 0.007095993962138891, + -0.004890482407063246, + -0.023834075778722763, + -0.01384809985756874, + -0.021625256165862083, + -0.04422927275300026, + 0.0021278061904013157, + -0.02917756326496601, + -0.008121044375002384, + -0.010898600332438946, + -0.002499800408259034, + -0.001972395461052656, + -0.006712426897138357, + 0.015977559611201286, + -0.018477359786629677, + 0.013914232142269611, + -0.010739882476627827, + -0.006398298311978579, + -0.008458319120109081, + -0.013510825112462044, + -0.026307422667741776, + 0.019680967554450035, + -0.002903207205235958, + 0.010554712265729904, + 0.03862125426530838, + -0.016903411597013474, + 0.018331868574023247, + 0.015527860261499882, + -0.009800804778933525, + 0.036505021154880524, + 0.00891463179141283, + 0.054334282875061035, + 0.02433668076992035, + -0.023701811209321022, + -0.011308620683848858, + -0.0656561329960823, + -0.0048871757462620735, + -0.003237175289541483, + -5.267333108349703e-05, + -0.018755115568637848, + -0.0014086175942793489, + -0.024072151631116867, + -0.0005178984720259905, + 0.020448101684451103, + -0.02534189075231552, + 0.00769779784604907, + 0.05867256224155426, + 0.014284573495388031, + -0.0025708924513310194, + -0.005330262240022421, + -0.009331265464425087, + -0.016255315393209457, + 0.0021459925919771194, + -0.005571644753217697, + -0.005637777037918568, + -0.001972395461052656, + -0.014430063776671886, + -0.001318512368015945, + 0.04848818853497505, + 0.008597197011113167, + 0.026360327377915382, + -0.0023030568845570087, + 0.008676555939018726, + -0.005026053637266159, + -0.015382369048893452, + -0.0022567640990018845, + 0.025870949029922485, + -0.0028469949029386044, + 0.03142606094479561, + -0.004361424129456282, + -0.011149902828037739, + 0.01237335056066513, + 0.0004122934478800744, + -0.015845295041799545, + -0.007373749744147062, + -0.01812024600803852, + 0.016162730753421783, + -0.008352507837116718, + -0.012406416237354279, + 0.004956614691764116, + 0.016453711315989494, + 0.004245692398399115, + -0.007082767318934202, + -0.0032123755663633347, + -0.01407294999808073, + 0.013887779787182808, + 0.013147098012268543, + 0.007783769629895687, + 0.01039599534124136, + -0.010925053618848324, + -0.022590788081288338, + -0.008398800157010555, + -0.00420270673930645, + -0.011242488399147987, + 0.0007960673538036644, + 0.002818888518959284, + -0.04494350031018257, + -0.0192974004894495, + 0.016718240454792976, + 0.01111683715134859, + 0.0350765623152256, + -0.03256353735923767, + -0.02401924505829811, + -0.02034229040145874, + 0.023781169205904007, + -0.024151509627699852, + 0.02005130797624588, + 0.05100121721625328, + 0.0024336681235581636, + -0.002883367473259568, + 0.008008619770407677, + -0.004983067512512207, + -0.02208818309009075, + 0.023225657641887665, + -0.011368139646947384, + -0.03110862523317337, + 0.0048739491030573845, + -0.008663329295814037, + 0.01384809985756874, + -0.013636477291584015, + -0.01576593704521656, + 0.015303010120987892, + 1.6742962998250732e-06, + -0.009463530033826828, + -0.02270982600748539, + -0.014496196061372757, + 0.017194394022226334, + 0.017062129452824593, + -0.004024149384349585, + 0.034573957324028015, + -0.016612429171800613, + 0.013821647502481937, + 0.016294995322823524, + 0.007254711352288723, + -0.020223252475261688, + -0.014482970349490643, + -0.020752310752868652, + -0.015131066553294659, + 0.026161931455135345, + 0.012208019383251667, + -0.009404011070728302, + 0.0003521543985698372, + -0.016863731667399406, + -0.014020044356584549, + 0.01781603693962097, + -0.011751706711947918, + 0.010058720596134663, + -0.0021658323239535093, + 0.020672950893640518, + -0.02140040695667267, + -0.0030685379169881344, + 0.006805012002587318, + -0.02551383525133133, + -0.009853710420429707, + -0.0003360346599947661, + -0.03274870663881302, + 0.0008237602305598557, + 0.0016714935190975666, + 0.03343648090958595, + 0.02431022748351097, + -0.0495198555290699, + 0.002321243053302169, + -0.014139082282781601, + -0.05383167788386345, + -0.032351914793252945, + -0.02064649946987629, + -0.0006638027844019234, + -0.005994891282171011, + 0.0006662827800028026, + 0.00030627514934167266, + 0.01960160955786705, + -0.0075126271694898605, + 0.027220048010349274, + -0.03433588147163391, + -0.0023592691868543625, + -0.008762527257204056, + -0.01503848098218441, + 0.021850107237696648, + -0.006262727081775665, + -0.03306614235043526, + -0.016559524461627007, + 0.008425252512097359, + -0.02565932646393776, + 0.012254311703145504, + 0.0084054134786129, + 0.016890184953808784, + 0.005422847345471382, + 0.004265532363206148, + 0.028516240417957306, + 0.01289579551666975, + 0.00899399071931839, + 0.010832468047738075, + -0.046080976724624634, + -0.0016607469879090786, + 0.020567139610648155, + -0.005991585087031126, + -0.05385813117027283, + 0.005403007380664349, + 0.015699803829193115, + -0.004394490271806717, + -0.01874188892543316, + 0.021783974021673203, + -0.03351584076881409, + -0.014575554989278316, + -0.004381263628602028, + 0.017194394022226334, + 0.027087783440947533, + -0.002891634125262499, + -0.008233468979597092, + 0.019694194197654724, + -0.018464133143424988, + -0.0278549175709486, + -0.010885373689234257, + -0.02596353366971016, + 0.017749905586242676, + 0.01665210910141468, + -0.014562328346073627, + 0.0060444907285273075, + -0.027987182140350342, + 0.020606819540262222, + -0.002002154942601919, + 0.0188741534948349, + -0.02140040695667267, + -0.04221884906291962, + -0.004890482407063246, + 0.03626694530248642, + 0.033674560487270355, + -0.00412334781140089, + 0.019138682633638382, + -0.010779562406241894, + -0.0074663348495960236, + -0.005465833004564047, + 0.011315234005451202, + -0.00929158553481102, + -0.028066540136933327, + -0.013001606799662113, + -0.013490986078977585, + -0.00010911826393567026, + -0.014813631772994995, + -0.021122651174664497, + 0.0058394805528223515, + -0.029971150681376457, + 0.018067339435219765, + 0.19173072278499603, + -0.028198804706335068, + -0.0057799615897238255, + 0.0071422867476940155, + -0.009007217362523079, + -0.015210425481200218, + 0.02432345412671566, + 0.010891987010836601, + -0.004933468531817198, + 0.012928861193358898, + -0.017472149804234505, + 0.0014987228205427527, + -0.013200003653764725, + 0.0004290331853553653, + -0.0006877757259644568, + -0.014562328346073627, + -0.042695000767707825, + 0.02137395367026329, + 0.0034091193228960037, + 0.03388618305325508, + 0.02064649946987629, + -0.03364810720086098, + -0.008352507837116718, + -0.0008287201635539532, + 0.048435285687446594, + 0.004619339946657419, + 2.663374471012503e-05, + -0.00633547268807888, + 0.023172752931714058, + -0.012135273776948452, + -0.011692187748849392, + 0.004536674823611975, + -0.010071946308016777, + -0.012796596623957157, + 0.003895191475749016, + 0.009430463425815105, + 0.021638482809066772, + -0.007684571202844381, + 0.024349907413125038, + 0.012598199769854546, + -0.0068182386457920074, + -0.012465935200452805, + -0.00020180678984615952, + -0.03036794438958168, + -0.02653227187693119, + 0.012069141492247581, + -0.005697296001017094, + -0.014668140560388565, + -0.010448900982737541, + -0.01340501382946968, + -0.013702609576284885, + -0.002980912569910288, + -0.009900002740323544, + 0.030579566955566406, + -0.020461328327655792, + -0.004219239577651024, + 0.013715835288167, + -0.015223651193082333, + 0.0013565385015681386, + 0.006421444937586784, + -0.028489787131547928, + 0.03248417750000954, + -0.014615234918892384, + 0.005171544384211302, + -0.024349907413125038, + -0.0025245998986065388, + -0.033991992473602295, + 0.005373247899115086, + 0.0030189387034624815, + -0.020448101684451103, + -0.012584973126649857, + -0.022789184004068375, + -0.028119446709752083, + 0.03875351697206497, + -0.01958838291466236, + -0.024495398625731468, + -0.011559923179447651, + 0.011903811246156693, + 0.024587983265519142, + 0.015422048047184944, + 0.0019310626666992903, + 0.018398001790046692, + -0.01510461326688528, + -0.022921448573470116, + 0.0009977708104997873, + -0.035605620592832565, + 0.03438878804445267, + 0.003686874872073531, + -0.008762527257204056, + 0.002018688013777137, + -0.004996294155716896, + 0.013524051755666733, + -0.00704308832064271, + -0.018345095217227936, + 0.00344879855401814, + -0.0049004023894667625, + 0.02268337272107601, + 0.005611324217170477, + -0.015170745551586151, + 0.007790382951498032, + -0.011275554075837135, + 0.04936113581061363, + 0.038700610399246216, + -0.008802207186818123, + 0.00017525054863654077, + 0.0009721445385366678, + 0.000649749708827585, + 0.011831065639853477, + 0.008511224761605263, + -0.012479161843657494, + 0.00037282073753885925, + -0.016890184953808784, + 0.015448501333594322, + 0.0021790587343275547, + -0.0028370749205350876, + 0.011923650279641151, + 0.01157314982265234, + -0.0021162331104278564, + -0.0026535578072071075, + -0.0044738491997122765, + -0.010574552230536938, + -0.013834874145686626, + 0.0012416336685419083, + -0.00044515292393043637, + 0.002050100825726986, + -0.03814510256052017, + -0.029256921261548996, + 0.011487177573144436, + -0.02683648094534874, + -0.005588178057223558, + 0.01973387412726879, + -0.008822046220302582, + 0.006011424586176872, + 0.0075126271694898605, + 0.02946854569017887, + 0.01348437275737524, + -0.010634071193635464, + -0.028198804706335068, + 0.001249900204129517, + 0.01563367247581482, + 0.005733668804168701, + -0.01903287135064602, + -0.0007142286631278694, + 0.011262327432632446, + 0.015501406975090504, + 0.013583570718765259, + 0.009245293214917183, + -0.011275554075837135, + -0.022326258942484856, + -0.0026237983256578445, + 0.0031330168712884188, + 0.0007749876822344959, + -0.010561325587332249, + 0.005386474542319775, + 0.029098205268383026, + -0.012922247871756554, + -0.03415071219205856, + -0.03068538010120392, + 0.018199604004621506, + -0.001066383090801537, + -0.005376554559916258, + -0.01245932187885046, + -0.011123450472950935, + -0.02257756143808365, + 0.004070442169904709, + 0.013729061931371689, + -0.16654753684997559, + -0.009569341316819191, + 0.009840483777225018, + -0.033383578062057495, + 0.015289783477783203, + 0.0106803635135293, + 0.002499800408259034, + 0.014363931491971016, + -0.014337479136884212, + 0.005330262240022421, + 0.019337080419063568, + 0.018530266359448433, + -0.017326658591628075, + -0.014509422704577446, + 0.003924950957298279, + 0.01348437275737524, + -0.01577916368842125, + 0.031928665935993195, + 0.019548702985048294, + 0.02226012572646141, + 0.010865533724427223, + -0.02740521915256977, + 0.03542045131325722, + 0.005842787213623524, + 0.01276353094726801, + -0.006762025877833366, + -0.014575554989278316, + 0.011196195147931576, + 0.007327456958591938, + -0.009417236782610416, + -0.002499800408259034, + 0.01105070486664772, + 0.019879363477230072, + -0.015157518908381462, + 0.013133871369063854, + -0.02331824228167534, + -0.00667605409398675, + -0.013834874145686626, + -0.008372346870601177, + 0.041187185794115067, + 0.03065892681479454, + -0.0051583182066679, + -0.01291563455015421, + 0.017763132229447365, + -0.029309827834367752, + 0.0005199650768190622, + 0.0012011275393888354, + 0.012545294128358364, + -0.0074068158864974976, + -0.020395196974277496, + 0.007929260842502117, + -0.017498603090643883, + -0.02223367430269718, + 0.014020044356584549, + -0.0004133267793804407, + 0.03343648090958595, + 0.004301905166357756, + 0.022590788081288338, + 0.007241485174745321, + 0.00163264072034508, + -0.01002565398812294, + -0.006682667415589094, + 0.011692187748849392, + 0.003931564278900623, + -0.0011680613970384002, + -0.030473755672574043, + 0.01075972244143486, + 0.0031214437913149595, + 0.001927756005898118, + -0.009483369067311287, + -0.009397397749125957, + -0.028040088713169098, + 0.012532067485153675, + -0.01518397219479084, + 0.011235875077545643, + 0.006871144287288189, + -0.017432469874620438, + 0.0060874768532812595, + -0.008207016624510288, + -0.014456517063081264, + -0.023820849135518074, + 0.06195272132754326, + -0.015303010120987892, + -0.01663888245820999, + -0.02122846245765686, + -0.007095993962138891, + 0.010541485622525215, + 0.0158982016146183, + 0.00899399071931839, + -0.005191384349018335, + 0.0035479969810694456, + -0.019945496693253517, + -0.0002469627361278981, + -0.021016839891672134, + 0.004212626256048679, + 0.0022600707598030567, + 0.018702208995819092, + 0.00446392921730876, + 0.0025179865770041943, + -0.016744693741202354, + 0.020434875041246414, + 0.008755913935601711, + -0.00825992226600647, + 0.0009126255172304809, + 0.011764933355152607, + -0.006464430596679449, + -0.008352507837116718, + 0.005452606827020645, + 0.02833106927573681, + -0.013233070261776447, + -0.03549981117248535, + -0.028965940698981285, + 0.01637435331940651, + -0.010812628082931042, + -0.005789881572127342, + 0.01990581676363945, + 0.016757920384407043, + -0.007347296457737684, + 0.00781683623790741, + -0.0015408821636810899, + 0.044731877744197845, + -0.015223651193082333, + -0.019085776060819626, + 0.01260481309145689, + 0.00847154576331377, + -0.02581804431974888, + -0.0965002253651619, + 0.004239079542458057, + 0.01903287135064602, + 0.02064649946987629, + 0.02740521915256977, + -0.001197820995002985, + -0.009642086923122406, + 0.023397602140903473, + 0.0018765035783872008, + 0.015845295041799545, + -0.03764249384403229, + -0.021876558661460876, + -0.013008220121264458, + -0.024125056341290474, + 0.03084409609436989, + -0.015964332967996597, + -0.008127657696604729, + -0.012267538346350193, + -0.006183368619531393, + 0.04425572231411934, + 0.003063577925786376, + -0.0028089687693864107, + -0.010541485622525215, + -0.004305211827158928, + -0.017181167379021645, + -0.0018781567923724651, + -0.0179615281522274, + 0.01781603693962097, + 0.02153267152607441, + -0.017326658591628075, + 0.01976032555103302, + -0.008220243267714977, + 0.023939887061715126, + -0.034997206181287766, + 0.00426883902400732, + 0.007836675271391869, + -0.009985974989831448, + -0.025143494829535484, + 0.013524051755666733, + -0.02729940600693226, + -0.004189480096101761, + 0.01126894075423479, + 0.04967857152223587, + -0.020448101684451103, + 0.010878760367631912, + -0.026148704811930656, + -0.016612429171800613, + 0.005796494428068399, + 0.004444089252501726, + -0.018371548503637314, + -0.04425572231411934, + -0.01874188892543316, + 0.002974299481138587, + 0.0299182441085577, + -0.00401753606274724, + 0.01276353094726801, + -0.0005951905623078346, + -0.03764249384403229, + -0.012141887098550797, + 0.008874952793121338, + -0.027378765866160393, + 0.011606215499341488, + -0.027934275567531586, + 0.011665734462440014, + 0.006292486563324928, + -0.01740601658821106, + -0.02535511739552021, + -0.018649304285645485, + -0.013147098012268543, + -0.014641687273979187, + -0.026175158098340034, + 0.01032986305654049, + 0.01564689911901951, + -0.006623147986829281, + -0.04631905257701874, + -0.02327856421470642, + -0.027960728853940964, + -0.00884849950671196, + 0.007155512925237417, + -0.020712630823254585, + -0.03158477693796158, + -0.02003808133304119, + 0.01812024600803852, + -0.012657718732953072, + 0.03248417750000954, + 0.0017442390089854598, + 0.014509422704577446, + -0.046795204281806946, + 0.014509422704577446, + -0.02003808133304119, + -0.004758217837661505, + -0.013755515217781067, + 0.03317195177078247, + -0.022630468010902405, + 0.0008266535587608814, + 0.02195591852068901, + -0.010323249734938145, + -6.210235005710274e-05, + 0.026651309803128242, + 0.006983568891882896, + -0.019866138696670532, + -0.017763132229447365, + -0.03761604428291321, + 0.010700203478336334, + 0.015527860261499882, + 0.004516834858804941, + -0.009410623461008072, + 0.003825752530246973, + 0.01901964470744133, + 0.03171704337000847, + 0.005574951414018869, + -0.007360523100942373, + -0.0030387784354388714, + -0.0188741534948349, + -0.010865533724427223, + -0.017789583653211594, + -0.019350305199623108, + -0.008299601264297962, + 0.001065556425601244, + 0.020699404180049896, + 0.016149504110217094, + 0.010409221053123474, + -0.01364970300346613, + 0.026651309803128242, + 0.006431364454329014, + 0.012803209945559502, + -0.02092425525188446, + -0.003442185465246439, + 0.002761022886261344, + -0.010468740016222, + -0.003948097117245197, + -0.008398800157010555, + -0.008200403302907944, + -0.008385573513805866, + -0.012188179418444633, + 0.0003598009643610567, + -0.0019608221482485533, + 0.006140382494777441, + 0.008577357046306133, + 0.03965291753411293, + -0.00383567251265049, + 0.049599211663007736, + -0.05190061777830124, + -0.008861726149916649, + 0.018636077642440796, + -0.021281369030475616, + -0.019244493916630745, + 0.006990182213485241, + 0.006553709506988525, + -0.0023179366253316402, + 0.014721046201884747, + -0.012340283952653408, + 0.05586855113506317, + 0.015514633618295193, + 0.029600810259580612, + 0.01325952261686325, + 0.0030156320426613092, + -0.044017646461725235, + 0.010673750191926956, + 0.010124852880835533, + 0.012704011984169483, + -0.027828464284539223, + 0.031902212649583817, + 0.019707420840859413, + 0.018014434725046158, + -0.02448217198252678, + 0.015977559611201286, + -0.006471043918281794, + -0.046530675143003464, + -0.01304128672927618, + 0.014403611421585083, + -0.03579079359769821, + -0.008107817731797695, + -0.01958838291466236, + 0.014430063776671886, + 0.04258919134736061, + 0.006943889893591404, + 0.00892785843461752, + 0.012737077660858631, + 0.008253308944404125, + 0.010634071193635464, + 0.03452105075120926, + 0.005029360298067331, + 0.029124656692147255, + -0.03803928941488266, + 0.01843767985701561, + 0.0369018130004406, + 0.0023195897229015827, + -0.024230869486927986, + -0.007757316809147596, + -0.02214108780026436, + 0.01797475479543209, + 0.0118046123534441, + 0.020858122035861015, + -0.007843288592994213, + -0.008167336694896221, + 0.02446894533932209, + 0.011222648434340954, + 0.012049302458763123, + -0.019337080419063568, + -0.0028800610452890396, + 0.046821657568216324, + 0.017485376447439194, + 0.006805012002587318, + 0.009886776097118855, + -0.022974355146288872, + -0.008967537432909012, + 0.021559124812483788, + -0.008841886185109615, + -0.04560482129454613, + -0.0070563144981861115, + -0.002688277279958129, + -0.0075126271694898605, + 0.014654913917183876, + 0.013292589224874973, + -0.007922647520899773, + -0.010911826975643635, + 0.02446894533932209, + -0.010197598487138748, + -0.005842787213623524, + -0.018503813073039055, + 0.023225657641887665, + 0.02091102860867977, + 0.024085378274321556, + -0.010455514304339886, + -0.000974624534137547, + 0.03219319507479668, + 0.00044391295523382723, + 0.004920241888612509, + -0.0013515785103663802, + 0.014324252493679523, + -0.014059723354876041, + 0.027325859293341637, + 0.0005621244199573994, + -0.009979361668229103, + -0.014509422704577446, + -0.01077294908463955, + -0.002974299481138587, + 0.02342405542731285, + 0.029309827834367752, + 0.007400202564895153, + 0.09232066571712494, + 0.0338597297668457, + -0.00637515215203166, + 0.008643489331007004, + -0.001126728835515678, + 0.04094910994172096, + 0.01534269005060196, + 0.012823049910366535, + -0.006328859366476536, + -0.05232386291027069, + 0.009635473601520061, + -0.005016133654862642, + 0.02226012572646141, + -0.03933548182249069, + -0.02920401655137539, + 0.01564689911901951, + 0.0024006019812077284, + 0.0014664833433926105, + -0.017353111878037453, + 0.02167816273868084, + 0.02640000730752945, + -0.00810120441019535, + 0.023093393072485924, + 0.02724650129675865, + -0.01830541528761387, + -0.01962806098163128, + 0.01696954481303692, + 0.01592465303838253, + 0.008002006448805332, + 0.00449038203805685, + -0.020143892616033554, + -0.009417236782610416, + -0.059783585369586945, + -0.019191589206457138, + 0.01386132650077343, + 0.0005240983446128666, + -0.008378960192203522, + -0.031002813950181007, + 0.02199559658765793, + -0.008028458803892136, + 0.014919443055987358, + 0.02047455497086048, + -0.013411627151072025, + -0.030024057254195213, + -0.004774750676006079, + -0.0014226707862690091, + -0.0012399803381413221, + -0.009609020315110683, + -0.023834075778722763 + ], + "metadata": { + "source": "Kreye_Marieke_BA_241_V2.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 17, + "has_images": true, + "image_count": 98, + "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", + "links": [], + "last_modified": "2025-05-05T23:00:23", + "_known_field_names": "frozenset({'is_continuation', 'sent_to', 'header_footer_type', 'email_message_id', 'filename', 'languages', 'detection_class_prob', 'sent_from', 'link_texts', 'cc_recipient', 'subject', 'image_mime_type', 'image_path', 'filetype', 'page_number', 'last_modified', 'signature', 'detection_origin', 'text_as_html', 'attached_to_filename', 'bcc_recipient', 'data_source', 'link_start_indexes', 'category_depth', 'emphasized_text_tags', 'parent_id', 'orig_elements', 'page_name', 'coordinates', 'url', 'link_urls', 'file_directory', 'links', 'table_as_cells', 'emphasized_text_contents', 'key_value_pairs', 'image_base64'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "Kreye_Marieke_BA_241_V2.pdf", + "detection_class_prob": 0.3422867953777313, + "parent_id": "e02392183bc6851689602ad4b9f6039f", + "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", + "id": "ce00eae5-7e07-454f-9e4f-f79ac36f92f4", + "processing_timestamp": "2025-05-05T23:15:46.977945", + "chunk_number": 40, + "total_chunks": 56, + "chunking_strategy": "hybrid", + "word_count": 496 + } +} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000041.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000041.json new file mode 100644 index 0000000000000000000000000000000000000000..3fd14b3ccb1fe0ff2b8abd47d917e5f3d6511bdb --- /dev/null +++ b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000041.json @@ -0,0 +1,1570 @@ +{ + "id": "61a115b2-0ff7-441a-f6d9-eb3d00000041", + "content": "Dieses Nachjustieren stellt einen zus\u00e4tzlichen Zeitbedarf dar. Um jedoch eine qualitative Aussage zu treffen, inwiefern die zugeordneten Stra\u00dfenquerschnitte in der Masse die Gegebenheiten der Quartiersarchetypen darstellen, ist das Durchf\u00fchren von zus\u00e4tzlichen Simulationen in weiteren Quartieren n\u00f6tig. Die Gebietsausschnitte auf Grund der H\u00f6he der thermischen Belastung auszuw\u00e4hlen, ist eine gute M\u00f6glichkeit, um bei einer geringen Reduktion des MIV-Anteils das Pflanzen auf wenige und die am st\u00e4rksten durch \u00dcberhitzung gef\u00e4hrdeten Stra\u00dfenz\u00fcge zu konzentrieren. Dennoch sind in der Praxis mehr Faktoren f\u00fcr die Gebietsauswahl zu ber\u00fccksichtigen als ausschlie\u00dflich klimatologische Bedingungen. Das Erscheinungsbild im Stadtzusammenhang, sowie die Stra\u00dfenhierarchie spielen eine genauso entscheidende Rolle wie die unterirdischen Nutzungskonflikte zwischen zus\u00e4tzlich ben\u00f6tigtem Wurzelraum und vorhandener Infrastruktur. Au\u00dferdem m\u00fcssen in der Umsetzung der Baumszenarien verschiedene Interessenskonflikte gel\u00f6st bzw. die unterschiedlichen Interessen verschiedener Stakeholder ber\u00fccksichtigt werden. Die voll umfassende Ber\u00fccksichtigung der aufgelisteten Aspekte, war im zeitlichen Rahmen dieser Arbeit nicht m\u00f6glich, weshalb vereinfachende Annahmen getroffen werden mussten. Weiteres Verbesserungspotential des Tools besteht bei dem Python-Skript, welches zum automatischen Pflanzen der B\u00e4ume verwendet wird. Da das Skript ausschlie\u00dflich auf \u00f6ffentlich zug\u00e4ngliche Daten zur\u00fcckgreift, werden in den Innenh\u00f6fen keine weiteren B\u00e4ume gepflanzt. Stellt sich aber eine Reduktion des MIV ein, besteht die M\u00f6glichkeit, dass auch Parkraum oder Garagen im Innenhof von Blockbebauungen oder auf privaten Grundst\u00fccken wegfallen. Eine Pflanzung im privaten Raum m\u00fcsste zum jetzigen Zeitpunkt h\u00e4ndisch erfolgen. Zwar ist die Fl\u00e4chenumnutzung im privaten Raum rechtlich komplizierter als im \u00f6ffentlichen Raum, dennoch sollte in einer Potentialanalyse der private Raum nicht au\u00dfenvorgelassen werden. Auch die Pflanzen im privaten Raum\n52\nKritische W\u00fcrdigung\nverschatten die Geb\u00e4udefassaden und erh\u00f6hen die Evapotranspiration und haben somit eine Auswirkung auf den thermischen Geb\u00e4udeenergiebedarf und das urbane Mirkoklima. Eine weitere Ungenauigkeit bzw. realit\u00e4tsferne Abbildung zeigt sich beim Pflanzen der B\u00e4ume \u00fcber das Python-Skript. Das automatische Pflanzen der B\u00e4ume erfolgt in der Stra\u00dfenmitte und auch \u00fcber Kreuzungen hinweg ohne Ber\u00fccksichtigung von Einfahrten und Rettungsgassen. Dies f\u00fchrt zu einem gr\u00f6\u00dferen Abstand zu den H\u00e4usern, weshalb die Auswirkungen des Verschattungseffekts wom\u00f6glich geringer ausfallen als bei einer Platzierung am Stra\u00dfenrand. Hier w\u00e4re also f\u00fcr eine genauere Simulation eine manuelle Anpassung der Output-Dateien notwendig. Zudem erfolgt bei einer ausreichenden Stra\u00dfenbreite das Pflanzen an beiden Stra\u00dfenr\u00e4ndern. Hier w\u00e4re es sinnvoll, wenn je nach Quartiersarchetyp bestimmte Parameter angepasst werden k\u00f6nnten, um eine m\u00f6glichst realit\u00e4tsnahe Planung zu erzielen. Als Inputparameter wird neben den Koordinaten des Gebietsausschnitts der Pflanzabstand f\u00fcr die neuen B\u00e4ume festgelegt. Dies f\u00fchrt dazu, dass bei einer Vorgabe von m\u00f6glichen zus\u00e4tzlichen Pflanzungen, so wie es im Rahmen dieser Arbeit der Fall war, durch Probieren ein geeigneter Gebietsausschnitt festgelegt werden musste, in welchem die errechnete Anzahl neuer B\u00e4ume in dem vorher definierten Pflanzabstand Platz finden. Um diesen zeitaufw\u00e4ndigen Prozess zu optimieren, w\u00e4re es hilfreich, wenn neben dem Pflanzabstand zus\u00e4tzlich die maximale Anzahl der neuen B\u00e4ume festgelegt werden k\u00f6nnte. Das Simualtionstool SimStadt ist nach einer kurzen Einf\u00fchrung und dem Vorhandensein aller relevanter Input-Daten intuitiv anwendbar und erfordert keine speziellen Vorkenntnisse.", + "embedding": [ + 0.019427349790930748, + -0.0036298828199505806, + 0.008225015364587307, + -0.019073879346251488, + -0.001993376761674881, + 0.02536839433014393, + -0.01036623865365982, + -0.011025599204003811, + -0.027054183185100555, + -0.020406195893883705, + 0.006223141681402922, + -0.0033019017428159714, + -0.004258654545992613, + 0.014234035275876522, + 0.002156517468392849, + 0.002161615528166294, + 0.03570064529776573, + 0.006026013288646936, + 0.03733205422759056, + 0.012697792612016201, + -0.008469726890325546, + 0.024933353066444397, + 0.021765701472759247, + -0.023261159658432007, + 2.8444756026146933e-06, + 0.036081306636333466, + 0.01876119151711464, + -0.03020823746919632, + -0.021099543198943138, + 0.008231813088059425, + 0.011168347671627998, + -0.02334272861480713, + -0.017809538170695305, + -0.014193249866366386, + -0.020922807976603508, + 0.004122703801840544, + 0.012201572768390179, + -0.017727967351675034, + 0.024117648601531982, + 0.004075121134519577, + 0.010719710029661655, + -0.0026221484877169132, + -0.00975446030497551, + -0.0283593088388443, + 0.012181179597973824, + 0.005053965840488672, + -0.009700080379843712, + -0.0019050086848437786, + -0.03548312559723854, + 0.017592016607522964, + 0.02755719982087612, + 0.027951456606388092, + -0.01470986194908619, + 0.014410770498216152, + -0.00845613144338131, + -0.0020562538411468267, + -0.010427416302263737, + -0.00895914901047945, + -0.007354930974543095, + -0.009937994182109833, + -0.018244579434394836, + 0.0030283010564744473, + -0.015008953399956226, + 0.01415246445685625, + -0.030534518882632256, + -0.006834919564425945, + -0.005947841797024012, + -0.006668379995971918, + 0.02069169096648693, + -0.006338699720799923, + 0.027108563110232353, + 0.03347105532884598, + 0.006049804855138063, + -0.01439717598259449, + 0.028875920921564102, + -0.0023825354874134064, + 0.006722760386765003, + -0.008367763832211494, + 0.0036672691348940134, + 0.005393842700868845, + 0.011202335357666016, + -0.01923701912164688, + -0.03268254175782204, + 0.05424431711435318, + 0.02210557833313942, + 0.012765767984092236, + -0.006552821956574917, + 0.035863786935806274, + 0.02157537080347538, + 0.019835202023386955, + 0.004061526153236628, + 0.018217388540506363, + 0.0036264839582145214, + 0.008884375914931297, + -0.015960607677698135, + 0.007354930974543095, + 0.0006852763472124934, + 0.01147423591464758, + 0.014723457396030426, + -0.01964487135410309, + -0.01738809049129486, + 0.021602561697363853, + -0.013819385319948196, + -0.003694459330290556, + -0.022527026012539864, + -0.0017673586262390018, + 0.0013569575967267156, + 0.018163008615374565, + 0.015294450335204601, + -0.009462166577577591, + -0.01708899810910225, + 0.04249817878007889, + -0.04336826130747795, + -0.005597768817096949, + 0.02747562900185585, + -0.0340692363679409, + 0.03869155794382095, + -0.005444824229925871, + -0.022255124524235725, + -0.01404370367527008, + 0.02928377315402031, + -0.007681212853640318, + 0.0008802805677987635, + -0.02104516327381134, + 0.03716891258955002, + 0.014234035275876522, + 0.022024007514119148, + -0.0006347196758724749, + -0.041057102382183075, + -0.027978647500276566, + -0.006304712034761906, + 0.009870018810033798, + 0.019617680460214615, + 0.020243054255843163, + -0.030480138957500458, + 0.018570860847830772, + -0.020664501935243607, + -0.013635851442813873, + -0.03950726240873337, + -0.046168845146894455, + -0.0016806900966912508, + 0.009958386421203613, + -0.022350288927555084, + -0.03156774491071701, + 0.001446175272576511, + 0.026537571102380753, + 0.004540752153843641, + 0.022377479821443558, + 0.02523244358599186, + -0.028875920921564102, + 0.0028124793898314238, + -0.021956032142043114, + 0.009604915045201778, + -0.012208369560539722, + 0.005308873485773802, + -0.003745440859347582, + -0.0014546720776706934, + -0.0037556372117251158, + -0.028848731890320778, + -0.015376020222902298, + 0.02016148343682289, + -0.0011513321660459042, + 0.00016388428048230708, + 0.0023927318397909403, + 0.02065090648829937, + 0.006800932344049215, + 0.0009482558816671371, + 0.0006929235532879829, + 0.0006712563917972147, + -0.014261225238442421, + 0.005587572231888771, + 0.0035007295664399862, + -0.029338153079152107, + 0.015960607677698135, + 0.0032441227231174707, + -0.002064750762656331, + -0.0078171631321311, + 0.017632801085710526, + -0.008041481487452984, + -0.02126268483698368, + -0.02980038709938526, + 0.012181179597973824, + 0.01182091049849987, + 0.023220373317599297, + -0.041655283421278, + -0.0078171631321311, + 0.023872938007116318, + 0.018815571442246437, + -0.017551230266690254, + 0.0008870781166478992, + 0.008558094501495361, + -0.0035653063096106052, + -0.008796008303761482, + -0.009210657328367233, + -0.6247205138206482, + 0.013092049397528172, + 0.0053802477195858955, + -0.007252967916429043, + 0.019087472930550575, + 0.027842696756124496, + 0.029474103823304176, + 0.007810365874320269, + 0.0013765004696324468, + 0.040622059255838394, + -0.006766944658011198, + -0.0007761933375149965, + 0.00016802652680780739, + 0.0035585088189691305, + -0.0011122464202344418, + -0.030670469626784325, + 0.000887927773874253, + -0.024892566725611687, + 0.02338351495563984, + 0.022119173780083656, + -0.006399877835065126, + 0.021371444687247276, + 0.004537353292107582, + 0.02183367684483528, + 0.011528616771101952, + 0.015199285000562668, + 0.0020936401560902596, + -0.039915114641189575, + 0.014084489084780216, + -0.0019288001349195838, + -0.02090921252965927, + 0.028631210327148438, + -0.01831255480647087, + 0.006060000974684954, + 0.05508720874786377, + 0.009231050498783588, + -0.013282380066812038, + 0.018951522186398506, + 0.016314079985022545, + -0.0037114531733095646, + -0.020759666338562965, + -0.008048279210925102, + 0.008558094501495361, + 0.006749950814992189, + 0.003592496272176504, + -0.009700080379843712, + 0.031241463497281075, + -0.014886598102748394, + -0.00922425277531147, + -0.010427416302263737, + 0.012942503206431866, + 0.0021480205468833447, + -0.004727684427052736, + -0.007721997797489166, + 0.028114598244428635, + -0.0021446216851472855, + 0.026265669614076614, + -0.01801346428692341, + 0.004561144858598709, + 0.00808226689696312, + -0.006542625837028027, + 0.01651800610125065, + 0.006134774070233107, + -0.03477618098258972, + -0.008388156071305275, + 0.04285164922475815, + 0.0004254831001162529, + -0.025436369702219963, + 0.011678162030875683, + -0.03847403824329376, + -0.021629750728607178, + 0.012731780298054218, + -0.02165694162249565, + -0.017156973481178284, + 0.01963127590715885, + 0.016259700059890747, + 0.014478745870292187, + -0.014587506651878357, + -0.013663042336702347, + 0.016042178496718407, + -0.003602692624554038, + -0.014886598102748394, + -0.026959016919136047, + 0.00024619814939796925, + 0.014220439828932285, + -0.02721732296049595, + -0.00674655195325613, + -0.003273012349382043, + 0.0008254754357039928, + 0.02104516327381134, + 0.013323165476322174, + 0.023397110402584076, + -0.012582234106957912, + -0.02443033456802368, + 0.0004673304210882634, + 0.024892566725611687, + -0.006824723444879055, + 0.04086676985025406, + 0.00869404524564743, + -0.06743153184652328, + -0.026469595730304718, + 0.010699317790567875, + 0.020107103511691093, + -0.0062197428196668625, + 0.0254499651491642, + 0.008157039992511272, + -0.012031634338200092, + 0.0053496588952839375, + 0.027951456606388092, + -0.01417965441942215, + -0.006491644307971001, + -0.0007128912839107215, + 0.010597354732453823, + -0.008313382975757122, + 0.008381358347833157, + -0.029202202335000038, + 0.008680449798703194, + -0.012765767984092236, + -0.007762783206999302, + 0.011440248228609562, + 0.003369877114892006, + -0.0012363013811409473, + 0.009271835908293724, + -0.014614696614444256, + 0.004340224899351597, + 0.014913788065314293, + 0.017659991979599, + 0.004717488307505846, + -0.030371379107236862, + -0.013962133787572384, + -0.007606439758092165, + 0.010325453244149685, + 0.031241463497281075, + -0.011188739910721779, + 0.01941375434398651, + 0.0025439767632633448, + 0.022391075268387794, + -0.0049995859153568745, + -0.015348830260336399, + -0.024076862260699272, + -0.00364347780123353, + -0.016232509166002274, + 0.014940978027880192, + -0.032519400119781494, + -0.014655482023954391, + -0.014465151354670525, + -0.004935009405016899, + 0.017374495044350624, + 0.00585607485845685, + 4.484778764890507e-05, + -0.02413124404847622, + -0.017333710566163063, + -0.013234797865152359, + 0.007837556302547455, + -0.007728795520961285, + 0.007334538269788027, + 0.009686484932899475, + -0.015647921711206436, + -0.017333710566163063, + -0.026605544611811638, + 0.00714420760050416, + 0.024403145536780357, + -0.0392625518143177, + -0.007096624933183193, + -0.008490119129419327, + 0.0008394953911192715, + 0.006066798698157072, + 0.014193249866366386, + -0.016708336770534515, + -0.031023941934108734, + 0.0018829167820513248, + -0.016721932217478752, + 0.00906790979206562, + 0.009047516621649265, + -0.022662976756691933, + -0.01091683842241764, + -0.028631210327148438, + 0.008714437484741211, + -0.027543604373931885, + -0.0006975968717597425, + 0.011311095207929611, + -0.0026595350354909897, + -0.024403145536780357, + -0.007151004858314991, + 0.02157537080347538, + 0.028196169063448906, + 0.014084489084780216, + -0.0022312903311103582, + -0.019400160759687424, + 0.011012003757059574, + 0.030099477618932724, + 0.02857683040201664, + -0.01616453379392624, + 0.012996884062886238, + 0.0028481665067374706, + 0.0010204797144979239, + 0.0033460857812315226, + 0.022336695343255997, + -0.015348830260336399, + 0.02104516327381134, + 0.031594935804605484, + 0.018380530178546906, + 0.02592579275369644, + 0.004629120230674744, + 0.02708137221634388, + -0.026143312454223633, + 0.013622256927192211, + -0.0014827119885012507, + 0.025993768125772476, + 0.006345497444272041, + 0.020446980372071266, + 0.007613237481564283, + -0.03725048154592514, + -0.00819102767854929, + 0.007341335993260145, + 0.04094834253191948, + -0.019875988364219666, + -0.005995424464344978, + 0.015797467902302742, + 0.016708336770534515, + 0.0035007295664399862, + 0.02021586336195469, + 0.014098084531724453, + -0.0007651473279111087, + -0.00013510097051039338, + 0.0076744151301681995, + 0.006634392775595188, + 0.01277256477624178, + 0.008259003050625324, + -0.023315539583563805, + -0.019033093005418777, + 0.016789907589554787, + -0.00847652368247509, + 0.012956098653376102, + 0.032029978930950165, + 0.006144970189779997, + 0.02893030270934105, + 0.0031948406249284744, + 0.034096427261829376, + 0.011236323043704033, + 0.016082962974905968, + 0.012310332618653774, + -0.0006708315922878683, + -0.0038779927417635918, + 0.03901784121990204, + -0.007252967916429043, + 0.030316999182105064, + 0.035999737679958344, + 0.005720124114304781, + 0.0069742691703140736, + -0.007633629720658064, + -0.0015753284096717834, + 0.01299008633941412, + 0.00132891780231148, + 0.014669076539576054, + -0.01964487135410309, + 0.023084422573447227, + 0.007341335993260145, + 0.04478215053677559, + 0.02716294303536415, + -0.004010544624179602, + 0.008021089248359203, + -0.008517309091985226, + 0.00018417066894471645, + 0.004163489211350679, + -0.0009508049697615206, + 0.0018812173511832952, + -0.008116254583001137, + 0.0014317304594442248, + 0.0011453843908384442, + 0.01628688909113407, + -0.018203794956207275, + -0.01695304736495018, + -0.002064750762656331, + -0.011630579829216003, + -0.005679339170455933, + -0.0020562538411468267, + 0.0069198887795209885, + 0.01105278916656971, + -0.01283374335616827, + 0.0031880431342869997, + -0.023179588839411736, + -0.007015054579824209, + 0.020990783348679543, + -0.012181179597973824, + -0.007232575677335262, + -0.0015855246456339955, + -0.004945205524563789, + -0.010529379360377789, + -0.0012108106166124344, + 0.0009253142052330077, + -0.008755222894251347, + -0.0038542014081031084, + -0.007586047053337097, + -0.004459181800484657, + -0.023872938007116318, + 0.01567511260509491, + -0.007572452072054148, + -0.0035755024291574955, + 0.015240069478750229, + 0.003891587955877185, + 0.007667617406696081, + -0.0021174317225813866, + -0.02558591589331627, + 0.04619603604078293, + 0.008728032931685448, + -0.0059682345017790794, + -0.014057299122214317, + -0.005805093329399824, + -0.02267657034099102, + -0.013635851442813873, + -0.01819019950926304, + -0.012378307990729809, + 0.02540917880833149, + -0.01950892060995102, + 0.010685722343623638, + 0.003891587955877185, + -0.010468201711773872, + 0.05791498348116875, + 0.007042244542390108, + -0.003993550781160593, + -0.02619769424200058, + -0.01752404123544693, + 0.009937994182109833, + 0.012697792612016201, + 0.012276344932615757, + -0.0023876335471868515, + 0.014084489084780216, + -0.010053551755845547, + -0.016531601548194885, + -0.0005896860384382308, + -0.03183964639902115, + 0.003657073015347123, + -0.016191724687814713, + -0.017823131754994392, + 0.0032611165661364794, + 0.021208304911851883, + -0.00780356815084815, + 0.02540917880833149, + 0.016450030729174614, + 0.008469726890325546, + -0.020460575819015503, + -0.013418330810964108, + 0.003956164233386517, + -0.007919126190245152, + -0.008014291524887085, + -0.009135885164141655, + 0.0479905866086483, + 0.02356025017797947, + 0.014166059903800488, + 0.026483189314603806, + 0.019318589940667152, + 0.022268719971179962, + -0.014016513712704182, + -0.011460641399025917, + 0.007416109088808298, + -0.0030469943303614855, + 0.04899661988019943, + -0.01393494289368391, + 0.00494180666282773, + 0.012623019516468048, + -0.014560316689312458, + 0.022907687351107597, + 0.00677034305408597, + 0.004992788191884756, + 0.012038431130349636, + 0.013445520773530006, + -0.017551230266690254, + 0.012439485639333725, + -0.02865840122103691, + 0.011501426808536053, + 0.004489770624786615, + -0.005019978154450655, + -0.01468267198652029, + -0.003152356017380953, + -0.012038431130349636, + -0.022336695343255997, + -0.00933301355689764, + -0.009523344226181507, + -0.01375820767134428, + -0.0028447676450014114, + -0.009557331912219524, + -0.004683500621467829, + -0.007225777953863144, + -0.0515253022313118, + -0.014220439828932285, + 0.015416805632412434, + -0.01699383370578289, + -0.012052026577293873, + -0.0005586722982116044, + -0.00885038822889328, + 0.014737051911652088, + -0.022309504449367523, + -0.00816383771598339, + 0.01634127087891102, + -0.012072418816387653, + -0.021629750728607178, + -0.014369985088706017, + 0.005587572231888771, + 0.012684197165071964, + 0.021670537069439888, + 0.004350421484559774, + -0.0026595350354909897, + -0.004714089445769787, + -0.02474302053451538, + -0.02434876374900341, + -0.010665330104529858, + -0.00429264223203063, + -0.013887360692024231, + 0.01906028389930725, + -0.03205716609954834, + -0.016014989465475082, + 0.000505141681060195, + 0.03270972892642021, + -0.009931196458637714, + -0.0025303817819803953, + 0.013506698422133923, + 0.00740931136533618, + -0.0049248128198087215, + -0.00019914648146368563, + -0.005934246815741062, + 0.014873002655804157, + 0.017374495044350624, + -0.03020823746919632, + 0.023723391816020012, + -0.0043062372133135796, + -0.010407023131847382, + -0.013656244613230228, + 0.014356390573084354, + -0.010189502499997616, + -0.024104053154587746, + -0.007327741011977196, + -0.001811542664654553, + -0.00033541579614393413, + 0.01457391120493412, + -0.02373698726296425, + 0.017510445788502693, + -0.004102311562746763, + 0.006681975442916155, + 0.013948538340628147, + 0.0038847902324050665, + 0.012704589404165745, + 0.014138869009912014, + 0.005179720465093851, + 0.009944790974259377, + -0.024770211428403854, + 0.03507527336478233, + 0.016300484538078308, + -0.0032968036830425262, + 0.01972644217312336, + -0.013656244613230228, + 0.002550774486735463, + -0.03262815997004509, + 0.011324690654873848, + -0.014125274494290352, + 0.012935706414282322, + 0.04271569848060608, + -0.012133597396314144, + -0.016898667439818382, + -0.017156973481178284, + 0.02179289236664772, + 0.02417202852666378, + -0.012561841867864132, + 0.006715963128954172, + -0.020093508064746857, + 0.005091352388262749, + -0.011113966815173626, + 0.012262750416994095, + 0.014166059903800488, + -0.024810995906591415, + -0.03227468952536583, + 0.016123749315738678, + 0.0003390269703231752, + 0.005607964936643839, + -0.02901187166571617, + -0.015008953399956226, + -0.010447808541357517, + -0.008755222894251347, + -0.016436435282230377, + -0.02761157974600792, + 0.00404113344848156, + -0.006909692659974098, + 0.0026102527044713497, + 0.031051132827997208, + 0.03336229547858238, + 0.01756482571363449, + 0.024797402322292328, + 0.017469661310315132, + -0.009842827916145325, + 0.008027886971831322, + 0.0070490422658622265, + 0.010590557008981705, + -0.020637311041355133, + 0.026619140058755875, + 0.00662759505212307, + 0.01366983912885189, + 0.011460641399025917, + 0.0040377345867455006, + 0.0021225297823548317, + 0.029175013303756714, + -0.026102527976036072, + -0.018638836219906807, + -0.015702301636338234, + -0.021548179909586906, + -0.0028957491740584373, + 0.013180417008697987, + 0.008789210580289364, + 0.005910455249249935, + -0.02822335809469223, + 0.014478745870292187, + 0.028685590252280235, + 0.000616451317910105, + -0.010420618578791618, + 0.0029450312722474337, + 0.007225777953863144, + -0.03499370068311691, + 0.01065853238105774, + 0.012262750416994095, + 0.0074297040700912476, + -0.029175013303756714, + -0.011467439122498035, + -0.02391372248530388, + -0.021167518571019173, + 0.017809538170695305, + -0.017986273393034935, + 0.005937645211815834, + -0.001796248136088252, + -0.013187214732170105, + 0.005539989564567804, + 0.01521287951618433, + 0.006076994817703962, + -0.016218913719058037, + 0.01581106334924698, + -0.011107169091701508, + -0.019916772842407227, + -0.01144704595208168, + 0.008292990736663342, + -0.01407089363783598, + 0.03232906758785248, + -0.010672126896679401, + -0.003425956703722477, + 0.025749055668711662, + -0.014193249866366386, + 0.04782744497060776, + 0.01927780546247959, + 0.0029858164489269257, + 0.03164931386709213, + 0.022078387439250946, + 0.03964321315288544, + 0.013975728303194046, + -0.025871412828564644, + -0.009346608072519302, + -0.04015982523560524, + 0.011413058266043663, + -0.0072189802303910255, + 0.013554281555116177, + 0.009414583444595337, + 0.0053802477195858955, + -0.006644588895142078, + 0.012283142656087875, + 0.013302772305905819, + -0.023981697857379913, + -0.01888354681432247, + 0.04573380574584007, + 0.0210859477519989, + 0.002161615528166294, + -0.02188805676996708, + -0.005084555130451918, + -0.016966642811894417, + 0.008306586183607578, + -0.02074607089161873, + -0.012643411755561829, + 0.005849277600646019, + -0.00999237410724163, + 0.002647639252245426, + 0.04451024904847145, + -0.0029297368600964546, + 0.02470223605632782, + -0.001796248136088252, + -0.004506764467805624, + -0.01457391120493412, + -0.023968102410435677, + -0.004802457522600889, + 0.015756681561470032, + 0.007891936227679253, + 0.019576895982027054, + 0.006987864151597023, + -0.006743153091520071, + 0.02016148343682289, + -0.00803468469530344, + -0.010474998503923416, + -0.013289177790284157, + -0.008728032931685448, + 0.02086842805147171, + -0.004642715211957693, + -0.002979018958285451, + -0.014057299122214317, + 0.014505935832858086, + 0.024810995906591415, + 0.0127249825745821, + -0.003303601173684001, + -0.031078321859240532, + -0.00331889558583498, + 0.0003305300488136709, + -0.0010876053711399436, + -0.0007987101562321186, + 0.007735592778772116, + -0.019182639196515083, + -0.013751409947872162, + -0.004952003248035908, + -0.008129850029945374, + 0.006936882622539997, + 0.009876815602183342, + -0.025694675743579865, + -0.0036298828199505806, + 0.014424365945160389, + -0.025694675743579865, + 0.022159958258271217, + -0.011644174344837666, + -0.02003912813961506, + -0.030806420370936394, + 0.01611015386879444, + -0.04151933267712593, + 0.03200278803706169, + 0.04287884011864662, + 0.0050301747396588326, + -0.00703544681891799, + 0.012915313243865967, + -0.015076928772032261, + -0.010746899992227554, + 0.023628225550055504, + -0.029446914792060852, + -0.0070558395236730576, + 0.002836270723491907, + -0.0078171631321311, + 0.0010561667149886489, + -0.02112673409283161, + -0.007069434504956007, + 0.001355258165858686, + 0.0088299959897995, + 0.00792592391371727, + -0.0088299959897995, + -0.017972677946090698, + 0.013561079278588295, + 0.0005739667103625834, + 0.010162312537431717, + 0.016096558421850204, + -0.022962067276239395, + 0.006168761290609837, + -0.0010170809691771865, + 0.004595132544636726, + 0.002968822605907917, + -0.028631210327148438, + -0.022214338183403015, + -0.005553584545850754, + 0.019576895982027054, + -0.016477221623063087, + -0.010515783913433552, + -0.03219311684370041, + -0.013751409947872162, + -0.02738046459853649, + 0.01050218939781189, + -0.007864746265113354, + -0.00017854146426543593, + 0.005835682153701782, + 0.016572386026382446, + -0.01664036139845848, + 0.019930368289351463, + -0.011596592143177986, + -0.017333710566163063, + -0.005016579758375883, + -0.0002997287374455482, + -0.0312686525285244, + -0.012677399441599846, + -0.014873002655804157, + 0.03967040404677391, + 0.03948007524013519, + -0.050220176577568054, + -0.0032611165661364794, + -0.014315605163574219, + -0.03972478583455086, + -0.01352029386907816, + -0.004197476897388697, + -0.01611015386879444, + -0.016042178496718407, + 0.02245905064046383, + -0.010196300223469734, + 0.02395450696349144, + 0.005859473720192909, + 0.03007228672504425, + -0.02086842805147171, + -0.009713674895465374, + -0.01632767543196678, + 0.001618662616237998, + 0.024403145536780357, + -0.014261225238442421, + -0.034803371876478195, + -0.016830692067742348, + 0.0025201854296028614, + -0.002900847466662526, + 0.020365409553050995, + 0.01415246445685625, + -0.001319571165367961, + -0.021113138645887375, + 0.018462100997567177, + 0.02188805676996708, + 0.02143942005932331, + 0.0010374735575169325, + 0.01761920563876629, + -0.038419660180807114, + -0.011440248228609562, + 0.014437960460782051, + 0.007654022425413132, + -0.026442404836416245, + -0.01067892462015152, + -0.00847652368247509, + -0.00816383771598339, + -0.010610949248075485, + 0.02096359245479107, + -0.023193184286355972, + -0.01585184782743454, + -0.02523244358599186, + 0.03140460327267647, + 0.023655416443943977, + -0.010420618578791618, + 0.025110088288784027, + 0.008503714576363564, + -0.010774089954793453, + -0.013771802186965942, + 0.006087190937250853, + -0.02655116468667984, + -0.0028294732328504324, + 0.02320677973330021, + -0.016585981473326683, + 0.04007825627923012, + -0.020542146638035774, + 0.01606936939060688, + 0.0037114531733095646, + 0.0225406214594841, + -0.013744612224400043, + -0.017714371904730797, + -0.002127627842128277, + 0.030045097693800926, + 0.023369919508695602, + -0.00035134749487042427, + 0.020188674330711365, + 0.006630993913859129, + -0.008863983675837517, + -0.012344320304691792, + -0.016830692067742348, + -0.007205385249108076, + -0.033090393990278244, + 0.010012766346335411, + 0.005934246815741062, + -0.012820147909224033, + 0.008598879911005497, + 0.004476175643503666, + -0.004098912701010704, + -0.022730952128767967, + 0.011018801480531693, + 0.17869356274604797, + -0.012629817239940166, + 0.012758970260620117, + 0.00740931136533618, + -0.0029654239770025015, + -0.00856489222496748, + 0.0317852646112442, + 0.012419093400239944, + -0.011147954501211643, + 0.029256584122776985, + -0.01888354681432247, + -7.4746312748175114e-06, + 0.017156973481178284, + -0.0009397589601576328, + 0.019250614568591118, + -0.008184229955077171, + -0.0101283248513937, + -0.014764242805540562, + 0.01571589708328247, + 0.03377014398574829, + 0.023220373317599297, + -0.029474103823304176, + 0.005822087172418833, + -0.017904702574014664, + 0.046739839017391205, + 0.0035007295664399862, + 0.0006899496074765921, + -0.00821141991764307, + 0.02043338492512703, + 0.009550534188747406, + -0.0024929954670369625, + 0.015376020222902298, + 0.027230918407440186, + -0.017415279522538185, + -0.005492406897246838, + 0.016898667439818382, + 0.012697792612016201, + -8.157039701472968e-05, + 0.0434226430952549, + 0.03175807744264603, + 0.014302009716629982, + -0.012092811986804008, + 0.025110088288784027, + -0.01655879057943821, + -0.027978647500276566, + 0.005951240658760071, + -0.001770757487975061, + 0.00997198186814785, + -0.0052748857997357845, + -0.004204274155199528, + -0.00964569952338934, + -0.01708899810910225, + 0.015416805632412434, + 0.0312686525285244, + -0.012385105714201927, + -0.017143379896879196, + 0.01664036139845848, + -0.016749121248722076, + 0.01761920563876629, + 0.006280920933932066, + -0.03928974270820618, + 0.010672126896679401, + -0.010964421555399895, + 0.01120913214981556, + -0.027244513854384422, + -0.006151767447590828, + -0.03390609472990036, + 0.01986239291727543, + 0.0011028997832909226, + -0.019209830090403557, + -0.011780125088989735, + -0.031513363122940063, + -0.015240069478750229, + 0.010005968622863293, + -0.024022482335567474, + -0.05024736747145653, + 0.011453843675553799, + -0.0026051546446979046, + 0.03077923133969307, + 0.022472646087408066, + -0.00429264223203063, + 0.010332250967621803, + 0.007382121402770281, + -0.008367763832211494, + -0.013391140848398209, + -0.0468485988676548, + 0.03404204547405243, + -0.010196300223469734, + -0.013397938571870327, + -0.035999737679958344, + -0.013608661480247974, + 0.008197825402021408, + 0.009924398735165596, + -0.023533061146736145, + 0.011943265795707703, + 0.015335234813392162, + 0.015158499591052532, + 0.019835202023386955, + -0.026469595730304718, + 0.009550534188747406, + -0.022771736606955528, + 0.04529876261949539, + 0.02196962758898735, + -0.020446980372071266, + -0.0022771735675632954, + 0.003697858192026615, + -0.009795245714485645, + 0.026496784761548042, + 0.006855312269181013, + 0.0001135400525527075, + -0.011304298415780067, + -0.02729889377951622, + 0.003517723409458995, + -0.004615525249391794, + 0.01963127590715885, + 0.00938059575855732, + 0.007518071681261063, + -0.03890908136963844, + -0.007470489013940096, + -0.008925161324441433, + -0.024579880759119987, + 0.0003420008870307356, + -0.015783872455358505, + 0.01738809049129486, + 0.008891173638403416, + -0.035591885447502136, + -0.05223224684596062, + 0.01263661403208971, + -0.02271735668182373, + 0.00280228303745389, + 0.013533889316022396, + -0.036516349762678146, + -0.009557331912219524, + 0.02592579275369644, + 0.020147887989878654, + 0.023043638095259666, + -0.003820213722065091, + -0.035319983959198, + -0.0028090807609260082, + 0.013798993080854416, + 0.022024007514119148, + -0.01470986194908619, + -0.0002247434458695352, + -0.0199439637362957, + 0.013547483831644058, + 0.007565654814243317, + 0.00428244611248374, + -0.010107931680977345, + -0.013078453950583935, + -0.014125274494290352, + 0.004442187957465649, + -0.0153216402977705, + -0.0013561078812927008, + -0.009591319598257542, + 0.023546654731035233, + 0.00017153150110971183, + -0.008374560624361038, + -0.042960409075021744, + 0.013017276301980019, + 0.005927449092268944, + 0.0008594631217420101, + -0.00247770082205534, + 0.002511688508093357, + -0.006352294702082872, + -0.014437960460782051, + 0.0027937861159443855, + -0.17282049357891083, + 0.0035483124665915966, + 0.028332119807600975, + -0.03931693360209465, + 0.01468267198652029, + -0.008408548310399055, + -0.006668379995971918, + -0.0037148520350456238, + -0.026931827887892723, + -0.005862872581928968, + 0.03741362318396568, + 0.02069169096648693, + 0.0011326390085741878, + -0.0010638139210641384, + -0.0034157605841755867, + 0.0026527373120188713, + -0.036434777081012726, + 0.016096558421850204, + 0.023872938007116318, + 0.032818492501974106, + -0.004771868232637644, + -0.02281252108514309, + 0.025463560596108437, + 0.013581471517682076, + 0.018462100997567177, + -0.015403210185468197, + -0.0005930847837589681, + 0.027842696756124496, + 0.0013000282924622297, + -0.02267657034099102, + 0.009081504307687283, + -0.0021191309206187725, + 0.021956032142043114, + -0.015240069478750229, + 0.005767707247287035, + -0.022567810490727425, + 0.01770077645778656, + 0.0013280680868774652, + -0.025966577231884003, + 0.02443033456802368, + 0.022703761234879494, + 0.0004280321882106364, + -0.016504410654306412, + -0.001872720429673791, + -0.020419789478182793, + 0.0032951042521744967, + 0.018339745700359344, + -0.011127562262117863, + -0.02356025017797947, + -0.0036706679966300726, + -0.009924398735165596, + -0.008632867597043514, + 0.0018149414099752903, + 0.020664501935243607, + 0.014641886577010155, + 0.03208435699343681, + 0.0037182506639510393, + 0.015294450335204601, + 0.0001882067008409649, + 0.0009958386654034257, + -0.0025286823511123657, + -0.006664981599897146, + 0.024797402322292328, + 0.020501360297203064, + -0.03192121535539627, + -0.03499370068311691, + 0.017768751829862595, + 0.006029412150382996, + -0.00043971542618237436, + -0.006695570424199104, + -0.00703544681891799, + -0.005835682153701782, + 0.03958883509039879, + -0.01144704595208168, + 0.003952765837311745, + 0.01703461818397045, + -0.009666092693805695, + 0.009074706584215164, + -0.01642283983528614, + -0.004465979523956776, + -0.01963127590715885, + 0.06781218945980072, + -0.02073247730731964, + -0.030616089701652527, + -0.0010425717337056994, + 0.006709165405482054, + 0.015308044850826263, + 0.004177084192633629, + 0.019087472930550575, + 0.008571689948439598, + -0.011188739910721779, + -0.03754957392811775, + -0.01721135526895523, + -0.026782281696796417, + 0.02346508577466011, + -0.008408548310399055, + 0.015253664925694466, + -0.009577724151313305, + -0.006525631994009018, + -0.03499370068311691, + 0.011324690654873848, + -0.007008256856352091, + -0.02566748671233654, + 0.009666092693805695, + -0.0014444758417084813, + 0.010508986189961433, + -0.022255124524235725, + 0.012126799672842026, + 0.017592016607522964, + -0.005053965840488672, + -0.003996949642896652, + -0.010203097946941853, + 0.009761258028447628, + -0.008993136696517467, + 0.0012057124404236674, + 0.0202022697776556, + 0.015471185557544231, + -0.010169110260903835, + 0.01389415841549635, + -0.010175907053053379, + 0.03510246053338051, + -0.008544499054551125, + -0.01787751354277134, + 0.02196962758898735, + 0.030153857544064522, + -0.02245905064046383, + -0.09821075946092606, + -0.007110219914466143, + 0.023628225550055504, + 0.023900127038359642, + 0.011263513006269932, + 0.0037726310547441244, + -0.0007689709309488535, + 0.030643280595541, + -0.01858445629477501, + 0.019468136131763458, + -0.03986073657870293, + -0.040350157767534256, + 0.004302838817238808, + -0.013731017708778381, + -0.0013629054883494973, + -0.01954970508813858, + -0.02114032953977585, + 0.0007294602692127228, + 0.008089064620435238, + 0.02598017267882824, + 0.003735244506970048, + -0.02293487824499607, + -0.00020116449741180986, + -0.006376086268573999, + -0.0007880890043452382, + -0.0022312903311103582, + -0.03382452577352524, + 0.010910040698945522, + 0.019971152767539024, + 0.015280854888260365, + 0.009686484932899475, + -0.015158499591052532, + 0.02281252108514309, + -0.018734002485871315, + 0.0073005505837500095, + 0.0007528268033638597, + -0.002542277565225959, + -0.019998343661427498, + 0.031241463497281075, + -0.02540917880833149, + -0.007633629720658064, + 0.0015846749301999807, + 0.028277738019824028, + -0.02438955008983612, + 0.009842827916145325, + -0.01990317739546299, + -0.007688010111451149, + 0.014002918265759945, + 0.0035687049385160208, + -0.021901652216911316, + -0.030752040445804596, + -0.007388918660581112, + -0.005098150111734867, + 0.0199439637362957, + -0.0009652497246861458, + 0.00414989423006773, + 0.0033120980951935053, + -0.024008886888623238, + -0.009013528935611248, + 0.0010374735575169325, + -0.017238544300198555, + 0.019699251279234886, + -0.02201041206717491, + 0.013860170729458332, + 0.011990848928689957, + 0.009047516621649265, + -0.023764176294207573, + -0.016409246250987053, + 0.003911980427801609, + -0.010420618578791618, + -0.030153857544064522, + 0.01655879057943821, + -0.005213708151131868, + 0.0021072353702038527, + -0.043041981756687164, + -0.035319983959198, + -0.03262815997004509, + -0.013418330810964108, + 0.011243119835853577, + -0.009591319598257542, + -0.02007991261780262, + -0.00977485254406929, + 0.016626765951514244, + -0.022024007514119148, + 0.03491213172674179, + 0.006015817169100046, + -0.0029705220367759466, + -0.026252074167132378, + 0.00027806160505861044, + -0.03523841127753258, + 0.012038431130349636, + -0.012697792612016201, + 0.013588269241154194, + -0.014247629791498184, + -0.00819102767854929, + 0.002476001624017954, + 0.00829978846013546, + 0.017360899597406387, + 0.0003815115487668663, + -0.005720124114304781, + -0.04576099291443825, + -0.010624544695019722, + -0.04015982523560524, + 0.019005903974175453, + 0.011603389866650105, + -0.010474998503923416, + -0.025300418958067894, + 0.005652149207890034, + 0.017048213630914688, + 0.010604152455925941, + 0.005132137797772884, + -0.008265800774097443, + -0.00661400007084012, + -0.010597354732453823, + 0.007762783206999302, + -0.0035890976432710886, + -0.027067778632044792, + -0.01950892060995102, + -0.0076744151301681995, + -0.009625307284295559, + 0.01386696845293045, + 0.014315605163574219, + -0.0034667421132326126, + 0.0046563101932406425, + 0.019182639196515083, + -0.018720407038927078, + -0.02893030270934105, + -0.007959911599755287, + -0.008796008303761482, + -0.0013773501850664616, + -0.017224948853254318, + -0.017931893467903137, + 0.0031285646837204695, + -0.0013654545182362199, + -0.02249983511865139, + 0.00922425277531147, + -0.009570927359163761, + -0.00030418962705880404, + 0.019386565312743187, + 0.029392534866929054, + 0.02131706476211548, + 0.045543473213911057, + -0.035945355892181396, + -0.015308044850826263, + 0.021956032142043114, + -0.030045097693800926, + 0.0014436261262744665, + 0.005271486937999725, + 0.005417634267359972, + -0.00558077497407794, + 0.0033460857812315226, + -0.023016447201371193, + 0.030697660520672798, + 0.0034276561345905066, + 0.014560316689312458, + -0.01646362617611885, + 0.007028649561107159, + -0.023261159658432007, + -0.00935340579599142, + 0.023804962635040283, + -0.01827177032828331, + -0.03980635479092598, + 0.040921151638031006, + 0.021643346175551414, + 0.017238544300198555, + -0.006087190937250853, + 0.01144704595208168, + -0.015865443274378777, + -0.022486239671707153, + -0.019400160759687424, + 0.018598051741719246, + -0.022255124524235725, + -0.013431926257908344, + -0.016137344762682915, + 0.0056487503461539745, + 0.035020891577005386, + 0.005757510662078857, + -0.004153293091803789, + 0.03322634473443031, + -0.005291879642754793, + -0.0005858623771928251, + 0.044048015028238297, + 0.024158433079719543, + 0.00909509975463152, + -0.028549639508128166, + -0.015865443274378777, + 0.017374495044350624, + -0.003475239034742117, + -0.004904420115053654, + -0.0012770865578204393, + 1.456424615753349e-05, + -0.008551296778023243, + 0.01219477504491806, + 0.022962067276239395, + 0.002074947115033865, + -0.0005561232101172209, + -0.0015413407236337662, + 0.015865443274378777, + -0.005635155364871025, + -0.0158926323056221, + 0.013207606971263885, + 0.03779428452253342, + -0.008095862343907356, + 0.01107318140566349, + 0.0011904180282726884, + -0.03156774491071701, + -0.012317130342125893, + -0.0006695570191368461, + -0.0004906969261355698, + -0.029093442484736443, + -0.0030826814472675323, + 0.009421381168067455, + 0.004479574505239725, + 0.011542211286723614, + 0.014614696614444256, + -0.005043769720941782, + -0.002425020094960928, + 0.03629882633686066, + -0.014166059903800488, + -0.0022720755077898502, + -0.024008886888623238, + 0.007681212853640318, + 0.011766530573368073, + 0.006987864151597023, + 0.001801346312277019, + 0.017687181010842323, + 0.019998343661427498, + 0.004421795252710581, + 0.0017359200865030289, + -0.00559097109362483, + 0.0046801017597317696, + -0.017646396532654762, + 0.01166456751525402, + -0.01708899810910225, + -0.01206562202423811, + -0.013676636852324009, + -0.004720886703580618, + -0.0156343262642622, + 0.02950129471719265, + 0.008612474426627159, + -0.006076994817703962, + 0.11833146214485168, + 0.023804962635040283, + 0.004965598229318857, + -0.024498309940099716, + -0.01730651967227459, + 0.020528551191091537, + 0.00986322108656168, + 0.005767707247287035, + 0.004455782938748598, + -0.07004178315401077, + -0.0006151767447590828, + -0.011814112775027752, + 0.009917601011693478, + -0.04584256559610367, + -0.01389415841549635, + 0.02073247730731964, + -0.01915544830262661, + 0.01646362617611885, + -0.012160787358880043, + 0.027176538482308388, + 0.02611612342298031, + 0.0034684413112699986, + 0.029746005311608315, + 0.03610849753022194, + -0.025395585224032402, + -0.02249983511865139, + 0.007443299051374197, + -0.008619272150099277, + -0.0055943699553608894, + -0.0008148542838171124, + -0.024770211428403854, + 0.0030164055060595274, + -0.07640427350997925, + -0.03415080904960632, + -0.0003288306761533022, + -0.010563367046415806, + -0.0073481337167322636, + 0.0011581297731027007, + 0.018176604062318802, + 0.005981829483062029, + 0.0050573647022247314, + 0.021643346175551414, + -0.027149347588419914, + -0.02879435196518898, + -0.010352643206715584, + -0.017646396532654762, + -0.006029412150382996, + -0.022091982886195183, + -0.029528485611081123 + ], + "metadata": { + "source": "Kreye_Marieke_BA_241_V2.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 17, + "has_images": true, + "image_count": 98, + "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", + "links": [], + "last_modified": "2025-05-05T23:00:23", + "_known_field_names": "frozenset({'is_continuation', 'sent_to', 'header_footer_type', 'email_message_id', 'filename', 'languages', 'detection_class_prob', 'sent_from', 'link_texts', 'cc_recipient', 'subject', 'image_mime_type', 'image_path', 'filetype', 'page_number', 'last_modified', 'signature', 'detection_origin', 'text_as_html', 'attached_to_filename', 'bcc_recipient', 'data_source', 'link_start_indexes', 'category_depth', 'emphasized_text_tags', 'parent_id', 'orig_elements', 'page_name', 'coordinates', 'url', 'link_urls', 'file_directory', 'links', 'table_as_cells', 'emphasized_text_contents', 'key_value_pairs', 'image_base64'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "Kreye_Marieke_BA_241_V2.pdf", + "detection_class_prob": 0.3422867953777313, + "parent_id": "e02392183bc6851689602ad4b9f6039f", + "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", + "id": "ce00eae5-7e07-454f-9e4f-f79ac36f92f4", + "processing_timestamp": "2025-05-05T23:15:46.977945", + "chunk_number": 41, + "total_chunks": 56, + "chunking_strategy": "hybrid", + "word_count": 475 + } +} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000042.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000042.json new file mode 100644 index 0000000000000000000000000000000000000000..d1b76333a98b53ce0a6635fd331fb1489eb2fef4 --- /dev/null +++ b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000042.json @@ -0,0 +1,1570 @@ +{ + "id": "61a115b2-0ff7-441a-f6d9-eb3d00000042", + "content": "Um diesen zeitaufw\u00e4ndigen Prozess zu optimieren, w\u00e4re es hilfreich, wenn neben dem Pflanzabstand zus\u00e4tzlich die maximale Anzahl der neuen B\u00e4ume festgelegt werden k\u00f6nnte. Das Simualtionstool SimStadt ist nach einer kurzen Einf\u00fchrung und dem Vorhandensein aller relevanter Input-Daten intuitiv anwendbar und erfordert keine speziellen Vorkenntnisse. Mit den Output-Daten k\u00f6nnen die Simulationen direkt ausgewertet werden. F\u00fcr die Ermittlung des Heiz- und K\u00fchlbedarfs der Geb\u00e4ude wird in dem Workflow nur die Verschattung ber\u00fccksichtigt. Die Evapotranspiration der B\u00e4ume wirkt aber auch auf den Energiebedarf. Eine verringerte Au\u00dfentemperatur kann, je nach energetischem Zustand des Geb\u00e4udes, zu einer deutlichen Erh\u00f6hung des Heizbedarfs in den Wintermonaten bzw. einer weiteren Reduktion des K\u00fchlbedarfs im Sommer f\u00fchren. Bei der Bewertung der CO2e-Emissionen ist zu beachten, dass die Werte nicht auf den tats\u00e4chlich vorkommenden Heizmitteln des Quartiers beruhen. Eine genaue Bilanzierung der CO2e-Emissionen auf Haushaltsebene w\u00e4re zwar deutlich exaktere Ergebnisse liefern, ist aber auf Grund des erforderlichen Zeitaufwands nicht praktikabel. Dennoch k\u00f6nnen die berechneten Werte f\u00fcr eine erste N\u00e4herung genutzt werden. W\u00fcrde f\u00fcr den K\u00fchlbedarf der Emissionsfaktor von \u00d6kostrom mit 0 g CO2e/kWh angesetzt werden, w\u00fcrden sich folglich die Gesamtemissionen mit einer Erh\u00f6hung des Gr\u00fcnanteils nicht reduzieren, sondern bedingt durch den steigenden Heizbedarf erh\u00f6hen. Ein weiterer Aspekt in der Betrachtung der CO2e-Emissionen ist, dass Pflanzen CO2 f\u00fcr den Prozess der Photosynthese nutzen und somit auch einen Beitrag zu der Reduktion der Emissionen innerhalb des Quartiers leisten. Die Werte der Temperaturabsenkung beruhen auf einer sehr vereinfachten Annahme. So werden au\u00dfer der Evapotranspiration jegliche Einwirkungen auf die Temperatur, wie Winde oder die solare Strahlung bei den Berechnungen au\u00dfenvorgelassen. Zudem variiert die Temperaturabsenkung mit der Definition der H\u00f6he des Volumenk\u00f6rpers. Auf Grundlage der f\u00fcr diese Berechnung geltenden Annahmen ergeben sich teilweise sehr\n53\nKritische W\u00fcrdigung\nhohe Temperaturabsenkungen bis zu 35 Kelvin. Diese hohe Reduktion ist sehr realit\u00e4tsfern und beruht auf der starken Vereinfachung. Die Werte im Jahresdurchschnitt liefern aber dennoch ein sinnvolles Ergebnis, welches mit Werten in der Literatur \u00fcbereinstimmt (vgl. Erell und Zhou 2022; vgl. Feldmann et al. 2023, S. 21; vgl. Kampusch 2018, S. 27). Die in dieser Arbeit durchgef\u00fchrten Simulationen basieren je Fallstudiengebiet auf den gleichen Wetterdaten. Gerade bei der Simulation von Zukunftsszenarien kann dies zu einer Verf\u00e4lschung der Ergebnisse f\u00fchren. Urbane R\u00e4ume sind zunehmend den Einfl\u00fcssen steigender Temperaturen, l\u00e4ngerer Trockenperioden und h\u00e4ufigerer Starkregenereignisse ausgesetzt.", + "embedding": [ + 0.011897491291165352, + -0.0064453016966581345, + -0.0014863588148728013, + -0.020180052146315575, + -0.004872873425483704, + 0.022153034806251526, + -0.021504200994968414, + -0.012235148809850216, + -0.012129217386245728, + -0.02423195168375969, + 0.012764809653162956, + 0.0014333927538245916, + -0.008136903867125511, + 0.023252079263329506, + 0.0024215399753302336, + -0.007355655077844858, + 0.03577854111790657, + -0.002567196497693658, + 0.032600581645965576, + 0.012221908196806908, + 0.00022986422118265182, + 0.02335801161825657, + 0.01005692221224308, + 0.012109355069696903, + -0.00336168659850955, + 0.00936836376786232, + 0.030217111110687256, + -0.022060343995690346, + 0.0017909134039655328, + -0.009421329945325851, + 0.01562497392296791, + -0.013188537210226059, + -0.016022218391299248, + -0.03201795369386673, + -0.015293936245143414, + -0.004442524630576372, + -0.007223240099847317, + -0.008805599994957447, + 0.0239141546189785, + -0.01708154007792473, + 0.013142191804945469, + -0.0026516111101955175, + -0.004853011108934879, + -0.007964764721691608, + 0.017664166167378426, + 0.00612750556319952, + -0.0004208315222058445, + -0.012241769582033157, + -0.020815644413232803, + 0.019716598093509674, + 0.025317754596471786, + 0.028098469600081444, + 0.0013349091168493032, + -0.009010843001306057, + -0.01550580095499754, + 0.0016709122573956847, + -0.02244434878230095, + -0.0037175521720200777, + 0.0011967008467763662, + -0.000909525784663856, + -0.016273807734251022, + -0.006931927055120468, + -0.012447013519704342, + 0.016234083101153374, + -0.03119698166847229, + -0.018524862825870514, + -0.01387709565460682, + -0.004525283817201853, + 0.0022940905764698982, + -0.009540502913296223, + 0.024086294695734978, + 0.03588447347283363, + 0.02207358554005623, + -0.005150944925844669, + 0.0031597537454217672, + -0.0025324374437332153, + 0.010871274396777153, + 0.0015393247595056891, + -0.006683649029582739, + 0.006223506759852171, + 0.013049501925706863, + -0.025370720773935318, + -0.03710269182920456, + 0.04382937774062157, + 0.018114376813173294, + 0.030455458909273148, + -0.013347435742616653, + 0.02061702124774456, + -0.0063195074908435345, + 0.01622084155678749, + 0.03225630149245262, + 0.01828651688992977, + 0.0001424496149411425, + 0.024271676316857338, + -0.005809709895402193, + -0.0017743614735081792, + 0.012076251208782196, + 0.027886606752872467, + 0.012268252670764923, + -0.03358045220375061, + -0.02039191499352455, + 7.789728260831907e-05, + -0.016684293746948242, + -0.007527794688940048, + -0.038003116846084595, + 0.002423195168375969, + 0.01532041933387518, + 0.010957344435155392, + 0.012202045880258083, + -0.018061410635709763, + -0.013797646388411522, + 0.04324674978852272, + -0.023490427061915398, + 0.00038772777770645916, + 0.01672401838004589, + -0.025119131430983543, + 0.03879760578274727, + 0.0008664908818900585, + -0.024178985506296158, + -0.004995357245206833, + 0.024178985506296158, + 0.0005582121084444225, + 0.006984893232584, + -0.007997868582606316, + 0.024496780708432198, + 0.009189603850245476, + 0.010666031390428543, + -0.009500779211521149, + -0.04756348207592964, + -0.03233575075864792, + -0.015439593233168125, + 0.0033567212522029877, + -0.009745746850967407, + 0.030481941998004913, + -0.035487230867147446, + 0.037314556539058685, + -0.02217951789498329, + 0.00676971860229969, + -0.015479317866265774, + -0.03408363088965416, + -0.010626306757330894, + 0.005842813290655613, + -0.029608001932501793, + -0.01777009852230549, + -0.0014267719816416502, + 0.017121264711022377, + 0.013731439597904682, + 0.034057147800922394, + 0.0009401467395946383, + -0.02350366860628128, + -0.008560632355511189, + -0.0094610545784235, + 0.013267986476421356, + -0.0035983785055577755, + 0.005045013036578894, + 0.005134392995387316, + 0.00044731455272994936, + 0.002297400962561369, + -0.02868109568953514, + 0.004290247336030006, + 0.023146148771047592, + -0.003442790824919939, + -0.007461587432771921, + 0.0026615422684699297, + 0.0060679190792143345, + -0.009130016900599003, + 0.0047801826149225235, + -0.004326661117374897, + 0.01537338551133871, + -0.024960234761238098, + -0.009096913039684296, + 0.02102750726044178, + -0.036493584513664246, + 0.025781206786632538, + -0.0015409799525514245, + 0.017200713977217674, + -0.016803467646241188, + 0.02676107920706272, + 0.010242302902042866, + -0.04856983572244644, + -0.026085762307047844, + 0.012903844937682152, + -0.004038658458739519, + 0.02175579033792019, + -0.03789718449115753, + -0.01248673815280199, + 0.016287049278616905, + 0.01490993332117796, + 0.0010237337555736303, + 0.007037858944386244, + 0.0063459905795753, + 0.009533882141113281, + 0.015439593233168125, + -0.0031216845382004976, + -0.6351684331893921, + 0.010321752168238163, + -0.004161142278462648, + -0.014645102433860302, + 0.0006302128313109279, + 0.0268537700176239, + 0.03495756909251213, + 0.006739925127476454, + -0.01970335654914379, + 0.030481941998004913, + 0.0070179966278374195, + -0.012877361848950386, + -0.012294735759496689, + 0.008858566172420979, + -0.0023222286254167557, + -0.030614355579018593, + -0.005299911834299564, + -0.0017677407013252378, + 0.021954413503408432, + 0.010712376795709133, + -0.01635325700044632, + 0.01814085990190506, + -0.014247857965528965, + 0.013572541065514088, + 0.018114376813173294, + 0.0006670407601632178, + 0.006749856285750866, + -0.03376583382487297, + -0.0007452483405359089, + 0.0077992454171180725, + 0.007594002410769463, + 0.0397774763405323, + 0.0020193292293697596, + 0.01599573716521263, + 0.05709736421704292, + 0.017160989344120026, + -0.011864387430250645, + -0.004644457250833511, + 0.015227729454636574, + 0.008064075373113155, + -0.027039149776101112, + -0.00669026980176568, + 0.012903844937682152, + -0.005379360634833574, + 0.003889691550284624, + 0.012063009664416313, + 0.028839994221925735, + -0.03485163673758507, + -0.008481183089315891, + -0.011275140568614006, + 0.014512687921524048, + 0.005448878742754459, + 0.004538525361567736, + -0.0038797606248408556, + 0.013757921755313873, + 0.01640622317790985, + 0.02350366860628128, + -0.01873672753572464, + -0.008434837684035301, + 0.0005230393726378679, + -0.002606920897960663, + 0.0022146415431052446, + 0.0179554782807827, + -0.012698601931333542, + -0.031223464757204056, + 0.042875986546278, + -0.03246816620230675, + -0.027966056019067764, + 0.010884515941143036, + -0.047748859971761703, + 0.0004911770229227841, + 0.012506600469350815, + -0.009878161363303661, + -0.008322284556925297, + 0.005783226806670427, + 0.006931927055120468, + 0.032362233847379684, + -0.018948592245578766, + -0.0006715924828313291, + 0.027039149776101112, + 0.0017578095430508256, + -0.011023551225662231, + -0.013810887932777405, + -0.021014265716075897, + 0.014102200977504253, + -0.022153034806251526, + -0.005945435259491205, + -0.0017561543500050902, + -0.016644569113850594, + 0.023159390315413475, + 0.022391382604837418, + 0.022285450249910355, + -0.010778583586215973, + -0.01528069470077753, + 0.003638103138655424, + 0.027595292776823044, + -0.002909820294007659, + 0.025317754596471786, + 0.0011023551924154162, + -0.03956561163067818, + -0.021874964237213135, + -0.001787603017874062, + 0.01979604735970497, + 0.002744301687926054, + 0.013599024154245853, + 0.01259929034858942, + -0.011347968131303787, + -0.0019829152151942253, + 0.04147239029407501, + -0.003489136230200529, + -0.009977472946047783, + -0.023649325594305992, + -0.00664392439648509, + -0.027648258954286575, + -0.004611353389918804, + -0.02454974688589573, + 0.0369173102080822, + -0.013810887932777405, + 0.007958143949508667, + 0.018074652180075645, + 0.011460521258413792, + -0.013890337198972702, + 0.010182715952396393, + -0.01481724251061678, + -0.007931660860776901, + 0.01165914349257946, + 0.014049234800040722, + -0.01659160479903221, + -0.025688515976071358, + -0.006485026329755783, + 0.011473762802779675, + 0.0010907688410952687, + 0.019001558423042297, + -0.005071495659649372, + 0.028601648285984993, + -0.0015409799525514245, + 0.021318821236491203, + -0.011036792770028114, + -0.0021004334557801485, + -0.01204976812005043, + -0.01502910628914833, + -0.017703890800476074, + 0.007011376321315765, + -0.02707887440919876, + -0.0025374030228704214, + -0.009566986002027988, + -0.004790113773196936, + 0.02015356905758381, + -0.002901544561609626, + 0.011811421252787113, + -0.032362233847379684, + -0.00535949831828475, + 0.0074880700558424, + 0.005938814487308264, + 0.004065141547471285, + 0.0017677407013252378, + 0.002274228259921074, + -0.028892960399389267, + -0.02244434878230095, + -0.02423195168375969, + 0.014353789389133453, + 0.02762177586555481, + -0.027277497574687004, + 0.005998400971293449, + -0.024218710139393806, + -0.007342413533478975, + 0.004723906517028809, + 0.0031034774146974087, + -0.024390850216150284, + -0.03508998453617096, + -0.006637303624302149, + -0.024562988430261612, + 0.008421596139669418, + 0.021424753591418266, + -0.018154101446270943, + -0.021702824160456657, + -0.017213953658938408, + -0.000891318719368428, + -0.016618086025118828, + -0.014261099509894848, + 0.01951797679066658, + -0.011480383574962616, + -0.01988873817026615, + -0.004783493001013994, + 0.022748902440071106, + 0.022576764225959778, + 0.01648567244410515, + 0.007964764721691608, + -0.012910465709865093, + 0.022642970085144043, + 0.01434054784476757, + 0.03485163673758507, + -0.005601156037300825, + 0.013327573426067829, + 0.006696890573948622, + -0.01566469855606556, + 0.011864387430250645, + 0.023013733327388763, + -0.009216086007654667, + 0.018114376813173294, + 0.03742048889398575, + 0.010752100497484207, + 0.030799737200140953, + -0.005511775612831116, + 0.011142725124955177, + -0.03747345507144928, + 0.012996535748243332, + -0.006945168599486351, + 0.021040748804807663, + 0.021239371970295906, + 0.016975607722997665, + -0.00276581896468997, + -0.03601688891649246, + -0.003515619086101651, + -0.0017925684805959463, + 0.046345263719558716, + -0.013228261843323708, + -0.0071239289827644825, + 0.011851145885884762, + -0.009600089862942696, + 0.017836304381489754, + -0.015002623200416565, + 0.02519858069717884, + -0.004306798800826073, + -0.00982519518584013, + 0.03127643093466759, + 0.0022676074877381325, + 0.025158856064081192, + 0.0224046241492033, + -0.008481183089315891, + -0.020127085968852043, + -0.008249456994235516, + -0.011996801942586899, + 0.008838703855872154, + 0.02007411979138851, + 0.021318821236491203, + 0.02899889275431633, + -0.009911265224218369, + 0.02825736813247204, + 0.010427683591842651, + 0.006839236710220575, + 0.017942236736416817, + 0.018471896648406982, + -0.025900380685925484, + 0.023715533316135406, + 0.007759521249681711, + 0.02767474204301834, + 0.021186405792832375, + -0.003201133571565151, + 0.0021865032613277435, + -0.00852090772241354, + 0.009818574413657188, + 0.0027509224601089954, + 0.004061831161379814, + 0.018842659890651703, + -0.008170007728040218, + 0.014367030933499336, + 0.0005627638893201947, + 0.03858574107289314, + 0.02881351113319397, + 0.0014499446842819452, + 0.006362542510032654, + 0.0073622758500278, + -0.004313419573009014, + 0.005726950243115425, + -0.011328105814754963, + -0.012870741076767445, + -0.030985118821263313, + 0.00025034716236405075, + -0.0017429129220545292, + 0.02117316424846649, + -0.004733837675303221, + -0.02505292370915413, + 0.006587647832930088, + 0.0011230449890717864, + 0.0013191847829148173, + -0.0013332539238035679, + 0.0004911770229227841, + 0.012605911120772362, + 0.007150412071496248, + 0.003032304346561432, + -0.01957094296813011, + -0.016512155532836914, + 0.021821998059749603, + -0.013943303376436234, + -0.0036182408221066, + 0.006905443966388702, + 0.006667097099125385, + 0.000243105721892789, + 0.009222706779837608, + -0.007137170527130365, + -0.01717423088848591, + -0.018246792256832123, + 0.00010494925663806498, + 0.007726417388767004, + -0.015611732378602028, + 0.009156499989330769, + -0.021451234817504883, + 0.012274873442947865, + 0.017518509179353714, + 0.000758076086640358, + 0.006269851699471474, + -0.009474296122789383, + -0.02923724055290222, + 0.02579444833099842, + 0.022020621225237846, + -0.004091624636203051, + -0.011215553618967533, + -0.0005768329720012844, + -0.009216086007654667, + -0.022020621225237846, + -0.026655146852135658, + -0.006243369076400995, + 0.011493625119328499, + -0.027330463752150536, + 0.008170007728040218, + 0.012056388892233372, + -0.0012058044085279107, + 0.035619642585515976, + -0.006359232123941183, + -0.010096646845340729, + 0.0007783521432429552, + -0.016181116923689842, + 0.009077050723135471, + 0.01184452511370182, + 0.007335792761296034, + -0.0003362100396770984, + 0.024576229974627495, + -0.0006608337862417102, + -0.0045285942032933235, + -0.01005692221224308, + -0.022550281137228012, + 0.015929529443383217, + 0.005097978748381138, + -0.00433990266174078, + -0.008262698538601398, + 0.011076517403125763, + -0.024986717849969864, + 0.0034725842997431755, + 0.002673128619790077, + 0.0029545105062425137, + -0.028734061866998672, + 0.000227381446165964, + -0.004783493001013994, + -0.016551880165934563, + -0.012109355069696903, + -0.0014590481296181679, + 0.041260525584220886, + 0.021795514971017838, + 0.01974308118224144, + 0.024615954607725143, + 0.023980362340807915, + 0.013956544920802116, + -0.013162054121494293, + -0.015386627055704594, + 0.014671585522592068, + 0.007004755549132824, + 0.027224531397223473, + -0.01868376135826111, + 0.0017230506055057049, + 0.00916312076151371, + -0.019412044435739517, + 0.022100068628787994, + 0.01282439660280943, + 0.014658343978226185, + 0.024801336228847504, + 0.01383737102150917, + 0.006693580187857151, + 0.007594002410769463, + -0.020034395158290863, + -0.0024033328518271446, + 0.02607252076268196, + -0.001944845775142312, + -0.027966056019067764, + 0.018392449244856834, + -0.010288648307323456, + -0.02372877486050129, + 0.003176305675879121, + -0.010136370547115803, + -0.007991247810423374, + 0.006465164013206959, + -0.02294752560555935, + 0.0008532493957318366, + -0.010944102890789509, + -0.04181666672229767, + -0.024536505341529846, + 0.007441725116223097, + 0.005478672217577696, + -0.01901479810476303, + 0.002611886477097869, + 0.007428483571857214, + 0.00468418188393116, + -0.007051100488752127, + -0.016829950734972954, + 0.019028039649128914, + -0.016273807734251022, + -0.02322559803724289, + -0.0009823540458455682, + 0.012890603393316269, + 0.004747079219669104, + 0.011467142030596733, + -0.006759787444025278, + -0.01635325700044632, + -0.01859107054769993, + -0.01955770142376423, + -0.023463943973183632, + 0.0029313378036022186, + -0.010182715952396393, + -0.022523798048496246, + 0.022245725616812706, + -0.019504735246300697, + -0.013519574888050556, + 0.001008837018162012, + 0.009262431412935257, + -0.010738858953118324, + -0.006054677534848452, + 0.01896183378994465, + -0.007766142021864653, + -0.009672918356955051, + 0.004508731886744499, + 0.008461320772767067, + 0.0063658528961241245, + 0.01818058453500271, + -0.045285940170288086, + 0.02849571593105793, + 0.0013531161239370704, + 0.010129749774932861, + -0.0010667686583474278, + 0.013479850254952908, + -0.011394313536584377, + -0.037685319781303406, + 0.0006422129226848483, + -0.0011776662431657314, + -0.012764809653162956, + 0.02331828698515892, + -0.022735660895705223, + 0.013433504849672318, + -0.019253145903348923, + 0.006925306282937527, + 0.004290247336030006, + 0.005534948315471411, + 0.00991788599640131, + 0.028760544955730438, + 0.010824928991496563, + -0.0073755173943936825, + -0.030614355579018593, + 0.047484032809734344, + 0.006349300965666771, + 0.012718464247882366, + 0.0034328598994761705, + -0.008309043012559414, + 0.011672385036945343, + -0.020272741094231606, + 0.012089492753148079, + -0.0026913355104625225, + 0.008414975367486477, + 0.03074677102267742, + -0.01214245893061161, + -0.032891895622015, + -0.025622310116887093, + 0.006087781395763159, + 0.022987250238656998, + -0.012102734297513962, + 0.005803089123219252, + -0.027039149776101112, + 0.012268252670764923, + -0.010003956034779549, + 0.013572541065514088, + 0.009633193723857403, + -0.02033894881606102, + -0.009255810640752316, + 0.008434837684035301, + 0.01461862027645111, + 0.00766020966693759, + -0.008851945400238037, + -0.022576764225959778, + -0.0299522802233696, + 0.002865130314603448, + -0.02216627635061741, + -0.039009470492601395, + 0.005819640588015318, + -0.00797138549387455, + 0.004392868839204311, + 0.011275140568614006, + 0.03124994784593582, + -0.0014251167885959148, + 0.027886606752872467, + -0.0006616613827645779, + -0.00842821691185236, + 0.005392602179199457, + 0.005346257239580154, + 0.011520108208060265, + -0.028601648285984993, + 0.01786278747022152, + 0.007858832366764545, + 0.004872873425483704, + 0.013109088875353336, + 0.0014863588148728013, + 0.008262698538601398, + 0.033050794154405594, + -0.017280161380767822, + -0.023662567138671875, + -0.01598249562084675, + -0.01923990435898304, + -0.005276739131659269, + 0.01920017972588539, + 0.0036943794693797827, + 0.011354588903486729, + -0.005660742521286011, + 0.005346257239580154, + 0.025556102395057678, + 0.011195691302418709, + 0.004922528751194477, + 0.0009815264493227005, + 0.003830104833468795, + -0.03657303377985954, + 0.021517442539334297, + 1.7638096323935315e-05, + -0.001228976994752884, + -0.008673184551298618, + -0.021133439615368843, + -0.020166810601949692, + -0.02780715748667717, + 0.02868109568953514, + -0.019584184512495995, + -0.007872073911130428, + 0.0007295240648090839, + 0.007613864727318287, + 0.003945968113839626, + 0.004985426086932421, + 0.013691714964807034, + -0.011281761340796947, + 0.01882941834628582, + -0.007037858944386244, + -0.011712109670042992, + -0.002007742878049612, + 0.005634259898215532, + -0.021689582616090775, + 0.012665498070418835, + -0.008554011583328247, + -0.0022576763294637203, + 0.028204401955008507, + -0.013407022692263126, + 0.039194852113723755, + 0.03220333531498909, + -0.004657698795199394, + 0.02666838839650154, + 0.015399868600070477, + 0.04237281158566475, + 0.008229594677686691, + -0.024814577773213387, + -0.018061410635709763, + -0.05182724446058273, + 0.012453634291887283, + -0.001999467145651579, + 0.01154659129679203, + 0.008805599994957447, + -0.009613331407308578, + -0.036069855093955994, + 0.009679539129137993, + 0.01129500288516283, + -0.008620218373835087, + -0.0065975789912045, + 0.04539187252521515, + 0.010116508230566978, + 0.007865453138947487, + -0.01575738936662674, + -0.00656447559595108, + -0.015399868600070477, + -0.00740862125530839, + -0.012076251208782196, + -0.01667105220258236, + 0.0147245517000556, + -0.013612265698611736, + 0.007349034305661917, + 0.04613339900970459, + 0.004108176566660404, + 0.023927396163344383, + -0.0038367256056517363, + 0.001819051569327712, + 0.00582957174628973, + -0.024536505341529846, + 0.0054819826036691666, + 0.02331828698515892, + 0.002807198790833354, + 0.021385028958320618, + -0.0068590990267694, + -0.005551500245928764, + 0.00728282704949379, + -0.0099642314016819, + -0.011460521258413792, + 0.0014160132268443704, + -0.021186405792832375, + 0.01969011500477791, + -0.0014052545884624124, + -0.01349309179931879, + 0.0021318821236491203, + 0.006286403629928827, + 0.01955770142376423, + -0.003050511470064521, + -0.0015608422691002488, + -0.018339483067393303, + 0.0061341263353824615, + -0.009110154584050179, + 0.013824129477143288, + -0.003502377774566412, + -0.004955632612109184, + -0.007719796616584063, + -0.017399335280060768, + -0.006925306282937527, + -0.018034927546977997, + -0.00047379755415022373, + 0.0013928406406193972, + -0.022285450249910355, + 0.014552412554621696, + 0.020643504336476326, + -0.0006794546497985721, + 0.03585799038410187, + -0.01868376135826111, + -0.020511088892817497, + -0.016114909201860428, + 0.018922109156847, + -0.032918378710746765, + 0.028760544955730438, + 0.03771180287003517, + 0.0002582093293312937, + 0.011050034314393997, + 0.008295802399516106, + -0.015466076321899891, + -0.01851162128150463, + 0.022192759439349174, + -0.011824662797152996, + -0.024086294695734978, + 0.006071229465305805, + 0.003959209658205509, + 0.016141392290592194, + -0.017558233812451363, + -0.00553163792937994, + 0.011003689840435982, + 0.013757921755313873, + -0.0026102312840521336, + -0.01468482706695795, + -0.01468482706695795, + 0.016419464722275734, + 0.014049234800040722, + -0.012970052659511566, + 0.04494166374206543, + -0.0253839623183012, + 0.016750501468777657, + -0.0036976898554712534, + 0.006806132849305868, + -0.023344770073890686, + -0.03302431106567383, + -0.01308260578662157, + -0.00523370411247015, + 0.02244434878230095, + 2.2952801373321563e-05, + -0.007633726578205824, + -0.016247324645519257, + -0.012956811115145683, + -0.017492026090621948, + 0.015015864744782448, + -0.005809709895402193, + 0.008507666178047657, + -0.0033103758469223976, + 0.022788627073168755, + -0.04462386667728424, + 0.0038433463778346777, + -0.0013241503620520234, + -0.016843192279338837, + 0.0012033216189593077, + -0.006650545168668032, + -0.0458950512111187, + -0.0015227729454636574, + -0.007944902405142784, + 0.024152502417564392, + 0.03056138940155506, + -0.047801826149225235, + -0.01383737102150917, + -0.01337391883134842, + -0.05969269946217537, + -0.026906734332442284, + -0.022020621225237846, + -0.011162587441504002, + -0.010142991319298744, + 0.0074218627996742725, + -0.015227729454636574, + 0.02277538552880287, + -0.0016262221615761518, + 0.024801336228847504, + -0.054449062794446945, + -0.01718747243285179, + -0.012036526575684547, + -0.001315046800300479, + 0.03162071108818054, + 0.0036314823664724827, + -0.01532041933387518, + 0.006120884791016579, + 0.009653056040406227, + -0.009745746850967407, + 0.0077992454171180725, + -0.0007179377716965973, + 0.0012091147946193814, + -0.007852211594581604, + 0.00941470917314291, + 0.025357479229569435, + 0.013559299521148205, + 0.004704044200479984, + -0.0060679190792143345, + -0.0429554358124733, + 0.015466076321899891, + 0.042213913053274155, + -0.017531750723719597, + -0.033792316913604736, + -0.026350591331720352, + 0.009355122223496437, + -0.005157565698027611, + -0.02625790238380432, + 0.012447013519704342, + -0.026946458965539932, + -0.01969011500477791, + -0.016300290822982788, + 0.013903578743338585, + 0.020127085968852043, + -0.00987154059112072, + 0.001142079709097743, + 0.00847456231713295, + -0.016326773911714554, + -0.02615197002887726, + 0.007587381638586521, + -0.03538129851222038, + -0.0014971174532547593, + 0.015823597088456154, + -0.00706434203311801, + 0.020603779703378677, + -0.01910748891532421, + 0.020643504336476326, + -0.0009757332736626267, + 0.004098245408385992, + -0.027277497574687004, + -0.0052634975872933865, + -0.005207221023738384, + 0.01698884926736355, + 0.03723510727286339, + -0.01681670919060707, + 0.015174763277173042, + 0.0022345036268234253, + -0.009043946862220764, + -0.005597845651209354, + -0.007117308210581541, + 0.0036546550691127777, + -0.030164144933223724, + -0.00416776305064559, + -0.012473496608436108, + -0.0033600314054638147, + -0.005369429476559162, + -0.0002995890099555254, + 0.005763364490121603, + -0.011434038169682026, + 0.01800844445824623, + 0.1867581605911255, + -0.00535949831828475, + -0.004154521506279707, + 0.02153068408370018, + -0.002760853385552764, + -0.021742548793554306, + 0.009262431412935257, + 0.00728282704949379, + -0.007137170527130365, + 0.0318855419754982, + -0.018074652180075645, + 0.006799512077122927, + -0.0008325595408678055, + 0.00017834649770520627, + 0.002974372822791338, + -0.012711843475699425, + -0.03275948017835617, + 0.010659410618245602, + 0.007368896622210741, + 0.04036010429263115, + 0.027939572930336, + -0.03307727724313736, + 0.003469273913651705, + -0.018021686002612114, + 0.042531710118055344, + -0.0007353172404691577, + -0.0002968993503600359, + -0.011672385036945343, + 0.03463977202773094, + 0.002423195168375969, + -0.011930594220757484, + 0.018312999978661537, + 0.0002528299519326538, + -0.03005821257829666, + -0.009924506768584251, + -0.001105665578506887, + 0.019133972004055977, + -0.008183249272406101, + 0.0319649912416935, + 0.01832624152302742, + -0.014102200977504253, + -0.004670940339565277, + -0.007766142021864653, + -0.008170007728040218, + -0.02235165797173977, + 0.026602180674672127, + -0.012844257988035679, + -0.006054677534848452, + -0.014075717888772488, + -0.012268252670764923, + -0.025582585483789444, + -0.006832615938037634, + 0.01383737102150917, + 0.034110113978385925, + -0.01179817970842123, + -0.006885581649839878, + 0.00893139373511076, + -0.0029545105062425137, + 0.009977472946047783, + 0.004263764247298241, + -0.02804550528526306, + 0.026602180674672127, + -0.005147634539753199, + 0.01681670919060707, + -0.030667321756482124, + -0.01657836325466633, + -0.045656703412532806, + 0.02831033430993557, + 0.003651344683021307, + 0.005707087926566601, + -0.02285483479499817, + -0.032229818403720856, + -0.0258871391415596, + 0.017889270558953285, + -0.017147747799754143, + -0.02112019807100296, + 0.007951523177325726, + 0.010427683591842651, + 0.012751568108797073, + 0.020100602880120277, + -0.005707087926566601, + 0.011003689840435982, + -0.006673717871308327, + -0.017280161380767822, + -0.001367185264825821, + -0.04123404249548912, + 0.02923724055290222, + -0.007209998555481434, + -0.014208133332431316, + -0.016843192279338837, + -0.011420796625316143, + 0.02037867344915867, + 0.0003076580469496548, + -0.020643504336476326, + 0.015638215467333794, + 0.002160020172595978, + 0.008759254589676857, + 0.013499712571501732, + -0.005432326812297106, + 0.015174763277173042, + -0.018074652180075645, + 0.044968146830797195, + 0.03334210440516472, + -0.014737793244421482, + -0.003105132607743144, + 0.01418165024369955, + -0.014062476344406605, + 0.013221641071140766, + 0.02153068408370018, + 0.004237281158566475, + -0.010037059895694256, + -0.023424219340085983, + 0.009878161363303661, + -0.0005966952303424478, + 0.0015335315838456154, + 0.03559316322207451, + 0.009487537667155266, + -0.016935883089900017, + 0.005048323422670364, + -0.013863854110240936, + -0.01456565409898758, + 0.006438680924475193, + -0.005246945656836033, + 0.004932459909468889, + 0.025410445407032967, + -0.03760587051510811, + -0.045603737235069275, + 0.007858832366764545, + -0.022298691794276237, + 0.0016659466782584786, + 0.03156774491071701, + 0.0012943570036441088, + 0.0020607090555131435, + 0.01607518456876278, + 0.013599024154245853, + 0.009361742995679379, + -0.005392602179199457, + -0.0438823439180851, + -0.009421329945325851, + 0.02194117195904255, + 0.01685643382370472, + -0.018710244446992874, + 0.001320012379437685, + -0.007527794688940048, + 0.021689582616090775, + 0.005041702650487423, + 0.02497347630560398, + -0.0001886914251372218, + -0.020855367183685303, + -0.012572807259857655, + -0.00847456231713295, + -0.021292338147759438, + -0.005776606034487486, + -0.009335259906947613, + 0.0219014473259449, + -0.00011410452134441584, + -0.02451002225279808, + -0.03320968896150589, + 0.0033004446886479855, + -0.005971917882561684, + -0.025556102395057678, + 0.0002683473576325923, + -0.008289181627333164, + -0.025675274431705475, + -0.006478405557572842, + 0.015916287899017334, + -0.16705480217933655, + -0.005597845651209354, + 0.014512687921524048, + -0.03495756909251213, + 0.01704181544482708, + 0.001795878866687417, + -0.0027244393713772297, + 0.004945701453834772, + -0.02048460580408573, + -0.006402267143130302, + 0.03418956324458122, + 0.014261099509894848, + -0.0017727062804624438, + 0.0019216731889173388, + 0.0059619867242872715, + 0.012771430425345898, + -0.016008976846933365, + 0.019120730459690094, + 0.02368905022740364, + 0.032044436782598495, + 0.007196757011115551, + -0.032785963267087936, + 0.011427417397499084, + -0.002807198790833354, + 0.01731988601386547, + -0.0035387917887419462, + -0.004101555794477463, + 0.005203911103308201, + 0.004108176566660404, + -0.02831033430993557, + -0.012705222703516483, + -0.004657698795199394, + 0.024854302406311035, + 0.007415242027491331, + 0.0012430461356416345, + -0.029660968109965324, + 0.003575206035748124, + -0.007262964732944965, + 0.00317299528978765, + 0.04099569469690323, + 0.017253678292036057, + -0.012281494215130806, + -0.027277497574687004, + 0.016419464722275734, + -0.03164719417691231, + -0.0022758834529668093, + 0.020497847348451614, + 0.006905443966388702, + -0.01946501061320305, + -0.011050034314393997, + 0.01150024589151144, + -0.015956012532114983, + -0.013453367166221142, + 0.008534149266779423, + -8.663874177727848e-05, + 0.029766900464892387, + 0.00927567295730114, + 0.013599024154245853, + -0.004409420769661665, + -0.007150412071496248, + 0.010229061357676983, + -0.009904644452035427, + 0.010030439123511314, + 0.016061943024396896, + -0.005342946853488684, + -0.02510588988661766, + 0.033421553671360016, + 0.012751568108797073, + -0.00023027801944408566, + -0.001931604347191751, + -2.3806258468539454e-05, + -0.021265855059027672, + 0.02702590823173523, + 0.00014317376189865172, + 0.009984093718230724, + 0.0035619644913822412, + -0.005806399509310722, + 0.005995090585201979, + 0.005819640588015318, + -0.016181116923689842, + -0.019849013537168503, + 0.06387701630592346, + -0.01905452273786068, + -0.014446480199694633, + -0.018445413559675217, + 0.007997868582606316, + 0.013407022692263126, + 0.00528004951775074, + 0.0031945127993822098, + 0.0045285942032933235, + -0.0016402913024649024, + -0.025820931419730186, + -0.01649891398847103, + -0.00991788599640131, + 0.020669987425208092, + 0.0014656689018011093, + 0.012268252670764923, + -0.01672401838004589, + 0.0024116088170558214, + -0.022695936262607574, + 0.004445835016667843, + -0.003876450238749385, + -0.012215287424623966, + -0.01717423088848591, + 0.010745479725301266, + 0.007428483571857214, + -0.03604337200522423, + 0.002658231882378459, + 0.02158365026116371, + -0.00274926726706326, + -0.021821998059749603, + -0.01512179709970951, + 0.020669987425208092, + 0.0021368477027863264, + -0.005329705309122801, + 0.007415242027491331, + 0.003575206035748124, + -0.014671585522592068, + -0.009507399052381516, + -0.005544879473745823, + 0.025503136217594147, + -0.00253078225068748, + -0.02478809468448162, + 0.018498379737138748, + -0.0035354814026504755, + -0.01708154007792473, + -0.09814602136611938, + -0.016896158456802368, + 0.011242036707699299, + 0.042531710118055344, + 0.01929287053644657, + 0.011963698081672192, + -0.0072497231885790825, + 0.0159427709877491, + -0.012089492753148079, + 0.0026367143727838993, + -0.03771180287003517, + -0.029978763312101364, + -0.004131349269300699, + -0.0065512340515851974, + 0.013612265698611736, + -0.008467941544950008, + -0.011308244429528713, + -0.02304021641612053, + -0.014035993255674839, + 0.026059279218316078, + 0.021199647337198257, + -0.02024625800549984, + -0.0015567042864859104, + -0.009937748312950134, + -0.0021053990349173546, + 0.0033153414260596037, + -0.023967120796442032, + 0.014327307231724262, + 0.023649325594305992, + 0.016379740089178085, + 0.007567519322037697, + -0.011023551225662231, + 0.012493358924984932, + -0.023026974871754646, + 0.0019895359873771667, + 0.012380805797874928, + -0.00037552075809799135, + -0.04282302409410477, + 0.013956544920802116, + -0.027780674397945404, + -0.008613597601652145, + -0.000399934797314927, + 0.041260525584220886, + -0.027462879195809364, + 0.006965030916035175, + -0.027224531397223473, + -0.015677940100431442, + 0.0030571320094168186, + -0.012261631898581982, + -0.03368638455867767, + -0.029766900464892387, + -0.014075717888772488, + 0.003873139852657914, + 0.03313024342060089, + 0.008514286950230598, + 0.013704956509172916, + 0.012744947336614132, + -0.010050301440060139, + -0.002418229589238763, + -0.0009335260256193578, + -0.014486204832792282, + 0.03440142795443535, + -0.028839994221925735, + 0.027568809688091278, + -0.003677827538922429, + -0.02862813137471676, + -0.018246792256832123, + -0.012513221241533756, + -0.0014176684198901057, + -0.01248673815280199, + -0.017849545925855637, + -0.002333814976736903, + 0.00740862125530839, + -0.0037374142557382584, + -0.02799253910779953, + -0.0243776086717844, + -0.0243776086717844, + -0.025066165253520012, + 0.015585249289870262, + -0.01896183378994465, + -0.026588939130306244, + -0.02464243769645691, + 0.011050034314393997, + -0.008785737678408623, + 0.012711843475699425, + 0.014155167154967785, + 0.012499979697167873, + -0.03437494486570358, + 0.013208399526774883, + -0.0284427497535944, + 0.007680071983486414, + -0.01800844445824623, + 0.011718730442225933, + -0.005038392264395952, + -0.0072960685938596725, + 0.0006533854175359011, + -0.006197023671120405, + 0.009176362305879593, + 0.020603779703378677, + 0.003998934291303158, + -0.039194852113723755, + -0.013704956509172916, + -0.035990405827760696, + 0.00987154059112072, + 0.01868376135826111, + 0.00014989795454312116, + -0.008289181627333164, + -6.113850395195186e-05, + 0.03527536615729332, + 0.026681629940867424, + 0.007858832366764545, + -0.01342026423662901, + -0.008487803861498833, + -0.0006604199879802763, + -0.009401467628777027, + -0.01035485602915287, + -0.02643004059791565, + -0.006554544437676668, + 0.005773295648396015, + 0.015823597088456154, + 0.015254211612045765, + 0.006852478254586458, + -0.020497847348451614, + 0.00274926726706326, + -0.02070971205830574, + 0.01878969371318817, + -0.019504735246300697, + 0.00021600202308036387, + -0.0040221065282821655, + -0.012016664259135723, + -0.001482220832258463, + -0.002112019807100296, + -0.014247857965528965, + -0.008388492278754711, + -0.009030705317854881, + 0.01537338551133871, + -0.008626839146018028, + 0.008262698538601398, + 0.010288648307323456, + 0.03601688891649246, + 0.019769564270973206, + 0.04518001154065132, + -0.041445907205343246, + -0.010546857491135597, + 0.00822297390550375, + -0.04112811014056206, + -0.0068259951658546925, + 0.004177694208920002, + 0.011864387430250645, + 0.008242836222052574, + 0.015638215467333794, + -0.010679272934794426, + 0.033792316913604736, + 0.012029905803501606, + 0.026588939130306244, + 0.0003302099939901382, + 0.02171606570482254, + -0.01490993332117796, + -0.0019415355054661632, + 0.00728282704949379, + -0.009533882141113281, + -0.029290204867720604, + 0.04594801738858223, + 0.01338053960353136, + 0.024814577773213387, + -0.005180738400667906, + 0.01969011500477791, + -0.02047136425971985, + -0.034560322761535645, + -0.014936416409909725, + 0.01708154007792473, + -0.019954945892095566, + -0.01877645216882229, + -0.013850612565875053, + 0.004955632612109184, + 0.025807689875364304, + -0.004823217634111643, + -0.017664166167378426, + 0.01571766473352909, + 0.016896158456802368, + 0.002481126692146063, + 0.03657303377985954, + 0.02108047343790531, + 0.01106327585875988, + -0.033236172050237656, + -0.0071106874383986, + 0.01808789372444153, + 0.009182983078062534, + -0.023927396163344383, + -0.0006335231591947377, + -0.013387160375714302, + 0.004002244211733341, + 0.012082871980965137, + 0.02441733330488205, + -0.02084212563931942, + -0.018577829003334045, + 0.030667321756482124, + 0.018657278269529343, + 0.0051377033814787865, + -0.03334210440516472, + 0.010487270541489124, + 0.03847980871796608, + 0.00046593541628681123, + 0.011434038169682026, + 0.0006033160025253892, + -0.02775419130921364, + -0.014406755566596985, + 0.013552678748965263, + -0.008938014507293701, + -0.030270077288150787, + -0.01278467196971178, + 0.012546324171125889, + -0.014645102433860302, + 0.015783872455358505, + 0.0060447463765740395, + -0.003787070047110319, + -0.007037858944386244, + 0.039274297654628754, + -0.011990181170403957, + -0.009686159901320934, + -0.02157040871679783, + 0.011970318853855133, + 0.015267453156411648, + -0.001051044324412942, + 0.008547390811145306, + 0.014539171010255814, + 0.030164144933223724, + 0.018577829003334045, + -0.003406376810744405, + 0.0015062210150063038, + 0.027966056019067764, + -0.018935350701212883, + 0.027052391320466995, + -0.0038466567639261484, + -0.009388226084411144, + -0.019822530448436737, + -0.007309310138225555, + -0.0050119091756641865, + 0.03434846177697182, + 0.007004755549132824, + 0.009798713028430939, + 0.1057201623916626, + 0.03890353813767433, + -0.016962366178631783, + 0.0014673240948468447, + -0.0036976898554712534, + 0.04181666672229767, + -0.0027625085785984993, + 0.017836304381489754, + 0.00025138165801763535, + -0.06927954405546188, + 0.006120884791016579, + -0.004548456519842148, + 0.010454166680574417, + -0.034931086003780365, + -0.012010043486952782, + 0.01676374301314354, + 0.0033683073706924915, + 0.008196490816771984, + -0.016604844480752945, + 0.027198048308491707, + 0.040889762341976166, + -0.012341081164777279, + 0.03215036913752556, + 0.02968745119869709, + -0.02102750726044178, + -0.025211822241544724, + 0.03233575075864792, + 0.006352611351758242, + 0.002313952660188079, + 0.0048629422672092915, + -0.019941704347729683, + 0.0044027999974787235, + -0.05831558257341385, + -0.01541311014443636, + 0.013532816432416439, + -0.002500989008694887, + -0.019041281193494797, + -0.010891136713325977, + 0.01374468021094799, + 0.001845534541644156, + 0.013943303376436234, + 0.031912025064229965, + -0.024245193228125572, + -0.02963448502123356, + -0.015002623200416565, + -0.015823597088456154, + 0.007746279705315828, + -0.01859107054769993, + -0.038003116846084595 + ], + "metadata": { + "source": "Kreye_Marieke_BA_241_V2.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 17, + "has_images": true, + "image_count": 98, + "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", + "links": [], + "last_modified": "2025-05-05T23:00:23", + "_known_field_names": "frozenset({'is_continuation', 'sent_to', 'header_footer_type', 'email_message_id', 'filename', 'languages', 'detection_class_prob', 'sent_from', 'link_texts', 'cc_recipient', 'subject', 'image_mime_type', 'image_path', 'filetype', 'page_number', 'last_modified', 'signature', 'detection_origin', 'text_as_html', 'attached_to_filename', 'bcc_recipient', 'data_source', 'link_start_indexes', 'category_depth', 'emphasized_text_tags', 'parent_id', 'orig_elements', 'page_name', 'coordinates', 'url', 'link_urls', 'file_directory', 'links', 'table_as_cells', 'emphasized_text_contents', 'key_value_pairs', 'image_base64'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "Kreye_Marieke_BA_241_V2.pdf", + "detection_class_prob": 0.3422867953777313, + "parent_id": "e02392183bc6851689602ad4b9f6039f", + "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", + "id": "ce00eae5-7e07-454f-9e4f-f79ac36f92f4", + "processing_timestamp": "2025-05-05T23:15:46.977945", + "chunk_number": 42, + "total_chunks": 56, + "chunking_strategy": "hybrid", + "word_count": 375 + } +} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000043.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000043.json new file mode 100644 index 0000000000000000000000000000000000000000..0af0271fe58de08b48a5f9d11f5676a9ad471c96 --- /dev/null +++ b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000043.json @@ -0,0 +1,1570 @@ +{ + "id": "61a115b2-0ff7-441a-f6d9-eb3d00000043", + "content": "Gerade bei der Simulation von Zukunftsszenarien kann dies zu einer Verf\u00e4lschung der Ergebnisse f\u00fchren. Urbane R\u00e4ume sind zunehmend den Einfl\u00fcssen steigender Temperaturen, l\u00e4ngerer Trockenperioden und h\u00e4ufigerer Starkregenereignisse ausgesetzt. Diese sich wandelnden klimatischen Bedingungen sollten daher in den Simulationen ber\u00fccksichtigt werden. Eine M\u00f6glichkeit hierf\u00fcr bieten die Klimaszenarien des IPCC. Die Szenarien ber\u00fccksichtigen unter anderem als ma\u00dfgebliche Einflussgr\u00f6\u00dfe die Entwicklung der Treibhausgaskonzentration in der Atmosph\u00e4re beschrieben durch die Representive Concentration Pathways (RCP. F\u00fcr jedes RCP-Szenario wird eine Reduktion der Treibhausgasemissionen bedingt durch die ergriffenen Klimaschutzma\u00dfnahmen prognostiziert. Dabei gilt je h\u00f6her der Index des Szenarios ist (z.B. RCP8.5), desto niedriger ist die zu erwartende Reduktion und desto gr\u00f6\u00dfer und schwerwiegender sind die Auswirkungen auf das Klima. Ein sich ver\u00e4ndertes Klima wirkt auch auf die urbanen R\u00e4ume und damit auf das st\u00e4dtische Gr\u00fcn. (vgl. Kreienkamp et al. 2022, S. 3)\nTrotz einiger Optimierungspotentiale eignet sich das Tool, um komplexe Sachverhalte auf eine simple Verst\u00e4ndnisebene herunterzubrechen. Hierbei ist zu beachten, dass die getroffenen Annahmen projektspezifisch gepr\u00fcft und gegebenenfalls nachjustiert werden m\u00fcssen. Trotz des modellhaften Charakters erm\u00f6glicht das Tool die Zusammenh\u00e4nge im urbanen Raum und die Auswirkungen einer Erh\u00f6hung der Baumanzahl auf den thermischen Geb\u00e4udeenergiebedarf und das urbane Mikroklima zu verstehen und zu bewerten. Es eignet sich nach einigen weiteren internen Validierungen optimal f\u00fcr St\u00e4dte und Gemeinden, um die Auswirkungen ihrer angestrebten Ma\u00dfnahmen zu simulieren und zu beurteilen. 54\nFazit\n\n## 9 Fazit\n\nEine Ver\u00e4nderung im Mobilit\u00e4tsverhalten schafft Freifl\u00e4chen f\u00fcr urbanes Gr\u00fcn. Eine Erh\u00f6hung des Gr\u00fcnanteils in St\u00e4dten wirkt positiv auf den thermischen Geb\u00e4udeenergiebedarf der Wohngeb\u00e4ude und das st\u00e4dtische Mikroklima. Ausgehend von einer MIV-Reduktion um 3%, 10% bzw. 20% wurden die f\u00fcr die Baumpflanzungsszenarien essenziellen Potentialfl\u00e4chen bestimmt. Auf diesen Mobilit\u00e4tsszenarien basierten die durchgef\u00fchrten Simulationen. Die Ergebnisse der Simulationen der Verschattung zeigen einen eher geringen oder sogar ung\u00fcnstigen Effekt auf den thermischen Geb\u00e4udeenergiebedarf. Auf den Heizbedarf wirkt sich eine zunehmende Verschattung durch mehr B\u00e4ume negativ aus, denn dieser verzeichnet eine Zunahme mit steigender Anzahl an B\u00e4umen. Somit ist bei einer reinen Betrachtung des Heizbedarfs aus energetischer Sicht eine Erh\u00f6hung des Gr\u00fcnanteils nicht sinnvoll. Hingegen wirkt sich eine zunehmende Verschattung positiv auf den K\u00fchlbedarf der Geb\u00e4ude aus, da dieser mit Erh\u00f6hung des Gr\u00fcnanteils sinkt. So kann bei einem etwa 40 ha gro\u00dfen Untersuchungsgebiet mit einer Zunahme des Heizbedarfs von 50 MWh hingegen mit einer Reduktion des K\u00fchlbedarfs von 140 MWh bei einer Erh\u00f6hung des Baumbestands um 500 B\u00e4umen gerechnet werden.", + "embedding": [ + 0.01697101816534996, + -0.003992599900811911, + 0.020473184064030647, + -0.019261907786130905, + 0.01017734408378601, + 0.00924913864582777, + -0.029465584084391594, + -0.011757268570363522, + -0.02288256771862507, + -0.02828064188361168, + 0.013356941752135754, + 0.009143810719251633, + -0.004216422326862812, + 0.010835645720362663, + 0.0033705048263072968, + 0.0032059294171631336, + 0.042052313685417175, + 0.01511460728943348, + 0.026029249653220177, + 0.005319077987223864, + -0.0006694105686619878, + 0.009782363660633564, + -0.0010137846693396568, + -0.012698640115559101, + -0.0076494659297168255, + 0.015535919927060604, + 0.02909693494439125, + -0.029491916298866272, + -0.005286162719130516, + 0.0007920192438177764, + 0.020341522991657257, + -0.019775383174419403, + -0.02301422692835331, + -0.011421534232795238, + -0.010881727561354637, + 0.006418441887944937, + 0.011513696983456612, + -0.006800256669521332, + 0.02024936117231846, + -0.0007990137091837823, + -0.0022201226092875004, + -0.0027747417334467173, + 0.0036963641177862883, + -0.00988110899925232, + 0.026858709752559662, + 0.015904569998383522, + 0.019485730677843094, + -0.009742865338921547, + -0.023935850709676743, + 0.020130867138504982, + 0.03449501097202301, + 0.0367332361638546, + -0.006346028298139572, + 0.002631561132147908, + -0.02084183134138584, + 0.0015478319255635142, + -0.032493773847818375, + 0.01420615054666996, + -0.003156556747853756, + -0.0044929091818630695, + -0.005651520099490881, + -0.0024850890040397644, + -0.017918972298502922, + 0.0023040559608489275, + -0.022671910002827644, + -0.008847574703395367, + -0.014745958149433136, + -0.006467814091593027, + 0.01059865765273571, + -0.01271180622279644, + 0.031256165355443954, + 0.0416046679019928, + 0.02639789879322052, + -0.007544137537479401, + 0.013547848910093307, + -0.0040715960785746574, + -0.0005344587261788547, + -0.0006537758745253086, + -0.015549086034297943, + 0.011322789825499058, + 0.014074490405619144, + -0.014930282719433308, + -0.025765929371118546, + 0.041762661188840866, + 0.02444932609796524, + 0.008294601924717426, + -0.013574181124567986, + 0.028227977454662323, + 0.004397455602884293, + 0.021342141553759575, + 0.01250114943832159, + 0.024844305589795113, + 0.002267849398776889, + 0.01905125193297863, + -0.012066670693457127, + -0.004246045835316181, + -0.0002915042277891189, + 0.001626828103326261, + 0.01816912740468979, + -0.024396661669015884, + -0.008919987827539444, + 0.0033770878799259663, + -0.015022444538772106, + -0.004361249040812254, + -0.04418521001935005, + -0.002567376708611846, + -0.0021361890248954296, + 0.010183927603065968, + 0.018445614725351334, + -0.027490679174661636, + -0.017155341804027557, + 0.03478466346859932, + -0.022145269438624382, + -0.018616773188114166, + 0.01327794510871172, + -0.03575894981622696, + 0.038313157856464386, + 0.012441902421414852, + -0.013073871843516827, + -0.011098966933786869, + 0.021868782117962837, + -0.0016720863059163094, + 0.002210248028859496, + -0.007149156648665667, + 0.01914341375231743, + 0.016049396246671677, + 0.0070964922197163105, + -0.006211076397448778, + -0.02610824629664421, + -0.030992845073342323, + -0.017695149406790733, + 0.004868140909820795, + -0.003732570679858327, + 0.012389237992465496, + -0.024844305589795113, + 0.038155168294906616, + -0.013139702379703522, + 0.0002865669666789472, + -0.040393393486738205, + -0.03923478350043297, + -0.022408589720726013, + 0.017708316445350647, + -0.03599593788385391, + -0.014811788685619831, + -0.003278342541307211, + 0.02828064188361168, + 0.0017691858811303973, + 0.02704303339123726, + 0.005746974144130945, + -0.02772766724228859, + -0.003943227231502533, + -0.004275669809430838, + 0.011059468612074852, + 0.0033260693307965994, + 0.011559777893126011, + -0.009986436925828457, + -0.009071397595107555, + 0.0015042193699628115, + -0.03296774998307228, + 0.0047759790904819965, + 0.024686314165592194, + -0.006513895466923714, + 0.008827826008200645, + 0.009960104711353779, + 0.015443758107721806, + 0.0021937903948128223, + 0.01706317998468876, + -0.0006130434921942651, + 0.014561633579432964, + -0.015878237783908844, + -0.009433463215827942, + 0.028517629951238632, + -0.03510064631700516, + 0.02551577426493168, + 0.00355153763666749, + 0.0255816038697958, + -0.007596801500767469, + 0.017932139337062836, + -0.005105129908770323, + -0.03507431596517563, + -0.022421756759285927, + 0.013495185412466526, + 0.010118097066879272, + -0.0013396439608186483, + -0.01710267923772335, + -0.015575418248772621, + 0.023356543853878975, + 0.00799836590886116, + -0.005835844669491053, + 0.0019930084235966206, + 0.0032042835373431444, + 0.009966688230633736, + 0.015746576711535454, + -0.01852460950613022, + -0.6290204524993896, + 0.011224044486880302, + 0.004338208120316267, + -0.0035153310745954514, + 0.02279040589928627, + 0.021789787337183952, + 0.042183972895145416, + 0.017273837700486183, + -0.008215605281293392, + 0.03446867689490318, + 0.0022941813804209232, + 0.0007385322242043912, + -0.0004087642300873995, + -0.007814041338860989, + -0.00023019987565930933, + -0.028991607949137688, + 0.0024900261778384447, + -0.007715296000242233, + 0.011875762604176998, + 0.007162322755903006, + -0.018050633370876312, + 0.0258185938000679, + -0.009644120000302792, + 0.00029808725230395794, + 0.020657507702708244, + 0.029202263802289963, + -0.01080931443721056, + -0.041104357689619064, + 0.011599276214838028, + 0.0005011321627534926, + 0.0001764042826835066, + 0.02980790100991726, + -0.007741628214716911, + 0.0008274029823951423, + 0.05782522261142731, + 0.027122030034661293, + -0.013613679446280003, + 0.005338826682418585, + 0.011566361412405968, + 0.011948175728321075, + -0.016668198630213737, + -0.0038741056341677904, + 6.95845446898602e-05, + -0.0007965450640767813, + 0.0018695768667384982, + 0.016115225851535797, + 0.03799717500805855, + -0.01953839510679245, + -0.0019288240000605583, + -0.014666962437331676, + 0.01441680733114481, + 0.0026792879216372967, + -0.0006430784706026316, + 0.012211496941745281, + 0.024501990526914597, + 0.0069845812395215034, + 0.021539632230997086, + -0.006747592706233263, + -0.001856410875916481, + 0.001961739035323262, + -0.01995970867574215, + -0.00013412897533271462, + -0.00706357741728425, + -0.023646198213100433, + -0.01595723256468773, + 0.04318459331989288, + -0.01732650026679039, + -0.030150217935442924, + -0.012389237992465496, + -0.036917559802532196, + -0.016852524131536484, + 0.0079654511064291, + -0.012902713380753994, + -0.023185385391116142, + 0.0156017504632473, + -0.0035416632890701294, + 0.03891879692673683, + -0.016299549490213394, + -0.01772148162126541, + 0.032204121351242065, + 0.013172617182135582, + -0.013495185412466526, + -0.004529115743935108, + 0.008966069668531418, + 0.008827826008200645, + -0.02360669896006584, + -0.010414333082735538, + -0.0028422176837921143, + -0.008571088314056396, + 0.007498056627810001, + 0.024975966662168503, + 0.023001061752438545, + -0.014245648868381977, + -0.0335470549762249, + 0.004018932115286589, + 0.02964990958571434, + -0.011612442322075367, + 0.034442346543073654, + 0.002710557309910655, + -0.04616011679172516, + -0.02551577426493168, + 0.0024422993883490562, + 0.023001061752438545, + 0.019261907786130905, + 0.017537157982587814, + -0.000910924980416894, + -0.0016506914980709553, + 0.011566361412405968, + 0.04118335619568825, + -0.019643722102046013, + -0.0017313334392383695, + -0.015088275074958801, + 0.011684855446219444, + -0.017181674018502235, + -0.000986629631370306, + -0.02288256771862507, + 0.037786517292261124, + -0.006951665971428156, + 0.018577273935079575, + 0.006168287247419357, + 0.01924874261021614, + 0.0005468018352985382, + 0.013534682802855968, + -0.030466202646493912, + 0.005085380747914314, + 0.01573341153562069, + 0.018735267221927643, + -0.0017263962654396892, + -0.01938040181994438, + -0.018616773188114166, + 0.0013396439608186483, + 0.006224242504686117, + 0.04318459331989288, + -0.01814279519021511, + 0.03452134132385254, + 0.0039366441778838634, + 0.03599593788385391, + -0.005187417380511761, + -0.008386763744056225, + -0.01670769788324833, + -0.014390475116670132, + -0.012336574494838715, + 0.013666343875229359, + -0.03702288866043091, + -0.024831140413880348, + -0.014219316653907299, + -0.01626005209982395, + 0.022737741470336914, + -0.0009183308575302362, + -0.0010195447830483317, + -0.017510825768113136, + -0.013113370165228844, + 0.009788946248590946, + 0.011856013908982277, + -0.00271878601051867, + 0.007603384554386139, + 0.0031631398014724255, + -0.019354069605469704, + -0.008735663257539272, + -0.022276930510997772, + 0.012843466363847256, + 0.022777238860726357, + -0.030018558725714684, + 0.007043828256428242, + -0.010782982222735882, + -0.0007710359059274197, + 0.002955774776637554, + 0.02396218292415142, + -0.02243492193520069, + -0.028649291023612022, + -0.0059280069544911385, + -0.03349439054727554, + 0.013370107859373093, + 0.008715914562344551, + -0.018669435754418373, + -0.014943448826670647, + -0.03923478350043297, + -0.003413294441998005, + -0.0036963641177862883, + -0.008090527728199959, + 0.01852460950613022, + -0.005585690028965473, + -0.020275693386793137, + -0.015851905569434166, + 0.017023682594299316, + 0.009255722165107727, + 0.027490679174661636, + 0.005197292193770409, + -0.01461429800838232, + 0.021342141553759575, + 0.003340881085023284, + 0.04974127560853958, + -0.01661553606390953, + 0.008347265422344208, + 0.0010228363098576665, + -0.02256658300757408, + 0.008584254421293736, + 0.018287621438503265, + -0.016404878348112106, + 0.007866705767810345, + 0.029491916298866272, + 0.0007636299706064165, + 0.016720863059163094, + -0.01716850884258747, + 0.010710569098591805, + -0.023935850709676743, + 0.021091986447572708, + 0.006833171937614679, + 0.019972873851656914, + -0.003656866028904915, + 0.024357162415981293, + 0.008202439174056053, + -0.03230944648385048, + 0.002440653508529067, + -0.0044632856734097, + 0.03117716871201992, + -0.018550941720604897, + -0.008215605281293392, + -0.0018679311033338308, + -0.017774146050214767, + 0.009314969182014465, + -0.005602147430181503, + 0.03644358366727829, + -0.018735267221927643, + -0.008406512439250946, + 0.013455687090754509, + -0.009729699231684208, + 0.027938324958086014, + 0.013705841265618801, + 0.008426262065768242, + -0.012619643472135067, + 0.007596801500767469, + -0.012613060884177685, + 0.0034527925308793783, + 0.014574799686670303, + 0.013600513339042664, + 0.01967005431652069, + -0.010894893668591976, + 0.03283609077334404, + -0.00015110081585589796, + 0.01056574285030365, + 0.023909518495202065, + 0.016181055456399918, + -0.011658523231744766, + 0.03702288866043091, + 0.008663250133395195, + 0.02516029216349125, + 0.03009755350649357, + -0.005740391090512276, + 0.015878237783908844, + -0.014851287007331848, + 0.011612442322075367, + 0.022276930510997772, + 0.0008422147366218269, + 0.01834028586745262, + -0.016668198630213737, + 0.02652955800294876, + -0.009453212842345238, + 0.037207212299108505, + 0.021500132977962494, + 0.0016029647085815668, + 0.0076626320369541645, + 0.006912168115377426, + -0.010269506834447384, + -0.005888508632779121, + -0.019814880564808846, + -0.02203994058072567, + -0.013087037950754166, + -0.0021822701673954725, + 0.003716113045811653, + 0.01664186641573906, + -0.007853539660573006, + -0.018221791833639145, + 0.00014904362615197897, + -0.005872051231563091, + -0.007274233736097813, + -0.004061721730977297, + 0.013508351519703865, + 0.01674719527363777, + 0.010993639007210732, + 0.01014442928135395, + -0.013073871843516827, + -0.006629098206758499, + 0.023725192993879318, + -0.014759124256670475, + -0.020236194133758545, + -0.00706357741728425, + 0.0007792646647430956, + -0.011026553809642792, + 0.001337998197413981, + -0.00990085769444704, + -0.0008092996431514621, + -0.014285147190093994, + -0.0029179223347455263, + 0.01441680733114481, + -0.021039322018623352, + 0.00869616586714983, + -0.014851287007331848, + 0.0052532474510371685, + 0.020473184064030647, + -0.0026167493779212236, + 0.0016548059647902846, + -0.006523769814521074, + -0.0127447210252285, + 0.022961564362049103, + 0.00516108563169837, + -0.00682000583037734, + -0.004305293317884207, + -0.009084563702344894, + 0.0017477910732850432, + -0.007425643503665924, + -0.022092605009675026, + -0.003989308141171932, + 0.014640630222856998, + -0.010170761495828629, + 0.01113188173621893, + -0.004058429971337318, + -0.01739233173429966, + 0.04271061345934868, + 0.0013733819359913468, + 0.005355284549295902, + -0.03188813477754593, + -0.010473580099642277, + 0.004390872549265623, + 0.02142113819718361, + 0.018287621438503265, + -0.004976761061698198, + 0.008768578991293907, + 0.0031335160601884127, + -0.012435318902134895, + -0.005338826682418585, + -0.05429672449827194, + 0.0008977589313872159, + -0.010085182264447212, + -0.0016449313843622804, + -0.0046410271897912025, + 0.025173457339406013, + -0.017418663948774338, + 0.00963753741234541, + 0.0059280069544911385, + 0.016944685950875282, + -0.01697101816534996, + -0.013159451074898243, + 0.009051648899912834, + -0.005691018421202898, + -0.012619643472135067, + -0.017221173271536827, + 0.05608730390667915, + 0.022211099043488503, + 0.012329990975558758, + 0.03365238383412361, + 0.013073871843516827, + 0.020499514415860176, + -0.02077600173652172, + -0.0029656491242349148, + 0.01938040181994438, + -0.0010417624143883586, + 0.025963420048356056, + -0.03280975669622421, + -0.016602369025349617, + 0.011520279571413994, + -0.029597245156764984, + 0.022158434614539146, + 0.00020047344150952995, + 0.012277326546609402, + 0.010006185621023178, + 0.013863833621144295, + -0.012599894776940346, + 0.014258814975619316, + -0.0076626320369541645, + 0.0016482229111716151, + 0.01539109367877245, + 0.0031071840785443783, + -0.013613679446280003, + -0.001805392443202436, + -0.012573562562465668, + -0.03604860231280327, + -0.005625187885016203, + -0.0011767143150791526, + -0.021829284727573395, + 0.006747592706233263, + -0.014811788685619831, + 0.0005155325052328408, + -0.01619422249495983, + -0.051900506019592285, + -0.024923302233219147, + 0.005542900413274765, + -0.013561015017330647, + -0.016075728461146355, + -0.008827826008200645, + -0.008353848941624165, + -0.010927808471024036, + -0.0231458880007267, + -0.0009685264085419476, + 0.030571531504392624, + -0.031967129558324814, + -0.016602369025349617, + 0.009512459859251976, + 0.017089512199163437, + 0.009775780141353607, + 0.014100822620093822, + -0.0022612663451582193, + 0.0045093665830791, + -0.015575418248772621, + -0.028201645240187645, + -0.024554653093218803, + 0.003108829725533724, + -0.018313953652977943, + -0.01149394828826189, + 0.010486746206879616, + -0.026871874928474426, + -0.02746434696018696, + -0.01628638431429863, + 0.02119731530547142, + -0.01566758006811142, + -0.0033359439112246037, + 0.01814279519021511, + 0.00963753741234541, + -0.0010829062666743994, + 0.0024258417543023825, + 0.003105538198724389, + 0.007616550661623478, + 0.03349439054727554, + -0.042605288326740265, + 0.03173014149069786, + 0.009314969182014465, + -0.00318947178311646, + -0.006951665971428156, + -0.004489617887884378, + -0.005937881302088499, + -0.028780950233340263, + 0.000663650396745652, + -0.005789763759821653, + -0.01622055470943451, + 0.02717469446361065, + -0.03338906168937683, + 0.01914341375231743, + -0.0024472365621477365, + -0.013692675158381462, + -0.003367213299497962, + 0.012119334191083908, + 0.011862596496939659, + 0.01339644007384777, + 0.0027829704340547323, + -0.00403209775686264, + -0.03578528016805649, + 0.043737564235925674, + 0.011842847801744938, + 0.012086419388651848, + -0.0010680945124477148, + -0.008755412884056568, + 0.030281879007816315, + -0.03283609077334404, + -0.0005233498523011804, + -0.01914341375231743, + 0.019986039027571678, + 0.022474421188235283, + -0.013106786645948887, + -0.022711409255862236, + -0.024831140413880348, + 0.004542281851172447, + 0.00832093320786953, + -0.039129454642534256, + 0.006780507508665323, + -0.03978775441646576, + 0.012297076173126698, + -0.00755072059109807, + 0.02681921236217022, + 0.0239885151386261, + -0.02161862887442112, + -0.013666343875229359, + 0.0198675449937582, + 0.012461651116609573, + 0.006253866013139486, + -0.020815499126911163, + -0.01944623328745365, + -0.031150836497545242, + -0.004091345239430666, + -0.01637854613363743, + -0.04210497811436653, + 0.023317046463489532, + -0.01552275475114584, + 0.011698021553456783, + 0.01573341153562069, + 0.027964657172560692, + -0.002753346925601363, + 0.02327754907310009, + 0.0025854799896478653, + -0.012106168083846569, + -0.004028806462883949, + -0.0017494368366897106, + -0.00022649693710263819, + -0.040261734277009964, + 0.022698242217302322, + -0.0001548037544125691, + 0.01373217348009348, + 0.015351596288383007, + 0.000751286803279072, + 0.0033063204027712345, + 0.02500229887664318, + -0.02402801252901554, + -0.03128249570727348, + -0.02730635553598404, + -0.014772290363907814, + -0.02854396216571331, + 0.020302025601267815, + -0.008307768031954765, + 0.009091146290302277, + -0.019591059535741806, + 0.0023682403843849897, + 0.031150836497545242, + 0.00343304337002337, + -0.0035153310745954514, + -0.012817134149372578, + 0.011902094818651676, + -0.021526465192437172, + 0.014969781041145325, + 0.0030907264444977045, + 0.00176754011772573, + 0.003531788708642125, + -0.0030314794275909662, + -0.026608554646372795, + -0.025436777621507645, + 0.021118318662047386, + -0.026648053899407387, + -0.005378325004130602, + 0.00495701190084219, + -0.009295220486819744, + 0.010361668653786182, + 0.0025723138824105263, + 0.01641804538667202, + -0.0203810203820467, + 0.02870195358991623, + 0.0026480185333639383, + -0.007083326578140259, + -0.003907020669430494, + 0.007247901987284422, + -0.017010515555739403, + 0.02285623550415039, + -0.00521045783534646, + -0.003989308141171932, + 0.03533763438463211, + -0.010480163618922234, + 0.027622340247035027, + 0.018801096826791763, + 0.002453819615766406, + 0.018972255289554596, + 0.01160585880279541, + 0.03352072462439537, + 0.015048776753246784, + -0.028385968878865242, + -0.01414032094180584, + -0.04294760525226593, + 0.0005743682268075645, + -0.008413095958530903, + 0.022132104262709618, + 0.007899620570242405, + -0.005733808036893606, + -0.03128249570727348, + -0.001172599964775145, + 0.016181055456399918, + 0.0020818791817873716, + -0.0012285555712878704, + 0.04023540019989014, + 0.012632809579372406, + 0.013449103571474552, + -0.010908059775829315, + -0.009295220486819744, + -0.015878237783908844, + -0.002610166324302554, + -0.007037245202809572, + -0.013534682802855968, + 0.004960303194820881, + -0.010973889380693436, + 0.010374834761023521, + 0.052585139870643616, + 0.009045065380632877, + 0.01365317776799202, + -0.01608889363706112, + -0.02292206510901451, + -0.008617169223725796, + -0.022000443190336227, + 0.0063098217360675335, + 0.027543343603610992, + 0.0011125298915430903, + 0.021039322018623352, + 0.0250681284815073, + -0.023909518495202065, + 0.007879871875047684, + -0.02458098530769348, + 0.009841610677540302, + -0.0021493551321327686, + -0.00540465721860528, + 0.02440982684493065, + 0.002587125636637211, + -0.004545573145151138, + -0.010269506834447384, + 0.0018448905320838094, + 0.026055581867694855, + 0.006602765992283821, + 0.0026924540288746357, + -0.015680747106671333, + 0.008788327686488628, + -0.007228152826428413, + 0.009367633610963821, + 0.0040748873725533485, + -0.009986436925828457, + -0.00176754011772573, + -0.0061979107558727264, + 0.0018234957242384553, + -0.013014624826610088, + -0.001532197231426835, + 0.015219935216009617, + -0.020815499126911163, + 0.010137846693396568, + 0.027753999456763268, + 6.233293970581144e-05, + 0.039287444204092026, + -0.01566758006811142, + -0.018643103539943695, + -0.015285765752196312, + 0.02695087157189846, + -0.045923128724098206, + 0.038602814078330994, + 0.041078027337789536, + 0.002310639014467597, + 0.011632191017270088, + 0.013613679446280003, + -0.013613679446280003, + -0.025660600513219833, + 0.013014624826610088, + -0.014772290363907814, + -0.04708173871040344, + 0.00034272833727300167, + -0.0008574379608035088, + 0.009209641255438328, + 0.0031170586589723825, + -0.008933153934776783, + 0.01931457221508026, + 0.007866705767810345, + -0.012626226991415024, + -0.025752762332558632, + -0.008492091670632362, + 0.01719484105706215, + 0.006767341401427984, + -0.0038444818928837776, + 0.04339524731040001, + -0.0318618044257164, + 0.009729699231684208, + -0.011250375770032406, + 0.013462269678711891, + -0.013626845553517342, + -0.026503227651119232, + -0.0208023339509964, + -0.012830300256609917, + 0.018945923075079918, + -0.00612878892570734, + -0.007972033694386482, + -0.004160466603934765, + -0.013771671801805496, + -0.015456924214959145, + 0.01606256142258644, + 0.01927507482469082, + 0.010545993223786354, + 0.0010154304327443242, + 0.010480163618922234, + -0.030308211222290993, + 0.01229049265384674, + 0.0013256550300866365, + -0.020078202709555626, + 0.0009125707438215613, + -0.00588521733880043, + -0.04515949636697769, + -0.00519400043413043, + -0.0016852524131536484, + 0.028306974098086357, + 0.02402801252901554, + -0.04210497811436653, + -0.013600513339042664, + -0.014838120900094509, + -0.053164444863796234, + -0.030123885720968246, + -0.0003908666258212179, + -0.010309005156159401, + -0.007010912988334894, + 0.0014861160889267921, + -0.009499293752014637, + 0.02190828137099743, + 0.004275669809430838, + 0.024699479341506958, + -0.010592074133455753, + -0.0258185938000679, + -0.015140939503908157, + -0.0026035832706838846, + 0.04392189159989357, + 0.0037984007503837347, + -0.025344615802168846, + -0.008887073025107384, + 0.03104550950229168, + -0.0010121389059349895, + 0.003623950993642211, + 0.015048776753246784, + -0.0031549108680337667, + -0.0023057018406689167, + -0.0019452815176919103, + 0.021737122908234596, + 0.016655033454298973, + 0.008393346332013607, + 0.004693691153079271, + -0.026029249653220177, + 0.0076626320369541645, + 0.026081914082169533, + 0.007372979074716568, + -0.028359638527035713, + -0.015812406316399574, + 0.004499492235481739, + 0.001551123452372849, + -0.01927507482469082, + 0.022843068465590477, + -0.020565345883369446, + -0.009512459859251976, + -0.028254309669137, + 0.017405496910214424, + 0.015443758107721806, + 0.007221569772809744, + 0.019617391750216484, + 0.013054123148322105, + -0.021987278014421463, + -0.02701670303940773, + 0.002802719594910741, + -0.017668817192316055, + -0.00868299975991249, + 0.027885660529136658, + -0.0016580973751842976, + 0.024659981951117516, + -0.02226376347243786, + 0.024501990526914597, + -0.0030841436237096786, + 0.013587347231805325, + -0.019986039027571678, + -0.018221791833639145, + -0.009545374661684036, + 0.010414333082735538, + 0.01807696558535099, + -0.01732650026679039, + 0.02516029216349125, + -0.005595564376562834, + -0.01628638431429863, + -0.006833171937614679, + -0.007853539660573006, + 0.0021954362746328115, + -0.034995317459106445, + -0.0015815699007362127, + 0.007188654504716396, + -0.019907044246792793, + 0.00201604887843132, + -0.00019759337010327727, + 0.00472989771515131, + -0.01920924335718155, + 0.017774146050214767, + 0.18959088623523712, + -0.0020045286510139704, + -0.001737916492857039, + 0.01940673403441906, + -0.008413095958530903, + -0.012961960397660732, + 0.029491916298866272, + -0.003699655644595623, + -0.005147919524461031, + 0.018748432397842407, + -0.015746576711535454, + 0.012751304544508457, + 0.017629319801926613, + 0.0007451152196153998, + -0.002634852658957243, + -0.0076626320369541645, + -0.0333627313375473, + 0.0017181674484163523, + 0.0021263144444674253, + 0.01391649805009365, + 0.02489697001874447, + -0.025463109835982323, + -5.1275532314321026e-05, + -0.012705222703516483, + 0.027069365605711937, + 0.010282672941684723, + -0.005533026065677404, + -0.010605240240693092, + 0.03802350535988808, + 0.008215605281293392, + -0.004170341417193413, + 0.005964213516563177, + -0.0011964633595198393, + -0.017708316445350647, + 0.007076743524521589, + 0.007326898165047169, + 0.014798622578382492, + -0.017708316445350647, + 0.032625433057546616, + 0.025147125124931335, + -0.005533026065677404, + -0.0019930084235966206, + 0.0036042018327862024, + -0.009486127644777298, + -0.012382655404508114, + 0.020565345883369446, + -0.00469039985910058, + 0.0006360840052366257, + 0.005042591132223606, + -0.013376690447330475, + -0.015154105611145496, + -0.01807696558535099, + 0.026279404759407043, + 0.03797084093093872, + -0.016497040167450905, + 0.007846956141293049, + 0.018063798546791077, + -0.022290095686912537, + 0.009361050091683865, + 0.0090187331661582, + -0.04168366268277168, + 0.024686314165592194, + -0.006283489987254143, + 0.034995317459106445, + -0.02090766280889511, + 0.005305911879986525, + -0.03612759709358215, + 0.02509446069598198, + 0.0030199592001736164, + -0.0058193872682750225, + -0.018458779901266098, + -0.023317046463489532, + -0.015417425893247128, + 0.008959486149251461, + -0.01626005209982395, + -0.0239885151386261, + 0.0008656667196191847, + -0.004805602598935366, + 0.026345234364271164, + 0.014179819263517857, + -0.00900556705892086, + 0.015654414892196655, + 0.004213131032884121, + -0.03104550950229168, + -0.0037523198407143354, + -0.042631618678569794, + 0.03325740247964859, + -0.00612878892570734, + -0.017208006232976913, + -0.028754618018865585, + -0.006346028298139572, + 0.01032217126339674, + 0.0020012371242046356, + -0.0202888585627079, + 0.019077584147453308, + 0.009683618322014809, + 0.010717151686549187, + 0.01433781161904335, + -0.003386962227523327, + 0.008156358264386654, + -0.017866307869553566, + 0.055929314345121384, + 0.028096316382288933, + -0.02681921236217022, + 0.00755730364471674, + 0.00682658888399601, + -0.0037720687687397003, + 0.01973588578402996, + 0.009255722165107727, + -0.018880093470215797, + 0.0016951268771663308, + -0.03894512727856636, + 0.010638155974447727, + 0.00047356580034829676, + 0.0052795796655118465, + 0.00991402380168438, + -0.002554210601374507, + -0.01302120741456747, + 0.007925952784717083, + -0.008577670902013779, + -0.021052489057183266, + 0.01651020720601082, + 0.004236171487718821, + 0.0014244003687053919, + 0.01552275475114584, + -0.015470090322196484, + -0.0486353300511837, + 0.00470685726031661, + -0.021434303373098373, + -0.0016770235961303115, + 0.021697623655200005, + -0.026160910725593567, + -0.005381616298109293, + 0.009433463215827942, + 0.010262923315167427, + 0.017734648659825325, + 0.010855395346879959, + -0.044422198086977005, + 0.010539410635828972, + 0.01768198423087597, + 0.00938079971820116, + -0.009407131001353264, + 0.0008623752510175109, + -0.013212115503847599, + 0.015325264073908329, + 0.016602369025349617, + 0.02119731530547142, + -0.002978815231472254, + -0.02635839954018593, + -0.014311479404568672, + -0.001810329733416438, + -0.007919369265437126, + -0.01622055470943451, + -0.010638155974447727, + 0.036259256303310394, + 0.004065013024955988, + -0.020697005093097687, + -0.030676860362291336, + 0.007399311289191246, + 0.016431210562586784, + -0.023791024461388588, + 0.008103693835437298, + -0.010137846693396568, + -0.019301407039165497, + -0.0063361539505422115, + 0.009551958180963993, + -0.1655760407447815, + 0.01066448725759983, + 0.020881330594420433, + -0.04658142849802971, + 0.006141955032944679, + -0.006964832078665495, + -0.010203676298260689, + -0.004634444136172533, + -0.03573261573910713, + -0.0175239909440279, + 0.03791818022727966, + 0.004621278028935194, + -0.010973889380693436, + -0.0006085176137275994, + 0.005480361636728048, + 0.013040957041084766, + -0.018327118828892708, + 0.034547675400972366, + 0.03175647556781769, + 0.018458779901266098, + 0.006428316235542297, + -0.033731378614902496, + 0.017379164695739746, + -0.0010409395908936858, + 0.004756229929625988, + -0.01391649805009365, + -0.018419282510876656, + 0.009446629323065281, + 0.007208403665572405, + -0.027622340247035027, + -0.012652559205889702, + 0.004186798818409443, + 0.03833949193358421, + -0.010559159331023693, + -0.0010195447830483317, + -0.011698021553456783, + 0.013903331942856312, + -0.013172617182135582, + -0.025634268298745155, + 0.029992226511240005, + 0.026213573291897774, + -0.014232482761144638, + -0.020815499126911163, + 0.0004854974977206439, + -0.04352691024541855, + 0.001232669921591878, + 0.027517011389136314, + 0.012218079529702663, + -0.015140939503908157, + 0.009209641255438328, + 0.0017263962654396892, + -0.003298091469332576, + 0.007846956141293049, + 0.012606477364897728, + 0.011987674050033092, + 0.036548912525177, + 0.012889547273516655, + 0.02057851105928421, + -0.007767959963530302, + -0.00848550908267498, + -0.007320315111428499, + -0.01441680733114481, + 0.011177962645888329, + 0.013350358232855797, + -0.012244411744177341, + -0.022843068465590477, + 0.023172220215201378, + 0.009591455571353436, + -0.0004190501931589097, + 0.0020275693386793137, + -0.010743483901023865, + -0.0011553195072337985, + 0.01969638653099537, + -0.001216212403960526, + 0.002308993134647608, + 0.003643699921667576, + -0.008998984470963478, + 0.005839135963469744, + 0.0015881528379395604, + 0.0019436357542872429, + -0.02321171760559082, + 0.05740390717983246, + -0.025239286944270134, + -0.01038800086826086, + -0.012580146081745625, + -0.006000420078635216, + 0.018406115472316742, + -0.014838120900094509, + 0.011105549521744251, + -0.0017642485909163952, + 0.015022444538772106, + -0.03144048899412155, + -0.028780950233340263, + -0.01801113411784172, + -0.0011289874091744423, + -0.013534682802855968, + 0.008584254421293736, + -0.014772290363907814, + -0.010440665297210217, + -0.031387824565172195, + 0.004400746896862984, + -0.009486127644777298, + -0.021921446546912193, + -0.017932139337062836, + 0.002499900758266449, + 0.015693912282586098, + -0.02336971089243889, + 7.189888856373727e-05, + 0.030439870432019234, + -0.011382036842405796, + -0.020565345883369446, + -0.013317443430423737, + 0.022711409255862236, + -0.00212466879747808, + -0.013587347231805325, + 0.009519042447209358, + 0.01931457221508026, + -0.013574181124567986, + -0.00426579499617219, + -0.006099165417253971, + 0.03894512727856636, + -0.0009874525712803006, + -0.021315809339284897, + 0.011658523231744766, + 0.004805602598935366, + -0.019709553569555283, + -0.0955854058265686, + 0.005105129908770323, + 0.017089512199163437, + 0.024041177704930305, + 0.015535919927060604, + 0.009479545056819916, + -0.01677352748811245, + 0.01566758006811142, + 0.01537792757153511, + 0.006365777458995581, + -0.047055404633283615, + -0.026713883504271507, + 0.004555447958409786, + -0.001186588779091835, + 0.01079614832997322, + -0.024462491273880005, + -0.015246267430484295, + -0.023356543853878975, + -0.011632191017270088, + 0.028517629951238632, + 0.017273837700486183, + -0.01373217348009348, + -0.004845100454986095, + -0.01589140295982361, + -0.007596801500767469, + -0.007840373553335667, + -0.022711409255862236, + -0.002302410313859582, + 0.014587965793907642, + 0.009466378949582577, + 0.022145269438624382, + -0.025805426761507988, + 0.03049253486096859, + -0.037470534443855286, + 0.009993019513785839, + 0.009828444570302963, + -0.0009570061229169369, + -0.021144650876522064, + 0.007221569772809744, + -0.02857029438018799, + -0.010256340727210045, + -0.003986016847193241, + 0.026569057255983353, + -0.023791024461388588, + 0.0021180857438594103, + -0.022132104262709618, + -0.016075728461146355, + 0.00343304337002337, + -0.010045683942735195, + -0.026424231007695198, + -0.033468060195446014, + -0.010769816115498543, + 0.012329990975558758, + 0.02431766502559185, + 0.01290929690003395, + 0.01830078661441803, + 0.010861977934837341, + -0.004459993913769722, + -0.00497346930205822, + -0.001472950098104775, + -0.01940673403441906, + 0.005529734306037426, + -0.03768118843436241, + 0.03275709226727486, + -0.00010985409608110785, + -0.016181055456399918, + -0.014601131901144981, + -0.009163559414446354, + 0.001043408177793026, + -0.02077600173652172, + -0.028254309669137, + 0.0065797255374491215, + -0.0033935452811419964, + -0.00176754011772573, + -0.033731378614902496, + -0.0037852348759770393, + -0.03752319887280464, + -0.021105153486132622, + 0.008544756099581718, + -0.015048776753246784, + -0.017405496910214424, + -0.021526465192437172, + 0.026911374181509018, + -0.0032289698719978333, + 0.012448485009372234, + 0.01869576796889305, + 0.004255920648574829, + -0.03149315342307091, + 0.01914341375231743, + -0.016931520774960518, + 0.007570469751954079, + -0.012764469720423222, + 0.003288217121735215, + -0.003077560570091009, + -0.009894275106489658, + 0.0017988093895837665, + 0.00306439446285367, + -0.0062143681570887566, + 0.00015326087304856628, + 0.004552156198769808, + -0.038734473288059235, + -0.003400128334760666, + -0.03723354637622833, + 0.017023682594299316, + 0.023527702316641808, + -0.008623752743005753, + -0.012882964685559273, + -0.004960303194820881, + 0.00917014293372631, + 0.011421534232795238, + -0.002386343665421009, + -0.0044797430746257305, + 0.002419258700683713, + 0.014311479404568672, + 0.0036009103059768677, + -0.002689162502065301, + -0.012316824868321419, + -0.01654970459640026, + 0.0037720687687397003, + 0.013482019305229187, + 0.018669435754418373, + 0.002091753762215376, + -0.007458558306097984, + 0.002610166324302554, + -0.007030662149190903, + 0.004693691153079271, + -0.02730635553598404, + 0.004657484591007233, + -0.0068529206328094006, + -0.0020983365830034018, + -0.00037975781015120447, + -0.012580146081745625, + 0.0017313334392383695, + 0.004377706442028284, + -0.025120792910456657, + 0.006540227681398392, + -0.007695546839386225, + -0.00212960597127676, + 0.0061748698353767395, + 0.02978156879544258, + 0.00967045221477747, + 0.0573512464761734, + -0.020657507702708244, + -0.025805426761507988, + 0.01462746411561966, + -0.0333627313375473, + -0.0034264603164047003, + -0.007030662149190903, + -0.016799859702587128, + -0.008130026049911976, + 0.011546611785888672, + -0.025041796267032623, + 0.0360749326646328, + 0.008465760387480259, + -0.005477070342749357, + -0.009064814075827599, + 0.0141271548345685, + -0.024172838777303696, + 3.859808202832937e-05, + 0.01982804760336876, + -0.005862176883965731, + -0.029070602729916573, + 0.03225678205490112, + 0.0004237817192915827, + 0.020341522991657257, + 0.011335955001413822, + 0.020881330594420433, + -0.02035468816757202, + -0.03488999232649803, + 0.009986436925828457, + 0.017484493553638458, + -0.01511460728943348, + -0.024699479341506958, + -0.004970178008079529, + 0.015417425893247128, + 0.03960343077778816, + -0.014061324298381805, + -0.009723116643726826, + 0.035126980394124985, + 0.00848550908267498, + 0.013126536272466183, + 0.035153310745954514, + 0.016141558066010475, + 0.019814880564808846, + -0.031256165355443954, + -0.010954140685498714, + 0.015812406316399574, + 0.0071359905414283276, + -0.002845509210601449, + -0.005302620120346546, + -0.0009273825562559068, + 0.006085999310016632, + 0.023382876068353653, + 0.007491473574191332, + 0.005345409736037254, + -0.003253656206652522, + 0.015285765752196312, + 0.013890165835618973, + 0.01462746411561966, + -0.015167271718382835, + 0.0067410096526145935, + 0.04318459331989288, + 0.0034165859688073397, + 0.003153265221044421, + 0.0009339655516669154, + -0.03752319887280464, + -0.016181055456399918, + -0.002541044494137168, + 0.006721260491758585, + -0.03022921457886696, + 0.0021180857438594103, + 0.019749050959944725, + -0.02159229665994644, + 0.021631794050335884, + 0.004578488413244486, + -0.012356323190033436, + -0.017958471551537514, + 0.042078644037246704, + -0.017760980874300003, + -0.01726067066192627, + -0.02704303339123726, + -7.123030081856996e-05, + 0.026569057255983353, + 0.0054013654589653015, + 0.007873288355767727, + 0.019196078181266785, + 0.02217160165309906, + 0.023777857422828674, + 0.008821242488920689, + -0.014271981082856655, + 0.016246886923909187, + -0.009229389950633049, + 0.024528320878744125, + -0.012869798578321934, + -0.018550941720604897, + -0.01462746411561966, + -0.02197411097586155, + -0.007524388376623392, + 0.010137846693396568, + 0.017629319801926613, + 0.020749669522047043, + 0.1048542931675911, + 0.013982328586280346, + -0.005533026065677404, + -0.005128170363605022, + -0.0046015288680791855, + 0.016036229208111763, + 0.014732792042195797, + 0.016075728461146355, + 0.0045883627608418465, + -0.05829919874668121, + -0.003883979981765151, + -0.006905585061758757, + 0.012889547273516655, + -0.02308005839586258, + -0.007906203158199787, + 0.011632191017270088, + -0.00048632037942297757, + 0.013429354876279831, + -0.004055138677358627, + 0.031019177287817, + 0.033599719405174255, + -0.016602369025349617, + 0.03144048899412155, + 0.021381638944149017, + -0.03394203633069992, + -0.020433684810996056, + 0.018945923075079918, + -0.011401785537600517, + -0.016167890280485153, + 0.013863833621144295, + -0.015338430181145668, + 0.0013355296105146408, + -0.060774412006139755, + -0.009091146290302277, + 0.0208023339509964, + -0.0029821067582815886, + -0.01537792757153511, + -0.016720863059163094, + 0.010717151686549187, + -0.01723433844745159, + 0.023224884644150734, + 0.014587965793907642, + -0.019222410395741463, + -0.038866132497787476, + 0.0021361890248954296, + -0.008202439174056053, + 0.01277763582766056, + -0.021526465192437172, + -0.04300026595592499 + ], + "metadata": { + "source": "Kreye_Marieke_BA_241_V2.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 17, + "has_images": true, + "image_count": 98, + "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", + "links": [], + "last_modified": "2025-05-05T23:00:23", + "_known_field_names": "frozenset({'is_continuation', 'sent_to', 'header_footer_type', 'email_message_id', 'filename', 'languages', 'detection_class_prob', 'sent_from', 'link_texts', 'cc_recipient', 'subject', 'image_mime_type', 'image_path', 'filetype', 'page_number', 'last_modified', 'signature', 'detection_origin', 'text_as_html', 'attached_to_filename', 'bcc_recipient', 'data_source', 'link_start_indexes', 'category_depth', 'emphasized_text_tags', 'parent_id', 'orig_elements', 'page_name', 'coordinates', 'url', 'link_urls', 'file_directory', 'links', 'table_as_cells', 'emphasized_text_contents', 'key_value_pairs', 'image_base64'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "Kreye_Marieke_BA_241_V2.pdf", + "detection_class_prob": 0.3422867953777313, + "parent_id": "e02392183bc6851689602ad4b9f6039f", + "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", + "id": "ce00eae5-7e07-454f-9e4f-f79ac36f92f4", + "processing_timestamp": "2025-05-05T23:15:46.977945", + "chunk_number": 43, + "total_chunks": 56, + "chunking_strategy": "hybrid", + "word_count": 392 + } +} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000044.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000044.json new file mode 100644 index 0000000000000000000000000000000000000000..49f9efeda37ad51010db23e47bdd01f8da7b4998 --- /dev/null +++ b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000044.json @@ -0,0 +1,1570 @@ +{ + "id": "61a115b2-0ff7-441a-f6d9-eb3d00000044", + "content": "Hingegen wirkt sich eine zunehmende Verschattung positiv auf den K\u00fchlbedarf der Geb\u00e4ude aus, da dieser mit Erh\u00f6hung des Gr\u00fcnanteils sinkt. So kann bei einem etwa 40 ha gro\u00dfen Untersuchungsgebiet mit einer Zunahme des Heizbedarfs von 50 MWh hingegen mit einer Reduktion des K\u00fchlbedarfs von 140 MWh bei einer Erh\u00f6hung des Baumbestands um 500 B\u00e4umen gerechnet werden. In Summe verringert sich der thermische Geb\u00e4udeenergiebedarf, da sich der K\u00fchlbedarf \u00fcber das Jahr st\u00e4rker reduziert als sich der Heizbedarf erh\u00f6ht. Dies f\u00fchrt in diesem Gebiet zu einer Reduktion der j\u00e4hrlichen gesamten CO2e-Emissionen um 5 t. Trotz der geringen Auswirkungen auf den thermischen Geb\u00e4udeenergiebedarf ist der Mehrwert f\u00fcr den Stra\u00dfenraum nicht au\u00dfer Acht zu lassen. Ein gr\u00f6\u00dferes Bl\u00e4tterdach reduziert die eintreffende solare Strahlung. Die verminderte Absorption der einfallenden Strahlung durch dunkle Stra\u00dfenoberfl\u00e4chen und Geb\u00e4udefassaden reduziert die Temperatur in der Stadt und wirkt dem W\u00e4rmeinseleffekt entgegen. Ein deutlich gr\u00f6\u00dferer Effekt eines steigenden Gr\u00fcnanteils ist bei der Evapotranspiration zu verzeichnen. Je mehr neue B\u00e4ume gepflanzt werden, desto gr\u00f6\u00dfer ist die Energiemenge, die durch Evapotranspiration dem urbanen Raum entzogen wird. Dieser Entzug ist durch \u201eVerdunstungsk\u00e4lte\u201c sp\u00fcrbar. Je nach gew\u00e4hltem Gebietsausschnitt und der Anzahl der neu gepflanzten B\u00e4ume kann im Jahresmittel mit einer Temperaturabsenkung von bis zu 8 Kelvin gerechnet werden. Der Prozess der Simulationsdurchf\u00fchrungen hat gezeigt, dass der modellhafte Ansatz einem logischen Aufbau folgt. Dennoch wurde deutlich, dass die Praktikabilit\u00e4t stark von der Datenverf\u00fcgbarkeit und -qualit\u00e4t abh\u00e4ngt. Es ist anzumerken, dass im jetzigen Zustand noch zu gro\u00dfe Abweichungen zwischen Modell und Realit\u00e4t auftreten, um den Planungsprozess optimal und ohne gro\u00dfe Datenbereinigung unterst\u00fctzen zu k\u00f6nnen. Zusammenfassend kann festgehalten werden, dass ohne eine Verhaltens\u00e4nderung der Bev\u00f6lkerung und einem Wandel in dem Mobilit\u00e4tsverhalten in st\u00e4dtischen Bereichen kaum Potentiale f\u00fcr das Pflanzen neuer B\u00e4ume bestehen. Die positiven Auswirkungen und der vielseitige Mehrwert von Stadtgr\u00fcn wurden durch die Simulationen verdeutlicht. Aus den Ergebnissen der Simulationen kann festgehalten werden, dass sich ein steigender Gr\u00fcnanteil zwar nur geringf\u00fcgig, aber in der Gesamtbetrachtung positiv auf den Geb\u00e4udeenergiebedarf auswirkt. Dies f\u00fchrt zu verminderten CO2e-Emissionen und sinkenden Energiekosten. Die Erh\u00f6hung des Gr\u00fcnanteils hat auf das Mikroklima des\n55\nFazit\nurbanen Raums eine deutlich gr\u00f6\u00dfere Auswirkung als auf den thermischen Geb\u00e4udeenergiebedarf. Durch eine zunehmende Temperaturabsenkung durch Verschattung und Evapotranspiration wird der thermische Komfort der Bev\u00f6lkerung, vor allem in den Sommermonaten, sichergestellt. Dies steigert die Aufenthaltsqualit\u00e4t im Freien und die Lebensqualit\u00e4t in der Stadt. Es wird deutlich, dass schon bei geringsten Mobilit\u00e4tsver\u00e4nderungen Auswirkungen von Stadtgr\u00fcn auf die bebaute Umgebung und die klimatischen Bedingungen in der Stadt zu verzeichnen sind. Somit stellt eine Erh\u00f6hung des urbanen Gr\u00fcns durch das Pflanzen von neuen Stadtb\u00e4umen einen essenziellen Schl\u00fcssel f\u00fcr eine nachhaltige Stadtentwicklung dar. Au\u00dferdem hat diese Arbeit verdeutlicht, dass verschiedene Wechselwirkungen im System Stadt existieren. Es ist also unabdingbar in zuk\u00fcnftigen Planungsprozessen eine ganzheitliche Planung zu verfolgen und verst\u00e4rkt die Komponente der \u00d6kologie mit in die Stadtentwicklung zu integrieren. So ist es m\u00f6glich St\u00e4dte nach den geltenden Leitbildern der gegenw\u00e4rtigen Stadtentwicklung an die prognostizierten klimatischen Bedingungen anzupassen und klimaresilient zu gestalten.", + "embedding": [ + 0.0215414110571146, + -0.003821547841653228, + 0.02074647694826126, + -0.028435183688998222, + 0.00680255051702261, + 0.01673271134495735, + -0.028852198272943497, + -0.0037107784301042557, + -0.009219932369887829, + -0.02906070463359356, + 0.005085623357445002, + 0.009532692842185497, + -0.007734317798167467, + 0.014595511369407177, + -0.0005611778469756246, + -0.00047443556832149625, + 0.04472481459379196, + 0.0016656150110065937, + 0.0215414110571146, + 0.010627356357872486, + -0.007551874034106731, + 0.0151949692517519, + 0.009904096834361553, + -0.004280915483832359, + -0.00399747584015131, + 0.020668286830186844, + 0.03440370410680771, + -0.03375212103128433, + -0.007291239686310291, + 0.003134125377982855, + 0.013618133030831814, + -0.016459045931696892, + -0.02215390093624592, + -0.005114944651722908, + -0.013344467617571354, + -0.0006996397278271616, + 0.004583902657032013, + -0.0013634422793984413, + 0.02048584260046482, + -0.006069517228752375, + 0.01700637675821781, + -0.025646397843956947, + -0.0013235326623544097, + -0.008490156382322311, + 0.011689440347254276, + 0.0118393050506711, + 0.01239966880530119, + -0.01651117205619812, + -0.029425593093037605, + 0.02237544022500515, + 0.02851337380707264, + 0.03599357232451439, + -0.008594410493969917, + 0.0072456286288797855, + -0.019912447780370712, + -0.0003872860106639564, + -0.029946861788630486, + 0.00970862153917551, + -0.0025232641492038965, + -0.018700499087572098, + -0.009017940610647202, + -0.01840076968073845, + -0.009565272368490696, + 0.011982654221355915, + -0.034481894224882126, + -0.013279308564960957, + -0.021762950345873833, + -0.010549166239798069, + 0.007773412857204676, + -0.01596383936703205, + 0.027079885825514793, + 0.046992331743240356, + 0.01678483746945858, + -0.004860826302319765, + 0.008223006501793861, + -0.008007983677089214, + 0.004091955721378326, + 0.0038899644277989864, + -0.010542650707066059, + 0.0044894227758049965, + 0.0072977556847035885, + -0.03119790554046631, + -0.027288392186164856, + 0.05170981213450432, + 0.01919570378959179, + 0.01678483746945858, + -0.013943925499916077, + 0.026167666539549828, + 0.010764189064502716, + 0.0186353400349617, + 0.01346175279468298, + 0.010575229302048683, + 0.001496202778071165, + 0.015038589015603065, + -0.002650323323905468, + 0.002348965033888817, + 0.010581745766103268, + -0.00030665233498439193, + 0.024708114564418793, + -0.011402742937207222, + -0.029347402974963188, + 0.0020476067438721657, + -0.016380853950977325, + -0.0026519522070884705, + -0.02799210511147976, + 0.004013765603303909, + -0.001444890396669507, + 0.014556416310369968, + 0.01761886663734913, + -0.035055290907621384, + -0.025372732430696487, + 0.03906905651092529, + -0.026324046775698662, + -0.027053821831941605, + 0.015403476543724537, + -0.0282527394592762, + 0.02479933761060238, + 0.01200220175087452, + -0.012784103862941265, + -0.004212499130517244, + 0.019599685445427895, + -0.0043558478355407715, + -0.0022593720350414515, + -0.009747716598212719, + 0.022766390815377235, + 0.02560730278491974, + 0.0068481615744531155, + -0.004502454772591591, + -0.03909511864185333, + -0.029347402974963188, + -0.026793187484145164, + 0.012556049041450024, + -0.00029972923221066594, + 0.010796768590807915, + -0.019299957901239395, + 0.03247501328587532, + -0.0024955717381089926, + -0.0017446196870878339, + -0.024369290098547935, + -0.04691414162516594, + -0.017775246873497963, + 0.014413067139685154, + -0.029399529099464417, + -0.025633366778492928, + 0.0007452507270500064, + 0.0314585380256176, + 0.014360940083861351, + 0.02447354421019554, + -0.0025037166196852922, + -0.025985222309827805, + -0.0020883309189230204, + -0.010008350014686584, + 0.014582479372620583, + -0.007825539447367191, + 0.00931767001748085, + 0.001283623045310378, + -0.00825558602809906, + 0.00010257378016831353, + -0.03197980672121048, + 0.023053089156746864, + 0.03187555447220802, + -0.022987930104136467, + 0.010132151655852795, + 0.0007558389916084707, + 0.020629191771149635, + -0.0034631758462637663, + 0.0005338927148841321, + -0.004811957478523254, + 0.014009084552526474, + -0.022232091054320335, + 0.006655944045633078, + 0.03143247589468956, + -0.03776588663458824, + 0.023639515042304993, + 0.0023571099154651165, + 0.01787950098514557, + -0.00459693418815732, + 0.028330929577350616, + 0.00040235393680632114, + -0.02848730981349945, + -0.02455173432826996, + 0.007832055911421776, + 0.008053594268858433, + 0.02767934463918209, + -0.0306245107203722, + -0.005906620994210243, + 0.02960803732275963, + 0.020655253902077675, + -0.0027431740891188383, + 0.0024222685024142265, + 0.004069150425493717, + 0.0048054419457912445, + 0.007623548153787851, + -0.01969090849161148, + -0.6296920776367188, + 0.02877400815486908, + 0.010477491654455662, + -0.009552240371704102, + 0.013259761035442352, + 0.018531085923314095, + 0.041701462119817734, + 0.01731913723051548, + -0.011005275882780552, + 0.010959665291011333, + 0.006548432633280754, + 0.0072456286288797855, + -0.011142108589410782, + 0.012217224575579166, + 0.013162023387849331, + -0.01701940782368183, + 0.01091405376791954, + -0.009773779660463333, + 0.026949569582939148, + 0.01038626953959465, + -0.011630797758698463, + 0.01372238714247942, + -0.004205983132123947, + -0.00044592871563509107, + 0.024968748912215233, + 0.024160783737897873, + -0.007819023914635181, + -0.031614918261766434, + -0.005316936410963535, + 0.019299957901239395, + 0.012692881748080254, + 0.03604570031166077, + -0.012829714454710484, + 0.017905564978718758, + 0.06208305060863495, + 0.026571650058031082, + 0.0004149783926550299, + 0.003417565021663904, + -0.003080369671806693, + -0.0019384663319215178, + -0.023040056228637695, + -0.009206900373101234, + 0.007779928855597973, + -0.00466209277510643, + 0.0048054419457912445, + 0.017970722168684006, + 0.03614995256066322, + -0.023092184215784073, + -0.010184278711676598, + -0.009252511896193027, + 0.018035881221294403, + 0.008170879445970058, + 0.007538842037320137, + -0.0029907766729593277, + 0.010255953297019005, + 0.011402742937207222, + 0.026180697605013847, + -0.008959298022091389, + -0.00826210156083107, + -0.002950052497908473, + -0.005056302063167095, + 0.0069654472172260284, + -0.011715504340827465, + -0.024095624685287476, + -0.025372732430696487, + 0.04550671949982643, + -0.028174549341201782, + -0.01730610616505146, + 0.0016599135706201196, + -0.016185378655791283, + -0.01329885609447956, + 0.00824907049536705, + 0.00465557724237442, + -0.011637314222753048, + 0.01656329818069935, + 0.00020769282127730548, + 0.04420354962348938, + -0.014934335835278034, + -0.03067663684487343, + 0.03515954315662384, + -0.0010132151655852795, + -0.02345707081258297, + -0.014491257257759571, + -0.0011573784286156297, + 0.01160473469644785, + -0.02532060630619526, + -0.01574230194091797, + -0.00765612768009305, + -0.00639856792986393, + 0.005743724759668112, + 0.01914357580244541, + 0.02393924444913864, + -0.015286191366612911, + -0.029451657086610794, + -0.0046229977160692215, + 0.03870416805148125, + -0.005851236172020435, + 0.02986867167055607, + 0.004561097361147404, + -0.04584554210305214, + -0.020915888249874115, + 0.004495938774198294, + 0.015781396999955177, + 0.017657961696386337, + 0.009519661776721478, + -0.007473683450371027, + -0.0011068806052207947, + 0.0015035331016406417, + 0.03654090315103531, + -0.01545560359954834, + -0.0014090532204136252, + -0.008333776146173477, + -0.0046067084185779095, + -0.013631165027618408, + -0.00011626725608948618, + -0.01894810050725937, + 0.03776588663458824, + -0.010321111418306828, + 0.01360510103404522, + 0.01974303461611271, + 0.02215390093624592, + 0.00021298695355653763, + 0.009011425077915192, + -0.028852198272943497, + 0.00720001757144928, + 0.030416002497076988, + 0.00037812310620211065, + -0.0019694166257977486, + -0.022505756467580795, + -0.017657961696386337, + 0.001676203217357397, + 0.018505023792386055, + 0.037948329001665115, + 0.001075930311344564, + 0.04576735198497772, + 0.003411049023270607, + 0.03354361280798912, + -0.003788968548178673, + -0.0012901389272883534, + -0.01969090849161148, + -0.008346808142960072, + -0.0005363361560739577, + 0.011291973292827606, + -0.015507730655372143, + -0.009897581301629543, + -0.0064441789872944355, + -0.020081859081983566, + 0.007467167917639017, + -0.022036615759134293, + 0.005310420412570238, + -0.024395354092121124, + -0.01160473469644785, + -0.00998228695243597, + 0.008216490969061852, + 0.006408341694623232, + 0.01346175279468298, + 0.0007676489767618477, + -0.023013994097709656, + -0.011089982464909554, + -0.0202382393181324, + 0.00673087639734149, + 0.022166932001709938, + -0.02900857850909233, + 0.0045415498316287994, + -0.032631393522024155, + -0.013487815856933594, + -0.0016517688054591417, + 0.013983020558953285, + -0.021189553663134575, + -0.027783598750829697, + -0.0023619967978447676, + -0.03247501328587532, + 0.014100306667387486, + 0.010001834481954575, + -0.030442066490650177, + -0.02958197332918644, + -0.0314585380256176, + -0.005470058880746365, + -0.006958931218832731, + 0.0028506857343018055, + 0.021658696234226227, + -0.006919836159795523, + -0.013644196093082428, + -0.01593777723610401, + 0.01372238714247942, + 0.012301931157708168, + 0.02234937623143196, + 0.00983893871307373, + -0.0066592018119990826, + 0.0019172898028045893, + 0.021241681650280952, + 0.04266580566763878, + 0.002059009624645114, + 0.013259761035442352, + -0.00266009708866477, + -0.030833017081022263, + -0.0009285090491175652, + 0.021893266588449478, + -0.018231356516480446, + 0.0019286925671622157, + 0.024916622787714005, + -0.00269593414850533, + 0.025503048673272133, + -0.007623548153787851, + 0.013285825029015541, + -0.022779421880841255, + 0.01731913723051548, + 0.004131050780415535, + 0.010060477070510387, + 0.0044210064224898815, + 0.021163491532206535, + -0.007069700863212347, + -0.03033781237900257, + -0.00014558859402313828, + -0.0003243673127144575, + 0.047044459730386734, + -0.027288392186164856, + -0.006704812869429588, + -0.00032619989360682666, + -0.027027759701013565, + 0.018465928733348846, + -0.017436422407627106, + 0.011982654221355915, + -0.018283484503626823, + -0.008711695671081543, + 0.020029732957482338, + -0.002710595028474927, + 0.022258155047893524, + 0.0013121298979967833, + -0.014686733484268188, + -0.01601596735417843, + 0.006952415220439434, + -0.014204559847712517, + 0.006401825696229935, + 0.00725866062566638, + 0.018439864739775658, + 0.021358966827392578, + -0.02715807594358921, + 0.0323968231678009, + 0.010001834481954575, + 0.014882208779454231, + 0.03257926553487778, + 0.00419295160099864, + -0.019612718373537064, + 0.02958197332918644, + 0.01570320688188076, + 0.02369164302945137, + 0.02429109998047352, + -0.0030217268504202366, + 0.022779421880841255, + -0.00971513707190752, + 0.012067359872162342, + 0.013787545263767242, + -0.013090348802506924, + 0.012301931157708168, + -0.016980312764644623, + 0.023352818563580513, + -0.006926351692527533, + 0.03278777375817299, + 0.023874085396528244, + 0.014908271841704845, + 0.007102279923856258, + 0.015598952770233154, + -0.009017940610647202, + -0.006160739343613386, + -0.001676203217357397, + 0.004205983132123947, + -0.021202586591243744, + -0.004613223951309919, + -0.004971595946699381, + 0.01679787039756775, + -0.005655760411173105, + -0.015572888776659966, + -0.005388610530644655, + -0.005616665352135897, + 0.012692881748080254, + -0.0008869704906828701, + 0.014113337732851505, + -0.00266824197024107, + 0.004697930067777634, + 0.005766530055552721, + -0.006092322524636984, + -0.014543384313583374, + 0.03325691446661949, + -0.012347541749477386, + -0.01789253205060959, + -0.004997659474611282, + 0.00719350203871727, + -0.00824907049536705, + -0.009167805314064026, + -0.02075950801372528, + -0.019795162603259087, + -0.02822667546570301, + -0.004574128892272711, + 0.006515853106975555, + -0.02508603408932686, + 0.015807459130883217, + -0.009219932369887829, + 0.02318340539932251, + 0.009676042012870312, + 0.010334143415093422, + -0.0018260678043588996, + -0.02529454231262207, + -0.0011068806052207947, + 0.0383392795920372, + 0.008626990020275116, + -0.0033344877883791924, + -0.006662460044026375, + -0.00028791927616111934, + -0.011819757521152496, + -0.01320111844688654, + -0.006717844400554895, + -0.0026747577358037233, + 0.016693616285920143, + -0.0074345883913338184, + 0.005000917240977287, + -0.0007696851389482617, + -0.0031048040837049484, + 0.049911435693502426, + 0.006789518985897303, + -0.003033129731193185, + -0.023652546107769012, + -0.004508970305323601, + 0.005531959235668182, + 0.036905791610479355, + 0.020381588488817215, + 0.0012632610742002726, + 0.009956223890185356, + 0.009891064837574959, + -0.00739549333229661, + 0.00010170839232159778, + -0.02986867167055607, + -0.02027733437716961, + -0.014139401726424694, + 5.360307477531023e-05, + -0.0040202816016972065, + 0.005535217467695475, + -0.022987930104136467, + 0.004147340543568134, + 0.007336850743740797, + 0.010412333533167839, + -0.02185417152941227, + 0.010060477070510387, + -0.001043351017870009, + -0.011774146929383278, + -0.009741200134158134, + -0.009878033772110939, + 0.052309270948171616, + 0.021893266588449478, + 0.024434449151158333, + 0.041988156735897064, + 0.014986461959779263, + 0.01373541820794344, + -7.299791468540207e-05, + -0.01129848975688219, + 0.009356765076518059, + 0.011539575643837452, + 0.02482539974153042, + -0.028721880167722702, + -0.004417748656123877, + 0.0052778408862650394, + -0.036071762442588806, + 0.022258155047893524, + 0.004841278772801161, + 0.024421418085694313, + 0.012301931157708168, + 0.007343366742134094, + -0.014191527850925922, + 0.01227586716413498, + -0.011715504340827465, + 0.004385169129818678, + 0.027001695707440376, + -0.017501581460237503, + -0.009799842722713947, + 0.019808193668723106, + -0.015116779133677483, + -0.023300690576434135, + -0.0028311382047832012, + -0.0066461702808737755, + -0.013357498683035374, + 0.0011272425763309002, + -0.005040012300014496, + 0.010418849065899849, + -0.013800577260553837, + -0.04018978402018547, + -0.025776715949177742, + 0.009304638020694256, + -0.02180204540491104, + -0.0029614553786814213, + 0.003024984849616885, + 0.002326159505173564, + -0.002562359208241105, + -0.015260128304362297, + 0.008066626265645027, + 0.0306245107203722, + -0.024838432669639587, + -0.028617627918720245, + 0.00759748462587595, + 0.019339052960276604, + 0.01707153581082821, + 0.012204192578792572, + 0.0016004564240574837, + 0.0016191895119845867, + -0.012823198921978474, + -0.019899414852261543, + -0.022714264690876007, + -0.00838590320199728, + -0.022427566349506378, + 0.002884893910959363, + 0.006854677572846413, + -0.016315696761012077, + -0.024916622787714005, + -0.015377413481473923, + 0.020459778606891632, + -0.00984545424580574, + -0.00553847523406148, + 0.013383562676608562, + 0.002857201499864459, + -0.0153122553601861, + 0.00030665233498439193, + 0.0048217312432825565, + 0.002492313738912344, + 0.030259622260928154, + -0.044594500213861465, + 0.022297250106930733, + 0.033204786479473114, + 0.010659935884177685, + -0.010594776831567287, + 0.011011791415512562, + -0.003753131488338113, + -0.02482539974153042, + -0.0017788278637453914, + -0.008092689327895641, + -0.014699764549732208, + 0.024382323026657104, + -0.03138034790754318, + 0.01836167462170124, + -0.006952415220439434, + -0.005079107359051704, + 0.012868810445070267, + 0.009513145312666893, + 0.009904096834361553, + 0.020694348961114883, + -0.003606524784117937, + -0.007584453094750643, + -0.04579341784119606, + 0.04905134439468384, + 0.009649978950619698, + 0.015377413481473923, + -0.00865956861525774, + -0.006756939925253391, + 0.0248123686760664, + -0.028018169105052948, + -0.006053227465599775, + -0.019260862842202187, + 0.002627517795190215, + 0.03148460388183594, + -0.0075127785094082355, + -0.038443535566329956, + -0.02075950801372528, + 0.006704812869429588, + 0.013109896332025528, + -0.04454237222671509, + 0.010301563888788223, + -0.04032009840011597, + 0.009949707426130772, + -0.003226976376026869, + 0.010347174480557442, + 0.015638047829270363, + -0.02687137760221958, + -0.0076952227391302586, + 0.0041017294861376286, + 0.014582479372620583, + 0.014100306667387486, + -0.024056529626250267, + -0.014152432791888714, + -0.019560590386390686, + 0.005890331231057644, + -0.023834990337491035, + -0.04227485507726669, + 0.0248123686760664, + -0.019756067544221878, + 0.022323312237858772, + 0.011272425763309002, + 0.02446051314473152, + -0.005701371468603611, + 0.027835724875330925, + -0.0009350249310955405, + -0.014009084552526474, + -0.012080391868948936, + -0.002526522148400545, + 0.008626990020275116, + -0.02263607457280159, + 0.029634099453687668, + -0.0027529478538781404, + 0.009799842722713947, + 0.0033719539642333984, + 0.021658696234226227, + 0.010093056596815586, + 0.02689744159579277, + -0.027835724875330925, + -0.02131987176835537, + -0.03200587257742882, + -0.008555315434932709, + -0.012028264813125134, + 0.020420683547854424, + -0.006558206398040056, + 0.009610883891582489, + -0.006571237929165363, + -0.0032302341423928738, + 0.031849488615989685, + -0.004000734072178602, + 0.00010293012019246817, + -0.005844720173627138, + 0.0031373833771795034, + -0.036123890429735184, + 0.02770540677011013, + 0.011187720112502575, + -0.011656861752271652, + -0.0006617663311772048, + -0.01704547181725502, + -0.017918596044182777, + -0.040867432951927185, + 0.026037348434329033, + -0.004108245484530926, + -0.004407974891364574, + 0.005131234414875507, + -0.012165097519755363, + -0.008320744149386883, + -0.006141191814094782, + 0.021684760227799416, + -0.023053089156746864, + 0.00944798719137907, + -0.012458311393857002, + -0.021371997892856598, + -0.012549533508718014, + 8.216083369916305e-05, + -0.019847288727760315, + 0.012608176097273827, + -0.011546092107892036, + -0.007812508381903172, + 0.03088514320552349, + -0.0006686894339509308, + 0.03674941137433052, + 0.02341797575354576, + -0.001200545928440988, + 0.03429945185780525, + 0.0035153029020875692, + 0.03171917423605919, + 0.01399605255573988, + -0.028409119695425034, + -0.009089615195989609, + -0.03789620101451874, + 0.000363462429959327, + -0.013103380799293518, + 0.009891064837574959, + -0.004225530661642551, + -0.004082181956619024, + -0.014295781962573528, + 0.007968888618052006, + 0.01343568880110979, + 0.004551323596388102, + -0.00016371080710086972, + 0.05332574248313904, + 0.022818516939878464, + 0.011155140586197376, + -0.019339052960276604, + -0.006427889224141836, + -0.014230622909963131, + -0.010021382011473179, + 0.0034957551397383213, + -0.011291973292827606, + 0.012380121275782585, + -0.010829348117113113, + 2.1761930838692933e-05, + 0.04204028472304344, + 0.006238929461687803, + 0.017905564978718758, + -0.012321478687226772, + -0.012288899160921574, + -0.005672050174325705, + -0.02453870326280594, + 0.0072977556847035885, + 0.023339785635471344, + 0.0017462486866861582, + 0.027887850999832153, + 0.007890698499977589, + -0.02448657713830471, + 0.01782737486064434, + -0.020981047302484512, + 0.017775246873497963, + 0.005760014057159424, + -0.014426099136471748, + 0.018061945214867592, + -0.0012437134282663465, + -0.0012665189569815993, + -0.00320254173129797, + 0.014061211608350277, + 0.03310053423047066, + 0.0022316796239465475, + -0.004818473476916552, + -0.004961822181940079, + -0.005284356884658337, + -0.011428805999457836, + -0.0006259291549213231, + 0.00799495168030262, + -0.013135960325598717, + 0.000849504373036325, + -0.011278942227363586, + -0.006887256633490324, + -0.013774513266980648, + -0.004877116065472364, + 0.021789012476801872, + -0.00878988578915596, + 0.007688706740736961, + 0.012204192578792572, + -0.007923277094960213, + 0.0266498401761055, + -0.010998760350048542, + -0.024173814803361893, + -0.023548293858766556, + 0.02343100868165493, + -0.03737493231892586, + 0.028565499931573868, + 0.04190996661782265, + 0.0035250766668468714, + 0.01492130383849144, + 0.014087274670600891, + -0.00878337025642395, + -0.01236708927899599, + 0.018179230391979218, + -0.010725094005465508, + -0.02744477428495884, + 0.004632771480828524, + -0.014204559847712517, + 0.01386573538184166, + -0.009128710255026817, + 0.004297205246984959, + 0.02081163413822651, + -0.0013047995744273067, + -0.0013308629859238863, + -0.011370163410902023, + -0.020381588488817215, + 0.0157292690128088, + -0.0019873352721333504, + -0.014022115617990494, + 0.05090184509754181, + -0.03336116671562195, + 0.0007924906676635146, + -0.00613141804933548, + 0.021385030820965767, + -0.03164098411798477, + -0.02288367599248886, + -0.029972923919558525, + -0.025724587962031364, + 0.01183278951793909, + -0.019026290625333786, + -0.003407791256904602, + -0.003093401202932, + -0.02289670892059803, + -0.02292277105152607, + 0.020081859081983566, + 0.00640508346259594, + 0.025398796424269676, + 0.007910246029496193, + 0.016380853950977325, + -0.029399529099464417, + 0.021437156945466995, + -0.005258293356746435, + -0.007812508381903172, + -0.002094846684485674, + 0.005502637941390276, + -0.05277841165661812, + -0.0027627218514680862, + 0.004245078191161156, + 0.02266213670372963, + 0.019299957901239395, + -0.04589767009019852, + 0.00533648394048214, + 0.008933234959840775, + -0.059789467602968216, + -0.02610250748693943, + -0.0060076164081692696, + -0.001961271744221449, + -0.0025916805025190115, + 0.004587160423398018, + -0.01945633813738823, + 0.01893506944179535, + -0.0008845270494930446, + 0.01815316639840603, + -0.019925478845834732, + -0.013579037971794605, + -0.006209608167409897, + -0.01200871728360653, + 0.038990866392850876, + 0.0033084244932979345, + -0.0253466684371233, + -0.01453035231679678, + 0.020368557423353195, + -0.014178496785461903, + 0.00014558859402313828, + 0.009063552133738995, + -0.003655393607914448, + 0.008066626265645027, + -0.011246362701058388, + 0.01627660170197487, + 0.017410360276699066, + 0.013409625738859177, + -0.009695589542388916, + -0.025646397843956947, + 0.00852273590862751, + 0.03401275351643562, + 0.007708254270255566, + -0.04240517318248749, + -0.004306979011744261, + -0.0009676042245700955, + -0.005111686885356903, + -0.0124061843380332, + 0.009995318949222565, + -0.029243148863315582, + -0.009083099663257599, + -0.01920873485505581, + 0.023235531523823738, + 0.019560590386390686, + 0.003300279611721635, + 0.006809066515415907, + 0.010418849065899849, + -0.018739594146609306, + -0.02313127927482128, + 0.009135225787758827, + -0.02555517666041851, + 0.008724727667868137, + 0.02294883504509926, + 0.01170247234404087, + 0.022505756467580795, + -0.022466661408543587, + 0.018166199326515198, + -0.008034046739339828, + 0.014777954667806625, + -0.013943925499916077, + -0.014764923602342606, + 0.0011598218698054552, + 0.004271141719073057, + 0.017253980040550232, + -0.004069150425493717, + 0.015234064310789108, + 0.005577570293098688, + -0.00812526885420084, + -0.0060597434639930725, + 0.0003654986503534019, + -0.007017573807388544, + -0.025516081601381302, + 0.006835130043327808, + 0.011005275882780552, + -0.015481667593121529, + -0.012295414693653584, + 0.003199283964931965, + 0.014999493956565857, + -0.0231443103402853, + 0.011598218232393265, + 0.19047142565250397, + -0.006668975576758385, + -0.0020329460967332125, + 0.022766390815377235, + -0.022440597414970398, + -0.014230622909963131, + 0.015351350419223309, + 0.0015295965131372213, + -0.010809800587594509, + 0.02478630468249321, + -0.014269718900322914, + -0.004528517834842205, + -0.004528517834842205, + 0.0011875142809003592, + 0.010809800587594509, + -0.021619601175189018, + -0.02315734140574932, + 0.007382461801171303, + 0.010744641534984112, + 0.027522964403033257, + 0.02313127927482128, + -0.023118246346712112, + 0.00356417172588408, + -0.011083466000854969, + 0.027314456179738045, + 0.002774124499410391, + 0.004339558072388172, + 0.0014652524841949344, + 0.02313127927482128, + 0.004372137598693371, + -0.0020997337996959686, + -0.007486715447157621, + 0.0048868898302316666, + -0.027653280645608902, + -0.008092689327895641, + 0.009063552133738995, + 0.010979212820529938, + -0.020094892010092735, + 0.0356026217341423, + 0.016954250633716583, + 0.005163813475519419, + -0.013266277499496937, + -0.010125636123120785, + -0.006971962749958038, + -0.016315696761012077, + 0.030546320602297783, + -0.008672600612044334, + 0.0072325970977544785, + -0.00826210156083107, + -0.01651117205619812, + -0.025398796424269676, + -0.015781396999955177, + 0.018830815330147743, + 0.038808420300483704, + -0.011950074695050716, + -0.002751318970695138, + 0.008490156382322311, + -0.029477719217538834, + 0.013852703385055065, + 0.013188086450099945, + -0.0320579968392849, + 0.03497710078954697, + -0.01647207699716091, + 0.03135428577661514, + -0.01241269987076521, + -0.006854677572846413, + -0.038261089473962784, + 0.019495433196425438, + -0.00315855978988111, + 0.002875120146200061, + -0.014347909018397331, + -0.019638782367110252, + -0.029946861788630486, + 0.027001695707440376, + -0.01451732125133276, + -0.024981781840324402, + 0.016328727826476097, + -0.011233330704271793, + 0.02555517666041851, + 0.016380853950977325, + -0.014452162198722363, + 0.0060597434639930725, + -0.004160372074693441, + -0.020954983308911324, + -0.0023098699748516083, + -0.051553431898355484, + 0.023053089156746864, + -0.006893772631883621, + -0.0002447517472319305, + -0.0197039395570755, + -0.00892671849578619, + 0.016941217705607414, + -0.0015524020418524742, + -0.02081163413822651, + 0.01356600597500801, + 0.0006939383456483483, + 0.009773779660463333, + 0.012028264813125134, + -0.013233697973191738, + 0.018048914149403572, + -0.003384985728189349, + 0.03865204006433487, + 0.030572382733225822, + -0.025255447253584862, + -0.005372320767492056, + 0.01174156740307808, + -0.014947366900742054, + 0.020342493429780006, + 0.0010075138416141272, + -0.009017940610647202, + -0.007284723687916994, + -0.03630633279681206, + 0.007871150970458984, + -0.004567612893879414, + 0.0008731243433430791, + 0.013109896332025528, + -0.00040907340007834136, + -0.009024457074701786, + 0.005945716053247452, + -0.008881107904016972, + -0.019547559320926666, + 0.009487082250416279, + 0.018192261457443237, + 0.010725094005465508, + 0.01889597438275814, + -0.02184114046394825, + -0.05121460556983948, + 0.007975404150784016, + -0.016133252531290054, + -0.0022056163288652897, + 0.008972330018877983, + -0.029347402974963188, + -0.010334143415093422, + 0.010282016359269619, + 0.0008486898732371628, + 0.0319276787340641, + 0.0012494148686528206, + -0.04073711484670639, + -0.0068481615744531155, + 0.009259027428925037, + 0.004854310769587755, + -0.03151066601276398, + -0.00209647580049932, + -0.015651078894734383, + 0.027783598750829697, + -0.003008695086464286, + 0.0005025352002121508, + -0.009865001775324345, + -0.017488550394773483, + -0.01440003514289856, + 0.0058740414679050446, + -0.009389344602823257, + -0.0066429125145077705, + -0.015898682177066803, + 0.017475517466664314, + 0.0022267927415668964, + -0.020355524495244026, + -0.03747918829321861, + 0.014725828543305397, + 0.01619841158390045, + -0.0048217312432825565, + 0.007845086976885796, + -0.00652888510376215, + -0.023339785635471344, + -0.00136262783780694, + 0.008731243200600147, + -0.1628441959619522, + 0.00944798719137907, + 0.008776853792369366, + -0.040867432951927185, + 0.018009819090366364, + -0.005600375588983297, + -0.012419216334819794, + -0.007278208155184984, + -0.016967281699180603, + -0.007623548153787851, + 0.04495938867330551, + 0.0020068828016519547, + -0.011937042698264122, + -0.013109896332025528, + -0.004274399485439062, + -0.0014652524841949344, + -0.01867443509399891, + 0.02715807594358921, + 0.02289670892059803, + 0.025698525831103325, + 0.005443995352834463, + -0.0335957407951355, + 0.006183544639497995, + -0.014895240776240826, + 0.013129443861544132, + -0.009428439661860466, + -0.01157867070287466, + 0.014165464788675308, + -0.004864084534347057, + -0.024147752672433853, + -0.009011425077915192, + 0.011246362701058388, + 0.03297021612524986, + -0.015168906189501286, + 0.006854677572846413, + -0.016133252531290054, + 0.019795162603259087, + -0.007147890981286764, + -0.01837470568716526, + 0.03471646457910538, + 0.028044231235980988, + -0.00587078370153904, + -0.014660669490695, + 0.01209342386573553, + -0.029425593093037605, + 0.005492864176630974, + 0.02552911266684532, + 0.008698663674294949, + -0.015833523124456406, + 0.005235488060861826, + 0.007617032155394554, + -0.01914357580244541, + -0.005535217467695475, + 0.02687137760221958, + 0.003961638547480106, + 0.024916622787714005, + 0.005235488060861826, + 0.01889597438275814, + -0.0019922221545130014, + -0.00138054636772722, + 0.009604367427527905, + -0.013983020558953285, + -0.009395860135555267, + 0.015481667593121529, + -0.00043330423068255186, + -0.024108657613396645, + 0.014230622909963131, + 0.014321845024824142, + -0.005528701469302177, + -0.00023966122535057366, + -0.01782737486064434, + 0.0013536685146391392, + 0.03549836948513985, + 0.0004557024803943932, + -0.002705708146095276, + 0.01064038835465908, + -0.007069700863212347, + 0.002215390093624592, + 0.0001330659433733672, + 0.0027724956162273884, + -0.02822667546570301, + 0.04626255854964256, + -0.028695818036794662, + -0.013344467617571354, + -0.015416508540511131, + 0.000787196506280452, + 0.028982514515519142, + -0.004818473476916552, + 0.017410360276699066, + 0.006287798285484314, + 0.013266277499496937, + -0.03734887018799782, + -0.027601154521107674, + -0.01077722106128931, + 0.001098735723644495, + 0.001394392573274672, + 0.035003162920475006, + 0.002692676382139325, + -0.013826640322804451, + -0.018244389444589615, + 0.016915155574679375, + -0.01197613775730133, + -0.023639515042304993, + -0.005864267703145742, + 0.004785893950611353, + 0.023561324924230576, + -0.021710822358727455, + 0.008939750492572784, + 0.0334654226899147, + -0.008757306262850761, + -0.01373541820794344, + -0.0046881563030183315, + 0.02903464250266552, + -0.006515853106975555, + -0.011715504340827465, + 0.007291239686310291, + 0.017227916046977043, + -0.02318340539932251, + -0.01250392198562622, + -0.016928186640143394, + 0.03437764197587967, + 0.0018765657441690564, + -0.021658696234226227, + 0.011272425763309002, + 0.0062584769912064075, + -0.015533793717622757, + -0.09778992086648941, + 0.007903729565441608, + 0.017762215808033943, + 0.02318340539932251, + 0.027001695707440376, + 0.0035283344332128763, + -0.004381911363452673, + 0.02048584260046482, + 0.005649244878441095, + 0.013761482201516628, + -0.04821731522679329, + -0.020902857184410095, + 0.006499563343822956, + -0.008164363913238049, + 0.016328727826476097, + -0.017475517466664314, + -0.01386573538184166, + -0.01973000355064869, + -0.01890900544822216, + 0.02981654368340969, + 0.01360510103404522, + -0.018778689205646515, + -0.006906804163008928, + -0.020577063784003258, + 0.0012086908100172877, + 0.0027855271473526955, + -0.017240947112441063, + 0.009943191893398762, + 0.02081163413822651, + 0.001491315895691514, + 0.0231443103402853, + -0.011220298707485199, + 0.025672461837530136, + -0.02293580397963524, + -0.003762905253097415, + -0.0022430825047194958, + -0.0037140361964702606, + -0.024343227967619896, + -0.0040235393680632114, + -0.026714997366070747, + -0.00944147165864706, + -0.0013406367506831884, + 0.046497128903865814, + -0.043525900691747665, + 0.0018081492744386196, + -0.01239966880530119, + -0.01760583557188511, + -0.004430780187249184, + -0.00613793358206749, + -0.02635011076927185, + -0.03323085233569145, + -0.01784040592610836, + 0.003327972022816539, + 0.024382323026657104, + 0.015338318422436714, + 0.016328727826476097, + 0.00299240555614233, + -0.00865956861525774, + -0.014608542434871197, + -0.0019840772729367018, + -0.01024943683296442, + 0.030259622260928154, + -0.030259622260928154, + 0.03818289935588837, + 0.011226815171539783, + -0.006939383689314127, + -0.025698525831103325, + -0.020394619554281235, + 0.0021209102123975754, + -0.020551001653075218, + -0.022792454808950424, + 0.016589362174272537, + 0.008092689327895641, + -0.002461363561451435, + -0.02822667546570301, + -0.006636396516114473, + -0.03935575485229492, + -0.02133290283381939, + 0.008183911442756653, + -0.025229383260011673, + -0.03328297659754753, + -0.026767125353217125, + 0.0221408698707819, + 0.0024646215606480837, + 0.019586654379963875, + 0.00017165200551971793, + -0.008079658262431622, + -0.023105215281248093, + 0.009936676360666752, + -0.01506465207785368, + 0.0023294175043702126, + -0.008438030257821083, + 0.004945532418787479, + -0.014934335835278034, + -0.010073509067296982, + 0.00839241873472929, + 0.004104987718164921, + 0.007682190742343664, + 0.008894139900803566, + 0.00945450272411108, + -0.03409094363451004, + -0.009812874719500542, + -0.0329962819814682, + 0.013474784791469574, + 0.0042190151289105415, + 0.000726924859918654, + -0.001107695046812296, + -0.012464826926589012, + 0.0258809681981802, + 0.01729307509958744, + -0.003111319849267602, + 0.007786444388329983, + -0.001403351896442473, + 0.011018307879567146, + -0.0020508647430688143, + -0.012868810445070267, + -0.014725828543305397, + -0.011891432106494904, + 0.002487426856532693, + 0.019534528255462646, + 0.015364381484687328, + 0.0029288760852068663, + -0.016941217705607414, + 0.008607442490756512, + -0.015651078894734383, + 0.0001041009381879121, + -0.030780890956521034, + 0.0018114071572199464, + -0.01787950098514557, + -0.013552974909543991, + -0.0024711373262107372, + -0.015103748068213463, + 0.0014750262489542365, + -0.003249781671911478, + -0.011461385525763035, + 0.008985361084342003, + -0.005584086291491985, + -0.003420823020860553, + 0.0035772034898400307, + 0.03244894742965698, + 0.015155874192714691, + 0.04506364092230797, + -0.036358460783958435, + -0.027783598750829697, + 0.01532528642565012, + -0.03807864710688591, + -0.005046528298407793, + -0.003051048144698143, + -0.0024271553847938776, + -0.006887256633490324, + 0.015273160301148891, + -0.018987195566296577, + 0.0436822809278965, + 0.01386573538184166, + 0.008685632608830929, + -0.009597851894795895, + 0.033934563398361206, + -0.030155368149280548, + -0.005242004059255123, + 0.016042031347751617, + -0.0065256268717348576, + -0.022192995995283127, + 0.026324046775698662, + 0.0027040790300816298, + 0.019312988966703415, + 0.0019189188024029136, + 0.035055290907621384, + -0.030989397317171097, + -0.027262330055236816, + -0.0008063368150033057, + 0.021424125880002975, + -0.01223025657236576, + -0.016419950872659683, + -0.013409625738859177, + 0.00959133543074131, + 0.02505997195839882, + -0.016863027587532997, + -0.007349882274866104, + 0.01709759794175625, + -0.00945450272411108, + 0.00040805531898513436, + 0.03998127579689026, + 0.005577570293098688, + 0.01050355564802885, + -0.018061945214867592, + -0.008503188379108906, + 0.027549026533961296, + 0.01506465207785368, + -0.01320111844688654, + -0.003945349249988794, + 0.004971595946699381, + 0.00720001757144928, + 0.0237437691539526, + 0.009461019188165665, + 0.004137566778808832, + 0.00878988578915596, + 0.018452895805239677, + 0.01506465207785368, + 9.626155224395916e-05, + -0.027001695707440376, + 0.004372137598693371, + 0.03651484102010727, + -0.005597117822617292, + 0.003068966791033745, + 0.001777198980562389, + -0.0135920699685812, + -0.009552240371704102, + 0.0077017382718622684, + -0.0007798661827109754, + -0.03760950267314911, + -0.014660669490695, + 0.010073509067296982, + -0.011917495168745518, + 0.021775981411337852, + 0.006506079342216253, + 0.003352406434714794, + -0.027809660881757736, + 0.04626255854964256, + -0.013787545263767242, + -0.01574230194091797, + -0.02532060630619526, + 0.0019547559786587954, + 0.01593777723610401, + -0.0018032623920589685, + 0.004179919604212046, + 0.012047812342643738, + 0.01893506944179535, + 0.019599685445427895, + 0.00719350203871727, + 0.008757306262850761, + 0.014178496785461903, + -0.018022850155830383, + 0.02313127927482128, + -0.01705850288271904, + -0.01862230896949768, + -0.017996786162257195, + -0.006095580756664276, + -0.007942824624478817, + 0.02666287124156952, + 0.02000366896390915, + 0.015794428065419197, + 0.098050557076931, + 0.019365115091204643, + -0.005730692762881517, + -0.0030282428488135338, + 0.001814665156416595, + 0.012184645049273968, + 0.00018448008631821722, + 0.015012525953352451, + 0.006170513108372688, + -0.05108428746461868, + -0.00034656195202842355, + -0.012582112103700638, + 0.02234937623143196, + -0.031849488615989685, + -0.024173814803361893, + 0.020850731059908867, + -0.002640549559146166, + 0.01223677210509777, + 0.0013365644263103604, + 0.028435183688998222, + 0.034455832093954086, + -0.02262304164469242, + 0.015390445478260517, + 0.023013994097709656, + -0.04508970305323601, + -0.028878260403871536, + 0.011643829755485058, + -0.010829348117113113, + -0.007669159211218357, + 0.01236057374626398, + -0.023053089156746864, + 0.013246729038655758, + -0.05676611140370369, + -0.016889091581106186, + 0.02607644349336624, + -0.01051658671349287, + -0.025255447253584862, + -0.01505162101238966, + 0.012705913744866848, + 0.0002406793209956959, + 0.010477491654455662, + 0.029894733801484108, + -0.02185417152941227, + -0.023626483976840973, + -0.007708254270255566, + -0.008685632608830929, + -0.002515119267627597, + -0.016993345692753792, + -0.03307447209954262 + ], + "metadata": { + "source": "Kreye_Marieke_BA_241_V2.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 17, + "has_images": true, + "image_count": 98, + "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", + "links": [], + "last_modified": "2025-05-05T23:00:23", + "_known_field_names": "frozenset({'is_continuation', 'sent_to', 'header_footer_type', 'email_message_id', 'filename', 'languages', 'detection_class_prob', 'sent_from', 'link_texts', 'cc_recipient', 'subject', 'image_mime_type', 'image_path', 'filetype', 'page_number', 'last_modified', 'signature', 'detection_origin', 'text_as_html', 'attached_to_filename', 'bcc_recipient', 'data_source', 'link_start_indexes', 'category_depth', 'emphasized_text_tags', 'parent_id', 'orig_elements', 'page_name', 'coordinates', 'url', 'link_urls', 'file_directory', 'links', 'table_as_cells', 'emphasized_text_contents', 'key_value_pairs', 'image_base64'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "Kreye_Marieke_BA_241_V2.pdf", + "detection_class_prob": 0.3422867953777313, + "parent_id": "e02392183bc6851689602ad4b9f6039f", + "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", + "id": "ce00eae5-7e07-454f-9e4f-f79ac36f92f4", + "processing_timestamp": "2025-05-05T23:15:46.977945", + "chunk_number": 44, + "total_chunks": 56, + "chunking_strategy": "hybrid", + "word_count": 489 + } +} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000045.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000045.json new file mode 100644 index 0000000000000000000000000000000000000000..c33a2fbbf138a2b0af7fb6032da9f1abe5fa0883 --- /dev/null +++ b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000045.json @@ -0,0 +1,1570 @@ +{ + "id": "61a115b2-0ff7-441a-f6d9-eb3d00000045", + "content": "Es ist also unabdingbar in zuk\u00fcnftigen Planungsprozessen eine ganzheitliche Planung zu verfolgen und verst\u00e4rkt die Komponente der \u00d6kologie mit in die Stadtentwicklung zu integrieren. So ist es m\u00f6glich St\u00e4dte nach den geltenden Leitbildern der gegenw\u00e4rtigen Stadtentwicklung an die prognostizierten klimatischen Bedingungen anzupassen und klimaresilient zu gestalten. 56\nLiteraturverzeichnis\n\n## Literaturverzeichnis\n\nBott, Helmut; Grassl, Gregor; Anders, Stephan (2018): Nachhaltige Stadtplanung. Lebendige Quartiere, Smart Cities, Resilienz. 2. Auflage. M\u00fcnchen: Detail Business Information GmbH. Bundesamt f\u00fcr Wirtschaft und Ausfuhrkontrolle (Hg.) (2021): Infromationsblatt CO2- Faktoren. Bundesf\u00f6rderung f\u00fcr Energie- und Ressourceneffizienz in der Wirtschaft - Zuschuss. Online verf\u00fcgbar unter\nhttps://www.bafa.de/SharedDocs/Downloads/DE/Energie/eew_infoblatt_co2_faktoren_ 2024.pdf?__blob=publicationFile&v=2, zuletzt gepr\u00fcft am 07.06.2024. Bundesministerium f\u00fcr Wohnen, Stadtentwicklung und Bauwesen (Hg.) (2024a): Im Fokus: Hitze in der Stadt. Online verf\u00fcgbar unter https://www.nationale- stadtentwicklungspolitik.de/NSPWeb/SharedDocs/Blogeintraege/DE/Fokusthema/Hitze /editorial_hitze-in-der-\nstadt.html;jsessionid=2B5E905F1DC2FFE9720E896E1F81A13A.live11291, zuletzt aktualisiert am 01.03.2024, zuletzt gepr\u00fcft am 21.05.2024. Bundesministerium f\u00fcr Wohnen, Stadtentwicklung und Bauwesen (Hg.) (2024b): Die\n\n## neue Leipzig-Charta. Online verf\u00fcgbar unter\n\nhttps://www.bmwsb.bund.de/Webs/BMWSB/DE/themen/stadt-\nwohnen/stadtentwicklung/neue-leipzig-charta/neue-leipzig-charta-node.html, zuletzt aktualisiert am 24.03.2024, zuletzt gepr\u00fcft am 21.05.2024. Burghardt und Partner Ingenieure (2018): Klimaanalyse f\u00fcr die Stadt W\u00fcrzburg. Online verf\u00fcgbar unter https://www.wuerzburg.de/themen/umwelt- klima/klimaundenergie/klimaanpassung-und-wetterextreme/stadtentwicklung- bauleitplanung/412831.Klimaanalysen-fuer-die-Stadt-Wuerzburg.html, zuletzt aktualisiert am 07.06.2024, zuletzt gepr\u00fcft am 07.06.2024. Calcerano, Filippo; Martinelli, Letizia (2016): Numerical optimisation through dynamic simulation of the position of trees around a stand-alone building to reduce cooling energy consumption. In: Energy and Buildings 112, S. 234\u2013243. DOI: 10.1016/j.enbuild.2015.12.023. Deutscher Wetterdienst: Basisfakten zum Klimawandel. Klimawandel - ein \u00dcberblick. Online verf\u00fcgbar unter\nhttps://www.dwd.de/DE/klimaumwelt/klimawandel/klimawandel_node.html, zuletzt gepr\u00fcft am 21.05.2024.", + "embedding": [ + 0.016639726236462593, + 0.010727561078965664, + 0.004753743764013052, + -0.015211979858577251, + 0.012259142473340034, + 0.021039778366684914, + -0.01661376655101776, + -0.0008262266055680811, + -0.0006554650026373565, + -0.02915196865797043, + 0.01573115959763527, + 0.006187979131937027, + -0.006950525101274252, + 0.016535889357328415, + -0.024868732318282127, + -0.013641459867358208, + 0.04428607225418091, + -0.009007777087390423, + 0.022921806201338768, + -0.0023249539081007242, + -0.0009913097601383924, + 0.01324558537453413, + 0.03335732966661453, + -0.014978349208831787, + 0.001249277382157743, + 0.009533446282148361, + 0.022272830829024315, + -0.0344216488301754, + -0.008501576259732246, + -0.010604255832731724, + 0.012434366159141064, + -0.0010148350847885013, + -0.013719337061047554, + -0.004812151659280062, + -0.01166208554059267, + -0.014913451857864857, + -0.0043221754021942616, + -0.01991056092083454, + 0.008890961296856403, + -0.004812151659280062, + 0.0047115604393184185, + 0.011512821540236473, + 0.0030615408904850483, + -0.011934654787182808, + -0.00628532562404871, + 0.024245716631412506, + 0.022649236023426056, + -0.004834865685552359, + -0.01386211160570383, + 0.014329373836517334, + 0.03683583438396454, + 0.03255259990692139, + -0.006028980016708374, + -0.00433515477925539, + -0.012603099457919598, + -0.017483392730355263, + -0.03548596799373627, + 0.020105253905057907, + 0.010506909340620041, + -0.019741827622056007, + -0.018716447055339813, + 0.0008363668457604945, + -0.014939410611987114, + 0.01930052414536476, + -0.024141879752278328, + -0.01299897488206625, + -0.026919493451714516, + -0.004224828910082579, + 0.012408407405018806, + -0.006269101053476334, + 0.05929037928581238, + 0.029489435255527496, + 0.023869309574365616, + 0.0006789903854951262, + 0.013563582673668861, + 0.008618391118943691, + -0.000582049717195332, + -0.0008655707351863384, + -0.00830039381980896, + 0.0075735412538051605, + 0.010026668198406696, + -0.015095164999365807, + -0.025543665513396263, + 0.03966536745429039, + 0.021779609844088554, + 0.016639726236462593, + 0.01098715141415596, + 0.007132238242775202, + 0.008203047327697277, + 0.007923987694084644, + -0.002704604296013713, + 0.02549174800515175, + -0.0021789344027638435, + 0.02061145380139351, + -0.013641459867358208, + -0.01196710392832756, + 0.009254387579858303, + -0.007177666295319796, + 0.014316393993794918, + -0.01584797538816929, + 0.004156686365604401, + -0.0009361468255519867, + 0.005564962979406118, + -0.008293903432786465, + -0.03304582089185715, + 0.0024547488428652287, + -0.0028019507881253958, + 0.013174197636544704, + 0.029463477432727814, + -0.005723961628973484, + -0.013758275657892227, + 0.04200167953968048, + -0.021429162472486496, + -0.03309774026274681, + 0.018275143578648567, + -0.05152863636612892, + 0.034239936619997025, + -0.019988438114523888, + -0.006703914608806372, + 0.0007556505734100938, + 0.01722380332648754, + 0.0043935626745224, + 0.002934990683570504, + -0.014381292276084423, + 0.03099505789577961, + 0.0003934412670787424, + -0.006905096583068371, + 0.0006587099051102996, + -0.037173304706811905, + -0.026633944362401962, + -0.028217444196343422, + 0.006220427807420492, + 0.008073252625763416, + 0.0172108244150877, + -0.026218600571155548, + 0.026309456676244736, + -0.016912294551730156, + 0.004753743764013052, + -0.044234152883291245, + -0.04477929323911667, + -0.008813084103167057, + 0.015653284266591072, + -0.02684161625802517, + -0.016133524477481842, + -0.00036606259527616203, + -0.0013823172776028514, + 0.006866158451884985, + 0.02954135462641716, + 0.00519180204719305, + -0.023350130766630173, + 0.0016857133014127612, + -0.012440855614840984, + 0.006191223859786987, + 0.02087104506790638, + -0.010850866325199604, + 0.00506849680095911, + -0.0033779162913560867, + 0.005587677005678415, + -0.003504466498270631, + -0.013654439710080624, + 0.02049463801085949, + -0.014316393993794918, + 0.007236074190586805, + 0.001559163094498217, + 0.015354754403233528, + -0.0011211048113182187, + 0.010182421654462814, + -0.0008615146507509053, + 0.0137972142547369, + -0.01202551182359457, + -0.0195341557264328, + 0.03787419572472572, + -0.040340300649404526, + 0.02341502718627453, + -0.004432501271367073, + 0.02746463380753994, + -0.011142904870212078, + 0.01731465943157673, + -0.026387333869934082, + -0.03003457561135292, + -0.0012963280314579606, + 0.01526389829814434, + 0.0060549392364919186, + 0.024622121825814247, + -0.016925275325775146, + 0.00854700431227684, + 0.027516551315784454, + 0.004234563559293747, + 0.01780788041651249, + 0.0020475168712437153, + 0.02954135462641716, + 0.019196689128875732, + 0.028892379254102707, + -0.013927008956670761, + -0.6358919143676758, + 0.009014266543090343, + 0.0036764447577297688, + -0.025725379586219788, + 0.012551181949675083, + 0.008027823641896248, + 0.03335732966661453, + -0.00034821577719412744, + 0.00684019923210144, + 0.03395438566803932, + -0.007424276787787676, + -0.009572384878993034, + -0.03657624498009682, + -0.0005670421523973346, + -0.006635772064328194, + -0.011629636399447918, + 0.003936035092920065, + -0.017652127891778946, + 0.04275448992848396, + 0.00841720961034298, + 0.012077429331839085, + 0.011863267980515957, + -0.0029074090998619795, + -0.005895940121263266, + 0.004224828910082579, + 0.03013841062784195, + 0.016652705147862434, + -0.03507062420248985, + 0.007988885045051575, + 0.01744445599615574, + -0.011980083771049976, + 0.019689910113811493, + -0.022792011499404907, + 0.012324039824306965, + 0.045973408967256546, + 0.008559984154999256, + -0.012187755666673183, + 0.004808906931430101, + 0.0183011032640934, + 0.006820729933679104, + -0.006431344896554947, + -0.0037348526529967785, + 0.0043448894284665585, + 0.00983197521418333, + 0.01490047201514244, + 0.008254965767264366, + 0.042910244315862656, + -0.014601943083107471, + -0.0184438768774271, + -0.00867030955851078, + 0.017119968309998512, + -0.018404938280582428, + -0.0029431027360260487, + 0.01013699360191822, + 0.008949369192123413, + 0.009260877035558224, + 0.02514130249619484, + -0.017119968309998512, + -0.011318128556013107, + 0.0019177219364792109, + -0.008475616574287415, + 0.0005658253212459385, + -0.0062983050011098385, + -0.03647240996360779, + -0.011642616242170334, + 0.03610898181796074, + -0.037277139723300934, + -0.0012273744214326143, + 0.0010416052537038922, + -0.025829214602708817, + -0.012667996808886528, + 0.007398318033665419, + -0.004610969219356775, + -0.01519900094717741, + 0.029437517747282982, + 0.0059997765347361565, + 0.022428585216403008, + -0.013602521270513535, + -0.01050041988492012, + 0.02855491079390049, + 0.0067168939858675, + -0.012414896860718727, + 0.014783656224608421, + -0.0027565225027501583, + 0.014329373836517334, + -0.028399158269166946, + -0.015666263177990913, + -0.023479925468564034, + -0.008254965767264366, + 0.007430766709148884, + 0.022792011499404907, + -0.0017830595606938004, + -0.017885757610201836, + -0.01767808571457863, + -5.901618715142831e-05, + 0.03372075408697128, + -0.011246741749346256, + 0.03037204220890999, + -0.009507487528026104, + -0.040937360376119614, + -0.02293478511273861, + 0.005707737524062395, + 0.026075826957821846, + -0.001971262274309993, + 0.018223226070404053, + -0.008598921820521355, + 0.0037640566006302834, + 0.0017132946522906423, + 0.03263047710061073, + -0.0050782314501702785, + -0.0038970964960753918, + -0.009844955056905746, + -0.023492904379963875, + -0.010454991832375526, + 0.0005755599122494459, + -0.02332417108118534, + 0.03390246629714966, + -0.0014074650825932622, + 0.022532420232892036, + 0.031540196388959885, + 0.008443168364465237, + -0.009974749758839607, + 0.007430766709148884, + -0.02806168980896473, + -0.01769106648862362, + 0.019495217129588127, + -0.02110467478632927, + -0.00946854893118143, + -0.03169595077633858, + -0.009637282229959965, + 0.013823173008859158, + 0.006736363284289837, + 0.03439568728208542, + 0.0047959270887076855, + 0.027282919734716415, + 0.009987729601562023, + 0.016574827954173088, + -0.009935811161994934, + 0.0008720604819245636, + -0.016029689460992813, + -0.00020341319032013416, + -0.017184864729642868, + 0.020806146785616875, + -0.03709542751312256, + -0.02576431818306446, + -0.017003152519464493, + -0.010143483057618141, + 0.011571228504180908, + -0.01227212231606245, + 0.013265054672956467, + -0.02306458167731762, + -0.011811349540948868, + -0.0024174328427761793, + 0.028035731986165047, + 0.006642261985689402, + -0.004601234570145607, + 0.0008477239171043038, + -0.0008574585663154721, + -0.013420808129012585, + -0.022415606305003166, + 0.009572384878993034, + 0.0195341557264328, + -0.032033417373895645, + -0.011402495205402374, + -0.0001550442393636331, + 0.012181265279650688, + 0.020780187100172043, + 0.014757697470486164, + -0.0072750127874314785, + -0.0441562756896019, + -0.0027630121912807226, + -0.031436361372470856, + 0.009539936669170856, + 0.028477035462856293, + -0.003900341223925352, + -0.029567312449216843, + -0.026789698749780655, + -0.023622699081897736, + -0.0017343864310532808, + 0.0023979635443538427, + 0.00591865461319685, + -0.023038621991872787, + -0.028035731986165047, + -0.007086809724569321, + 0.009312795475125313, + 0.006249631755053997, + 0.0034590382128953934, + 0.010818417184054852, + -0.004120992962270975, + 0.004426011350005865, + 0.030294165015220642, + 0.030112452805042267, + -0.008508065715432167, + 0.004617459140717983, + -0.013498685322701931, + 0.009630792774260044, + -0.025959011167287827, + 0.011733472347259521, + -0.006548160221427679, + -0.002860358450561762, + 0.046207040548324585, + 0.006905096583068371, + 0.018275143578648567, + -0.016302257776260376, + 0.01116886455565691, + -0.03382458910346031, + 0.008832553401589394, + 0.014537045732140541, + 0.009922831319272518, + 0.015328795649111271, + 0.02538791298866272, + -0.0036472410429269075, + -0.04932212084531784, + 0.0025050444528460503, + -0.00016883497301023453, + 0.038133785128593445, + -0.002446636790409684, + -0.002560207387432456, + -0.013031423091888428, + -0.013472726568579674, + 0.01673058234155178, + -0.009539936669170856, + 0.026685863733291626, + -0.0180804505944252, + -0.019586073234677315, + 0.006220427807420492, + -0.014822594821453094, + 0.027179084718227386, + 0.008897450752556324, + -0.000442114396719262, + -0.009059694595634937, + 0.007735785096883774, + -0.010545847937464714, + -0.0047797029837965965, + 0.011590697802603245, + 0.010026668198406696, + 0.028373198583722115, + -0.006538425572216511, + 0.016561849042773247, + 0.0036342614330351353, + 0.013563582673668861, + 0.015328795649111271, + -0.010915763676166534, + 0.015186021104454994, + 0.027646346017718315, + -0.0021270164288580418, + 0.039873041212558746, + 0.03722522035241127, + 0.004990619607269764, + 0.017989594489336014, + -0.008754676207900047, + 0.02074124850332737, + -0.0028473790735006332, + -0.010046137496829033, + 0.02550472691655159, + -0.02697141282260418, + 0.018469836562871933, + -0.00946205947548151, + 0.03330541029572487, + 0.021078716963529587, + 0.004202114883810282, + 0.01116886455565691, + 0.01092225406318903, + -0.000700893288012594, + 0.0013474349398165941, + -0.02967114932835102, + -0.02319437637925148, + -0.027854017913341522, + -0.019443299621343613, + 0.003838688600808382, + -0.0019599052611738443, + -0.02283095009624958, + -0.014017865993082523, + 0.013219625689089298, + 0.006944035179913044, + -0.004744009114801884, + 0.004724539816379547, + 0.013563582673668861, + -0.0003415232349652797, + 0.004662887193262577, + -0.00408854428678751, + -0.005623370874673128, + -0.01336889062076807, + 0.04311791807413101, + -0.013901050202548504, + -0.02244156412780285, + -0.0027224512305110693, + 0.012259142473340034, + -0.01988460123538971, + -0.004146951716393232, + -0.0070803202688694, + 0.002777614165097475, + -0.016509931534528732, + -0.011493352241814137, + 0.011941145174205303, + -0.009475038386881351, + 0.016652705147862434, + -0.019430318847298622, + -0.00034395689726807177, + -0.004750499036163092, + 0.001796039054170251, + -0.002368759596720338, + -0.01166208554059267, + -0.006827219855040312, + 0.027256961911916733, + -0.006866158451884985, + -0.013070361688733101, + 0.014913451857864857, + 0.00458176527172327, + -0.023596741259098053, + 0.00189176294952631, + -0.03317561373114586, + -0.009728139266371727, + -0.0015786322765052319, + 0.0011762676294893026, + 0.012401917017996311, + 0.014783656224608421, + -0.009728139266371727, + 0.043637096881866455, + -0.01465386152267456, + 0.01391403004527092, + -0.02598496899008751, + -0.0036764447577297688, + 0.008890961296856403, + 0.052670832723379135, + -0.0021773120388388634, + 0.0060776532627642155, + 0.02673778124153614, + 0.01682143844664097, + -0.013161218725144863, + -0.0091505516320467, + -0.031903624534606934, + -0.00457852054387331, + -0.0071906461380422115, + 0.0036115474067628384, + -0.014004886150360107, + -0.008410719223320484, + -0.015211979858577251, + 0.012953545898199081, + -0.009111613035202026, + 0.0057564107701182365, + -0.014783656224608421, + 0.00421509426087141, + -0.0007232017815113068, + -0.008469127118587494, + -0.007618969772011042, + 0.015302836894989014, + 0.05721366032958031, + 0.014705779030919075, + -0.004987374879419804, + 0.02100083976984024, + 0.012765343300998211, + -0.0010594520717859268, + -0.01026029884815216, + 0.015276878140866756, + 0.020663373172283173, + 0.01007858570665121, + 0.017483392730355263, + -0.037536729127168655, + 0.0030582959298044443, + 0.01373231690376997, + -0.007683867122977972, + 0.03213725611567497, + 0.006012755911797285, + 0.044857170432806015, + 0.01018891204148531, + 0.00067168939858675, + 0.0002774369204416871, + 0.009624303318560123, + -0.015614344738423824, + 0.00933875422924757, + 0.02207813784480095, + -0.0003709299198817462, + -0.017003152519464493, + 0.010286257602274418, + -0.01397892739623785, + -0.03122868947684765, + -0.008865002542734146, + 2.7378644517739303e-05, + -0.026075826957821846, + 0.02198728173971176, + -0.003504466498270631, + 0.013888070359826088, + -0.013875091448426247, + -0.03322753310203552, + -0.023220334202051163, + -0.016691643744707108, + -0.015899894759058952, + 0.00775525439530611, + 0.015108143910765648, + -0.012369468808174133, + 0.011973593384027481, + -0.024012085050344467, + 0.0017587229376658797, + 0.0283212810754776, + -0.02207813784480095, + -0.025530686601996422, + 0.009020755998790264, + 0.005934878718107939, + -5.059978866484016e-05, + 0.02842511609196663, + -0.01574414037168026, + -0.001615137211047113, + -0.008865002542734146, + -0.010708091780543327, + -0.014757697470486164, + 0.0157571192830801, + -0.029697107151150703, + -0.02512832172214985, + 0.0024579938035458326, + -0.02623157948255539, + -0.015549447387456894, + 0.004529847297817469, + 0.012934076599776745, + -0.0003474045661278069, + 0.0015421274583786726, + 0.0028441341128200293, + 0.019001996144652367, + -0.010967682115733624, + 0.007249053567647934, + 0.023272253572940826, + 0.012168286368250847, + 0.016315238550305367, + -0.044857170432806015, + 0.023739514872431755, + 0.013213136233389378, + 0.0007033269503153861, + 0.003014490008354187, + 0.0005934067303314805, + 0.009046714752912521, + -0.026945453137159348, + 0.006492997519671917, + 0.003147530136629939, + -0.007469705305993557, + 0.020793167874217033, + -0.011889226734638214, + 0.023012662306427956, + -0.0037705462891608477, + -0.015484550036489964, + 0.02024802751839161, + 0.0062269177287817, + 0.007112768944352865, + 0.037303097546100616, + -0.020235048606991768, + 0.017794901505112648, + -0.04072968661785126, + 0.024985548108816147, + 0.01031870674341917, + 0.030242247506976128, + 0.017366578802466393, + 0.002714338945224881, + 0.02624456025660038, + -0.026569047942757607, + 0.005341066513210535, + -0.005649329628795385, + 0.01783384010195732, + 0.01889815926551819, + -0.002311974298208952, + -0.030346082523465157, + -0.011577718891203403, + -0.005146373994648457, + 0.009799526073038578, + -0.03901639208197594, + 0.0012655017198994756, + -0.013563582673668861, + 0.002951215021312237, + 0.00525020994246006, + 0.021883446723222733, + 0.004438990727066994, + -0.02842511609196663, + -0.0207672081887722, + -0.004166421014815569, + 0.0014358577318489552, + 0.024323591962456703, + -0.02736079692840576, + -0.019105831161141396, + -0.022156015038490295, + 0.011824329383671284, + -0.027750182896852493, + -0.0272310022264719, + 0.01050041988492012, + -0.021195532754063606, + 0.011752941645681858, + 0.018703466281294823, + 0.019209668040275574, + 0.007923987694084644, + 0.022649236023426056, + -0.005672043655067682, + -0.014563004486262798, + -0.0005439224187284708, + -0.0065124668180942535, + -0.004666131921112537, + -0.029697107151150703, + 0.022519441321492195, + 0.007638439070433378, + 0.007988885045051575, + 0.005227495916187763, + -0.005947858095169067, + 0.014705779030919075, + 0.03943173587322235, + -0.021026797592639923, + -0.03343520686030388, + -0.01732764020562172, + -0.018612610176205635, + -0.012856200337409973, + 0.026036888360977173, + 0.008741696365177631, + 0.023246293887495995, + -0.018820282071828842, + -0.012421386316418648, + 0.016393115743994713, + 0.02011823281645775, + -0.0004948436398990452, + -0.004205359611660242, + 0.009682711213827133, + -0.021494060754776, + 0.02268817462027073, + 0.016743561252951622, + 0.004513622727245092, + -0.006781791336834431, + 0.0009077541762962937, + -0.034473564475774765, + -0.011817839927971363, + 0.030060533434152603, + -0.019092852249741554, + -0.007670887745916843, + -0.0014472148614004254, + -0.008371780626475811, + -0.017730005085468292, + -0.004202114883810282, + 0.009001286700367928, + -0.018378978595137596, + 0.016808459535241127, + 0.01117535401135683, + -0.0032805700320750475, + -0.014264476485550404, + -0.0028441341128200293, + -0.010708091780543327, + 0.02515428140759468, + -0.0084236990660429, + -0.013537623919546604, + 0.041819967329502106, + -0.003812729613855481, + 0.01361550111323595, + 0.013745295815169811, + -0.008254965767264366, + 0.01288215909153223, + -0.010701602324843407, + 0.04849143326282501, + 0.011246741749346256, + -0.02194834314286709, + -0.030605673789978027, + -0.039847079664468765, + -0.018378978595137596, + -0.024622121825814247, + 0.004572030622512102, + 0.0012160174082964659, + -0.01904093474149704, + -0.028373198583722115, + 0.0015429386403411627, + 0.010591275990009308, + -0.0007499720668420196, + 0.002857113489881158, + 0.05139883980154991, + 0.026530109345912933, + 0.005019823554903269, + 0.004354624077677727, + -0.0034038752783089876, + -0.006181489210575819, + -0.0017749473918229342, + -0.001737631275318563, + -0.007378848735243082, + -0.00525020994246006, + -0.004241053480654955, + 0.006583854090422392, + 0.04166421294212341, + -0.02990478090941906, + 0.021545978263020515, + 0.026062846183776855, + -0.017963634803891182, + 0.019625011831521988, + -0.02368759736418724, + -0.0026023907121270895, + 0.015964791178703308, + 0.008865002542734146, + 0.02855491079390049, + 0.005938123445957899, + 0.002717583905905485, + 0.00989038310945034, + -0.007703336421400309, + 0.00396848376840353, + 0.011993062682449818, + 0.02320735529065132, + 0.01963799074292183, + 0.007975906133651733, + -0.025102363899350166, + 0.0001286796323256567, + -0.004617459140717983, + 0.021507039666175842, + 0.000380664539989084, + -0.012797792442142963, + -0.007975906133651733, + -0.005461127031594515, + -0.015601364895701408, + 0.004221584182232618, + 0.010669153183698654, + 0.001433424069546163, + -0.023090539500117302, + -0.002041027182713151, + -0.01831408217549324, + -0.006460548844188452, + -0.008650840260088444, + -0.004740764386951923, + -0.030475879088044167, + 0.00793696753680706, + 0.019962478429079056, + -0.005685023497790098, + 0.013537623919546604, + 0.0051690880209207535, + -0.020040355622768402, + -0.028710665181279182, + 0.01731465943157673, + -0.0348629504442215, + 0.028295321390032768, + 0.04013263061642647, + 0.0018804058199748397, + 0.003598567796871066, + 0.004890028387308121, + -0.01299897488206625, + -0.02769826352596283, + 0.012953545898199081, + 0.007223094813525677, + -0.033149655908346176, + 0.028606830164790154, + -0.013745295815169811, + 0.021494060754776, + 0.0019453034037724137, + 0.003715383354574442, + 0.011155884712934494, + 0.01202551182359457, + -0.0021464857272803783, + -0.03499274700880051, + -0.009974749758839607, + 0.03870488330721855, + 0.0060549392364919186, + -0.005363780539482832, + 0.0437149740755558, + -0.014913451857864857, + 0.015211979858577251, + 0.01795065589249134, + 0.01458896417170763, + -0.01770404540002346, + -0.014277455396950245, + -0.02930772304534912, + -0.0004636117082554847, + 0.03914618864655495, + -0.0067493426613509655, + -0.00854700431227684, + -0.0056039015762507915, + -0.02223389223217964, + -0.01092225406318903, + 0.0031605095136910677, + 0.004367603454738855, + 0.02296074479818344, + 0.001523469458334148, + 0.0003816785756498575, + -0.0004137217183597386, + 0.014004886150360107, + 0.0011227271752431989, + -0.026763739064335823, + 0.0030080003198236227, + -0.007372358813881874, + -0.05404666066169739, + 0.0032189174089580774, + -0.00244014710187912, + 0.032059378921985626, + 0.01573115959763527, + -0.043403465300798416, + -0.013784234412014484, + -0.0005459504318423569, + -0.054981183260679245, + -0.02624456025660038, + -0.007846110500395298, + -0.006155530456453562, + -0.01501728780567646, + 0.010448501445353031, + 0.00015098815492819995, + 0.03649836778640747, + -0.013265054672956467, + 0.031098894774913788, + -0.013407829217612743, + -0.027153125032782555, + -0.00500684417784214, + -0.014199579134583473, + 0.034473564475774765, + 0.011065028607845306, + -0.03099505789577961, + -0.0016094587044790387, + 0.0076643978245556355, + -0.006684445310384035, + 0.0010278145782649517, + 0.0111104566603899, + -0.01196061447262764, + -0.0191707294434309, + 0.008274435065686703, + 0.013628480955958366, + -0.00549357570707798, + 0.0042605227790772915, + 0.013693378306925297, + -0.023765474557876587, + 0.01744445599615574, + 0.03182574734091759, + -0.003439568914473057, + -0.023038621991872787, + 0.007119258865714073, + 0.01519900094717741, + -0.01226563286036253, + -0.0070608509704470634, + 0.01257714070379734, + -0.02575133927166462, + -0.013135259039700031, + -0.021909404546022415, + 0.011136415414512157, + 0.006233407184481621, + -0.012103389017283916, + 0.02980094403028488, + 0.009552915580570698, + -0.021182551980018616, + -0.035953231155872345, + 0.009786547161638737, + -0.03418801724910736, + 0.010409562848508358, + 0.01866452768445015, + -0.011090987361967564, + 0.029255805537104607, + -0.034006305038928986, + 0.004893273580819368, + -0.004250788129866123, + -0.0051009454764425755, + -0.017418496310710907, + -0.011454413644969463, + -0.016016708686947823, + 0.003475262550637126, + 0.02427167445421219, + -0.008748186752200127, + 0.006048449315130711, + 0.0002873743651434779, + -0.013667418621480465, + -0.019209668040275574, + -0.024738937616348267, + -0.000978330266661942, + -0.021299367770552635, + -0.00928034633398056, + 0.00555847305804491, + -0.032993901520967484, + -0.004782947711646557, + -0.004380582831799984, + -0.00598355196416378, + 0.002175689674913883, + 0.018599631264805794, + 0.18960461020469666, + -0.010467970743775368, + -0.011915185488760471, + -0.00032408200786449015, + -0.016769520938396454, + -0.016782499849796295, + 0.023272253572940826, + -0.001190869603306055, + -0.0016508308472111821, + 0.0249076709151268, + -0.021805569529533386, + 0.00750864390283823, + 0.0238173920661211, + 0.0035855884198099375, + 0.00010981878585880622, + -0.021662794053554535, + -0.037536729127168655, + -0.008650840260088444, + -0.01891114003956318, + 0.028009772300720215, + 0.019092852249741554, + -0.019689910113811493, + 3.807659595622681e-05, + -0.016652705147862434, + 0.029930738732218742, + 0.0004356246499810368, + -0.0028749604243785143, + 0.009234918281435966, + 0.02476489543914795, + 0.00470182579010725, + -0.006892117206007242, + 0.00598355196416378, + -0.004403297323733568, + -0.008527535013854504, + -0.0024888201151043177, + -0.012830240651965141, + 0.026659904047846794, + -0.018002573400735855, + 0.03244876489043236, + 0.009942300617694855, + -0.006113347131758928, + 0.0008517800597473979, + -0.007956436835229397, + -0.023739514872431755, + 0.0111104566603899, + 0.023843351751565933, + -0.012057960033416748, + -0.009656751528382301, + -0.0053832498379051685, + -0.0047797029837965965, + -0.011090987361967564, + 0.01233701966702938, + 0.008280924521386623, + 0.052437201142311096, + -0.015276878140866756, + 0.0058472673408687115, + 0.0027922161389142275, + -0.01116886455565691, + -0.012895138934254646, + 0.010292747989296913, + -0.019560113549232483, + 0.027256961911916733, + 0.0051625980995595455, + 0.023492904379963875, + -0.009351733140647411, + -0.0034298342652618885, + -0.031046977266669273, + 0.01269395649433136, + 0.002110792091116309, + -0.008942878805100918, + -0.01519900094717741, + -0.0319555401802063, + -0.021208511665463448, + 0.032241091132164, + 0.009695690125226974, + -0.030553756281733513, + 0.022052180022001266, + 0.01391403004527092, + 0.021156594157218933, + 0.02756846882402897, + -0.022389646619558334, + 0.005964082665741444, + -0.004198870155960321, + -0.027854017913341522, + 0.01526389829814434, + -0.04441586881875992, + 0.03294198587536812, + -0.0007179288659244776, + -0.014238517731428146, + -0.021286388859152794, + -0.011876246891915798, + 0.007605989929288626, + 0.009241407737135887, + -0.010980661027133465, + 0.03231896832585335, + 0.0014772299909964204, + 0.0026364619843661785, + 0.016548870131373405, + -0.009059694595634937, + 0.01706804893910885, + -0.011584208346903324, + 0.06687041372060776, + 0.013018444180488586, + -0.00843018852174282, + -0.012103389017283916, + -0.011026090011000633, + -0.023363109678030014, + 0.014017865993082523, + -0.00017562892753630877, + -0.0073528895154595375, + 0.0005508177564479411, + -0.026075826957821846, + -0.0065286909230053425, + -0.02586815319955349, + -0.0007122503593564034, + 0.03270835429430008, + 0.015601364895701408, + 0.012233183719217777, + 0.0006862913141958416, + -0.013420808129012585, + -0.020832106471061707, + 0.007171176839619875, + 0.004500643350183964, + 0.0047115604393184185, + 0.01355060376226902, + -0.021325327455997467, + -0.043014079332351685, + -0.0029074090998619795, + -0.0027013595681637526, + -0.005444902461022139, + 0.02515428140759468, + -0.009637282229959965, + -0.01190220657736063, + -0.0020848331041634083, + -0.012706935405731201, + 0.011830818839371204, + 0.006820729933679104, + -0.0458955317735672, + 0.00043116294546052814, + 0.015614344738423824, + 0.024933628737926483, + -0.019586073234677315, + -0.010351155884563923, + -0.013342931866645813, + 0.01196061447262764, + -0.0010391715914011002, + 0.010156462900340557, + -0.0008047293522395194, + -0.020935941487550735, + -0.015315815806388855, + -0.0027662571519613266, + -0.013654439710080624, + -0.002738675568252802, + -0.020598474889993668, + 0.029437517747282982, + 0.0019453034037724137, + -0.018236204981803894, + -0.03468123823404312, + 0.01682143844664097, + 0.01172049343585968, + -0.012421386316418648, + -0.01165559608489275, + -0.01208391971886158, + -0.01939138025045395, + -0.01263554859906435, + 0.013446767814457417, + -0.16260723769664764, + 0.0035563844721764326, + 0.013167708180844784, + -0.047167520970106125, + 0.01391403004527092, + 0.009066184051334858, + -0.0020475168712437153, + -0.006892117206007242, + -0.00476347841322422, + 0.0019453034037724137, + 0.03320157527923584, + 0.016159484162926674, + -0.03914618864655495, + -0.01440725103020668, + 0.005266434047371149, + -0.0067558325827121735, + -0.011765921488404274, + 0.030060533434152603, + 0.0037445873022079468, + 0.012719915248453617, + 0.0054513923823833466, + -0.04532443359494209, + 0.003624526783823967, + -0.0038257092237472534, + 0.010364134795963764, + -0.0006639828206971288, + -0.009715159423649311, + 0.007365869358181953, + 0.005477351136505604, + -0.006308039650321007, + -0.011701024137437344, + -0.004789437633007765, + 0.03141040354967117, + -0.00519180204719305, + -0.0206244345754385, + -0.0066714659333229065, + 0.021416183561086655, + -0.009754098020493984, + -0.02172769233584404, + 0.04361113905906677, + 0.026659904047846794, + 0.0005362157826311886, + -0.003325998317450285, + 0.016185443848371506, + -0.04088544100522995, + 0.012596610002219677, + 0.020572515204548836, + -0.010578297078609467, + -0.006629282142966986, + 0.004961415659636259, + 0.002066986169666052, + -0.005720716901123524, + -0.011590697802603245, + 0.000335844699293375, + 0.00238011684268713, + 0.012019021436572075, + 0.004069074988365173, + 0.013667418621480465, + -0.0027873488143086433, + -0.0043448894284665585, + 0.004309195559471846, + -0.002446636790409684, + 0.008332842029631138, + 0.006489752791821957, + 0.003139417851343751, + -0.02014419250190258, + 0.00957887526601553, + 0.019728848710656166, + -0.014368312433362007, + 0.01208391971886158, + 0.011954124085605145, + -0.0052307406440377235, + 0.009105122648179531, + -0.00861190166324377, + 0.009715159423649311, + -0.011954124085605145, + -0.023700576275587082, + 0.009500998072326183, + 0.017029110342264175, + -0.02756846882402897, + -0.026945453137159348, + 0.05607146397233009, + -0.025569625198841095, + -0.02049463801085949, + -0.008397740311920643, + -0.017119968309998512, + -0.004877049010246992, + 0.005717472173273563, + 0.01306387223303318, + 0.011999553069472313, + 0.018976036459207535, + -0.024998527020215988, + -0.023999106138944626, + -0.0048705595545470715, + 0.0003837066178675741, + -0.007593010552227497, + 0.019988438114523888, + 0.0005491953343153, + 0.0047732130624353886, + -0.014796636067330837, + 0.006097122561186552, + -0.01368039846420288, + -0.018638569861650467, + 0.00457527581602335, + 0.011824329383671284, + 0.030657591298222542, + 0.003660220419988036, + 0.0005771823925897479, + 0.035693638026714325, + 0.0004054067248944193, + -0.023233314976096153, + -0.0022130056750029325, + 0.022999683395028114, + -0.00046239487710408866, + -0.00427350215613842, + -0.0009434478124603629, + 0.00841720961034298, + -0.02283095009624958, + 0.0032675904221832752, + -0.00915704108774662, + 0.026205621659755707, + 0.007482684683054686, + -0.01361550111323595, + 0.006626037415117025, + -0.0057726348750293255, + -0.028269361704587936, + -0.09184297919273376, + 0.023531842976808548, + 0.016289278864860535, + 0.022792011499404907, + 0.017301680520176888, + 0.028736624866724014, + -0.008131659589707851, + -0.006022490561008453, + 0.010214870795607567, + 0.009617813862860203, + -0.0341360978782177, + -0.017535312101244926, + -0.01135706715285778, + -0.010182421654462814, + 0.02842511609196663, + -0.007923987694084644, + -0.012622568756341934, + -0.02072826959192753, + -0.03774440288543701, + 0.023285232484340668, + 0.013965947553515434, + -0.021701732650399208, + -0.007320440839976072, + -0.01902795396745205, + -0.024323591962456703, + -0.0045201126486063, + -0.019469257444143295, + 0.00861190166324377, + 0.010104544460773468, + -0.006113347131758928, + 0.014329373836517334, + -0.024505306035280228, + 0.008696268312633038, + -0.02808764949440956, + 0.0225843396037817, + -0.005055517423897982, + -0.009715159423649311, + -0.016769520938396454, + 0.003257855772972107, + -0.028035731986165047, + -0.004114503040909767, + -0.02209111861884594, + 0.006544915493577719, + -0.04207955673336983, + -0.009014266543090343, + 0.0031296832021325827, + -0.008254965767264366, + 0.013381869532167912, + -0.00035754480632022023, + -0.02476489543914795, + -0.023882290348410606, + -0.03231896832585335, + 0.0034849971998482943, + 0.006729873362928629, + 0.018586652353405952, + -0.005685023497790098, + -0.012901628389954567, + 0.008008354343473911, + -0.004419521428644657, + 0.012765343300998211, + -0.002860358450561762, + 0.014757697470486164, + -0.030943140387535095, + 0.03683583438396454, + 0.015056226402521133, + 0.0036439960822463036, + -0.028113609179854393, + 0.0003484186017885804, + 0.0019258341053500772, + -0.027308879420161247, + -0.013316972181200981, + 0.011155884712934494, + 0.00824198592454195, + -0.005415698513388634, + -0.03133252635598183, + 0.001188435941003263, + -0.024583183228969574, + -0.0003883711469825357, + 0.0198975820094347, + -0.018223226070404053, + -0.010876825079321861, + -0.024596162140369415, + 0.022026220336556435, + -0.018119389191269875, + 0.01818428747355938, + 0.016769520938396454, + 0.0025780543219298124, + -0.014757697470486164, + 0.007898028939962387, + -0.027879977598786354, + 0.01671760343015194, + 0.0009969882667064667, + 0.02589411288499832, + -0.011973593384027481, + 0.015796057879924774, + 0.00677530188113451, + 0.007774723693728447, + -0.008469127118587494, + 0.0036407511215656996, + 0.012979505583643913, + -0.03867892548441887, + -0.011266210116446018, + -0.05747324973344803, + 0.010695111937820911, + 1.7517262676847167e-05, + -0.01404382474720478, + -0.02819148451089859, + 0.0030728979036211967, + -0.0034687728621065617, + 0.006723383907228708, + 0.0104939304292202, + 0.02268817462027073, + -0.022052180022001266, + 0.02625753916800022, + 0.008877981454133987, + -0.018015554174780846, + -0.007320440839976072, + -0.002891184762120247, + -0.001987486844882369, + 0.0101305041462183, + 0.00916353054344654, + -0.00848859641700983, + -0.007742275018244982, + -0.006820729933679104, + 0.002467728452757001, + 0.013537623919546604, + -0.029982656240463257, + -0.0003084660565946251, + -0.01586095616221428, + -0.0013766387710347772, + 0.00841720961034298, + 0.005590921733528376, + 0.01695123314857483, + -0.004828375764191151, + -0.0131806880235672, + 0.011714003048837185, + -0.0040301363915205, + -0.01564030349254608, + 0.012499263510107994, + 0.02549174800515175, + 0.005026313476264477, + 0.07123152166604996, + -0.01404382474720478, + -0.01031221728771925, + -0.0029804189689457417, + -0.028243403881788254, + -0.0023914738558232784, + -0.011947634629905224, + 0.014537045732140541, + -0.0046271937899291515, + 0.023129478096961975, + -0.024868732318282127, + 0.02013121172785759, + 0.0013669041218236089, + -0.0015770099125802517, + -0.0071906461380422115, + 0.02488171122968197, + -0.0234539657831192, + 0.012901628389954567, + 0.02197430282831192, + 0.009312795475125313, + -0.020429741591215134, + 0.04407839849591255, + 0.013901050202548504, + 0.023350130766630173, + 0.017639147117733955, + 0.008008354343473911, + -0.021623855456709862, + -0.029255805537104607, + 0.0021205267403274775, + 0.010695111937820911, + -0.013407829217612743, + -0.034603361040353775, + -0.008715737611055374, + -0.007339910138398409, + 0.03774440288543701, + -0.0053151072934269905, + -0.015536467544734478, + 0.00909863319247961, + 0.0014691177057102323, + 0.003168621798977256, + 0.03052779659628868, + 0.013563582673668861, + 0.01975480653345585, + -0.018365999683737755, + 0.0034849971998482943, + 0.005052272230386734, + 0.01538071408867836, + -0.017963634803891182, + -0.007456725928932428, + -0.0016905805096030235, + 0.005341066513210535, + 0.003046938916668296, + -0.0011787012917920947, + -0.0029333680868148804, + -0.00909863319247961, + 0.015250918455421925, + 0.008981817401945591, + -0.00463692843914032, + -0.005818063393235207, + 0.020105253905057907, + 0.023830370977520943, + -0.007949947379529476, + -0.006340488325804472, + 0.013044402934610844, + -0.017003152519464493, + -0.017730005085468292, + -0.002467728452757001, + -0.012356488965451717, + -0.01818428747355938, + -0.020079294219613075, + 0.03501870483160019, + -0.032241091132164, + 0.019014975056052208, + 0.00897532794624567, + -0.007463215384632349, + -0.019845662638545036, + 0.05435816943645477, + -0.009896872565150261, + -0.004967905580997467, + -0.03086526319384575, + 0.014744717627763748, + 0.011162374168634415, + 0.003209182759746909, + 0.008501576259732246, + -0.0037997502367943525, + 0.027620386332273483, + 0.009656751528382301, + 0.004714805167168379, + 0.011467392556369305, + 0.021026797592639923, + -0.006363202352076769, + 0.008618391118943691, + -0.0007844488718546927, + -0.019728848710656166, + -0.009793036617338657, + -0.02259731851518154, + -0.015925852581858635, + 0.017781922593712807, + -0.006330753676593304, + 0.019352441653609276, + 0.07875964045524597, + 0.0252710971981287, + -0.020351864397525787, + 0.015886913985013962, + -0.00897532794624567, + 0.01562732458114624, + -0.013174197636544704, + 0.0026575536467134953, + -0.003871137509122491, + -0.039717286825180054, + 0.005211271345615387, + 0.0033973855897784233, + 0.012252653017640114, + -0.016042668372392654, + -0.009118102490901947, + 0.010221360251307487, + -0.002229230012744665, + 0.01600372977554798, + 0.012226694263517857, + 0.027672305703163147, + 0.02320735529065132, + -0.012609588913619518, + 0.013602521270513535, + 0.045584022998809814, + -0.04000283405184746, + -0.01551050879061222, + 0.031046977266669273, + -0.008443168364465237, + -0.017963634803891182, + 0.00022065159282647073, + -0.013472726568579674, + -0.0060776532627642155, + -0.06152285635471344, + -0.027672305703163147, + 0.026997370645403862, + -0.008008354343473911, + -0.008397740311920643, + -0.021649815142154694, + 0.016159484162926674, + 0.01573115959763527, + 0.02894429676234722, + 0.005013334099203348, + -0.028736624866724014, + -0.03242280334234238, + -0.021766630932688713, + -0.0008254154236055911, + 0.005629860330373049, + -0.023233314976096153, + -0.04805012792348862 + ], + "metadata": { + "source": "Kreye_Marieke_BA_241_V2.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 17, + "has_images": true, + "image_count": 98, + "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", + "links": [], + "last_modified": "2025-05-05T23:00:23", + "_known_field_names": "frozenset({'is_continuation', 'sent_to', 'header_footer_type', 'email_message_id', 'filename', 'languages', 'detection_class_prob', 'sent_from', 'link_texts', 'cc_recipient', 'subject', 'image_mime_type', 'image_path', 'filetype', 'page_number', 'last_modified', 'signature', 'detection_origin', 'text_as_html', 'attached_to_filename', 'bcc_recipient', 'data_source', 'link_start_indexes', 'category_depth', 'emphasized_text_tags', 'parent_id', 'orig_elements', 'page_name', 'coordinates', 'url', 'link_urls', 'file_directory', 'links', 'table_as_cells', 'emphasized_text_contents', 'key_value_pairs', 'image_base64'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "Kreye_Marieke_BA_241_V2.pdf", + "detection_class_prob": 0.3422867953777313, + "parent_id": "e02392183bc6851689602ad4b9f6039f", + "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", + "id": "ce00eae5-7e07-454f-9e4f-f79ac36f92f4", + "processing_timestamp": "2025-05-05T23:15:46.977945", + "chunk_number": 45, + "total_chunks": 56, + "chunking_strategy": "hybrid", + "word_count": 228 + } +} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000046.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000046.json new file mode 100644 index 0000000000000000000000000000000000000000..1352921205b90defbf43763e7fc537b4ba62487a --- /dev/null +++ b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000046.json @@ -0,0 +1,1570 @@ +{ + "id": "61a115b2-0ff7-441a-f6d9-eb3d00000046", + "content": "Klimawandel - ein \u00dcberblick. Online verf\u00fcgbar unter\nhttps://www.dwd.de/DE/klimaumwelt/klimawandel/klimawandel_node.html, zuletzt gepr\u00fcft am 21.05.2024. Deutscher Wetterdienst (2022): Erl\u00e4uterungen zur Verdunstung. Online verf\u00fcgbar unter https://www.dwd.de/DE/fachnutzer/landwirtschaft/dokumentationen/allgemein/basis_ve rdunstung_doku.html?nn=782168&lsbId=510228, zuletzt aktualisiert am 05.06.2024, zuletzt gepr\u00fcft am 05.06.2024. Deutscher Wetterdienst (2024a): Wetter- und Klimalexikon. Luftdichte. Online\nverf\u00fcgbar unter\nhttps://www.dwd.de/DE/service/lexikon/Functions/glossar.html?lv3=607748&lv2=10151 8, zuletzt aktualisiert am 07.06.2024, zuletzt gepr\u00fcft am 07.06.2024. 57\nLiteraturverzeichnis\nDeutscher Wetterdienst (2024b): Wetter- und Klimalexikon. Stadtklima. Online\n\n## verf\u00fcgbar unter\n\nhttps://www.dwd.de/DE/service/lexikon/Functions/glossar.html?lv3=102558&lv2=10224 8, zuletzt aktualisiert am 23.03.2024, zuletzt gepr\u00fcft am 23.03.2024. Die Bundesregierung (Hg.) (2020): Deutsche Nachhaltigkeitsstrategie\nWeiterentwicklung 2021. Online verf\u00fcgbar unter https://www.bundesregierung.de/resource/blob/975274/1873516/9d73d857a3f7f0f8df5 ac1b4c349fa07/2021-03-10-dns-2021-finale-langfassung-barrierefrei- data.pdf?download=1, zuletzt gepr\u00fcft am 11.04.2024. Doblas-Reyes, Francisco J.; S\u00f6rensson, Anna A.; Almazroui, Mansour; Dosio, Alessandro; Gutowski, William J.; Haarsma, Rein et al. : Linking Global to Regional Climate Change. Contribution of Working Group I to the Sixth Assessment Report of the Intergovernmental Panel on Climate Change. Unter Mitarbeit von Masson- Delmotte, V., P. Zhai, A. Pirani, S.L. Connors, C. P\u00e9an, S. Berger, N. Caud, Y. Chen, L. Goldfarb, M.I. Gomis, M. Huang, K. Leitzell, E. Lonnoy, J.B.R. Matthews, T.K. Maycock, T. Waterfield, O. Yelek\u00e7i, R. Yu, B. Zhou. In: Climate Change 2021, S. 1363\u2013 1512. Online verf\u00fcgbar unter https://www.ipcc.ch/report/ar6/wg1/figures/chapter-10/faq- 10-2-figure-1, zuletzt gepr\u00fcft am 21.05.2024. Donovan, Geoffrey H.; Butry, David T. (2009): The value of shade: Estimating the effect of urban trees on summertime electricity use. In: Energy and Buildings 41 (6), S. 662\u2013668.", + "embedding": [ + 0.02004215493798256, + -0.016776787117123604, + 0.019476501271128654, + -0.01561976782977581, + -0.005116598680615425, + -0.0018544456688687205, + -0.011737323366105556, + -0.0020585311576724052, + -0.00942971184849739, + -0.011943016201257706, + 0.01229654997587204, + 0.02776847593486309, + -0.02113489620387554, + 0.020029298961162567, + -0.01026533730328083, + 0.009590408764779568, + 0.03833592310547829, + -0.005682252813130617, + 0.028822649270296097, + -0.02233048342168331, + 7.271548383869231e-05, + 0.0025197321083396673, + 0.002121203113347292, + 0.007829167880117893, + -0.005502271931618452, + 0.0038985142018646, + 0.015362652018666267, + -0.01759955659508705, + 0.008092710748314857, + 0.016712509095668793, + 0.007089960388839245, + 0.001692141522653401, + -0.020427828654646873, + -0.010837418958544731, + 0.004136345814913511, + -0.011865881271660328, + -0.01331858430057764, + -0.03393924981355667, + 0.00981538463383913, + -0.03147093951702118, + -0.001500108395703137, + 0.02674001455307007, + 0.00768775399774313, + -0.02663716860115528, + -0.0036831798497587442, + 0.032165151089429855, + 0.023140396922826767, + 0.001661609043367207, + 0.007038537412881851, + 0.025660129263997078, + 0.03555907681584358, + 0.033296458423137665, + 0.0031673419289290905, + -0.02023499086499214, + -0.02123774215579033, + -0.00026454776525497437, + -0.005598690360784531, + 0.023076118901371956, + 0.0026691805105656385, + -0.009628976695239544, + -0.03810451924800873, + -0.013511420227587223, + -0.019592203199863434, + 0.007591335568577051, + -0.03900442644953728, + -0.01933508738875389, + -0.022060511633753777, + 0.007893446832895279, + 0.004084922838956118, + -0.0050683896988630295, + 0.04651219770312309, + 0.02799987979233265, + 0.03319361433386803, + -0.005871875677257776, + 0.01951506733894348, + 0.0023590349592268467, + 0.002791310427710414, + 0.013498565182089806, + -0.017098182812333107, + 0.006691431626677513, + 0.024091724306344986, + -0.006125777494162321, + -0.014372757636010647, + 0.02362891659140587, + 0.026405764743685722, + 0.0025133041199296713, + -0.0027463152073323727, + 0.022883281111717224, + -0.003464631736278534, + 0.006067926529794931, + 0.00690997950732708, + 0.00942971184849739, + 0.00278166844509542, + 0.03442776948213577, + -0.01415420975536108, + -0.017393864691257477, + 0.0003722148831002414, + 0.006961402948945761, + 0.0048948368057608604, + -0.037358883768320084, + -0.01633969135582447, + 0.007205662317574024, + 0.0005544053274206817, + -0.0069742584601044655, + -0.0302882082760334, + 0.001664823037572205, + 0.020569242537021637, + 0.020839212462306023, + 0.008452672511339188, + -0.020299270749092102, + -0.021944809705018997, + 0.01765098050236702, + 0.010278193280100822, + -0.04129275307059288, + 0.03522482514381409, + -0.03885015472769737, + 0.03843877092003822, + 0.008876913227140903, + -0.016005441546440125, + -0.01645539328455925, + 0.028565535321831703, + 0.012335116975009441, + 0.004544517025351524, + -0.031162401661276817, + 0.012907199561595917, + 0.01950221322476864, + -0.0073599317111074924, + -0.017458144575357437, + -0.021456290036439896, + -0.017136748880147934, + 0.003326432080939412, + 0.018460894003510475, + 0.021867675706744194, + 0.0020954913925379515, + -0.008876913227140903, + 0.03859303891658783, + -0.011088106781244278, + -0.00018229088163934648, + -0.02351321466267109, + -0.024078868329524994, + 0.002606508554890752, + 0.02220192551612854, + -0.0365104041993618, + -0.020080722868442535, + -0.00891548115760088, + 0.02190624177455902, + 0.012007295154035091, + 0.01645539328455925, + 0.005830094218254089, + -0.01843518204987049, + -0.0030950279906392097, + -0.022639021277427673, + 0.009609692730009556, + -0.004615223500877619, + 0.011570198461413383, + -0.003499984974041581, + 0.014719863422214985, + 0.01651967316865921, + -0.007957725785672665, + 0.01783096231520176, + 0.007051393389701843, + -0.024335984140634537, + -0.00010837017180165276, + 0.013370007276535034, + 0.013485709205269814, + 0.008471956476569176, + -0.0025984738022089005, + -0.01771525852382183, + 0.005778671242296696, + -0.003103062976151705, + -0.021636271849274635, + 0.03800167515873909, + -0.028256995603442192, + 0.03172805532813072, + -0.0006315400241874158, + 0.03447918966412544, + 0.008549091406166553, + 0.020067866891622543, + -0.022163357585668564, + -0.020659232512116432, + -0.02555728331208229, + 0.017483854666352272, + -0.013119319453835487, + 0.0018480177968740463, + -0.019733617082238197, + 0.0002848357835318893, + 0.022639021277427673, + 0.013305728323757648, + 0.013858526945114136, + 0.0046730744652450085, + 0.02225334756076336, + 0.024310272186994553, + 0.008754783309996128, + -0.007816311903297901, + -0.6355895400047302, + -0.0013128961436450481, + 0.00438381964340806, + -0.0068071335554122925, + -0.004477024078369141, + 0.020016442984342575, + 0.024040300399065018, + 0.014835565350949764, + -0.02418171428143978, + 0.045740850269794464, + 0.023114684969186783, + -0.019347943365573883, + -0.018987981602549553, + -0.012399395927786827, + 0.005389783997088671, + -0.015311229042708874, + -0.009937514550983906, + 0.010837418958544731, + 0.033836401998996735, + -0.0033714273013174534, + -0.00894119217991829, + 0.030416766181588173, + -0.012026578187942505, + -0.0068071335554122925, + 0.00592329865321517, + 0.014475603587925434, + 0.013035756535828114, + -0.03885015472769737, + 0.010753856971859932, + 0.011390217579901218, + -0.01029104832559824, + -0.0006030162330716848, + -0.009461850859224796, + 0.019193673506379128, + 0.04476381093263626, + -0.006562873721122742, + 0.004216694738715887, + -0.0013852098491042852, + 0.01622398942708969, + 0.02089063636958599, + -0.013177170418202877, + -0.0046891444362699986, + 0.011049539782106876, + 0.00046160269994288683, + -0.0006255138432607055, + 0.014745575375854969, + 0.034247785806655884, + -0.015529777854681015, + 0.007141383830457926, + -0.018383760005235672, + 0.012605088762938976, + -0.0018142714397981763, + 0.027614206075668335, + -0.005762601736932993, + 0.024040300399065018, + 0.018113788217306137, + 0.01212299708276987, + -0.02352607063949108, + 0.01112667378038168, + 0.011049539782106876, + -0.00816341768950224, + 0.011923732236027718, + 0.003567477921023965, + -0.017985230311751366, + -0.024220282211899757, + 0.04057282954454422, + -0.03458203747868538, + 0.02310182899236679, + 0.00861979741603136, + -0.006942118983715773, + -0.028874073177576065, + 0.009596836753189564, + 0.01068315003067255, + -0.021571991965174675, + 0.023191820830106735, + 0.00339713878929615, + 0.033527862280607224, + -0.012875059619545937, + 0.015696901828050613, + 0.02041497267782688, + 0.003115918720141053, + -0.02465737797319889, + 0.016481105238199234, + -0.006697859149426222, + 0.022651877254247665, + -0.028874073177576065, + -5.679641617462039e-05, + -0.01085670292377472, + -0.018473749980330467, + 0.010027505457401276, + 0.027202822268009186, + 0.023410368710756302, + -0.021276310086250305, + -0.009076178073883057, + -0.01390994992107153, + 0.04394104331731796, + -0.012688650749623775, + 0.02082635648548603, + 0.0010107853449881077, + -0.02526159957051277, + -0.011943016201257706, + 0.017381008714437485, + 0.015529777854681015, + -0.0004953491152264178, + 0.019463645294308662, + 0.01657109521329403, + -0.03787311539053917, + -0.001146574504673481, + 0.030185362324118614, + -0.00975753366947174, + 0.0024490253999829292, + -0.008086282759904861, + -0.034196365624666214, + -0.0023349302355200052, + -0.010728145018219948, + -0.019039403647184372, + 0.039467234164476395, + 0.00819555763155222, + -0.013922805897891521, + -0.0016350940568372607, + 0.007726321462541819, + -0.0061964839696884155, + 0.011910876259207726, + -0.0333993062376976, + -0.009275441989302635, + 0.008356254547834396, + -0.005392997991293669, + -0.023487502709031105, + 0.0009971261024475098, + -0.016532527282834053, + 0.0140385078266263, + 0.020312126725912094, + 0.0224333293735981, + 0.0007882197969593108, + 0.017702404409646988, + 0.007700609974563122, + 0.012894343584775925, + 0.0019942522048950195, + 0.0019347942434251308, + -0.018422327935695648, + -0.00516159413382411, + -0.0071542393416166306, + 0.003888872219249606, + -0.02544158138334751, + -0.01262437179684639, + -0.02321753092110157, + 0.009590408764779568, + 0.00151858851313591, + -0.0037506725639104843, + 0.010657438077032566, + -0.02542872540652752, + -0.017316730692982674, + -0.0044609541073441505, + 0.03702463582158089, + 0.006864984519779682, + 0.0035417662002146244, + -0.004756636917591095, + -0.013003617525100708, + -0.02100633829832077, + -0.032216574996709824, + 0.016185421496629715, + 0.011724467389285564, + -0.02531302347779274, + -0.0054637049324810505, + -0.002511697355657816, + 0.014604161493480206, + -0.009886091575026512, + 0.02452882006764412, + -0.018885135650634766, + -0.051860202103853226, + -0.00255187158472836, + -0.010753856971859932, + 0.0024265276733785868, + 0.02334608882665634, + -0.0004005377704743296, + -0.013331439346075058, + -0.02596866711974144, + -0.011454496532678604, + -0.016133999451994896, + -0.012033006176352501, + 0.02974826656281948, + 0.0021260238718241453, + -0.0037281750701367855, + -0.02226620353758335, + 0.0067557101137936115, + 0.009976082481443882, + 0.015529777854681015, + 0.031985171139240265, + -0.01184659730643034, + 0.026045802980661392, + 0.03154807537794113, + 0.026251494884490967, + 0.003499984974041581, + 0.010310332290828228, + -0.008671221323311329, + -0.010040361434221268, + -0.013292872346937656, + 0.007411354687064886, + 0.0010879200417548418, + 0.008600514382123947, + 0.0422440804541111, + 0.013974228873848915, + 0.010663866065442562, + -0.015439786948263645, + 0.0039467234164476395, + -0.019309375435113907, + 0.003892086213454604, + 0.00293272384442389, + 0.015889739617705345, + 0.02310182899236679, + 0.03746173158288002, + -0.008176273666322231, + -0.04908335208892822, + -0.0010011435952037573, + -0.0182552020996809, + 0.04630650579929352, + -0.012695078738033772, + -0.012502241879701614, + -0.0045091635547578335, + -0.0077520329505205154, + 0.00424883421510458, + -0.013485709205269814, + 0.03381069004535675, + -0.018088076263666153, + -0.01331858430057764, + 0.01011749543249607, + -0.021340588107705116, + 0.019836463034152985, + 0.014398469589650631, + -0.014437036588788033, + -0.0038663747254759073, + -0.021032050251960754, + -0.01693105697631836, + -0.0035964034032076597, + 0.0043388246558606625, + 0.013871381990611553, + -0.0030869932379573584, + -0.014758431352674961, + 0.023410368710756302, + 0.0075334846042096615, + -0.008484812453389168, + 0.01182088628411293, + 0.03810451924800873, + -0.01579974964261055, + 0.0315994992852211, + 0.012161564081907272, + 0.02572440728545189, + 0.013575699180364609, + -0.02650861069560051, + -0.012347972951829433, + -0.012097285129129887, + 0.0009119565947912633, + 0.02508161962032318, + -0.006067926529794931, + 0.00084687425987795, + -0.02776847593486309, + 0.01969504915177822, + -0.0063700368627905846, + 0.004252047743648291, + 0.01729101873934269, + 0.01915510557591915, + 0.011666616424918175, + 0.010239625349640846, + -0.02370605058968067, + 0.01801094226539135, + -0.025055907666683197, + -0.030133938416838646, + -0.016841067001223564, + -0.009738250635564327, + 0.013639978133141994, + 0.0008348219562321901, + -0.011248803697526455, + -0.015452642925083637, + -0.010676722042262554, + 0.02249760739505291, + -0.001496894401498139, + 0.0030146795324981213, + 0.0028459473978728056, + 0.015272662043571472, + 0.0056340438313782215, + -0.002220835303887725, + -0.0026370410341769457, + -0.010368183255195618, + 0.03463346138596535, + -0.010830990970134735, + -0.03226799890398979, + -0.00861979741603136, + 0.009108317084610462, + -0.02177768386900425, + 0.0032396556343883276, + -0.028796939179301262, + 0.003641398623585701, + 0.0008099139085970819, + -0.0019717547111213207, + 0.009667543694376945, + -0.028565535321831703, + -0.0029552215710282326, + -0.032293710857629776, + -0.007822739891707897, + 0.0016583951655775309, + 0.002543836599215865, + 0.0020665659103542566, + 0.0027334594633430243, + -0.005740104243159294, + 0.034864865243434906, + 0.021931953728199005, + -0.010201058350503445, + 0.022960416972637177, + 0.002995395800098777, + -0.0018174853175878525, + -0.011615193448960781, + -0.03087957389652729, + -0.0171110387891531, + 0.0013876203447580338, + -0.011930160224437714, + 0.01651967316865921, + 0.02244618535041809, + -0.02392459847033024, + 0.0014518991811200976, + -0.003323218086734414, + -0.007102816365659237, + -0.002575976075604558, + -0.0007315740222111344, + 0.0014044935815036297, + 0.027691341936588287, + 0.008581230416893959, + 0.0032380486372858286, + 0.008414105512201786, + 0.017033902928233147, + -0.01884656772017479, + -0.014745575375854969, + -0.0373331755399704, + 0.0016712509095668793, + -0.006826417054980993, + 0.008934764191508293, + 0.0037249610759317875, + 0.0068071335554122925, + -0.021816251799464226, + 0.01741957664489746, + -0.007109244354069233, + 0.012463674880564213, + -0.0028105939272791147, + -0.00017144382582046092, + 0.0022352980449795723, + -0.02745993807911873, + -0.003969220910221338, + -0.0056211878545582294, + 0.06654150038957596, + 0.01487413328140974, + 0.008864057250320911, + 0.014347045682370663, + 0.019952164962887764, + 0.019592203199863434, + 0.013145031407475471, + -0.0048980507999658585, + 0.03267938271164894, + 0.009783245623111725, + 0.03450490161776543, + -0.018358048051595688, + -0.008934764191508293, + -0.002015142934396863, + -0.02123774215579033, + 0.03926153853535652, + -0.0024120649322867393, + 0.02416885830461979, + 0.010181774385273457, + -0.0013836028520017862, + -0.01345999725162983, + -0.0020006801933050156, + -0.009667543694376945, + -0.002680429257452488, + 0.04064996540546417, + -0.004242406226694584, + -0.019000837579369545, + -0.0008589265635237098, + -0.002444204408675432, + -0.022163357585668564, + -0.02197052165865898, + -0.015761181712150574, + 0.007411354687064886, + 0.027665629982948303, + -0.01632683537900448, + 0.0018255201866850257, + -0.013781392015516758, + -0.026238638907670975, + -0.01567119173705578, + -0.018589451909065247, + -0.006093638017773628, + -0.016442537307739258, + -0.0014888595324009657, + -0.005373714491724968, + 0.008703360334038734, + -0.0001982601679628715, + -0.011203808709979057, + 0.041189905256032944, + -0.018280914053320885, + -0.009024755097925663, + 0.007424210663884878, + 0.0036189008969813585, + -0.005360858514904976, + 0.02596866711974144, + -0.025582995265722275, + 0.01098526082932949, + -0.016481105238199234, + -0.009436139836907387, + -0.003840663004666567, + 0.0008388393907807767, + -0.01765098050236702, + -0.009995365515351295, + 0.00212441710755229, + -0.006877840030938387, + -0.01226441003382206, + 0.0010678329272195697, + 0.02465737797319889, + -0.01604400761425495, + -0.0019026548834517598, + 0.007809883914887905, + 0.00671714311465621, + 0.005132668651640415, + 0.014732719399034977, + 0.02956828474998474, + 0.018113788217306137, + 0.006135419011116028, + -0.0230889730155468, + 0.024194570258259773, + 0.008780495263636112, + 0.0009424890740774572, + 0.010413178242743015, + 0.0016206313157454133, + 0.0013337867567315698, + 0.005949010606855154, + -0.00204085442237556, + -0.005531197879463434, + -0.009796101599931717, + 0.020427828654646873, + -0.009616120718419552, + 0.03190803527832031, + -0.014886988326907158, + -0.013190026395022869, + 0.008819062262773514, + 0.0012076394632458687, + -0.014501315541565418, + 0.016892489045858383, + 0.007694181986153126, + 0.01307432446628809, + -0.04026428982615471, + 0.03717890381813049, + 0.017638124525547028, + 0.013485709205269814, + 0.027897033840417862, + 0.00726994127035141, + -0.003998146392405033, + -0.03275651857256889, + -0.00012443988816812634, + 0.006922835484147072, + 0.0021469146013259888, + 0.020980626344680786, + -0.001358694862574339, + -0.014231343753635883, + -0.01131308265030384, + 0.001341821625828743, + 0.014796998351812363, + -0.03499342128634453, + -0.00930115394294262, + -0.015439786948263645, + 0.01029104832559824, + 0.0009224019595421851, + 0.026791436597704887, + 0.02236904948949814, + -0.02501733973622322, + -0.032525114715099335, + -0.006736426614224911, + -0.003390711033716798, + 0.014449892565608025, + -0.02362891659140587, + -0.03769313544034958, + -0.009191880002617836, + 0.006540376227349043, + -0.01633969135582447, + -0.032525114715099335, + 0.008780495263636112, + -0.024503109976649284, + 0.012155136093497276, + -0.0037731702905148268, + 0.011049539782106876, + -0.0166996531188488, + 0.030956707894802094, + 0.0049044787883758545, + -0.01730387471616268, + -0.009609692730009556, + 0.006440743803977966, + -0.004001360386610031, + -0.038927290588617325, + 0.00091597402933985, + 0.0034067807719111443, + 0.0012823636643588543, + 0.014192776754498482, + 0.003564263926818967, + 0.025133041664958, + 0.0186665877699852, + -0.00588151765987277, + -0.02956828474998474, + -0.019977876916527748, + -0.02465737797319889, + -0.004563800524920225, + -0.00233332347124815, + 0.003509626956656575, + 0.01687963306903839, + -0.013781392015516758, + -0.01723959483206272, + 0.0471549853682518, + 0.004544517025351524, + -0.0011658582370728254, + -0.013215737417340279, + 0.013498565182089806, + -0.010811707936227322, + 0.03165091946721077, + 0.013755680061876774, + -0.021147752180695534, + -0.014848421327769756, + -0.0023461792152374983, + -0.02272901125252247, + -0.02154628001153469, + 0.033116478472948074, + -0.026431474834680557, + -0.011017399840056896, + -0.010046789422631264, + 0.0020617451518774033, + -0.005605118349194527, + 0.00586544768884778, + 0.013974228873848915, + -0.023911744356155396, + 0.014642728492617607, + -0.02207336761057377, + -0.012328688986599445, + -0.01609543152153492, + -0.013202882371842861, + -0.02992824651300907, + 0.025814399123191833, + -0.017149604856967926, + -0.0007833988638594747, + 0.04160129278898239, + -0.016108287498354912, + -0.005196947604417801, + 0.008954048156738281, + 0.0024522393941879272, + 0.015568344853818417, + -0.0018801572732627392, + 0.055331259965896606, + 0.024374552071094513, + -0.01002107746899128, + -0.03648469224572182, + -0.03805309534072876, + -0.01604400761425495, + -0.019913597032427788, + 0.016416825354099274, + -0.001160233747214079, + -0.006183628458529711, + -0.019373655319213867, + 0.0075334846042096615, + 0.008317687548696995, + -0.013691401109099388, + 0.002860410138964653, + 0.04067567363381386, + 0.033964961767196655, + 0.018949413672089577, + -0.008330542594194412, + -0.0035867614205926657, + -0.007977008819580078, + 0.013562844134867191, + -0.013331439346075058, + -0.013691401109099388, + -0.009371860884130001, + -0.029953958466649055, + 0.005499058403074741, + 0.03897871449589729, + 1.384757888445165e-05, + 0.008684076368808746, + 0.004589512012898922, + 0.011261659674346447, + 0.022124791517853737, + -0.029696842655539513, + -0.011396645568311214, + 0.016442537307739258, + -0.010541736148297787, + 0.020864924415946007, + -0.009712538681924343, + -0.01771525852382183, + 0.005399425979703665, + -0.018589451909065247, + -0.008819062262773514, + 0.0003412806836422533, + -0.010419606231153011, + 0.016416825354099274, + -0.022780435159802437, + 0.004595940001308918, + -0.006832845043390989, + 0.0035128407180309296, + 0.004342038184404373, + 0.02686857245862484, + 0.001909082755446434, + -0.0010911340359598398, + 0.006222195457667112, + -0.009686827659606934, + 0.012521525844931602, + 0.01783096231520176, + -0.007578480057418346, + -0.0052355146035552025, + -0.006402176339179277, + -0.015221239067614079, + -0.010792423970997334, + -0.020877780392766, + 0.0045123775489628315, + -0.03411922976374626, + -7.402114715659991e-05, + 0.01765098050236702, + -0.02339751273393631, + 0.028385553508996964, + -0.000989894731901586, + -0.013157886452972889, + -0.012907199561595917, + 0.03064817003905773, + -0.03841305896639824, + 0.03275651857256889, + 0.04599796608090401, + -0.0037024635821580887, + -0.006151488982141018, + 0.003509626956656575, + -0.0066335806623101234, + -0.02776847593486309, + 0.020479250699281693, + 0.005299793556332588, + -0.03800167515873909, + 0.00685212854295969, + -0.007527057081460953, + 0.01819092221558094, + -0.009179024025797844, + -0.008304831571877003, + 0.0012212987057864666, + 0.007681326009333134, + -0.0114609245210886, + -0.02585296519100666, + -0.009956798516213894, + 0.04882623627781868, + 0.0003183813241776079, + 0.004971971269696951, + 0.04558658227324486, + -0.026405764743685722, + 0.014398469589650631, + 0.010811707936227322, + 0.006572515703737736, + -0.022819003090262413, + -0.020659232512116432, + -0.028411265462636948, + -0.011808030307292938, + 0.018987981602549553, + 0.010631727054715157, + -0.005871875677257776, + -0.0077520329505205154, + -0.01831948012113571, + -0.008992615155875683, + 0.013524276204407215, + 0.00485948333516717, + 0.03129095956683159, + 0.01909082755446434, + 0.01134522259235382, + -0.016661085188388824, + -0.003355357563123107, + 0.0002892549673561007, + -0.020877780392766, + -0.012932910583913326, + 0.0007649186882190406, + -0.033656422048807144, + 0.006482525262981653, + 0.014835565350949764, + 0.030262496322393417, + 0.027897033840417862, + -0.027022840455174446, + -0.033836401998996735, + 0.005386570002883673, + -0.019052259624004364, + -0.01896226964890957, + -5.5792061175452545e-05, + 0.006077568046748638, + -0.0031368094496428967, + 0.028462687507271767, + -0.0065821572206914425, + 0.032396554946899414, + 0.007944869808852673, + 0.0320880152285099, + -0.02429741621017456, + -0.03131667152047157, + -0.0018833711510524154, + 0.01131308265030384, + 0.03435063362121582, + 0.009693254716694355, + -0.026482898741960526, + 0.002968077315017581, + 0.011898021213710308, + -0.014964123256504536, + -0.006498594768345356, + 0.00127593579236418, + -0.005042678210884333, + -0.017920952290296555, + -0.01453988254070282, + 0.01633969135582447, + -0.0024554531555622816, + 0.022343339398503304, + -0.0029471865855157375, + -0.03211372718214989, + 0.01232226099818945, + 0.027614206075668335, + 0.0026273992843925953, + -0.03188232332468033, + -0.006691431626677513, + 0.026290062814950943, + -0.02434884011745453, + -0.016673941165208817, + 0.014462748542428017, + -0.03679323196411133, + -0.015645479783415794, + -0.035584788769483566, + 0.015645479783415794, + -1.9584971596486866e-05, + -0.004155629780143499, + 0.010091784410178661, + 0.007694181986153126, + -0.022883281111717224, + -0.002121203113347292, + -0.009281869977712631, + -0.025171609595417976, + 0.002608115551993251, + 0.020684944465756416, + -0.0008143330924212933, + 0.04918619990348816, + -0.028951207175850868, + 0.006877840030938387, + -0.0052194450981915, + 0.006170772481709719, + -0.03681894391775131, + -0.02542872540652752, + -0.009956798516213894, + 0.027537072077393532, + 0.023243242874741554, + -0.025171609595417976, + 0.02663716860115528, + -0.003953150939196348, + -0.010875986889004707, + 0.008510523475706577, + -0.023320376873016357, + 0.009558269754052162, + -0.021983377635478973, + -0.016288267448544502, + 0.005357644520699978, + -0.015838315710425377, + 0.010355327278375626, + 0.019373655319213867, + -0.010516025125980377, + -0.005016966722905636, + 0.010734573006629944, + 0.20507533848285675, + -0.016982480883598328, + 0.008671221323311329, + 0.03393924981355667, + -0.010927409864962101, + -0.01065101008862257, + 0.025878677144646645, + -0.0021758400835096836, + 0.003352143568918109, + 0.012746501713991165, + -0.014938412234187126, + 0.0021083473693579435, + 0.014205632731318474, + 0.011396645568311214, + 0.009236874990165234, + 0.002759170951321721, + -0.04049569368362427, + -0.003786026034504175, + -0.010657438077032566, + 0.026714302599430084, + 0.020093578845262527, + -0.025338735431432724, + 0.005842950195074081, + -0.0151441041380167, + 0.04921191185712814, + -0.007231374271214008, + 0.015336940996348858, + -0.012360828928649426, + 0.01879514381289482, + -0.005274082068353891, + -0.004538089036941528, + 0.01453988254070282, + -0.030905285850167274, + 0.012335116975009441, + -0.013614267110824585, + -0.016969624906778336, + 0.0378216914832592, + -0.020196424797177315, + 0.005720820277929306, + 0.029593996703624725, + 0.000988287734799087, + -0.009879663586616516, + -0.006646436173468828, + -0.03661325201392174, + -0.0019203315023332834, + 0.02704855240881443, + -0.0008091104100458324, + -0.012855775654315948, + -0.006742854602634907, + 0.0008894589846022427, + -0.014449892565608025, + 0.006819989066570997, + 0.012810780666768551, + 0.04337538778781891, + -0.012335116975009441, + -0.004136345814913511, + 0.01157662644982338, + 0.0031352024525403976, + -0.008015576750040054, + 0.006228623446077108, + -0.02763991802930832, + 0.02830841951072216, + -0.016622519120573997, + 0.014565594494342804, + -0.025930101051926613, + 0.00882549025118351, + -0.021224886178970337, + 0.009146885015070438, + 0.009262586943805218, + -0.008690504357218742, + -0.013498565182089806, + -0.011120246723294258, + -0.02015785686671734, + 0.02650861069560051, + -0.003506412962451577, + -0.029722554609179497, + 0.012360828928649426, + 0.011718040332198143, + 0.0073727876879274845, + 0.022960416972637177, + -0.01095312088727951, + 0.010033933445811272, + -0.002646682783961296, + -0.04401817545294762, + -0.0017049972666427493, + -0.0347105972468853, + 0.032525114715099335, + -0.0027302454691380262, + -0.017638124525547028, + -0.008330542594194412, + -0.016648229211568832, + 0.0093332938849926, + -0.004811274353414774, + 0.008304831571877003, + 0.027305668219923973, + 0.0040720668621361256, + 0.01879514381289482, + 0.007951297797262669, + 0.00021272292360663414, + -0.0016037580789998174, + -0.008838346228003502, + 0.047540660947561264, + 0.043838195502758026, + -0.014321334660053253, + 0.007122099865227938, + 0.010753856971859932, + -0.00894119217991829, + 0.017818106338381767, + -0.0037699562963098288, + -0.009140457026660442, + 0.0006913997349329293, + -0.026238638907670975, + 0.01896226964890957, + -0.008690504357218742, + -0.020672088488936424, + 0.024194570258259773, + -0.005932940635830164, + 5.9558398788794875e-05, + -0.021649127826094627, + -0.023950310423970222, + -0.0010212307097390294, + -0.011422356590628624, + 0.010033933445811272, + 0.0009754319908097386, + 0.0012060324661433697, + -0.030776727944612503, + -0.04039284959435463, + 0.0033778550568968058, + -0.012020150199532509, + -0.018216634169220924, + 0.02871980331838131, + -0.007655614521354437, + 0.0029086193535476923, + 0.0031866254284977913, + 0.0001929370773723349, + 0.014141353778541088, + 0.005724034272134304, + -0.03805309534072876, + 0.009943942539393902, + 0.01501554623246193, + 0.016301123425364494, + -0.019656481221318245, + -0.0060261450707912445, + -0.002048889407888055, + 0.018769433721899986, + -0.0006042214808985591, + 0.004772706888616085, + -0.03172805532813072, + -0.004194196779280901, + -0.0009103496558964252, + -0.033296458423137665, + -0.0029487935826182365, + 0.0002547050535213202, + -0.023024694994091988, + 0.010863130912184715, + 0.011512347497045994, + -0.015041258186101913, + -0.009024755097925663, + 0.0029455795884132385, + 0.019720761105418205, + -0.014115641824901104, + -0.006437529809772968, + -0.01104311179369688, + -0.026714302599430084, + 0.011981583200395107, + 0.007745604962110519, + -0.16064578294754028, + 0.009256158955395222, + 0.008060571737587452, + -0.0275884959846735, + 0.009860380552709103, + 0.02370605058968067, + 0.010220342315733433, + -0.001220495207235217, + -0.013447142206132412, + -0.017072470858693123, + 0.007295652758330107, + 0.029156900942325592, + -0.014565594494342804, + 0.0032975065987557173, + -0.0041202763095498085, + 0.003988504409790039, + -0.007488489616662264, + 0.0351991131901741, + 0.004547730553895235, + 0.002376711694523692, + 0.022934705018997192, + -0.004345252178609371, + 0.010477457195520401, + -0.024490253999829292, + 0.0007010415429249406, + -0.004187769256532192, + -0.0036992495879530907, + 0.027151398360729218, + -0.008439816534519196, + -0.007308508735150099, + -0.018448038026690483, + 0.00014050961181055754, + 0.021160608157515526, + -0.020003587007522583, + -0.01897512562572956, + -0.01591545157134533, + 0.005020180717110634, + -0.028385553508996964, + -0.025570139288902283, + 0.040418561547994614, + 0.019232241436839104, + 0.010355327278375626, + 0.0030532467644661665, + 0.011261659674346447, + -0.04337538778781891, + 0.0075334846042096615, + 0.0013289658818393946, + 0.009294725954532623, + -0.01268222276121378, + -0.006819989066570997, + 0.004718069918453693, + -0.00804771576076746, + -0.013138603419065475, + -0.002198337810114026, + 0.005203375592827797, + 0.026585744693875313, + 0.007462778128683567, + -0.001981396460905671, + 0.009018327109515667, + -0.0215334240347147, + -0.007449922151863575, + -0.01157662644982338, + -0.015324085019528866, + 0.0026675735134631395, + -0.00025450417888350785, + -0.014938412234187126, + -0.004203838761895895, + 0.005023394711315632, + 0.007829167880117893, + -0.006505022756755352, + 0.013485709205269814, + -0.027125688269734383, + 0.007244229782372713, + -0.00041218832484446466, + -0.013093607500195503, + -0.01974647119641304, + -0.024387408047914505, + -0.0023461792152374983, + 0.009230447001755238, + -0.008375538513064384, + -0.022471897304058075, + 0.061604879796504974, + -0.019116539508104324, + 0.015645479783415794, + -0.021854819729924202, + 0.004438456613570452, + -0.02656003274023533, + 0.011300227604806423, + 0.002510090358555317, + 0.00125263468362391, + -0.0073213642463088036, + -0.014244199730455875, + -0.020659232512116432, + -0.012425107881426811, + 0.004788776393979788, + -0.008394821546971798, + 0.014681296423077583, + 0.006308971904218197, + 0.009461850859224796, + -0.013190026395022869, + 0.020016442984342575, + -0.013485709205269814, + -0.010843846946954727, + -0.013177170418202877, + 0.012611516751348972, + 0.010644583031535149, + -0.023294666782021523, + 0.006742854602634907, + 0.03141951560974121, + -0.009204735979437828, + -0.019193673506379128, + 0.0010686364257708192, + 0.02519732154905796, + -0.016596807166934013, + -0.006832845043390989, + 0.008626225404441357, + -0.010188202373683453, + -0.024811647832393646, + -0.0038245932664722204, + -0.004746995400637388, + 0.024207426235079765, + -0.010580304078757763, + -0.0182552020996809, + -0.0037024635821580887, + -0.009956798516213894, + -0.012785069644451141, + -0.08315116167068481, + 0.009101889096200466, + 0.012990761548280716, + 0.02578868716955185, + 0.014951267279684544, + 0.011287371627986431, + -0.004329182673245668, + 0.019232241436839104, + -0.008606942370533943, + 0.01218084804713726, + -0.0315994992852211, + 0.004052783362567425, + -0.0036221148911863565, + 0.012277266010642052, + 0.022420473396778107, + -0.03607330843806267, + -0.014796998351812363, + -0.023680338636040688, + -0.03764171153306961, + 0.022934705018997192, + 0.023230386897921562, + -0.010728145018219948, + -0.016712509095668793, + -0.03201088309288025, + -0.03363071009516716, + -0.015414075925946236, + -0.026534322649240494, + 0.030776727944612503, + 0.00804771576076746, + -0.020273558795452118, + -0.0034035667777061462, + -0.015272662043571472, + 0.005553695373237133, + -0.03630471229553223, + 0.012778641656041145, + 0.011055967770516872, + -0.02004215493798256, + -0.026945706456899643, + 0.02506876364350319, + -0.05671968311071396, + -0.014938412234187126, + -0.00012504251208156347, + 0.019720761105418205, + -0.04412102326750755, + 0.015246950089931488, + -0.0036574683617800474, + -0.01298433355987072, + -0.009249730966985226, + -0.022459041327238083, + -0.012913626618683338, + -0.02171340584754944, + -0.01722674071788788, + 0.01245081890374422, + 0.007231374271214008, + 0.0025984738022089005, + 0.015002690255641937, + -0.0017532064812257886, + -0.00743706664070487, + -0.022934705018997192, + 0.0016760717844590545, + -0.005878303665667772, + 0.008362682536244392, + -0.04216694459319115, + 0.025660129263997078, + 0.011910876259207726, + -0.016789643093943596, + -0.03154807537794113, + 0.017162460833787918, + -0.003557835938408971, + -0.008581230416893959, + -0.024425974115729332, + 0.00701925391331315, + 0.008909053169190884, + 0.005396211985498667, + -0.019965020939707756, + 0.010728145018219948, + -0.026971418410539627, + 0.008246980607509613, + 0.0017869528383016586, + -0.008266263641417027, + -0.017496710643172264, + -0.016018297523260117, + 0.014167064800858498, + -0.0011996045941486955, + 0.01758670248091221, + 0.014398469589650631, + -0.013511420227587223, + -0.0229218490421772, + 0.014295622706413269, + -0.022343339398503304, + 0.00360604515299201, + -0.0009368647006340325, + 0.01640396937727928, + 0.002898977603763342, + 0.005389783997088671, + 0.019913597032427788, + 0.0028813008684664965, + -0.016082575544714928, + 0.023320376873016357, + 0.025955811142921448, + -0.041909828782081604, + -0.0012783462880179286, + -0.057182490825653076, + 0.02871980331838131, + -0.00024486237089149654, + -0.0083498265594244, + -0.026431474834680557, + 0.0017146391328424215, + -0.001358694862574339, + 0.026238638907670975, + 0.01345999725162983, + 0.01633969135582447, + -0.005839736200869083, + 0.017201028764247894, + -0.027537072077393532, + -0.018923701718449593, + -0.010914553888142109, + -0.003843876998871565, + 0.011049539782106876, + 0.010850274935364723, + 0.02866838127374649, + -0.014192776754498482, + -0.00816341768950224, + 0.012251554988324642, + 0.011274515651166439, + 0.0140385078266263, + -0.03944152221083641, + 0.008388393558561802, + -0.012675794772803783, + -0.01331858430057764, + 0.023950310423970222, + -0.004586298018693924, + 0.014475603587925434, + -0.0018978338921442628, + -0.017381008714437485, + 0.009166168048977852, + -0.00408170884475112, + 0.007032109424471855, + -0.0029134403448551893, + 0.03231942281126976, + -0.0069742584601044655, + 0.05692537501454353, + -0.023744618520140648, + -0.009937514550983906, + 0.023950310423970222, + -0.011255231685936451, + -0.01367854606360197, + 0.0001221298734890297, + 0.013601411134004593, + -0.0005363269010558724, + 0.017162460833787918, + -0.028591245412826538, + 0.03630471229553223, + 0.0023172537330538034, + 7.522638043155894e-05, + -0.0073213642463088036, + 0.032216574996709824, + -0.02544158138334751, + 0.024130292236804962, + -0.004171699285507202, + 0.01824234612286091, + -0.01627541333436966, + 0.030056804418563843, + 0.01794666424393654, + 0.011988011188805103, + 0.005155166145414114, + 0.018422327935695648, + 0.0014776107855141163, + -0.029105477035045624, + -0.016352547332644463, + 0.0004503538948483765, + -0.02567298524081707, + -0.006524306256324053, + -0.0017371367430314422, + 0.007636331021785736, + 0.013601411134004593, + 0.0005845360574312508, + -0.016892489045858383, + 0.0013594983611255884, + 0.002553478581830859, + 0.006128991022706032, + 0.02483735978603363, + 0.01986217312514782, + 0.028514111414551735, + -0.021263454109430313, + 0.010734573006629944, + 0.014938412234187126, + 0.005399425979703665, + -0.02632862888276577, + -0.007282797247171402, + -0.0023060047533363104, + 0.005990791600197554, + 0.001766062225215137, + -0.006238265428692102, + -0.0035931894090026617, + -0.010040361434221268, + 0.03501913323998451, + 0.005968294106423855, + 0.009352576918900013, + -0.014385613612830639, + 0.0018190923146903515, + 0.04882623627781868, + 0.005511913914233446, + -0.0008372323936782777, + -0.0035449801944196224, + -0.018769433721899986, + -0.02490163780748844, + 0.008536235429346561, + 0.0018914060201495886, + -0.03244797885417938, + -0.0017483854899182916, + 0.024040300399065018, + -0.012251554988324642, + 0.004004574380815029, + -0.005020180717110634, + -0.0011200595181435347, + -0.016506817191839218, + 0.03954436630010605, + -0.014861277304589748, + -0.001323341391980648, + -0.025955811142921448, + 0.008452672511339188, + 0.007449922151863575, + 0.007250657770782709, + 0.0026740015018731356, + -0.007957725785672665, + 0.008851202204823494, + 0.008336970582604408, + 0.006864984519779682, + -0.006440743803977966, + 0.034967709332704544, + -0.0012052289675921202, + 0.004184555262327194, + 0.004181341268122196, + -0.015208383090794086, + -0.012932910583913326, + -0.018538029864430428, + -0.004756636917591095, + 0.018705153837800026, + 0.009808957576751709, + 0.006819989066570997, + 0.0810428112745285, + 0.042629752308130264, + -0.018653731793165207, + 0.024567387998104095, + -0.020864924415946007, + 0.016429681330919266, + 0.009076178073883057, + 0.004271331708878279, + 0.011422356590628624, + -0.02578868716955185, + -0.012341544963419437, + -0.0016937485197559, + 0.01218084804713726, + -0.019065115600824356, + -0.03039105422794819, + -0.0042874012142419815, + 0.001766062225215137, + 0.002498841378837824, + -0.006296116393059492, + 0.018396615982055664, + 0.04972614347934723, + -0.0045155915431678295, + 0.008234124630689621, + 0.032473690807819366, + -0.028256995603442192, + -0.03237084299325943, + 0.01343428622931242, + -0.00743706664070487, + -0.014591305516660213, + -0.0024168859235942364, + -0.0062446934171020985, + 0.01747100055217743, + -0.0559997595846653, + -0.0146555844694376, + 0.01945078931748867, + -0.0030966349877417088, + 0.005534411408007145, + -0.034787729382514954, + 0.013961372897028923, + -0.004946259781718254, + 0.007385643199086189, + 0.008073427714407444, + -0.024875925853848457, + -0.013241449370980263, + -0.012997189536690712, + -0.027537072077393532, + 0.005225873086601496, + -0.020093578845262527, + -0.033527862280607224 + ], + "metadata": { + "source": "Kreye_Marieke_BA_241_V2.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 17, + "has_images": true, + "image_count": 98, + "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", + "links": [], + "last_modified": "2025-05-05T23:00:23", + "_known_field_names": "frozenset({'is_continuation', 'sent_to', 'header_footer_type', 'email_message_id', 'filename', 'languages', 'detection_class_prob', 'sent_from', 'link_texts', 'cc_recipient', 'subject', 'image_mime_type', 'image_path', 'filetype', 'page_number', 'last_modified', 'signature', 'detection_origin', 'text_as_html', 'attached_to_filename', 'bcc_recipient', 'data_source', 'link_start_indexes', 'category_depth', 'emphasized_text_tags', 'parent_id', 'orig_elements', 'page_name', 'coordinates', 'url', 'link_urls', 'file_directory', 'links', 'table_as_cells', 'emphasized_text_contents', 'key_value_pairs', 'image_base64'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "Kreye_Marieke_BA_241_V2.pdf", + "detection_class_prob": 0.3422867953777313, + "parent_id": "e02392183bc6851689602ad4b9f6039f", + "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", + "id": "ce00eae5-7e07-454f-9e4f-f79ac36f92f4", + "processing_timestamp": "2025-05-05T23:15:46.977945", + "chunk_number": 46, + "total_chunks": 56, + "chunking_strategy": "hybrid", + "word_count": 220 + } +} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000047.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000047.json new file mode 100644 index 0000000000000000000000000000000000000000..60fac1bb9083b939d060ea33720cd3028a6fbcbe --- /dev/null +++ b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000047.json @@ -0,0 +1,1570 @@ +{ + "id": "61a115b2-0ff7-441a-f6d9-eb3d00000047", + "content": "Donovan, Geoffrey H.; Butry, David T. (2009): The value of shade: Estimating the effect of urban trees on summertime electricity use. In: Energy and Buildings 41 (6), S. 662\u2013668. DOI: 10.1016/j.enbuild.2009.01.002. Erell, Evyatar; Zhou, Bin (2022): The effect of increasing surface cover vegetation on urban microclimate and energy demand for building heating and cooling. In: Building and Environment. DOI: 10.1016/j.buildenv.2022.108867. Feldmann, Falko; Quambusch, Mona; Langenbrinck, Gregor; Ammon, Inken (2023): Stadtgr\u00fcn wirkt! Aspekte der Pflanzenauswahl f\u00fcr eine leistungsf\u00e4hige Vegetation f\u00fcr Klimaanpassung und Klimaschutz in der Stadt. Hg. v. Bundesinstitut f\u00fcr Bau-, Stadt- und Raumforschung (BBSR)im Bundesamt f\u00fcr Bauwesen und Raumordnung (BBR). Bonn. Online verf\u00fcgbar unter\nhttps://www.bbsr.bund.de/BBSR/DE/veroeffentlichungen/sonderveroeffentlichungen/20 23/stadtgruen-wirkt-dl.pdf?__blob=publicationFile&v=2, zuletzt gepr\u00fcft am 12.04.2024. GALK e.V. (Hg. ): Stra\u00dfenbaumliste. Online verf\u00fcgbar unter\nhttps://galk.de/arbeitskreise/stadtbaeume/themenuebersicht/strassenbaumliste/galk- strassenbaumliste, zuletzt gepr\u00fcft am 26.04.2024. Hasel, Markus; Gronemeier, Tobias; Ketterer, Christine; R\u00f6ckle, Rainer (2022): Stadtklimaanalyse f\u00fcr die Stadt Asperg. Online verf\u00fcgbar unter https://www.asperg.de/fileadmin/Dateien/Dateien/Stadtklimaanalyse.pdf, zuletzt gepr\u00fcft am 18.04.2024. Icha, Pertra; Lauf, Thomas (2023): Entwicklung der spezifischen Treibhausgas- Emissionen des deutschen Strommixes in den Jahren 1990 - 2022. Unter Mitarbeit von Gunther Kuhs. Hg. v. Umweltbundesamt. Online verf\u00fcgbar unter https://www.umweltbundesamt.de/sites/default/files/medien/1410/publikationen/2023_0 5_23_climate_change_20-2023_strommix_bf.pdf, zuletzt gepr\u00fcft am 07.06.2024.\ninfas Institut f\u00fcr angewandte Sozialwissenschaft GmbH (2018): Mobilit\u00e4t in\nDeutschland 2017 - Ergebnisbericht. Online verf\u00fcgbar unter\n58\nLiteraturverzeichnis\nhttps://bmdv.bund.de/SharedDocs/DE/Anlage/G/mid-\nergebnisbericht.pdf?__blob=publicationFile, zuletzt gepr\u00fcft am 28.04.2024. Kampusch, Verena (2018): Gr\u00fcn findet Stadt.", + "embedding": [ + 0.0346873514354229, + -0.012372434139251709, + 0.03269623592495918, + -0.016466012224555016, + 0.008174058981239796, + 0.01735677570104599, + -0.013197699561715126, + -0.014946476556360722, + -0.012411732226610184, + -0.025426039472222328, + 0.0011805882677435875, + 0.011835356242954731, + -0.0038970874156802893, + 0.02621200680732727, + -0.0188894122838974, + -0.005380600690841675, + 0.03568291291594505, + -0.015719344839453697, + 0.01839163340628147, + -0.001350062433630228, + -0.011396524496376514, + 0.01949198730289936, + -0.0053904252126812935, + 0.008586691692471504, + 0.009339910000562668, + 0.02160099893808365, + 0.022452462464571, + -0.028111428022384644, + -0.006300837267190218, + 0.007610782515257597, + 0.02040894888341427, + -0.016728002578020096, + -0.013407290913164616, + -0.01085289753973484, + -0.0038905376568436623, + -0.0026084287092089653, + 0.005465746857225895, + -0.0021990707609802485, + 0.031098103150725365, + -0.002341527258977294, + 0.00761733204126358, + -0.005865280516445637, + 0.0003991239645984024, + -0.017461571842432022, + 0.01357103418558836, + 0.012824364937841892, + 0.03848619386553764, + -0.002298954175785184, + -0.017160283401608467, + 0.02900218963623047, + 0.01736987568438053, + 0.025386741384863853, + 0.010584358125925064, + -0.010833248496055603, + -0.03811940923333168, + -0.01467138808220625, + -0.009673946537077427, + 0.01998976618051529, + 0.0016783674946054816, + -0.018313035368919373, + -0.007650081068277359, + -0.020186258479952812, + -0.027508853003382683, + 0.007879321463406086, + -0.025923818349838257, + -0.014003315940499306, + -0.009929385967552662, + 0.003448431147262454, + 0.011907403357326984, + -0.010158626362681389, + 0.022439364343881607, + 0.04713183268904686, + 0.03439916670322418, + -0.019793273881077766, + 0.015156067907810211, + -0.00854739360511303, + -0.014815482310950756, + 0.008861780166625977, + -0.006107620429247618, + -0.0020549767650663853, + 0.003746443660929799, + -0.015719344839453697, + -0.021758193150162697, + 0.041394274681806564, + 0.018064146861433983, + 0.008488445542752743, + 0.01114763505756855, + 0.04068690165877342, + -0.004604457877576351, + 0.011861555278301239, + 0.017409173771739006, + 0.005328202620148659, + 0.004388317000120878, + 0.021404506638646126, + 0.010184825398027897, + -0.005776858888566494, + -0.0011470208410173655, + -0.002577317412942648, + 0.00022166731650941074, + -0.006182942073792219, + -0.012300387024879456, + 0.018601223826408386, + -0.014121211133897305, + -0.005668788682669401, + -0.03785742074251175, + 0.0040837544947862625, + -0.00953640230000019, + 0.006480954587459564, + 0.009274412877857685, + -0.03167447820305824, + -0.02288474515080452, + 0.030102543532848358, + -0.0275612510740757, + -0.04330679401755333, + 0.03214605897665024, + -0.022924043238162994, + 0.020801931619644165, + 0.0015563787892460823, + -0.01949198730289936, + 0.0007478969055227935, + 0.034923143684864044, + -0.0016218761447817087, + 0.01173711009323597, + -0.016701802611351013, + 0.024116093292832375, + 0.03513273596763611, + 0.007885871455073357, + -0.012686820700764656, + -0.03880058228969574, + -0.013675829395651817, + -0.013191149570047855, + 0.018155843019485474, + 0.003635098459199071, + 0.008364001289010048, + -0.02509855292737484, + 0.016728002578020096, + -0.009988333098590374, + 0.017003091052174568, + -0.021116318181157112, + -0.039612747728824615, + -0.020474445074796677, + 0.014723786152899265, + -0.034425362944602966, + -0.01754016801714897, + -0.0013729864731431007, + 0.03555191680788994, + 0.007944818586111069, + 0.020395848900079727, + 0.020304152742028236, + -0.03413717448711395, + -0.010296170599758625, + -0.0026641013100743294, + -0.0030161491595208645, + 0.026827679947018623, + 0.0107219023630023, + -0.004345743916928768, + 0.0019076078897342086, + 0.00436211796477437, + -0.027928035706281662, + 0.014396299608051777, + 0.02279304899275303, + -0.009032073430716991, + 0.007623882032930851, + -0.005203757900744677, + 0.022085677832365036, + -0.0017062037950381637, + -0.004869721829891205, + -0.006909961812198162, + 0.00502364058047533, + -0.012968459166586399, + -0.019439589232206345, + 0.0377788245677948, + -0.02900218963623047, + 0.0240767952054739, + -0.006589025259017944, + 0.04825838655233383, + 0.0012559101451188326, + 0.013086354359984398, + 0.005062938667833805, + -0.029473770409822464, + -0.02322533167898655, + 0.014291503466665745, + 0.006441656034439802, + 0.020448246970772743, + -0.008901078253984451, + -0.002639539772644639, + 0.030338333919644356, + 0.01777595840394497, + 0.01004073116928339, + 0.0012133368290960789, + 0.013793724589049816, + 0.0021483104210346937, + 0.008894529193639755, + -0.02102462202310562, + -0.6379957795143127, + 0.021142518147826195, + 0.0041099535301327705, + -0.0037693677004426718, + -0.0005800601793453097, + 0.005652414169162512, + 0.0346873514354229, + 0.005773584358394146, + -0.01692449301481247, + 0.01974087581038475, + 0.016963792964816093, + 0.005508320406079292, + -0.01156681776046753, + 0.0012780154356732965, + 0.00791206955909729, + -0.009569150395691395, + 0.0036416479852050543, + -0.0017127535538747907, + 0.04286141321063042, + 0.0017029289156198502, + 0.007597682997584343, + 0.03657367452979088, + -0.023015739396214485, + -0.00491556990891695, + 0.0248496625572443, + 0.02211187779903412, + -0.009084470570087433, + -0.03767402842640877, + 0.014239106327295303, + 0.022609656676650047, + -0.007158851251006126, + 0.03521133214235306, + -0.005128436256200075, + 0.02101152390241623, + 0.047105636447668076, + 0.011730561032891273, + -0.0037628179416060448, + 0.013204249553382397, + -0.00965429749339819, + 0.013413839973509312, + -0.03269623592495918, + -0.008082362823188305, + 0.012568925507366657, + 0.008881429210305214, + 0.00029576109955087304, + 0.018522627651691437, + 0.04383077099919319, + -0.027246862649917603, + -0.012025298550724983, + -0.005354401655495167, + 0.01582413911819458, + -0.0011658513685688376, + 0.007040956057608128, + -0.008534293621778488, + 0.021483104676008224, + 0.010944593697786331, + 0.018103444948792458, + -0.016479112207889557, + -0.0016529873246327043, + 0.009064821526408195, + -0.0112262312322855, + -0.0020762633066624403, + -0.0077679757960140705, + -0.011887754313647747, + -0.0018224614905193448, + 0.04993511736392975, + -0.03156968206167221, + -0.004709253553301096, + 0.008973125368356705, + -0.019505085423588753, + -0.006346685346215963, + 0.0029260904993861914, + -0.008016865700483322, + -0.00031397753627970815, + 0.013492437079548836, + 0.0013885421212762594, + 0.04296620935201645, + -0.018692919984459877, + -0.026604989543557167, + 0.02452217787504196, + 0.0020402399823069572, + -0.015103669837117195, + 0.0014687762595713139, + -0.014396299608051777, + 0.013544835150241852, + -0.034320566803216934, + -0.024024397134780884, + -0.01930859498679638, + -0.0007450314005836844, + -0.0013680742122232914, + 0.030181141570210457, + 0.014409398660063744, + -0.014540393836796284, + -0.020959125831723213, + -0.027587449178099632, + 0.04034631699323654, + -0.020972225815057755, + 0.025674927979707718, + -0.003233927534893155, + -0.044878728687763214, + -0.009759092703461647, + 0.01591583527624607, + 0.019112102687358856, + 0.0017553267534822226, + 0.015247764065861702, + 0.00863253977149725, + -0.0024839837569743395, + 0.00028552714502438903, + 0.026906277984380722, + -0.031962666660547256, + 0.008023415692150593, + -0.006480954587459564, + -0.011455471627414227, + -0.012588574551045895, + 0.00012229567801114172, + -0.024862762540578842, + 0.031360093504190445, + -0.011363775469362736, + -0.00880938209593296, + 0.006336860824376345, + -0.0035827006213366985, + 0.0077548762783408165, + 0.0013746238546445966, + -0.019518185406923294, + 0.01607302948832512, + 0.02025175467133522, + -0.006962359417229891, + -0.0009153243154287338, + -0.006811715662479401, + -0.015404957346618176, + -0.00030005935695953667, + 0.01769736222922802, + 0.040713101625442505, + -0.003602349665015936, + 0.0291069857776165, + 0.014632089994847775, + 0.021234214305877686, + -0.00863253977149725, + 0.012922611087560654, + -0.017251979559659958, + -0.010590908117592335, + 0.005672063212841749, + 0.006706919986754656, + -0.019439589232206345, + -0.01734367571771145, + -0.02698487415909767, + -0.0075518349185585976, + -0.0043391939252614975, + -0.013210798613727093, + -0.0019763801246881485, + -0.03903637081384659, + -0.015090570785105228, + -0.0059569766744971275, + 0.0018519352888688445, + -0.01608612947165966, + -0.01144237257540226, + -0.02161409892141819, + -0.009117219597101212, + -0.006025748793035746, + -0.009981783106923103, + -0.0003794748045038432, + 0.016806598752737045, + -0.02364451438188553, + -0.006507153622806072, + -0.010152076371014118, + 0.0035073787439614534, + -0.008246106095612049, + 0.02074953354895115, + -0.015627648681402206, + -0.035866305232048035, + -0.0006967271910980344, + -0.026775283738970757, + 0.023801706731319427, + 0.018077244982123375, + -0.023958900943398476, + -0.007427390199154615, + -0.011403074488043785, + -0.019282395020127296, + -0.012208690866827965, + 0.002747610444203019, + 0.02986675314605236, + 0.00821335706859827, + -0.008560492657124996, + -0.015116768889129162, + 0.022452462464571, + 0.024181591346859932, + 0.008029964752495289, + 0.01768426224589348, + 0.0006791247869841754, + 0.008069263771176338, + 0.021050821989774704, + 0.027430254966020584, + -0.005053114145994186, + 0.013426939956843853, + -0.021849889308214188, + 0.0015686595579609275, + -0.014710686169564724, + 0.007735227234661579, + -0.022701352834701538, + -0.0002482755808159709, + 0.03311541676521301, + 0.02230837009847164, + 0.01666250452399254, + 0.00128129031509161, + 0.017998648807406425, + -0.024980658665299416, + 0.011763309128582478, + 0.0026510017924010754, + 0.007898970507085323, + 0.019020406529307365, + 0.03838139772415161, + -0.013223898597061634, + -0.03667847067117691, + -0.017749760299921036, + -0.016125427559018135, + 0.04757721349596977, + -0.022832347080111504, + 0.0064187319949269295, + -0.01357103418558836, + -0.0249282605946064, + 0.018444029614329338, + -0.005639314651489258, + 0.029840555042028427, + -0.004335918929427862, + -0.01565384678542614, + 0.011200033128261566, + -0.017487769946455956, + 0.016911394894123077, + -0.008396749384701252, + -0.004804224707186222, + -0.015260863117873669, + 0.006831365171819925, + 0.00021593630663119256, + -0.0009939210722222924, + 0.011304828338325024, + 0.014894078485667706, + 0.026251304894685745, + -0.0196622796356678, + 0.029892953112721443, + 0.022177373990416527, + 0.009601899422705173, + 0.04893955960869789, + 0.0034386066254228354, + -0.008508095517754555, + 0.032460447400808334, + 0.0008191252127289772, + 0.02179749123752117, + 0.0264739952981472, + 0.0032224655151367188, + 0.008625989779829979, + -0.020015964284539223, + 0.008973125368356705, + 0.018837014213204384, + -0.020867429673671722, + 0.01828683726489544, + -0.005171009339392185, + 0.020487545058131218, + 0.004548785276710987, + 0.004561884794384241, + 0.008658738806843758, + 0.003677671542391181, + 0.00587183004245162, + 0.025124751031398773, + -0.006451481021940708, + -0.006831365171819925, + 0.0012239802163094282, + -0.013263196684420109, + -0.0064973291009664536, + -0.005288904532790184, + -0.004967967513948679, + -0.0058914790861308575, + -0.020880529657006264, + -0.012870213016867638, + -0.010604007169604301, + 0.012863663025200367, + 0.0153656592592597, + -0.014134310185909271, + 0.00914341863244772, + 0.023421822115778923, + 0.015051271766424179, + -0.012103894725441933, + 0.00025257383822463453, + -0.022151175886392593, + 0.02350042015314102, + -0.007669730111956596, + -0.024535275995731354, + 0.00037783736479468644, + -0.0006029842188581824, + -0.029054587706923485, + -0.009176166728138924, + -0.0019092453876510262, + 0.0002783633826766163, + -0.029971549287438393, + -0.00591440312564373, + 0.004774750676006079, + -0.021221114322543144, + 0.020277954638004303, + -0.016099227592349052, + -0.001260822406038642, + 0.010400965809822083, + 0.006579200737178326, + 0.005429723300039768, + -0.023461122065782547, + 0.0012166117085143924, + 0.03940315544605255, + 0.012863663025200367, + -0.027692245319485664, + -0.0051349857822060585, + 0.007119553163647652, + -0.0021646847017109394, + 0.0008899441454559565, + -0.011173834092915058, + -0.009595349431037903, + 0.016321919858455658, + -0.006363059394061565, + 0.011678162962198257, + 0.00041488424176350236, + -0.009713244624435902, + 0.03733344376087189, + 0.010328918695449829, + -0.01404261402785778, + -0.030521726235747337, + -0.0003094745916314423, + 0.01493337657302618, + 0.046922244131565094, + 0.02551773563027382, + -0.0038905376568436623, + 0.014278404414653778, + 0.004368667956441641, + -0.013597232289612293, + -0.006379433907568455, + -0.0016685428563505411, + -0.02305503748357296, + 0.008324702270328999, + -0.012169391848146915, + -0.014003315940499306, + -0.007964467629790306, + -0.027797039598226547, + 0.009785291738808155, + -0.01076120138168335, + -0.0012428106274455786, + -0.018954908475279808, + 0.0005280717159621418, + -0.007145751733332872, + -0.010610557161271572, + -0.002845856361091137, + -0.006114169955253601, + 0.046398263424634933, + 0.0230681374669075, + 0.00646785506978631, + 0.042075444012880325, + 0.013977116905152798, + 0.01476308424025774, + 0.005459197331219912, + 0.006051947362720966, + 0.01313875149935484, + 0.02415539138019085, + 0.02568802796304226, + -0.0376216322183609, + 0.0008850318263284862, + 0.008075812831521034, + -0.013020857237279415, + 0.02085432969033718, + 0.01754016801714897, + 0.03641648218035698, + 0.023788606747984886, + -0.001730765332467854, + -0.010407515801489353, + 0.01887631230056286, + -0.03966514393687248, + -0.006287737749516964, + 0.02263585478067398, + -0.009634648449718952, + -0.00672001950442791, + 0.0025380190927535295, + -0.011389974504709244, + -0.012942260131239891, + 0.00022596557391807437, + -0.008914178237318993, + -0.009962134063243866, + 0.004116503056138754, + 0.011468571610748768, + 0.006831365171819925, + -0.002438135677948594, + -0.020304152742028236, + -0.009084470570087433, + 0.010820148512721062, + -0.015339460223913193, + -0.01922999694943428, + -0.0067396690137684345, + 0.010492661967873573, + -0.027194464579224586, + -0.025805924087762833, + -0.006837914697825909, + 0.03377038985490799, + -0.01326974667608738, + -0.021221114322543144, + 0.01949198730289936, + 0.021483104676008224, + 0.0023317027371376753, + 0.009595349431037903, + -0.004761651158332825, + 0.010152076371014118, + -0.006837914697825909, + -0.020539943128824234, + -0.01272611878812313, + 0.0006562007474713027, + -0.02672288566827774, + -0.008403299376368523, + -0.010263421572744846, + -0.02118181623518467, + -0.021980883553624153, + -0.00010899154585786164, + 0.02034345082938671, + -0.009909736923873425, + -0.009248213842511177, + 0.018011748790740967, + -0.01590273715555668, + 0.0031471436377614737, + -0.009556051343679428, + -0.0023922875989228487, + 0.011206582188606262, + 0.02017315849661827, + -0.02194158546626568, + 0.018745318055152893, + 0.014618990011513233, + 0.015339460223913193, + -0.007813824340701103, + -0.0014835131587460637, + 0.01930859498679638, + -0.010414065793156624, + -0.0028016455471515656, + -0.0010897107422351837, + -0.0028081953059881926, + 0.0214438047260046, + -0.01778905838727951, + 0.0001661993155721575, + -0.0004953230964019895, + 0.013047055341303349, + 0.01378062553703785, + -0.0035630513448268175, + -0.0013508811825886369, + 0.008540843613445759, + -0.0012960272142663598, + -0.013158401474356651, + -0.02543913945555687, + 0.03838139772415161, + 0.0015571975382044911, + 0.013715127483010292, + -0.0038545140996575356, + -0.008881429210305214, + 0.026958676055073738, + -0.03175307437777519, + 0.006651247385889292, + -0.018404731526970863, + -0.006025748793035746, + 0.02406369522213936, + 0.00821335706859827, + -0.03733344376087189, + -0.037228647619485855, + -0.0103354686871171, + 0.017042389139533043, + -0.03384898602962494, + 0.011691262014210224, + -0.03463495522737503, + 0.03054792620241642, + -0.011573366820812225, + 0.01514296792447567, + 0.014278404414653778, + -0.028373416513204575, + -0.014317702502012253, + 0.005934052634984255, + 0.02204637974500656, + 0.019374091178178787, + -0.0156407468020916, + -0.007126102689653635, + -0.01165851391851902, + 0.030390731990337372, + -0.03183167055249214, + -0.0413418747484684, + 0.0067265694960951805, + -0.019020406529307365, + 0.03379658982157707, + -0.0003342407289892435, + 0.024391181766986847, + 0.015339460223913193, + 0.020985323935747147, + 0.003789016976952553, + -0.017147185280919075, + -0.010617107152938843, + 0.012942260131239891, + 0.005881654564291239, + -0.017251979559659958, + 0.010623657144606113, + 0.00042409481829963624, + 0.015706244856119156, + 0.009392308071255684, + 0.018155843019485474, + 0.003920011688023806, + 0.01743537187576294, + -0.013819923624396324, + -0.008193708024919033, + -0.03104570508003235, + -0.011887754313647747, + -0.003595799906179309, + 0.020225556567311287, + -0.009097570553421974, + 0.017147185280919075, + -0.01975397579371929, + -0.018260637298226357, + 0.04545510187745094, + 0.0012149743270128965, + 0.0008727511158213019, + 0.0023562642745673656, + 0.012575475499033928, + -0.024351883679628372, + 0.04013672471046448, + 0.009064821526408195, + -0.01387232169508934, + -0.00531837809830904, + -0.020291052758693695, + -0.02153550088405609, + -0.038826778531074524, + 0.02766604535281658, + -0.008383650332689285, + -0.010590908117592335, + 0.005898029077798128, + -0.0014548581093549728, + 0.0018895961111411452, + 0.007113003171980381, + 0.03316781669855118, + -0.03002394735813141, + 0.0005026915459893644, + -0.004781300667673349, + -0.010014532133936882, + -0.017068587243556976, + -0.006356509868055582, + -0.019596781581640244, + 0.01957058347761631, + -0.004191825166344643, + -0.009765642695128918, + 0.018666721880435944, + -0.011697812005877495, + 0.03062652237713337, + 0.014226006343960762, + 0.004280246328562498, + 0.026238204911351204, + 0.005563993006944656, + 0.03164827823638916, + 0.010400965809822083, + -0.02025175467133522, + -0.019347893074154854, + -0.0054329982958734035, + -0.020867429673671722, + -0.019007306545972824, + 0.040031928569078445, + -0.0021957959979772568, + -0.0019501810893416405, + -0.010355117730796337, + 0.014487995766103268, + 0.018784616142511368, + 0.008108561858534813, + 0.008789733052253723, + 0.04210164397954941, + 0.0427304171025753, + 0.008403299376368523, + -0.031176699325442314, + -0.012595124542713165, + -0.02161409892141819, + -0.0011584829771891236, + 0.007276746444404125, + -0.002916265744715929, + 0.0033960333094000816, + -0.00572118628770113, + 0.0057146367616951466, + 0.040713101625442505, + 0.007335694041103125, + 0.019858771935105324, + -0.018234439194202423, + -0.013479338027536869, + -0.004787850193679333, + -0.019793273881077766, + 0.008390200324356556, + 0.007800724357366562, + -0.00521030742675066, + 0.0274826530367136, + 0.008750434964895248, + -0.02287164516746998, + 0.015797941014170647, + -0.02042204886674881, + 0.009280962869524956, + 0.001966555370017886, + -0.007001657970249653, + 0.024469779804348946, + -0.01144237257540226, + 0.008711136877536774, + -0.010911844670772552, + 0.0013164951233193278, + 0.03232945129275322, + 0.0007880139746703207, + 0.0031684304121881723, + -0.006507153622806072, + -0.0012297112261876464, + -0.02986675314605236, + 0.015391858294606209, + 0.008233006112277508, + -0.0029064412228763103, + 0.008815932087600231, + -0.005452647339552641, + -0.008599791675806046, + -0.024273287504911423, + -0.019871870055794716, + 0.018863212317228317, + -0.03589250147342682, + 0.0137413265183568, + 0.014632089994847775, + -0.0064285569824278355, + 0.026670487597584724, + -0.0013345067854970694, + -0.019360993057489395, + -0.012221789918839931, + 0.027351658791303635, + -0.02450907789170742, + 0.026762183755636215, + 0.03584010526537895, + 0.0034156825859099627, + -0.009418507106602192, + -0.0056491391733288765, + -0.004856622312217951, + -0.02289784513413906, + 0.006019198801368475, + -0.017068587243556976, + -0.04123707860708237, + -0.004856622312217951, + -0.00893382728099823, + 0.02187608741223812, + -0.02681458182632923, + 0.0008580142166465521, + 0.01871911995112896, + 0.013381091877818108, + 0.0046241069212555885, + -0.014487995766103268, + -0.006962359417229891, + 0.04943733662366867, + -0.0008334527374245226, + -0.017998648807406425, + 0.03751683607697487, + -0.034058578312397, + 0.02008146233856678, + 0.0014720511389896274, + 0.008088912814855576, + -0.020893627777695656, + -0.013518636114895344, + -0.022766850888729095, + -0.018313035368919373, + 0.020526843145489693, + -0.02153550088405609, + -0.0029801256023347378, + 0.002230182057246566, + -0.02246556244790554, + -0.02432568557560444, + 0.031098103150725365, + 0.01701619103550911, + 0.02110322006046772, + -0.010283070616424084, + 0.010820148512721062, + -0.019793273881077766, + 0.023696910589933395, + -0.009392308071255684, + -0.007027857005596161, + -0.01353173516690731, + 0.008756984956562519, + -0.035761509090662, + -0.00803651474416256, + 0.01693759299814701, + 0.017920052632689476, + 0.022531060501933098, + -0.03345600515604019, + -0.004856622312217951, + 0.004440714605152607, + -0.05601326376199722, + -0.02084122970700264, + -0.003802116494625807, + 0.002749247709289193, + -0.0013942731311544776, + 0.015601448714733124, + -0.019085904583334923, + 0.018116544932127, + 0.016741100698709488, + 0.02236076630651951, + -0.0212866123765707, + -0.013688929378986359, + -0.0069689094088971615, + -0.00953640230000019, + 0.022164275869727135, + 0.010237222537398338, + -0.009091020561754704, + -0.00597990071401, + 0.011579916812479496, + -0.016308819875121117, + 0.007957917638123035, + 0.00246597221121192, + -0.009641197510063648, + 0.007866221480071545, + -0.0025543933734297752, + 0.008481896482408047, + -0.011389974504709244, + 0.003841414814814925, + -0.002518370049074292, + -0.04668645188212395, + -0.0014073725324124098, + 0.025884520262479782, + -0.009903186932206154, + -0.02978815697133541, + -0.004663405474275351, + 0.010086579248309135, + -0.025046154856681824, + -0.011127986013889313, + -0.0007241541752591729, + -0.015850339084863663, + -0.014946476556360722, + -0.015509752556681633, + 0.011344126425683498, + 0.007486337795853615, + 0.006408907473087311, + 0.013911619782447815, + 0.001135558821260929, + -0.010604007169604301, + -0.008671837858855724, + 0.013859221711754799, + -0.023002641275525093, + 0.01076120138168335, + 0.016963792964816093, + 0.000838364998344332, + 0.049908917397260666, + -0.021063921973109245, + 0.009818040765821934, + -0.009556051343679428, + 0.004742002114653587, + -0.02926417998969555, + -0.026958676055073738, + -0.0008629264775663614, + -0.0005383056704886258, + 0.012287287041544914, + -0.024207789450883865, + 0.014029514975845814, + 0.006451481021940708, + -0.006962359417229891, + 0.009261313825845718, + -0.0075125363655388355, + -0.013407290913164616, + -0.02348732016980648, + -0.0056327651254832745, + 0.008815932087600231, + -0.001758601632900536, + 0.003540127305313945, + 0.013610332272946835, + 0.008160959929227829, + -0.015103669837117195, + 0.009837689809501171, + 0.19209039211273193, + -0.0027050371281802654, + -0.0035696011036634445, + 0.02714206837117672, + -0.012326586060225964, + -0.007866221480071545, + 0.028032829985022545, + -8.41230503283441e-05, + -0.005256155505776405, + 0.019714677706360817, + -0.028661604970693588, + 0.011206582188606262, + -0.0065104286186397076, + 0.005357676651328802, + 0.03345600515604019, + -0.006923061329871416, + -0.03167447820305824, + -0.009634648449718952, + -0.007008207496255636, + 0.017330577597022057, + 0.008390200324356556, + -0.02401129901409149, + -0.009241664782166481, + -0.01658390834927559, + 0.029997749254107475, + -0.008901078253984451, + 0.00961499847471714, + 0.006441656034439802, + 0.013223898597061634, + 0.007093354128301144, + -0.002326790476217866, + 0.004666680470108986, + 0.009641197510063648, + -0.002294041682034731, + -0.0022743926383554935, + -0.006896862294524908, + 0.018535727635025978, + -0.012483779340982437, + 0.034006182104349136, + 0.029395174235105515, + -0.0156407468020916, + -0.020553043112158775, + -0.04183965548872948, + -0.006909961812198162, + -0.014632089994847775, + 0.03227705508470535, + -0.01233968511223793, + 0.00961499847471714, + -0.006877213250845671, + 0.00803651474416256, + -0.028059029951691628, + -0.005184108857065439, + 0.026958676055073738, + 0.03285342827439308, + 0.0021695969626307487, + -0.010662955231964588, + 0.031098103150725365, + -0.01203184761106968, + 0.01063675619661808, + -0.010152076371014118, + -0.02357901632785797, + 0.028609206900000572, + -0.003360009752213955, + 0.01608612947165966, + -0.02790183573961258, + -0.019714677706360817, + -0.02763984724879265, + 0.025124751031398773, + -0.008494995534420013, + -0.0029342775233089924, + -0.011573366820812225, + -0.009929385967552662, + -0.028975991532206535, + 0.012909511104226112, + -0.006091245915740728, + -0.02460077404975891, + 0.02338252402842045, + -0.012182491831481457, + 0.007669730111956596, + 0.017893852666020393, + -0.018339235335588455, + 0.006543177179992199, + -0.0021515851840376854, + -0.014946476556360722, + 0.009300611913204193, + -0.0548081137239933, + 0.01676730066537857, + -0.005563993006944656, + 0.00383813981898129, + -0.0172650795429945, + -0.006611949298530817, + 0.023290827870368958, + -0.0023022289387881756, + -0.024129193276166916, + 0.012503428384661674, + -0.008560492657124996, + 0.024378083646297455, + 0.011239331215620041, + -0.011966350488364697, + 0.016059929504990578, + -0.007636981550604105, + 0.03597109764814377, + 0.030233537778258324, + -0.002125386381521821, + -0.012077695690095425, + 0.01165196392685175, + -0.012955359183251858, + 0.014605890959501266, + -9.057044371729717e-05, + -0.00401825737208128, + 0.007853122428059578, + -0.0326700359582901, + 0.00010402808402432129, + -0.0043817670084536076, + 0.002894979203119874, + 0.009975234046578407, + 0.004990891553461552, + -0.01144892256706953, + 0.009798390790820122, + -0.031962666660547256, + -0.02101152390241623, + -0.00022412346152123064, + 0.014880979433655739, + 0.01353173516690731, + 0.01135722640901804, + -0.021470004692673683, + -0.05376015603542328, + -0.0038839878980070353, + -0.01881081610918045, + -0.008206808008253574, + 0.021758193150162697, + -0.0056491391733288765, + -0.00018001515127252787, + 0.008920728228986263, + -0.006778967101126909, + 0.016308819875121117, + -0.006068321876227856, + -0.026434697210788727, + 0.0032928751315921545, + 0.005439548287540674, + 0.003592525143176317, + -0.04634586721658707, + 0.006500603631138802, + -0.007027857005596161, + -0.0021859712433069944, + -0.00017725197540130466, + 0.0012084245681762695, + -0.017566367983818054, + -0.013250097632408142, + -0.023028839379549026, + -0.012365884147584438, + 0.0018028123304247856, + 0.002998137380927801, + -0.020304152742028236, + 0.016885194927453995, + -0.008364001289010048, + -0.02339562401175499, + -0.021967783570289612, + 0.003297787392511964, + 0.01616472564637661, + -0.013924718834459782, + 0.013806823641061783, + -0.008652188815176487, + -0.018496427685022354, + 0.002348077017813921, + 0.012195590883493423, + -0.16526269912719727, + 0.017055489122867584, + 0.03411097824573517, + -0.02766604535281658, + 0.008102011866867542, + 0.014357000589370728, + 0.006137093994766474, + -0.02587142027914524, + -0.016544610261917114, + -0.012942260131239891, + 0.03403238207101822, + 0.018653621897101402, + -0.02187608741223812, + -0.011763309128582478, + 0.009516753256320953, + 0.007427390199154615, + -0.02255725860595703, + 0.0267097856849432, + 0.01485478039830923, + 0.020435146987438202, + 0.001640706555917859, + -0.012378983199596405, + 0.0032241030130535364, + -0.01497267559170723, + 0.016099227592349052, + -0.010983891785144806, + -0.013806823641061783, + 0.010007982142269611, + -0.003995333332568407, + -0.013518636114895344, + -0.004869721829891205, + 0.024351883679628372, + 0.007008207496255636, + -0.021155618131160736, + -0.00512516126036644, + -0.01794625073671341, + 0.0028687804006040096, + 0.012136643752455711, + -0.015103669837117195, + 0.048284586519002914, + 0.0264739952981472, + -0.008069263771176338, + -0.020461346954107285, + 0.012437931261956692, + -0.025753526017069817, + -0.0067396690137684345, + 0.018313035368919373, + -0.007728677708655596, + -0.025753526017069817, + -0.020304152742028236, + 0.013623431324958801, + -0.017225781455636024, + -0.009595349431037903, + 0.012359334155917168, + 0.00014890394231770188, + 0.02900218963623047, + -0.006291012745350599, + 0.008829032070934772, + 0.0027017623651772738, + -0.01760566607117653, + -0.012444481253623962, + -0.03327261283993721, + -0.019295495003461838, + 0.00495814299210906, + 0.011350676417350769, + -0.017238881438970566, + 0.0054198987782001495, + -0.0048533473163843155, + -0.021574800834059715, + 0.00427697179839015, + -0.016046831384301186, + -0.0029179032426327467, + 0.03046932816505432, + -0.023592116311192513, + -0.002333340235054493, + 0.001647256314754486, + -0.0059307776391506195, + 0.0021368484012782574, + -0.0021040996070951223, + 0.00825265608727932, + -0.01768426224589348, + 0.05355056747794151, + -0.02763984724879265, + 0.0037169698625802994, + -0.02101152390241623, + 0.009084470570087433, + 0.011979450471699238, + -0.010315819643437862, + 0.006566101219505072, + 0.0004678961122408509, + 0.00339275854639709, + -0.029735758900642395, + -0.026932476088404655, + -0.02033035270869732, + 0.006035573314875364, + 0.004407966043800116, + 0.034582559019327164, + 0.001149477087892592, + -0.007695929147303104, + -0.022845447063446045, + -0.003566326107829809, + -0.022164275869727135, + -0.025648729875683784, + -0.0012444481253623962, + 0.019033506512641907, + 0.00902552343904972, + -0.01836543343961239, + 0.0038610638584941626, + 0.0233039278537035, + -0.013557934202253819, + -0.02774464339017868, + 0.009497104212641716, + 0.025334343314170837, + -0.011363775469362736, + -0.007623882032930851, + 0.018090344965457916, + 0.02033035270869732, + -0.027770841494202614, + -0.021234214305877686, + -0.012916061095893383, + 0.03584010526537895, + 0.018221339210867882, + -0.019112102687358856, + 0.00012372843048069626, + -0.005793233402073383, + -0.014199807308614254, + -0.07236137986183167, + 0.012392083182930946, + 0.007309495005756617, + 0.012948810122907162, + 0.012575475499033928, + -0.0016800048761069775, + -0.0006410545320250094, + 0.001647256314754486, + -0.002443048171699047, + 0.02800663188099861, + -0.04060830548405647, + -0.011815707199275494, + 0.003697320818901062, + -0.00991628598421812, + 0.013898519799113274, + -0.01591583527624607, + -0.006837914697825909, + -0.0206709373742342, + -0.033560801297426224, + 0.03801461309194565, + 0.01313875149935484, + -0.007460138760507107, + -0.024207789450883865, + -0.01174366008490324, + 0.0026084287092089653, + -0.0013582495739683509, + -0.024626972153782845, + 0.015509752556681633, + 0.013675829395651817, + 0.00783347338438034, + 0.025295045226812363, + -0.0198980700224638, + 0.02382790669798851, + -0.02621200680732727, + 0.0008342714281752706, + -0.009333360940217972, + -0.005894754081964493, + -0.026906277984380722, + -0.0057015372440218925, + -0.03243424743413925, + -0.010158626362681389, + 0.00872423592954874, + 0.050747282803058624, + -0.038250405341386795, + -0.0023644512984901667, + -0.0162564218044281, + -0.024561475962400436, + 0.0036416479852050543, + 0.0078203734010458, + -0.014749984256923199, + -0.023841004818677902, + -0.016950692981481552, + 0.014645189046859741, + 0.0032797756139189005, + 0.023592116311192513, + -0.0013729864731431007, + -0.016217123717069626, + 0.005920953117311001, + -0.015391858294606209, + -0.005305278580635786, + -0.013675829395651817, + 0.021993981674313545, + -0.02698487415909767, + 0.0396389476954937, + 0.020225556567311287, + -0.020461346954107285, + -0.027954233810305595, + -0.019505085423588753, + 0.009176166728138924, + -0.02706347033381462, + -0.03712385147809982, + 0.0016038643661886454, + -0.00010643305722624063, + -0.0233039278537035, + -0.026094110682606697, + 0.00010530732834013179, + -0.020893627777695656, + -0.022648954764008522, + -0.008711136877536774, + -0.01506437174975872, + -0.022989541292190552, + -0.028111428022384644, + 0.016479112207889557, + 0.007040956057608128, + 0.028478212654590607, + 0.0020107661839574575, + 0.0002171643718611449, + -0.009673946537077427, + 0.006140368990600109, + -0.02153550088405609, + 0.009549501352012157, + -0.00746668828651309, + 0.012948810122907162, + -0.009195816703140736, + -0.01582413911819458, + 0.012398633174598217, + 0.00256258063018322, + 0.0009087746147997677, + 0.02160099893808365, + 0.010977341793477535, + -0.030757516622543335, + -0.020985323935747147, + -0.047760605812072754, + 0.03327261283993721, + 0.010682604275643826, + -0.015011973679065704, + -0.007001657970249653, + 0.015601448714733124, + 0.017068587243556976, + 0.024181591346859932, + 0.015378758311271667, + 0.006851014215499163, + 0.008711136877536774, + 0.01025687251240015, + -0.020107660442590714, + -0.01267372164875269, + -0.010538510046899319, + -0.014121211133897305, + 0.000984096433967352, + 0.007243997883051634, + 0.02978815697133541, + -0.0015481916489079595, + -0.01896800845861435, + 0.02084122970700264, + -0.014802382327616215, + 0.010263421572744846, + -0.02511165291070938, + 0.015221565030515194, + -0.02389340288937092, + -0.01446179673075676, + -0.015863439068198204, + -0.004961417987942696, + 0.003923286218196154, + -0.02322533167898655, + -0.010204474441707134, + 0.004427615087479353, + 0.0012288924772292376, + -0.014579691924154758, + -0.00021245675452519208, + 0.029421372339129448, + 0.009333360940217972, + 0.009503653272986412, + -0.03222465515136719, + -0.023186033591628075, + -0.00039257423486560583, + -0.034320566803216934, + -0.00943815615028143, + 0.0062320651486516, + 0.009994883090257645, + 0.006523527670651674, + 0.016374316066503525, + -0.01608612947165966, + 0.040555909276008606, + 0.006261538714170456, + -0.014789283275604248, + -0.015025072731077671, + 0.05360296368598938, + -0.028530608862638474, + 0.00606504688039422, + 0.015247764065861702, + 0.005983175244182348, + -0.015431156381964684, + 0.019164500758051872, + 0.011029739864170551, + 0.026853879913687706, + 0.009968684054911137, + 0.02774464339017868, + -0.010400965809822083, + -0.03209366276860237, + 0.005966801196336746, + 0.020146960392594337, + -0.03303682059049606, + -0.012110444717109203, + -0.009208915755152702, + -0.004037906415760517, + 0.03337740898132324, + -0.002534744329750538, + -0.017592566087841988, + 0.023199131712317467, + -0.0040280818939208984, + -0.005996274761855602, + 0.03285342827439308, + 0.0072832959704101086, + 0.02382790669798851, + -0.01264097262173891, + 0.0004355568380560726, + 0.009287512861192226, + 0.02842581458389759, + -0.023434922099113464, + -0.00795136857777834, + 0.009706694632768631, + 0.0016669054748490453, + 0.009267863817512989, + -0.00293591502122581, + 0.0040706549771130085, + -0.005020365584641695, + 0.021063921973109245, + 0.009411957114934921, + -0.0048926458694040775, + -0.013328693807125092, + -0.0017094786744564772, + 0.04485252872109413, + 0.01004728116095066, + -0.0020042164251208305, + 0.0009325173450633883, + -0.006923061329871416, + -0.011593016795814037, + 0.015038172714412212, + 0.002719774143770337, + -0.03269623592495918, + -0.03335120901465416, + 0.017553268000483513, + -0.013859221711754799, + 0.029368974268436432, + -0.0061338189989328384, + 0.0017405898543074727, + -0.021483104676008224, + 0.04655545949935913, + -0.009562601335346699, + -0.014697587117552757, + -0.014487995766103268, + -0.009189266711473465, + 0.013767525553703308, + 0.0031012955587357283, + 0.00447018863633275, + -0.002867142902687192, + 0.02477106638252735, + 0.017933152616024017, + 0.0029097162187099457, + -0.00546902185305953, + 0.03198886662721634, + -0.013885420747101307, + 0.02179749123752117, + -0.011540618725121021, + -0.022059479728341103, + -0.0038970874156802893, + 0.0016750926151871681, + -0.006837914697825909, + 0.004954868461936712, + 0.009503653272986412, + 0.0069558098912239075, + 0.08535604178905487, + 0.01667560450732708, + 0.0004662586725316942, + -0.011704361997544765, + -0.025910718366503716, + 0.022766850888729095, + -0.008455697447061539, + 0.024980658665299416, + -0.004748552106320858, + -0.04398796334862709, + 0.001002926961518824, + -0.021574800834059715, + 0.017933152616024017, + -0.03785742074251175, + -0.03311541676521301, + 0.006752768065780401, + 0.0015702969394624233, + 0.012870213016867638, + -0.0032781383488327265, + 0.023448022082448006, + 0.053314775228500366, + -0.01684589684009552, + 0.027718443423509598, + 0.02698487415909767, + -0.03751683607697487, + -0.020146960392594337, + 0.003847964573651552, + -0.009490554220974445, + -7.859672041377053e-05, + -0.01786765456199646, + -0.01527396310120821, + 0.012647522613406181, + -0.04781300574541092, + -0.009510203264653683, + 0.021116318181157112, + 0.0020451522432267666, + -0.011206582188606262, + -0.03683566302061081, + 0.024482877925038338, + -0.00851464457809925, + 0.011095236986875534, + 0.009339910000562668, + -0.037909816950559616, + -0.01306670531630516, + -0.014894078485667706, + -0.009922835975885391, + -0.015889637172222137, + -0.0077941748313605785, + -0.03735964000225067 + ], + "metadata": { + "source": "Kreye_Marieke_BA_241_V2.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 17, + "has_images": true, + "image_count": 98, + "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", + "links": [], + "last_modified": "2025-05-05T23:00:23", + "_known_field_names": "frozenset({'is_continuation', 'sent_to', 'header_footer_type', 'email_message_id', 'filename', 'languages', 'detection_class_prob', 'sent_from', 'link_texts', 'cc_recipient', 'subject', 'image_mime_type', 'image_path', 'filetype', 'page_number', 'last_modified', 'signature', 'detection_origin', 'text_as_html', 'attached_to_filename', 'bcc_recipient', 'data_source', 'link_start_indexes', 'category_depth', 'emphasized_text_tags', 'parent_id', 'orig_elements', 'page_name', 'coordinates', 'url', 'link_urls', 'file_directory', 'links', 'table_as_cells', 'emphasized_text_contents', 'key_value_pairs', 'image_base64'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "Kreye_Marieke_BA_241_V2.pdf", + "detection_class_prob": 0.3422867953777313, + "parent_id": "e02392183bc6851689602ad4b9f6039f", + "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", + "id": "ce00eae5-7e07-454f-9e4f-f79ac36f92f4", + "processing_timestamp": "2025-05-05T23:15:46.977945", + "chunk_number": 47, + "total_chunks": 56, + "chunking_strategy": "hybrid", + "word_count": 212 + } +} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000048.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000048.json new file mode 100644 index 0000000000000000000000000000000000000000..46d9fc55c1ed236c8f5a567d53a842bb0609db0c --- /dev/null +++ b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000048.json @@ -0,0 +1,1570 @@ +{ + "id": "61a115b2-0ff7-441a-f6d9-eb3d00000048", + "content": "Online verf\u00fcgbar unter\n58\nLiteraturverzeichnis\nhttps://bmdv.bund.de/SharedDocs/DE/Anlage/G/mid-\nergebnisbericht.pdf?__blob=publicationFile, zuletzt gepr\u00fcft am 28.04.2024. Kampusch, Verena (2018): Gr\u00fcn findet Stadt. Potentiale und Barrieren f\u00fcr gr\u00fcne Infrastruktur in urbanen Gebieten am Beispiel von Wien. Masterarbeit. Technische Universit\u00e4t Wien, Wien. Online verf\u00fcgbar unter https://repositum.tuwien.at/bitstream/20.500.12708/7343/2/Kampusch%20Verena%20- %202018%20-%20Gruen%20findet%20Stadt%20-\n%20Potentiale%20und%20Barrieren%20fuer\u2026pdf, zuletzt gepr\u00fcft am 10.04.2024. Kreienkamp, Frank; Frph, Barbara; Kotlarski, Sven; Linke, Carsten; Olefs, Marc; Schauser, Inke et al. (2022): Empfehlungen f\u00fcr die Charakterisierung ausgew\u00e4hlter Klimaszenarien. Online verf\u00fcgbar unter\nhttps://www.umweltbundesamt.de/sites/default/files/medien/380/dokumente/szenarienn amen-stand_20220315.pdf, zuletzt gepr\u00fcft am 15.06.2024. Lee, Hoesung; Calvin, Katherine; Dasgupta, Dipak; Krinner, Gerhard; Mukherji, Aditi; Thorne, Peter W. et al. (2023): Climate Change 2023. Synthesis Report. Contribution of Working Groups I, II and III to the Sixth Assessment Report of the Intergovernmental Panel on Climate Change. 6. Aufl. Intergovernmental Panel on Climate Change. Geneva, Switzerland. Online verf\u00fcgbar unter\nhttps://www.ipcc.ch/report/ar6/syr/downloads/report/IPCC_AR6_SYR_FullVolume.pdf, zuletzt gepr\u00fcft am 21.05.2024. L\u00f6sken, Gilbert; Bauer, Joachim; Bott, Peter; Braam, Tom; Dolze, Falk; K\u00f6nig, Peter et al. (2010): Empfehlungen f\u00fcr Baumpflanzungen \u2013 Teil 2. Standortvorbereitungen f\u00fcr Neupflanzungen; Pflanzgruben und Wurzelraumerweiterung, Bauweisen und Substrate. 2. Aufl. Hg. v. Forschungsgesellschaft Landschaftsentwicklung Landschaftsbau e. V. \u2013 FLL.", + "embedding": [ + 0.027196461334824562, + -0.016974706202745438, + 0.012094643898308277, + -0.028014201670885086, + 0.0007414893480017781, + 0.010129428468644619, + -0.02632596343755722, + 0.0111186308786273, + -0.01775287836790085, + -0.027829550206661224, + -0.0038611851632595062, + 0.004916334059089422, + -0.0026213855016976595, + 0.009285309351980686, + -0.010808681137859821, + 0.004296434111893177, + 0.03634987771511078, + 0.0053021227940917015, + 0.007537719327956438, + 0.00043112720595672727, + -0.029676061123609543, + 0.007630045060068369, + 0.00855330005288124, + -0.0023048408329486847, + -0.0071420385502278805, + 0.021063407883048058, + 0.0070694973692297935, + -0.02495427057147026, + -0.010815275833010674, + 0.0022965974640101194, + -0.012622217647731304, + -0.01838596910238266, + -0.022909918799996376, + 0.0027351435273885727, + -0.010980142280459404, + -0.008309297263622284, + 0.004441516939550638, + -0.014046669006347656, + 0.022962676361203194, + -0.004810819402337074, + -0.0025059785693883896, + 0.001816834439523518, + 0.00579012930393219, + -0.02393868938088417, + 0.003683128859847784, + 0.008652220480144024, + 0.016288859769701958, + 0.01659221574664116, + -0.015484308823943138, + 0.025679685175418854, + 0.025600548833608627, + 0.03429233655333519, + 0.0007299486896954477, + 0.001081527560018003, + -0.020575402304530144, + -0.009245742112398148, + -0.02426842413842678, + 0.032604098320007324, + -0.008045509457588196, + -0.017634175717830658, + -0.023688090965151787, + -0.022553807124495506, + -0.021604172885417938, + 0.009272119961678982, + -0.038723960518836975, + -0.01169896312057972, + -0.026840347796678543, + 0.0046624387614429, + 0.005470287054777145, + -0.01142858061939478, + 0.033026158809661865, + 0.022408723831176758, + 0.02817247435450554, + -0.004787737969309092, + 0.015708528459072113, + 0.003940321505069733, + -0.011131820268929005, + -0.001698130159638822, + -0.015629392117261887, + 0.01638118550181389, + 0.0010262971045449376, + -0.021960284560918808, + -0.024637725204229355, + 0.03861844912171364, + 0.03112689033150673, + 0.005773642566055059, + 0.029676061123609543, + 0.015220521949231625, + -0.016750488430261612, + -0.008678599260747433, + -0.001008161692880094, + 0.036903832107782364, + 0.00861265230923891, + 0.01994231343269348, + -0.012628812342882156, + -0.016605405136942863, + -0.012747516855597496, + -0.004982281010597944, + 0.021525036543607712, + -0.020694106817245483, + -0.019889555871486664, + 0.01578766480088234, + 0.003927132114768028, + 0.0007814696291461587, + -0.03365924954414368, + -0.004250271245837212, + -0.006647437810897827, + -0.002956065349280834, + 0.03294702246785164, + -0.006228675600141287, + -0.03476715460419655, + 0.010017319582402706, + -0.01829364337027073, + -0.034160442650318146, + 0.0171593576669693, + -0.03263047710061073, + 0.026009418070316315, + -0.011567069217562675, + -0.01334103848785162, + -0.004187622107565403, + 0.026167690753936768, + -0.0025587358977645636, + 0.007016739808022976, + -0.025020217522978783, + 0.021709688007831573, + 0.025270814076066017, + 0.0014368159463629127, + 0.003478693775832653, + -0.0480620302259922, + -0.009351256303489208, + -0.009773315861821175, + 0.028225231915712357, + 0.01644713245332241, + 0.023055002093315125, + -0.019019057974219322, + 0.032366689294576645, + -0.014007100835442543, + 0.01005688775330782, + -0.03774794936180115, + -0.05159677937626839, + -0.007359663024544716, + 0.02665569819509983, + -0.03764243423938751, + -0.018254075199365616, + -0.02746024914085865, + 0.01760779693722725, + 0.018966300413012505, + 0.00811805110424757, + 0.009852452203631401, + -0.02017972059547901, + -0.0041084857657551765, + 0.00029284501215443015, + 0.009173200465738773, + 0.004418435972183943, + 0.001023824093863368, + -0.01541836280375719, + -0.005651641171425581, + 0.011105441488325596, + -0.040253929793834686, + 0.0027104136534035206, + 0.0023526521399617195, + -0.015101817436516285, + 0.004055728204548359, + 0.004636059980839491, + 0.023622144013643265, + 0.004527247976511717, + 0.005836292169988155, + -0.004764656536281109, + 0.010070077143609524, + -0.0023575981613248587, + -0.020878758281469345, + 0.04742893949151039, + -0.03286788612604141, + 0.027618519961833954, + -0.004223892465233803, + 0.029227623715996742, + 0.02202623151242733, + 0.004698709584772587, + -0.013914775103330612, + -0.015180953778326511, + -0.004134864546358585, + 0.015378794632852077, + -0.0023757335729897022, + 0.011857234872877598, + -0.014547864906489849, + 0.013822449371218681, + 0.030150877311825752, + 0.006198999471962452, + 0.005279041361063719, + 0.005658235866576433, + 0.012193563394248486, + 0.013097034767270088, + 0.007234364282339811, + 0.010861438699066639, + -0.6373099088668823, + 0.010136023163795471, + 0.0071750120259821415, + -0.005071308929473162, + 0.012826653197407722, + 0.04125631973147392, + 0.021920716390013695, + 0.009944777935743332, + -0.0080586988478899, + 0.0283571258187294, + -0.0080586988478899, + -0.0061198631301522255, + -0.023833174258470535, + -0.012437567114830017, + 0.0032313934061676264, + -0.0017063735285773873, + -0.005292230751365423, + -0.002308138180524111, + 0.03571678698062897, + 0.0040755122900009155, + -0.005875859875231981, + 0.0204435084015131, + -0.020126964896917343, + -0.013314659707248211, + 0.012562865391373634, + 0.04146734997630119, + 0.00823675561696291, + -0.034635260701179504, + 0.008401622995734215, + 0.011270308867096901, + 0.0012323808623477817, + 0.03471439704298973, + -0.014587433077394962, + 0.023503439500927925, + 0.04829943925142288, + 0.020034639164805412, + -0.02906935103237629, + 0.01620972342789173, + 0.012022102251648903, + 0.03152257204055786, + -0.008151024580001831, + -0.0009389176266267896, + 0.00022009745589457452, + 0.015510687604546547, + -0.009291904047131538, + 0.02883194200694561, + 0.029887091368436813, + -0.006541922688484192, + -0.018755270168185234, + -0.010083266533911228, + 0.007999347522854805, + 0.007023334503173828, + 0.008395028300583363, + -0.0020377561450004578, + 0.03157532960176468, + -0.0017376982141286135, + 0.018755270168185234, + -0.010538298636674881, + 0.002286705421283841, + 0.015233711339533329, + -0.015471119433641434, + 0.01725168339908123, + -0.009516123682260513, + -0.018280453979969025, + -0.029148487374186516, + 0.03561127185821533, + -0.04041219875216484, + -0.01620972342789173, + 0.01656583696603775, + -0.013143197633326054, + -0.009225958026945591, + 0.007076092064380646, + -0.009127037599682808, + -0.011600042693316936, + 0.027776792645454407, + 0.020377561450004578, + 0.028225231915712357, + -0.0010897709289565682, + -0.020694106817245483, + 0.014204941689968109, + -0.006116565782576799, + -0.021854769438505173, + 0.0022751647047698498, + -0.0031621491070836782, + 0.024809187278151512, + -0.016644973307847977, + -0.028541775420308113, + -0.017027463763952255, + -0.007181606721132994, + -0.0015274927718564868, + 0.03331632539629936, + 0.0109669528901577, + -0.025706063956022263, + -0.0167109202593565, + -0.015246900729835033, + 0.035795923322439194, + -0.0025257624220103025, + 0.046400170773267746, + -0.021023839712142944, + -0.0376160554587841, + -0.008685193955898285, + 0.00013550007133744657, + 0.011626421473920345, + -0.01853105053305626, + 0.01781882531940937, + 0.012213347479701042, + -0.019652146846055984, + 0.015141385607421398, + 0.023925499990582466, + -0.011600042693316936, + -0.0021004057489335537, + -0.0020014855545014143, + -0.0054307193495333195, + -0.009793099947273731, + 0.001754184952005744, + -0.025270814076066017, + 0.03318443149328232, + -0.0022421912290155888, + -0.005757155828177929, + -0.0012381512206047773, + 0.017027463763952255, + 0.006818899419158697, + -0.003749075811356306, + -0.020641349256038666, + 0.00374577846378088, + 0.015523876994848251, + -0.013875206932425499, + -0.0015720068477094173, + -0.027117324993014336, + -0.02086556889116764, + -0.0009760126704350114, + -0.003307232167571783, + 0.029122108593583107, + 0.008823682554066181, + 0.03038828633725643, + 0.018346400931477547, + 0.028277989476919174, + 0.0001932035229401663, + -0.009648017585277557, + -0.022632943466305733, + -0.01614377647638321, + -0.012754111550748348, + 0.011824261397123337, + -0.04217957332730293, + -0.029570546001195908, + -0.008797303773462772, + 0.0020624862518161535, + 0.007524529937654734, + -0.014138994738459587, + 0.0009908507345244288, + -0.034846290946006775, + 0.0011895154602825642, + 0.0076498291455209255, + 0.007742154411971569, + -0.0013552068267017603, + -0.01692194864153862, + -0.013650988228619099, + -0.017884772270917892, + -0.004870171193033457, + -0.0141785629093647, + 0.014587433077394962, + 0.009984346106648445, + -0.031153269112110138, + 0.000577446713577956, + 0.0071420385502278805, + 0.003147311042994261, + -0.0038216172251850367, + 0.025626927614212036, + -0.01921689882874489, + -0.033448219299316406, + -0.00743220467120409, + -0.02304181270301342, + -0.0005461219698190689, + 0.02564011700451374, + -0.019507063552737236, + -0.02682715840637684, + -0.022408723831176758, + -0.007597071584314108, + -0.00863903108984232, + 0.012252915650606155, + 0.02554779127240181, + 0.009753531776368618, + -0.018557429313659668, + -0.016011884436011314, + 0.016526268795132637, + 0.014811651781201363, + 0.011929776519536972, + 0.016816435381770134, + -0.0016626837896183133, + 0.0010213510831817985, + 0.009713963605463505, + 0.03426595777273178, + -0.005803318694233894, + 0.019507063552737236, + -0.024281613528728485, + 0.004560221452265978, + -0.02498064935207367, + 0.021234869956970215, + -0.03023001365363598, + 0.0031077431049197912, + 0.036244362592697144, + -0.002107000444084406, + 0.00548347644507885, + -0.02391231060028076, + 0.009371040388941765, + -0.011468148790299892, + 0.009232552722096443, + -0.01569533906877041, + 0.00766301853582263, + 0.01442916039377451, + 0.032076526433229446, + 0.014244508929550648, + -0.041229940950870514, + -0.00498557835817337, + -0.006274838466197252, + 0.04608362540602684, + -0.004270055331289768, + 0.007300311233848333, + -0.015537066385149956, + -0.0030879590194672346, + 0.01841234788298607, + -4.846188403462293e-06, + 0.02859453298151493, + 0.0014368159463629127, + -0.02131400629878044, + 0.009984346106648445, + -0.007907021790742874, + 0.028489017859101295, + 0.0075838821940124035, + 0.004685520194470882, + -0.010010724887251854, + 0.010129428468644619, + -0.005654938519001007, + -0.0008230985258705914, + 0.014547864906489849, + 0.012767300941050053, + 0.009793099947273731, + -0.022606564685702324, + 0.03041466511785984, + 0.008665409870445728, + 0.021736066788434982, + 0.03948894515633583, + 0.016618594527244568, + -0.007768533192574978, + 0.03181273862719536, + -0.013050871901214123, + 0.01304427720606327, + 0.0295441672205925, + -0.004636059980839491, + -0.0008140308200381696, + -0.020153343677520752, + 0.014838030561804771, + 0.011778098531067371, + -0.02459815703332424, + 0.020245667546987534, + -0.030704831704497337, + 0.03766881301999092, + -0.00391724007204175, + -0.004411841277033091, + 0.009001738391816616, + 0.01758141815662384, + -5.234527270658873e-05, + 0.009258931502699852, + -0.0062913247384130955, + 0.011692368425428867, + 0.0027961444575339556, + -0.030757589265704155, + -0.011290092952549458, + -0.019797230139374733, + -0.005595586262643337, + 0.02110297605395317, + -0.01961257867515087, + -0.007781722582876682, + 0.00855330005288124, + -0.005460395012050867, + -0.003679831512272358, + -0.005984672345221043, + 0.004791035316884518, + 0.002189433900639415, + 0.005661533214151859, + -0.0003973294806201011, + -0.015576634556055069, + 0.013650988228619099, + 0.026998620480298996, + -0.006716681644320488, + -0.018689323216676712, + -0.0013807611539959908, + 0.011158199049532413, + -0.02653699368238449, + -0.010637219063937664, + -0.01498311385512352, + 0.005974780302494764, + -0.00832908134907484, + -0.01028110645711422, + 0.005994564387947321, + -0.021511847153306007, + 0.017739688977599144, + -0.02698543108999729, + -0.009390824474394321, + 0.017858393490314484, + 0.0013395444257184863, + 0.006258351728320122, + -0.013677367009222507, + 0.013835638761520386, + 0.03091586008667946, + -0.00885006133466959, + -0.0186497550457716, + 0.011652800254523754, + 0.01656583696603775, + -0.005516449920833111, + 0.005852778907865286, + -0.005994564387947321, + -0.013294875621795654, + 0.009140226989984512, + -0.020377561450004578, + 0.006162728648632765, + 0.011738530360162258, + -0.0036435609217733145, + 0.02134038507938385, + -0.0006924414192326367, + 0.007742154411971569, + -0.03289426490664482, + -0.007656423840671778, + 0.025798389688134193, + 0.042601633816957474, + 0.008691788651049137, + 0.0055725048296153545, + 0.024228855967521667, + 0.010881222784519196, + -0.01919052004814148, + -0.014679757878184319, + -0.030335528776049614, + -0.013927964493632317, + -0.023358358070254326, + 0.005760453175753355, + -0.004853684455156326, + 0.01921689882874489, + -0.010261322371661663, + 0.011151604354381561, + -0.005394448526203632, + 0.0053647723980247974, + -0.010043698363006115, + 0.00420740619301796, + -0.0034918831661343575, + -0.004296434111893177, + -0.000445553072495386, + -0.0043755704537034035, + 0.035795923322439194, + 0.013941153883934021, + -0.006314406171441078, + 0.04489658400416374, + 0.011145009659230709, + 0.016908759251236916, + -0.0027681170031428337, + -0.001843213103711605, + 0.009469960816204548, + 0.028304368257522583, + 0.030493801459670067, + -0.027117324993014336, + 0.006294622085988522, + 0.015260090120136738, + -0.018570618703961372, + 0.03379113972187042, + 0.017409956082701683, + 0.02972881868481636, + 0.03170722350478172, + -0.0009405662422068417, + -0.02131400629878044, + 0.01694832742214203, + -0.018399158492684364, + -0.004477787762880325, + 0.02429480291903019, + 0.012411188334226608, + -0.02438712678849697, + 0.014323645271360874, + -0.005829697474837303, + -0.02232958748936653, + -0.004919631406664848, + -0.007557503413408995, + 0.0018580511678010225, + 0.011408796533942223, + -0.006792520638555288, + -0.0027681170031428337, + -0.011567069217562675, + -0.014231319539248943, + -0.04592535272240639, + -0.0032462312374264, + -0.021722877398133278, + -0.007043118588626385, + -0.007247553672641516, + -0.024519020691514015, + -0.010538298636674881, + -0.0007208809838630259, + 0.005532936658710241, + 0.016183344647288322, + -0.02405739389359951, + -0.00965461228042841, + 0.004487679805606604, + 0.0008399973739869893, + -0.010267917066812515, + 0.016987895593047142, + -0.0005725006922148168, + 0.0108944121748209, + -0.016038263216614723, + -0.013690556399524212, + -0.0015085331397131085, + 0.01264200173318386, + -0.019019057974219322, + 0.015154574997723103, + 0.011158199049532413, + -0.01328168623149395, + -0.02772403508424759, + 0.00584948156028986, + 0.012971735559403896, + 0.005321906879544258, + -0.017990287393331528, + -0.002751630265265703, + 0.007656423840671778, + -0.006545220036059618, + 0.00330558349378407, + 0.01142858061939478, + 0.013993911445140839, + 0.01056467741727829, + -0.03447698801755905, + 0.03468801826238632, + 0.0033484487794339657, + 0.0045800055377185345, + -0.02115573361515999, + 0.007366257719695568, + 0.007821290753781796, + -0.020522644743323326, + 0.002288354095071554, + 0.002045999513939023, + -0.01310362946242094, + 0.028277989476919174, + -0.009766721166670322, + 0.03199739009141922, + 0.00892260205000639, + -0.009311688132584095, + 0.0108944121748209, + 0.008078482933342457, + 0.002362544182687998, + 0.03563765063881874, + -0.031021375209093094, + -0.004748169798403978, + -0.028963835909962654, + 0.03152257204055786, + 0.025917094200849533, + 0.010848249308764935, + 0.03110051155090332, + -0.015866801142692566, + 0.01949387416243553, + -0.028937457129359245, + -0.0005881630349904299, + -0.0021515144035220146, + 0.008104861713945866, + 0.011224146001040936, + 0.0017327521927654743, + -0.019507063552737236, + -0.030757589265704155, + -0.0006256703054532409, + 0.00737285241484642, + -0.03724675253033638, + 0.0030582828912883997, + -0.043208345770835876, + 0.0113428495824337, + 0.004708601627498865, + 0.021525036543607712, + 0.013664177618920803, + -0.027829550206661224, + -0.01337401196360588, + -0.0014673162950202823, + -0.001285962644033134, + 0.021353574469685555, + -0.023556197062134743, + -0.00766301853582263, + -0.014468728564679623, + 0.009667801670730114, + -0.01739676669239998, + -0.025257624685764313, + 0.013519094325602055, + -0.02056221291422844, + 0.006571598816663027, + -0.001020526746287942, + 0.006812304724007845, + 0.0018184831133112311, + 0.02769765630364418, + 0.005133958533406258, + -0.0077883172780275345, + -0.0015291414456441998, + -0.008019131608307362, + -0.003946916200220585, + -0.027196461334824562, + 0.028014201670885086, + 0.0026197368279099464, + 0.0075838821940124035, + 0.007827885448932648, + -0.0034556123428046703, + 0.008744546212255955, + 0.022975865751504898, + -0.0252180565148592, + -0.013914775103330612, + -0.01644713245332241, + -0.011811072006821632, + -0.016288859769701958, + -0.006749655120074749, + 0.003768859663978219, + 0.012635407038033009, + -0.010663597844541073, + 0.0070035504177212715, + 0.023331979289650917, + -0.0020608375780284405, + 0.012338646687567234, + -0.017832014709711075, + 0.018517863005399704, + -0.03450336679816246, + 0.045318640768527985, + 0.01016240194439888, + -0.005054822191596031, + -0.010861438699066639, + -0.0068650622852146626, + -0.03605971112847328, + -0.019573010504245758, + 0.026405099779367447, + -0.02062815986573696, + -0.016552647575736046, + 0.00907428003847599, + -0.008131240494549274, + 0.0010510272113606334, + -0.008282918483018875, + 0.026668887585401535, + -0.026405099779367447, + 0.006139647215604782, + -0.01779244653880596, + 0.006264946423470974, + -0.02488832361996174, + 0.0037787517067044973, + -0.00023782065545674413, + 0.028700048103928566, + -0.014455539174377918, + -0.014455539174377918, + 0.03793260082602501, + -0.02283078245818615, + 0.011382417753338814, + 0.018346400931477547, + 0.012773895636200905, + 0.017212115228176117, + -0.002570276614278555, + 0.042337846010923386, + 0.011065873317420483, + -0.008474163711071014, + 0.0007893007714301348, + -0.022369155660271645, + -0.012595838867127895, + -0.0171593576669693, + 0.026431478559970856, + 0.020694106817245483, + -0.003772157011553645, + -0.02455858886241913, + 0.007610260974615812, + 0.025033406913280487, + -0.01909819431602955, + -0.0113428495824337, + 0.049380965530872345, + 0.03840741887688637, + 0.0144027816131711, + -0.005974780302494764, + -0.002951119327917695, + -0.03566402941942215, + 0.009509528987109661, + 0.008362054824829102, + -0.006202296819537878, + -0.009687584824860096, + -0.006281432695686817, + -0.003969997633248568, + 0.04840495437383652, + -0.0019075112650170922, + 0.021234869956970215, + 0.008164213970303535, + -0.02199985273182392, + 0.008256539702415466, + -0.02339792624115944, + 0.006040727254003286, + 0.02079962193965912, + 0.00959526002407074, + 0.04249611869454384, + 0.024690482765436172, + -0.02211855724453926, + 0.016697730869054794, + -0.010386621579527855, + -0.012951952405273914, + -0.0013799368171021342, + 0.00020144687732681632, + 0.020786432549357414, + 0.002395517658442259, + 0.0025917093735188246, + -0.01680324599146843, + -0.0031703924760222435, + 0.02103702910244465, + 0.010478947311639786, + 0.008434596471488476, + -0.014442349784076214, + -0.0038249145727604628, + -0.011797882616519928, + 0.004616276361048222, + 0.019243277609348297, + -0.00857967883348465, + -0.022698888555169106, + -0.005991267040371895, + -0.014851219952106476, + -0.014284077100455761, + -0.01313000824302435, + 0.029887091368436813, + -0.03740502521395683, + -0.005592288915067911, + 0.01347293145954609, + -0.015378794632852077, + 0.03197101131081581, + -0.006931008771061897, + -0.007234364282339811, + 0.006614464335143566, + 0.025152109563350677, + -0.037827085703611374, + 0.01626248098909855, + 0.036877453327178955, + -0.008916007354855537, + -0.010868033394217491, + 0.012813463807106018, + 0.00039197131991386414, + -0.018689323216676712, + 0.004230487160384655, + 0.00031015605782158673, + -0.025178488343954086, + 0.013275091536343098, + -0.014165373519062996, + 0.011435175314545631, + -0.007095876149833202, + 0.0038611851632595062, + 0.014561054296791553, + -0.014877598732709885, + -9.443788439966738e-05, + -0.025376329198479652, + -0.00048141166917048395, + 0.038750339299440384, + 0.0020707296207547188, + -0.01545793004333973, + 0.04217957332730293, + -0.02727559767663479, + 0.031654465943574905, + 0.006607869639992714, + 0.0073464736342430115, + -0.00867200456559658, + -0.007966374047100544, + -0.02743387036025524, + 0.0008309297263622284, + 0.022606564685702324, + -0.00792680587619543, + -0.01925646699965, + 0.005582396872341633, + -0.021709688007831573, + -0.01374331396073103, + 0.01316298171877861, + 0.012121022678911686, + 0.004362381063401699, + 0.020456697791814804, + 0.017779257148504257, + -0.0006310284370556474, + 0.008546705357730389, + -0.008883033879101276, + -0.014323645271360874, + -0.021327195689082146, + -0.0027879010885953903, + -0.035268351435661316, + 0.016513079404830933, + -0.008586273528635502, + 0.03381751850247383, + 0.017766067758202553, + -0.03634987771511078, + -0.010129428468644619, + 0.0019141059601679444, + -0.02363533340394497, + -0.011600042693316936, + -0.012628812342882156, + 0.009219363331794739, + -0.0039996737614274025, + 0.014046669006347656, + -0.004761359188705683, + 0.015062249265611172, + -0.0018514564726501703, + 0.025719253346323967, + -0.0054307193495333195, + -0.0007555030751973391, + 0.016196534037590027, + -0.0015942639438435435, + 0.0385129339993, + 0.019863177090883255, + -0.02906935103237629, + -0.002314732875674963, + 0.03592781722545624, + 0.027064567431807518, + -0.012338646687567234, + 0.015827232971787453, + -0.0026840348728001118, + -0.005044930148869753, + -0.003272610018029809, + -0.004477787762880325, + 0.0005354055901989341, + 0.003920537419617176, + 0.01022175420075655, + -0.03993738442659378, + -0.0007204688154160976, + 0.014877598732709885, + 0.009390824474394321, + -0.004975686315447092, + 0.00743220467120409, + 0.01694832742214203, + -0.004665736109018326, + -0.014996303245425224, + 0.013235523365437984, + -0.02790868654847145, + -0.011665989644825459, + -0.013486120849847794, + 0.023978257551789284, + -0.005747263785451651, + 0.003279204713180661, + 0.011210956610739231, + 0.011151604354381561, + -0.02339792624115944, + -0.005658235866576433, + 0.0007155227940529585, + -0.00959526002407074, + 0.00726074306294322, + 0.017541849985718727, + -0.004329407587647438, + 0.04692774638533592, + -0.02124805934727192, + 0.010215159505605698, + -0.00886324979364872, + 0.006944198161363602, + -0.02614131197333336, + -0.027618519961833954, + 0.009628233499825, + 0.012035291641950607, + 0.024017825722694397, + -0.005750561133027077, + -0.0037062102928757668, + -0.003910645376890898, + -0.0060440246015787125, + 0.0063572716899216175, + -0.0319446325302124, + -0.024373937398195267, + -0.025297192856669426, + -0.017080221325159073, + 0.003541343379765749, + -0.008302702568471432, + -0.0006504003540612757, + 0.0069705769419670105, + -0.0029972821939736605, + -0.009252336807549, + 0.015800854191184044, + 0.19710180163383484, + 0.003422639099881053, + -0.004161243326961994, + 0.033026158809661865, + -0.01921689882874489, + -0.005143850576132536, + 0.03798535838723183, + -0.0020031342282891273, + -0.004299731459468603, + 0.006983766332268715, + -0.01949387416243553, + 0.013822449371218681, + 0.00879070907831192, + 0.0011598393321037292, + 0.009054495953023434, + -0.025956660509109497, + -0.05146488547325134, + -0.01034045871347189, + -0.013360822573304176, + 0.01520733255892992, + 0.012714543379843235, + -0.02587752602994442, + 0.013664177618920803, + -0.019124573096632957, + 0.020733674988150597, + -0.0015472768573090434, + 0.013116818852722645, + 0.011646205559372902, + 0.014574243687093258, + -0.002946173306554556, + 0.00855330005288124, + -0.0022108666598796844, + 0.0009694179752841592, + -0.01452148612588644, + 0.00046451279195025563, + -0.004299731459468603, + 0.02199985273182392, + 0.004237081855535507, + 0.018280453979969025, + 0.020733674988150597, + -0.013268496841192245, + -0.002989038825035095, + -0.0054307193495333195, + -0.02035118266940117, + -0.01880802772939205, + 0.016974706202745438, + -0.0010567974532023072, + -0.001563763595186174, + -0.0031407163478434086, + -0.004899847321212292, + -0.021050218492746353, + 0.011712152510881424, + 0.028093338012695312, + 0.029359515756368637, + -0.03421320021152496, + 0.01266838051378727, + 0.00838843360543251, + -0.003930429462343454, + -0.010703166015446186, + 0.0021828392054885626, + -0.03632349893450737, + 0.03247220441699028, + -0.0008399973739869893, + 0.03023001365363598, + -0.011830856092274189, + -0.013334443792700768, + -0.015154574997723103, + 0.011692368425428867, + 0.00586596829816699, + -0.012991519644856453, + -0.008395028300583363, + -0.011962749995291233, + -0.008302702568471432, + 0.012866221368312836, + -0.015563445165753365, + -0.025837957859039307, + 0.014838030561804771, + -0.0021564604248851538, + 0.021525036543607712, + 0.010413000360131264, + -0.02724921889603138, + 0.017291251569986343, + 0.007148633245378733, + -0.028304368257522583, + -0.012971735559403896, + -0.05101644620299339, + 0.00532850157469511, + 0.011032899841666222, + -0.010380026884377003, + -0.026721645146608353, + -0.009753531776368618, + 0.008005942218005657, + -0.00987883098423481, + -0.010294295847415924, + 0.015603013336658478, + 0.0033682328648865223, + 0.01204188633710146, + 0.01677686721086502, + -0.010215159505605698, + 0.00841481238603592, + -0.01814856007695198, + 0.06990361213684082, + 0.033448219299316406, + -0.004692114889621735, + -0.027776792645454407, + 0.021287627518177032, + -0.010208564810454845, + 0.017423145473003387, + 0.001328003709204495, + -0.014138994738459587, + -0.00045297210454009473, + -0.03065207414329052, + 0.006377055775374174, + -0.016671352088451385, + 0.0031720411498099566, + 0.026906294748187065, + -0.003907348029315472, + -0.009450176730751991, + -0.008883033879101276, + -0.009160011075437069, + -0.02951778843998909, + 0.00993818324059248, + 0.0071420385502278805, + -0.0045173559337854385, + -0.003772157011553645, + -0.01859699748456478, + -0.029649682343006134, + -0.0028769292403012514, + -0.0073135001584887505, + -0.009931588545441628, + 0.013255307450890541, + -0.016433943063020706, + 0.007471772842109203, + 0.000259047286817804, + -0.004124972503632307, + 0.016961516812443733, + 0.01278708502650261, + -0.04225870966911316, + -0.00330558349378407, + 0.001448356662876904, + 0.024782808497548103, + -0.021498657763004303, + 0.00433600228279829, + -0.008883033879101276, + 0.012978330254554749, + 0.0035842086654156446, + 0.004124972503632307, + -0.01094057410955429, + -0.019863177090883255, + -0.018201317638158798, + -0.0068650622852146626, + -0.013703745789825916, + -0.0016379536828026175, + -0.014666568487882614, + 0.023951878771185875, + -0.007860858924686909, + -0.019414737820625305, + -0.0186497550457716, + 0.002286705421283841, + 0.024281613528728485, + -0.012813463807106018, + 0.0013601528480648994, + -0.0026807375252246857, + -0.025468654930591583, + -0.008434596471488476, + -0.006581490859389305, + -0.16755764186382294, + 0.011098846793174744, + 0.022078989073634148, + -0.048695117235183716, + 0.0123848095536232, + 0.014138994738459587, + 0.006601274944841862, + -0.020364372059702873, + -0.002426842227578163, + -0.00999753549695015, + 0.03434509411454201, + 0.010353648103773594, + -0.01031407993286848, + -0.012707948684692383, + -0.014930356293916702, + 0.008685193955898285, + -0.004474490415304899, + 0.04428987205028534, + 0.02587752602994442, + 0.002202623290941119, + -0.0017294548451900482, + -0.025481844320893288, + 0.014363213442265987, + -0.006373758427798748, + 0.001329652382992208, + -0.00046781013952568173, + -0.019124573096632957, + 0.035980574786663055, + -0.008665409870445728, + -0.018425537273287773, + -0.0011367580154910684, + -0.0015489255310967565, + 0.018544239923357964, + -0.008203782141208649, + -0.0077883172780275345, + -0.007808101363480091, + 0.015985505655407906, + -0.013585041277110577, + -0.030546559020876884, + 0.033685628324747086, + 0.036006953567266464, + 0.007135443855077028, + -0.002738440874963999, + -0.0019157546339556575, + -0.030757589265704155, + 0.0022652726620435715, + 0.020034639164805412, + 0.004530545324087143, + -0.01859699748456478, + -0.005203202832490206, + -0.015893179923295975, + -0.013169576413929462, + 0.0024664103984832764, + 0.014336834661662579, + 0.0072079855017364025, + 0.030018985271453857, + 0.00901492778211832, + 0.002654358744621277, + -0.0030302556697279215, + 0.002278462052345276, + -0.015444740653038025, + -0.0077157760970294476, + -0.005249365698546171, + 0.012918978929519653, + -0.00852032657712698, + -0.031865496188402176, + 0.01725168339908123, + -0.01737038791179657, + -0.022962676361203194, + 0.011665989644825459, + -0.027592141181230545, + -0.01049213670194149, + 0.01576128602027893, + 0.0019174033077433705, + -0.0007315973634831607, + -0.009469960816204548, + -0.010175591334700584, + 0.0004970740410499275, + 0.007062902674078941, + -0.0034589096903800964, + -0.019744472578167915, + 0.05539531260728836, + -0.021973473951220512, + -0.006752952467650175, + -0.013242118060588837, + 0.00292474078014493, + -0.009615044109523296, + -0.004273352678865194, + 0.01987636648118496, + -0.001953674014657736, + 0.013492715544998646, + -0.0240310151129961, + -0.04170475900173187, + -0.025917094200849533, + 0.0051933107897639275, + -0.00590223865583539, + 0.00879070907831192, + -0.0007822939660400152, + 0.0071420385502278805, + -0.004649249371141195, + 0.015075438655912876, + -0.008190592750906944, + -0.020166533067822456, + -0.0007414893480017781, + 0.02906935103237629, + 0.012998114340007305, + -0.01739676669239998, + 0.016816435381770134, + 0.032788749784231186, + 0.001677521737292409, + -0.022698888555169106, + -0.01180447731167078, + 0.01841234788298607, + -0.0009018225246109068, + -0.0038084278348833323, + -0.022725267335772514, + 0.012371620163321495, + -0.03183911740779877, + -0.011652800254523754, + -0.006284730043262243, + 0.02420247718691826, + -0.0003798123507294804, + -0.018913542851805687, + 0.005077903624624014, + 0.009338066913187504, + -0.0061528366059064865, + -0.06858467310667038, + 0.014112615957856178, + 0.02972881868481636, + 0.023477060720324516, + -0.004428327549248934, + 0.00018444495799485594, + 0.001960268709808588, + -0.005780237261205912, + -0.004886657930910587, + 0.018043044954538345, + -0.02862091176211834, + -0.01282005850225687, + 0.0037259943783283234, + -0.006990361027419567, + 0.02122168056666851, + -0.01653945818543434, + -0.017001084983348846, + -0.01599869504570961, + -0.030599316582083702, + 0.03107413277029991, + 0.01177150383591652, + -0.011006521061062813, + -0.004573410842567682, + -0.017317630350589752, + -0.019797230139374733, + 0.0010370134841650724, + -0.027855928987264633, + 0.013347633183002472, + 0.022936297580599785, + 0.008823682554066181, + 0.012332051992416382, + -0.02095789462327957, + 0.023318789899349213, + -0.024070583283901215, + 0.0060440246015787125, + -0.020575402304530144, + -0.025231245905160904, + -0.03023001365363598, + -0.002158109098672867, + -0.027565764263272285, + -0.01701427437365055, + -0.003600695403292775, + 0.03798535838723183, + -0.04455365985631943, + -0.0012224888196215034, + 0.002105351770296693, + -0.020364372059702873, + -0.010393216274678707, + -0.01025472767651081, + -0.024162909016013145, + -0.03307891637086868, + -0.018108991906046867, + 0.00976012647151947, + 0.006426515989005566, + 0.03547937795519829, + -0.005466989707201719, + 0.003008822910487652, + -0.001897619222290814, + -0.018873974680900574, + -0.0030071742366999388, + -0.008935791440308094, + 0.0011062576668336987, + -0.04534501954913139, + 0.029254000633955002, + 0.00667051924392581, + 0.001996539533138275, + -0.024703672155737877, + -0.013637798838317394, + -0.010670192539691925, + -0.023107759654521942, + -0.03542662039399147, + 0.006307811476290226, + 0.0060473219491541386, + -0.003831509267911315, + -0.009061090648174286, + 0.0069705769419670105, + -0.031891874969005585, + -0.0017657256685197353, + 0.015128196217119694, + -0.0077553438022732735, + -0.031337920576334, + -0.03429233655333519, + 0.018504673615098, + -0.012839842587709427, + 0.02285716123878956, + 0.005407637916505337, + -0.006400137208402157, + -0.0027681170031428337, + 0.012582649476826191, + -0.028673669323325157, + 0.009924993850290775, + 0.0006796642555855215, + 0.004873468540608883, + -0.006541922688484192, + -0.003805130487307906, + 0.0189531110227108, + 0.008315891958773136, + -0.0012488676002249122, + -0.0038710772059857845, + 0.0003897043934557587, + -0.04993491992354393, + 0.011283498257398605, + -0.0674767717719078, + 0.02221088297665119, + 0.010736139491200447, + -0.015312847681343555, + -0.024070583283901215, + 0.0108944121748209, + 0.005420827306807041, + 0.012272699736058712, + -4.7038618504302576e-05, + 0.0025224650744348764, + -0.006416623946279287, + 0.011896803043782711, + -0.005872562527656555, + -0.009812884032726288, + -0.017423145473003387, + -0.015009492635726929, + 0.012694759294390678, + 0.01623610220849514, + 0.02599622868001461, + 0.009087469428777695, + -0.01362460944801569, + 0.00760366627946496, + 0.005928617436438799, + 0.0016099263448268175, + -0.021947095170617104, + -0.0002714123111218214, + -0.01186382956802845, + -0.0003235515032429248, + 0.0014417619677260518, + -0.020614970475435257, + 0.014943545684218407, + -0.014600622467696667, + -0.014297266490757465, + 0.004715196322649717, + -0.008566489443182945, + -0.021353574469685555, + 0.011619826778769493, + 0.02996622771024704, + 0.008889628574252129, + 0.06668540835380554, + -0.02746024914085865, + -0.008770924992859364, + 0.021327195689082146, + -0.0372995100915432, + -0.008962170220911503, + 0.01174512505531311, + 0.002979146782308817, + 0.0010864735813811421, + 0.016011884436011314, + -0.012114427983760834, + 0.03669280186295509, + 0.0032280960585922003, + -0.015800854191184044, + -0.01322233397513628, + 0.02796144410967827, + -0.03038828633725643, + 0.017660554498434067, + 0.027513006702065468, + 0.010241538286209106, + -0.011270308867096901, + 0.038750339299440384, + -0.004642654675990343, + 0.016433943063020706, + 0.015233711339533329, + 0.027618519961833954, + -0.022580185905098915, + -0.013499310240149498, + -0.009258931502699852, + 0.0011713800486177206, + -0.04252249747514725, + -0.022817593067884445, + -0.014165373519062996, + 0.0017146168975159526, + 0.04146734997630119, + -0.010465757921338081, + -0.011316471733152866, + 0.010406405664980412, + 0.01056467741727829, + 0.0055395313538610935, + 0.02904297225177288, + -0.00032396367168985307, + 0.023318789899349213, + -0.020337993279099464, + -0.011303282342851162, + 0.01599869504570961, + 0.007827885448932648, + -0.008322486653923988, + -0.0025241137482225895, + -0.015484308823943138, + 0.016737299039959908, + 0.007946589961647987, + -0.0007666315650567412, + 0.0028719832189381123, + -0.010663597844541073, + 0.014824841171503067, + 0.0074124205857515335, + -0.004039241466671228, + -0.00022463129425887018, + 0.024927891790866852, + 0.017858393490314484, + 0.002108649117872119, + 0.007227769587188959, + 0.004039241466671228, + -0.0265633724629879, + -0.00841481238603592, + -0.009338066913187504, + 0.008526921272277832, + -0.029781576246023178, + -0.010419595055282116, + 0.02110297605395317, + -0.024993838742375374, + 0.018491484224796295, + -0.01996869221329689, + -0.0028010904788970947, + -0.02635234221816063, + 0.033421840518713, + -0.0035743166226893663, + -0.013189360499382019, + -0.029676061123609543, + 0.013756503351032734, + 0.03152257204055786, + 0.007366257719695568, + 0.00620889151468873, + 0.013611420057713985, + 0.012793679721653461, + 0.012813463807106018, + 0.022158125415444374, + -0.001004864345304668, + 0.0054307193495333195, + -0.020549023523926735, + 0.0034852884709835052, + 0.000847416406031698, + -0.018992679193615913, + -0.013327849097549915, + -0.00326766399666667, + 0.0007192323100753129, + 0.014600622467696667, + -0.0060440246015787125, + 0.01871570199728012, + 0.09765402227640152, + 0.03972635418176651, + -0.0048141167499125, + 0.015629392117261887, + -0.006996955722570419, + -0.0038249145727604628, + 0.010986736975610256, + 0.0021861365530639887, + 0.015919558703899384, + -0.046663958579301834, + -0.012450756505131721, + -0.013782882131636143, + 0.02641828916966915, + -0.026286395266652107, + -0.019296035170555115, + 0.004949307534843683, + -0.003358340822160244, + 0.0288055632263422, + -0.011184577830135822, + 0.01207485981285572, + 0.036903832107782364, + -0.02545546554028988, + 0.020667728036642075, + 0.02972881868481636, + -0.03244582563638687, + -0.010630624368786812, + 0.008645625784993172, + -0.035980574786663055, + 0.013980722054839134, + 0.009338066913187504, + 0.0070365238934755325, + -0.007095876149833202, + -0.06278135627508163, + -0.025363139808177948, + 0.030361907556653023, + -0.020905137062072754, + -0.013433363288640976, + -0.01587999053299427, + 0.01452148612588644, + -0.002163055120036006, + 0.006818899419158697, + 0.014099426567554474, + -0.02951778843998909, + -0.035558514297008514, + -0.002697224263101816, + 0.0008276323787868023, + -0.013314659707248211, + -0.006950792856514454, + -0.033500976860523224 + ], + "metadata": { + "source": "Kreye_Marieke_BA_241_V2.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 17, + "has_images": true, + "image_count": 98, + "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", + "links": [], + "last_modified": "2025-05-05T23:00:23", + "_known_field_names": "frozenset({'is_continuation', 'sent_to', 'header_footer_type', 'email_message_id', 'filename', 'languages', 'detection_class_prob', 'sent_from', 'link_texts', 'cc_recipient', 'subject', 'image_mime_type', 'image_path', 'filetype', 'page_number', 'last_modified', 'signature', 'detection_origin', 'text_as_html', 'attached_to_filename', 'bcc_recipient', 'data_source', 'link_start_indexes', 'category_depth', 'emphasized_text_tags', 'parent_id', 'orig_elements', 'page_name', 'coordinates', 'url', 'link_urls', 'file_directory', 'links', 'table_as_cells', 'emphasized_text_contents', 'key_value_pairs', 'image_base64'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "Kreye_Marieke_BA_241_V2.pdf", + "detection_class_prob": 0.3422867953777313, + "parent_id": "e02392183bc6851689602ad4b9f6039f", + "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", + "id": "ce00eae5-7e07-454f-9e4f-f79ac36f92f4", + "processing_timestamp": "2025-05-05T23:15:46.977945", + "chunk_number": 48, + "total_chunks": 56, + "chunking_strategy": "hybrid", + "word_count": 174 + } +} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000049.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000049.json new file mode 100644 index 0000000000000000000000000000000000000000..f4275d246637b47c3403f76b531dbe77150693ba --- /dev/null +++ b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000049.json @@ -0,0 +1,1570 @@ +{ + "id": "61a115b2-0ff7-441a-f6d9-eb3d00000049", + "content": "Hg. v. Forschungsgesellschaft Landschaftsentwicklung Landschaftsbau e. V. \u2013 FLL. Mehra, Schew-Ram (2021): St\u00e4dtische Atmosph\u00e4re und Stadtklima. In: Schew-Ram Mehra (Hg. ): Stadtbauphysik. Grundlagen klima- und umweltgerechter St\u00e4dte. 1st ed. 2021. Wiesbaden: Springer Fachmedien Wiesbaden; Springer Vieweg, S. 71\u2013149. Online verf\u00fcgbar unter https://link.springer.com/chapter/10.1007/978-3-658-30449-2_5. Menges, Karin; Heitzmann, Julien; Gierl, Fabian (2023): CGSC Mobilit\u00e4t Vorstellung D&S, 07.03.2023. Menges, Karin; Heitzmann, Julien; Gierl, Fabian (2024a): Verkehrsmittelwahl, Modal Split, 08.01.2024. Menges, Karin; Heitzmann, Julien; Gierl, Fabian (2024b): Einteilung Querschnitte je Quartiersarchetyp, 28.04.2024. Moss, Joseph L.; Doick, Kieron J.; Smith, Stefan; Shahrestani, Mehdi (2019): Influence of evaporative cooling by urban forests on cooling demand in cities. In: Urban Forestry & Urban Greening, S. 65\u201373. DOI: 10.1016/j.ufug.2018.07.023. Paschotta, R\u00fcdiger (2023): W\u00e4rmekapazit\u00e4t. Online verf\u00fcgbar unter\nhttps://www.energie-lexikon.info/waermekapazitaet.html, zuletzt aktualisiert am 07.06.2024, zuletzt gepr\u00fcft am 07.06.2024. Reicher Haase Assoziierte GmbH (2022): ISEK Gromb\u00fchl. Endbericht. integriertes st\u00e4dtebauliches Entwicklungskonzept. Hg. v. Stadt W\u00fcrzburg. Online verf\u00fcgbar unter https://www.wuerzburg.de/themen/bauen-\n59\nLiteraturverzeichnis\nplanen/stadtplanung/stadtentwicklung/stadtteilkonzepte/m_577927, zuletzt gepr\u00fcft am 10.04.2024. Revi, Aromar; Satterthwaite, David E.; Arag\u00f3n-Durand, Fernando; Corfee-Morlot, Jan; Kiunsi, Robert B.R.", + "embedding": [ + 0.023838350549340248, + 0.005318915471434593, + 0.01588333584368229, + -0.02132905088365078, + 0.005705988500267267, + 0.02183624915778637, + -0.009463264606893063, + 0.013654329814016819, + -0.01601680926978588, + -0.034809865057468414, + 0.008135204203426838, + 0.012533153407275677, + -0.001680096611380577, + 0.013140457682311535, + -0.008809245191514492, + -0.0043478962033987045, + 0.04014880210161209, + -0.001298028975725174, + 0.017071248963475227, + -0.008161898702383041, + -0.0019070013659074903, + 0.0063700187020003796, + 0.013240562751889229, + 0.007454489823430777, + -0.009309770539402962, + 0.025093000382184982, + 0.02829636260867119, + -0.026080705225467682, + -0.016924427822232246, + 0.018739666789770126, + 0.012132733128964901, + -0.010050548240542412, + -0.016937775537371635, + -0.00991707481443882, + -0.002429216168820858, + -0.012339617125689983, + 0.002218995476141572, + -0.012706669047474861, + 0.024559106677770615, + -0.012806774117052555, + 0.012886857613921165, + 0.009243033826351166, + 0.0005030279280617833, + -0.009149602614343166, + 0.0063566709868609905, + -0.000249636999797076, + 0.02430550754070282, + -0.019113391637802124, + -0.01851276122033596, + 0.02660125121474266, + 0.022930731996893883, + 0.03376877307891846, + 0.0035770873073488474, + -0.008468887768685818, + -0.02658790349960327, + -0.01016400009393692, + -0.013520856387913227, + 0.02578706294298172, + 0.0008271180558949709, + -0.02365148812532425, + -0.013988013379275799, + -0.00620317691937089, + -0.025813758373260498, + 0.024866096675395966, + -0.025693630799651146, + -0.011912502348423004, + -0.04367249831557274, + -0.00017351543647237122, + 0.009823642671108246, + -0.011625533923506737, + 0.03109930455684662, + 0.035263676196336746, + 0.0124130267649889, + -0.019754065200686455, + 0.026240872219204903, + -0.004324538633227348, + 0.0026661313604563475, + -0.003073225263506174, + -0.006783786229789257, + 0.003483656095340848, + 0.008048446848988533, + -0.013407404534518719, + -0.02477266453206539, + 0.03969499096274376, + 0.012279553338885307, + 0.01832589879631996, + 0.006460112985223532, + 0.023518014699220657, + 0.005192115902900696, + 0.0012404684675857425, + 0.010444294661283493, + 0.02709510177373886, + 0.004224433563649654, + 0.011205093003809452, + -0.00483841123059392, + -0.026494471356272697, + 0.004798369016498327, + 0.005419020541012287, + 0.019473770633339882, + -0.01703120768070221, + -0.014601991511881351, + 0.003280109027400613, + 0.004020886495709419, + -0.007801520638167858, + -0.04212420806288719, + 0.007427795324474573, + 0.00666032312437892, + 0.005789409391582012, + 0.00668701808899641, + -0.012766731902956963, + -0.0195138119161129, + 0.018232468515634537, + -0.014241612516343594, + -0.01948711834847927, + 0.005736019928008318, + -0.04086956009268761, + 0.04353902488946915, + -0.01023741066455841, + -0.010057221166789532, + -0.017124637961387634, + 0.027709079906344414, + 0.0022773901000618935, + 0.0007015696028247476, + -0.01672421768307686, + 0.030698884278535843, + 0.01948711834847927, + -0.00678044930100441, + -0.011452018283307552, + -0.0331014059484005, + -0.02327776327729225, + -0.013427425175905228, + 0.006603597197681665, + 0.021395787596702576, + -0.009530001319944859, + -0.015002411790192127, + 0.02594723179936409, + -0.022356797009706497, + 0.0055625042878091335, + -0.03918779268860817, + -0.03771958500146866, + -0.015576346777379513, + 0.021435828879475594, + -0.02678811363875866, + -0.011638881638646126, + -0.010964840650558472, + 0.017925478518009186, + 0.004971884656697512, + 0.02497287467122078, + 0.014655380509793758, + -0.02625421993434429, + 0.007407774217426777, + -0.009096212685108185, + 0.004237780813127756, + 0.02331780456006527, + -0.00776815228164196, + 0.0032700984738767147, + -0.0029530993197113276, + 0.011992585845291615, + -0.024051908403635025, + -0.010791325010359287, + 0.012086017057299614, + -0.01964728534221649, + 0.008902676403522491, + 0.01337403617799282, + 0.012746710330247879, + 0.0005117871332913637, + 0.0005977106047794223, + -0.004017549566924572, + 0.010110611096024513, + -0.014615338295698166, + -0.01871297135949135, + 0.029470929875969887, + -0.03755941614508629, + 0.008709140121936798, + -0.017284806817770004, + 0.029631096869707108, + 0.019100045785307884, + 0.01099820900708437, + -0.012773405760526657, + -0.029043814167380333, + -0.016657480970025063, + 0.02744213305413723, + 0.012613236904144287, + 0.01181907020509243, + -0.004531422164291143, + 0.0006757091614417732, + 0.020061053335666656, + 0.008742508478462696, + 0.0014523575082421303, + -0.009596738032996655, + 0.013327320106327534, + 0.028563309460878372, + 0.01585664041340351, + -0.0034869927912950516, + -0.6453706622123718, + -0.022730521857738495, + -0.0011236793361604214, + -0.020554905757308006, + -0.013867887668311596, + 0.016470618546009064, + 0.024091951549053192, + -0.002744547091424465, + -0.0063900393433868885, + 0.045727990567684174, + -0.004254464991390705, + 0.0036304767709225416, + -0.030885746702551842, + -0.005332262720912695, + -0.015629736706614494, + -0.01223951205611229, + -0.005145399831235409, + -0.0170445553958416, + 0.03368869051337242, + 0.00678044930100441, + -0.015336095355451107, + 0.015749862417578697, + -0.0014214918483048677, + -0.03024507500231266, + 0.0030532043892890215, + 0.013947971165180206, + 0.014241612516343594, + -0.030778968706727028, + 0.0036304767709225416, + 0.01915343478322029, + -0.026000620797276497, + 0.019780758768320084, + -0.01968732848763466, + 0.019086698070168495, + 0.05029278248548508, + 0.012826794758439064, + 0.0010911450954154134, + 0.014695422723889351, + 0.023891741409897804, + 0.018726319074630737, + -0.012673300690948963, + -0.002369153080508113, + -0.006303281988948584, + 0.003910771105438471, + 0.005445715039968491, + 0.022516964003443718, + 0.03275437653064728, + -0.01986084319651127, + -0.005675956606864929, + -0.015950072556734085, + -0.0008012575563043356, + -0.004708274733275175, + 0.010697893798351288, + 0.011104987934231758, + 0.020554905757308006, + 0.011859112419188023, + 0.014762159436941147, + -0.006987332832068205, + -0.011965891346335411, + 0.00819526705890894, + -0.007307669147849083, + 0.017097944393754005, + -0.015376136638224125, + -0.019887538626790047, + -0.009096212685108185, + 0.03491664305329323, + -0.02195637673139572, + -0.005792745854705572, + 0.01149873435497284, + -0.02658790349960327, + -0.02182290330529213, + 0.017258111387491226, + -0.013921276666224003, + -0.011431997641921043, + 0.012479763478040695, + 0.014335044659674168, + 0.02250361628830433, + 0.004237780813127756, + -0.0119792390614748, + 0.01968732848763466, + 0.005682630464434624, + -0.015482915565371513, + 0.027522217482328415, + -0.0042978436686098576, + 0.01998096890747547, + -0.050186000764369965, + -0.01787208952009678, + -0.02131570316851139, + -0.007728110533207655, + 0.0015708152204751968, + 0.01413483452051878, + 0.01131187193095684, + -0.027895942330360413, + -0.0011170055950060487, + -0.010324168018996716, + 0.03972168639302254, + -0.006293271202594042, + 0.039428044110536575, + -0.0030648831743746996, + -0.05637916922569275, + -0.008942718617618084, + -0.01081134658306837, + 0.031206082552671432, + -0.0006919762236066163, + -0.012012607418000698, + 0.008635729551315308, + -0.03043193742632866, + -0.009910400956869125, + 0.02019452676177025, + -0.002569363219663501, + 0.003567076986655593, + -0.004968547727912664, + -0.024545760825276375, + -0.008061793632805347, + -0.004110981244593859, + -0.030191686004400253, + 0.029551012441515923, + -0.0069272699765861034, + 0.0043312120251357555, + -0.0051253791898489, + 0.014361739158630371, + 0.0034869927912950516, + 0.015349442139267921, + -0.016297103837132454, + -0.004554780200123787, + 0.020448125898838043, + -0.02184959687292576, + -0.00843551941215992, + -0.01570982113480568, + -0.003149972530081868, + 0.024839401245117188, + 0.016310451552271843, + 0.04562121257185936, + -0.018219120800495148, + 0.028189584612846375, + 0.01952715963125229, + 0.018899835646152496, + -0.015829946845769882, + 0.017818700522184372, + -0.02577371522784233, + -0.007100785616785288, + -0.00818859413266182, + 0.012232838198542595, + -0.028162889182567596, + -0.019433729350566864, + -0.03638485074043274, + -0.00934313889592886, + 0.01705790124833584, + -0.01480220165103674, + 0.0030331832822412252, + -0.03307471051812172, + -0.006666996981948614, + -0.015416178852319717, + 0.01554965227842331, + -0.014054750092327595, + -0.008208614774048328, + -0.002846320392563939, + -0.013961318880319595, + -0.015389484353363514, + -0.020114442333579063, + 0.0049184951931238174, + 0.009356485679745674, + -0.04164370521903038, + -0.024212077260017395, + 0.002807946875691414, + 0.016790954396128654, + 0.011678923852741718, + 0.013841193169355392, + -0.003683866234496236, + -0.029657792299985886, + -0.0007624668651260436, + -0.029470929875969887, + 0.0030782304238528013, + 0.029230676591396332, + -0.0011754002189263701, + -0.016991164535284042, + -0.024332202970981598, + -0.003557066433131695, + -0.014028055593371391, + -0.015296053141355515, + 0.014655380509793758, + 0.009323117323219776, + -0.0008792561129666865, + 0.00967682246118784, + 0.012673300690948963, + 0.00014598654524888843, + 0.0004980226512998343, + 0.01617697812616825, + 0.008388804271817207, + 0.020888589322566986, + 0.011218439787626266, + 0.04385936260223389, + -0.009356485679745674, + 0.00908953882753849, + -0.02016783319413662, + -0.008455540984869003, + -0.015055800788104534, + 0.0068939016200602055, + -0.0321137011051178, + 0.009263054467737675, + 0.029684485867619514, + -0.0015274363104254007, + 0.010117284953594208, + -0.004754990339279175, + 0.013787803240120411, + -0.022196628153324127, + -0.002612742129713297, + 0.0032851144205778837, + 0.018619541078805923, + 0.022196628153324127, + 0.024358898401260376, + 0.002868009964004159, + -0.047863565385341644, + 0.0006798802060075104, + -0.012099364772439003, + 0.038573816418647766, + -0.0013664340367540717, + 0.012126059271395206, + -0.02162269316613674, + -0.006757091265171766, + 0.00967682246118784, + -0.002512637060135603, + 0.03259420767426491, + -0.017992215231060982, + -0.018139036372303963, + 0.004137675743550062, + -0.010864735580980778, + 0.008482235483825207, + -0.000999382114969194, + -0.0031266147270798683, + -0.0020054380875080824, + 0.010951492935419083, + -0.002380831865593791, + -0.009129581041634083, + 0.004648211412131786, + 0.027188533917069435, + 0.008315393701195717, + -0.017551753669977188, + 0.027895942330360413, + 0.01296694204211235, + 0.019580548629164696, + 0.024585802108049393, + 0.011345240287482738, + -0.009022802114486694, + 0.02625421993434429, + -0.015269358642399311, + 0.03072557970881462, + 0.021582650020718575, + 0.007120806258171797, + 0.01497571635991335, + -0.02381165698170662, + 0.011618860065937042, + 0.0034152509178966284, + -0.007995056919753551, + 0.02216993272304535, + -0.013587593100965023, + 0.010137305594980717, + -0.012546500191092491, + 0.016163630411028862, + 0.014335044659674168, + -0.03128616884350777, + 0.00900945533066988, + 0.005048631690442562, + -0.014375085942447186, + -0.0035036769695580006, + 0.0020888589788228273, + -0.02134239859879017, + -0.015910031273961067, + -0.011752333492040634, + -0.012079344131052494, + -0.002168942941352725, + -0.004114317707717419, + -0.022610396146774292, + -0.010684546083211899, + 0.009356485679745674, + -0.004391275346279144, + 0.002457579132169485, + 0.0015975098358467221, + 0.020434780046343803, + 0.006360007915645838, + -0.006002966780215502, + -0.019246865063905716, + 0.0007124143303371966, + 0.015162579715251923, + -0.007054069545120001, + -0.019233519211411476, + -0.0160568505525589, + 0.0033201510086655617, + -0.015109189786016941, + -0.0006481802556663752, + -0.011605513282120228, + -0.009543349035084248, + -0.005926219280809164, + -0.0026227524504065514, + -0.003390224650502205, + -0.006483471021056175, + -0.0010085584362968802, + -0.014855590648949146, + -0.01321386732161045, + 0.008035099133849144, + -0.016497313976287842, + 0.0037038871087133884, + 0.0014782180078327656, + 0.006636965554207563, + 0.04017549753189087, + -0.009142928756773472, + -0.009516654536128044, + 0.007080764509737492, + -0.001725143869407475, + -0.0068271649070084095, + -0.00313996197655797, + -0.01617697812616825, + -0.013040352612733841, + 0.022370142862200737, + -0.010143979452550411, + 0.019300255924463272, + 0.002329111099243164, + -0.021075451746582985, + 0.04233776777982712, + -0.019874190911650658, + 0.00400420231744647, + -0.02861669845879078, + 0.0023274426348507404, + 0.0038106658030301332, + 0.05328258499503136, + 0.020928630605340004, + -0.011091640219092369, + 0.010717914439737797, + 0.012733363546431065, + -0.017618490383028984, + -0.0004721621808130294, + -0.027842553332448006, + -0.0025209791492670774, + -0.012126059271395206, + -0.021102147176861763, + -0.01173898670822382, + 0.0017284806817770004, + -0.019553855061531067, + 0.0195138119161129, + -0.002918062498793006, + 0.013013657182455063, + -0.020274611189961433, + 0.002846320392563939, + 0.020448125898838043, + -0.019140087068080902, + -0.015256010927259922, + -0.0031766672618687153, + 0.038920845836400986, + 0.011138356290757656, + -0.004955200478434563, + 0.030672190710902214, + 0.007988383993506432, + 0.013427425175905228, + -0.012132733128964901, + 0.012766731902956963, + 0.019433729350566864, + 0.031820062547922134, + 0.01669752411544323, + -0.022116543725132942, + 0.006096397992223501, + 0.007694742176681757, + -0.034970033913850784, + 0.03603782132267952, + 0.0010277453111484647, + 0.033154796808958054, + 0.010337515734136105, + -0.007187542971223593, + -0.0032534142956137657, + 0.016070198267698288, + -0.017231417819857597, + -0.011064945720136166, + 0.01948711834847927, + -0.0003879070864059031, + -0.0007612155750393867, + 0.006283260881900787, + -0.012473090551793575, + -0.003069888334721327, + -0.0011411976302042603, + 7.805065979482606e-05, + -0.01636384055018425, + 0.018726319074630737, + -0.024532413110136986, + -0.000854229845572263, + -0.026160787791013718, + -0.025333253666758537, + -0.04193734750151634, + -0.009543349035084248, + -0.0065034921281039715, + -0.006249892525374889, + -0.009683496318757534, + -0.0030431938357651234, + -0.008889329619705677, + -0.028376447036862373, + -0.01636384055018425, + 0.02100871503353119, + -0.036117903888225555, + -0.02477266453206539, + 0.012092690914869308, + 0.023771613836288452, + -0.007054069545120001, + 0.0025443369522690773, + -0.010230736806988716, + -0.007527900394052267, + -0.014935675077140331, + -0.02840314246714115, + -0.00256268959492445, + 0.010444294661283493, + -0.0276023019105196, + -0.015336095355451107, + 0.00673373369500041, + -0.01785874180495739, + -0.011185071431100368, + 0.0027979363221675158, + 0.011365260928869247, + 0.002629426307976246, + -0.013787803240120411, + 0.009730211459100246, + -0.000649014487862587, + -0.011418649926781654, + 0.011285176500678062, + 0.008328740485012531, + 0.0016217019874602556, + 0.016443924978375435, + -0.021916333585977554, + 0.013160478323698044, + -0.008308719843626022, + -0.013520856387913227, + 0.0032650933135300875, + 0.012179449200630188, + 0.008802571333944798, + 0.0027261944487690926, + 0.010357536375522614, + -0.00378397130407393, + 0.008702466264367104, + 0.02626756764948368, + -0.013814497739076614, + 0.015202621929347515, + 0.0018936540000140667, + -0.015616388991475105, + 0.016497313976287842, + -0.0010127294808626175, + 0.015189274214208126, + 0.028563309460878372, + -0.009129581041634083, + -0.002512637060135603, + -0.02859000489115715, + 0.0276023019105196, + 0.014762159436941147, + -8.743551006773487e-05, + 0.028563309460878372, + 0.005071989726275206, + 0.025373294949531555, + -0.03190014511346817, + -7.04906415194273e-05, + -0.015429526567459106, + 0.01604350470006466, + 0.02064833603799343, + 0.004407959524542093, + -0.03884076327085495, + -0.018552804365754128, + -0.018739666789770126, + 0.0035904347896575928, + -0.026040662080049515, + 0.0006702867685817182, + -0.02379830926656723, + 0.023010816425085068, + 0.00835543591529131, + 0.015469568781554699, + 0.0008075141231529415, + -0.027869248762726784, + -0.024172034114599228, + 0.0004421306657604873, + -0.023744920268654823, + 0.02182290330529213, + -0.02064833603799343, + -0.01935364492237568, + -0.015175926499068737, + 0.023251067847013474, + -0.009202991612255573, + -0.03691874444484711, + 0.017618490383028984, + -0.024345550686120987, + 0.025827104225754738, + -0.012106038630008698, + 0.02311759442090988, + 0.005051968619227409, + 0.028509920462965965, + -0.008375456556677818, + -0.0031599830836057663, + -0.004865105729550123, + -0.005452388897538185, + 0.009930421598255634, + -0.0259338840842247, + 0.024345550686120987, + 0.01652400754392147, + 0.013594266958534718, + 0.006216524168848991, + 0.004484706558287144, + 0.007828215137124062, + 0.0331014059484005, + -0.010264105163514614, + -0.0246391911059618, + -0.012513131834566593, + -0.01998096890747547, + -0.018139036372303963, + 0.012593216262757778, + -0.0009676822228357196, + 0.01717802882194519, + -0.03753272444009781, + -0.022530311718583107, + 0.03585095703601837, + 0.002192300744354725, + -0.019073350355029106, + -0.0036438240204006433, + 0.023424584418535233, + -0.0274154394865036, + 0.02808280475437641, + 0.010350863449275494, + 0.0021872955840080976, + -0.0026878206990659237, + -0.008375456556677818, + -0.01025743130594492, + -0.030004823580384254, + 0.0208085048943758, + -0.013387382961809635, + -0.007774826139211655, + 0.005285547114908695, + -0.016270408406853676, + 0.009623432531952858, + -0.0020671694073826075, + 0.015389484353363514, + -0.018085647374391556, + 0.01655070297420025, + -0.010551073588430882, + 0.004668232519179583, + -0.018592845648527145, + 0.008515603840351105, + -0.027468828484416008, + 0.036304768174886703, + -0.009636780247092247, + -0.006349997594952583, + 0.042204294353723526, + -0.023851698264479637, + 0.016443924978375435, + 0.019780758768320084, + 0.0031599830836057663, + 0.024519065394997597, + -0.0024392264895141125, + 0.02891034074127674, + -0.0024041899014264345, + -0.009530001319944859, + -0.025373294949531555, + -0.011618860065937042, + -0.00916294939815998, + -0.019633939489722252, + 0.0331014059484005, + -0.002812952036038041, + -0.014668728224933147, + -0.017111292108893394, + 0.00570265157148242, + 0.013487488031387329, + -0.006967312190681696, + -0.0015724835684522986, + 0.04562121257185936, + 0.04383266717195511, + 0.005442378111183643, + -0.01412148680537939, + 0.015095843002200127, + -0.022917384281754494, + 0.0010102269006893039, + 0.010143979452550411, + -0.008208614774048328, + -0.007487858179956675, + -0.005919545888900757, + 0.0035537295043468475, + 0.037933144718408585, + -0.015042453072965145, + 0.006797133479267359, + 0.03056541085243225, + -0.01240635383874178, + 0.008181920275092125, + -0.020207874476909637, + -0.013253909535706043, + 0.02230340614914894, + 0.0027662364300340414, + 0.03582426533102989, + -0.0056626093573868275, + -0.0035136875230818987, + 0.003296793205663562, + -0.0025259843096137047, + 2.7528891223482788e-05, + 0.004274486098438501, + 0.008775876834988594, + 0.022209975868463516, + 0.001147871371358633, + 0.004020886495709419, + -0.007167522329837084, + 0.003136625047773123, + 0.026040662080049515, + 0.0019837485160678625, + -0.0011628870852291584, + -0.004841748159378767, + 0.004207749385386705, + -0.012025954201817513, + 0.011171724647283554, + 0.006653649732470512, + -0.014989064075052738, + -0.00033973154495470226, + -0.017711922526359558, + -0.014815548434853554, + 0.01190582849085331, + -0.008722487837076187, + 0.022209975868463516, + -0.03486325591802597, + 0.02031465247273445, + 0.012826794758439064, + -0.022783910855650902, + 0.021769512444734573, + -0.015776557847857475, + -0.006156460847705603, + -0.01619032397866249, + 0.023024164140224457, + -0.03208700940012932, + 0.02625421993434429, + 0.02394513040781021, + 0.004000865388661623, + 0.006907248869538307, + 0.01983414962887764, + -0.007908299565315247, + -0.023571403697133064, + 0.004508064594119787, + 0.013554224744439125, + -0.03123277798295021, + 0.003937465604394674, + 0.009049497544765472, + 0.02430550754070282, + -0.011205093003809452, + 0.003894086694344878, + 0.007808194495737553, + -0.007000680547207594, + 0.0029497623909264803, + -0.026000620797276497, + 0.0035370453260838985, + 0.05584527552127838, + 0.00166508078109473, + -0.0037305818405002356, + 0.03868059441447258, + -0.02199641801416874, + 0.03360860422253609, + 0.017938826233148575, + 0.013006984256207943, + -0.00949663296341896, + -0.028643393889069557, + -0.011932522989809513, + 0.01767187938094139, + 0.03537045419216156, + -0.01554965227842331, + 0.0003803992294706404, + -0.0190199613571167, + -0.01488228514790535, + -0.005705988500267267, + 0.014401781372725964, + 0.015950072556734085, + -0.00017007431597448885, + 0.013907928951084614, + 0.018873140215873718, + -0.0009142928756773472, + 0.017778659239411354, + -0.013120436109602451, + -0.004281159490346909, + 0.002777915447950363, + -0.00044797014561481774, + -0.04914490878582001, + 0.004131001885980368, + 0.0031049251556396484, + 0.03686535730957985, + -0.00802175235003233, + -0.043565720319747925, + -0.01900661364197731, + 0.010951492935419083, + -0.04706272482872009, + -0.02728196606040001, + -0.00793499406427145, + -0.007361058611422777, + 0.0037639501970261335, + 0.004891800694167614, + -0.010777978226542473, + 0.03366199508309364, + 0.005862819496542215, + 0.015229316428303719, + -0.007461163681000471, + -0.000982697936706245, + -0.0057126618921756744, + -0.01967398077249527, + 0.041430145502090454, + 0.015202621929347515, + -0.027228575199842453, + -0.006643638946115971, + 0.01585664041340351, + 0.0060329982079565525, + -0.010170673951506615, + 0.0027395416982471943, + 0.0006761262193322182, + 0.0028529942501336336, + -0.011678923852741718, + 0.01422826573252678, + 0.005365631077438593, + -0.0024592475965619087, + 0.017244765534996986, + -0.023077553138136864, + 0.006973985582590103, + 0.015082495287060738, + 0.002984799211844802, + -0.010224062949419022, + -0.005402336362749338, + 0.004965210799127817, + -0.03817339614033699, + -0.007154174614697695, + 0.02808280475437641, + -0.03123277798295021, + -0.0016450597904622555, + -0.009456590749323368, + 0.024852748960256577, + -0.013434099033474922, + 0.0003720571403391659, + 0.011525428853929043, + 0.012232838198542595, + -0.0031599830836057663, + -0.021382439881563187, + -0.0038540447130799294, + -0.018392635509371758, + 0.007300995755940676, + 0.019607244059443474, + -0.0008241983014158905, + 0.029310761019587517, + -0.022850647568702698, + 0.010524378158152103, + -0.015175926499068737, + -0.012553174048662186, + -0.035290371626615524, + -0.026574555784463882, + 0.0005793580203317106, + 0.012479763478040695, + 0.02179620787501335, + -0.011678923852741718, + -0.00013545465481001884, + -0.006366681773215532, + -0.008121857419610023, + 0.007481184788048267, + -0.006012977100908756, + 0.01684434525668621, + -0.018779708072543144, + -0.016951123252511024, + 0.011805723421275616, + -0.0188330989331007, + 0.010450968518853188, + -0.00040250574238598347, + 0.0031549776904284954, + -0.0019887539092451334, + 0.013567572459578514, + 0.19380339980125427, + 0.006139776669442654, + 0.004374591168016195, + 0.016790954396128654, + -0.017925478518009186, + -0.01148538663983345, + 0.03005821257829666, + -6.25656612101011e-05, + -0.0031082620844244957, + 0.02330445684492588, + -0.015963420271873474, + -0.00019374499970581383, + 0.007387753110378981, + 0.0055458201095461845, + 0.016951123252511024, + -0.021302355453372, + -0.042551323771476746, + -0.00852895062416792, + -0.009376507252454758, + -0.007174195721745491, + 0.03024507500231266, + -0.021235620602965355, + -0.0033201510086655617, + -0.02562689408659935, + 0.031206082552671432, + -0.014735464937984943, + 0.011999259702861309, + 0.0019770748913288116, + 0.020701726898550987, + 0.010964840650558472, + 0.00520212622359395, + 0.015309399925172329, + 0.004561453592032194, + -0.013988013379275799, + -0.01133189257234335, + -0.007060743402689695, + 0.02431885525584221, + -0.004151022993028164, + 0.0175384059548378, + 0.02859000489115715, + -0.0019053329015150666, + -0.0006715381168760359, + -0.008869308046996593, + -0.023197678849101067, + -0.004968547727912664, + 0.029817959293723106, + -0.01915343478322029, + 0.005902861710637808, + -0.01090477779507637, + -0.00818859413266182, + -0.019754065200686455, + 0.008468887768685818, + 0.015296053141355515, + 0.059262193739414215, + -0.004187728278338909, + 0.002697831252589822, + 0.004658222198486328, + 0.005459062289446592, + -0.024705927819013596, + -0.008135204203426838, + -0.02526651695370674, + 0.02431885525584221, + -0.0035537295043468475, + 0.017551753669977188, + -0.012172775343060493, + -0.007501205895096064, + -0.01966063305735588, + 0.01454860158264637, + -0.006590249482542276, + -0.004644874483346939, + -0.0031766672618687153, + -0.027388744056224823, + -0.0276023019105196, + 0.006496818270534277, + -0.01569647341966629, + -0.034302666783332825, + 0.01871297135949135, + 0.006293271202594042, + 0.01636384055018425, + 0.04797034338116646, + -0.020247915759682655, + 0.021289009600877762, + -0.002362479455769062, + -0.016243714839220047, + 0.004568127449601889, + -0.05226818844676018, + 0.019100045785307884, + 0.007160848472267389, + -0.0337153822183609, + -0.01996762305498123, + -0.011525428853929043, + 0.01198591198772192, + 0.0010194032220169902, + -0.010350863449275494, + 0.03059210628271103, + -0.018779708072543144, + 0.021435828879475594, + 0.01057109422981739, + -0.010504357516765594, + 0.016003461554646492, + -0.008875981904566288, + 0.058247797191143036, + 0.02015448547899723, + -0.011018229648470879, + -0.015950072556734085, + 0.002065500942990184, + -0.005208800081163645, + 0.024906137958168983, + 0.007834888994693756, + 0.0003872814413625747, + 0.0060363351367414, + -0.024732623249292374, + -0.011825744062662125, + -0.015069148503243923, + 0.0008246154175139964, + 0.021689429879188538, + 0.002906383480876684, + -0.010517705231904984, + 0.011605513282120228, + -0.019780758768320084, + -0.015509610064327717, + 0.017618490383028984, + 0.011872460134327412, + -0.0013572577154263854, + 0.004157696850597858, + -0.009877032600343227, + -0.03675857558846474, + -0.005622567608952522, + -0.016564050689339638, + -0.017912132665514946, + 0.02461249753832817, + -0.004134338814765215, + 0.021569302305579185, + 0.0043478962033987045, + -0.001370605081319809, + 0.007120806258171797, + 0.0038473710883408785, + -0.02427881397306919, + -0.003084904281422496, + -0.012299574911594391, + 0.011598839424550533, + -0.027468828484416008, + 0.002812952036038041, + -0.0069272699765861034, + 0.011084966361522675, + -0.005479083396494389, + -0.005449051968753338, + -0.0033184827771037817, + -0.03109930455684662, + -0.011024903506040573, + -0.008241983130574226, + -0.009776927530765533, + 0.0022006428334861994, + -0.016777608543634415, + 0.03625137731432915, + -0.0010527715785428882, + -0.015736514702439308, + -0.009243033826351166, + 0.014495212584733963, + 0.0019403697224333882, + -0.025052959099411964, + 0.012306248769164085, + 0.002612742129713297, + -0.013360688462853432, + -0.01223951205611229, + 0.010517705231904984, + -0.17073918879032135, + 0.0044446648098528385, + 0.020127790048718452, + -0.0343293622136116, + 0.010057221166789532, + 0.02263708971440792, + 0.0043645803816616535, + -0.014668728224933147, + -0.014895632863044739, + -0.007995056919753551, + 0.02712179720401764, + 0.004895137157291174, + -0.01683099754154682, + -0.004197738599032164, + -0.0032317249570041895, + 0.0012805105652660131, + -0.012733363546431065, + 0.01536278985440731, + 0.011358587071299553, + 0.0038406974636018276, + 0.015162579715251923, + -0.01885979250073433, + 0.0032434039749205112, + -0.008655751124024391, + 0.02580041065812111, + 0.004120991565287113, + -0.007834888994693756, + 0.016083545982837677, + -0.013647655956447124, + -0.007187542971223593, + -0.016323797404766083, + 0.0012171106645837426, + 0.04383266717195511, + 0.0026894891634583473, + -0.008682445622980595, + 0.0002394179318798706, + 0.012539827264845371, + -0.004975221585482359, + -0.026868198066949844, + 0.020581599324941635, + 0.02262374386191368, + -0.01164555549621582, + -0.013247235678136349, + 0.014748811721801758, + -0.03448953106999397, + 0.0025543475057929754, + 0.005852809175848961, + 0.00011887475557159632, + 0.0013288946356624365, + 0.0005401502130553126, + -0.0009635111782699823, + -0.019246865063905716, + -0.01155879721045494, + 0.01584329456090927, + 0.013040352612733841, + 0.02067503146827221, + 0.010704567655920982, + 0.012773405760526657, + -0.003350182669237256, + -0.014148181304335594, + -0.014054750092327595, + -0.006840512156486511, + 0.0064901444129645824, + 0.006319966167211533, + 0.005025274120271206, + -0.0313662514090538, + -0.0019937590695917606, + 0.011859112419188023, + -0.01851276122033596, + -0.0012688316637650132, + 0.0031649882439523935, + -0.018899835646152496, + 0.016964470967650414, + 0.0032117038499563932, + 0.0087692029774189, + -0.0060329982079565525, + 0.0009142928756773472, + 0.004584811627864838, + 0.015095843002200127, + -0.01025743130594492, + -0.02431885525584221, + 0.061557937413454056, + -0.0321137011051178, + -0.015629736706614494, + -0.01099820900708437, + -0.003456961363554001, + -0.033955637365579605, + -0.007614658214151859, + 0.0023374531883746386, + 0.020701726898550987, + 0.019714022055268288, + -0.01655070297420025, + -0.017818700522184372, + -0.015496263280510902, + 0.006717049516737461, + -0.0038140027318149805, + 0.0065368604846298695, + 0.0028396467678248882, + -0.0014123155269771814, + 0.0004729964130092412, + 0.00273119960911572, + -0.02646777778863907, + -0.028963729739189148, + -0.014828896149992943, + 0.0022039797622710466, + 0.020594947040081024, + -0.008221962489187717, + 0.018432678654789925, + 0.04789026081562042, + -0.0276023019105196, + -0.028723478317260742, + -0.009216339327394962, + 0.020594947040081024, + 0.0024392264895141125, + 0.0021055431570857763, + -0.004191065207123756, + 0.013180498965084553, + -0.030164990574121475, + 0.009022802114486694, + -0.009363159537315369, + 0.0380399227142334, + -0.004371254239231348, + -0.014868938364088535, + 0.007074090652167797, + 0.004651548340916634, + -0.02262374386191368, + -0.07351715117692947, + 0.016243714839220047, + 0.019033309072256088, + 0.009076192043721676, + 0.006416734308004379, + 0.020861893892288208, + -0.003313477383926511, + -0.0027862575370818377, + -0.00966347474604845, + 0.023851698264479637, + -0.02413199283182621, + -0.017645185813307762, + -0.012052648700773716, + -0.017658531665802002, + 0.03168658912181854, + -0.01001050602644682, + 0.001170394942164421, + -0.028376447036862373, + -0.02845653146505356, + 0.041910652071237564, + 0.009216339327394962, + -0.007487858179956675, + -0.012513131834566593, + -0.03024507500231266, + -0.011999259702861309, + 0.012613236904144287, + -0.03467639163136482, + 0.011492060497403145, + 0.017925478518009186, + 0.0017802015645429492, + 0.004017549566924572, + -0.026067357510328293, + 0.00802175235003233, + -0.017324848100543022, + 0.0005701816990040243, + -0.006209850311279297, + -0.006376692093908787, + -0.023424584418535233, + 0.014989064075052738, + -0.018726319074630737, + -0.015976767987012863, + -0.0002830053272191435, + 0.021943029016256332, + -0.04217759892344475, + -0.004077612888067961, + 0.002030464354902506, + -0.025239821523427963, + -0.009223012253642082, + 0.008555646054446697, + -0.028216278180480003, + -0.03192684054374695, + -0.03403571993112564, + 0.013360688462853432, + -0.0005113700171932578, + 0.014815548434853554, + 0.005555830895900726, + -0.00740110082551837, + 0.011171724647283554, + -0.02845653146505356, + 0.0067604281939566135, + -0.005282210186123848, + 0.0138945821672678, + -0.02545337937772274, + 0.022089850157499313, + 0.021048756316304207, + -0.016110241413116455, + -0.01497571635991335, + -0.012740037404000759, + 0.007494532037526369, + -0.0119792390614748, + -0.021435828879475594, + 0.01570982113480568, + -0.009109560400247574, + -0.0076546999625861645, + -0.03192684054374695, + -0.0029831307474523783, + -0.02083520032465458, + -0.024879444390535355, + 0.005061978939920664, + -0.02298412099480629, + -0.018219120800495148, + -0.0323539562523365, + 0.028830256313085556, + -0.00018404732691124082, + 0.030672190710902214, + 0.022944079712033272, + 0.0065201763063669205, + -0.017137985676527023, + 0.01996762305498123, + -0.027201881632208824, + 0.02497287467122078, + 0.00196372764185071, + 0.015963420271873474, + 0.00503528444096446, + 0.002457579132169485, + 0.01852610893547535, + -0.0013338999124243855, + -0.006787123158574104, + 0.01488228514790535, + 0.005348946899175644, + -0.026160787791013718, + -0.011044925078749657, + -0.06849855184555054, + 0.0244523286819458, + 0.014815548434853554, + -0.002913057105615735, + -0.02560020051896572, + -0.0017952173948287964, + -0.0043145278468728065, + 0.0009318112279288471, + 0.016790954396128654, + 0.007581289857625961, + -0.016897734254598618, + 0.0188330989331007, + -0.006663660053163767, + -0.01397466566413641, + -0.01604350470006466, + -0.006353334523737431, + 0.017431627959012985, + 0.018899835646152496, + 0.014295002445578575, + 0.005088673904538155, + -0.022236669436097145, + 0.014508559368550777, + -0.012112712487578392, + 0.013080393895506859, + -0.02314428985118866, + 0.013067047111690044, + -0.015789903700351715, + -0.0012880184222012758, + -0.00222900602966547, + -0.015042453072965145, + 0.0009067849605344236, + -0.011732312850654125, + -0.018098995089530945, + 0.0002216909924754873, + -0.01148538663983345, + -0.009169623255729675, + 0.019407033920288086, + 0.02644108235836029, + -0.0005539146368391812, + 0.05664611607789993, + -0.03483656048774719, + -0.0008387969573959708, + 0.004084286279976368, + -0.028883645310997963, + 0.0018285857513546944, + 0.0073143430054187775, + 0.0013864550273865461, + 0.0009167955140583217, + 0.0276023019105196, + -0.008201940916478634, + 0.03208700940012932, + 0.012259532697498798, + 0.008161898702383041, + -0.01098486129194498, + 0.01570982113480568, + -0.01982080191373825, + 0.010951492935419083, + 0.015936724841594696, + 0.005152073688805103, + -0.015149232000112534, + 0.041243284940719604, + 0.01422826573252678, + 0.02909720316529274, + 0.003920781426131725, + 0.022757217288017273, + -0.012266206555068493, + -0.016403881832957268, + -0.007174195721745491, + 0.02047482132911682, + -0.01620367169380188, + -0.04279157519340515, + -0.016417229548096657, + -0.0007908299448899925, + 0.04634196683764458, + -0.0063566709868609905, + 0.0010102269006893039, + 0.013053699396550655, + 0.0037539396435022354, + -0.0019303591689094901, + 0.03176667168736458, + 0.025052959099411964, + 0.00669035455211997, + -0.01899326592683792, + 0.004344559740275145, + 0.005919545888900757, + -0.0012012607185170054, + -0.038280174136161804, + -0.007901625707745552, + -0.011265155859291553, + 0.014201571233570576, + 0.006480134092271328, + 0.006496818270534277, + 0.006086387671530247, + -0.02231675386428833, + 0.023371193557977676, + 0.01092479843646288, + 0.007094111759215593, + -0.0023508004378527403, + 0.023010816425085068, + 0.03897423669695854, + -0.005465736147016287, + 0.014415128156542778, + 0.008795897476375103, + -0.020074401050806046, + -0.010264105163514614, + 0.006343323737382889, + 0.000632747367490083, + -0.011745660565793514, + 0.00164172297809273, + 0.022944079712033272, + -0.022904036566615105, + 0.036304768174886703, + 0.004704937804490328, + -0.015109189786016941, + -0.028643393889069557, + 0.03472978249192238, + -0.013040352612733841, + -0.008875981904566288, + -0.026854850351810455, + 0.014001361094415188, + 0.009570043534040451, + 0.005639251787215471, + 0.009369833394885063, + 0.015482915565371513, + 0.012099364772439003, + 0.020221222192049026, + -0.0018469382775947452, + 0.009469938464462757, + 0.015189274214208126, + -0.013620961457490921, + 0.016096893697977066, + 0.015416178852319717, + -0.024999570101499557, + -0.014922327362000942, + -0.035797569900751114, + -0.01430834922939539, + 0.0056959777139127254, + -0.005098684225231409, + 0.0040575917810201645, + 0.0863306000828743, + 0.03534375876188278, + 0.0009293086477555335, + 0.00776815228164196, + -0.00802175235003233, + 0.01513588521629572, + 0.0010569426231086254, + 0.012246185913681984, + -0.005776061676442623, + -0.05968930944800377, + 0.007127480115741491, + -0.012773405760526657, + 0.02709510177373886, + -0.02529321052134037, + -0.022690480574965477, + -0.010878083296120167, + -0.007174195721745491, + 0.007467837538570166, + 0.019473770633339882, + 0.025426683947443962, + 0.03868059441447258, + -0.0023441268131136894, + 0.02166273444890976, + 0.014361739158630371, + -0.038760676980018616, + -0.02200976572930813, + 0.02792263776063919, + -0.013514182530343533, + -0.003378545632585883, + 0.00524884182959795, + -0.02350466698408127, + 0.0124130267649889, + -0.056112222373485565, + -0.010898103937506676, + 0.03697213530540466, + -0.011638881638646126, + 0.0030548726208508015, + -0.024172034114599228, + 0.021062104031443596, + 0.00570265157148242, + 0.01033084187656641, + 0.007968362420797348, + -0.017124637961387634, + -0.04583476856350899, + 0.008922697976231575, + -0.0028830256778746843, + -0.01984749548137188, + -0.008742508478462696, + -0.039428044110536575 + ], + "metadata": { + "source": "Kreye_Marieke_BA_241_V2.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 17, + "has_images": true, + "image_count": 98, + "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", + "links": [], + "last_modified": "2025-05-05T23:00:23", + "_known_field_names": "frozenset({'is_continuation', 'sent_to', 'header_footer_type', 'email_message_id', 'filename', 'languages', 'detection_class_prob', 'sent_from', 'link_texts', 'cc_recipient', 'subject', 'image_mime_type', 'image_path', 'filetype', 'page_number', 'last_modified', 'signature', 'detection_origin', 'text_as_html', 'attached_to_filename', 'bcc_recipient', 'data_source', 'link_start_indexes', 'category_depth', 'emphasized_text_tags', 'parent_id', 'orig_elements', 'page_name', 'coordinates', 'url', 'link_urls', 'file_directory', 'links', 'table_as_cells', 'emphasized_text_contents', 'key_value_pairs', 'image_base64'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "Kreye_Marieke_BA_241_V2.pdf", + "detection_class_prob": 0.3422867953777313, + "parent_id": "e02392183bc6851689602ad4b9f6039f", + "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", + "id": "ce00eae5-7e07-454f-9e4f-f79ac36f92f4", + "processing_timestamp": "2025-05-05T23:15:46.977945", + "chunk_number": 49, + "total_chunks": 56, + "chunking_strategy": "hybrid", + "word_count": 164 + } +} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000050.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000050.json new file mode 100644 index 0000000000000000000000000000000000000000..f33a2e4c128d652ee70a3b30d854793d7b78c076 --- /dev/null +++ b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000050.json @@ -0,0 +1,1570 @@ +{ + "id": "61a115b2-0ff7-441a-f6d9-eb3d00000050", + "content": "Online verf\u00fcgbar unter https://www.wuerzburg.de/themen/bauen-\n59\nLiteraturverzeichnis\nplanen/stadtplanung/stadtentwicklung/stadtteilkonzepte/m_577927, zuletzt gepr\u00fcft am 10.04.2024. Revi, Aromar; Satterthwaite, David E.; Arag\u00f3n-Durand, Fernando; Corfee-Morlot, Jan; Kiunsi, Robert B.R. ; Pelling, Mark et al. (2015): Urban Areas. In: Climate Change 2014: Impacts, Adaptation, and Vulnerability. Part A: Global and Sectoral Aspects. Contribution of Working Group II to the Fifth Assessment Report of the Intergovernmental Panel on Climate Chang. Hg. v. Intergovernmental Panel on Climate Change. Online verf\u00fcgbar unter https://ar5-syr.ipcc.ch/resources/htmlpdf/WGIIAR5- Chap8_FINAL/#pf10, zuletzt gepr\u00fcft am 21.05.2024. Schwaab, Jonas; Meier, Ronny; Mussetti, Gianluca; Seneviratne, Sonia; B\u00fcrgi, Christine; Davin, Edouard L. (2021): The role of urban trees in reducing land surface temperatures in European cities. In: Nat Commun 12 (1), S. 6763. DOI: 10.1038/s41467-021-26768-w.\nSinus Markt- und Sozialforschung GmbH (Hg.) (2024): Was sind die Sinus-Milieus? Online verf\u00fcgbar unter https://www.sinus-institut.de/sinus-milieus, zuletzt gepr\u00fcft am 14.04.2024. Tipler, Paul A.; Mosca, Gene (2015): Physik f\u00fcr Wissenschaftler und Ingenieure. Unter Mitarbeit von Christoph Kommer. 7. Aufl. Berlin, Heidelberg: Springer Spektrum. United Nations (Hg.) (2016): Neue Urbane Agenda. Online verf\u00fcgbar unter https://habitat3.org/wp-content/uploads/NUA-German.pdf, zuletzt gepr\u00fcft am 11.04.2024. United Nations (Hg.) (2024): The 17 Goals.", + "embedding": [ + 0.023578213527798653, + -0.01323079876601696, + 0.014849425293505192, + -0.019973983988165855, + -0.005147494841367006, + 0.005468599032610655, + -0.024469440802931786, + 0.013945091515779495, + -0.010550562292337418, + -0.023067068308591843, + 0.018008040264248848, + 0.005655363667756319, + -0.007699944544583559, + 0.008007942698895931, + -0.021127337589859962, + -0.019056543707847595, + 0.03237253427505493, + 0.0005815915646962821, + 0.020694829523563385, + -0.022529710084199905, + -0.010150820948183537, + 0.01727408915758133, + 0.01838812232017517, + -0.008931935764849186, + -0.0005254802526906133, + 0.02789018303155899, + 0.014875637367367744, + -0.02993476390838623, + -0.007732710335403681, + -0.0068939076736569405, + 0.013931985013186932, + -0.014574193395674229, + -0.021900609135627747, + -0.012300251983106136, + 0.004626519978046417, + 0.013499476946890354, + 0.0062582530081272125, + -0.020419597625732422, + 0.014416917227208614, + -0.011173111386597157, + -0.00037230050656944513, + 0.007824454456567764, + 0.015819290652871132, + -0.013800921849906445, + -0.012391995638608932, + 0.011461449787020683, + 0.01850607991218567, + 0.012326464988291264, + -0.0027244698721915483, + 0.0028915749862790108, + 0.01971185766160488, + 0.029987188056111336, + 0.0026491086464375257, + 0.0007708136108703911, + -0.012765524908900261, + -0.003353571519255638, + -0.02791639417409897, + 0.0333423987030983, + 0.0024394080974161625, + -0.02095695585012436, + -0.0009780568070709705, + -0.016841581091284752, + -0.027418356388807297, + 0.027628056704998016, + -0.03536076843738556, + 0.001517052878625691, + -0.03494136407971382, + 0.008178324438631535, + 0.005730724893510342, + -0.020288534462451935, + 0.030799778178334236, + 0.031926918774843216, + 0.026723721995949745, + -0.02975127473473549, + 0.030721141025424004, + 0.002644193824380636, + -0.0018119444139301777, + 0.004161246586591005, + -0.009678994305431843, + -0.004305415786802769, + 0.011933275498449802, + -0.011015835218131542, + -0.03840142488479614, + 0.0365927591919899, + 0.03344724699854851, + 0.012686887755990028, + 0.01093719806522131, + 0.02175643853843212, + -0.005380131304264069, + 0.0030865310691297054, + 0.010098395869135857, + 0.021926820278167725, + -0.0026523852720856667, + 0.027470780536532402, + -0.011867744848132133, + -0.003424017922952771, + -0.015662014484405518, + -0.004076055716723204, + 0.013073522597551346, + -0.0052720047533512115, + -0.014298960566520691, + 0.009062998928129673, + -0.001073077437467873, + -0.005111452657729387, + -0.02086521126329899, + 0.00483294390141964, + -0.007077395915985107, + 0.006959439255297184, + 0.0371694341301918, + -0.00893848855048418, + -0.018375016748905182, + 0.007070842664688826, + -0.025504838675260544, + -0.027863970026373863, + 0.03525591641664505, + -0.028493070974946022, + 0.03504621610045433, + 0.0008461747784167528, + -0.002241175388917327, + -0.00966588780283928, + 0.05520368739962578, + 0.013361860997974873, + -0.0028440647292882204, + -0.011612172238528728, + 0.023027749732136726, + 0.018650248646736145, + -0.0004370128153823316, + -0.008388024754822254, + -0.018925480544567108, + -0.02686789259314537, + -0.0096134627237916, + 0.003748398507013917, + 0.025072330608963966, + 0.017824552953243256, + -0.006553144194185734, + 0.038349002599716187, + -0.013289776630699635, + 0.006599016487598419, + -0.03486272692680359, + -0.06359171122312546, + -0.0058716172352433205, + 0.019082756713032722, + -0.03997417911887169, + -0.018663354218006134, + -0.0023148981854319572, + 0.01728719472885132, + 0.006195997819304466, + 0.019856028258800507, + 0.023053962737321854, + -0.03709079697728157, + -0.004239884205162525, + -0.01963322050869465, + 0.00910231750458479, + 0.007365734316408634, + 0.01686779409646988, + -0.007673732005059719, + 0.004095715004950762, + 0.027837757021188736, + -0.022608347237110138, + -0.0014498832169920206, + 0.0199215579777956, + -0.004619966726750135, + 0.006241870112717152, + 0.003473166609182954, + 0.007038076873868704, + -0.007477137725800276, + 0.000803579343482852, + 0.011212429963052273, + 0.01180221326649189, + -0.013892666436731815, + -0.0251509677618742, + 0.029174597933888435, + -0.020511342212557793, + 0.022254478186368942, + -0.00047059767530299723, + 0.03955477848649025, + 0.0005389961297623813, + 0.020393384620547295, + -0.01828327216207981, + -0.00981005746871233, + -0.01912207528948784, + -0.0010820879833772779, + 0.014063048176467419, + 0.029043536633253098, + -0.029489150270819664, + 0.01171046867966652, + 0.02205788344144821, + 0.0005176984122954309, + 0.015609590336680412, + 0.0070511833764612675, + 0.010288436897099018, + 0.008505981415510178, + 0.014914956875145435, + -0.01982981525361538, + -0.6458778977394104, + 0.005963361356407404, + 0.030380377545952797, + -0.01769348978996277, + 0.009777291677892208, + 0.027759119868278503, + 0.019082756713032722, + 0.0024328548461198807, + -0.00910231750458479, + 0.0243383776396513, + -0.0005430918536148965, + -0.0044102659448981285, + -0.009312017820775509, + -0.013165267184376717, + -0.005920765921473503, + -0.010111501440405846, + -0.002562279347330332, + -0.00037639623042196035, + 0.03221525624394417, + -0.0007228937465697527, + 0.0025295137893408537, + 0.015544058755040169, + -0.008119345642626286, + -0.015163975767791271, + 0.015019807033240795, + 0.02157295122742653, + 0.006041998974978924, + -0.03910916671156883, + -0.005501364823430777, + 0.003243806539103389, + 0.003427294548600912, + 0.01871578022837639, + -0.003340465249493718, + 0.02410246431827545, + 0.04998738691210747, + 0.010740603320300579, + -0.013709178194403648, + 0.011382811702787876, + 0.0264878086745739, + 0.0057471077889204025, + -0.002729384694248438, + -0.007090502418577671, + -0.003088169265538454, + -0.015583377331495285, + 0.0028244052082300186, + 0.017313407734036446, + 0.045950647443532944, + -0.029069747775793076, + -0.003748398507013917, + -0.01644839160144329, + 0.006114083807915449, + -0.022726304829120636, + 0.011369705200195312, + 0.007837560959160328, + 0.023958295583724976, + 0.003682867158204317, + 0.02074725553393364, + -0.013361860997974873, + -0.016789155080914497, + 0.003702526679262519, + 0.0011861191596835852, + 0.0070249708369374275, + -0.0085387472063303, + -0.02359131909906864, + -0.018034253269433975, + 0.04854569211602211, + -0.026186365634202957, + 0.002519683912396431, + 0.009082658216357231, + -0.009285805746912956, + -0.017405152320861816, + 0.0195152647793293, + -0.00628774194046855, + -0.011160004884004593, + 0.009705206379294395, + 0.010675071738660336, + 0.028597921133041382, + -0.022346222773194313, + -0.017654171213507652, + 0.026920316740870476, + 0.008610831573605537, + -0.013696071691811085, + 0.0008170951623469591, + -0.011382811702787876, + 0.02086521126329899, + -0.03819172456860542, + -0.030275527387857437, + -0.010353968478739262, + -0.007129820995032787, + 0.014954275451600552, + 0.02495437301695347, + 0.01736583188176155, + -0.020589979365468025, + -0.014377598650753498, + -0.017510002478957176, + 0.038768403232097626, + -0.007090502418577671, + 0.03211040794849396, + -0.0054915351793169975, + -0.03619956970214844, + -0.015072232112288475, + 0.0018053912790492177, + 0.014941168949007988, + -0.006274635903537273, + 0.028178520500659943, + 0.0050688572227954865, + -0.029043536633253098, + 0.0041448636911809444, + 0.03087841533124447, + -0.003211040748283267, + -0.007116714958101511, + -0.0029210641514509916, + -0.021192869171500206, + -0.004590477794408798, + -0.00284897955134511, + -0.013761603273451328, + 0.02574075013399124, + -0.02791639417409897, + -0.005570172797888517, + -0.0001188781316159293, + 0.004964007064700127, + -0.007699944544583559, + 0.015216400846838951, + -0.021704014390707016, + -0.0028899365570396185, + 0.01850607991218567, + -0.001049322192557156, + 0.00049803894944489, + -0.02781154401600361, + -0.023342300206422806, + 0.011009282432496548, + 0.009259592741727829, + 0.043276965618133545, + 0.004511839710175991, + 0.02616015262901783, + 0.014587298966944218, + 0.019292457029223442, + -0.015911035239696503, + 0.0019151564920321107, + -0.007831007242202759, + -0.01685468666255474, + -0.011684256605803967, + 0.0048853689804673195, + -0.03155994415283203, + -0.015517845749855042, + -0.03024931438267231, + -0.0021510696969926357, + 0.005937148816883564, + -0.01769348978996277, + 0.015163975767791271, + -0.03300163522362709, + -0.01779833994805813, + -0.008171770721673965, + 0.016094522550702095, + -0.006310678087174892, + -0.004482350777834654, + 0.0019167946884408593, + -0.014652830548584461, + -0.01635664887726307, + -0.006153402384370565, + 0.009357890114188194, + 0.015308145433664322, + -0.02094385027885437, + -0.027418356388807297, + 0.008545299991965294, + 0.019895346835255623, + -0.0040924386121332645, + 0.030275527387857437, + -0.013433946296572685, + -0.030406590551137924, + -0.007798241917043924, + -0.015347464010119438, + 0.004226778168231249, + 0.018165316432714462, + 0.008525640703737736, + -0.019869133830070496, + -0.02512475475668907, + -0.01235922984778881, + -0.02668440341949463, + -0.005045921076089144, + 0.025727644562721252, + 0.007110161706805229, + -0.022228265181183815, + -0.008866404183208942, + 0.008669810369610786, + 0.025517944246530533, + 0.011133791878819466, + 0.012745865620672703, + -0.012890035286545753, + 0.003669760888442397, + 0.025898026302456856, + 0.0331064835190773, + -0.01779833994805813, + 0.018755098804831505, + -0.0035550808534026146, + 0.013322542421519756, + -0.0169595368206501, + 0.0014679043088108301, + -0.025308243930339813, + -0.0029243407770991325, + 0.018243953585624695, + 0.0035288683138787746, + 0.01820463500916958, + -0.007844113744795322, + 0.017208557575941086, + -0.028964897617697716, + 0.0008715682197362185, + -0.009187508374452591, + 0.015190188772976398, + 0.006150125991553068, + 0.04710400104522705, + -0.014403811655938625, + -0.046658389270305634, + 0.002832596655935049, + -0.014823212288320065, + 0.049830108880996704, + 0.0015784886199980974, + 0.001450702315196395, + -0.017339620739221573, + -0.004059672821313143, + 0.018545398488640785, + -0.012339570559561253, + 0.023696169257164, + -0.0015694780740886927, + -0.03737913444638252, + 0.011218982748687267, + -0.011690809391438961, + 0.026514021679759026, + 0.010471925139427185, + -0.007713051047176123, + -0.005183537025004625, + -0.005409620702266693, + -0.006572803948074579, + 0.004692051559686661, + 0.007405053358525038, + 0.021127337589859962, + 0.008388024754822254, + -0.013309435918927193, + 0.007673732005059719, + 0.017025068402290344, + 0.017025068402290344, + 0.026094621047377586, + 0.007339521776884794, + -0.013604328036308289, + 0.04393228143453598, + -0.0045937541872262955, + 0.0363568440079689, + 0.02912217378616333, + -0.00940376240760088, + 0.006992205046117306, + -0.02267387881875038, + 0.009148189797997475, + 0.004393883515149355, + -0.010720944032073021, + 0.017431363463401794, + -0.01235922984778881, + 0.018139103427529335, + -0.0015948715154081583, + 0.016382860019803047, + 0.015268825925886631, + 0.018466761335730553, + 0.008283174596726894, + 0.015478527173399925, + -0.0024787269067019224, + -0.0026376405730843544, + 0.0038303129840642214, + -0.022516604512929916, + -0.024901948869228363, + 0.006926673464477062, + -0.0017627958441153169, + -0.002001985674723983, + -0.0192269254475832, + -0.020878318697214127, + 0.002513130893930793, + 0.014770787209272385, + 0.004610137082636356, + -0.002036389661952853, + 0.012129870243370533, + 0.015701333060860634, + 0.0033683162182569504, + -0.005026261787861586, + -0.020472023636102676, + -0.020603086799383163, + 0.04201875999569893, + -0.00796862319111824, + -0.019240031018853188, + 0.005049197934567928, + 0.0010362159227952361, + -0.02636985294520855, + -0.01144834328442812, + -0.010897879488766193, + 0.013040757738053799, + -0.028230946511030197, + 0.004996772389858961, + -0.0034076350275427103, + -0.02208409644663334, + 0.022752517834305763, + -0.02635674737393856, + -0.014561086893081665, + 0.005452216137200594, + -0.01604209654033184, + 0.001421213150024414, + 0.008859851397573948, + -0.005081963259726763, + 0.03685488551855087, + -0.01082579419016838, + -0.012326464988291264, + 0.007411606144160032, + -0.001079630572348833, + -0.025177180767059326, + 0.0009682271047495306, + -0.015714440494775772, + -0.00797517690807581, + 0.014823212288320065, + -0.01697264425456524, + 0.017221663147211075, + -0.00236404687166214, + -0.024285953491926193, + 0.03176964446902275, + -0.013735390268266201, + 0.002383706159889698, + -0.033971499651670456, + 0.000883036176674068, + 0.013918878510594368, + 0.04487593099474907, + 0.0041448636911809444, + 0.009338230825960636, + 0.007241224404424429, + 0.015570270828902721, + -0.006939779967069626, + -0.016173159703612328, + -0.028466859832406044, + -0.01840122975409031, + -0.009836269542574883, + -0.0054915351793169975, + -0.005678299814462662, + 0.009986991994082928, + -0.024194208905100822, + 0.025413094088435173, + -1.140400672738906e-05, + 0.01564890891313553, + -0.017129918560385704, + -0.0026769593823701143, + 0.012293699197471142, + -0.012837610207498074, + -0.016094522550702095, + -0.0007646700250916183, + 0.04616034775972366, + 0.025884920731186867, + -0.009436528198421001, + 0.03522970527410507, + 0.025714538991451263, + 0.014862531796097755, + -0.015609590336680412, + 0.019554583355784416, + 0.01575375907123089, + 0.008761554025113583, + 0.0376412607729435, + -0.02208409644663334, + 0.003427294548600912, + 0.021743332967162132, + -0.020878318697214127, + 0.03237253427505493, + 0.012293699197471142, + 0.02432527206838131, + 0.03507242724299431, + -0.002293600467965007, + 0.004724816884845495, + -0.0013098097406327724, + -0.021323932334780693, + 0.0007622126140631735, + 0.02342093735933304, + 0.005734001286327839, + -0.02013126015663147, + 0.006848035845905542, + -0.015714440494775772, + -0.0259635578840971, + -0.017536213621497154, + 0.0007986644632183015, + -0.003104552160948515, + 0.020970061421394348, + -0.011055154725909233, + -0.013774709776043892, + -0.021297719329595566, + -0.023552000522613525, + -0.021415675058960915, + -0.011474555358290672, + -0.021389463916420937, + -0.015806185081601143, + -0.018663354218006134, + -0.01171046867966652, + -0.003143870970234275, + -0.030616290867328644, + 0.005481705069541931, + 0.04886024445295334, + -0.01910896971821785, + -0.007339521776884794, + 0.012044679373502731, + 0.014181004837155342, + -0.005507917609065771, + 0.021743332967162132, + -0.01820463500916958, + 0.01001975778490305, + 0.011834979057312012, + -0.023958295583724976, + -0.007116714958101511, + 0.0093513373285532, + -0.022254478186368942, + 0.0002891574986279011, + 0.0032290618401020765, + -0.02135014347732067, + -0.0036632076371461153, + 0.0070970552042126656, + 0.018440548330545425, + -0.00017263439076486975, + -0.01686779409646988, + 0.024548077955842018, + 0.0024656206369400024, + -0.014967381954193115, + 0.0033945287577807903, + 0.009737972170114517, + 0.014338280074298382, + 0.00864359736442566, + -0.02196614071726799, + 0.012798290699720383, + 0.01799493469297886, + -0.004036737140268087, + 0.0001046967227011919, + 0.001856178161688149, + 0.019253138452768326, + -0.006605569738894701, + -0.0011361513752490282, + -0.01262790895998478, + -0.0052359625697135925, + 0.025399986654520035, + -0.006304124835878611, + 0.019659433513879776, + -0.0005504641449078918, + -0.002958744764328003, + 0.018650248646736145, + 0.009174401871860027, + 0.015242613852024078, + 0.026291215792298317, + -0.01287037506699562, + -0.008394577540457249, + -0.0400790311396122, + 0.02699895389378071, + 0.014600405469536781, + 0.015190188772976398, + 0.02238554134964943, + -0.007903092540800571, + 0.013211139477789402, + -0.018951693549752235, + 0.0028080223128199577, + -0.0018414335791021585, + 0.019593901932239532, + 0.035622891038656235, + 0.0002369371213717386, + -0.023460255935788155, + -0.02441701665520668, + 0.006507272366434336, + -0.007640966214239597, + -0.03688109666109085, + 0.008545299991965294, + -0.018676461651921272, + 0.013433946296572685, + 0.013152160681784153, + 0.02157295122742653, + -0.004420096054673195, + -0.02707759290933609, + -0.01605520397424698, + 0.0041546933352947235, + -0.006730079185217619, + 0.01604209654033184, + -0.016736730933189392, + -0.0026474702171981335, + 0.0009141636546701193, + 0.022922899574041367, + -0.020458916202187538, + -0.03688109666109085, + 0.0017857318744063377, + -0.024351485073566437, + 0.008597725071012974, + -0.0015055849216878414, + 0.013184926472604275, + -0.0009911630768328905, + 0.023145705461502075, + 0.004115374758839607, + -0.000853547069709748, + -0.003463336732238531, + -0.008315940387547016, + -0.004724816884845495, + -0.02912217378616333, + 0.030721141025424004, + 0.010386734269559383, + 0.017772126942873, + 0.01625179871916771, + 0.009030233137309551, + 0.011376258917152882, + 0.03095705434679985, + -0.015858609229326248, + -0.02453497238457203, + -0.01972496509552002, + -0.023853445425629616, + -0.010163926519453526, + 0.002188750309869647, + 0.00475430628284812, + 0.0030259143095463514, + -0.02739214338362217, + -0.012477186508476734, + 0.045636098831892014, + 0.00050131551688537, + 0.003922056872397661, + -0.012274038977921009, + 0.011828425340354443, + -0.01726098172366619, + 0.04427304491400719, + -0.00297512742690742, + -0.001859454670920968, + -0.008964701555669308, + -0.009017126634716988, + -0.023683063685894012, + -0.013040757738053799, + 0.03528212755918503, + -0.011081366799771786, + -0.016487712040543556, + 0.019489051774144173, + 0.0026278109289705753, + 0.003692696802318096, + 0.02186128869652748, + 0.010661966167390347, + -0.023224344477057457, + 0.013093182817101479, + -0.006979098543524742, + 0.0062484233640134335, + -0.015989672392606735, + -0.006523655261844397, + -0.01613384112715721, + 0.02985612489283085, + -0.012333017773926258, + 0.0008420790545642376, + 0.033683162182569504, + -0.0157406534999609, + 0.01766727678477764, + 0.025308243930339813, + 0.0041546933352947235, + 0.01206433866173029, + 0.015871714800596237, + 0.047995228320360184, + 0.010458818636834621, + -0.003673037514090538, + -0.01745757646858692, + -0.025727644562721252, + -0.01093064434826374, + -0.02494126744568348, + 0.026304321363568306, + 0.015137763693928719, + 0.0032700190786272287, + -0.029384300112724304, + 0.002208409598097205, + 0.012411655858159065, + -0.006697313394397497, + -0.0075623285956680775, + 0.056461893022060394, + 0.04547882080078125, + 0.009973885491490364, + -0.0005222036852501333, + -0.01098962314426899, + -0.01676294393837452, + 0.006848035845905542, + -0.003790993941947818, + -0.024181103333830833, + -0.00796862319111824, + -0.0024082805030047894, + 0.00821764301508665, + 0.035491831600666046, + 0.003899120958521962, + 0.016828475520014763, + -0.0067693982273340225, + -0.021205974742770195, + 0.012424761429429054, + -0.02351268194615841, + -0.011494215577840805, + 0.0021658141631633043, + 0.012287145480513573, + 0.03342103585600853, + 0.0044004363007843494, + -0.01032120268791914, + 0.014705255627632141, + -0.02032785303890705, + -0.020314747467637062, + 0.00595025485381484, + 0.0024557907599955797, + 0.03106190450489521, + -0.0022460902109742165, + -0.007391946855932474, + -0.023329194635152817, + -0.0005471875774674118, + 0.004354564473032951, + 0.019161393865942955, + 0.003761504776775837, + -0.015976566821336746, + -0.015530952252447605, + -0.013486371375620365, + 0.012831056490540504, + 0.01758863963186741, + -0.00634016701951623, + -0.012195401825010777, + -0.0031962960492819548, + -0.013460158370435238, + -0.013447051867842674, + -0.004256267100572586, + 0.02217584103345871, + -0.024783991277217865, + 0.009482399560511112, + 0.020406492054462433, + -0.02412867732346058, + 0.03258223459124565, + 0.007038076873868704, + -0.012804844416677952, + -0.015478527173399925, + 0.016723623499274254, + -0.034888941794633865, + 0.036828670650720596, + 0.030983267351984978, + 0.01861093007028103, + -0.013787815347313881, + 0.00490175187587738, + -0.010852007195353508, + -0.015137763693928719, + 0.011317280121147633, + -0.00197904952801764, + -0.034181199967861176, + 0.01921381987631321, + -0.003981035202741623, + 0.007110161706805229, + -0.02052444778382778, + 0.004272649995982647, + 0.015793077647686005, + 0.0031487857922911644, + 0.0037582283839583397, + -0.014993594028055668, + -0.004741199780255556, + 0.04967283457517624, + -0.0065629743039608, + 0.00546532217413187, + 0.0433293916285038, + -0.030275527387857437, + 0.030406590551137924, + 0.0104260528460145, + 0.022005459293723106, + -0.011173111386597157, + -0.01036707405000925, + -0.020930742844939232, + -0.00538668455556035, + 0.010760262608528137, + -0.021088019013404846, + -0.016317330300807953, + -0.019344883039593697, + -0.016369754448533058, + -0.010137714445590973, + 0.011664597317576408, + 0.013447051867842674, + 0.00014355481835082173, + 0.0085387472063303, + 0.02197924628853798, + -0.007287096697837114, + -0.0024525143671780825, + -0.0033814224880188704, + -0.02880762331187725, + -0.014967381954193115, + 0.009161295369267464, + -0.050118446350097656, + 0.0008162760641425848, + 0.00813245214521885, + 0.03737913444638252, + 0.005095069762319326, + -0.03779853507876396, + -0.003078339621424675, + 0.005914212670177221, + -0.03410256281495094, + -0.02872898429632187, + -0.0008879510569386184, + -0.0060288929380476475, + 0.003430571174249053, + 0.016684304922819138, + 0.002735937712714076, + 0.029069747775793076, + -0.002752320608124137, + 0.02310638688504696, + -0.026946529746055603, + -0.020891424268484116, + -0.005032815039157867, + -0.014993594028055668, + 0.040314942598342896, + 0.013486371375620365, + -0.0314813069999218, + -0.003695973427966237, + 0.02216273359954357, + -0.005278558004647493, + -0.012850715778768063, + 0.01768038421869278, + -0.010150820948183537, + -0.012038126587867737, + 0.0007658987306058407, + 0.018165316432714462, + -0.004023630637675524, + 0.0003221280057914555, + 0.015085338614881039, + -0.02290979214012623, + 0.013394626788794994, + 0.01847986690700054, + 0.002401727484539151, + -0.008794319815933704, + -0.01625179871916771, + -0.005766767077147961, + -0.02022300288081169, + -0.0022559198550879955, + 0.0215467382222414, + -0.025688325986266136, + -0.004846050404012203, + -0.024403909221291542, + 0.02217584103345871, + -0.023853445425629616, + -0.018873056396842003, + 0.006880801636725664, + -0.003427294548600912, + -0.017300300300121307, + -0.02146810106933117, + 0.013840241357684135, + -0.022936005145311356, + 0.014469342306256294, + 0.022044777870178223, + 0.00842734333127737, + 0.055151261389255524, + -0.020891424268484116, + -0.0035812933929264545, + -0.009004020132124424, + 0.013551902957260609, + -0.016894005239009857, + -0.01768038421869278, + -0.010661966167390347, + 0.009547931142151356, + 0.017247876152396202, + -0.008768106810748577, + 0.005376854911446571, + 0.0037942705675959587, + -0.011671150103211403, + 0.0123133584856987, + -0.013696071691811085, + 0.008466662839055061, + -0.00526545150205493, + -0.02064240537583828, + 0.011409024707973003, + -0.020380279049277306, + -0.0008076750673353672, + 0.0017513278871774673, + -0.004518392961472273, + -0.008676363155245781, + 0.02351268194615841, + 0.1915615200996399, + -0.0009076105197891593, + 0.0125754838809371, + 0.021520525217056274, + -0.02799503318965435, + 0.0003981035260949284, + 0.041625574231147766, + -0.004282479640096426, + -0.012267486192286015, + 0.021900609135627747, + -0.025937344878911972, + 0.013211139477789402, + 0.010504689998924732, + 0.006497442722320557, + 0.004167799837887287, + -0.021101124584674835, + -0.030196888372302055, + -0.016697412356734276, + -0.017352726310491562, + 0.014587298966944218, + 0.0049803894944489, + -0.017942508682608604, + -0.007215011864900589, + -0.014823212288320065, + 0.02423352748155594, + -0.002898128004744649, + 0.005380131304264069, + -0.011612172238528728, + 0.014770787209272385, + 0.000780233764089644, + 0.0066383350640535355, + 0.017916297540068626, + 0.0009256316698156297, + -0.0005803628591820598, + 0.0011877574725076556, + -0.012424761429429054, + 0.03129781782627106, + 0.007110161706805229, + 0.028152307495474815, + 0.014705255627632141, + -0.009521719068288803, + -0.0076344129629433155, + -0.008230749517679214, + -0.02401072159409523, + -0.010858559980988503, + 0.029594000428915024, + -0.019357988610863686, + 0.0046396260149776936, + -0.014272748492658138, + 0.0006897184648551047, + -0.014665937051177025, + 0.014194110408425331, + 0.022975323721766472, + 0.03997417911887169, + 0.00024553813273087144, + -0.011350045911967754, + 0.02062929794192314, + 0.006599016487598419, + -0.011055154725909233, + -0.005347365979105234, + -0.03342103585600853, + 0.028545496985316277, + -0.0027244698721915483, + 0.015583377331495285, + -0.03502000495791435, + -0.006913567427545786, + -0.01745757646858692, + 0.01220850832760334, + -0.0036238888278603554, + -0.0006819365662522614, + -0.0012942460598424077, + -0.02574075013399124, + -0.01861093007028103, + 0.02471845969557762, + -0.00027052199584431946, + -0.013735390268266201, + 0.008663256652653217, + 0.006887354888021946, + 0.009659335017204285, + 0.024783991277217865, + -0.012745865620672703, + -0.0024623440112918615, + 0.005865063983947039, + 0.0015956906136125326, + 0.013682965189218521, + -0.0592404268682003, + 0.01736583188176155, + 0.0038041002117097378, + -0.0023361959028989077, + -0.020668616518378258, + -0.024587398394942284, + -0.010720944032073021, + 0.010157373733818531, + -0.012608249671757221, + 0.023224344477057457, + -0.006051828619092703, + 0.023525787517428398, + 0.014128578826785088, + -0.012621356174349785, + 0.012641015462577343, + -0.005072133615612984, + 0.051664989441633224, + 0.03538697957992554, + -0.007450925186276436, + -0.006648165173828602, + -0.004800178110599518, + -0.0017513278871774673, + 0.020707936957478523, + 0.003725462593138218, + -0.009698653593659401, + 0.007057736627757549, + -0.03221525624394417, + -0.011723575182259083, + -0.013073522597551346, + 0.014443130232393742, + 0.026802361011505127, + 0.0007446010131388903, + -0.02165158838033676, + -0.015203295275568962, + -0.012778631411492825, + -0.0019004119094461203, + 0.0003825398162007332, + -0.0038401426281780005, + 0.013171819970011711, + 0.004171076230704784, + -0.02483641728758812, + -0.04516427218914032, + 0.005367025267332792, + -0.005629151128232479, + -0.016907112672924995, + 0.031192967668175697, + -0.01328322384506464, + -0.0033683162182569504, + 0.006094424054026604, + -0.006946333218365908, + 0.009279252029955387, + 0.0037582283839583397, + -0.032241471111774445, + 0.015478527173399925, + -0.0017546043964102864, + 0.010596434585750103, + -0.025203393772244453, + 0.001673509250395, + -0.013722284696996212, + -0.01664498634636402, + -0.004541329108178616, + 0.009069551713764668, + -0.013224245049059391, + -0.008224195800721645, + -0.009128530509769917, + -0.00843389704823494, + -0.008571512997150421, + 0.006399145349860191, + -0.018375016748905182, + 0.024050040170550346, + 0.004669115412980318, + -0.01211676374077797, + -0.021821970120072365, + 0.004131757654249668, + 0.007300202734768391, + -0.018008040264248848, + -0.0007581168902106583, + 0.0073067559860646725, + -0.01564890891313553, + -0.020170578733086586, + 0.00595025485381484, + -0.16629259288311005, + 0.00996733270585537, + 0.018938587978482246, + -0.04351287707686424, + 0.010026310570538044, + 0.013682965189218521, + 0.007287096697837114, + -0.013145607896149158, + -0.011382811702787876, + -0.005586555693298578, + 0.02778533287346363, + -0.0027736183255910873, + -0.004000694490969181, + -0.0016112544108182192, + 3.8294936530292034e-05, + -0.009128530509769917, + -0.0011607257183641195, + 0.033866651356220245, + 0.016068309545516968, + 0.004282479640096426, + -0.003410911653190851, + -0.02484952285885811, + -0.0009936204878613353, + -0.008748447522521019, + 0.00048493267968297005, + -0.003171721938997507, + -0.008879510685801506, + 0.021835077553987503, + 0.004161246586591005, + -0.021101124584674835, + -0.008197983726859093, + -0.011972595006227493, + 0.029305661097168922, + -0.01817842200398445, + -0.016186267137527466, + -0.012994885444641113, + 0.012536165304481983, + -0.008158665150403976, + -0.030170677229762077, + 0.034076351672410965, + 0.015570270828902721, + 0.007365734316408634, + -0.009338230825960636, + 0.007785135414451361, + -0.038584914058446884, + -0.009325124323368073, + 0.01614694856107235, + -0.008905722759664059, + -0.0213763564825058, + 0.003217593766748905, + -0.017916297540068626, + -0.01697264425456524, + -0.019947770982980728, + 0.012287145480513573, + 0.009633122012019157, + 0.023866550996899605, + -0.0015858609694987535, + 0.008447002619504929, + 0.011251748539507389, + -0.013348755426704884, + -0.011782553978264332, + -0.0030996373388916254, + 0.005799532867968082, + 0.006762844976037741, + 0.01726098172366619, + -0.03166479244828224, + 0.006789057515561581, + 0.006402422208338976, + -0.004868986085057259, + -0.004744476638734341, + -0.013486371375620365, + -0.01160561852157116, + 0.03208419308066368, + -0.005367025267332792, + -0.0065629743039608, + 0.004839497152715921, + -0.0034338475670665503, + 0.015373677015304565, + 0.006775951478630304, + -0.0037942705675959587, + -0.012110210955142975, + 0.04131102189421654, + -0.022451072931289673, + 0.0157406534999609, + -0.007077395915985107, + 0.0010804496705532074, + -0.021415675058960915, + -0.004836220759898424, + 0.007169140037149191, + -0.0008519087568856776, + -8.908180461730808e-05, + -0.019672539085149765, + -0.03389286249876022, + -0.010013204999268055, + 0.010694731958210468, + -2.8209238735144027e-05, + 0.020078834146261215, + -0.008158665150403976, + -0.011717022396624088, + -0.023840339854359627, + 0.002293600467965007, + -0.02791639417409897, + -0.026514021679759026, + -0.01058332808315754, + 0.015766864642500877, + 0.02370927669107914, + -0.03321133553981781, + 0.004403713159263134, + 0.027732906863093376, + -0.0013089906424283981, + -0.025085436180233955, + -0.022044777870178223, + 0.0021133890841156244, + -0.004941070917993784, + -0.011310727335512638, + -0.009036785922944546, + 0.02309328131377697, + -0.03557046875357628, + -0.0022559198550879955, + -0.022149628028273582, + 0.020472023636102676, + 0.006572803948074579, + -0.020904529839754105, + 0.01868956722319126, + 0.008204536512494087, + -0.015779972076416016, + -0.07030213624238968, + 0.0019397307187318802, + 0.018728885799646378, + 0.028676560148596764, + -0.009836269542574883, + 0.020603086799383163, + -0.009095764718949795, + 0.00929235853254795, + -0.0068939076736569405, + 0.0207341481000185, + -0.022726304829120636, + -0.016212478280067444, + 0.0010009928373619914, + 0.0004902571090497077, + 0.017654171213507652, + -0.023630637675523758, + -0.015465420670807362, + -0.014272748492658138, + -0.039816904813051224, + 0.026317426934838295, + 0.014849425293505192, + -0.0170774944126606, + 0.0045577120035886765, + -0.012333017773926258, + -0.016422180458903313, + -0.011861191131174564, + -0.03491515293717384, + 0.0038434192538261414, + 0.01082579419016838, + 0.007208458613604307, + 0.001254927134141326, + -0.025282030925154686, + 0.014547980390489101, + -0.030223101377487183, + 0.02022300288081169, + -0.0030324675608426332, + -0.0027015337254852057, + -0.02349957637488842, + 0.006232040468603373, + -0.030223101377487183, + -0.01920071244239807, + 0.00529166404157877, + 0.031822070479393005, + -0.02872898429632187, + -0.003140594344586134, + -0.009416868910193443, + -0.01891237497329712, + -0.004816561006009579, + -0.0063565499149262905, + -0.012031572870910168, + -0.017352726310491562, + -0.020393384620547295, + 0.013224245049059391, + -0.017025068402290344, + 0.011579406447708607, + 0.0003393299994058907, + -0.005786426365375519, + 0.0013761603040620685, + -0.014272748492658138, + 0.007437818683683872, + 0.002765426877886057, + 0.0003354390792082995, + -0.02962021343410015, + 0.04254301264882088, + 0.028597921133041382, + -0.009384103119373322, + -0.008296281099319458, + -2.7006122763850726e-05, + 0.0051147290505468845, + -0.032136619091033936, + -0.03465302661061287, + 0.0025721092242747545, + 0.002839149907231331, + -0.01313905417919159, + -0.01736583188176155, + 0.00017509183089714497, + -0.02228069119155407, + -0.013368414714932442, + 0.020406492054462433, + -0.009488953277468681, + -0.01616005413234234, + -0.026946529746055603, + 0.02768048271536827, + -0.001457255450077355, + 0.009200614877045155, + 0.01271965354681015, + -0.002832596655935049, + -0.006523655261844397, + 0.017759021371603012, + -0.027418356388807297, + 0.03475787863135338, + -0.0008871319005265832, + 0.009875588119029999, + -0.0021543463226407766, + 0.00944963376969099, + 0.015544058755040169, + -0.0010419499594718218, + -0.004878816194832325, + 0.001607158686965704, + 0.026514021679759026, + -0.051560141146183014, + -0.008709128946065903, + -0.06962060928344727, + 0.01685468666255474, + 0.021821970120072365, + -0.008086579851806164, + -0.04076055809855461, + 0.010006651282310486, + 0.001215608324855566, + 0.013722284696996212, + 0.004855880048125982, + 0.01697264425456524, + -0.005711065139621496, + 0.025989770889282227, + 0.0011680979514494538, + -0.01328322384506464, + -0.021481206640601158, + -0.002170728985220194, + 0.009620015509426594, + 0.011277961544692516, + 0.019161393865942955, + -0.01332909520715475, + 0.004135034047067165, + 0.008676363155245781, + -0.010458818636834621, + 0.005209749564528465, + -0.029698850587010384, + -0.007234671153128147, + -0.016081416979432106, + -0.0002260834735352546, + 0.003414188278838992, + 0.0015858609694987535, + -0.0024099189322441816, + -0.019135180860757828, + -0.0026917040813714266, + 0.018466761335730553, + -0.005851957947015762, + -0.024076253175735474, + 0.025478625670075417, + 0.01909586228430271, + 0.00847976841032505, + 0.045426398515701294, + -0.024901948869228363, + -0.015321251936256886, + -0.0013794369297102094, + -0.027234867215156555, + -0.001766072353348136, + 0.006907014176249504, + 0.01941041275858879, + 0.013669858686625957, + 0.019069649279117584, + -0.013669858686625957, + 0.02463982254266739, + 0.007156033534556627, + -0.017129918560385704, + -0.0230015367269516, + 0.015871714800596237, + -0.02431216649711132, + 0.004479074385017157, + 0.025780070573091507, + 0.006621952168643475, + -0.014259641990065575, + 0.036645181477069855, + 0.020157471299171448, + 0.012123317457735538, + 0.008532194420695305, + 0.017221663147211075, + -0.007621306926012039, + -0.020576873794198036, + -0.000262330548139289, + 0.008964701555669308, + -0.018663354218006134, + -0.023630637675523758, + -0.015452314168214798, + 0.0032094025518745184, + 0.03491515293717384, + -0.01838812232017517, + -0.015426102094352245, + 0.017247876152396202, + 0.010602987371385098, + -0.005511194467544556, + 0.022306904196739197, + 0.031035691499710083, + 0.012745865620672703, + -0.01593724638223648, + 0.005714341998100281, + 0.01758863963186741, + -0.00297512742690742, + -0.011454896070063114, + -0.014862531796097755, + -0.00290140463039279, + 0.01665809378027916, + 0.002293600467965007, + -0.0016718709375709295, + 0.0012303529074415565, + -0.019895346835255623, + 0.001766072353348136, + 0.012123317457735538, + -0.005000049248337746, + -0.009108870290219784, + 0.002237898763269186, + 0.026749935001134872, + 0.006304124835878611, + 0.0036468247417360544, + 0.0032716572750359774, + -0.013368414714932442, + -0.02749699354171753, + 0.0007499254425056279, + -0.005658640060573816, + -0.014167898334562778, + -0.012588590383529663, + 0.02504611760377884, + -0.016841581091284752, + 0.041127532720565796, + 0.008872957900166512, + -0.011153452098369598, + -0.005946978460997343, + 0.04152072221040726, + -0.014823212288320065, + -0.0002152298402506858, + -0.03567531704902649, + 0.002522960538044572, + 0.008532194420695305, + 0.012745865620672703, + 0.00884019210934639, + -0.00280966074205935, + 0.007647519465535879, + 0.013709178194403648, + -0.0009158019092865288, + -0.009246486239135265, + 0.007005311548709869, + -0.021074911579489708, + 0.00047919867211021483, + -0.014836318790912628, + -0.025282030925154686, + -0.009482399560511112, + -0.018951693549752235, + 0.005550513043999672, + 0.015766864642500877, + 0.0003469070652499795, + 0.011048601008951664, + 0.08755000680685043, + 0.02441701665520668, + -0.013394626788794994, + -0.01031464897096157, + -0.02044581063091755, + 0.006471230182796717, + -0.004003971349447966, + 0.016395967453718185, + 0.019174501299858093, + -0.05787736922502518, + -0.0030504886526614428, + -0.008820531889796257, + 0.01694643124938011, + -0.03538697957992554, + -0.030380377545952797, + 0.0010042693465948105, + -0.005678299814462662, + 0.01787697710096836, + -0.008958148770034313, + 0.028362009674310684, + 0.0207341481000185, + -0.0009903439786285162, + 0.009004020132124424, + 0.03952856734395027, + -0.04044600576162338, + -0.01808667927980423, + 0.01654013618826866, + -0.013433946296572685, + -0.0036533779930323362, + -0.012883481569588184, + -0.011166557669639587, + 0.0006217295886017382, + -0.05934527516365051, + -0.02820473350584507, + 0.021179761737585068, + -0.012031572870910168, + -0.002282132627442479, + -0.019384201616048813, + 0.018951693549752235, + 0.006887354888021946, + 0.015465420670807362, + 0.017523108050227165, + -0.027444569393992424, + -0.02205788344144821, + -0.019751176238059998, + -0.018859948962926865, + -0.008853297680616379, + -0.027837757021188736, + -0.04382742941379547 + ], + "metadata": { + "source": "Kreye_Marieke_BA_241_V2.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 17, + "has_images": true, + "image_count": 98, + "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", + "links": [], + "last_modified": "2025-05-05T23:00:23", + "_known_field_names": "frozenset({'is_continuation', 'sent_to', 'header_footer_type', 'email_message_id', 'filename', 'languages', 'detection_class_prob', 'sent_from', 'link_texts', 'cc_recipient', 'subject', 'image_mime_type', 'image_path', 'filetype', 'page_number', 'last_modified', 'signature', 'detection_origin', 'text_as_html', 'attached_to_filename', 'bcc_recipient', 'data_source', 'link_start_indexes', 'category_depth', 'emphasized_text_tags', 'parent_id', 'orig_elements', 'page_name', 'coordinates', 'url', 'link_urls', 'file_directory', 'links', 'table_as_cells', 'emphasized_text_contents', 'key_value_pairs', 'image_base64'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "Kreye_Marieke_BA_241_V2.pdf", + "detection_class_prob": 0.3422867953777313, + "parent_id": "e02392183bc6851689602ad4b9f6039f", + "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", + "id": "ce00eae5-7e07-454f-9e4f-f79ac36f92f4", + "processing_timestamp": "2025-05-05T23:15:46.977945", + "chunk_number": 50, + "total_chunks": 56, + "chunking_strategy": "hybrid", + "word_count": 177 + } +} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000051.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000051.json new file mode 100644 index 0000000000000000000000000000000000000000..37346f52974b5b7baa170980d3bf54c0077ccac7 --- /dev/null +++ b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000051.json @@ -0,0 +1,1570 @@ +{ + "id": "61a115b2-0ff7-441a-f6d9-eb3d00000051", + "content": "United Nations (Hg.) (2024): The 17 Goals. Online verf\u00fcgbar unter https://sdgs.un.org/goals, zuletzt aktualisiert am 24.03.2024. Wolf K\u00e4ltetechnik GmbH (Hg.) (2024): Was sagt der COP Wert bei einer Klimaanlage aus? Online verf\u00fcgbar unter https://www.kaeltewolf.de/was-sagt-der-cop-wert-bei- einer-klimaanlage-aus.html, zuletzt aktualisiert am 22.05.2024, zuletzt gepr\u00fcft am 15.06.2024. World Commission on Environment and Development (1987): Our Common Future: Report of the World Commission on Environment and Development. Online verf\u00fcgbar unter https://sustainabledevelopment.un.org/content/documents/5987our-common- future.pdf, zuletzt gepr\u00fcft am 03.04.2024. Zhang, Jiahua; Bai, Yun; Yan, Hao; Guo, Huadong; Yang, Shanshan; Wang, Jinwen (2020): Linking observation, modelling and satellite-based estimation of global land evapotranspiration. In: Big Earth Data 4 (2), S. 94\u2013127. DOI: 10.1080/20964471.2020.1743612. 60\nAnhangsverzeichnis\n\n## Anhang\n\n\n| 1 | Prozentuale | Verteilung | der | Sinus-Milieus | in | den | vier | Quartiersarchetypen | Ein- | und | Zweifamilienhausquartier, | Zeilen- | und | Reihenbebauung, | Blockrandbebauung | und | neues | Innenstadtquartier | (Datengrundlage | Drees | & | Sommer) | .............................................. | 63 | 2 | Darstellung | des | Modalsplits | nach | verschiedenen | Kriterien | .................................. | 64 | 2.1 | Modal | Split | des | konservativ-gehobenen | (oben | links), | des | prek\u00e4ren | (unten | links) | und | des | neo-\u00f6kologischen | (oben | rechts) | Milieus | ..................................................... | 64 | 2.2 | Darstellung | des | Modal | Splits | in | den | vier | Quartiersarchetypen | Ein- | und | Zweifamilienhausquartier, | Zeilen- | und | Reihenbebauung, | Blockrandbebauung | und | neues | Innenstadtquartier | (Legende | siehe | oben) | ..................................................... | 64 | 2.3 | Lagespezifischer | Modal | Split | in | den | Quartiersarchetypen | Ein- | und | Zweifamilienhausquartier, | Zeilen- | und | Reihenbebauung, | Blockrandbebauung | und | neues | Innenstadtquartier | ......................................................................................... | 65 | 3 | Fl\u00e4chenbilanz | Gromb\u00fchl | (eigene | Darstellung, | Datengrundlage | Stadt | W\u00fcrzburg) | . | 65 | 4 | Zuordnung | der | Stra\u00dfenquerschnitte | zu | den | Quartiersarchetypen | in | den | Fallstudiengebieten | (Datengrundlage: | RASt | 06 | und | Drees | & | Sommer) | ...................... | 66 | 5 | Zunahme | des | Gr\u00fcnanteils | .................................................................................... | 67 | 5.1 | Zunahme | des | Gr\u00fcnanteils | im | Gebietsausschnitt | I | (Datengrundlage: | eigene | Berechnungen) | ........................................................................................................ | 67 | 5.2 | Zunahme | des | Gr\u00fcnanteils | im | Gebietsausschnitt | III | (Datengrundlage: | eigene | Berechnungen) | ........................................................................................................ | 67 | 5.3 | Zunahme | des | Gr\u00fcnanteils | im | Gebietsausschnitt | IV | (Datengrundlage: | eigene | Berechnungen) | ........................................................................................................ | 67 | 5.4 | Zunahme | des | Gr\u00fcnanteils | im | Gebietsausschnitt | V | (Datengrundlage: | eigene | Berechnungen) | ........................................................................................................ | 67 | 6 | Heiz- | und | K\u00fchlbedarfe | ......................................................................................... | 68 | 6.1 | Monatlicher | und | spezifischer | Heiz- | und | K\u00fchlbedarf | im | Gebietsausschnitt | II | .. | 68 | 6.2 | Monatlicher | und | spezifischer | Heiz- | und | K\u00fchlbedarf | im | Gebietsausschnitt | III | . | 68 | 6.3 | Monatlicher | und | spezifischer | Heiz- | und | K\u00fchlbedarf | im | Gebietsausschnitt | IV | 69 | 6.4 | Monatlicher | und | spezifischer | Heiz- | und | K\u00fchlbedarf | im | Gebietsausschnitt | V | . | 70 | 7 | Zunahme | der | Evapotranspiration | ......................................................................... | 71 | 7.1 | Summe | der | t\u00e4glichen | Evapotranspiration | in | Gebietsausschnitt | II | .................. | 71 | 7.2 | Summe | der | t\u00e4glichen | Evapotranspiration | in | Gebietsausschnitt | III | ................. | 71 | 7.3 | St\u00fcndliche | Evapotranspiration | eines | Jahres | f\u00fcr | den | Status | Quo | (oben), |\n|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|\n\n\n## Szenario C (mitte) und Szenario D (unten) in Gebietsausschnitt II .......................... 72\n\n7.4 St\u00fcndliche Evapotranspiration eines Jahres f\u00fcr den Status Quo (oben) und Szenario E (unten) in Gebietsausschnitt III .............................................................. 73\n61\nAnhangsverzeichnis\n\n| 7.5 | Summe | der | t\u00e4glichen | Evapotranspiration | in | Gebietsausschnitt | IV | ................ | 74 | 7.6 | Summe | der | t\u00e4glichen | Evapotranspiration | in | Gebietsausschnitt | V | ................. | 74 | 7.7 | Szenario | F | (mitte) | und | Szenario | G | (unten) | in | Gebietsausschnitt | IV | ......................... | 75 | 7.8 | Szenario | H | (unten) | in | Gebietsausschnitt | V | .............................................................. | 76 | 8.1 | T\u00e4gliche | Temperatur\u00e4nderung | in | Gebietsausschnitt | II | .................................. | 77 | 8.2 | T\u00e4gliche | Temperatur\u00e4nderung | in | Gebietsausschnitt | III | ................................. | 77 | 8.3 | Szenario | C | (mitte) | und | das | Szenario | D | (unten) | in | Gebietsausschnitt | II.................... | 78 | 8.4 | das | Szenario | E | (unten) | in | Gebietsausschnitt | III | ....................................................... | 79 | 8.5 | T\u00e4gliche | Temperatur\u00e4nderung | in | Gebietsausschnitt | IV | ................................. | 80 | 8.6 | T\u00e4gliche | Temperatur\u00e4nderung | in | Gebietsausschnitt | V | .................................. | 80 | 8.7 | Szenario | F | (mitte) | und | das | Szenario | G | (unten) | in | Gebietsausschnitt | IV | .................. | 81 | 8.8 | Szenario | H | (unten) | in | Gebietsausschnitt | V | .............................................................. | 82 | 9.1 | Lufttemperatur | ......................................................................................................... | 83 | 9.2 | Niederschlagsmenge | ............................................................................................... | 83 | 9.3 | Globalstrahlung | ....................................................................................................... | 84 | 8.3 |\n|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|\n\nSt\u00fcndliche Evapotranspiration eines Jahres f\u00fcr den Status Quo (oben),\nSt\u00fcndliche Evapotranspiration eines Jahres f\u00fcr den Status Quo (oben) und das\n8 Temperatur\u00e4nderung durch Evapotranspiration ................................................... 77\nSt\u00fcndliche Temperatur\u00e4nderung eines Jahres f\u00fcr den Status Quo (oben), das\nSt\u00fcndliche Temperatur\u00e4nderung eines Jahres f\u00fcr den Status Quo (oben) und\nSt\u00fcndliche Temperatur\u00e4nderung eines Jahres f\u00fcr den Status Quo (oben), das\nSt\u00fcndliche Temperatur\u00e4nderung eines Jahres f\u00fcr den Status Quo (oben) das\n\n## 9 Zusammenh\u00e4nge meteorologische Daten und Evapotranspiration ...................... 83\n\n\n## St\u00fcndliche Evapotranspirationsrate des Acer Platanoides und die st\u00fcndliche\n\n\n## St\u00fcndliche Evapotranspirationsrate des Acer Platanoides und die st\u00fcndliche\n\nSumme der t\u00e4glichen Evapotranspiration des Acer Platanoides und die t\u00e4gliche\n\n## St\u00fcndliche Evapotranspirationsrate des Acer Platanoides und die st\u00fcndlich\n\nfehlende Wassermenge .......................................................................................... 84\n62\nAnhangsverzeichnis\n- 1 Prozentuale Verteilung der Sinus-Milieus in den vier Quartiersarchetypen Ein- und Zweifamilienhausquartier, Zeilen- und Reihenbebauung, Blockrandbebauung und neues Innenstadtquartier (Datengrundlage Drees & Sommer)\n\n[IMAGE: Ein- und Zweifamilienhausquartier]\n\n\n[IMAGE: Zeilen- und Reihenbebauung A mw]\n\n\n[IMAGE: Blockrandbebauung a]\n\n\n[IMAGE: Neues Innenstadtquartier \u00ae]\n\n\n[IMAGE: Konservativ gehobenes Milieu Post-materielles Milieu Milieu der Performer Expeditives Milieu Neo-\u00f6kologisches Milieu Adaptiv pragmatisches Milieu Konsum hedonistisches Milieu Prek\u00e4res Milieu Nostalgisches Milieu Traditionelles Milieu]\n\n63\nAnhangsverzeichnis\n- 2 Darstellung des Modalsplits nach verschiedenen Kriterien\nDie Datengrundlage f\u00fcr die Darstellungen des Modal Splits nach Sinus Milieu (Anhang 2.1), Quartiersarchetyp (Anhang 2.2) und Lage (Anhang 2.3) sind die Analysen von Drees & Sommer (vgl. Menges et al. 2024a). - 2.1 Modal Split des konservativ-gehobenen (oben links), des prek\u00e4ren (unten links) und des neo-\u00f6kologischen (oben rechts) Milieus\n\n[IMAGE: Konservativ-gehobenes Milieu]\n\n\n[IMAGE: Neo-\u00f6kologisches Milieu B2]\n\n\n[IMAGE: Prek\u00e4res Milieu]\n\n\n[IMAGE: PKW PKW-Sharing \u00d6PNV Rad E-Bike/ Pedelec Lastenrad Rad-Sharing Fu\u00df]\n\n- 2.2 Darstellung des Modal Splits in den vier Quartiersarchetypen Ein- und Zweifamilienhausquartier, Zeilen- und Reihenbebauung, Blockrandbebauung und neues Innenstadtquartier (Legende siehe oben)\n\n[IMAGE: Ein- und Zweifamilienhausquartier]\n\n\n[IMAGE: Zeilen- und Reihenbebauung m v N]\n\n\n[IMAGE: Blockrandbebauung]\n\n\n[IMAGE: Neues Innenstadtquartier]\n\n64\nAnhangsverzeichnis\n- 2.3 Lagespezifischer Modal Split in den Quartiersarchetypen Ein- und Zweifamilienhausquartier, Zeilen- und Reihenbebauung, Blockrandbebauung und neues Innenstadtquartier\n\n[IMAGE: Ein- und Zweifamilienhausquartier]\n\n\n[IMAGE: Zeilen- und Reihenbebauung \\ I << 7 >]\n\n\n[IMAGE: Blockrandbebauung \u00ae N]\n\n\n[IMAGE: Neues Innenstadtquartier N Nm 7]\n\ninnerer Kreis = zentrale Lage, mittlerer Kreis = periphere Lage, \u00e4u\u00dferer Kreis = l\u00e4ndliche Lage (Legende siehe oben)\n- 3 Fl\u00e4chenbilanz Gromb\u00fchl (eigene Darstellung, Datengrundlage Stadt W\u00fcrzburg)\n\n[IMAGE: Fl\u00e4chenbilanz Gromb\u00fchl Fl\u00e4chenbilanz Gromb\u00fchl tats\u00e4chliche Fl\u00e4chengr\u00f6\u00dfe versiegelte Fl\u00e4che (privat): 13,7 ha versiegelte Fl\u00e4che (Stra\u00dfenraum): 8,8 ha \" versiegelte Fl\u00e4che ivat,) unversiegelte Fl\u00e4che / (privat) Gr\u00fcnfl\u00e4che: 6,2 ha versiegelte Fl\u00e4che (Stra\u00dfenraum) = unsersigelte Fl\u00e4che/ Gr\u00fcnfl\u00e4che = bebaute Fl\u00e4che bebaute Fl\u00e4che: 9,5 ha Gebietsfl\u00e4che: 38,3ha]\n\n65\nAnhangsverzeichnis\n- 4 Zuordnung der Stra\u00dfenquerschnitte zu den Quartiersarchetypen in den Fallstudiengebieten (Datengrundlage: RASt 06 und Drees & Sommer)\n\n| Quartiers- | Stra\u00dfenquerschnitt | nach | RASt | 06 | Potentialfl\u00e4che | je | archetyp | (Angaben | in | m) | Mobilit\u00e4tszenario | Ein- | und | Zweifamilien- | hausquartier | 2.5 | Wohnstra\u00dfe | Szenario | 1: | 0,5 | % | Szenario | 2: | 1,6 | % | Szenario | 3: | 3,3 | % | Neues | Innenstadt- | quartier | 2.5 | Wohnstra\u00dfe | Szenario | 1: | 0,5 | % | Szenario | 2: | 1,6 | % | Szenario | 3: | 3,3 | % | Blockrand- | bebauung | 4.3 | Quartierstra\u00dfe | Szenario | 1: | 0,73 | % | Szenario | 2: | 2,4 | % | Szenario | 3: | 4,9 | % | Zeilen- | und | Reihen- | bebauung | 3.5 | Sammelstra\u00dfe | Szenario | 1: | 0,69 | % | Szenario | 2: | 2,3 | % | Szenario | 3: | 4,6 | % |\n|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|\n\nG = Gehweg | P = Parkfl\u00e4che | F = Fahrbahn\n66\nAnhangsverzeichnis\n- 5 Zunahme des Gr\u00fcnanteils\n- 5.1 Zunahme des Gr\u00fcnanteils im Gebietsausschnitt I (Datengrundlage: eigene Berechnungen)\n\n[IMAGE: Gebietsausschnitt I = Status Quo Szenario A Szenario B]\n\n- 5.2 Zunahme des Gr\u00fcnanteils im Gebietsausschnitt III (Datengrundlage: eigene Berechnungen)\n\n[IMAGE: Gebietsausschnitt Ill hr Status Quo Szenario E]\n\n- 5.3 Zunahme des Gr\u00fcnanteils im Gebietsausschnitt IV (Datengrundlage: eigene Berechnungen)\n\n[IMAGE: Gebietsausschnitt IV Ar RN $ . PS Status Quo Szenario F Szenario G]\n\n- 5.4 Zunahme des Gr\u00fcnanteils im Gebietsausschnitt V (Datengrundlage: eigene Berechnungen)\n\n[IMAGE: An Gebietsausschnitt V Status Quo]\n\n67\nAnhangsverzeichnis\n\n## 6 Heiz- und K\u00fchlbedarfe\n\nDie Datengrundlage der in diesem Kapitel dargestellten Diagramme sind die Simulationsergebnisse aus dem Tool SimStadt sowie die auf diesen aufbauenden eigenen Berechnungen. F\u00fcr die Gebietsausschnitte II \u2013 V ist der monatliche sowie der spezifische Heiz- und K\u00fchlbedarf f\u00fcr die Simulation ohne Baumverschattung, sowie den Status Quo und die jeweiligen Szenarien des Gebietsausschnitts mit Verschattungseffekt dargestellt. ## 6.1 Monatlicher und spezifischer Heiz- und K\u00fchlbedarf im Gebietsausschnitt II\n\n\n[IMAGE: monatlicher Heiz- und K\u00fchlbedarf Gebietsausschnitt II Gromb\u00fchl 3000 2500 z = 3, 200 [ 3 1500 Pl | 5 Z 1000 2 e 7500 ! Ill IN INN \u00ae er) IE Bunn & & & N & N N & & & & & y & RS g& a se ge $ N = 3 30 5 30 520 520 210 8410 | To mm HEHE ann nun <, Han 0-40 50-70 70-90 90-110 110-130130-150150-170170-180 10-20 20-30 30-40 spezifischer Heizbedarf[kWVh/im2*a)] spezifischer K\u00fchlbedarf [kWh/(m2*a)] wohne Baum wStatusQuo wSzenarioC mSzenarioD wohne Baum mStatusQuo =SzenarioC \"SzenarioD]\n\n- 6.2 Monatlicher und spezifischer Heiz- und K\u00fchlbedarf im Gebietsausschnitt III\n\n[IMAGE: monatlicher Heiz- und K\u00fchlbedarf Gebietsausschnitt III Gromb\u00fchl s000 \u2014 8000 SZ = 7000 \u2018= 8000 F 3 2 5000 @ 4000 2 3000 5 x 2000 \u00ae . HE an BERN 0 l\u0131\u0131 uun cJ g g Ss I 5 Ss g g 5 & g g N RC RR N I S Kg FE SE SF N N & ES g S \u00a9 e\u00dc $ N Ss # Heizbedarf ohne B\u00e4ume m K\u00fchlbedarf ohne B\u00e4ume \u0131 Heizbedarf Status Quo ws K\u00fchlbedarf Status Quo mHeizbedarf Szenario E mK\u00fchlbedarf Szenario E]\n\n68\nAnhangsverzeichnis\n\n[IMAGE: spezifischer Heizbedarf spezifischer K\u00fchlbedarf Gebietsausschnitt Ill Gebietsausschnitt III Gromb\u00fchl Gromb\u00fchl 300 300 \u00a9 250 \u00a9 250 3 3 E| 3 \u00a9, 200 3, 200 e B F 8 Ss < = 150 3 150 [7 7 3 3 = 100 Sg 100 3 N & & <{< < 50 50 o -\u2014- oO. MM [ - 0-100 100-200 200-300 0-10 10-20 20-30 30-40 40-50 50-50 60-80 70-80 spezifischerHeizbedarf[kWh/(m2*a)] spezifischer K\u00fchlbedarf [kWh/(m2*a)] mohne B\u00e4ume mStatusQuo =Szenario E wohne B\u00e4ume mStatusQuo =mSzenarioE]\n\n- 6.3 Monatlicher und spezifischer Heiz- und K\u00fchlbedarf im Gebietsausschnitt IV\n\n[IMAGE: monatlicher Heiz- und K\u00fchlbedarf Gebietsausschnitt IV Grafenb\u00fchl 140 zZ 120 = & 400 c 5 3 80 2 5 2 60 =] e so NS u I , ID II g g g N \u00ae S ss & F 3 $ & g N 8 S I S S N N; F NS Kr > > Y > I Zr er 7 rn Pr RI RL Heizbedarf ohne B\u00e4ume \u0131 K\u00fchlbedarf ohne B\u00e4ume u Heizbedarf Status Quo mK\u00fchlbedarf Status Quo = Heizbedarf Szenario F =K\u00fchlbedarf Szenario F =Heizbedarf Szenario G =K\u00fchlbedarf Szenario G]\n\n\n[IMAGE: spezifischer Heizbedarf spezifischer K\u00fchlbedarf Gebietsausschnitt IV Grafenb\u00fchl Gebietsausschnitt IV Grafenb\u00fchl 02 a 25 b] 3 \u00ae E] 220 320 Fi P \u00bb > 515 &15 5 \u00f6 = 10 = 10 F \u00f6 5 5 25 25 z | z = )", + "links": [], + "last_modified": "2025-05-05T23:00:23", + "_known_field_names": "frozenset({'is_continuation', 'sent_to', 'header_footer_type', 'email_message_id', 'filename', 'languages', 'detection_class_prob', 'sent_from', 'link_texts', 'cc_recipient', 'subject', 'image_mime_type', 'image_path', 'filetype', 'page_number', 'last_modified', 'signature', 'detection_origin', 'text_as_html', 'attached_to_filename', 'bcc_recipient', 'data_source', 'link_start_indexes', 'category_depth', 'emphasized_text_tags', 'parent_id', 'orig_elements', 'page_name', 'coordinates', 'url', 'link_urls', 'file_directory', 'links', 'table_as_cells', 'emphasized_text_contents', 'key_value_pairs', 'image_base64'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "Kreye_Marieke_BA_241_V2.pdf", + "detection_class_prob": 0.3422867953777313, + "parent_id": "e02392183bc6851689602ad4b9f6039f", + "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", + "id": "ce00eae5-7e07-454f-9e4f-f79ac36f92f4", + "processing_timestamp": "2025-05-05T23:15:46.977945", + "chunk_number": 51, + "total_chunks": 56, + "chunking_strategy": "hybrid", + "word_count": 2262 + } +} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000052.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000052.json new file mode 100644 index 0000000000000000000000000000000000000000..d467bcf46a440a1180460fa64e5fe73913538ec1 --- /dev/null +++ b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000052.json @@ -0,0 +1,1570 @@ +{ + "id": "61a115b2-0ff7-441a-f6d9-eb3d00000052", + "content": "MM [ - 0-100 100-200 200-300 0-10 10-20 20-30 30-40 40-50 50-50 60-80 70-80 spezifischerHeizbedarf[kWh/(m2*a)] spezifischer K\u00fchlbedarf [kWh/(m2*a)] mohne B\u00e4ume mStatusQuo =Szenario E wohne B\u00e4ume mStatusQuo =mSzenarioE]\n\n- 6.3 Monatlicher und spezifischer Heiz- und K\u00fchlbedarf im Gebietsausschnitt IV\n\n[IMAGE: monatlicher Heiz- und K\u00fchlbedarf Gebietsausschnitt IV Grafenb\u00fchl 140 zZ 120 = & 400 c 5 3 80 2 5 2 60 =] e so NS u I , ID II g g g N \u00ae S ss & F 3 $ & g N 8 S I S S N N; F NS Kr > > Y > I Zr er 7 rn Pr RI RL Heizbedarf ohne B\u00e4ume \u0131 K\u00fchlbedarf ohne B\u00e4ume u Heizbedarf Status Quo mK\u00fchlbedarf Status Quo = Heizbedarf Szenario F =K\u00fchlbedarf Szenario F =Heizbedarf Szenario G =K\u00fchlbedarf Szenario G]\n\n\n[IMAGE: spezifischer Heizbedarf spezifischer K\u00fchlbedarf Gebietsausschnitt IV Grafenb\u00fchl Gebietsausschnitt IV Grafenb\u00fchl 02 a 25 b] 3 \u00ae E] 220 320 Fi P \u00bb > 515 &15 5 \u00f6 = 10 = 10 F \u00f6 5 5 25 25 z | z = 5 5 150 100 = = 100 8 8 z % z 50 : ID : I < 0 all (=) Status Quo SzenarioH]\n\n74\nAnhangsverzeichnis\n- 7.7 St\u00fcndliche Evapotranspiration eines Jahres f\u00fcr den Status Quo (oben), Szenario F (mitte) und Szenario G (unten) in Gebietsausschnitt IV\n\n[IMAGE: 10- = 13:00 - u 220 January. Februers March Aa une han August September - October - Novernber December -]\n\n\n[IMAGE: Evapotranspiration in GAd_Szenariaf Do00- DE) 0200 0200. nam. 0500 0500 0700. 0900 0900 15:00 - mm \u0131n\u0131 10 1500 10. 1800 10:00 - 2000- z10- 220- 220 January. Februers March Aa une hair August September - October - Novernber December =]\n\n\n[IMAGE: Evapotranspiration in GA4_SzenarioG 0000 0 1200 | | | \u201c 100 1600 l F* os Dann vo Janan\u0131 Veran Maren Bo Mar vum: my. August September October]\n\n75\nAnhangsverzeichnis\n- 7.8 St\u00fcndliche Evapotranspiration eines Jahres f\u00fcr den Status Quo (oben) und das Szenario H (unten) in Gebietsausschnitt V\n\n[IMAGE: Evapotrenspiration in GAS_StatusQuo 2 n ( gast December vn en September Det November,]\n\n\n[IMAGE: Evapotranspiration in GAS_SzenarioH 2000 2100 22.00 2300 vn en H Fear J September November,]\n\n76\nAnhangsverzeichnis\n\n## 8 Temperatur\u00e4nderung durch Evapotranspiration\n\nDie Datengrundlage der in diesem Kapitel dargestellten Diagramme sind die Simulationsergebnisse aus dem Tool SimStadt und die auf diesen aufbauenden eigenen Berechnungen. F\u00fcr die Gebietsausschnitte II \u2013 V ist die m\u00f6gliche Temperatur\u00e4nderung durch Evapotranspiration dargestellt\n\n## 8.1 T\u00e4gliche Temperatur\u00e4nderung in Gebietsausschnitt II\n\n\n[IMAGE: t\u00e4gliche Tempratur\u00e4nderung Gebietsausschnitt II Gromb\u00fchl o Temperatur\u00e4nderung [K] Do Bo N \u00a9 \u00a9 \u2014\u2014 Status Quo SzenarioC -\u2014\u2014\u2014 SzenarioD]\n\n- 8.2 T\u00e4gliche Temperatur\u00e4nderung in Gebietsausschnitt III\n\n[IMAGE: t\u00e4gliche Temperatur\u00e4nderung Gebietsausschnitt III Gromb\u00fchl Br ao D ww Temperatur\u00e4nderung [K] N (Ih) \\\\ Wa m. Hip 0 & CR Ss & So 8 e g& & & & S N x RS) N S S N N) N N g S N D S O Kr ee e>ee.,e=se &\u00a3 StatusQuo \u2014\u2014-SzenarioE]\n\n77\nAnhangsverzeichnis\n- 8.3 St\u00fcndliche Temperatur\u00e4nderung eines Jahres f\u00fcr den Status Quo (oben), das Szenario C (mitte) und das Szenario D (unten) in Gebietsausschnitt II\n\n[IMAGE: Cooling effect in GA2_StatusQuo 00:00 - DL:00 - 02:00 - 03:00 - 04:00 05:00 - 05:00 - 07:00 - DR:OD- 09:00 - 10:00 - 11:00 - 12:00 - 13:00 - 14:00 - 15:00 - 15:00 - 17:00 - 18:00 - 19:00 - 20:00 - 21:00 - 22:00 - 23:00 - January - February - March April May - June July August - September - October - Novennber - -IK --5K -12.5K 175K 20 K December -]\n\n\n[IMAGE: Cooling effect in GA2_SzenarioC DD:00 - 01:00 02:00 - 03:00 - 04:00 05:00 - 05:00 - 07:00 - DE:OD - 03:00 - 10:00 - | | 11:00- | | 12:00 - 13:00 - | 14:00 - | | 15:00 - | | 15:00 - 17:00 - 18:00 - 19:00 - 20:00 - 21:00 - 22:00 - 23:00 - January - February - March - April - May - June July - August - September - October - Novenber - -IK --5K -12.5K 175K -20 K Datember -]\n\n\n[IMAGE: Cooling effect in GA2_SzenarioD hy\u00bb Aukzust - lanuary February March \u00bb April May June September - Nowernber = -5K >r.15K 125K 17,5K 20K December -]\n\n78\nAnhangsverzeichnis\n- 8.4 St\u00fcndliche Temperatur\u00e4nderung eines Jahres f\u00fcr den Status Quo (oben) und das Szenario E (unten) in Gebietsausschnitt III\n\n[IMAGE: Cooling effect in GA3_StatusQuo DI:CO - D1:00 02:00 03:00 04:00 05:00 08:00 07:00 03:00 03:00 1:00 11:00 12:00 13:00 15:00 15:00 18:00 29:00 21:00 22:00 23:00 July > [c) zZ Juna January February March Apri August September October November December]\n\n\n[IMAGE: Cooling effect in GA3_SzenarioE July > [c) zZ January February March April Juna August September October November December]\n\n79\nAnhangsverzeichnis\n- 8.5 T\u00e4gliche Temperatur\u00e4nderung in Gebietsausschnitt IV\n\n[IMAGE: t\u00e4gliche Temperatur\u00e4nderung Gebietsausschnitt IV Grafenb\u00fchl o > a o n Temperatur\u00e4nderung [K] Status Quo SzenarioF Szenario G]\n\n- 8.6 T\u00e4gliche Temperatur\u00e4nderung in Gebietsausschnitt V\n\n[IMAGE: t\u00e4gliche Temperatur\u00e4nderung Gebietsausschnitt V Grafenb\u00fchl [} o > Temperatur\u00e4nderung [K] nn nn Status Quo \u2014\u2014 SzenarioH]\n\n80\nAnhangsverzeichnis\n- 8.7 St\u00fcndliche Temperatur\u00e4nderung eines Jahres f\u00fcr den Status Quo (oben), das Szenario F (mitte) und das Szenario G (unten) in Gebietsausschnitt IV\n\n[IMAGE: Cooling effect in Ga4_Statusquo 0x 00:0 - Berg 92.0. 02:0 - 04:00 - 05:00 - 06:00 - or - 08:0 - X 09:00 10:0 - um. x 12.0- 1200. 14:00 - 15:00 - 16:00. 1700 - rare 10:00 - 200 zu00 2200. 23:0. anuary Februany - Merch Anni May June ty - August September - Ociaber November - December.] [IMAGE: Cooling effect In GA4_Szenarior 0x 00:0 - 01:0 - Dr.0- 02:0 - 04:00 - 05:00 - 06:0 - or - 08:0 - X 09:00 10:00. | | 12.00- | 14:00 - wer 16:00. a2K 1700. 1800- rerg 20:00 - zuo0 220 2300. anuary February - Merch Anni May June August September - Ociaber November - December.] [IMAGE: Cooling effect in GA4_SzenarioG 2.6 0000. onoo- 000. 0300 0400.", + "embedding": [ + 0.005582509096711874, + 0.00010619799286359921, + 0.019189048558473587, + -0.017961690202355385, + 0.0022402622271329165, + 0.014556754380464554, + -0.032122522592544556, + -0.014767913147807121, + -0.021445808932185173, + -0.027424240484833717, + 0.017750531435012817, + 0.020403211936354637, + -0.009396563284099102, + 0.001969715114682913, + 0.008294578641653061, + 0.015190230682492256, + 0.02832166478037834, + 0.005569311324506998, + 0.02998453937470913, + -0.005424140021204948, + 0.0018806324806064367, + 0.03228089213371277, + -0.002075294265523553, + 0.01161373034119606, + 0.0022666570730507374, + 0.0027978532016277313, + 0.00604771776124835, + -0.029219089075922966, + -0.020601173862814903, + 0.014437978155910969, + 0.029245484620332718, + -0.005212981253862381, + -0.0290079303085804, + -0.010604127310216427, + -0.02503550611436367, + -0.014490767382085323, + -0.01839720457792282, + -0.010049835778772831, + 0.01909666694700718, + -0.0124055752530694, + 0.018331216648221016, + 0.014345596544444561, + 0.007786477915942669, + 0.0037216725759208202, + -0.005302063655108213, + 0.023253854364156723, + -0.0017090659821406007, + -0.013401980511844158, + -0.01900428533554077, + 0.026513617485761642, + 0.003180578351020813, + 0.030538830906152725, + -0.003916334360837936, + 0.009264589287340641, + -0.022831536829471588, + 0.007595115341246128, + -0.013111636973917484, + 0.017486581578850746, + -0.010808687657117844, + 0.00809661764651537, + -0.003622691845521331, + -0.01863475702702999, + -0.0187667328864336, + 0.002664229366928339, + -0.04645492136478424, + -0.015493771992623806, + -0.02094430662691593, + -0.008611316792666912, + 0.003777761710807681, + -0.019255036488175392, + 0.014899888075888157, + 0.05059891194105148, + 0.010887871496379375, + -0.016985081136226654, + 0.02648722380399704, + -0.0022996505722403526, + 0.0071727982722222805, + -0.007133205886930227, + -0.014451175928115845, + -0.011778697371482849, + 0.041202347725629807, + -0.023610185831785202, + -0.02998453937470913, + 0.028031321242451668, + 0.019809328019618988, + 0.020350422710180283, + -0.008057025261223316, + 0.018304822966456413, + -0.024995913729071617, + 0.021010292693972588, + 0.02287112921476364, + 0.015559758991003036, + 0.015559758991003036, + 0.016166839748620987, + 0.005853055976331234, + 0.004233072511851788, + -0.0013857291778549552, + 0.012847688980400562, + 0.0039031370542943478, + -0.012168021872639656, + -0.02441522851586342, + 0.00205549830570817, + -0.015929287299513817, + -0.017829714342951775, + -0.02879677154123783, + -0.004295760300010443, + 0.025312652811408043, + 0.01137617602944374, + -0.0055495151318609715, + -0.03468282148241997, + -0.021313834935426712, + 0.04312916845083237, + -0.00202580401673913, + -0.011151820421218872, + 0.017011474817991257, + -0.029192693531513214, + 0.028110506013035774, + -0.01377810724079609, + -0.03061801567673683, + -0.01020820438861847, + 0.016048062592744827, + 0.005414241924881935, + 0.0009609371772967279, + -0.019624564796686172, + 0.03689998760819435, + 0.00810321606695652, + 0.0005241850740276277, + -0.029087115079164505, + -0.04497680813074112, + -0.028585612773895264, + -0.005516521632671356, + 0.0005423314869403839, + 0.025602996349334717, + 0.027371449396014214, + -0.016641946509480476, + 0.04270685464143753, + -0.02202649414539337, + 0.003969124052673578, + -0.03243925794959068, + -0.024098489433526993, + -0.009436155669391155, + 0.014266411773860455, + -0.02321426197886467, + -0.01668153889477253, + 0.007080416195094585, + 0.008664106950163841, + 0.001614209497347474, + 0.02624966949224472, + 0.006908849813044071, + -0.016021668910980225, + -0.013230414129793644, + -0.007878860458731651, + 0.035131532698869705, + 0.0024316248018294573, + 0.01274870801717043, + -0.0018146453658118844, + -0.013283203355967999, + -0.0030601518228650093, + -0.020258041098713875, + 0.0011448762379586697, + 0.004526715259999037, + -0.00024188397219404578, + 0.002870438853278756, + 0.00493253581225872, + -0.012887281365692616, + 0.008017432875931263, + 0.002462968695908785, + -0.021736152470111847, + 0.005849756766110659, + -0.014952677302062511, + -0.0031970751006156206, + 0.019532183185219765, + -0.006753779947757721, + 0.03243925794959068, + 0.008974245749413967, + 0.022541195154190063, + -0.009469149634242058, + 0.0022468608804047108, + -0.001046720426529646, + -0.034524451941251755, + -0.02515428327023983, + 0.01946619525551796, + 0.006192889530211687, + 0.007779879495501518, + -0.04413217306137085, + -0.01812005788087845, + 0.012636530213057995, + 0.00979908462613821, + 0.007218989077955484, + -0.001991160912439227, + 0.011461960151791573, + 0.014398385770618916, + 0.02251479960978031, + 0.009211799129843712, + -0.6271414160728455, + 0.00013939775817561895, + -0.02190771885216236, + 0.007819471880793571, + 0.0014005762059241533, + 0.020878318697214127, + 0.0260121151804924, + 0.020033683627843857, + -0.030776385217905045, + 0.012293397448956966, + 0.016655145213007927, + -0.009766091592609882, + -0.00954833347350359, + -0.0017569066258147359, + -0.008024031296372414, + -0.028480034321546555, + -0.014464372768998146, + 0.007700694724917412, + 0.01644398644566536, + -0.010221402160823345, + -0.016127247363328934, + 0.012365982867777348, + -0.0017816517502069473, + 0.03106672875583172, + -0.0026559808757156134, + 0.005219579674303532, + 0.009211799129843712, + -0.014371991157531738, + 0.014596346765756607, + 0.01554656121879816, + -0.010722904466092587, + 0.01779012195765972, + -0.0034709216561168432, + 0.01554656121879816, + 0.039117153733968735, + -0.021696560084819794, + -0.007509332150220871, + 0.0039922199212014675, + 0.018555574119091034, + 0.009409761056303978, + -0.03769183158874512, + -0.010346777737140656, + 0.015770917758345604, + -0.00048129342030733824, + 0.0003676718915812671, + 0.017209436744451523, + 0.010326981544494629, + -0.01788250543177128, + -0.003576501039788127, + -0.016536368057131767, + 0.019070273265242577, + 0.016787119209766388, + 0.0014005762059241533, + -0.0051337964832782745, + -0.004035111516714096, + 0.007601714227348566, + 0.00447062635794282, + -0.017249029129743576, + -0.0017057666555047035, + 0.0033175016287714243, + -0.0008429852314293385, + -0.010181809775531292, + 0.0017618556739762425, + -0.012062442488968372, + -0.0181332565844059, + 0.02081233263015747, + -0.04212616756558418, + -0.009455951862037182, + 0.030565226450562477, + -0.010676713660359383, + -0.0047642686404287815, + 0.013646133244037628, + 0.0018443395383656025, + 0.0007077116752043366, + 0.009159009903669357, + 0.001101984642446041, + 0.03254484012722969, + -0.011395972222089767, + 0.019043877720832825, + 0.014121240004897118, + -0.005341656040400267, + -0.014490767382085323, + -0.00016156530182342976, + -0.004282562993466854, + 0.02056158147752285, + -0.04162466526031494, + 0.0017767027020454407, + 0.011389373801648617, + -0.00020301344920881093, + 0.03798217698931694, + 0.027503425255417824, + 0.01585010252892971, + 0.003922933246940374, + -0.0017354608280584216, + 0.0001267158513655886, + 0.03119870275259018, + -0.02345181629061699, + 0.03373260796070099, + 0.004592702258378267, + -0.04798582196235657, + -0.017262225970625877, + -0.015559758991003036, + 0.012253805063664913, + 0.005513222422450781, + 0.02635524794459343, + 0.021722953766584396, + -0.025325849652290344, + -0.013342591933906078, + 0.03072359412908554, + -0.026540013030171394, + -0.005965234246104956, + -0.004252868704497814, + -0.01161373034119606, + -0.010142217390239239, + -0.0046388935297727585, + -0.033574238419532776, + 0.0484081394970417, + -0.0023161473218351603, + 0.0030700499191880226, + 0.006483232602477074, + 0.02527306042611599, + 0.0018146453658118844, + 0.02078593708574772, + -0.019532183185219765, + -0.01554656121879816, + 0.022593984380364418, + 0.01765814796090126, + -0.015454179607331753, + -0.003998818341642618, + -0.01391008123755455, + 0.021459005773067474, + 0.006720786448568106, + 0.02250160276889801, + -0.015084651298820972, + 0.042759642004966736, + 0.001925173681229353, + 0.014121240004897118, + 0.0066514997743070126, + 0.022396022453904152, + -0.02623647265136242, + -0.015467376448214054, + -0.00777328060939908, + 0.01970374956727028, + -0.017024671658873558, + 0.012352786026895046, + -0.011699513532221317, + -0.009997045621275902, + 0.019518984481692314, + -0.000837211380712688, + 0.007595115341246128, + -0.024692373350262642, + -0.008248387835919857, + 0.009211799129843712, + 0.006869257427752018, + 0.002238612389191985, + 0.003632589941844344, + -0.0011481755645945668, + -0.02454720251262188, + -0.021142268553376198, + -0.0398826040327549, + 0.0013535604812204838, + 0.028506428003311157, + -0.02211887761950493, + -0.009878269396722317, + -0.016536368057131767, + -0.004576205741614103, + -0.004899542313069105, + 0.006856060121208429, + -0.0181464534252882, + -0.0290079303085804, + -0.012372581288218498, + -0.00828138180077076, + 0.004856650717556477, + -0.002141281496733427, + -0.02755621448159218, + -0.010663515888154507, + -0.010887871496379375, + 0.0001998171937884763, + -0.00888846255838871, + -0.011316788382828236, + 0.019136259332299232, + -0.007958044297993183, + -0.004642192739993334, + -0.003027158323675394, + 0.04545191675424576, + 0.029087115079164505, + 0.0296414066106081, + 0.022330036386847496, + -0.008644310757517815, + 0.005170089658349752, + 0.0011440514354035258, + 0.03304634243249893, + -0.00776668218895793, + 0.006948441732674837, + 0.00568808801472187, + -0.002149529755115509, + 0.024613188579678535, + 0.021023491397500038, + -0.017829714342951775, + 0.014517162926495075, + 0.04846092686057091, + 0.006123603321611881, + 0.028004925698041916, + -0.017684543505311012, + 0.02622327394783497, + -0.03782380744814873, + 0.02734505571424961, + -0.002622987376525998, + 0.03397016227245331, + 0.024045700207352638, + 0.023293446749448776, + -0.028374454006552696, + -0.019281432032585144, + -0.01099345088005066, + -0.0004808810190297663, + 0.029245484620332718, + -0.017011474817991257, + -0.02225085161626339, + -0.004826956428587437, + 0.006615207064896822, + 0.0193342212587595, + 0.005203083157539368, + 0.016114050522446632, + 0.0008735042647458613, + -0.0030486041214317083, + 0.02444162219762802, + 0.007779879495501518, + 0.0187667328864336, + 0.00219077174551785, + -0.010538140311837196, + -0.007760083302855492, + -0.01897788979113102, + -0.009409761056303978, + 0.011296992190182209, + 0.004460728261619806, + 0.03616093099117279, + 0.029667802155017853, + 0.002103338949382305, + 0.03893239051103592, + 0.012234008871018887, + 0.0045168171636760235, + 0.02673797309398651, + 0.02041640877723694, + -0.024402029812335968, + 0.006384252104908228, + 0.006219284608960152, + 0.012267002835869789, + 0.005057911388576031, + -0.00828138180077076, + 0.0057804700918495655, + -0.004266066011041403, + 0.00841335579752922, + -0.0033735905308276415, + 0.013593343086540699, + 0.009950854815542698, + -0.007331166882067919, + -0.005404343828558922, + -0.0036424880381673574, + 0.01897788979113102, + 0.02467917650938034, + 0.00973309762775898, + -0.00595203647390008, + -0.009277787059545517, + -0.01728862151503563, + 0.0007291574729606509, + -0.006961639504879713, + -0.026460828259587288, + -0.032465655356645584, + 0.009165608324110508, + 0.003949327860027552, + 0.011857882142066956, + 0.006008125841617584, + -0.023412223905324936, + 0.01045235712081194, + 0.007885458879172802, + -0.0019416705472394824, + 0.029958143830299377, + 0.011824889108538628, + 0.010914267040789127, + -0.001964766066521406, + -0.006334761623293161, + -0.018238835036754608, + -0.02226404845714569, + 0.015401389449834824, + 0.0014550156192854047, + -0.0016653494676575065, + 0.0017734033754095435, + 0.019611366093158722, + -0.003437928156927228, + 0.0042396713979542255, + -0.024098489433526993, + -0.020020486786961555, + -0.0217889416962862, + -0.007865662686526775, + -0.007542325649410486, + -0.010914267040789127, + 0.007258581463247538, + -0.018318019807338715, + -0.007397154346108437, + 0.03323110565543175, + 0.0010186758590862155, + 0.018964692950248718, + -0.006483232602477074, + -0.015084651298820972, + 0.033072736114263535, + -0.0008495839429087937, + -0.005229477770626545, + -0.006308367010205984, + 0.0008735042647458613, + -0.0111848134547472, + -0.009264589287340641, + -0.015929287299513817, + -0.01384409423917532, + 0.030380461364984512, + -0.006902250926941633, + 0.008987443521618843, + 0.012986261397600174, + -0.01825203187763691, + 0.0483817420899868, + 0.0015407988103106618, + -0.012537549249827862, + -0.009752893820405006, + -0.020020486786961555, + 0.00502161867916584, + 0.02345181629061699, + 0.035131532698869705, + 0.011732506565749645, + 0.014807505533099174, + 0.014147634617984295, + 0.0010153765324503183, + -0.022527996450662613, + -0.029826169833540916, + 0.012834491208195686, + 0.020390015095472336, + 0.008650909177958965, + 0.010406166315078735, + 0.013177623972296715, + -0.01863475702702999, + 0.01788250543177128, + -0.021670164540410042, + 0.00028869358357042074, + -0.014358793385326862, + 0.004813759122043848, + 0.0023260454181581736, + -0.02106308378279209, + -0.0027863055001944304, + -0.006400749087333679, + 0.057276804000139236, + 0.007885458879172802, + 0.012128429487347603, + 0.009449353441596031, + 0.0308291744440794, + 0.014253214001655579, + -0.010960457846522331, + -0.024599991738796234, + 0.013177623972296715, + 0.016114050522446632, + 0.0065492200665175915, + -0.02041640877723694, + -0.01585010252892971, + 0.010016841813921928, + -0.011857882142066956, + 0.023887330666184425, + -0.012359384447336197, + 0.020469199866056442, + 0.03959226235747337, + -0.0015102798352017999, + -0.007991038262844086, + 0.014464372768998146, + -0.014715123921632767, + -0.01162032876163721, + 0.01851598173379898, + 0.001110233017243445, + 0.009686906822025776, + 0.01268931943923235, + -0.006628404371440411, + -0.02940385229885578, + 0.00544723542407155, + -0.006961639504879713, + 0.0199545007199049, + 0.011593934148550034, + -0.03304634243249893, + 0.0009658862254582345, + -0.013052249327301979, + -0.03518432378768921, + -0.044079385697841644, + 0.021247847005724907, + -0.008268184028565884, + -0.011006648652255535, + 0.0016801966121420264, + -0.0060114250518381596, + 0.002421726705506444, + -0.016655145213007927, + -0.008063623681664467, + 0.0016661743866279721, + -0.016232827678322792, + -0.025418231263756752, + 0.006374354008585215, + 0.009389964863657951, + 0.015269415453076363, + 0.007265179883688688, + -0.015256217680871487, + -0.004513517953455448, + -0.01347456593066454, + -0.01764495112001896, + -0.022527996450662613, + 0.026315657421946526, + -0.013685724698007107, + -0.017024671658873558, + 0.002548751886934042, + 0.0014632639940828085, + 0.0024316248018294573, + -0.006641601677983999, + -0.009244793094694614, + -0.007067218888550997, + 0.008578323759138584, + 0.03001093491911888, + 0.00015280138177331537, + -0.018410401418805122, + -0.010386370122432709, + -0.003622691845521331, + 0.006545920390635729, + 0.02527306042611599, + -0.01635160483419895, + 0.03528990224003792, + 0.003381839022040367, + -0.013382184319198132, + -0.0011819939827546477, + 0.0042561679147183895, + -0.002395331859588623, + -0.012319792062044144, + -0.019637761637568474, + -0.018779929727315903, + -0.017249029129743576, + -0.0017338111065328121, + -0.006908849813044071, + 0.003117890562862158, + -0.02091791108250618, + -0.004167085513472557, + -0.0019004285568371415, + 0.0019862118642777205, + -0.005057911388576031, + 0.023623382672667503, + 0.020033683627843857, + 0.01196346152573824, + -0.0181464534252882, + 0.057012856006622314, + 0.006809868849813938, + 0.020350422710180283, + 0.020706752315163612, + -0.013606540858745575, + 0.020376816391944885, + -0.017011474817991257, + -0.010439159348607063, + -0.0005200608284212649, + 0.007628108840435743, + -0.00044871229329146445, + -0.027239475399255753, + -0.029430247843265533, + -0.022686365991830826, + -0.008030630648136139, + 0.02903432585299015, + -0.015467376448214054, + 0.014055253006517887, + -0.026922738179564476, + 0.02213207446038723, + -0.014807505533099174, + 0.023187868297100067, + 0.02577456273138523, + -0.02309548668563366, + -0.01586329936981201, + 5.6295248214155436e-05, + 0.024943124502897263, + -0.00643704179674387, + -0.01620643213391304, + -0.02818969078361988, + -0.010366573929786682, + 0.012979662977159023, + -0.02008647471666336, + -0.05239376053214073, + -0.005160191562026739, + 0.0001672360667726025, + 0.017592161893844604, + 0.01716984435915947, + 0.013078643940389156, + -0.0013618088560178876, + 0.02139301784336567, + 0.007278377190232277, + -0.015243020839989185, + 0.001771753653883934, + 0.011574137955904007, + -0.0031195401679724455, + -0.03177938982844353, + 0.02308228798210621, + 0.011066037230193615, + 0.01051834411919117, + 0.009145812131464481, + 0.004572906065732241, + 0.030644411221146584, + 0.04051608219742775, + -0.014279608614742756, + -0.02153819054365158, + -0.02214527130126953, + -0.022448811680078506, + 0.012267002835869789, + 0.02262037806212902, + -0.003225119551643729, + -0.0020571479108184576, + -0.024718768894672394, + -0.021670164540410042, + 0.05917723476886749, + 0.00011547742906259373, + -0.0022749053314328194, + -0.00900723971426487, + 9.583595965523273e-05, + -0.03811414912343025, + 0.012016251683235168, + -0.011910672299563885, + -0.01124420203268528, + -0.004787364508956671, + -0.009640716016292572, + -0.01730181835591793, + -0.0471939742565155, + 0.016285616904497147, + -0.0032053235918283463, + 0.004665288142859936, + -0.00299086538143456, + -0.011593934148550034, + -0.005737578496336937, + -0.0056649926118552685, + 0.011455360800027847, + -0.02189452014863491, + 0.02273915521800518, + -0.014121240004897118, + -0.011851283721625805, + -0.01863475702702999, + -0.01057773269712925, + -0.009528537280857563, + 0.029430247843265533, + 0.006512926891446114, + -0.0008660807507112622, + 0.02324065752327442, + -0.005754075478762388, + 0.026817157864570618, + 0.028480034321546555, + -0.008142808452248573, + 0.035474665462970734, + 0.01973014324903488, + 0.057276804000139236, + 0.01666834205389023, + -0.008670705370604992, + -0.023003103211522102, + -0.05104762315750122, + -0.003995519131422043, + -0.007812872529029846, + 0.008809277787804604, + 0.006255577318370342, + -0.0006066689384169877, + -0.005150293465703726, + 0.014517162926495075, + 0.013283203355967999, + 0.0028077512979507446, + -0.01475471630692482, + 0.059441182762384415, + 0.012715714983642101, + 0.016958685591816902, + -0.014437978155910969, + 0.014926282688975334, + -0.012365982867777348, + 0.0105843311175704, + -0.00496223010122776, + -0.004906141199171543, + 0.005407643038779497, + -0.014424780383706093, + 0.0020324026700109243, + 0.06086650490760803, + -0.005490127019584179, + 0.017341410741209984, + -0.006955040618777275, + 0.00014249089872464538, + 0.0036688828840851784, + -0.019017482176423073, + -0.0056418972089886665, + 0.02225085161626339, + -0.010478751733899117, + 0.0362929068505764, + -0.016734329983592033, + -0.018054071813821793, + 0.0022518099285662174, + -0.02648722380399704, + -0.02659280225634575, + -0.015111046843230724, + -0.005015019793063402, + 0.012042646296322346, + -0.0010665165027603507, + -0.009027035906910896, + 0.0002441522665321827, + 0.004751071333885193, + 0.0017701040487736464, + 0.00894785113632679, + 0.00045902279089204967, + -0.0009106220095418394, + 0.0023260454181581736, + -0.003112941514700651, + -0.009363570250570774, + -0.002230364130809903, + -0.01656276360154152, + -0.0129928607493639, + -0.014332398772239685, + 0.004609199240803719, + -0.016140446066856384, + -0.008512335829436779, + 0.023755356669425964, + -0.04442251846194267, + 0.012491358444094658, + 0.020376816391944885, + -0.0007427672971971333, + 0.046243760734796524, + -0.007087014615535736, + -0.019532183185219765, + -0.022580785676836967, + 0.029430247843265533, + -0.04640213027596474, + 0.027397844940423965, + 0.04365706816315651, + -0.002332644071429968, + 0.004850051831454039, + -0.004374945070594549, + -0.01117821503430605, + -0.01910986565053463, + 0.030749989673495293, + -0.005110701080411673, + -0.04439612105488777, + 0.004784064833074808, + 0.010313783772289753, + 0.012887281365692616, + -0.013632935471832752, + -0.009000640362501144, + -0.0031888268422335386, + 0.011890876106917858, + -0.011910672299563885, + -0.017103856429457664, + -0.00325151439756155, + 0.022778747603297234, + 0.007463141344487667, + -0.01365933008491993, + 0.017618555575609207, + -0.01970374956727028, + 0.019083470106124878, + 0.013672527857124805, + -0.00450691906735301, + -0.018080465495586395, + -0.013019255362451077, + -0.0014335698215290904, + 0.005991628859192133, + 0.01755256950855255, + -0.015678536146879196, + 0.004520116373896599, + -0.019189048558473587, + -0.02093110978603363, + -0.024124884977936745, + 0.018951496109366417, + 0.002850642893463373, + -0.004843453411012888, + 0.00217592460103333, + 0.013375585898756981, + -0.029113508760929108, + 0.004942433908581734, + 0.0070276265032589436, + -0.021234650164842606, + 0.016628749668598175, + -0.0010005293879657984, + -0.034286897629499435, + -0.0013337642885744572, + -0.0020043582189828157, + 0.02940385229885578, + 0.018186045810580254, + -0.02395331859588623, + -0.0014822352677583694, + -0.004391441587358713, + -0.043472304940223694, + -0.021683361381292343, + -0.010155415162444115, + 0.0006479108706116676, + -0.008525533601641655, + 0.0010450707050040364, + -0.013712120242416859, + 0.031013937667012215, + 0.002589993877336383, + 0.012775102630257607, + -0.05912444368004799, + -0.012121831066906452, + -0.0009196952451020479, + 0.0033356479834765196, + 0.026289261877536774, + -0.004704880528151989, + -0.0193474180996418, + -0.007205791771411896, + 0.010472153313457966, + -0.0008091668714769185, + -0.0016274069203063846, + 0.01910986565053463, + -0.0031492344569414854, + -0.015309007838368416, + -0.00777328060939908, + 0.018186045810580254, + -0.013923279009759426, + 0.018238835036754608, + 0.003965824842453003, + -0.038668442517519, + -0.008010834455490112, + 0.018819522112607956, + 0.008136210031807423, + -0.04051608219742775, + -0.004543212242424488, + 0.0247979536652565, + -0.007654503919184208, + -0.012478160671889782, + 0.00828138180077076, + -0.004833555314689875, + -0.019994091242551804, + -0.016747526824474335, + 0.033178314566612244, + 0.02372896298766136, + 0.005912444554269314, + -0.0001182612613774836, + 0.02710750140249729, + -0.013105038553476334, + -0.01620643213391304, + 0.01220761425793171, + -0.03352144733071327, + -0.009904664009809494, + 0.02420406974852085, + -0.010835082270205021, + 0.016787119209766388, + -0.029905354604125023, + 0.02225085161626339, + -0.001027749152854085, + -0.0022864530328661203, + -0.010228000581264496, + -0.03674161806702614, + -0.004708179738372564, + 0.008604718372225761, + 0.021472202613949776, + -0.04616457596421242, + 0.010551338084042072, + 0.005536317825317383, + -0.009911262430250645, + -0.012900478206574917, + -0.01208883710205555, + -0.005843157880008221, + -0.028110506013035774, + -0.021181859076023102, + -0.0023128478787839413, + -0.004200079012662172, + 0.0014847097918391228, + 0.0016958685591816902, + -0.006004826165735722, + -0.011587334796786308, + 0.008083419874310493, + 0.1753673255443573, + -0.008518935181200504, + -0.004315556492656469, + 0.040331318974494934, + 0.006684493273496628, + -0.017103856429457664, + 0.009726499207317829, + 0.006776875350624323, + 0.003233368042856455, + 0.04550470411777496, + -0.02358379028737545, + 0.009224996902048588, + -0.0035336094442754984, + 0.009997045621275902, + 0.003142635803669691, + -0.022897524759173393, + -0.035369087010622025, + 0.0015803910791873932, + -0.019558576866984367, + 0.027028316631913185, + 0.02829526923596859, + -0.022554391995072365, + -0.01899108849465847, + -0.014728321693837643, + 0.02792574092745781, + -0.01161373034119606, + -0.009515340439975262, + 0.0017964988946914673, + 0.025484219193458557, + -0.004975427407771349, + -0.015784114599227905, + 0.0006986384396441281, + -8.55125836096704e-06, + -0.011079234071075916, + -0.016285616904497147, + -0.00313108810223639, + 0.015876496210694313, + -0.015348600223660469, + 0.011415768414735794, + 0.01970374956727028, + -0.006314965896308422, + -0.012293397448956966, + -0.003121190005913377, + -0.014002462849020958, + -0.0199545007199049, + 0.03668883070349693, + -0.00044953712495043874, + 0.0021396318916231394, + -0.02588014118373394, + -0.0026559808757156134, + -0.029113508760929108, + -0.014424780383706093, + -0.00571778230369091, + 0.04149268940091133, + -0.014715123921632767, + -0.0055330186150968075, + 0.012306594289839268, + -0.01812005788087845, + -9.841357677942142e-05, + 0.012036047875881195, + -0.013052249327301979, + 0.02238282561302185, + -0.01585010252892971, + -0.001801447942852974, + -0.0016100852517411113, + 0.0011753952130675316, + -0.037190329283475876, + -0.0011481755645945668, + -0.011343182995915413, + -0.0006231656880117953, + -0.027767373248934746, + -0.019162654876708984, + -0.0362665131688118, + 0.013428375124931335, + -0.015876496210694313, + -0.02407209575176239, + 0.0013337642885744572, + 0.02539183758199215, + 0.028955141082406044, + 0.019452998414635658, + -0.014886690303683281, + 0.007720490917563438, + -0.008129610680043697, + -0.009350372478365898, + 0.002504210453480482, + -0.03468282148241997, + 0.02346501313149929, + 0.011527947150170803, + -0.0029281775932759047, + -0.02372896298766136, + -0.001798148499801755, + 0.012062442488968372, + -0.0009609371772967279, + 0.007113409694284201, + -0.002392032416537404, + -0.017710939049720764, + 0.009601123631000519, + 0.0033950363285839558, + 0.0006470860098488629, + 0.010089428164064884, + 0.0005122249131090939, + 0.06303088366985321, + 0.03716393560171127, + -0.005678190384060144, + -0.012623332440853119, + 0.0008990742499008775, + 0.003357093781232834, + 0.019162654876708984, + 6.310016760835424e-05, + -0.006123603321611881, + -0.004975427407771349, + -0.030802778899669647, + 0.005631999112665653, + 0.013171025551855564, + -0.0028077512979507446, + 0.012504556216299534, + -0.007179396692663431, + -0.013217216357588768, + -0.0044013396836817265, + -0.010016841813921928, + -0.0009444404277019203, + -0.0038173538632690907, + 0.01827842742204666, + 0.008532132022082806, + 0.0036688828840851784, + -0.025220271199941635, + -0.02710750140249729, + 0.016232827678322792, + -0.008598119020462036, + 0.0036490866914391518, + 0.028400849550962448, + -0.024586794897913933, + 0.007641306612640619, + -0.0023194467648863792, + -0.001464913715608418, + 0.004569606855511665, + -0.002017555758357048, + -0.03660964593291283, + 0.00016960747598204762, + 0.024045700207352638, + 0.02176254615187645, + -0.016008470207452774, + 0.0059190429747104645, + 0.005971832666546106, + 0.032096125185489655, + -0.01800128072500229, + 0.007040823809802532, + -0.00017816518084146082, + -0.03096114844083786, + -0.019083470106124878, + -0.005130497273057699, + -0.008479342795908451, + 0.014319201000034809, + -0.005638597998768091, + 0.02515428327023983, + -0.010630521923303604, + -0.03399655595421791, + -0.046850841492414474, + 0.014042055234313011, + 0.00882907398045063, + -0.010835082270205021, + 0.014965875074267387, + -0.008716896176338196, + -0.026803961023688316, + 0.006219284608960152, + 0.013032453134655952, + -0.16618192195892334, + -0.004968828987330198, + 0.012676122598350048, + -0.035237111151218414, + 0.010802088305354118, + 0.023742159828543663, + 0.0099838487803936, + -0.004084601532667875, + -0.008063623681664467, + -0.003292756387963891, + 0.027767373248934746, + 0.0016100852517411113, + -0.01776372827589512, + 0.004530014470219612, + 0.000844634894747287, + 0.01982252486050129, + -0.03251844272017479, + 0.02284473553299904, + 0.00986507162451744, + 0.010788891464471817, + 0.021459005773067474, + -0.008499138988554478, + 0.007548924535512924, + 0.0022138673812150955, + 0.024599991738796234, + 0.007779879495501518, + -0.0035138132516294718, + 0.025721773505210876, + 0.00035942348768003285, + 0.001584515324793756, + -0.01076909527182579, + -0.006093909032642841, + 0.02188132330775261, + -0.004826956428587437, + 0.00519648427143693, + -0.02041640877723694, + -0.012827892787754536, + -0.005556114017963409, + 0.000545630871783942, + 0.04320835322141647, + 0.01740739680826664, + -0.009033634327352047, + -0.011534545570611954, + 0.010782292112708092, + -0.03170020505785942, + 0.0038932389579713345, + 0.014715123921632767, + -0.0015787414740771055, + -0.015691732987761497, + -0.012385779060423374, + 0.0004920163191854954, + -0.03299355134367943, + -0.005684788804501295, + 0.00815600622445345, + -0.0030881965067237616, + 0.010142217390239239, + 0.003053553169593215, + 0.012926873750984669, + -0.00015878146223258227, + -0.0009089723462238908, + -0.012022850103676319, + -0.008815877139568329, + 0.008030630648136139, + 0.0029991138726472855, + 0.007001231424510479, + -0.02091791108250618, + 0.005655094515532255, + 0.030670804902911186, + -0.007812872529029846, + -0.0035402080975472927, + -0.02202649414539337, + -0.015652140602469444, + 0.020640766248106956, + -0.007529128342866898, + 0.010940661653876305, + 0.0005724381189793348, + -0.023055894300341606, + -0.0005361452349461615, + 0.025734970346093178, + 0.0031228396110236645, + -0.016509972512722015, + 0.06635662913322449, + -0.02006007917225361, + 0.005308662541210651, + -0.0026807261165231466, + 0.0023903828114271164, + -0.00133788853418082, + 0.011950264684855938, + 0.01971694640815258, + 0.013923279009759426, + -0.013494362123310566, + -0.014147634617984295, + -0.014913084916770458, + -0.020046882331371307, + 0.004592702258378267, + -0.00828798022121191, + 0.006305067799985409, + -0.0031376867555081844, + -0.007793076802045107, + -0.015031862072646618, + 0.013817699626088142, + -0.004064805340021849, + -0.03431329503655434, + -0.003098094370216131, + 0.004671887028962374, + -0.009099621325731277, + -0.015625745058059692, + 0.015282613225281239, + 0.03228089213371277, + -0.01475471630692482, + -0.017262225970625877, + -0.013098440133035183, + 0.022659970447421074, + -0.00021755123452749103, + 0.014979071915149689, + 0.0023821343202143908, + -0.012920274399220943, + -0.027899347245693207, + 0.014715123921632767, + 0.002063746564090252, + 0.039011575281620026, + -0.006968237925320864, + -0.019994091242551804, + 0.009271187707781792, + 0.00037138364859856665, + -0.016985081136226654, + -0.08773645013570786, + 0.0047642686404287815, + 0.02721308171749115, + 0.040199343115091324, + 0.024639584124088287, + -0.0012768504675477743, + -0.011593934148550034, + 0.031489044427871704, + -0.02066715992987156, + 0.016404394060373306, + -0.04690363258123398, + -0.016021668910980225, + -0.0018459891434758902, + -0.0002563186571933329, + 0.025325849652290344, + -0.014253214001655579, + -0.0032911067828536034, + -0.0351051390171051, + -0.03729591146111488, + 0.03858925774693489, + 0.012583740055561066, + -0.0016084356466308236, + -0.014622742310166359, + -0.008433151990175247, + 0.001558120478875935, + -0.008875265717506409, + -0.038668442517519, + 0.015348600223660469, + 0.015440981835126877, + 0.014517162926495075, + 0.01052494253963232, + -0.029826169833540916, + 0.022527996450662613, + -0.02140621654689312, + -0.000717609713319689, + -0.01522982306778431, + 0.011395972222089767, + -0.02961501106619835, + 0.011527947150170803, + -0.04085921496152878, + -0.001692569232545793, + 0.01076909527182579, + 0.02130063623189926, + -0.026830356568098068, + 0.026315657421946526, + -0.020878318697214127, + -0.01522982306778431, + -0.0025668982416391373, + -0.01850278303027153, + -0.004150588531047106, + -0.022409219294786453, + -0.030037328600883484, + -0.001969715114682913, + 0.03668883070349693, + -0.006968237925320864, + 0.0017816517502069473, + 0.022448811680078506, + -0.012491358444094658, + -0.018951496109366417, + -0.013171025551855564, + -0.019175851717591286, + 0.0037282712291926146, + -0.02467917650938034, + 0.02093110978603363, + 0.013157828710973263, + -0.004348549991846085, + -0.02551061473786831, + -0.004464027471840382, + 0.003856946248561144, + -0.012841090559959412, + -0.023966515436768532, + 0.017512977123260498, + 0.011719309724867344, + 0.004751071333885193, + -0.030301276594400406, + -0.007964643649756908, + -0.03684719651937485, + -0.017341410741209984, + 0.010782292112708092, + -0.022937117144465446, + -0.024837546050548553, + -0.02974698506295681, + 0.01596887968480587, + -0.0014253214467316866, + 0.02045600116252899, + 0.020020486786961555, + -0.0019482692005112767, + -0.04027852788567543, + 0.022791944444179535, + -0.03299355134367943, + 0.006354557815939188, + -0.00328120868653059, + 0.024718768894672394, + -0.008340769447386265, + -0.001393977552652359, + 0.004041709937155247, + -0.004734574817121029, + 0.0028902350459247828, + 0.03761264681816101, + -0.012702517211437225, + -0.023860936984419823, + -0.021327031776309013, + -0.0484081394970417, + 0.011725908145308495, + 0.025312652811408043, + -0.005991628859192133, + -0.014847097918391228, + -0.0072981733828783035, + 0.02466597966849804, + 0.009112819097936153, + 0.0007291574729606509, + -0.002974368631839752, + -0.02710750140249729, + 0.016787119209766388, + -0.029588617384433746, + -0.02041640877723694, + -0.01969055086374283, + -0.0066646975465118885, + 8.696893928572536e-05, + 0.0120954355224967, + 0.01409484539180994, + 0.003012311179190874, + -0.03492037579417229, + 0.029113508760929108, + -0.014662333764135838, + 0.020469199866056442, + -0.017367806285619736, + 0.01571812853217125, + -3.652489249361679e-05, + -0.007040823809802532, + -0.0055033243261277676, + 0.0031475848518311977, + 0.011171616613864899, + -0.007865662686526775, + 0.01742059551179409, + 0.019809328019618988, + -0.006186290644109249, + -0.006044418551027775, + 0.0014566653408110142, + 0.024111688137054443, + 0.008644310757517815, + 0.029430247843265533, + -0.036477670073509216, + -0.030802778899669647, + 0.007687497418373823, + -0.027529818937182426, + -0.0031195401679724455, + 0.0055924067273736, + 0.002974368631839752, + -0.006618506275117397, + 0.0114949531853199, + -0.024138081818819046, + 0.04619097337126732, + 0.006219284608960152, + 0.009950854815542698, + -0.002170975785702467, + 0.0016430788673460484, + -0.025616193190217018, + 0.005094204097986221, + 0.002664229366928339, + 0.02504870481789112, + -0.01666834205389023, + 0.047721873968839645, + 0.006902250926941633, + 0.031858574599027634, + -0.02405889704823494, + 0.008809277787804604, + -0.023755356669425964, + -0.02442842535674572, + -0.004289161879569292, + 0.009931058622896671, + -0.014556754380464554, + 0.003490717615932226, + -0.01839720457792282, + 0.011607130989432335, + 0.042495694011449814, + 0.0011341533390805125, + 0.008934653364121914, + 0.011171616613864899, + 0.014952677302062511, + 0.01456995215266943, + 0.030908359214663506, + 0.015163836069405079, + 0.015454179607331753, + -0.009086424484848976, + 0.01111882645636797, + 0.026632394641637802, + 0.022422417998313904, + -0.01910986565053463, + -0.0037843603640794754, + -0.007793076802045107, + 0.0033884376753121614, + 0.008195598609745502, + 0.021445808932185173, + 0.0066646975465118885, + -0.024098489433526993, + 0.02442842535674572, + 0.019518984481692314, + 0.01884591579437256, + -0.04450170323252678, + 0.00869709998369217, + 0.03861565142869949, + 0.000522947811987251, + -0.0035798002500087023, + -0.0043848431669175625, + -0.022937117144465446, + -0.004355148877948523, + 0.01598207652568817, + -0.001931772450916469, + -0.03528990224003792, + -0.0038470481522381306, + 0.0052558728493750095, + -0.018436796963214874, + 0.010181809775531292, + 0.0009683607495389879, + 0.015243020839989185, + -0.03761264681816101, + 0.027899347245693207, + -0.014226819388568401, + -0.019664157181978226, + -0.02961501106619835, + 0.023399027064442635, + -0.0016422540647909045, + 0.011263998225331306, + 0.007562121842056513, + 0.001076414599083364, + 0.011574137955904007, + 0.012570543214678764, + 0.010729502886533737, + 0.004622396547347307, + 0.015454179607331753, + -0.016523171216249466, + 0.0019053776049986482, + 0.008584922179579735, + 0.0021660267375409603, + -0.03433968871831894, + -0.014913084916770458, + -0.0008644310291856527, + 0.011019846424460411, + 0.01294007059186697, + 0.04265406355261803, + 0.11814330518245697, + 0.018806323409080505, + -0.017961690202355385, + 0.0036457874812185764, + -0.0033653422724455595, + 0.03761264681816101, + 0.01305884774774313, + 0.007713892497122288, + 0.004391441587358713, + -0.057857491075992584, + 0.0013180923415347934, + -0.01668153889477253, + 0.011646723374724388, + -0.0398826040327549, + -0.016655145213007927, + -0.004533314146101475, + 0.010775693692266941, + 0.01131018903106451, + -0.0011226056376472116, + 0.009442754089832306, + 0.025312652811408043, + 0.0004010778502561152, + 0.01324361190199852, + 0.01885911449790001, + -0.032676812261343, + -0.026830356568098068, + 0.02141941338777542, + -0.018225638195872307, + -0.005179987754672766, + -0.008235190063714981, + -0.020112868398427963, + 0.003830551402643323, + -0.0592828132212162, + -0.017354607582092285, + 0.014913084916770458, + -0.020838726311922073, + -0.019545380026102066, + -0.023161472752690315, + 0.006499729584902525, + 0.013738514855504036, + -0.0014731620904058218, + 0.03373260796070099, + -0.013883686624467373, + -0.0099838487803936, + -0.007898655720055103, + -0.01596887968480587, + -0.001064866897650063, + -0.012227410450577736, + -0.03674161806702614 + ], + "metadata": { + "source": "Kreye_Marieke_BA_241_V2.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 17, + "has_images": true, + "image_count": 98, + "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", + "links": [], + "last_modified": "2025-05-05T23:00:23", + "_known_field_names": "frozenset({'is_continuation', 'sent_to', 'header_footer_type', 'email_message_id', 'filename', 'languages', 'detection_class_prob', 'sent_from', 'link_texts', 'cc_recipient', 'subject', 'image_mime_type', 'image_path', 'filetype', 'page_number', 'last_modified', 'signature', 'detection_origin', 'text_as_html', 'attached_to_filename', 'bcc_recipient', 'data_source', 'link_start_indexes', 'category_depth', 'emphasized_text_tags', 'parent_id', 'orig_elements', 'page_name', 'coordinates', 'url', 'link_urls', 'file_directory', 'links', 'table_as_cells', 'emphasized_text_contents', 'key_value_pairs', 'image_base64'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "Kreye_Marieke_BA_241_V2.pdf", + "detection_class_prob": 0.3422867953777313, + "parent_id": "e02392183bc6851689602ad4b9f6039f", + "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", + "id": "ce00eae5-7e07-454f-9e4f-f79ac36f92f4", + "processing_timestamp": "2025-05-05T23:15:46.977945", + "chunk_number": 52, + "total_chunks": 56, + "chunking_strategy": "hybrid", + "word_count": 1580 + } +} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000053.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000053.json new file mode 100644 index 0000000000000000000000000000000000000000..52aa81ab75fce0d315a6241b357e047258554de1 --- /dev/null +++ b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000053.json @@ -0,0 +1,1570 @@ +{ + "id": "61a115b2-0ff7-441a-f6d9-eb3d00000053", + "content": "[IMAGE: Cooling effect in GA4_SzenarioG 2.6 0000. onoo- 000. 0300 0400. AK -6K | N \u00e4 | anwary Feonuany March Ron May ie nr mn September Oct Novombar = December]\n\n81\nAnhangsverzeichnis\n- 8.8 St\u00fcndliche Temperatur\u00e4nderung eines Jahres f\u00fcr den Status Quo (oben) das Szenario H (unten) in Gebietsausschnitt V\n\n[IMAGE: Coaling effect \u0131n GAS_StatusQuo ox ax x ox zn zum zn 0 N Bi i 10x H 3 H 3 B & Ei \u00e4 3 3 B H & 3 = 2 F F 5 FH \u201c 3 B &]\n\n\n[IMAGE: Cooling effect in GaS_Szenariok u ax x ox zn zum zn 0 10x Vanumy. Februany March August September October November December]\n\n82\nAnhangsverzeichnis\n\n## 9 Zusammenh\u00e4nge meteorologische Daten und Evapotranspiration\n\nDatengrundlage f\u00fcr diese Aufstellungen stellen zum einen die Wetterdaten mit dem Vergleichsjahr 2005 der Plattform Meteonorm und zum anderen die Ergebnisse der Simulation des Green Water Workflows in SimStadt dar. - 9.1 St\u00fcndliche Evapotranspirationsrate des Acer Platanoides und die st\u00fcndliche Lufttemperatur\n\n[IMAGE: Standardbaum Acer Platanoides 35 40 35 30 = 30 & 25 33 - = zo 2, Fl Z g\u201d 15 \u00ae \u00b0 g 15 10 4 : \"li 5 E I - \" | 3 am I N) al 1] il ! al \u201d s Ra GG Ss RS sg Ss RJ g \u00ab E Ss \u00ae RN E ur Ef E mm ETC \u2014\u2014 Lufttemperatur]\n\n- 9.2 St\u00fcndliche Evapotranspirationsrate des Acer Platanoides und die st\u00fcndliche Niederschlagsmenge\n\n[IMAGE: Standardbaum Acer Platanoides 35 0,45 30 0,4 035 \u2014 = 3 E = 03 \u00a9 8 2 8 \u00b0 5 20 0,25 5 3 8 315 02 5 5 A fr | | 0,15 9 2 10 z 3 A 0,1 \\ | il ll a Ku | || il Il N. s KR Zu SEEN ER > SS RS & N ke S 8 E ss\u201c E er wma ETC \u2014\u2014 Niederschlag]\n\n83\nAnhangsverzeichnis\n- 9.3 Summe der t\u00e4glichen Evapotranspiration des Acer Platanoides und die t\u00e4gliche Globalstrahlung\n\n[IMAGE: Standardbaum Acer Platanoides 350 10000 000 300 8000 5250 700 \u00a9 3 & B = S 2 200 sooo 3, S \u00ae o 5000 = [4 5 a 150 000 & F 3 2 Ic] 5 100 3000 \u00a9 El 50 ||) o Mill I\u0131) IN I | | \u0131l |) ll | in lin. vun 0 8 CR Ss cJ EN r N > gF wg Rn rn ur F E E53 x o& m ETC Globalstrahlung]\n\n- 8.3 St\u00fcndliche Evapotranspirationsrate des Acer Platanoides und die st\u00fcndlich fehlende Wassermenge\n\n[IMAGE: Standardbaum Acer Platanoides 35 12000 so 10000 525 = 3 sooo 3 Hi 52 2 Fl sooo \u00a9 8 5 u 15 2 = E 2 2 20 5 3 | N RI Ss RD | I Mia. KO Ro RG R RG sg Ss se\u201c r E Fa xx mm ETC \u2014\u2014mangelndes Wasser]\n\n84\nSelbst\u00e4ndigkeitserkl\u00e4rung\n\n## Selbst\u00e4ndigkeitserkl\u00e4rung\n\n\n## nach Studien- und Pr\u00fcfungsordnung, \u00a7 27, Abs. 1\n\nHiermit erkl\u00e4re ich, Marieke Kreye, dass ich die vorliegende Bachelorthesis selbst\u00e4ndig verfasst habe. Au\u00dfer den in der Arbeit genannten Hilfsmitteln und Unterlagen habe ich keine weiteren Hilfsmittel in Anspruch genommen. Der Quellennachweis ist vollst\u00e4ndig. ## Stottgast , 49.06.2023 Ort, Datum\n\n\n## MN. Unterschri\n\n85\nKognition: Erkl\u00e4rung zur Nutzung von generativen KI-Tools in Hochschulpr\u00fcfungen\n\n## Kognition: Erkl\u00e4rung zur Nutzung von generativen KI-Tools in Hochschulpr\u00fcfungen\n\nTitel der Arbeit: Analyse der Wechselwirkungen zwischen Mobilit\u00e4t, Stadtgr\u00fcn und thermischen Geb\u00e4udeenergiebedarf anhand zweier Fallbeispiele\nAbgabedatum: 20. Juni 2024\n- 1. Verantwortungsvoller Umgang mit KI-Tools\nBest\u00e4tigen Sie die folgenden Aussagen. | Aussagen | zum | verantwortungsvollen | Umgang | mit | KI-Tools | Best\u00e4tigung: | Ja | Ich | bin | \u00fcber | die | M\u00f6glichkeiten | und | Grenzen | der | von | mir | verwendeten | \u2612 | generativen | KI-Tools | informiert. | Ich | habe | mich | vergewissert, | dass | die | von | den | KI-Tools | gelieferten | \u2612 | Ergebnisse | korrekt | sind, | oder | dass | ich | sie | korrigiert | habe. | Ich | erkenne | an, | dass | die | Verantwortung | f\u00fcr | die | Arbeit | bei | dem | Autor | \u2612 | liegt, | nicht | bei | den | KI-Tools | oder | einer | anderen | Person. |\n|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|\n\n- 2. Detaillierte T\u00e4tigkeiten, f\u00fcr die KI-Tools genutzt wurden\nGeben Sie an, welches KI-Tool Sie in welchem Umfang f\u00fcr welche T\u00e4tigkeit genutzt haben. | Verwendete | Beschreibung | der | Nutzung | der | KI-Tools | KI-Tools | (falls | (Art | der | Nutzung, | betroffene | Aktivit\u00e4t | Beschreibung | zutreffend)1 | Abschnitte | der | Arbeit, | etc.) | Ideenfindun | g | & | Konzeptuali | sierung | \u2212 | Entwicklung | von | Ideen, | Forschungszielen, | Zielsetzungen | und | Forschungsfragen | \u2212 | Identifikation | und | Definierung | relevanter | Konzepte | Literaturrec | herche | und | -analyse | \u2212 | Suche | nach | relevanter | Literatur | \u2212 | \u00dcberpr\u00fcfung | von | potenziell | relevanter | Literatur | \u2212 | Zusammenfassungen | von | relevanter | Literatur | Methodik | \u2212 | Suche | nach | einer | geeigneten | Methodik |\n|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|\n\n1 Nennen Sie die Namen der verwendeten KI-Tools, z.B. ChatGPT, DeepL Write, Microsoft 365 Copilot, Neuroflash, Grammarly, DeepL Translator, Google Translate, Perplexity, Elicit, Explainpaper, ResearchRabbit, GitHub Copilot. 86\nKognition: Erkl\u00e4rung zur Nutzung von generativen KI-Tools in Hochschulpr\u00fcfungen\n\n| \u2212 | Entwicklung | und | Anpassung | der | Methodik | an | die | Forschungsfrage(n) | Coding | \u2212 | Erstellen | und | dokumentieren | von | Code, | Algorithmen, | Software | \u2212 | Testen | und | debuggen | von | ChatGPT | Genutzt, | um | Verst\u00e4ndnisfragen | und | Toolfunktionen | der | Software | ArcGIS | Pro | zu | verstehen. | bestehendem | Code, | Algorithmen, | Software | \u2212 | Verst\u00e4ndnis | von | bestehendem | Code, | Algorithmen, | Software | Datenerheb | ung | und | - | analyse | \u2212 | Erhebung | von | Prim\u00e4r- | oder | Sekund\u00e4rdaten | \u2212 | Qualitative | Datenanalyse | (einschlie\u00dflich | Zusammenfassungen | und | Coding) | \u2212 | Quantitative | Datenanalyse | (einschlie\u00dflich | statistische | Auswertung) | \u2212 | Mathematische, | computergest\u00fctzte | oder | andere | formale | Techniken | zur | Modellierung, | Simulation | und | Analyse | Interpretati | on | und | Validierung | \u2212 | Interpretation | der | Ergebnisse | \u2212 | Ableitung | von | Implikationen | f\u00fcr | Forschung | und | Praxis | \u2212 | \u00dcberpr\u00fcfung | der | allgemeinen | Replikation/Reproduzierbark | eit | der | Ergebnisse | und | anderer | Forschungsergebnisse | Strukturieru | ng | und | Planung | des | Textes | \u2212 | Gliederung | der | Arbeit | \u2212 | Gliederung | von | Abschnitten | der | Arbeit | (z.B.", + "embedding": [ + -0.006915814243257046, + 0.002107643987983465, + 0.03868469223380089, + -0.031528983265161514, + -0.005808872636407614, + 0.010747271589934826, + -0.03635428845882416, + -0.015517743304371834, + -0.023331448435783386, + -0.036792952567338943, + 0.02504497952759266, + 0.021576792001724243, + -0.0016098631313070655, + 0.020822837948799133, + -0.003810894675552845, + -0.001982556190341711, + 0.04202950745820999, + -0.0014950564363971353, + 0.016600696370005608, + -0.016449904069304466, + 0.005743758287280798, + 0.03676553815603256, + -0.0026285576168447733, + 0.008499117568135262, + -0.00804674532264471, + 0.0007633783970959485, + 0.013351839035749435, + -0.03660103678703308, + -0.003625833196565509, + 0.008478554897010326, + 0.01416062656790018, + -0.0015995819121599197, + -0.007375040557235479, + -0.015435494482517242, + -0.016216864809393883, + -0.025360269472002983, + -0.016970818862318993, + -0.016381364315748215, + 0.010569063946604729, + -0.0060898917727172375, + 0.008115286007523537, + 0.021042170003056526, + 0.004345516674220562, + 0.0032317209988832474, + -0.005538134835660458, + 0.011720557697117329, + 0.01223461702466011, + -0.01683373562991619, + 0.0005628952058032155, + 0.01521616242825985, + 0.019506845623254776, + 0.020795421674847603, + -0.007450436241924763, + -0.0035949896555393934, + -0.018012646585702896, + 0.010075566358864307, + -0.020096300169825554, + 0.024510357528924942, + 0.004242704715579748, + 0.003642968600615859, + -0.00800561998039484, + -0.009869943372905254, + -0.026265013962984085, + 0.024578899145126343, + -0.036930035799741745, + -0.028622834011912346, + -0.042358506470918655, + -0.013872752897441387, + -0.01595640741288662, + -0.014338834211230278, + 0.03731386736035347, + 0.04817080497741699, + 0.0067821587435901165, + -0.009444987401366234, + 0.019972926005721092, + -0.012817217968404293, + 0.006497712340205908, + 0.0019568533170968294, + -0.016216864809393883, + 0.008547096513211727, + 0.029911410063505173, + -0.023770112544298172, + -0.00915711373090744, + 0.031556401401758194, + 0.013221611268818378, + 0.013420380651950836, + -0.007244812324643135, + 0.013694546185433865, + -0.016888568177819252, + -0.006000788416713476, + 0.012124950997531414, + 0.03479154780507088, + 0.02353707142174244, + 0.015805616974830627, + 0.01373567059636116, + 0.005226271692663431, + -0.0016201442340388894, + 0.021165544167160988, + -0.0033054028172045946, + -0.02143970876932144, + -0.027841463685035706, + -0.0001309780782321468, + -0.008279785513877869, + -0.005867132917046547, + -0.033914219588041306, + 0.004064497537910938, + 0.015723368152976036, + 0.019452013075351715, + 0.003783478168770671, + -0.0349012166261673, + -0.026045681908726692, + 0.030925821512937546, + -0.00535992719233036, + -0.008807552978396416, + 0.014338834211230278, + -0.02597714215517044, + 0.024729689583182335, + -0.002923285122960806, + -0.027676964178681374, + -0.01612090691924095, + 0.01291317492723465, + 0.002787916222587228, + 0.000737675407435745, + -0.021001044660806656, + 0.021631624549627304, + 0.01222776249051094, + 0.005730050150305033, + -0.026265013962984085, + -0.030651656910777092, + -0.04170050844550133, + 0.001605579280294478, + 0.002518891589716077, + 0.02135745994746685, + 0.006182422395795584, + -0.014119502156972885, + 0.03509312868118286, + -0.039781354367733, + -0.002476053312420845, + -0.028348669409751892, + -0.02516835369169712, + -0.012721260078251362, + 0.012412823736667633, + -0.01677890308201313, + -0.023180657997727394, + 0.004928117152303457, + 0.015654826536774635, + 0.016422487795352936, + 0.02740279957652092, + 0.005442176945507526, + -0.022495245561003685, + -0.0007479566265828907, + -0.016257990151643753, + 0.016998235136270523, + 0.0005311948480084538, + 0.010055004619061947, + -0.006199557799845934, + -0.002237872453406453, + 0.006549118552356958, + -0.012152367271482944, + -0.010843228548765182, + -0.0034647611901164055, + -0.013824773952364922, + 0.004225569311529398, + -0.00704604247584939, + 0.013612296432256699, + 0.011131102219223976, + 0.011281892657279968, + -0.008307201787829399, + 0.015298411250114441, + -0.010205795057117939, + -0.009472403675317764, + 0.015092787332832813, + -0.019520554691553116, + 0.03980876877903938, + 4.080347571289167e-05, + 0.022714577615261078, + -0.0007770866504870355, + 0.010541647672653198, + -0.015257286839187145, + -0.03342072293162346, + -0.019506845623254776, + -0.002894155215471983, + 0.013804212212562561, + 0.00908857211470604, + -0.01913672313094139, + -0.015517743304371834, + 0.008362035267055035, + 0.016395071521401405, + -0.002731369575485587, + 0.01174111943691969, + 0.0038177487440407276, + 0.020055174827575684, + 0.011041998863220215, + 0.004684795625507832, + -0.6215870976448059, + -0.0041536008939146996, + -0.0041947257705032825, + -0.016614403575658798, + 0.00843057595193386, + 0.0113778505474329, + 0.033146560192108154, + 0.0228242427110672, + -0.026402097195386887, + 0.036792952567338943, + 0.005702633876353502, + -0.0015010538045316935, + 0.0021796124055981636, + -0.004931544419378042, + -0.009602632373571396, + -0.03276272863149643, + -0.008656762540340424, + 0.006182422395795584, + 0.037615448236465454, + 0.0072585204616189, + -0.011281892657279968, + 0.029527578502893448, + 0.021782414987683296, + 0.009602632373571396, + 0.0070597510784864426, + 0.02141229249536991, + 0.026155348867177963, + -0.021864665672183037, + 0.029856577515602112, + 0.01912301406264305, + -0.0251272302120924, + 0.005575832445174456, + 0.008622491732239723, + 0.014640415087342262, + 0.0443873256444931, + -0.00843057595193386, + -0.010123545303940773, + 0.00023710995446890593, + 0.004592265002429485, + 0.00417073629796505, + -0.027293134480714798, + -0.00495210662484169, + 0.00991106778383255, + 0.00873215775936842, + 0.00870474148541689, + 0.005449031013995409, + 0.018615808337926865, + -0.018574684858322144, + -0.001456502010114491, + -0.029938826337456703, + 0.012968008406460285, + 0.014297708868980408, + -0.007662914227694273, + 0.0026833906304091215, + -0.00668962812051177, + 0.011309309862554073, + 0.004839013796299696, + -0.01186449360102415, + -0.002948988229036331, + 0.00314604421146214, + 0.00389999826438725, + -0.005466166418045759, + -0.006398327648639679, + -0.013838482089340687, + -0.031638652086257935, + 0.0364365391433239, + -0.02881474979221821, + 0.007107729557901621, + 0.011850785464048386, + -0.034681882709264755, + 0.006038486026227474, + 0.010802104137837887, + 0.00551071809604764, + 0.007306499406695366, + 0.01586044952273369, + 0.010589626617729664, + 0.026977844536304474, + 0.011295601725578308, + 0.020260799676179886, + 0.01609349064528942, + -0.0022601482924073935, + -0.005568978376686573, + -0.004938398487865925, + 0.003159752581268549, + 0.02350965514779091, + -0.030021077021956444, + -0.02732055075466633, + 0.011035144329071045, + -0.006230401340872049, + 0.013920731842517853, + 0.01680631935596466, + 0.007114584092050791, + -0.020850254222750664, + 0.00016664096619933844, + -0.0016527014086022973, + 0.03599787503480911, + -0.02139858528971672, + 0.021837249398231506, + 0.009369591251015663, + -0.039150774478912354, + -0.020151132717728615, + -0.0003827601613011211, + 0.02122037671506405, + -0.0004178875533398241, + 0.014270292595028877, + 0.01606607437133789, + -0.0425778366625309, + 0.00457855686545372, + 0.03676553815603256, + -0.012303157709538937, + -0.004917836282402277, + -0.01672407053411007, + 0.001263729645870626, + -0.010404564440250397, + -0.007094021420925856, + -0.023399990051984787, + 0.01746431551873684, + -0.01590157486498356, + 0.01226888783276081, + -0.017286108806729317, + 0.014379958622157574, + -0.00994533859193325, + -0.006566253490746021, + -0.02659401297569275, + -0.011679432354867458, + 0.01023321133106947, + 0.013050258159637451, + -0.020274506881833076, + -0.005630665458738804, + -0.023358864709734917, + 0.01991809345781803, + 0.010027587413787842, + 0.02818416990339756, + -0.01065816730260849, + 0.04350999742746353, + -0.009287342429161072, + 0.00909542664885521, + 0.00459569226950407, + 0.01835535280406475, + -0.03446255251765251, + -0.011672578752040863, + 0.006134443916380405, + 0.014174334704875946, + -0.008999468758702278, + -0.008444284088909626, + -0.017779605463147163, + -0.009397008456289768, + 0.019260097295045853, + 0.005188574083149433, + 0.017107900232076645, + -0.009828818030655384, + 0.0022584348917007446, + 0.006967219989746809, + 0.038355693221092224, + 0.0017837865743786097, + 0.004427765961736441, + -0.0024589181412011385, + -0.021919498220086098, + -0.036957453936338425, + -0.024044277146458626, + -0.0007111156592145562, + 0.019602803513407707, + -0.02652547135949135, + -0.010178378783166409, + -0.02884216606616974, + -0.007847975008189678, + -0.0014522181591019034, + 0.008478554897010326, + -0.026813345029950142, + -0.025648143142461777, + -0.009499819949269295, + -0.016449904069304466, + -0.0036978016141802073, + 0.005308521445840597, + -0.007457290310412645, + -0.002465772209689021, + -0.029363080859184265, + 0.0060521941632032394, + -0.01030175294727087, + -0.019424596801400185, + 0.026278723031282425, + -0.015037954784929752, + -0.005407906137406826, + 0.000653712369967252, + 0.0362994559109211, + 0.03199506551027298, + 0.049185216426849365, + 0.01597011648118496, + -0.017642522230744362, + 0.018108604475855827, + -0.005613530054688454, + 0.01893109828233719, + -0.016162032261490822, + -0.0025617298670113087, + 0.003322537988424301, + 0.002405798528343439, + 0.006751315202564001, + 0.018423892557621002, + -0.0251272302120924, + 0.025785226374864578, + 0.05329769104719162, + 0.015558868646621704, + 0.020836547017097473, + -0.014325125142931938, + 0.026333555579185486, + -0.019479429349303246, + 0.018437601625919342, + -0.004503161646425724, + 0.02518206275999546, + 0.008560804650187492, + 0.038355693221092224, + -0.023317739367485046, + -0.03980876877903938, + -0.006813002284616232, + 0.0011969018960371614, + 0.020096300169825554, + -0.010534793138504028, + -0.011172226630151272, + 0.00028401787858456373, + 0.005168011877685785, + 0.01592899113893509, + -0.0176562312990427, + 0.02588118426501751, + 0.0024229339323937893, + 0.016943402588367462, + 0.009678027592599392, + 0.0004836443404201418, + 0.0176562312990427, + 0.006943230517208576, + -0.01187134813517332, + -0.014750081114470959, + -0.012501928023993969, + 0.0041981530375778675, + 0.00045794135075993836, + 0.013214756734669209, + 0.03270789608359337, + 0.023934612050652504, + 0.0014590723440051079, + 0.03202247992157936, + 0.017752189189195633, + -0.0047259205020964146, + 0.016326529905200005, + 0.018835140392184258, + -0.01916413940489292, + 0.007539539597928524, + 0.0016535581089556217, + 0.015490327030420303, + 0.006261244881898165, + -0.02219366282224655, + 0.012070117518305779, + -0.011679432354867458, + 0.012152367271482944, + -0.004965815227478743, + -0.006970647256821394, + 0.02655288763344288, + -0.01986326090991497, + 0.010685584507882595, + 0.00013772511738352478, + 0.018889974802732468, + 0.023399990051984787, + 0.01595640741288662, + -0.012570468708872795, + -0.012282595969736576, + -0.006312651094049215, + -0.012152367271482944, + -0.0006982641643844545, + -0.02361932210624218, + -0.02588118426501751, + 7.51008838051348e-06, + -0.0016321389703080058, + 0.008224952034652233, + -0.008128995075821877, + -0.009767130948603153, + 0.006994636729359627, + 0.011960451491177082, + 0.0011977587128058076, + 0.018560975790023804, + -0.006525129079818726, + 0.016504738479852676, + 0.012118096463382244, + -0.013852191157639027, + -0.011885056272149086, + -0.007895953953266144, + 0.015010538510978222, + 0.008245514705777168, + 0.008691033348441124, + -0.007662914227694273, + 0.004797888919711113, + -0.0007034047739580274, + 0.006600524298846722, + -0.014352542348206043, + -0.0008790417923592031, + -0.023153241723775864, + -0.01972617767751217, + -0.0026816772297024727, + -0.02056238055229187, + -0.006360630039125681, + -0.015586284920573235, + 0.007381894625723362, + 0.010911770164966583, + 0.0019037338206544518, + 0.005353073123842478, + -0.00912284292280674, + 0.007292791269719601, + 0.02293390966951847, + 0.007930224761366844, + 0.010185232385993004, + -0.015051662921905518, + 0.006165287457406521, + -0.010192086920142174, + 0.0029798317700624466, + -0.008951489813625813, + -0.01487345527857542, + 0.021850956603884697, + -0.007114584092050791, + 0.013324422761797905, + -0.006631367839872837, + -0.03194023296236992, + 0.06108397990465164, + 0.006059048231691122, + -0.008190682157874107, + -0.010041296482086182, + -0.013790503144264221, + 0.0006053050747141242, + 0.012974862940609455, + 0.035476960241794586, + -0.0023098408710211515, + 0.008711595088243484, + -0.007827413268387318, + 0.005490155890583992, + -0.015545160509645939, + -0.03728645294904709, + 0.0018112030811607838, + 0.019479429349303246, + 0.006103599909693003, + 0.014448500238358974, + 0.024853063747286797, + -0.007477852515876293, + 0.013482067734003067, + -0.002791343256831169, + -0.005013793706893921, + -0.01521616242825985, + -0.001149779767729342, + 0.0029609829653054476, + -0.011789098381996155, + -0.005627238191664219, + 0.005116605665534735, + 0.04035710170865059, + 0.01976730301976204, + 0.00909542664885521, + 0.009205092675983906, + 0.03479154780507088, + 0.010253774002194405, + -0.0014787779655307531, + -0.01824568584561348, + 0.01601123996078968, + 0.003601843724027276, + 0.02057608962059021, + 0.0017940677935257554, + -0.006754742003977299, + 0.020959921181201935, + 0.004585410933941603, + 0.003944550175219774, + -0.019260097295045853, + 0.011823369190096855, + 0.02441439963877201, + 0.012734968215227127, + -0.017889272421598434, + 0.010192086920142174, + -0.010431981645524502, + -0.002299559535458684, + 0.009595777839422226, + -0.0011686286889016628, + -0.006854127161204815, + 0.0035812812857329845, + -0.01819085329771042, + -0.002652547089383006, + -0.009307904168963432, + -0.0007308212807402015, + 4.6158260374795645e-05, + -0.004516869783401489, + -0.021659040823578835, + 0.008547096513211727, + -0.006610805634409189, + -0.0425778366625309, + -0.03287239372730255, + 0.009890505112707615, + -0.004914409015327692, + -0.021919498220086098, + -0.009746568277478218, + -0.01673777773976326, + -0.006758169271051884, + -0.019643928855657578, + -0.01740948297083378, + 0.023468531668186188, + -0.02286536805331707, + -0.02660772204399109, + 0.0007659486727789044, + 0.007628643419593573, + 0.013365548104047775, + 0.01327644381672144, + -0.019520554691553116, + 0.0010289758211001754, + -0.021151836961507797, + -0.01105570700019598, + -0.01491458062082529, + 0.006891824770718813, + -0.011192789301276207, + -0.003834884148091078, + 0.0006387189496308565, + 0.001580732990987599, + 0.004479172173887491, + -0.010007025673985481, + -0.002342397812753916, + -0.011631453409790993, + -0.005654654931277037, + 0.022550078108906746, + -0.004684795625507832, + -0.005168011877685785, + 0.0006408608751371503, + 0.004438047297298908, + 0.010013879276812077, + 0.023495947942137718, + -0.02286536805331707, + 0.03731386736035347, + -0.004715639632195234, + -0.011466954834759235, + -0.015312119387090206, + -0.0019757021218538284, + 0.0073544783517718315, + -0.006041912827640772, + 0.006905532907694578, + -0.01909559778869152, + -0.014681540429592133, + 0.023358864709734917, + 0.0007959355134516954, + -0.0019157285569235682, + -0.015531451441347599, + -0.00013933154696132988, + -0.004581984132528305, + 0.007491560652852058, + 0.003718363819643855, + 0.0004553710750769824, + 0.00683356449007988, + 0.010850083082914352, + -0.038602445274591446, + 0.04043934866786003, + 0.00644287932664156, + 0.01825939491391182, + 0.028568001464009285, + -0.0019945509266108274, + 0.024825647473335266, + -0.028677668422460556, + -0.0010538219939917326, + -0.01072670891880989, + 0.002693671965971589, + -0.0034904642961919308, + -0.019575387239456177, + -0.030103325843811035, + -0.02515464648604393, + -0.021549375727772713, + 0.02588118426501751, + -0.0014607858611270785, + 0.0033722305670380592, + -0.023358864709734917, + 0.006456587463617325, + 0.0032831267453730106, + 0.018862558528780937, + 0.03281756117939949, + -0.028732500970363617, + -0.01691598631441593, + -0.0024126528296619654, + 0.0072790831327438354, + 0.007052896544337273, + -0.02980174496769905, + -0.026964135468006134, + -0.020260799676179886, + -0.0022738566622138023, + -0.02352336421608925, + -0.03756061568856239, + -0.006271526217460632, + -0.00954779889434576, + 0.028650250285863876, + 0.004852721933275461, + 0.03139190003275871, + 0.007889100350439548, + 0.03753320127725601, + 0.005246834363788366, + -0.0067821587435901165, + 0.0032420021016150713, + 0.0003225723630748689, + -0.00529824011027813, + -0.02599084936082363, + 0.020384173840284348, + -0.006220120470970869, + 0.003219726262614131, + 0.009616340510547161, + -0.003937696106731892, + 0.004537431988865137, + 0.04671772941946983, + -0.011597182601690292, + -0.035476960241794586, + -0.011227060109376907, + -0.04035710170865059, + -0.008224952034652233, + 0.03451738506555557, + 0.0005204852786846459, + 0.00909542664885521, + -0.021878372877836227, + -0.021892081946134567, + 0.04496307298541069, + 0.004811597056686878, + -0.010212649591267109, + -0.0027707808185368776, + 0.02143970876932144, + -0.02449665032327175, + 0.010377148166298866, + 0.006062475498765707, + -0.02054867334663868, + -0.006891824770718813, + -0.011035144329071045, + -0.015024246647953987, + -0.04962388053536415, + 0.014983121305704117, + -0.021946914494037628, + 0.010123545303940773, + 0.0005247691296972334, + -0.000279305677395314, + -0.006730752531439066, + -0.0039205607026815414, + 0.0036326872650533915, + 0.0009047447820194066, + 0.013118798844516277, + -0.011953597888350487, + -0.011926180683076382, + -0.011158518493175507, + 0.007423019502311945, + -0.019232681021094322, + 0.043729331344366074, + 0.004177590366452932, + 0.008821261115372181, + 0.027622131630778313, + 0.004030226729810238, + 0.0011926181614398956, + 0.014078376814723015, + -0.005425041541457176, + 0.04669031500816345, + 0.011665724217891693, + 0.05392827093601227, + 0.03281756117939949, + -0.015010538510978222, + -0.009328466840088367, + -0.030953237786889076, + -0.009561507031321526, + -0.01740948297083378, + 0.007813705131411552, + 0.009465549141168594, + -0.002693671965971589, + -0.01373567059636116, + 0.0059151118621230125, + 0.009362737648189068, + 0.002032248768955469, + -0.0038280298467725515, + 0.04655323177576065, + 0.030295241624116898, + 0.01740948297083378, + -0.02360561303794384, + 0.0024040851276367903, + -0.017053067684173584, + -0.0008134992094710469, + -0.003098065499216318, + 0.004136465489864349, + -0.010322315618395805, + -0.0037252181209623814, + 0.006144724786281586, + 0.04181017354130745, + 0.00803989078849554, + 0.004592265002429485, + -0.00045065884478390217, + -0.025524768978357315, + 0.011288747191429138, + -0.002500042784959078, + -0.004869857337325811, + 0.02133004367351532, + -0.014777498319745064, + 0.03879435732960701, + -0.007292791269719601, + -0.01893109828233719, + -0.009705443866550922, + -0.025264311581850052, + -0.00795078743249178, + 0.0035007453989237547, + -0.008841823786497116, + 0.016888568177819252, + -0.014448500238358974, + -0.019232681021094322, + -0.006480576936155558, + 0.01597011648118496, + 0.007889100350439548, + -0.01406466867774725, + 0.002145341830328107, + -0.012851487845182419, + -0.004674514755606651, + 0.0005359070491977036, + 0.011329871602356434, + -0.0037731968332082033, + -0.016820028424263, + -0.012001576833426952, + 0.0007488133851438761, + 0.004749909974634647, + -0.010411418974399567, + -0.010445689782500267, + 0.011233914643526077, + -0.058287497609853745, + 0.016943402588367462, + 0.011117394082248211, + -0.003457907121628523, + 0.0318305641412735, + -0.00882811564952135, + -0.02216624654829502, + -0.027608424425125122, + 0.019931800663471222, + -0.029993660748004913, + 0.03358522430062294, + 0.031693484634160995, + -0.0219880398362875, + -0.002964409999549389, + 0.010000171139836311, + -0.008457993157207966, + -0.019356055185198784, + 0.03342072293162346, + 0.005983653012663126, + -0.03791702911257744, + -0.004821878392249346, + 0.013249027542769909, + 0.02202916517853737, + -0.0175876896828413, + -0.013358693569898605, + 0.010445689782500267, + 0.008643054403364658, + -0.021151836961507797, + -0.012748676352202892, + -0.009863088838756084, + 0.020068883895874023, + -0.0017375212628394365, + -0.0017855000915005803, + 0.02130262739956379, + -0.020384173840284348, + 0.015613701194524765, + 0.003080930095165968, + -0.0005920252297073603, + -0.039123356342315674, + -0.013632859103381634, + -0.013509484007954597, + -0.0032505698036402464, + 0.015874158591032028, + 0.00026088522281497717, + 0.0219880398362875, + -0.0205897968262434, + -0.03514796495437622, + -0.025757810100913048, + 0.015641117468476295, + -0.001589300693012774, + 0.005819153971970081, + -0.0028136190958321095, + 0.009321613237261772, + -0.008553950116038322, + 0.015449202619493008, + 0.0030449458863586187, + -0.017176441848278046, + 0.01337240170687437, + -0.005414760205894709, + -0.04817080497741699, + 0.008663616143167019, + 0.013509484007954597, + 0.02220737189054489, + 0.020973628386855125, + -0.02744392491877079, + -0.013612296432256699, + 0.005736904218792915, + -0.03564146161079407, + -0.02670367807149887, + -0.015092787332832813, + 0.005802018567919731, + -0.002693671965971589, + 0.01409208495169878, + -0.015627410262823105, + 0.024949021637439728, + -0.004557994659990072, + -0.0031837420538067818, + -0.04866430163383484, + -0.006192703731358051, + 0.005778029095381498, + -0.00028358949930407107, + 0.028348669409751892, + -0.007265374530106783, + -0.023070991039276123, + -0.00649428553879261, + 0.023372573778033257, + -0.021549375727772713, + -0.010466252453625202, + 0.017779605463147163, + -0.005099470727145672, + 0.0072722285985946655, + -0.014215459115803242, + 0.014941996894776821, + -0.0022224506828933954, + 0.008615638129413128, + 0.0072585204616189, + -0.03246114403009415, + 0.00704604247584939, + 0.028376085683703423, + 0.025689268484711647, + -0.04658064618706703, + 0.012549906969070435, + 0.014270292595028877, + -0.015092787332832813, + -0.006566253490746021, + 0.016189448535442352, + -0.028540585190057755, + 0.009726006537675858, + -0.019452013075351715, + 0.03276272863149643, + 0.028540585190057755, + 0.0075121233239769936, + 0.004979523364454508, + 0.032378897070884705, + -0.023290323093533516, + -0.007704038638621569, + -0.005233126226812601, + -0.013488922268152237, + 0.0011703422060236335, + 0.029445329681038857, + -0.008259222842752934, + 0.011960451491177082, + -0.013105090707540512, + 0.024071693420410156, + -0.022467829287052155, + 0.0028838738799095154, + -0.007752017583698034, + -0.02895183302462101, + -0.022440411150455475, + 0.04109734669327736, + 0.03273531049489975, + -0.025456227362155914, + 0.010226357728242874, + -0.006597097497433424, + -0.006432598456740379, + -0.0032882674131542444, + -0.022234788164496422, + -0.0055963946506381035, + -0.029143748804926872, + -0.013626004569232464, + 0.0020545246079564095, + -0.00019309361232444644, + 0.012220908887684345, + 0.012652718462049961, + -0.00951352808624506, + -0.02043900638818741, + 0.007114584092050791, + 0.1831422746181488, + -0.009691735729575157, + -0.006926095578819513, + 0.020068883895874023, + -0.019493136554956436, + -0.02522318810224533, + 0.0057060606777668, + -0.012378553859889507, + 0.004067924339324236, + 0.02453777566552162, + -0.024962730705738068, + 0.005010366905480623, + 0.010671875439584255, + 0.0035264482721686363, + 0.017779605463147163, + -0.009739714674651623, + -0.03130965307354927, + 0.013221611268818378, + -0.02438698336482048, + 0.017820730805397034, + 0.04191984236240387, + -0.02660772204399109, + -0.003749207593500614, + -0.004390068352222443, + 0.03045974113047123, + -0.020877670496702194, + -0.0062475367449223995, + -0.0022053152788430452, + 0.03418838605284691, + -0.002810192061588168, + -0.02056238055229187, + 0.02359190583229065, + 0.0039959559217095375, + -0.004105621948838234, + -0.034736715257167816, + 0.008615638129413128, + 0.027635840699076653, + -0.007464144378900528, + 0.028622834011912346, + 0.01520245335996151, + -0.003906852565705776, + -0.007162562571465969, + -0.0026182765141129494, + -0.02293390966951847, + -0.01222776249051094, + 0.03865727782249451, + -0.009198238141834736, + -0.002774207852780819, + -0.03279014304280281, + -0.0053427922539412975, + -0.027937421575188637, + -0.0007959355134516954, + 0.0017075344221666455, + 0.031008070334792137, + -0.02435956709086895, + -0.003872581757605076, + 0.01102829072624445, + -0.005647800862789154, + 0.01258417684584856, + 0.0167514868080616, + -0.02982916124165058, + 0.03194023296236992, + -0.012145512737333775, + -0.001884884899482131, + -0.013646567240357399, + -0.006377765443176031, + -0.014119502156972885, + -0.002885587513446808, + -0.000379761477233842, + -0.010706146247684956, + -0.0035435836762189865, + -0.014311417005956173, + -0.035449545830488205, + 0.03262564539909363, + -0.030624238774180412, + -0.022440411150455475, + 0.000827207462862134, + 0.027293134480714798, + 0.014558166265487671, + 0.020096300169825554, + -0.014188042841851711, + 0.030295241624116898, + -0.02501756325364113, + -0.02278311736881733, + -0.0051405951380729675, + -0.028019672259688377, + 0.018889974802732468, + -0.000743244425393641, + -0.014078376814723015, + -0.014352542348206043, + -0.02220737189054489, + 0.00701862620189786, + -0.00045151563244871795, + -0.007834266871213913, + 0.004444901365786791, + -0.0333658903837204, + 0.021110711619257927, + 0.017231276258826256, + 0.0011223632609471679, + 0.016312822699546814, + -0.023345157504081726, + 0.0608646497130394, + 0.026210181415081024, + -0.002614849479869008, + -0.02224849723279476, + -0.013139361515641212, + -0.020014051347970963, + 0.01610719785094261, + 0.0034733288921415806, + -0.007299645338207483, + 0.0057163420133292675, + -0.020000342279672623, + 0.014558166265487671, + 0.005407906137406826, + -0.011720557697117329, + 0.004910982213914394, + -0.010884353891015053, + -0.016216864809393883, + 0.015229870565235615, + -0.02043900638818741, + -0.0039205607026815414, + 0.0019791291560977697, + 0.004554567392915487, + 0.014941996894776821, + 0.0189859326928854, + -0.03816378116607666, + -0.040028102695941925, + 0.0022310183849185705, + -0.013249027542769909, + -0.0051440224051475525, + 0.030980654060840607, + -0.011007728055119514, + 0.009650611318647861, + -0.008547096513211727, + 0.00951352808624506, + 0.013406672514975071, + -0.007786288391798735, + -0.03501088172197342, + 0.0002446066646371037, + 0.013646567240357399, + -0.0009390154154971242, + -0.005976798944175243, + 0.01176853571087122, + 0.006038486026227474, + 0.033201392740011215, + -0.014736372977495193, + 0.008985760621726513, + 0.008780136704444885, + -0.042194005101919174, + -0.015791907906532288, + 0.00045665621291846037, + -0.001382820075377822, + 0.006192703731358051, + 0.02363302931189537, + 0.024784523993730545, + 0.007327061612159014, + -0.02889700047671795, + -0.031117737293243408, + 0.015654826536774635, + 0.007135146297514439, + -0.02740279957652092, + 0.006007642485201359, + -0.004270120989531279, + -0.025785226374864578, + 0.010966603644192219, + 0.009253071621060371, + -0.17513665556907654, + -0.006336640566587448, + 0.002769067417830229, + -0.033256225287914276, + -0.0012791514163836837, + 0.011734265834093094, + 0.02442810870707035, + 0.0020939358510077, + 0.004777326714247465, + -0.004510015714913607, + 0.018876265734434128, + 0.00042602684698067605, + -0.01292002946138382, + -0.010781541466712952, + 0.00879384484142065, + 0.015819326043128967, + -0.035476960241794586, + 0.03254339471459389, + 0.03457221761345863, + 0.02581264264881611, + 0.008958344347774982, + -0.020685754716396332, + 0.008745865896344185, + -0.006864408031105995, + 0.007100875489413738, + 0.011617745272815228, + -0.01376994140446186, + 0.004629962611943483, + -0.008677325211465359, + -0.002810192061588168, + -0.015668533742427826, + -0.009211946278810501, + 0.011227060109376907, + 0.0006181565695442259, + 0.0013279870618134737, + -0.004126184619963169, + -0.004801316186785698, + -0.0028393222019076347, + -4.907662150799297e-05, + 0.043098751455545425, + 0.024661149829626083, + 0.00400280999019742, + -0.015476618893444538, + 0.019438304007053375, + -0.029472745954990387, + 0.00123117258772254, + 0.017834438011050224, + 0.0041124760173261166, + 0.00400966452434659, + -0.008622491732239723, + 0.019506845623254776, + -0.02433215081691742, + -0.00513716833665967, + 0.01098716538399458, + -0.0072379582561552525, + 0.012447094544768333, + 0.0025702975690364838, + 0.007745163515210152, + -0.0021881801076233387, + 0.016257990151643753, + 0.0016201442340388894, + -0.006559399422258139, + 0.02069946378469467, + 0.007183125242590904, + 0.009499819949269295, + -0.029116332530975342, + -0.012282595969736576, + 0.024578899145126343, + -0.017135318368673325, + 0.005096043460071087, + -0.024099111557006836, + -0.01983584277331829, + 0.01217292994260788, + -0.006364056840538979, + 0.0024931887164711952, + -0.005017220973968506, + -0.032515980303287506, + 0.013941294513642788, + 0.03180314972996712, + 0.006076183635741472, + -0.013454651460051537, + 0.06097431480884552, + -0.018094895407557487, + -0.016230572015047073, + -0.012145512737333775, + -0.009650611318647861, + 0.010246919468045235, + 0.013831628486514091, + 0.005452458281069994, + 0.006360630039125681, + 0.010192086920142174, + -0.017738480120897293, + -0.010617042891681194, + -0.010939186438918114, + -0.0023475384805351496, + 0.004873284138739109, + -0.0002180469164159149, + 0.005579259246587753, + 0.01824568584561348, + -0.010966603644192219, + 0.016326529905200005, + -0.0024177932646125555, + -0.03353038802742958, + -0.010349731892347336, + 0.01069243811070919, + -0.014379958622157574, + -0.0018163436325266957, + 0.011405267752707005, + 0.037067119032144547, + -0.03890402615070343, + -0.018684349954128265, + -0.020164841786026955, + 0.015504035167396069, + -0.0019979779608547688, + 0.014722664840519428, + 0.030679073184728622, + 0.006528555881232023, + -0.02508610486984253, + -0.007114584092050791, + 0.01295430026948452, + 0.053681522607803345, + -0.019465720281004906, + 0.001575592439621687, + 0.0084100142121315, + -0.011610891669988632, + -0.030158158391714096, + -0.0882263258099556, + -0.014256584458053112, + 0.027978546917438507, + 0.043976079672575, + 0.02677221968770027, + 0.015366952866315842, + -0.0041124760173261166, + 0.01753285713493824, + 8.3374026871752e-05, + 0.02733425796031952, + -0.034681882709264755, + -0.002625130582600832, + -0.005092616192996502, + -0.017231276258826256, + 0.014681540429592133, + -0.014002981595695019, + -0.008547096513211727, + -0.03969910368323326, + -0.024647440761327744, + 0.0322418138384819, + 0.006381192244589329, + -0.009355883114039898, + -0.011898764409124851, + -0.010027587413787842, + -0.008060453459620476, + 0.0010598193621262908, + -0.031090321019291878, + 0.026977844536304474, + 0.017162734642624855, + 0.01219349168241024, + 0.015133912675082684, + -0.017697356641292572, + 0.012063263915479183, + -0.032269228249788284, + -0.012248325161635876, + -0.022522661834955215, + 0.012426531873643398, + -0.03180314972996712, + 0.020863963291049004, + -0.033804554492235184, + -0.0003401360590942204, + -0.000705118291079998, + 0.0396442711353302, + -0.032515980303287506, + 0.015161328949034214, + -0.019534261897206306, + -0.023838654160499573, + 0.010493668727576733, + -0.011576620861887932, + 0.0018026353791356087, + -0.027197176590561867, + -0.03750578314065933, + 0.0051817200146615505, + -0.0019671344198286533, + 0.014928288757801056, + 0.019218971952795982, + 0.010850083082914352, + 0.005188574083149433, + -0.021617917343974113, + -0.00883497018367052, + -0.008149556815624237, + 0.010802104137837887, + -0.024633731693029404, + 0.018588392063975334, + 0.006658784579485655, + -0.004815024323761463, + -0.02971949428319931, + -0.004479172173887491, + 0.0037115097511559725, + -0.004708785098046064, + -0.029966242611408234, + 0.003423636546358466, + 0.005644373595714569, + 0.004640243947505951, + -0.04781439155340195, + -0.00723110418766737, + -0.04290683567523956, + -0.014900872483849525, + -0.0011403553653508425, + -0.02364673838019371, + -0.02446923404932022, + -0.037834782153367996, + 0.005404479335993528, + -0.008505972102284431, + 0.02594972588121891, + 0.010706146247684956, + 0.008314056321978569, + -0.02281053550541401, + 0.01023321133106947, + -0.033146560192108154, + -0.0023663872852921486, + 8.888945740181953e-05, + 0.014201750978827477, + 0.0028136190958321095, + -0.012214054353535175, + 0.0016621258109807968, + -0.004643671214580536, + -0.0037800511345267296, + 0.023331448435783386, + -0.0009510101517662406, + -0.023057283833622932, + -0.003923987504094839, + -0.05047379061579704, + 0.010850083082914352, + 0.010377148166298866, + 0.0015173323918133974, + -0.015435494482517242, + 0.0017837865743786097, + 0.012207199819386005, + 0.016326529905200005, + 0.0002915145887527615, + 0.02219366282224655, + -0.019191555678844452, + 0.011179081164300442, + -0.019273804500699043, + -0.03254339471459389, + -0.011110539548099041, + -0.010137253440916538, + -0.0027296561747789383, + 0.016257990151643753, + 0.01742319017648697, + 0.005623811390250921, + -0.019356055185198784, + 0.02736167423427105, + -0.0025051834527403116, + 0.026127932593226433, + -0.01590157486498356, + 0.022426703944802284, + 0.013639712706208229, + -0.017107900232076645, + -0.006357202772051096, + 0.007937079295516014, + -0.0041536008939146996, + 0.008958344347774982, + 0.002969550434499979, + 0.007539539597928524, + -0.0025206052232533693, + -0.007505269255489111, + 0.021028460934758186, + 0.020247090607881546, + 0.0015910142101347446, + 0.05801333114504814, + -0.030212992802262306, + -0.030596822500228882, + 0.017875563353300095, + -0.018547268584370613, + -0.019218971952795982, + 0.001489059068262577, + 0.016929693520069122, + 0.003749207593500614, + 0.01687486097216606, + -0.025716684758663177, + 0.029938826337456703, + 0.007320207543671131, + 0.00032707038917578757, + 0.0014282286865636706, + 0.012419678270816803, + -0.02503127232193947, + 0.024565191939473152, + -0.00037504927604459226, + -0.0017700783209875226, + -0.01739577390253544, + 0.030212992802262306, + -0.007752017583698034, + 0.02667626179754734, + -0.0018437601393088698, + 0.012796655297279358, + -0.012686989270150661, + -0.03605270758271217, + -0.010651313699781895, + 0.003971966449171305, + -0.018780307844281197, + -0.002666255459189415, + -0.027937421575188637, + 0.005387343931943178, + 0.029225997626781464, + 0.01413321029394865, + 0.009465549141168594, + 0.0019568533170968294, + 0.027046386152505875, + 0.008252369239926338, + 0.03873952478170395, + 0.02906149812042713, + 0.019424596801400185, + -0.017011944204568863, + 0.01973988674581051, + 0.02516835369169712, + 0.01059648022055626, + -0.02057608962059021, + 0.0002471769694238901, + -0.003848592285066843, + 0.01288575865328312, + -0.0021110710222274065, + 0.010041296482086182, + -0.002009972697123885, + -0.02128891833126545, + 0.02969207800924778, + 0.008773282170295715, + 0.006775304675102234, + -0.045429155230522156, + 0.009650611318647861, + 0.032488562166690826, + 0.002899295650422573, + 0.0021196387242525816, + 0.0009561507031321526, + -0.02060350589454174, + -0.006148152053356171, + 0.03712195158004761, + -0.0020716600120067596, + -0.05540876463055611, + 0.01594270020723343, + 0.005987079814076424, + -0.006364056840538979, + -0.001274867681786418, + 0.0046470980159938335, + 0.0068232836201786995, + -0.027937421575188637, + 0.037642866373062134, + -0.033146560192108154, + -0.021782414987683296, + -0.029472745954990387, + 0.02127521112561226, + 0.02056238055229187, + 0.01687486097216606, + 0.018423892557621002, + -0.004259840119630098, + 0.014002981595695019, + 0.0021179253235459328, + 0.018807724118232727, + -0.01673777773976326, + 0.017382066696882248, + -0.019438304007053375, + 0.01063075102865696, + 0.0037354992236942053, + -0.02360561303794384, + -0.024866772815585136, + -0.02741650864481926, + 0.0015618841862305999, + 0.013509484007954597, + 0.01687486097216606, + 0.028677668422460556, + 0.1122431829571724, + 0.039781354367733, + -0.01665552891790867, + 0.008396306075155735, + -0.008307201787829399, + 0.030185574665665627, + 0.015065371058881283, + 0.0020562380086630583, + 0.003523021237924695, + -0.0455114021897316, + 0.0011643448378890753, + -0.02131633460521698, + 0.018807724118232727, + -0.04290683567523956, + -0.013865899294614792, + -0.0031905961222946644, + 0.01295430026948452, + -0.0063297864980995655, + 0.0008344899397343397, + 0.012851487845182419, + 0.02590860053896904, + 0.005993933882564306, + 0.014585582539439201, + 0.022604910656809807, + -0.024510357528924942, + -0.019452013075351715, + 0.03438030183315277, + -0.026827054098248482, + -0.011288747191429138, + 2.875520476663951e-05, + -0.023276615887880325, + -0.007423019502311945, + -0.07210541516542435, + -0.029417913407087326, + 0.004345516674220562, + -0.013982418924570084, + -0.0005097757093608379, + -0.02670367807149887, + 5.617171336780302e-05, + 0.011878201737999916, + 0.005952809471637011, + 0.027060093358159065, + -0.02368786372244358, + -0.01102143619209528, + 0.007450436241924763, + -0.020877670496702194, + -0.006185849662870169, + -0.017025651410222054, + -0.040631264448165894 + ], + "metadata": { + "source": "Kreye_Marieke_BA_241_V2.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 17, + "has_images": true, + "image_count": 98, + "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", + "links": [], + "last_modified": "2025-05-05T23:00:23", + "_known_field_names": "frozenset({'is_continuation', 'sent_to', 'header_footer_type', 'email_message_id', 'filename', 'languages', 'detection_class_prob', 'sent_from', 'link_texts', 'cc_recipient', 'subject', 'image_mime_type', 'image_path', 'filetype', 'page_number', 'last_modified', 'signature', 'detection_origin', 'text_as_html', 'attached_to_filename', 'bcc_recipient', 'data_source', 'link_start_indexes', 'category_depth', 'emphasized_text_tags', 'parent_id', 'orig_elements', 'page_name', 'coordinates', 'url', 'link_urls', 'file_directory', 'links', 'table_as_cells', 'emphasized_text_contents', 'key_value_pairs', 'image_base64'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "Kreye_Marieke_BA_241_V2.pdf", + "detection_class_prob": 0.3422867953777313, + "parent_id": "e02392183bc6851689602ad4b9f6039f", + "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", + "id": "ce00eae5-7e07-454f-9e4f-f79ac36f92f4", + "processing_timestamp": "2025-05-05T23:15:46.977945", + "chunk_number": 53, + "total_chunks": 56, + "chunking_strategy": "hybrid", + "word_count": 1158 + } +} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000054.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000054.json new file mode 100644 index 0000000000000000000000000000000000000000..a862866ebd916b3bf542504c0622a363bb394800 --- /dev/null +++ b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000054.json @@ -0,0 +1,1570 @@ +{ + "id": "61a115b2-0ff7-441a-f6d9-eb3d00000054", + "content": "86\nKognition: Erkl\u00e4rung zur Nutzung von generativen KI-Tools in Hochschulpr\u00fcfungen\n\n| \u2212 | Entwicklung | und | Anpassung | der | Methodik | an | die | Forschungsfrage(n) | Coding | \u2212 | Erstellen | und | dokumentieren | von | Code, | Algorithmen, | Software | \u2212 | Testen | und | debuggen | von | ChatGPT | Genutzt, | um | Verst\u00e4ndnisfragen | und | Toolfunktionen | der | Software | ArcGIS | Pro | zu | verstehen. | bestehendem | Code, | Algorithmen, | Software | \u2212 | Verst\u00e4ndnis | von | bestehendem | Code, | Algorithmen, | Software | Datenerheb | ung | und | - | analyse | \u2212 | Erhebung | von | Prim\u00e4r- | oder | Sekund\u00e4rdaten | \u2212 | Qualitative | Datenanalyse | (einschlie\u00dflich | Zusammenfassungen | und | Coding) | \u2212 | Quantitative | Datenanalyse | (einschlie\u00dflich | statistische | Auswertung) | \u2212 | Mathematische, | computergest\u00fctzte | oder | andere | formale | Techniken | zur | Modellierung, | Simulation | und | Analyse | Interpretati | on | und | Validierung | \u2212 | Interpretation | der | Ergebnisse | \u2212 | Ableitung | von | Implikationen | f\u00fcr | Forschung | und | Praxis | \u2212 | \u00dcberpr\u00fcfung | der | allgemeinen | Replikation/Reproduzierbark | eit | der | Ergebnisse | und | anderer | Forschungsergebnisse | Strukturieru | ng | und | Planung | des | Textes | \u2212 | Gliederung | der | Arbeit | \u2212 | Gliederung | von | Abschnitten | der | Arbeit | (z.B. | Stichpunktliste | pro | Abschnitt) | Generierun | g | des | Textes | \u2212 | Generierung | von | Text | zu | verschiedenen | Themen | in | verschiedenen | Abschnitten | der | Arbeit | (einschlie\u00dflich | Titel | und | Zusammenfassungen) | \u00dcbersetzen | \u2212 | \u00dcbersetzung | der | von | den | DeepL | Teilweise | zur | \u00dcbersetzung | von |\n|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|\n\n\n## von Text\n\n\n## Autor:innen verfassten\n\n\n## Texte\n\n\n## Translator\n\n\n## Fachliteratur genutzt. ## \u2212 \u00dcbersetzung der von\n\n\n## anderen geschriebenen\n\n\n## Texten\n\n\n## \u00dcberpr\u00fcfun\n\n\n## \u00dcberpr\u00fcfun\n\n\n## g &\n\n\n## Editierung\n\n\n## des Textes\n\n\u2212 Kritische \u00dcberpr\u00fcfung,\n\n## Feedback oder\n\n\u00dcberarbeitung des Inhalts,\n\n## der Organisation oder der\n\n\n## Grammatik der Arbeit\n\n\n## ChatGPT\n\n\n## Zur Umformulierung selbst\n\n\n## geschriebener Textpassagen\n\n\n## genutzt. ## \u2212 Korrekturlesen\n\n87\nKognition: Erkl\u00e4rung zur Nutzung von generativen KI-Tools in Hochschulpr\u00fcfungen\n\n| \u2212 | Umformulierung | oder | Paraphrasierung | von | Text | \u2212 | K\u00fcrzung/Erweiterung | des | Textes | Pr\u00e4sentatio | n | \u2212 | Strukturierung | einer | Pr\u00e4sentation | \u00fcber | die | Arbeit | \u2212 | F\u00fcllen | einer | Pr\u00e4sentation | \u00fcber | die | Arbeit | mit | Inhalt | Quellenver | waltung | \u2212 | Erstellen | der | Referenzliste | \u2212 | Formatierung | der | Referenzen | Weitere | Aktivit\u00e4ten |\n|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|\n\nGibt es sonst noch etwas, das Sie bez\u00fcglich der Nutzung von KI-Tools angeben wollen, welches Ihre eigenst\u00e4ndige, definierbare Leistung bei der Erstellung dieser Arbeit hervorheben oder einschr\u00e4nken w\u00fcrde? ## Nein. - 3. Unterschrift(en) des / der Autor:in / Autor:innen\n\n| Autor:in | Nachname, | Matrikulationsnummer | Datum | Unterschrift | Vorname(n) | 1002127 | Marieke | Kreye |\n|---|---|---|---|---|---|---|---|---|\n\n1\n88\n\n## Kognition: Erkl\u00e4rung zur Nutzung von generativen KI-Tools in Hochschulpr\u00fcfungen\n\nHintergrund zu dieser Erkl\u00e4rung: Bewertungen an Universit\u00e4ten m\u00fcssen es erm\u00f6glichen, die Leistung der Studierenden zu ermitteln. Zu diesem Zweck muss die Leistung der Studierenden, die in einer Arbeit enthalten ist, von der Leistung anderer unterschieden werden. Es ist auch notwendig, die verwendeten KI-Tools zu verstehen. Solange die generative KI in der Hochschullehre noch relativ neu ist, muss ihr Einsatz im Detail erkl\u00e4rt werden. Dies dient der Bewertung der Leistung und gibt den Studierenden die Sicherheit, dass ihre Arbeit nicht im Nachhinein vor dem Hintergrund anderer Normen neu bewertet wird. Quellen: Die Inhalte in Abschnitt 3 basieren zum Teil auf der CRediT Contributor Role Taxonomy von Allen et al. (2019) und den ChatGPT-Richtlinien von Gimpel et al. (2023a, 2023b). Weiterf\u00fchrende Literatur: Gimpel et al. (2023a) bietet einen \u00dcberblick \u00fcber generative KI in der Hochschullehre. Gimpel et al. (2023b) bietet eine Schritt-f\u00fcr-Schritt-Anleitung f\u00fcr den Einstieg in ChatGPT. ## Quellen:\n\n- Allen, L., O\u2019Connell, A., & Kiermer, V. (2019). How can we ensure visibility and diversity in research contributions? How the Contributor Role Taxonomy (CRediT) is helping the shift from authorship to contributorship. Learned Publishing, 32(1), 71-74\n- Gimpel, H., Hall, K., Decker, S., Eymann, T., L\u00e4mmermann, L., M\u00e4dche, A., R\u00f6glinger, M., Ruiner, C., Schoch, M., Schoop, M., Urbach, N., Vandirk, S. (2023a). Unlocking the Power of Generative AI Models and Systems such as GPT-4 and ChatGPT for Higher Education: A Guide for Students and Lecturers. University of Hohenheim, March 20, 2023. https://digital.uni-\n- hohenheim.de/fileadmin/einrichtungen/digital/Generative_AI_and_ChatGPT_in_Higher_Education.pdf\n- Gimpel, H., Jung, C., Utz, L., W\u00f6hl, M. (2023b).", + "embedding": [ + -0.0059084901586174965, + -0.00551924854516983, + 0.016208425164222717, + -0.036967985332012177, + -0.0069065457209944725, + 0.01607535220682621, + -0.013500367291271687, + -0.01509060338139534, + -0.019362282007932663, + -0.05759447067975998, + 0.015130525454878807, + 0.019362282007932663, + -0.008031021803617477, + -0.022835515439510345, + -0.011105033569037914, + 0.02211691625416279, + 0.046123482286930084, + 0.005595766007900238, + 0.01302795484662056, + -0.005213177762925625, + -0.014917606487870216, + 0.026934199035167694, + -0.0035530785098671913, + -0.010925384238362312, + -0.0006491520907729864, + 0.004454655572772026, + 0.014651458710432053, + -0.026015987619757652, + -0.011098380200564861, + 0.0029841866344213486, + 0.020440181717276573, + -0.00877623725682497, + -0.01801823265850544, + -0.006553899496793747, + -0.01996111497282982, + 0.0015553035773336887, + 0.01179701928049326, + -0.009741024114191532, + 0.00836370699107647, + 0.03451942279934883, + 0.0007560272351838648, + 0.016421344131231308, + 0.0030307627748697996, + -0.02648174576461315, + 3.799889236688614e-05, + 0.015157139860093594, + -0.005901836324483156, + -0.007478764746338129, + -0.012149665504693985, + 0.013620134443044662, + 0.025204235687851906, + 0.017139945179224014, + 0.001961179543286562, + 0.003985569346696138, + -0.0030124650802463293, + -0.0022190106101334095, + -0.015197062864899635, + 0.025417152792215347, + -0.003077338682487607, + 0.001097861328162253, + -0.020120805129408836, + -0.026495054364204407, + -0.00965452566742897, + 0.01529021468013525, + -0.011510909534990788, + -0.010206783190369606, + -0.0320974737405777, + 0.005276388023048639, + 0.0030839922837913036, + -0.0030873192008584738, + 0.01684718206524849, + 0.00734569039195776, + 0.020586563274264336, + -0.021052323281764984, + 0.04383460804820061, + 0.00695977546274662, + 0.016088658943772316, + -0.026202291250228882, + -0.009155497886240482, + 0.014970836229622364, + 0.020799482241272926, + -0.01264203991740942, + -0.019269129261374474, + 0.02935614623129368, + -0.01467807311564684, + -0.011590754613280296, + 0.0014737957390025258, + 0.03316206485033035, + -0.0006686973501928151, + -0.014451847411692142, + -0.0041020093485713005, + 0.04119974374771118, + 0.01813800074160099, + 0.021917304024100304, + -0.010233398526906967, + 0.013507021591067314, + -0.004777360241860151, + 0.007418881170451641, + -0.0030374163761734962, + -0.03396051004528999, + -0.011031842790544033, + 0.005718859378248453, + -0.011650637723505497, + -0.015050681307911873, + -0.025922834873199463, + 0.011371182277798653, + -0.012143012136220932, + -0.0017831929726526141, + 0.008416936732828617, + -0.017605703324079514, + -0.019362282007932663, + 0.03449280560016632, + -0.015024065971374512, + -0.023793648928403854, + 0.03324190899729729, + -0.03513156250119209, + 0.04210464656352997, + -0.014957529492676258, + -0.014185699634253979, + -0.017166558653116226, + 0.02746649459004402, + -0.008995809592306614, + 0.01785854436457157, + -0.013393908739089966, + 0.01956189237535, + 0.02638859488070011, + 0.007079542148858309, + -0.01628826931118965, + -0.023913417011499405, + -0.022689133882522583, + 0.0007913750596344471, + -0.012036552652716637, + 0.015263599343597889, + 0.015503132715821266, + -0.01881667785346508, + 0.020999092608690262, + -0.022063685581088066, + -0.006866623647511005, + -0.026681357994675636, + -0.02879723533987999, + 0.0008408619905821979, + 0.007864679209887981, + -0.0032237202394753695, + -0.009029078297317028, + -0.012908187694847584, + 0.021118860691785812, + -0.009328494779765606, + 0.024778397753834724, + 0.0035597323440015316, + -0.018617067486047745, + -0.012016591615974903, + -0.004484597127884626, + 0.006620436441153288, + 0.014997451566159725, + -0.001488766516558826, + -0.011777058243751526, + 0.009321840479969978, + 0.004760725889354944, + -0.011258069425821304, + -0.013799784705042839, + 0.0061214086599648, + -0.00799109973013401, + -0.00123176712077111, + -0.00224063522182405, + 0.02938276156783104, + 0.01795169711112976, + 0.01825776696205139, + 0.01391955092549324, + 0.01820453628897667, + -0.011351221241056919, + -0.020400259643793106, + 0.03781966120004654, + -0.014624843373894691, + 0.03289591893553734, + -0.0002335034660063684, + 0.001252559944987297, + 0.009840830229222775, + -0.011045150458812714, + -0.013314063660800457, + -0.013680017553269863, + -0.012162973172962666, + 0.02134508639574051, + 0.015463210642337799, + 0.008782890625298023, + -0.003589673899114132, + -0.012063167057931423, + 0.019482048228383064, + -0.0014064268907532096, + -0.011344566941261292, + -0.0008566645556129515, + 0.02497800812125206, + 0.021078938618302345, + 0.009947288781404495, + -0.006783452350646257, + -0.624703049659729, + -0.010140246711671352, + 0.010918729938566685, + -0.02743987925350666, + 0.0006503996555693448, + 0.018803371116518974, + 0.023301275447010994, + -0.008150788955390453, + -0.021145474165678024, + 0.0635029599070549, + 0.00470416946336627, + -0.009754331782460213, + 0.0019329013302922249, + -0.008223979733884335, + -0.020160727202892303, + -0.011570793576538563, + -0.016740722581744194, + -0.01088546123355627, + 0.0332685261964798, + 0.026468439027667046, + -0.022343141958117485, + -0.0038158998358994722, + 0.0110717648640275, + 0.005941758863627911, + -0.02457878738641739, + 0.036728452891111374, + 0.024552172049880028, + 0.0018829985056072474, + 0.033641133457422256, + 0.008263901807367802, + -0.03159179165959358, + 0.013467099517583847, + -0.007292460650205612, + -0.005392828024923801, + 0.03412019833922386, + 0.0020493410993367434, + -0.02427271567285061, + 0.012974725104868412, + -0.0007127781864255667, + 0.012755152769386768, + -0.038724564015865326, + -0.0004616007790900767, + -0.00799109973013401, + 0.0030407432932406664, + 0.015210369601845741, + 0.0216777715831995, + 0.015423288568854332, + -0.02528407983481884, + -0.007744912523776293, + -0.006780125666409731, + -0.012735191732645035, + -0.006653705146163702, + 0.026042601093649864, + -0.010925384238362312, + -0.005871894769370556, + 0.016501188278198242, + 0.015556362457573414, + -0.025177620351314545, + 0.015063988044857979, + -0.006686973851174116, + -0.011604061350226402, + 0.0008475157083012164, + -0.0010853856801986694, + -0.031645022332668304, + -0.041252970695495605, + 0.034971874207258224, + -0.012961417436599731, + -0.024472327902913094, + 0.004797321278601885, + -0.03765996918082237, + 0.013653403148055077, + 0.01616850309073925, + -0.011331260204315186, + -0.025723224505782127, + 0.012994686141610146, + 0.015503132715821266, + 0.02266252040863037, + -0.011890171095728874, + 0.012648693285882473, + 0.018590452149510384, + -0.007558608893305063, + -0.007458803243935108, + -0.004747418686747551, + 0.021518081426620483, + 0.022369757294654846, + -0.03763335570693016, + -0.01510391104966402, + 0.0006075664423406124, + -0.0009290236048400402, + 0.011337913572788239, + 0.024831626564264297, + 0.009820869192481041, + -0.02020064927637577, + -0.010299935936927795, + 0.00572883989661932, + 0.018124692142009735, + -0.01270192302763462, + 0.005286368541419506, + 0.008649816736578941, + -0.03904394060373306, + -0.005406135227531195, + -0.025390539318323135, + 0.013653403148055077, + 0.021757615730166435, + 0.015316829085350037, + 0.0005102560389786959, + -0.018923137336969376, + 0.02586960606276989, + 0.038671333342790604, + -0.01764562539756298, + -0.004770706407725811, + -0.012795074842870235, + -0.002739663003012538, + -0.021265242248773575, + -0.005156621336936951, + -0.01900298148393631, + 0.020187340676784515, + -0.0016085332026705146, + 0.015902355313301086, + -0.02069302275776863, + -0.013813091441988945, + -0.005475999321788549, + -0.008703046478331089, + -0.01205651368945837, + 0.0016043746145442128, + 0.013067876920104027, + -0.0034998490009456873, + -0.018803371116518974, + -0.007252538576722145, + -5.863577462150715e-05, + 0.002257269574329257, + -0.009075653739273548, + 0.03020782209932804, + 0.005878548603504896, + 0.02685435302555561, + 0.006357615347951651, + 0.028877079486846924, + 0.0048505510203540325, + 0.006563880015164614, + -0.025789761915802956, + -0.025709915906190872, + -0.018523914739489555, + 0.01614188775420189, + -0.0031122704967856407, + -0.02075956016778946, + -0.024738475680351257, + -0.0049104345962405205, + 0.004078721161931753, + 0.022090300917625427, + -0.0017632318194955587, + 0.002486822195351124, + -0.006503996904939413, + 0.010699157603085041, + 0.037500280886888504, + 0.014012702740728855, + -0.021691078320145607, + -0.008144134655594826, + -0.011005228385329247, + -0.0033667748793959618, + -0.02980859950184822, + 0.005276388023048639, + 0.023966645821928978, + -0.02678781747817993, + 0.003952300641685724, + -0.0013498704647645354, + -0.0032386910170316696, + 0.01789846643805504, + 0.040481142699718475, + -0.048305898904800415, + -0.04024161025881767, + -0.004238410387188196, + -0.003855822142213583, + 0.012355930171906948, + 0.01082557812333107, + 0.009694448672235012, + -0.002491812454536557, + -0.01654111035168171, + 0.010552776046097279, + 0.0037393823731690645, + -0.01745932176709175, + 0.0027463168371468782, + -0.0013390581589192152, + -0.022383064031600952, + -0.02207699418067932, + 0.020866019651293755, + 0.01928243786096573, + 0.037500280886888504, + 0.019162671640515327, + -0.0016093648737296462, + -0.00014617358101531863, + -0.006723569240421057, + 0.03356128931045532, + -0.03180471062660217, + 0.012508966028690338, + -0.011510909534990788, + 0.032044243067502975, + -0.008876042440533638, + -0.005010239779949188, + -0.012495658360421658, + 0.028930310159921646, + 0.03875117748975754, + 0.0013881291961297393, + 0.005522575229406357, + -0.008496781811118126, + 0.020187340676784515, + -0.033215295523405075, + 0.012981378473341465, + -0.013041261583566666, + 0.030101362615823746, + -0.002112551359459758, + 0.029861828312277794, + 0.01191678550094366, + -0.015383366495370865, + 0.00405876012519002, + -0.012555541470646858, + 0.021305164322257042, + -0.03215070441365242, + 0.009281918406486511, + -0.012289393693208694, + -0.0030041479039937258, + 0.01270192302763462, + -0.001656772568821907, + 0.025976065546274185, + 0.011790365912020206, + 0.002977533033117652, + 0.020187340676784515, + -0.010705811902880669, + 0.012662000954151154, + 0.026441823691129684, + -0.037899505347013474, + -0.015596284531056881, + 0.0038924175314605236, + 0.009202074259519577, + 0.006886584684252739, + 0.009069000370800495, + 0.017299633473157883, + 0.016301577910780907, + 0.012375891208648682, + 0.03268299996852875, + 0.00877623725682497, + -0.007771527394652367, + -0.0032037589699029922, + 0.01361348107457161, + -0.009082307107746601, + 0.027493109926581383, + -0.014425233006477356, + 0.02746649459004402, + 0.004990278743207455, + -0.007092849817126989, + 0.022529445588588715, + -0.006271116901189089, + 0.010606005787849426, + -0.01564951427280903, + -0.00020189836504869163, + 0.02863754704594612, + -0.018896522000432014, + 0.04040129855275154, + 0.013626787811517715, + -0.013294102624058723, + 0.0370212160050869, + -0.0022489523980766535, + -0.002726355567574501, + -0.006064852233976126, + 0.0005414452753029764, + 0.0009157161694020033, + -0.00959464255720377, + -0.004827262833714485, + -0.015729358419775963, + -0.020001037046313286, + -0.011144955642521381, + -0.010433009825646877, + -0.016328193247318268, + -0.0064075179398059845, + 0.0028378053102642298, + 0.02556353434920311, + -0.003992223180830479, + 0.014265543781220913, + 0.0180448479950428, + 0.019335666671395302, + 0.03129902854561806, + -0.035158175975084305, + -0.01982804201543331, + 0.019149363040924072, + 0.020307108759880066, + -0.0015993843553587794, + -0.01510391104966402, + -0.014970836229622364, + 0.010153554379940033, + -0.038192268460989, + -0.00425837142392993, + -0.011451026424765587, + 0.012708576396107674, + 0.008170749992132187, + -0.008643163368105888, + 0.0031771440990269184, + -0.018577145412564278, + 0.005888529121875763, + -0.018004925921559334, + -0.015729358419775963, + 0.003576366463676095, + -2.0273007976356894e-05, + 0.0032902571838349104, + -0.027892332524061203, + -0.01326083391904831, + 0.02842462807893753, + -0.010991920717060566, + -0.026907583698630333, + 0.001205152366310358, + -0.00635096151381731, + -0.013507021591067314, + 0.02488485723733902, + 0.033401601016521454, + -0.006434132810682058, + 0.0167540293186903, + 0.0012816699454560876, + 0.015210369601845741, + -0.012668654322624207, + -0.01888321526348591, + 0.018058156594634056, + 0.011098380200564861, + -0.018590452149510384, + -0.028557702898979187, + 0.00205932161770761, + 0.017446015030145645, + 0.01773877814412117, + 0.030447354540228844, + -0.019348975270986557, + 0.005622380878776312, + -0.0022639231756329536, + 0.0033035646192729473, + -0.029542449861764908, + -0.05096738040447235, + 0.02217014506459236, + -0.00024743465473875403, + -0.008217325434088707, + -0.004650939721614122, + 0.02879723533987999, + -0.03191116824746132, + 0.005080103874206543, + 0.005818665027618408, + 0.004980298224836588, + 0.01715325191617012, + -0.008164096623659134, + 0.0009622920770198107, + -0.0011727155651897192, + 0.02401987463235855, + -0.011510909534990788, + 0.010872154496610165, + 0.00609812093898654, + -0.029276302084326744, + 0.03582355007529259, + 0.035344481468200684, + -0.0011028515873476863, + -0.03837857022881508, + -0.003855822142213583, + 0.011637330055236816, + -0.008144134655594826, + 0.011677252128720284, + -0.020533334463834763, + 0.026095831766724586, + 0.029089998453855515, + 0.0032902571838349104, + 0.01373324729502201, + -0.009894059039652348, + 0.02710719406604767, + 0.026135753840208054, + 0.01989457756280899, + -0.007365651428699493, + 0.016115274280309677, + -0.024565478786826134, + 0.011158263310790062, + 0.020679716020822525, + 0.000939004123210907, + -0.02781248651444912, + -6.76286726957187e-05, + 0.005469345487654209, + -0.035983238369226456, + -0.007192655000835657, + 0.009834175929427147, + 0.002535061677917838, + -0.0008171581430360675, + -0.0012276086490601301, + -0.001239252625964582, + -0.001309116487391293, + -0.02294197492301464, + -0.03933670371770859, + -0.018390841782093048, + -0.0068998923525214195, + -0.025949450209736824, + -0.0001319305010838434, + -0.017166558653116226, + -0.017565781250596046, + -0.02741326577961445, + -0.008064290508627892, + 0.005336271598935127, + -0.023460963740944862, + -0.03483879938721657, + -0.008929272182285786, + -0.00512667978182435, + 0.017512552440166473, + 0.030713502317667007, + -0.0018197883618995547, + 0.004304947331547737, + -0.0220237635076046, + -0.01801823265850544, + -0.02165115624666214, + -0.000479898473713547, + -0.0478002168238163, + 0.012928148731589317, + 0.0044579822570085526, + -0.03215070441365242, + -0.008350400254130363, + 0.01841745525598526, + 0.008157442323863506, + -0.004278332460671663, + -0.020559947937726974, + -0.01616850309073925, + 0.009960596449673176, + 0.022183453664183617, + 0.004594383295625448, + -0.013626787811517715, + 0.010333203710615635, + 0.011384489014744759, + -0.03310883790254593, + 0.01102518942207098, + -0.027493109926581383, + -0.0007452149875462055, + -0.020839404314756393, + 0.024033183231949806, + 0.018550530076026917, + -0.007059581112116575, + 0.011823633685708046, + -0.00406541395932436, + -0.007405573967844248, + 0.01659434102475643, + 0.00837701465934515, + 0.015117217786610126, + -0.012542233802378178, + 0.013347332365810871, + 0.009042385034263134, + 0.002368719084188342, + 0.015183755196630955, + 0.03627600148320198, + -0.026468439027667046, + -0.004587729461491108, + -0.044553209096193314, + 0.023647267371416092, + 0.011198185384273529, + -0.0020693023689091206, + 0.020426874980330467, + -0.014172391965985298, + 0.020347030833363533, + -0.030127976089715958, + 0.0004067077243234962, + -0.023673882707953453, + 0.0142921581864357, + -0.008789543993771076, + -0.013932858593761921, + -0.030021516606211662, + -0.03513156250119209, + -0.02445901930332184, + 0.007039620075374842, + 0.023181509226560593, + 0.01684718206524849, + -0.024405790492892265, + -0.005386174190789461, + -0.0019146036356687546, + 0.010173515416681767, + -0.0014513394562527537, + -0.030500583350658417, + -0.026561589911580086, + 0.015543054789304733, + 0.0055924393236637115, + 0.0006483204197138548, + -0.019202593713998795, + 0.005955066066235304, + -0.015875739976763725, + -0.010991920717060566, + -0.012395852245390415, + -0.038697950541973114, + -0.011204839684069157, + 0.020240571349859238, + 0.0482792854309082, + 0.01731294021010399, + 0.02916984260082245, + 0.008290516212582588, + 0.02863754704594612, + 0.03845841437578201, + -0.002074292628094554, + -0.006763491313904524, + -0.00431825453415513, + 0.019655045121908188, + -0.03553078696131706, + 0.024006567895412445, + -0.015968892723321915, + 0.0016576042398810387, + 0.026654742658138275, + -0.005036854650825262, + 0.004637632519006729, + 0.03180471062660217, + -0.02417956478893757, + -0.0123027004301548, + -0.017286326736211777, + -0.02802540548145771, + -0.036329228430986404, + 0.025536920875310898, + 0.012143012136220932, + -0.0032237202394753695, + -0.03970931097865105, + -0.002060985192656517, + 0.02127854898571968, + -0.0016052064020186663, + 0.020134111866354942, + 0.026867661625146866, + 0.024432405829429626, + -0.03015459142625332, + -0.0013756535481661558, + 0.007698336616158485, + -0.013946166262030602, + -0.03531786799430847, + -0.009867444634437561, + -0.022489523515105247, + -0.011124994605779648, + 0.045378267765045166, + 0.0011169906938448548, + 0.020347030833363533, + 0.0040254914201796055, + -0.004514539148658514, + 0.015024065971374512, + 0.005622380878776312, + 0.001243411097675562, + -0.00553588243201375, + -0.0024419098626822233, + -0.03624938428401947, + -0.0012625405797734857, + -0.014478462748229504, + 0.010020479559898376, + -0.0018181249033659697, + 0.01980142667889595, + 0.019841348752379417, + -0.0006125567015260458, + 0.03020782209932804, + 0.003002484329044819, + -0.02113216742873192, + -0.012369237840175629, + 0.01211639679968357, + 0.042636942118406296, + -0.0110118817538023, + 0.034200042486190796, + 0.022063685581088066, + -0.007046273909509182, + -0.0029292937833815813, + -0.031645022332668304, + 0.01902959682047367, + -0.030127976089715958, + 0.028158480301499367, + 0.007518686819821596, + 0.01928243786096573, + -0.020892633125185966, + 0.018710218369960785, + 0.03034089505672455, + -0.05546528473496437, + -0.011803672648966312, + 0.025949450209736824, + 0.007039620075374842, + 0.011697213165462017, + -0.03039412572979927, + 0.01619511842727661, + -0.03249669447541237, + 0.007844718173146248, + 0.004298293497413397, + 0.0015902355080470443, + -0.005263080820441246, + 0.002282220870256424, + 0.009641218930482864, + 0.03640907257795334, + 0.029063383117318153, + -0.0028095270972698927, + 0.015210369601845741, + -0.007877986878156662, + 0.003729401621967554, + 0.015223677270114422, + 0.0008312973077408969, + 0.019668351858854294, + -0.021824153140187263, + 0.016833873465657234, + 0.010552776046097279, + 0.0005439404048956931, + 0.012788421474397182, + -0.035770319402217865, + -0.012515619397163391, + 0.004754072520881891, + -0.011278030462563038, + 0.023727111518383026, + -0.013866321183741093, + -0.014212314039468765, + -0.023487579077482224, + 0.009681141003966331, + -0.008144134655594826, + -0.019974423572421074, + -0.006167984567582607, + -0.01949535682797432, + 0.002535061677917838, + 0.02223668247461319, + 0.008416936732828617, + -0.004557787906378508, + -0.010645927861332893, + -0.01604873687028885, + 0.009867444634437561, + -0.013440484181046486, + 0.00012070236698491499, + -0.012415813282132149, + 0.023913417011499405, + -0.04388783872127533, + 0.006873277481645346, + 0.00492706848308444, + -0.01042635552585125, + 0.015223677270114422, + -0.005213177762925625, + -0.013626787811517715, + 0.003213739488273859, + 0.026255520060658455, + -0.014837762340903282, + 0.01321425847709179, + -0.001670080004259944, + -0.00936176348477602, + -0.0065738605335354805, + 0.01056608371436596, + -0.001713329111225903, + -0.0025550227146595716, + 0.037739817053079605, + -0.020719638094305992, + -0.01912274770438671, + 0.003882437013089657, + 0.0011045150458812714, + 0.024964701384305954, + -0.001809807843528688, + 0.0033667748793959618, + 0.02183745987713337, + -0.008403629995882511, + -0.002718038624152541, + 0.0007447990938089788, + -0.005495960358530283, + 0.0050834305584430695, + 0.009321840479969978, + 0.006064852233976126, + 0.03683491051197052, + -0.0314054898917675, + -0.008277209475636482, + -0.0011061785044148564, + 0.014771224930882454, + -0.016434650868177414, + -0.03848503157496452, + -0.02642851695418358, + 0.010499546304345131, + 0.013220911845564842, + -0.008124173618853092, + 0.0005618222057819366, + -0.010612660087645054, + -0.007405573967844248, + -0.015210369601845741, + 0.006237848661839962, + 0.00882281269878149, + 0.004444675054401159, + 0.004843897186219692, + 0.012974725104868412, + -0.006893238518387079, + 0.02509777620434761, + 0.0016085332026705146, + -0.005998315289616585, + 0.0038957444485276937, + 0.011863555759191513, + -0.02845124341547489, + 0.02959568053483963, + 0.003962281625717878, + 0.03686152771115303, + 0.011324605904519558, + -0.032416850328445435, + -0.01881667785346508, + -0.042796630412340164, + -0.026801124215126038, + -0.02898353897035122, + -0.0066570318304002285, + 0.0202671866863966, + -0.0054260967299342155, + 0.020959170535206795, + -0.004571095574647188, + 0.0055092680267989635, + -0.010226745158433914, + 0.015809202566742897, + -0.032842688262462616, + -0.015330136753618717, + 0.005229812115430832, + 0.0028610932640731335, + 0.0038724562618881464, + -0.0018081443849951029, + -0.02221006713807583, + 0.009355109184980392, + 0.010153554379940033, + 0.0011311299167573452, + -0.010366472415626049, + 0.011451026424765587, + 0.0025300714187324047, + -0.0017482610419392586, + 0.01205651368945837, + 0.013759862631559372, + -0.006607129238545895, + 0.014438539743423462, + 0.021890690550208092, + -0.03385405242443085, + 0.01139779668301344, + -0.00018027382611762732, + 0.00962125789374113, + -0.020440181717276573, + -0.00041440105997025967, + 0.0010687513276934624, + -0.0012567185331135988, + -0.006820047739893198, + 0.026202291250228882, + -0.008703046478331089, + -0.009414992295205593, + 0.018164614215493202, + 0.034599266946315765, + 0.02272905595600605, + 0.0022090300917625427, + -0.00244856346398592, + 0.02479170449078083, + -0.009248649701476097, + -0.0233145821839571, + 0.0010745733743533492, + -0.017991619184613228, + 0.00406541395932436, + 0.021518081426620483, + -0.03547755628824234, + 0.017658933997154236, + -0.030500583350658417, + 0.009388377889990807, + -0.022249989211559296, + -0.011451026424765587, + -0.015928970649838448, + -0.020533334463834763, + -0.030287666246294975, + 0.005070123355835676, + 0.026814430952072144, + -0.0035264636389911175, + 0.017326248809695244, + -0.0023454311303794384, + 0.006593821570277214, + -0.010991920717060566, + -0.02802540548145771, + -0.013427176512777805, + -0.015423288568854332, + -0.013320717960596085, + 0.024152949452400208, + -0.007059581112116575, + 0.00993398204445839, + 0.0038325341884046793, + 0.008084251545369625, + -0.013207605108618736, + 0.008357053622603416, + 0.17980973422527313, + -0.01884329319000244, + 0.01307453028857708, + 0.004843897186219692, + -0.021305164322257042, + -0.03191116824746132, + 0.042796630412340164, + 0.004863858222961426, + -0.005895182956010103, + 0.008856081403791904, + 0.01250231172889471, + -0.013327371329069138, + -0.02263590507209301, + 0.007438842207193375, + 0.016248347237706184, + -0.02390010841190815, + -0.0346791110932827, + -0.02781248651444912, + -0.0007102829986251891, + 0.0006961438921280205, + 0.033641133457422256, + -0.017978310585021973, + -0.01727301813662052, + -0.009741024114191532, + 0.0346791110932827, + 0.005918470676988363, + -0.006693627219647169, + 0.00793121661990881, + 0.03215070441365242, + -0.005662302952259779, + -0.014358695596456528, + 0.025483690202236176, + 0.01884329319000244, + -0.0005659807939082384, + -0.02113216742873192, + 0.018284382298588753, + 0.016394728794693947, + 0.0006749352323822677, + 0.033987127244472504, + -0.011737136170268059, + 0.011311298236250877, + 0.0011120004346594214, + 0.011204839684069157, + -0.04423383250832558, + -0.007917908951640129, + 0.026282135397195816, + -0.01654111035168171, + -0.013014647178351879, + -0.008902657777071, + -0.006068178918212652, + 0.0009797581005841494, + 0.009867444634437561, + 0.008250594139099121, + 0.017752084881067276, + -0.020320415496826172, + 0.00922203529626131, + -0.020134111866354942, + -0.009887405671179295, + -0.002994167385622859, + 0.007525340653955936, + -0.015662821009755135, + 0.004720803815871477, + -0.013340678997337818, + 0.016674185171723366, + -0.024166256189346313, + 0.01322756614536047, + -0.026801124215126038, + -0.005941758863627911, + 0.008456858806312084, + -0.016980255022644997, + -0.025430461391806602, + -0.019548585638403893, + -0.02165115624666214, + 0.014584921300411224, + -0.007578569930046797, + -0.03433311730623245, + 0.02861093170940876, + 0.016487881541252136, + 0.004986952058970928, + 0.006284424569457769, + -0.001407258678227663, + 0.015755973756313324, + -0.00492706848308444, + -0.03835195675492287, + -0.003775977762416005, + -0.04231756553053856, + 0.010572737082839012, + 0.00032145713339559734, + -0.0066403974778950214, + -0.018098078668117523, + -0.030500583350658417, + -0.002435256028547883, + 0.00041648035403341055, + 0.002476841676980257, + -0.0015968892257660627, + 0.00429496681317687, + 0.026401901617646217, + 0.015197062864899635, + 0.0036495572421699762, + 0.0055758049711585045, + -0.046522706747055054, + 0.07398919761180878, + 0.019082825630903244, + -0.005086757708340883, + -0.006793432869017124, + 0.00734569039195776, + -0.004384791478514671, + 0.015409980900585651, + 0.0023986606393009424, + 0.0005568319465965033, + -0.005772089120000601, + -0.02608252316713333, + 0.03268299996852875, + 0.001163566717877984, + -0.010539469309151173, + 0.014438539743423462, + -0.004617671482264996, + 0.01167059876024723, + -0.007219269871711731, + -0.01647457294166088, + -0.02401987463235855, + 0.0003308138984721154, + -0.005522575229406357, + 0.010413048788905144, + 0.002869410440325737, + -0.032629769295454025, + -0.03688814118504524, + -0.005821992177516222, + -0.036914754658937454, + -0.016714107245206833, + 0.011138302274048328, + -0.020772866904735565, + 0.0253106951713562, + 0.018098078668117523, + -0.0016268308972939849, + 0.00569889834150672, + -0.004248390905559063, + -0.005738820880651474, + -0.013680017553269863, + 0.01853722333908081, + 0.028264939785003662, + -0.013986088335514069, + -0.017991619184613228, + 0.01005374826490879, + 0.03816565126180649, + -0.011717175133526325, + -0.0009290236048400402, + 0.0016168503789231181, + -0.010732426308095455, + -0.03020782209932804, + -0.01893644407391548, + -0.0038192267529666424, + 0.009701102040708065, + 0.013786477036774158, + 0.03212408721446991, + 0.01258215680718422, + -0.017685547471046448, + 0.004957010503858328, + 0.007106157019734383, + -0.0027197019662708044, + -0.04090698063373566, + -0.01102518942207098, + 0.016434650868177414, + -0.014052624814212322, + -0.007645107340067625, + -0.0061746384017169476, + -0.16831211745738983, + -0.004853877704590559, + 0.0013590193120762706, + -0.06036241352558136, + 0.011231454089283943, + -0.0031205876730382442, + 0.02861093170940876, + -0.0007431356934830546, + -0.003503175685182214, + -0.0032237202394753695, + 0.012469043023884296, + -0.009461568668484688, + -0.0142921581864357, + -0.011124994605779648, + 0.010971959680318832, + -0.007578569930046797, + -0.028291553258895874, + 0.018098078668117523, + 0.0190961342304945, + 0.017139945179224014, + 0.01371993962675333, + -0.013234219513833523, + 0.018896522000432014, + 0.021983841434121132, + -0.008270555175840855, + -0.017139945179224014, + -0.008882696740329266, + 0.02020064927637577, + -0.0022206741850823164, + -0.03486541658639908, + -0.010938690975308418, + 0.003593000816181302, + 0.0007090354338288307, + 0.007418881170451641, + -0.004012184217572212, + -0.01082557812333107, + 0.008643163368105888, + 0.01128468383103609, + -0.023647267371416092, + 0.008849428035318851, + 0.011231454089283943, + 0.02420617826282978, + 0.002486822195351124, + -0.013340678997337818, + -0.022196760401129723, + 0.002910996088758111, + 0.02540384605526924, + -0.021983841434121132, + 0.0024884857703000307, + -0.008396975696086884, + 0.005821992177516222, + -0.01823115162551403, + 0.0027745950501412153, + 0.008802851662039757, + 0.009627911262214184, + -0.004966991022229195, + 0.00306403124704957, + 0.005755454767495394, + -0.013367293402552605, + 0.006946468260139227, + 0.009681141003966331, + -0.015915662050247192, + 0.018896522000432014, + -0.0025101101491600275, + 0.004361503757536411, + -0.014970836229622364, + -0.016687491908669472, + 0.015968892723321915, + -0.011251415126025677, + 0.009488183073699474, + -0.02877062000334263, + -0.02113216742873192, + 0.008909311145544052, + 0.000995560665614903, + -0.0004961168742738664, + 0.01321425847709179, + 0.00030898142722435296, + 0.012162973172962666, + 0.0305804293602705, + 0.006770145148038864, + -0.012482350692152977, + 0.026495054364204407, + -0.017233096063137054, + -0.01616850309073925, + 0.005955066066235304, + -0.025483690202236176, + -0.006410845089703798, + 0.01509060338139534, + 0.005495960358530283, + -0.0058253188617527485, + 0.0006391715724021196, + -0.01210308913141489, + -0.03624938428401947, + -0.008789543993771076, + 0.017326248809695244, + -0.0031106071546673775, + -0.012016591615974903, + -0.004527846351265907, + -0.008683085441589355, + -0.021943919360637665, + 0.011836941353976727, + 0.0066503784619271755, + -0.003962281625717878, + -0.011803672648966312, + 0.034226659685373306, + -0.02174430899322033, + -0.008184057660400867, + 0.009614603593945503, + 0.05094076693058014, + 0.011637330055236816, + -0.020719638094305992, + -0.011098380200564861, + 0.0142921581864357, + -0.001035482855513692, + 0.005462692119181156, + 0.015569670125842094, + -0.01691371761262417, + -0.024339253082871437, + -0.003103953320533037, + 0.01823115162551403, + 0.05493298918008804, + -0.0030457335524260998, + -0.0072991144843399525, + 0.0202671866863966, + -0.012063167057931423, + -0.015968892723321915, + -0.0785137191414833, + -0.010752387344837189, + 0.009601296856999397, + 0.0346791110932827, + 0.01527690701186657, + 0.024352559819817543, + 0.011204839684069157, + 0.015409980900585651, + -0.005169929005205631, + 0.03249669447541237, + -0.016208425164222717, + -0.0008242276962846518, + -0.02352750115096569, + -0.005692244507372379, + -0.014398617669939995, + -0.023660575971007347, + -0.021305164322257042, + -0.03129902854561806, + -0.013101145625114441, + 0.03590339422225952, + -0.005778742954134941, + 0.006251155864447355, + 0.0012625405797734857, + -0.030420739203691483, + -0.026295442134141922, + -0.00035659701097756624, + -0.03997546061873436, + 0.02324804477393627, + 0.019761504605412483, + 0.00651397742331028, + 0.015449902974069118, + -0.028664162382483482, + 0.016501188278198242, + -0.03917701542377472, + 0.011138302274048328, + -0.00467422790825367, + 0.00673022260889411, + -0.031112724915146828, + 0.03579693287611008, + -0.017446015030145645, + -0.007558608893305063, + -0.001545323058962822, + 0.013946166262030602, + -0.016274962574243546, + 0.013447138480842113, + -0.0004782350442837924, + 0.0008088410249911249, + -0.006450767163187265, + -0.01057939138263464, + -0.030234435573220253, + -0.046762239187955856, + -0.011703867465257645, + -0.010433009825646877, + 0.02315489389002323, + 0.01348706055432558, + 0.008257248438894749, + 0.0045411535538733006, + -0.017605703324079514, + -0.015942277386784554, + -0.005845279898494482, + -0.010186822153627872, + -0.0010363145265728235, + -0.01145767979323864, + 0.00531963724642992, + 0.003523136954754591, + 0.009534759446978569, + -0.021385008469223976, + -0.00593510502949357, + -0.01761901192367077, + -0.001343216747045517, + 0.011251415126025677, + 0.005559170618653297, + -0.006520630791783333, + 0.014438539743423462, + -0.02919645793735981, + -0.008084251545369625, + -0.024685246869921684, + -0.0054926336742937565, + 0.013626787811517715, + -0.007884640246629715, + -0.01361348107457161, + -0.014026010408997536, + 0.02010749652981758, + -0.024192871525883675, + 0.012948109768331051, + -0.004245063755661249, + 0.00817740336060524, + -0.009787600487470627, + 0.009827522560954094, + -0.02315489389002323, + 0.015716051682829857, + 0.015436596237123013, + -0.008603240363299847, + -0.017978310585021973, + 1.701113251328934e-05, + 0.011131648905575275, + -0.00016291180509142578, + 0.00015989685198292136, + -0.0030008209869265556, + -0.004048779606819153, + -0.006793432869017124, + -0.004454655572772026, + -0.05312317982316017, + 0.0179250817745924, + 0.018776755779981613, + -0.0009148844401352108, + -0.010419702157378197, + -0.009195420891046524, + 0.007139425724744797, + 0.018683603033423424, + -0.00024743465473875403, + 0.023061741143465042, + -0.007864679209887981, + 0.003855822142213583, + -0.013653403148055077, + -0.0015952257672324777, + -0.015556362457573414, + -0.006237848661839962, + 0.020373644307255745, + 0.013480406254529953, + 0.012908187694847584, + 0.005299676209688187, + 0.009508145041763783, + 0.015489825047552586, + 0.019149363040924072, + 0.009434954263269901, + -0.016900410875678062, + 0.002127522137016058, + -0.025057854130864143, + 0.016687491908669472, + 0.009055692702531815, + -0.015010758303105831, + -0.0019977749325335026, + -0.006979736499488354, + -0.004128624219447374, + 0.0228488240391016, + 0.004467962775379419, + -0.010506200604140759, + 0.026255520060658455, + 0.039682697504758835, + 0.0007032134453766048, + 0.07627807557582855, + -0.033800821751356125, + -0.02078617550432682, + 0.012402506545186043, + -0.017086714506149292, + -0.012449081987142563, + -0.009701102040708065, + -0.003523136954754591, + 0.011970015242695808, + 0.013067876920104027, + 0.0021208685357123613, + 0.01656772568821907, + -0.00993398204445839, + -0.023168200626969337, + -0.014811147935688496, + 0.011717175133526325, + -0.022303219884634018, + 0.01996111497282982, + 0.010858846828341484, + 0.022782286629080772, + -0.010572737082839012, + 0.02805202081799507, + -0.016980255022644997, + 0.012249470688402653, + -0.019482048228383064, + 0.012735191732645035, + -0.01968166045844555, + -0.037154290825128555, + 0.0022456254810094833, + 0.011584100313484669, + -0.03055381402373314, + -0.006440786644816399, + -0.01912274770438671, + 0.0022905380465090275, + 0.043435387313365936, + 0.009927327744662762, + -0.020826097577810287, + 0.0228488240391016, + 0.016793951392173767, + 0.009647872298955917, + 0.03055381402373314, + 0.030314279720187187, + 0.021757615730166435, + -0.011510909534990788, + -0.011444373056292534, + 0.008736315183341503, + 0.019934499636292458, + 0.004028818570077419, + -0.00243359268642962, + 0.013653403148055077, + 0.00877623725682497, + 0.024938086047768593, + 0.01390624325722456, + -0.003929012920707464, + -0.0018297688802704215, + 0.015449902974069118, + -0.00366951827891171, + -0.004082048311829567, + 0.012608771212399006, + -0.0009414992528036237, + 0.02507116086781025, + 0.01123810838907957, + -0.0057587819173932076, + 0.003503175685182214, + -0.0008258911548182368, + -0.007432188838720322, + 0.011517563834786415, + -0.011244761757552624, + -0.053016722202301025, + 0.015742667019367218, + 0.010845539160072803, + 0.020732944831252098, + 0.009847483597695827, + 0.003602981334552169, + 0.007179347798228264, + -0.021265242248773575, + 0.016927026212215424, + -0.0035663859453052282, + -0.021943919360637665, + -0.03627600148320198, + 0.03215070441365242, + 0.011005228385329247, + 0.00934845581650734, + 0.026468439027667046, + -0.03356128931045532, + 0.040055304765701294, + -0.009920674376189709, + 0.035158175975084305, + -0.03736720606684685, + 0.012003283947706223, + -0.020866019651293755, + -0.004724130500108004, + 0.011404450982809067, + -0.026880968362092972, + -0.002325469860807061, + -0.002170771360397339, + -0.009667833335697651, + 0.00916215218603611, + 0.01607535220682621, + 0.02980859950184822, + 0.11284683644771576, + 0.02598937228322029, + -0.008090905845165253, + 0.010087016969919205, + -0.0033983797766268253, + -0.0023770362604409456, + 0.015449902974069118, + -0.008443552069365978, + -0.012948109768331051, + -0.04213126003742218, + -0.00674353027716279, + -0.025896219536662102, + 0.021331777796149254, + -0.01755247451364994, + -0.008323784917593002, + -0.023287968710064888, + 0.011550831608474255, + 0.027280190959572792, + 0.007618492469191551, + -0.007305768318474293, + 0.042583711445331573, + 0.005376193672418594, + 0.01638142205774784, + 0.0398423857986927, + -0.023700498044490814, + -0.006973083131015301, + 0.043807994574308395, + -0.027280190959572792, + -0.0014272197149693966, + -0.031618405133485794, + 0.0008799525094218552, + -0.005143314134329557, + -0.07026312500238419, + -0.026069216430187225, + -0.01659434102475643, + -0.028291553258895874, + 0.020919248461723328, + -0.020413566380739212, + 0.013799784705042839, + -0.029302917420864105, + 0.01684718206524849, + 0.009634564630687237, + -0.016408037394285202, + -0.013693325221538544, + 0.024618709459900856, + -0.020027652382850647, + -0.013799784705042839, + 0.003962281625717878, + -0.020280493423342705 + ], + "metadata": { + "source": "Kreye_Marieke_BA_241_V2.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 17, + "has_images": true, + "image_count": 98, + "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", + "links": [], + "last_modified": "2025-05-05T23:00:23", + "_known_field_names": "frozenset({'is_continuation', 'sent_to', 'header_footer_type', 'email_message_id', 'filename', 'languages', 'detection_class_prob', 'sent_from', 'link_texts', 'cc_recipient', 'subject', 'image_mime_type', 'image_path', 'filetype', 'page_number', 'last_modified', 'signature', 'detection_origin', 'text_as_html', 'attached_to_filename', 'bcc_recipient', 'data_source', 'link_start_indexes', 'category_depth', 'emphasized_text_tags', 'parent_id', 'orig_elements', 'page_name', 'coordinates', 'url', 'link_urls', 'file_directory', 'links', 'table_as_cells', 'emphasized_text_contents', 'key_value_pairs', 'image_base64'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "Kreye_Marieke_BA_241_V2.pdf", + "detection_class_prob": 0.3422867953777313, + "parent_id": "e02392183bc6851689602ad4b9f6039f", + "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", + "id": "ce00eae5-7e07-454f-9e4f-f79ac36f92f4", + "processing_timestamp": "2025-05-05T23:15:46.977945", + "chunk_number": 54, + "total_chunks": 56, + "chunking_strategy": "hybrid", + "word_count": 814 + } +} \ No newline at end of file diff --git a/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000055.json b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000055.json new file mode 100644 index 0000000000000000000000000000000000000000..f25263941a3d984ccb401f1b23c8504c7928a9fc --- /dev/null +++ b/data/processed/61a115b2-0ff7-441a-f6d9-eb3d00000055.json @@ -0,0 +1,1570 @@ +{ + "id": "61a115b2-0ff7-441a-f6d9-eb3d00000055", + "content": "Unlocking the Power of Generative AI Models and Systems such as GPT-4 and ChatGPT for Higher Education: A Guide for Students and Lecturers. University of Hohenheim, March 20, 2023. https://digital.uni-\n- hohenheim.de/fileadmin/einrichtungen/digital/Generative_AI_and_ChatGPT_in_Higher_Education.pdf\n- Gimpel, H., Jung, C., Utz, L., W\u00f6hl, M. (2023b). Von Null auf ChatGPT: Eine Schritt-f\u00fcr-Schritt-Anleitung, um sich mit der k\u00fcnstlichen Intelligenz vertraut zu machen. Universit\u00e4t Hohenheim, 21. April 2023. https://digital.uni- hohenheim.de/fileadmin/einrichtungen/digital/Von_Null_auf_ChatGPT_-_Anleitung.pdf\n\n## Weitere Nutzung:\n\nDieses Material ist unter der Creative Commons Attribution ShareAlike 4.0 (CC BY-SA) Lizenz lizenziert und darf in jedem Format oder Medium f\u00fcr jeden Zweck, einschlie\u00dflich kommerzieller Zwecke, bearbeitet, vervielf\u00e4ltigt und verbreitet werden, vorausgesetzt, die Autoren werden genannt und das Material wird unter denselben Bedingungen neu ver\u00f6ffentlicht. [IMAGE: ]\n\n\n## Rechtlicher Hinweis: https://creativecommons.org/licenses/by-sa/4.0/en/legalcode\n\nEmpfohlene Quellenangabe: Gimpel, H., Dilger, P., L\u00e4mmermann, L., Urbach, N. (2023). KOGNITION: Erkl\u00e4rung zur Nutzung von generativen KI-Tools in Hochschulpr\u00fcfungen. Forschungsinstitut f\u00fcr Informationsmanagement, Mai 22, 2023. 89", + "embedding": [ + 7.571814785478637e-05, + -0.01476541068404913, + -0.0006108390516601503, + -0.027140101417899132, + 0.012843326665461063, + 0.01552609447389841, + -0.009094242937862873, + 0.005756065249443054, + -0.02170664817094803, + -0.03173137083649635, + 0.019927192479372025, + 0.02838979661464691, + -0.015186503529548645, + -0.014928414486348629, + -0.0043603465892374516, + 0.01194680668413639, + 0.0337689146399498, + -0.0034808062482625246, + 0.014289983548223972, + -0.0031564971432089806, + 0.0016232442576438189, + 0.01697954349219799, + -0.004248281475156546, + -0.018758999183773994, + 0.0013778898864984512, + 0.0031649868469685316, + 0.032899562269449234, + -0.0340949222445488, + 0.0025469313841313124, + -0.018663913011550903, + 0.010079056955873966, + 0.0007589855813421309, + -0.03151403367519379, + 0.002815208164975047, + -0.0023024261463433504, + 0.0032142275013029575, + 0.0009287809953093529, + -0.0023448748979717493, + 0.020321117714047432, + 0.023350266739726067, + 0.007165367249399424, + 0.0006762103294022381, + 0.03037300705909729, + -0.029748158529400826, + -0.010771822184324265, + 0.010690320283174515, + -0.0012938411673530936, + -0.0023261974565684795, + -0.015363090671598911, + 0.0321388803422451, + 0.0132304597645998, + 0.03069901466369629, + 0.021353473886847496, + -0.0021597978193312883, + -0.014154147356748581, + -0.007056698203086853, + -0.010248851962387562, + 0.030264336615800858, + -0.011220081709325314, + 0.009189329110085964, + -0.0007954915636219084, + -0.024898800998926163, + -0.030182836577296257, + 0.024477709084749222, + -0.014031894505023956, + -0.004710125271230936, + -0.046890705823898315, + 0.011294792406260967, + -0.0018524681217968464, + -0.006927653681486845, + 0.01847374252974987, + 0.0019051047274842858, + -0.00013084860984236002, + -0.04175609350204468, + 0.03194870799779892, + 0.00952212791889906, + 0.002524858107790351, + -0.010466190055012703, + -0.029992664232850075, + 0.0019883045461028814, + 0.017169713973999023, + -0.009311581030488014, + -0.00965796411037445, + 0.014955581165850163, + 0.007321578916162252, + 0.0024976907297968864, + 0.02038903534412384, + 0.011552881449460983, + 0.01813415251672268, + -0.015566845424473286, + -0.007681545335799456, + 0.01094840932637453, + 0.0058205872774124146, + 0.016952374950051308, + -0.02197832055389881, + 0.016531283035874367, + -0.004122633021324873, + 0.016667120158672333, + 0.01443940307945013, + -0.023092178627848625, + -0.011043494567275047, + 0.006734086666256189, + -0.016422614455223083, + -0.011417044326663017, + -0.02745252475142479, + 0.02420603670179844, + 0.015947187319397926, + -0.0034451493993401527, + 0.0028270939365029335, + 0.011451004073023796, + -0.03094351850450039, + 0.0321388803422451, + -0.02271183766424656, + -0.04384797066450119, + 0.038414519280195236, + -0.022766171023249626, + 0.01897633820772171, + 0.003122537862509489, + -0.003800021717324853, + -0.020117362961173058, + 0.033660247921943665, + -0.006557499524205923, + 0.015091418288648129, + -0.0015926811611279845, + 0.01056806743144989, + 0.02647450380027294, + -0.007083865348249674, + -0.01081257313489914, + -0.01147817075252533, + -0.002709935186430812, + 0.0032821455970406532, + -0.0017573826480656862, + 0.02072862535715103, + 0.030916351824998856, + -0.030182836577296257, + 0.03238338604569435, + -0.013834931887686253, + -0.012659947387874126, + -0.036730147898197174, + -0.026936346665024757, + 0.0023686462081968784, + 0.02546931430697441, + -0.003596267197281122, + -0.007416664622724056, + -0.014901246875524521, + 0.01954684965312481, + 0.0013405348872765899, + 0.007606835104525089, + 0.0014882569666951895, + 0.010710695758461952, + -0.02480371668934822, + -0.015050667338073254, + -0.012204895727336407, + 0.017617974430322647, + 0.006744274403899908, + 0.005066695623099804, + 0.016123773530125618, + 0.013176125474274158, + -0.030590344220399857, + -0.010065472684800625, + 0.005280638113617897, + -0.010126599110662937, + -0.004136216826736927, + -0.0020290554966777563, + 0.031160857528448105, + 0.009488169103860855, + 0.026488088071346283, + 0.02488521859049797, + 0.015240837819874287, + -0.005005569197237492, + -0.02944931946694851, + 0.033904749900102615, + -0.03969138115644455, + 0.02688201330602169, + -0.00638770405203104, + 0.013739846646785736, + 0.005657583940774202, + -0.013441006653010845, + -0.01589285209774971, + -0.015471759252250195, + -0.004883316811174154, + 0.02272542007267475, + 0.018039066344499588, + 0.009562878869473934, + -0.024912385269999504, + -0.011383085511624813, + 0.024830883368849754, + 0.00020630145445466042, + -0.005447037518024445, + -0.015661930665373802, + 0.029014643281698227, + 0.01647694781422615, + 0.004958026576787233, + -0.00973267387598753, + -0.632888674736023, + -0.018949169665575027, + 0.023920780047774315, + -0.013094623573124409, + 0.006380912382155657, + 0.019696269184350967, + 0.0033602516632527113, + -0.0034875981509685516, + -0.0012878983980044723, + 0.05982232466340065, + -0.00688690273091197, + -0.006418267264962196, + -0.011206498369574547, + -0.017427802085876465, + -0.0003291908942628652, + -0.012293188832700253, + -0.013902849517762661, + -0.03694748505949974, + 0.022847672924399376, + 0.01756363920867443, + -0.012462984770536423, + 0.009882094338536263, + -0.00715857557952404, + -0.020443370565772057, + -0.005307805258780718, + 0.02154364436864853, + -0.0004987740539945662, + 0.01231356430798769, + 0.01788964681327343, + 0.0019424597267061472, + -0.033089734613895416, + 0.016449781134724617, + -0.003823793027549982, + -0.018460160121321678, + 0.036485642194747925, + 0.009644380770623684, + -0.019750604405999184, + 0.017617974430322647, + -0.0056915427558124065, + 0.017359884455800056, + -0.02996549755334854, + -0.005090467166155577, + 0.00390189909376204, + 0.025849657133221626, + 0.0014016613131389022, + 0.019737020134925842, + 0.013902849517762661, + -0.03605096414685249, + -0.02128555439412594, + -0.014778994023799896, + 0.000710169377271086, + 0.021760981529951096, + 0.03735499456524849, + -0.007131407968699932, + -0.00169455842114985, + 0.015947187319397926, + 0.01730555109679699, + -0.016096606850624084, + 0.009481376968324184, + -0.022521665319800377, + -0.004081882070749998, + 0.01780814491212368, + -0.00844902079552412, + -0.017943980172276497, + -0.022902008146047592, + 0.03461110219359398, + 0.0012887472985312343, + -0.009827759116888046, + 0.014031894505023956, + -0.029476486146450043, + -0.015349507331848145, + 0.017414219677448273, + -0.012259230017662048, + -0.013800972141325474, + 0.0019101985963061452, + 0.009542503394186497, + 0.0038679398130625486, + -0.03368741273880005, + -0.0030665055382996798, + 0.032410550862550735, + -0.007403080817312002, + -0.012524111196398735, + 0.030182836577296257, + -0.0027931348886340857, + 0.009698715060949326, + -0.02056562341749668, + -0.016938792541623116, + -0.0021003694273531437, + 0.01043902337551117, + 0.013325545005500317, + 0.02120405249297619, + 0.0266239233314991, + -0.01938384585082531, + -0.013040289282798767, + 0.01484691258519888, + 0.010337145999073982, + -0.019832106307148933, + -0.0012760126264765859, + -0.017373468726873398, + -0.041294246912002563, + -0.0018626558594405651, + -0.011315167881548405, + 0.026691840961575508, + 0.020850878208875656, + 0.02553723193705082, + 0.009202912449836731, + -0.036648645997047424, + 0.003436659462749958, + 0.03178570419549942, + -0.023418186232447624, + -0.015702681615948677, + 0.007212909869849682, + -0.011607215739786625, + -0.025088973343372345, + 0.004822190385311842, + -0.02129913866519928, + 0.02445054240524769, + -0.02072862535715103, + 0.00445203622803092, + -0.017699476331472397, + 0.003969816956669092, + -0.019275177270174026, + -0.0013524206588044763, + 0.006608438212424517, + 0.02663750760257244, + 0.03053601086139679, + -0.008537313900887966, + -0.020592790096998215, + -0.02245374768972397, + 0.01156646478921175, + 0.009345540776848793, + -0.02855280041694641, + 0.02238583005964756, + 0.0016792768146842718, + 0.03572496026754379, + 0.00407848646864295, + 0.02114971913397312, + 0.0038271890953183174, + 0.017862480133771896, + 0.0001638525864109397, + -0.017957564443349838, + -0.01028281170874834, + 0.011199706234037876, + -0.0029340649489313364, + -0.02887880615890026, + -0.0101062236353755, + 0.00263013131916523, + 0.0007122918032109737, + 0.021421391516923904, + -0.014303566887974739, + -0.01360400952398777, + -0.0016894645523279905, + 0.01393680926412344, + 0.03251922130584717, + -0.0012963881017640233, + -0.024830883368849754, + -0.007212909869849682, + -0.015322339721024036, + 0.00012511800741776824, + -0.01862316206097603, + 0.021923985332250595, + 0.034475263208150864, + -0.02480371668934822, + 0.015621179714798927, + 0.011199706234037876, + 0.00411584135144949, + 0.006808796897530556, + 0.026678258553147316, + -0.05115596577525139, + -0.024532044306397438, + 0.0011104621225968003, + -0.023418186232447624, + 0.008326767943799496, + 0.02204623818397522, + -0.0015612689312547445, + -0.010710695758461952, + -0.006394495721906424, + 0.0167214535176754, + -0.0026572984643280506, + -0.0052466788329184055, + 0.01172946859151125, + 0.005908880848437548, + -0.01169550884515047, + -0.02311934530735016, + 0.014167730696499348, + 0.018867667764425278, + 0.023621940985322, + 0.015444592572748661, + -0.02836262807250023, + -0.007504958193749189, + 0.008041511289775372, + 0.039718545973300934, + -0.013597218319773674, + 0.033089734613895416, + -0.01318291760981083, + 0.024925969541072845, + -0.012069059535861015, + -0.013583634048700333, + -0.0002761298092082143, + 0.02787361852824688, + 0.03925670310854912, + 0.008768236264586449, + 0.01782172918319702, + -0.018120568245649338, + 0.008788611739873886, + -0.03268222510814667, + 0.012333939783275127, + -0.01352250762283802, + 0.026922764256596565, + 0.00482558598741889, + 0.01285691000521183, + 0.004808606579899788, + -0.012069059535861015, + -0.004900296218693256, + -0.007627210579812527, + 0.03355157747864723, + -0.02004944533109665, + -0.006078676320612431, + -0.029503654688596725, + 0.0017641745507717133, + 0.028607133775949478, + 0.006618625950068235, + 0.02311934530735016, + 0.015471759252250195, + -0.003708332311362028, + 0.029775327071547508, + -0.016775788739323616, + 0.007348746061325073, + 0.015933603048324585, + -0.030644679442048073, + -0.005192344076931477, + -0.00505311181768775, + 0.016925208270549774, + 0.016789373010396957, + 0.03545328602194786, + 0.009841343387961388, + 0.017441386356949806, + 0.0012972371187061071, + 0.034583933651447296, + 0.00430601229891181, + 0.008876904845237732, + 0.009685131721198559, + 0.0009720788220874965, + -0.022263577207922935, + 0.014561655931174755, + -0.008550898171961308, + 0.0026810697745531797, + 0.010961992666125298, + -0.027656279504299164, + 0.01294520404189825, + -0.019275177270174026, + 0.01879975013434887, + -0.009990762919187546, + 0.003925670403987169, + 0.04974326863884926, + -0.008326767943799496, + 0.02504822239279747, + -0.00989567767828703, + -0.007470998913049698, + 0.017699476331472397, + -0.014167730696499348, + 0.01401831116527319, + 0.004190551117062569, + -7.730998186161742e-05, + 0.0025842864997684956, + -0.012293188832700253, + -0.025510065257549286, + -0.009121410548686981, + -0.025075389072299004, + -0.0026759759057313204, + -0.016775788739323616, + -0.010724279098212719, + -0.003086881013587117, + -0.0027897388208657503, + 0.01790323108434677, + 0.0016334319952875376, + 0.023010676726698875, + 0.01127441693097353, + 0.019764188677072525, + 0.04379363730549812, + -0.018745414912700653, + -0.03126952797174454, + 0.007416664622724056, + 0.019193675369024277, + -0.006200929172337055, + -0.020022276788949966, + -0.013549675233662128, + 0.006034529767930508, + -0.025768155232071877, + -0.004462223965674639, + -0.009875302202999592, + 0.018595995381474495, + -0.0032940313685685396, + -0.0058171916753053665, + 0.004570893011987209, + -0.01913934014737606, + 0.01452090498059988, + -0.020497703924775124, + -0.008435436524450779, + 0.007701920811086893, + 0.008924447931349277, + 0.0025282539427280426, + -0.03808851167559624, + -0.017359884455800056, + 0.006903882138431072, + -0.013950392603874207, + -0.041321415454149246, + 0.0028016245923936367, + -0.0018286968115717173, + -0.02996549755334854, + 0.028851639479398727, + 0.011233665980398655, + -0.006105843465775251, + -0.020348284393548965, + -0.0032295091077685356, + -0.00014252203982323408, + -0.001918688416481018, + -0.002124140737578273, + 0.02819962427020073, + 0.009888885542750359, + -0.011865304782986641, + -0.017522888258099556, + -0.01731913350522518, + 0.013325545005500317, + 0.04118558019399643, + 0.029259148985147476, + -0.02113613486289978, + 0.003273655893281102, + -0.011790595017373562, + 0.00042682327330112457, + -0.004377325996756554, + -0.028416963294148445, + -0.012001140974462032, + 0.0011970577761530876, + -0.0016088116681203246, + 0.004818794317543507, + 0.015105001628398895, + -0.013705886900424957, + 0.008129805326461792, + -0.0064488304778933525, + 0.0074642072431743145, + 0.0011418742360547185, + -0.007640794385224581, + -0.009039908647537231, + 0.005090467166155577, + -0.0011563068255782127, + -0.015186503529548645, + 0.011790595017373562, + 0.01110462099313736, + -0.02446412481367588, + 0.03659431263804436, + 0.031160857528448105, + -0.021652312949299812, + -0.03352440893650055, + -0.016490532085299492, + 0.013298378325998783, + 0.010608818382024765, + -0.0025520252529531717, + -0.019343094900250435, + 0.01647694781422615, + 0.006285826675593853, + -0.007165367249399424, + 0.012904453091323376, + 0.016286777332425117, + 0.018283572047948837, + 0.030997853726148605, + 0.002063014544546604, + -0.017685892060399055, + 0.009406667202711105, + -0.028770137578248978, + 0.002185267163440585, + 0.02388002909719944, + 0.0021190468687564135, + -0.023268766701221466, + -0.001517122145742178, + 0.01579776592552662, + -0.03463826701045036, + -0.0016750319628044963, + 0.0016665421426296234, + 0.005385911092162132, + -0.011043494567275047, + -0.01140346098691225, + 0.010085848160088062, + -0.0006091411341913044, + -0.019587600603699684, + -0.040397729724645615, + -0.020076612010598183, + 0.014086228795349598, + -0.02013094536960125, + -0.003660789458081126, + -0.021937569603323936, + -0.02287483960390091, + -0.017577223479747772, + 0.034067753702402115, + 0.010228476487100124, + -0.02022603154182434, + -0.03556195646524429, + -0.01169550884515047, + 0.005497976206243038, + 0.004003776237368584, + 0.011552881449460983, + 0.010588442906737328, + 0.003718519816175103, + -0.0033993045799434185, + -0.0022939362097531557, + -0.048058897256851196, + -0.006676356308162212, + -0.04099540784955025, + 0.0196419358253479, + -0.00039350090082734823, + -0.01712896302342415, + -0.02205982245504856, + 0.009936428628861904, + 0.024586377665400505, + 0.012204895727336407, + -0.008924447931349277, + -0.01043902337551117, + 0.010330353863537312, + 0.00021309326984919608, + 0.001613056636415422, + 0.01581135019659996, + 0.005025944672524929, + 0.02322801575064659, + -0.016938792541623116, + -0.0009737767977640033, + -0.025686653330922127, + -0.009556086733937263, + -0.03173137083649635, + 0.012918036431074142, + 0.02704501524567604, + 0.014656741172075272, + 0.0238664448261261, + 0.004241489805281162, + -0.011688717640936375, + 0.029829660430550575, + 0.002032451331615448, + 0.01680295541882515, + -0.01081936527043581, + 0.001847374252974987, + -0.010099432431161404, + -0.002961232326924801, + -0.003949441481381655, + 0.02279333770275116, + -0.03724632412195206, + -0.00998397171497345, + -0.038333017379045486, + 0.02397511526942253, + 0.009175744839012623, + -0.007953218184411526, + 0.035072945058345795, + -0.0007038020412437618, + 0.006408079527318478, + -0.03602379932999611, + 0.015295172110199928, + -0.0264609195291996, + 0.007681545335799456, + -0.006340161431580782, + -0.015852101147174835, + -0.009331956505775452, + -0.026773342862725258, + -0.03572496026754379, + 0.013386671431362629, + 0.002105463296175003, + -0.005171968601644039, + -0.010805780999362469, + -0.006020945962518454, + -0.012673530727624893, + 0.01019451767206192, + -0.00853052269667387, + -0.02969382517039776, + -0.010826156474649906, + -0.0033840229734778404, + 0.033089734613895416, + 0.013909641653299332, + -0.0036913526710122824, + 0.018283572047948837, + -0.009630796499550343, + -0.01435790117830038, + -0.018460160121321678, + -0.03029150515794754, + -0.002074900083243847, + 0.010751446709036827, + 0.02795512042939663, + 0.02421962097287178, + 0.03836018219590187, + -0.005986986681818962, + 0.021068217232823372, + 0.03284522891044617, + -0.006934445351362228, + -0.009399875067174435, + 0.017943980172276497, + 0.01946534775197506, + -0.025442147627472878, + 0.017916813492774963, + -0.005776440724730492, + 0.019356679171323776, + 0.022249992936849594, + -0.0003760968684218824, + 0.00014337101310957223, + 0.011152164079248905, + -0.017359884455800056, + -0.010846531949937344, + -0.013366295956075191, + -0.056127578020095825, + -0.037979841232299805, + 0.017291966825723648, + 0.0008973688236437738, + -0.0026080578099936247, + -0.03759950026869774, + -0.012612404301762581, + 0.02586323954164982, + 0.0035928713623434305, + 0.011892472393810749, + 0.025510065257549286, + 0.014480154030025005, + -0.03792550787329674, + 0.017943980172276497, + 0.011967182159423828, + -0.004356950521469116, + -0.017753809690475464, + 0.0034111901186406612, + -0.032736558467149734, + 0.009630796499550343, + 0.03558912128210068, + 0.004200738854706287, + 0.018704663962125778, + 0.011152164079248905, + -0.000847279210574925, + 0.0034502430353313684, + -0.006183949764817953, + 0.006581271067261696, + -0.0016512605361640453, + -0.027099350467324257, + -0.02779211662709713, + 0.001411849050782621, + -0.010839740745723248, + 0.021326305344700813, + -0.010635985992848873, + 0.002477315254509449, + -0.00316159101203084, + -0.0158249344676733, + 0.03260072320699692, + -0.007199326064437628, + -0.004329783376306295, + -0.003390814643353224, + 0.009630796499550343, + 0.031405363231897354, + 0.0007156877545639873, + 0.027479693293571472, + 0.03996305167675018, + -0.002822000067681074, + -0.00696840463206172, + -0.023187264800071716, + 0.01837865822017193, + -0.0010051889112219214, + 0.023160096257925034, + 0.001363457296974957, + 0.00669673178344965, + -0.03173137083649635, + 0.010744654573500156, + 0.029422152787446976, + -0.03159553185105324, + -0.024939551949501038, + 0.02495313622057438, + 0.017604390159249306, + 0.0038815236184746027, + -0.01780814491212368, + -0.0013931714929640293, + -0.03078051656484604, + -0.012299980968236923, + 0.000943213643040508, + 0.02172023057937622, + -0.002849167212843895, + -0.0036098507698625326, + -0.010418647900223732, + 0.013325545005500317, + 0.034149255603551865, + 0.0231329295784235, + 0.00823168270289898, + 0.010316770523786545, + 0.010140183381736279, + 0.007321578916162252, + -0.004238093737512827, + 0.003265166189521551, + -0.017278382554650307, + 0.020823711529374123, + 0.021856067702174187, + -0.006207720842212439, + 0.013644760474562645, + -0.03526311367750168, + 0.020090194419026375, + 0.0034485452342778444, + -0.004713521338999271, + 0.022915590554475784, + -0.03626830503344536, + -0.013087831437587738, + -0.014249232597649097, + -0.0006672960589639843, + 0.002636922989040613, + -0.018582411110401154, + -0.0003353459760546684, + 0.00024471766664646566, + -0.014154147356748581, + 0.010303187184035778, + 0.004852753598242998, + 0.017101796343922615, + -0.010595235042273998, + 0.005087071098387241, + 0.002631829120218754, + -0.014289983548223972, + -0.01506425067782402, + -0.003387418808415532, + 0.013135374523699284, + -0.05759460851550102, + 0.009780216962099075, + 0.0017234236001968384, + -0.019438181072473526, + 0.01589285209774971, + -0.005986986681818962, + -0.01814773492515087, + 0.00669673178344965, + 0.03433942794799805, + -0.02114971913397312, + -0.0012607310200110078, + 0.02495313622057438, + -0.0029561384581029415, + -0.024776550009846687, + 2.7910124117624946e-05, + 0.001023866469040513, + -0.0020799939520657063, + 0.03379608318209648, + -0.004862941335886717, + -0.008754651993513107, + 0.009943220764398575, + -0.016110191121697426, + 0.02246733196079731, + -0.0046761659905314445, + 0.012456192634999752, + 0.01431715115904808, + -0.002348270732909441, + 0.009141786023974419, + -0.0019339699065312743, + 0.0021597978193312883, + 0.015675514936447144, + 0.013862098567187786, + -0.003097068751230836, + 0.027819283306598663, + -0.0198049396276474, + -0.001871145679615438, + 0.00865956675261259, + 0.022236408665776253, + -0.01422206498682499, + -0.03135102987289429, + -0.03037300705909729, + -0.003993588499724865, + 0.002774457447230816, + -0.0014958977699279785, + -0.01405906118452549, + -0.012238854542374611, + -0.0035555162467062473, + -0.01746855303645134, + 0.013651552610099316, + 0.011980765499174595, + 0.007294411770999432, + -0.01110462099313736, + 0.016599200665950775, + 0.010493357665836811, + 0.011063870042562485, + -0.010581650771200657, + -0.005902089178562164, + -0.006214512977749109, + 0.0018456763355061412, + -0.028607133775949478, + 0.010323561728000641, + 0.014874079264700413, + 0.029829660430550575, + 0.015498926863074303, + -0.03621396794915199, + -0.023336684331297874, + -0.019261592999100685, + -0.019356679171323776, + -0.02197832055389881, + -0.01913934014737606, + 0.018922002986073494, + -0.010425439104437828, + 0.028172457590699196, + 0.0033025210723280907, + 0.013203293085098267, + 0.008836153894662857, + 0.0036098507698625326, + -0.022005487233400345, + -0.014344317838549614, + -0.00032303581247106194, + -0.005168572999536991, + -0.013332337141036987, + 0.01443940307945013, + -0.02688201330602169, + 0.007287620101124048, + 0.01223206240683794, + -0.0048731290735304356, + -0.012361107394099236, + 0.013875682838261127, + -0.008890489116311073, + -0.0039732130244374275, + 0.021081801503896713, + 0.011451004073023796, + -0.007600043434649706, + -0.0005102352588437498, + 0.030237169936299324, + -0.05840962752699852, + 0.008863321505486965, + -0.0022277161478996277, + -0.01043902337551117, + -0.0319758765399456, + -0.005267054308205843, + 0.031242359429597855, + -0.004346763249486685, + 0.0008353934972546995, + 0.013794180937111378, + -0.0027863429859280586, + -0.010445814579725266, + 0.02072862535715103, + 0.03558912128210068, + -0.0033500639256089926, + 0.011627591215074062, + -0.019030671566724777, + 0.020022276788949966, + -6.250594015000388e-05, + -0.014208481647074223, + 0.006442038808017969, + -0.0116479666903615, + -0.008727485314011574, + 0.03792550787329674, + -0.03352440893650055, + 0.022698253393173218, + -0.025184057652950287, + 0.01086011528968811, + -0.024654297158122063, + -0.00881577841937542, + -0.024110950529575348, + -0.008971990086138248, + -0.035887960344552994, + 0.019995110109448433, + 0.016952374950051308, + -0.007538917008787394, + 0.007240077015012503, + -0.004251677542924881, + -0.0025197642389684916, + -0.01293841190636158, + -0.025727404281497, + -0.017359884455800056, + -0.008713901042938232, + -0.01506425067782402, + 0.022576000541448593, + -0.008768236264586449, + -0.006812192499637604, + 0.004910483956336975, + -0.006995571777224541, + -0.01530875638127327, + 0.019166508689522743, + 0.19538699090480804, + -0.027058599516749382, + 0.012992746196687222, + 0.008353935554623604, + -0.011342334561049938, + -0.019017087295651436, + 0.026678258553147316, + 0.006346953101456165, + -0.0060073621571063995, + -0.003178570419549942, + -0.003670977195724845, + -0.0018983129411935806, + -0.016762204468250275, + -0.0053587439469993114, + -0.00020163207955192775, + -0.03338857367634773, + -0.03683881834149361, + -0.0318128727376461, + -0.00036739485221914947, + 0.002266769064590335, + 0.006873318925499916, + -0.009454209357500076, + -0.016042271628975868, + -0.009970387443900108, + 0.007837757468223572, + -0.006961612496525049, + -0.012544486671686172, + 0.009345540776848793, + 0.019900023937225342, + 0.0018847292521968484, + -0.007830965332686901, + 0.0334429070353508, + -0.005100654903799295, + 0.0017930397298187017, + -0.010398272424936295, + -0.010153766721487045, + 0.020022276788949966, + 0.002322801388800144, + 0.04061506688594818, + 0.026243582367897034, + 0.02904180996119976, + 0.009121410548686981, + 0.0052908253856003284, + -0.04550517350435257, + -0.0038747317157685757, + 0.019696269184350967, + -0.011899263598024845, + -0.0023431768640875816, + -0.012551277875900269, + -0.008944823406636715, + -0.0113219590857625, + 0.003898503025993705, + 0.021597979590296745, + 0.025822488591074944, + -0.01606944017112255, + -0.001129988580942154, + -0.02013094536960125, + 0.003105558454990387, + 0.0015366486040875316, + 0.0029748158995062113, + -0.02496672049164772, + 0.00853052269667387, + 0.006608438212424517, + 0.011525713838636875, + -0.0161509420722723, + -0.0019967942498624325, + -0.018786165863275528, + -0.0007802100153639913, + 0.00844902079552412, + -0.016205275431275368, + -0.012204895727336407, + -0.008415061980485916, + -0.013325545005500317, + 0.019085006788372993, + -0.03553478792309761, + -0.04881958290934563, + 0.03102502040565014, + 0.023187264800071716, + 0.0007504958193749189, + 0.03610530123114586, + 0.0025469313841313124, + -0.004278844688087702, + 0.001620697439648211, + -0.020198864862322807, + -0.01572984829545021, + -0.04034339264035225, + 0.031160857528448105, + -0.01094840932637453, + -0.02347251959145069, + -0.016843706369400024, + -0.017251215875148773, + -0.00903311651200056, + -0.0049750059843063354, + 0.002509576501324773, + 0.005256866570562124, + 0.010832948610186577, + 0.02928631566464901, + 0.005484392400830984, + 0.00928441435098648, + 0.0013736450346186757, + -0.008353935554623604, + 0.06286506354808807, + 0.01998152583837509, + -0.004937651101499796, + -0.0015867382753640413, + 0.009005949832499027, + -0.010785405524075031, + 0.006543915718793869, + -0.0009092545369639993, + -0.013665135949850082, + 0.00019186883582733572, + -0.03363307937979698, + 0.014493738301098347, + 0.0003168807306792587, + -0.018595995381474495, + 0.027669863775372505, + -0.01589285209774971, + 0.011844929307699203, + 0.007443831767886877, + -0.015621179714798927, + -0.022752586752176285, + -0.00919612031430006, + -0.0007403080817312002, + 0.01581135019659996, + -0.011165747418999672, + -0.03537178412079811, + -0.022480914369225502, + -0.0016877666348591447, + -0.03526311367750168, + -0.00807547103613615, + 0.026066994294524193, + -0.017835311591625214, + 0.01748213730752468, + 0.019098589196801186, + -0.002203944604843855, + 0.014778994023799896, + 0.010914450511336327, + -0.011294792406260967, + -0.019288761541247368, + 0.01277540810406208, + 0.008089054375886917, + -0.0061907414346933365, + -0.0027472900692373514, + -0.009141786023974419, + 0.023024260997772217, + -0.02777853235602379, + 0.00815018080174923, + -0.0018202069913968444, + -0.02178815007209778, + -0.02163873054087162, + -0.004312803968787193, + -0.018188485875725746, + 0.0015612689312547445, + 0.016585618257522583, + 0.031486865133047104, + 0.0203754510730505, + -0.04115841165184975, + 0.0023992094211280346, + 0.000822658883407712, + 0.014249232597649097, + -0.021937569603323936, + -0.007111032493412495, + 0.004227905999869108, + -0.015240837819874287, + -0.010765030048787594, + -0.011077454313635826, + -0.17397919297218323, + -0.014901246875524521, + 0.005219511687755585, + -0.05066695809364319, + 0.0052466788329184055, + -0.007640794385224581, + 0.012306773103773594, + 0.0022701648995280266, + 0.004764459561556578, + -0.0161509420722723, + -0.008795402944087982, + -0.016544867306947708, + 0.0037049362435936928, + -0.006065092980861664, + -0.012225271202623844, + 0.019913608208298683, + -0.013794180937111378, + 0.02953082136809826, + 0.009773424826562405, + 0.007966801524162292, + 0.019750604405999184, + -0.0231329295784235, + 0.005307805258780718, + 0.004193947184830904, + -0.011722676455974579, + -0.011240457184612751, + -0.010826156474649906, + 0.022562416270375252, + -0.019927192479372025, + -0.019940774887800217, + -0.007043114397674799, + -0.0014653345569968224, + 0.016436196863651276, + 0.0014619386056438088, + -0.0021428184118121862, + -0.011756635271012783, + 0.013264418579638004, + 0.0009185932576656342, + -0.033415742218494415, + 0.02154364436864853, + 0.029720991849899292, + 0.01665353588759899, + 0.01073786336928606, + -0.01787606254220009, + -0.016110191121697426, + 0.012897660955786705, + 0.01873183250427246, + -0.020076612010598183, + 0.016015104949474335, + -0.01946534775197506, + 0.013094623573124409, + -0.006496373098343611, + 0.009562878869473934, + 0.012958787381649017, + 0.0012522413162514567, + 0.012170936912298203, + 0.007511749863624573, + 0.009257246740162373, + -0.005144801456481218, + -0.0027371023315936327, + 0.024518460035324097, + 0.0008205363992601633, + 0.009372707456350327, + -0.003249884583055973, + 0.0005047169397585094, + -0.026406586170196533, + -0.007790214382112026, + 0.02586323954164982, + -0.02654242143034935, + 0.0027897388208657503, + -0.0011070661712437868, + -0.01452090498059988, + -0.001251392299309373, + -0.005986986681818962, + 0.009236871264874935, + 0.008299600332975388, + -0.010235268622636795, + 0.007328370586037636, + 0.038142845034599304, + 0.007430247962474823, + -0.01922084204852581, + 0.03363307937979698, + -0.02129913866519928, + -0.008048303425312042, + -0.004519954323768616, + -0.025251977145671844, + 0.009406667202711105, + 0.012014724314212799, + -0.006934445351362228, + -0.014412236399948597, + 0.0030919748824089766, + -0.009420250542461872, + -0.02337743528187275, + -0.011451004073023796, + 0.01748213730752468, + 0.0013974163448438048, + -0.0130674559623003, + -0.001670786994509399, + -0.010690320283174515, + -0.009060284122824669, + 0.028308294713497162, + 0.004024151712656021, + -0.011165747418999672, + -0.017156129702925682, + 0.03159553185105324, + -0.003966421354562044, + -0.027072183787822723, + 0.00861202459782362, + 0.03605096414685249, + 0.013291586190462112, + -0.03819717839360237, + -0.006472602020949125, + 0.0040445271879434586, + -0.01019451767206192, + -0.0029493465553969145, + 0.01954684965312481, + -0.022440163418650627, + -0.03746366500854492, + -0.0025876823347061872, + -0.0017437990754842758, + 0.05156347528100014, + 0.003470618510618806, + -0.016286777332425117, + 0.03708332031965256, + -0.02154364436864853, + -0.028145290911197662, + -0.06710315495729446, + -0.0013566655106842518, + 0.009793800301849842, + 0.04246244207024574, + -0.012327148579061031, + 0.025102555751800537, + -0.004584476817399263, + 0.02863430231809616, + -0.013189708814024925, + 0.03732782602310181, + 0.0034875981509685516, + -0.017101796343922615, + -0.0015128772938624024, + -0.007620418909937143, + 0.007083865348249674, + -0.017441386356949806, + -0.017848895862698555, + -0.019614767283201218, + -0.023852862417697906, + 0.02836262807250023, + -0.00646920595318079, + 0.009461001493036747, + 0.011288000270724297, + -0.031405363231897354, + -0.015403841622173786, + -0.03184003755450249, + -0.04637452960014343, + 0.027683446183800697, + 0.027846449986100197, + 0.0022311119828373194, + 0.009257246740162373, + -0.01813415251672268, + 0.004628623370081186, + -0.03526311367750168, + 0.0032329049427062273, + -0.004591268487274647, + 0.009929636493325233, + -0.03012850135564804, + 0.011063870042562485, + -0.02696351520717144, + -0.012741449289023876, + -0.0023295932915061712, + 0.0074098724871873856, + -0.02661033906042576, + -0.0099024698138237, + -0.004295824561268091, + -0.01423564925789833, + 0.006367328576743603, + -0.007274036295711994, + -0.029096145182847977, + -0.03078051656484604, + 0.0010213195346295834, + -0.025360645726323128, + 0.0238664448261261, + 0.029856828972697258, + 0.011124996468424797, + -0.004879920743405819, + -0.0035385368391871452, + -0.003202341729775071, + -0.010228476487100124, + -0.0050463201478123665, + -0.0067069195210933685, + -0.034502431750297546, + -0.0013193105114623904, + 0.0016274892259389162, + 0.008883696980774403, + -0.015852101147174835, + -0.02087804675102234, + 0.010663152672350407, + -0.0036913526710122824, + 0.010242060758173466, + 0.009841343387961388, + -0.005192344076931477, + 0.016083022579550743, + -0.02337743528187275, + -0.00889728032052517, + -0.016110191121697426, + -0.01318291760981083, + 0.024667879566550255, + -0.0030376403592526913, + -0.020022276788949966, + -0.014425819739699364, + 0.016341112554073334, + -0.0020358471665531397, + -0.0004839169851038605, + -0.005511559545993805, + 0.006900486070662737, + -0.002186965197324753, + -0.00014432611351367086, + -0.02961232326924801, + 0.009250454604625702, + 0.03303539752960205, + -0.009746258147060871, + -0.010982368141412735, + -0.005250074900686741, + 0.012367899529635906, + -0.016775788739323616, + 0.0007857283344492316, + 0.0046761659905314445, + 0.016409030184149742, + -0.016015104949474335, + -0.010955201461911201, + -0.07389497011899948, + 0.022902008146047592, + 0.00043934566201642156, + -0.01020130980759859, + -0.013896058313548565, + 0.0053044091910123825, + 0.004339971113950014, + 0.02087804675102234, + 0.007647586055099964, + 0.0034740145783871412, + -0.010079056955873966, + -0.0005412229220382869, + -0.01368551142513752, + -0.0007466754177585244, + 0.010011138394474983, + -0.010853324085474014, + 0.02777853235602379, + 0.00495123490691185, + -0.0008990667993202806, + -0.009787008166313171, + 0.006771441549062729, + 0.005171968601644039, + 0.03102502040565014, + 0.02314651384949684, + -0.009155369363725185, + 0.0004283089656382799, + -0.021910402923822403, + 0.0017072930932044983, + 0.016191693022847176, + -0.008211307227611542, + 0.0038136052899062634, + -0.027506859973073006, + -0.0008150180801749229, + 0.0193159282207489, + 0.006825776305049658, + -0.01862316206097603, + 0.00023941155814100057, + 0.03817001357674599, + 0.010323561728000641, + 0.05949631705880165, + -0.025088973343372345, + -0.02671900950372219, + 0.008632400073111057, + -0.02048412151634693, + -0.0021903610322624445, + -0.0039732130244374275, + 0.015852101147174835, + 0.013196500949561596, + 0.03061751276254654, + 0.0035045777913182974, + 0.04162025451660156, + 0.019071422517299652, + -0.022671086713671684, + -0.0198049396276474, + 0.011607215739786625, + 0.010160558857023716, + 0.012456192634999752, + 0.006024342030286789, + 0.017156129702925682, + -0.009719090536236763, + 0.022589584812521935, + -0.00944062601774931, + 0.010955201461911201, + -0.0005959819536656141, + 0.0024739194195717573, + 0.0007084714598022401, + -0.02561873383820057, + -0.019533267244696617, + 0.017237631604075432, + -0.03363307937979698, + -0.019248010590672493, + -0.00844222865998745, + -0.0041022575460374355, + 0.037490829825401306, + -0.0019984922837466, + -0.011885680258274078, + 0.0051889484748244286, + 0.01822923682630062, + -0.00707028154283762, + 0.018039066344499588, + 0.025605151429772377, + 0.01630036160349846, + -0.008123013190925121, + -0.01301991380751133, + 0.030970687046647072, + 0.008768236264586449, + 0.003976609092205763, + 0.0016809747321531177, + 0.0011155559914186597, + 0.0005424963892437518, + 0.012422233819961548, + 0.0011002743849530816, + -0.001492501818574965, + 0.01194680668413639, + 0.01647694781422615, + 0.001774362288415432, + 0.0008150180801749229, + 0.006492977030575275, + 0.015444592572748661, + 0.019750604405999184, + 0.02580890618264675, + 0.009202912449836731, + 0.0040886737406253815, + -0.01748213730752468, + -0.01681653968989849, + 0.005348556209355593, + -0.020117362961173058, + -0.04458148777484894, + 0.02246733196079731, + 0.012442609295248985, + 0.020103778690099716, + 0.016952374950051308, + -0.009780216962099075, + 0.0013099717907607555, + -0.018460160121321678, + 0.03488277271389961, + -0.0036879568360745907, + -0.022929174825549126, + -0.035887960344552994, + 0.0542258694767952, + 0.011016327887773514, + 0.01543100830167532, + 0.009698715060949326, + -0.011688717640936375, + 0.043223123997449875, + 0.0033110110089182854, + 0.03143253177404404, + -0.022739004343748093, + 0.018025482073426247, + -0.010995952412486076, + -0.029313482344150543, + 0.022535249590873718, + -0.017006710171699524, + -0.004540329799056053, + -0.016409030184149742, + 0.0058783176355063915, + -0.00998397171497345, + 0.01712896302342415, + -0.0005696636508218944, + 0.11497188359498978, + 0.026338666677474976, + -0.01888125203549862, + 0.025605151429772377, + -0.014561655931174755, + -0.0035860794596374035, + 0.013563258573412895, + 0.0033110110089182854, + -0.02097313106060028, + -0.024735799059271812, + -0.015553261153399944, + -0.010934825986623764, + 0.0039969845674932, + -0.021530060097575188, + 0.005555706564337015, + -0.021760981529951096, + -0.006194137502461672, + 0.024178870022296906, + -0.010771822184324265, + 0.016164524480700493, + 0.03569779172539711, + 0.0024942948948591948, + -0.003800021717324853, + 0.042054932564496994, + -0.024477709084749222, + -0.018446575850248337, + 0.02761552855372429, + -0.010011138394474983, + 0.005654187873005867, + -0.007246869150549173, + -0.009854926727712154, + 0.013909641653299332, + -0.050639789551496506, + -0.029911162331700325, + -0.01331196166574955, + -0.008829362690448761, + 0.010432231239974499, + -0.01065636146813631, + 0.017672307789325714, + -0.02546931430697441, + 0.005827378947287798, + 0.009012741036713123, + -0.01293161977082491, + 0.0009202912333421409, + -0.0020986716262996197, + -0.01813415251672268, + -0.013760222122073174, + 0.018256405368447304, + -0.010214893147349358 + ], + "metadata": { + "source": "Kreye_Marieke_BA_241_V2.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 17, + "has_images": true, + "image_count": 98, + "coordinates": "CoordinatesMetadata(points=((608.0, 196.8055555555553), (608.0, 464.44444444444423), (1045.5833333333333, 464.44444444444423), (1045.5833333333333, 196.8055555555553)), system=)", + "links": [], + "last_modified": "2025-05-05T23:00:23", + "_known_field_names": "frozenset({'is_continuation', 'sent_to', 'header_footer_type', 'email_message_id', 'filename', 'languages', 'detection_class_prob', 'sent_from', 'link_texts', 'cc_recipient', 'subject', 'image_mime_type', 'image_path', 'filetype', 'page_number', 'last_modified', 'signature', 'detection_origin', 'text_as_html', 'attached_to_filename', 'bcc_recipient', 'data_source', 'link_start_indexes', 'category_depth', 'emphasized_text_tags', 'parent_id', 'orig_elements', 'page_name', 'coordinates', 'url', 'link_urls', 'file_directory', 'links', 'table_as_cells', 'emphasized_text_contents', 'key_value_pairs', 'image_base64'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "Kreye_Marieke_BA_241_V2.pdf", + "detection_class_prob": 0.3422867953777313, + "parent_id": "e02392183bc6851689602ad4b9f6039f", + "text_as_html": "
USaMmMenfassung ..............44444ursnnnnnnensnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnennnnnnnennnnnnn nenn nn Il
Ihaltsverzeichnis ...................00004444nnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nennen IN
bk\u00fcrzungsverzeichnis .............0.244444044Hnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnnnnnnnnnnennnnnnn nennen V
bbildungsverzeichnis ...................44440444444440nHnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn VI
abellenverzeichnis ...................0..24044440nnnnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn vl
Einleitung..................4444004s44nnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nenn 1
Theorieteil..............uu..uusseennnennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nn nn 3
2.1 Nachhaltige Stadtentwicklung......................444400ssnnnnennnnnnnennnnnnnnennnnnnn nenn 3
2.1.1Nachhaltige Stadtentwicklung auf internationaler und nationaler Ebene... 3
2.1.2Mehrwert nachhaltiger Stadtentwicklung................nussesennneennnnnnnnnnnnnn 5
2.2Das Stadtklima ..............u...40uunnsennnnnnssnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnn 6
2.3Gr\u00fcne Infrastruktur........uuesseesssnsnnnnssnnnnsnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnn 7
2.3.1K\u00fchlungseffekt durch Stadtb\u00e4ume ......................-44400rsnnnnnennnnnnenennnnnnnnen 8
2.3.2Mehrwert Stadtgr\u00fcn ...............0.2444400nsnnnnnnennnnnnnnennnnnnnnennnnnnn nennen nennen 10
2.3.3Herausforderung gr\u00fcner Infrastruktur im urbanen Raum.......................- 11
2.4 Mobilit\u00e4tsver\u00e4nderung ................444440s444nnnnennnnnnnensnnnnnnennnnnnnnennnnnnnnennnnnnn anne 12
2.5Aktueller Stand der Forschung.....................4444rs4nnnnensnnnnnennnnnnnnennnnnnn nennen 13
Methodik und Toolerl\u00e4uterung .......................-44444004H4nnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn 15
3.1Methodik...............eennnnensnnnnennnnnsennnnnnnnnnnnnnnnnnnennnnnnensnnnnennnnnennnnnnennnn nen 15
3.2Toolvorstellung .................22444004sHnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 17
3.2.1Funktionsweise Python-Skript....................44400rnnnnnennnnnnnennnnnnenennnnnnn 17
3.2.2SimStadt.......nessenneennennnensnennnennnnnnennnnnnnennnnnnennnnnnnnnnnnnnnnnnnnnnn nennen 18
Modellhafte Analyse des Mobilit\u00e4tsverhaltens............................ 4400 nn 20
4.1 Quartiersarchetypen .......uuuesnsessnnnnssnnensnnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnn 20
4.2Mobilit\u00e4tsverhalten in den Quartiersarchetypen ..........uu.nuesnsnssnnnssnnennnnnnnnnnn 21
4.3Szenarien Mobilit\u00e4tsver\u00e4nderung...................-444400rssnnnnnennnnnnnnennnnnnnnnnnnnnnnnnnn 22
Fallstudien ................u0.2404044044nnnnnnsnnennnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnsnnnnnnnnnnnnnnnnnnnnnnn 24
5.1Datengrundlage....................444044444400rnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnnnennnnnnn nennen 24
", + "id": "ce00eae5-7e07-454f-9e4f-f79ac36f92f4", + "processing_timestamp": "2025-05-05T23:15:46.977945", + "chunk_number": 55, + "total_chunks": 56, + "chunking_strategy": "hybrid", + "word_count": 146 + } +} \ No newline at end of file diff --git a/data/processed/706487bf-0501-2c2e-189c-987900000000.json b/data/processed/706487bf-0501-2c2e-189c-987900000000.json new file mode 100644 index 0000000000000000000000000000000000000000..29db647a0c2d4116ddb850d2ed03b53b0eedba1a --- /dev/null +++ b/data/processed/706487bf-0501-2c2e-189c-987900000000.json @@ -0,0 +1,1569 @@ +{ + "id": "706487bf-0501-2c2e-189c-987900000000", + "content": "Prof. Dr. Michael Krone Augmented/Virtual Reality Engineering Studienbereich Informatik Fakult\u00a8at Vermessung, Informatik und Mathematik HFT Stuttgart\n\n[IMAGE: H \u00ae C h S C h U | e fur TecN nk Stuttga Ft]\n\nInformationsvisualisualisierung und Visual Analytics WS 24/25 \u00dcbungsblatt 1 Abgabe: Dienstag, 15 Oktober 2024, 23:55\n\u00dcbungsblatt 1\n\n## 1. Visualisierung des Auto-Datensatzes (10 Punkte)\n\nLaden Sie den Auto-Datensatz (CarPrice_deutsch.xlsx) von Moodle herunter. Sie k\u00f6nnen die Datei in MS Excel \u00f6ffnen. Sie enth\u00e4lt 204 verschiedene Fahrzeugmodelle mit 26 verschiedenen Attributen (kategorisch, ordinal und quantitativ). Schauen Sie sich die Daten in Excel an und erstellen Sie zwei verschiedene Diagramme aus den Daten. Erstellen Sie ein kurzes Dokument (z.B. mit Word) mit Abbildungen der beiden Visualisierungen, einer kurzen Beschreibung was zu sehen ist. Welche Daten-Attribute und Diagramm-Typen haben Sie gew\u00e4hlt? Warum? Welche Fragen k\u00f6nnen mit Ihrer gew\u00e4hlten Visualisierung beantwortet werden? Laden Sie als Abgabe das Dokument in Moodle als PDF hoch. \u2192 Sie k\u00f6nnen auch neue Daten aus dem Auto-Datensatz erstellen und diese Visualisieren (d.h. abgeleitete Daten) \u2013 Sie d\u00fcrfen hier kreativ sein! \u2192 Wenn Sie m\u00f6chten k\u00f6nnen Sie auch ein anderes Tool als Excel verwenden (z.B. Tableau https://www.tableau.com/de-de/academic/students, kostenlose Version f\u00fcr Studierende bzw. Testversion). Geben Sie in diesem Fall an, welches Tool sie verwendet haben. ## 2. Erste Website mit JavaScript (10 Punkte)\n\nErstellen Sie eine Website, um eine Zap-Hep-Zahlenfolge auszudrucken: Wenn eine Zahl durch 3 teilbar ist, drucken Sie ZAP, wenn eine 3 in der Zahl enthalten ist, drucken Sie HEP, wenn beides zutrifft, drucken Sie ZAP HEP, ansonsten drucken Sie die n\u00e4chste Zahl. Beispiel f\u00fcr Zahlen von 1 bis 14:\n1\n2\nZAP HEP\n4\n5\n\n## ZAP\n\n7\n8\n\n## ZAP\n\n10\n11\n\n## ZAP\n\n\n## HEP\n\n14\nVerwenden Sie eine einzelne HTML-Datei, die Ihren HTML- und JavaScript-Code enth\u00e4lt (Tipp: siehe Folien \u201cTutorial 0 (Web-Dev-Intro)\u201d in Moodle). Schreiben Sie die JavaScript-Funktion so, dass eine beliebige lange Zahlenreihe ausgegeben werden kann (d.h. die L\u00e4nge der Zahlenreihe soll per Variable in ihrem JavaScript-Code gesetzt werden k\u00f6nnen). Laden Sie Ihre HTML-Datei in Moodle hoch. Tipp: Es gibt mehrere M\u00f6glichkeiten, aus einem JavaScript-Programm Text auf eine Website zu setzen, die einfachste ist mittels document.write( ... \"Text\", Zahlen, etc. In diesem Tutorial werden noch weitere M\u00f6glichkeiten beschrieben: https://www.w3schools. com/js/js_output.asp ... );. Tipp: Sie ben\u00f6tigen f\u00fcr diese Aufgaben noch nicht die D3-Library (d\u00fcrfen diese aber verwenden, wenn Sie wollen).", + "embedding": [ + -0.0037169218994677067, + 0.015150240622460842, + -5.476573278428987e-05, + -0.01463895384222269, + 0.00804604310542345, + 0.017599036917090416, + -0.03907309100031853, + -0.005799070931971073, + -0.002073739655315876, + -0.04496634751558304, + 0.003219089936465025, + 0.02364029549062252, + 0.0011613278184086084, + 0.006444907281547785, + 0.014033482410013676, + 0.017572127282619476, + 0.030677219852805138, + -0.025308705866336823, + 0.013461648486554623, + -0.0057620699517428875, + -0.02369411662220955, + 0.010562112554907799, + 0.02423231303691864, + -0.006660185754299164, + -0.017989229410886765, + 0.02747494913637638, + 0.007528028450906277, + -0.017491396516561508, + -0.0001344440970569849, + -0.026196731254458427, + 0.007528028450906277, + -0.01645536907017231, + 0.002817124128341675, + -0.008812973275780678, + -0.007669304963201284, + 0.025591259822249413, + -0.007736579515039921, + 0.00017827769625000656, + 0.03280309587717056, + 0.004214753862470388, + 0.01794886402785778, + 0.01566152833402157, + 0.006801462732255459, + -0.018998349085450172, + 0.006310357712209225, + 0.007615485228598118, + -0.018379421904683113, + -0.0028860806487500668, + 0.010770664550364017, + 0.021393325179815292, + 0.011160857044160366, + 0.04413213953375816, + -0.005008594132959843, + -0.02927790768444538, + -0.0044703977182507515, + -0.002717894036322832, + -0.0010965761030092835, + -0.001243739272467792, + -0.0128763597458601, + -0.017397213727235794, + 0.005089323967695236, + 0.003005492966622114, + -0.03054266981780529, + 0.0032342267222702503, + -0.02209297940135002, + -0.0018231418216601014, + -0.044697247445583344, + 0.010784119367599487, + -0.0008068747702054679, + 0.005045595578849316, + 0.035063523799180984, + 0.006051350850611925, + -0.007400206755846739, + -0.0067072780802845955, + 0.04606964811682701, + 0.0004192048800177872, + 0.003999475389719009, + -0.016105540096759796, + 0.012600533664226532, + -0.003636192297562957, + 0.00016808140208013356, + -0.017935410141944885, + -0.009552993811666965, + 0.02863207273185253, + 0.03229181095957756, + 0.005718341562896967, + -0.006643366999924183, + 0.021985340863466263, + -0.01882343366742134, + -0.021985340863466263, + -0.00039208479574881494, + 0.007292567286640406, + 0.00898788683116436, + 0.024070853367447853, + 0.001411084784194827, + 0.0004038578481413424, + -0.008436235599219799, + 0.0035924639087170362, + -0.0039826566353440285, + -0.023734480142593384, + -0.0018416423117741942, + -0.006535727996379137, + -0.019644184038043022, + -0.006929284427314997, + -0.019092533737421036, + 0.006327176466584206, + -0.011887422762811184, + 0.016441913321614265, + 0.01828523725271225, + -0.018984893336892128, + -0.0050523229874670506, + 0.048114798963069916, + -0.003932200837880373, + -0.015796076506376266, + 0.003461278509348631, + -0.02304827980697155, + 0.02603527158498764, + -0.011900877580046654, + -0.024528320878744125, + -0.021823881193995476, + 0.023626841604709625, + 0.032130349427461624, + 0.01628045365214348, + -0.004282028414309025, + 0.02538943663239479, + 0.03046194091439247, + 0.004160934127867222, + 0.0027733955066651106, + -0.0050422316417098045, + -0.025941086933016777, + 0.01334055420011282, + -0.004403122700750828, + 0.015257880091667175, + 0.004604946821928024, + 0.0007274066447280347, + 0.02629091590642929, + -0.031376875936985016, + 0.013212732039391994, + -0.041575707495212555, + -0.02608909085392952, + 0.02096276730298996, + 0.0014876096975058317, + -0.006330540403723717, + -0.017504852265119553, + -0.020101651549339294, + 0.022240985184907913, + 0.02093585766851902, + 0.005825980566442013, + -0.0019190080929547548, + -0.01218343060463667, + -0.0020939221139997244, + -0.020411115139722824, + 0.013912388123571873, + -0.006054714322090149, + 0.0063339038752019405, + -0.01492150779813528, + -0.011503957211971283, + 0.006051350850611925, + -0.003616010071709752, + 0.0003300660173408687, + 0.0009292304748669267, + 0.01817759871482849, + 0.009041707031428814, + 0.004419941455125809, + 0.0203438401222229, + 0.012317979708313942, + 0.00856405682861805, + -0.009277167730033398, + -0.011645234189927578, + -0.002067012246698141, + -0.008463145233690739, + 0.014558224938809872, + -0.03457914665341377, + 0.008597694337368011, + -0.01648227870464325, + 0.010602477937936783, + -0.005075869150459766, + 0.006478544324636459, + -0.023398106917738914, + -0.021985340863466263, + -0.006535727996379137, + 0.002741440199315548, + 0.002406748943030834, + 0.0251068826764822, + -0.021003130823373795, + 0.0030324028339236975, + 0.03700103238224983, + 0.00974809005856514, + -0.013717291876673698, + -0.003864926053211093, + 0.04948719963431358, + 0.008718788623809814, + 0.0017995956586673856, + -0.025483619421720505, + -0.6372250318527222, + 0.006569365039467812, + 0.02206606976687908, + 0.00027834868524223566, + -0.0013782884925603867, + 0.03530571237206459, + 0.01135595329105854, + 0.011860513128340244, + -0.019590364769101143, + 0.058878734707832336, + 0.010023916140198708, + 0.0031484514474868774, + -0.013993117958307266, + -0.002159514930099249, + -0.00927044078707695, + -0.01741066761314869, + 0.0011091900523751974, + -0.033179834485054016, + 0.03705485165119171, + 0.00426184618845582, + -0.010548657737672329, + 0.019563455134630203, + -0.002909626578912139, + -0.0013698791153728962, + 0.011107036843895912, + 0.017033930867910385, + 0.004066749941557646, + -0.0031148141715675592, + 0.01730302907526493, + 0.0046755848452448845, + -0.01876961439847946, + 0.007575120311230421, + -0.013145457953214645, + 0.01344146579504013, + 0.057156503200531006, + 0.014840777963399887, + -0.0017457760404795408, + 0.009970096871256828, + 0.0141007574275136, + 0.03054266981780529, + 0.007393478881567717, + 0.0017020475352182984, + 0.011133947409689426, + 0.023290468379855156, + -0.0056577944196760654, + -0.00896097719669342, + 0.02930481731891632, + -0.027770956978201866, + 0.011631779372692108, + -0.0028490794356912374, + 0.00031534972367808223, + -0.017760496586561203, + -0.0007787035428918898, + -0.009196438826620579, + 0.009949914179742336, + 0.0002608993381727487, + 0.021662423387169838, + -0.006502090487629175, + -0.0020283292979002, + -0.0021225137170404196, + -0.009189710952341557, + 0.012351617217063904, + -0.029600827023386955, + -0.013421284034848213, + -0.00562079343944788, + 0.0242054034024477, + -0.012291070073843002, + -0.021393325179815292, + -0.02490505948662758, + -0.016603372991085052, + -0.002517752116546035, + 0.018460150808095932, + -0.01093212328851223, + -0.0070503787137568, + 0.018661975860595703, + 0.023909393697977066, + 0.020451480522751808, + -0.031538333743810654, + -0.0011731008999049664, + 0.020236201584339142, + 0.004520853515714407, + -0.009108981117606163, + -0.013199277222156525, + -0.01087830401957035, + 0.00886006560176611, + -0.0176394023001194, + -0.04442814737558365, + -0.005109506193548441, + -0.000685360049828887, + 0.026667652651667595, + 0.03875017166137695, + 0.003183770691975951, + -0.0043392120860517025, + -0.008025860413908958, + -0.0009578221943229437, + 0.04001493379473686, + -0.00010007097444031388, + 0.04130660742521286, + -0.019617274403572083, + -0.04273282736539841, + -0.006626548711210489, + -0.018110323697328568, + 0.02073403261601925, + 0.0014884506817907095, + 0.007023468613624573, + -0.0018113687401637435, + -0.007581848185509443, + -0.0030256754253059626, + 0.054788436740636826, + -0.034498415887355804, + -0.027878595516085625, + -0.01772013120353222, + -0.010938851162791252, + -0.0045544905588030815, + 0.01673792116343975, + -0.029600827023386955, + 0.032641638070344925, + -0.01586335152387619, + 0.009304078295826912, + -0.016307363286614418, + 0.019227081909775734, + -0.013118548318743706, + 0.0360591895878315, + -0.019455816596746445, + 0.005842799320816994, + -0.0025312069337815046, + -0.004016293678432703, + -0.028901170939207077, + -0.027394218370318413, + -0.01710120402276516, + 0.03826579451560974, + -0.017841225489974022, + 0.017572127282619476, + -0.005334876012057066, + 0.03221108019351959, + -0.0216355137526989, + 0.012862903997302055, + 0.006687095854431391, + 0.004588128067553043, + -0.01921362802386284, + -0.011039762757718563, + 0.00028087146347388625, + 0.00465540261939168, + -0.02577962912619114, + -0.002171287778764963, + -0.02436686120927334, + -0.019738368690013885, + 0.013966208323836327, + 0.019603820517659187, + 0.024837784469127655, + -0.008335324004292488, + -0.0012016926193609834, + 0.0022991097066551447, + 0.013925842940807343, + 0.018984893336892128, + -0.0005117074470035732, + -0.001969464123249054, + -0.003461278509348631, + -0.021595148369669914, + -0.017208844423294067, + 0.010851393453776836, + 0.011497230269014835, + -0.007844218984246254, + -0.010192102752625942, + 0.0077836718410253525, + 0.005025412887334824, + 0.011887422762811184, + 0.024662870913743973, + -0.03791596740484238, + -0.01619972474873066, + 0.012042154558002949, + 0.003518461948260665, + -0.00960681401193142, + 0.014558224938809872, + -0.01949618011713028, + 0.031968891620635986, + -0.017962319776415825, + -0.0112684965133667, + -0.010999398306012154, + -0.01815068908035755, + 0.019375085830688477, + 0.008234411478042603, + -0.003373821498826146, + -0.006041259504854679, + 0.012210341170430183, + 0.012479439377784729, + 0.013710564002394676, + 0.008389143273234367, + -0.010373744182288647, + -0.004971593152731657, + 0.004951410926878452, + 0.03234563022851944, + -0.02603527158498764, + 0.02310209907591343, + -0.01381820347160101, + 0.030165933072566986, + -0.02493196912109852, + -0.0028255335055291653, + -0.01496187224984169, + 0.01907907798886299, + 0.040499310940504074, + 0.028255334123969078, + 0.029493186622858047, + 0.009189710952341557, + 0.033906400203704834, + -0.03936909884214401, + -0.006411269772797823, + 0.004393031820654869, + 0.0360591895878315, + 0.002112422604113817, + 0.004053295124322176, + -0.01704738475382328, + -0.033744942396879196, + -0.006323812995105982, + 0.014020027592778206, + 0.022900275886058807, + -0.002023283625021577, + -0.007642395328730345, + 0.008671696297824383, + 0.02119150012731552, + 0.01642845757305622, + -0.007346387021243572, + 0.037485409528017044, + -0.0055198813788592815, + 0.0022082889918237925, + 0.012203613296151161, + -0.0012454211246222258, + 0.019200172275304794, + -0.00264893751591444, + -0.04087604954838753, + -0.005281056277453899, + -0.01531170029193163, + 0.003552099224179983, + 0.0013597880024462938, + 0.037458501756191254, + 0.03465987741947174, + 0.0004545240371953696, + -0.026210185140371323, + 0.02871280163526535, + 0.012069064192473888, + 0.004406486637890339, + 0.018635066226124763, + 0.01938854157924652, + -0.018352512270212173, + 0.008718788623809814, + -0.0027733955066651106, + 0.03048885054886341, + 0.009929731488227844, + -0.006401178427040577, + 0.0225369930267334, + -0.008738971315324306, + 0.02132605016231537, + 0.000244921597186476, + 0.001008278108201921, + 0.010219012387096882, + 0.0028675799258053303, + -0.0016499096527695656, + -0.007696214597672224, + 0.014006572775542736, + 0.029681555926799774, + 0.007272384595125914, + 0.015056056901812553, + 0.004749587271362543, + 0.003299819305539131, + -0.021904611960053444, + -0.012324707582592964, + -0.028954990208148956, + -0.008416052907705307, + -0.016051720827817917, + -0.0055367001332342625, + -0.013481831178069115, + -0.03665120527148247, + -0.0025732535868883133, + 0.007346387021243572, + 0.017504852265119553, + -0.019563455134630203, + 0.015567343682050705, + -0.004231572616845369, + 0.01772013120353222, + 0.03272236883640289, + -0.015822986140847206, + -0.01786813512444496, + -0.0037875601556152105, + 0.012069064192473888, + 0.0012235569301992655, + -0.02629091590642929, + -0.011147402226924896, + 0.012768720276653767, + -0.014235306531190872, + -0.012042154558002949, + -0.009687542915344238, + -0.011571232229471207, + 0.03947673738002777, + -0.03608609735965729, + -0.0042181177996098995, + -0.002591754077002406, + 0.024245766922831535, + -0.0024454318918287754, + -0.008738971315324306, + 0.0032577726524323225, + 0.010118100792169571, + -0.004776496905833483, + -0.011551049537956715, + -0.03121541626751423, + 0.026129456236958504, + -0.024609049782156944, + -0.023788299411535263, + -0.007763489615172148, + 0.005304602440446615, + -0.017168479040265083, + 0.003380548907443881, + -0.02572580799460411, + -0.002679211087524891, + 0.016912836581468582, + 0.004120569676160812, + -0.0012521485332399607, + -0.0009300714009441435, + -0.022698450833559036, + 0.020101651549339294, + 0.019684549421072006, + -0.009768272750079632, + -0.011685598641633987, + -0.004292119760066271, + 0.029116449877619743, + 0.023505747318267822, + 0.008106590248644352, + -0.005950438790023327, + 0.003057630732655525, + -0.0039019270334392786, + 0.0028877623844891787, + -0.013024363666772842, + -0.03003138303756714, + 0.005879800301045179, + -0.010804301127791405, + -0.0055367001332342625, + 0.003023993456736207, + 0.024555230513215065, + 0.007797126658260822, + 0.010676479898393154, + -0.022671541199088097, + 0.008907157927751541, + 0.0074271163903176785, + 0.0203438401222229, + 0.00037926057120785117, + -0.01563461869955063, + 0.0010385516798123717, + 0.007992222905158997, + 0.015338609926402569, + 0.03226489946246147, + 0.001445563044399023, + 0.020518753677606583, + 0.022469718009233475, + -0.0007951017469167709, + -0.03371803089976311, + -0.0006462566670961678, + 0.03110777772963047, + 0.023169374093413353, + 0.016415003687143326, + -0.006391087546944618, + 0.012957088649272919, + 0.019375085830688477, + 0.014154576696455479, + 0.017114659771323204, + -0.006155626382678747, + 0.0034242772962898016, + 0.03573627024888992, + -0.0010166874853894114, + -0.0034024131018668413, + 0.0016171133611351252, + 0.007810581475496292, + -0.008005677722394466, + 0.00569143146276474, + 0.004598219413310289, + -0.011766328476369381, + -0.006609729956835508, + -0.014517859555780888, + 0.0008489214233122766, + -0.007797126658260822, + -0.015163696371018887, + -0.01924053765833378, + -0.0031652702018618584, + -0.03183434158563614, + -0.009526084177196026, + -0.01297727134078741, + -0.043970681726932526, + 0.0002085512678604573, + 0.013528922572731972, + 0.002465614350512624, + -0.023519201204180717, + -0.006434815935790539, + 0.0008262162446044385, + -0.018123779445886612, + -0.02268499694764614, + -0.013872023671865463, + 0.010245922021567822, + -0.035036616027355194, + -0.04087604954838753, + 0.01167887169867754, + 0.011847058311104774, + -0.01258035097271204, + 0.0227926354855299, + 0.002955036936327815, + 0.003858198644593358, + -0.02147405408322811, + -0.029573915526270866, + -0.031000137329101562, + -0.007454026024788618, + -0.029170269146561623, + -0.017706675454974174, + 0.006121988873928785, + -0.017531761899590492, + 0.002563162473961711, + 0.007386751472949982, + 0.02312900871038437, + -0.01611899584531784, + -0.007595303002744913, + 0.010541930794715881, + 0.008718788623809814, + -0.007413661573082209, + -0.005926892627030611, + -0.0021981976460665464, + 0.01653609797358513, + 0.012136338278651237, + -0.02868589200079441, + 0.008019132539629936, + -0.02186424657702446, + 0.005358422175049782, + -0.023519201204180717, + 0.02003437653183937, + -0.0015456340042874217, + -0.0026472557801753283, + 0.004036476369947195, + 0.0029970835894346237, + -0.005375240929424763, + 0.014329491183161736, + 0.0068283723667263985, + 0.023734480142593384, + -0.015728803351521492, + 0.02814769558608532, + 0.010064280591905117, + -0.0007505323155783117, + -0.00446703378111124, + 0.013522195629775524, + -0.011631779372692108, + 0.026896387338638306, + -0.03842725604772568, + 0.027878595516085625, + 0.009156073443591595, + 0.01640154793858528, + 0.02876662090420723, + 0.003871653461828828, + 8.398813952226192e-05, + -0.00807295273989439, + 0.009997006505727768, + 0.007043651305139065, + 0.011860513128340244, + -0.03191507235169411, + -0.0025042970664799213, + -0.014396765269339085, + -0.01998055726289749, + -0.02555089443922043, + 0.018379421904683113, + 0.021003130823373795, + 0.019227081909775734, + -0.01648227870464325, + -0.013206005096435547, + -0.004853862803429365, + 0.004985048435628414, + 0.00649536307901144, + -0.02704439125955105, + -0.02088203653693199, + 0.014531314373016357, + -0.024111218750476837, + 0.010669752024114132, + 0.007918220944702625, + 0.006764461286365986, + -0.02606218121945858, + -0.015688437968492508, + -0.004150843247771263, + -0.03124232590198517, + 0.0021174682769924402, + -0.01171923615038395, + 0.012600533664226532, + 0.017424123361706734, + 0.04423978179693222, + 0.012943633832037449, + 0.021770061925053596, + -0.01407384779304266, + -0.011059945449233055, + 0.02276572585105896, + -0.013098365627229214, + 0.0007194178178906441, + -0.03272236883640289, + 0.01496187224984169, + 0.018137233331799507, + 0.017531761899590492, + 0.017222298309206963, + -0.012351617217063904, + 0.009142618626356125, + 0.02327701263129711, + -0.022187164053320885, + -0.004742859862744808, + 0.010871576145291328, + -0.038077425211668015, + -0.01619972474873066, + 0.03667811304330826, + 0.0002718314644880593, + 0.014369855634868145, + -0.026802202686667442, + 0.0012117838487029076, + 0.019711459055542946, + -0.004998503252863884, + 0.004009566269814968, + -0.008644786663353443, + 0.004345939494669437, + -0.02719239518046379, + 0.023492291569709778, + -0.005778888706117868, + 0.015526979230344296, + -0.008173864334821701, + 0.016724467277526855, + -0.014800413511693478, + -0.007084015756845474, + 0.031027046963572502, + 0.02147405408322811, + 0.01702047511935234, + 0.011598141863942146, + -0.01342801097780466, + -0.006243083160370588, + 0.004181116819381714, + 0.016751376911997795, + -0.012069064192473888, + 0.006885556038469076, + -0.008604422211647034, + 0.009815365076065063, + -0.014908052049577236, + 0.0027649863623082638, + 0.007406934164464474, + 0.023909393697977066, + 0.016926290467381477, + 0.013064728118479252, + 0.021850790828466415, + -0.006895646918565035, + -0.013569287955760956, + -0.0035251893568784, + -0.0007118494249880314, + 0.05581101402640343, + 0.021204955875873566, + 0.03344893455505371, + 0.044078320264816284, + -0.012250705622136593, + -0.013670199550688267, + -0.07077288627624512, + 0.02417849376797676, + -0.004295483697205782, + 0.016953200101852417, + 0.02812078408896923, + -0.0013328781351447105, + -0.01887725479900837, + 0.005425696726888418, + -0.0035218256525695324, + -0.018056504428386688, + -0.021675877273082733, + 0.0194423608481884, + 0.018096867948770523, + 0.008025860413908958, + -0.026183275505900383, + -0.0007152131292968988, + -0.03751232102513313, + 0.013925842940807343, + -0.01800268515944481, + -0.010434291325509548, + -0.01218343060463667, + -0.003938928246498108, + -0.0218911562114954, + 0.02631782554090023, + -0.010178647935390472, + 0.020128561183810234, + 0.009008069522678852, + -0.01373747456818819, + 0.008429507724940777, + -0.01766631193459034, + -0.009943186305463314, + 0.011826875619590282, + -0.0006782120908610523, + 0.04066077247262001, + -0.004258482716977596, + 0.008685151115059853, + 0.02577962912619114, + 0.0014127667527645826, + 0.007911493070423603, + -0.021958431228995323, + 0.01256689615547657, + 0.0235595665872097, + -0.031995803117752075, + 0.00010879564797505736, + 6.0809936258010566e-05, + 0.005442515481263399, + -0.004440124146640301, + 0.006354086566716433, + -0.022631177678704262, + -0.01761249080300331, + -0.011120492592453957, + -0.011174311861395836, + 0.003552099224179983, + -0.0128763597458601, + -0.016240090131759644, + -0.014490949921309948, + -0.007225292734801769, + -0.0037741053383797407, + -0.009458809159696102, + 0.005368513520807028, + 0.012398709543049335, + -0.053658224642276764, + -0.0007757602725178003, + -0.0010864848736673594, + -0.00607153307646513, + 0.02425922267138958, + 0.0026237096171826124, + 0.0015574070857837796, + 0.009135891683399677, + 0.026775293052196503, + -0.04359394311904907, + 0.009075344540178776, + 0.033233653753995895, + -0.006091715302318335, + -0.005324785131961107, + 0.022859910503029823, + -0.009593358263373375, + -0.019280901178717613, + 0.008153681643307209, + -0.029735375195741653, + -0.0393960103392601, + -0.0062128095887601376, + -0.01528479065746069, + 0.014194942079484463, + -0.003035766538232565, + -0.008093134500086308, + 0.010811029002070427, + 0.010797574184834957, + 0.018083414062857628, + -0.00407011341303587, + 0.001779413316398859, + -0.00025375140830874443, + -0.0001443250512238592, + -0.007023468613624573, + -0.004978320561349392, + -0.021083861589431763, + 0.0062195369973778725, + 0.0016347728669643402, + -0.013448193669319153, + -0.005028776824474335, + -0.034471508115530014, + -0.033152926713228226, + -0.011887422762811184, + 0.004319029860198498, + -0.016293909400701523, + 0.002805351046845317, + -0.031027046963572502, + -0.018433241173624992, + -0.020182382315397263, + 0.001681024208664894, + 0.009304078295826912, + 0.004154206719249487, + 0.008503509685397148, + 0.024555230513215065, + 0.015230970457196236, + 0.025658534839749336, + -0.010299742221832275, + -0.016589917242527008, + -0.007198382634669542, + 0.006804826203733683, + -0.029600827023386955, + 0.024447591975331306, + -0.0007581007084809244, + 0.04289428889751434, + 0.02065330371260643, + -0.02000746689736843, + -0.013226186856627464, + -0.014504404738545418, + -0.032533999532461166, + -0.010023916140198708, + -0.022025706246495247, + -0.0009351170156151056, + 0.02464941516518593, + 0.019872918725013733, + 0.014168031513690948, + 0.018164142966270447, + 0.00031598040368407965, + 0.01730302907526493, + -0.04658093675971031, + 0.001964418450370431, + -0.006552546285092831, + -0.0009359579416923225, + -0.0009948231745511293, + -0.00030588923254981637, + -0.021339504048228264, + -0.014908052049577236, + -0.004352666903287172, + 0.0021090588998049498, + 0.0064549981616437435, + 0.0038783808704465628, + -0.014692774042487144, + -0.03307219594717026, + 0.009505901485681534, + 0.017424123361706734, + 0.018756160512566566, + -0.006909101735800505, + 0.036839574575424194, + -0.023909393697977066, + -0.008402598090469837, + -0.006249810568988323, + -0.010831211693584919, + -0.036839574575424194, + -0.006364177446812391, + 0.009660633280873299, + -0.02304827980697155, + -0.015244425274431705, + 0.01702047511935234, + -0.018217962235212326, + -0.0020956038497388363, + -0.006431451998651028, + 0.03242636099457741, + -0.00551651744171977, + -0.006283448077738285, + 0.01013155560940504, + 0.03234563022851944, + -0.004221481271088123, + -0.004978320561349392, + 4.504244861891493e-05, + -0.017208844423294067, + -0.010790846310555935, + 0.0027464856393635273, + -0.016266999766230583, + 0.01730302907526493, + -0.009882639162242413, + 0.005435788072645664, + 0.0010225740261375904, + 0.012842722237110138, + -0.01531170029193163, + -0.010575568303465843, + -0.046500205993652344, + 0.01671101152896881, + 0.0009435263345949352, + -0.011140674352645874, + -0.003387276316061616, + 0.002827215241268277, + -0.023761389777064323, + -0.02750185877084732, + -0.015365519560873508, + -0.001013323781080544, + -0.008328596130013466, + -0.026021817699074745, + 0.01611899584531784, + -0.01851397193968296, + -0.005681340582668781, + 0.007386751472949982, + -0.007413661573082209, + -0.013582742772996426, + 0.005112870130687952, + 0.2073134183883667, + -0.011544322595000267, + -0.0011596459662541747, + 0.01761249080300331, + -0.003851471235975623, + 0.005361786112189293, + 0.020047832280397415, + -0.0046991310082376, + 0.0006941898027434945, + 0.006976376753300428, + -0.019711459055542946, + 0.011645234189927578, + -0.014786957763135433, + 0.00040196574991568923, + 0.011335770599544048, + -0.01182014774531126, + -0.025819992646574974, + -0.02031693048775196, + -0.017370302230119705, + -0.011813420802354813, + 0.021460598334670067, + -0.009741363115608692, + -0.008617877028882504, + -0.017316482961177826, + 0.02732694521546364, + -0.013320371508598328, + -0.02750185877084732, + -0.002995401853695512, + 0.046365655958652496, + -0.002505979035049677, + -0.01136940810829401, + 0.01408730261027813, + -0.0057620699517428875, + 0.0007774421246722341, + -0.011463592760264874, + 8.719419565750286e-05, + 0.03371803089976311, + 0.006152262445539236, + 0.036274466663599014, + 0.028578251600265503, + 0.003394003724679351, + -0.011261768639087677, + -0.0002052926574833691, + -0.026667652651667595, + 0.008247866295278072, + 0.025860358029603958, + 0.00551651744171977, + -0.007958585396409035, + -8.304209040943533e-05, + -0.016885925084352493, + -0.024326497688889503, + -0.013333826325833797, + 0.032022710889577866, + 0.04421287029981613, + -0.011194494552910328, + -0.013549105264246464, + 0.019576910883188248, + 0.01492150779813528, + -0.00884661078453064, + 0.020209291949868202, + -0.016522642225027084, + 0.016374638304114342, + 0.006922557018697262, + 0.0001799595629563555, + -0.00887352041900158, + -0.022012250497937202, + -0.014544769190251827, + 0.013078182935714722, + -0.009162801317870617, + -0.024635959416627884, + -0.015526979230344296, + -0.03417550027370453, + -0.008698606863617897, + -0.003999475389719009, + -0.020236201584339142, + -0.020478390157222748, + -0.014006572775542736, + 0.012809084728360176, + 0.014854232780635357, + 0.03783523663878441, + -0.025254886597394943, + -0.02541634626686573, + -0.009633723646402359, + -0.011086855083703995, + 0.0001673455844866112, + -0.03643592447042465, + 0.03522498160600662, + 0.004732768516987562, + -0.013858568854629993, + -0.02760949730873108, + -0.02930481731891632, + -0.013670199550688267, + -0.006226264871656895, + -0.006458362098783255, + -0.017491396516561508, + 0.015325155109167099, + 0.016778286546468735, + 0.024985788390040398, + -0.01381820347160101, + 0.015056056901812553, + -0.025739263743162155, + 0.04623110964894295, + 0.02884734980762005, + -0.005903346464037895, + -0.0017129796324297786, + -0.021379869431257248, + -0.011826875619590282, + 0.010299742221832275, + 0.004080204758793116, + -0.006327176466584206, + -0.007709669880568981, + -0.026277460157871246, + 0.028309153392910957, + -0.01679174229502678, + -0.008853337727487087, + 0.010925395414233208, + 0.006095079239457846, + -0.003720285603776574, + -0.008449690416455269, + 0.004584764130413532, + -0.01653609797358513, + -0.0068182810209691525, + -0.010427563451230526, + 0.007178200408816338, + 0.013925842940807343, + -0.015688437968492508, + -0.030919408425688744, + 0.0039658378809690475, + -0.019684549421072006, + -0.027152029797434807, + 0.01895798370242119, + -0.0069494666531682014, + 0.03344893455505371, + -0.0038783808704465628, + 0.015594253316521645, + -0.012095973826944828, + -0.009351169690489769, + -0.01135595329105854, + 0.01251307688653469, + 0.018352512270212173, + 0.02384212054312229, + -0.029466276988387108, + 0.005344967357814312, + 0.0027649863623082638, + -0.024124672636389732, + -0.009626995772123337, + 0.0068115536123514175, + -0.003220771672204137, + -0.025429800152778625, + -0.021083861589431763, + 0.013091637752950191, + -0.01856779120862484, + 0.0011588050983846188, + -0.03377185016870499, + 0.017827769741415977, + 0.0031131324358284473, + -0.0035453715827316046, + -0.011894149705767632, + 0.002302473410964012, + -0.019846009090542793, + -0.022267894819378853, + -0.0038447435945272446, + -0.002758258720859885, + 0.0037135581951588392, + -0.019509635865688324, + -0.024757053703069687, + -0.1725459098815918, + 0.02660037949681282, + 0.0088197011500597, + -0.04370158165693283, + 0.002712848363444209, + 0.018971439450979233, + 0.017155025154352188, + 0.008220956660807133, + 0.005452606827020645, + 0.010501565411686897, + 0.0002903319546021521, + -0.01985946297645569, + -0.030327392742037773, + -0.016065174713730812, + 0.005045595578849316, + 0.012761992402374744, + -0.01825832761824131, + 0.011658689007163048, + 0.044643428176641464, + 0.013602925464510918, + 0.025537440553307533, + -0.005799070931971073, + 0.015123330987989902, + 0.020168926566839218, + -0.009034979157149792, + 0.006364177446812391, + -0.00382456136867404, + 0.03342202305793762, + -0.009855729527771473, + -0.007507845759391785, + 0.019253991544246674, + -0.00524069182574749, + 0.001030142419040203, + 0.00024786486756056547, + -0.017316482961177826, + -0.019200172275304794, + 0.0006269152509048581, + -0.012835994362831116, + -0.01949618011713028, + 0.026613833382725716, + 0.03468678519129753, + 0.014450585469603539, + -0.006825008429586887, + -0.013037818484008312, + -0.013347281143069267, + 0.013374191708862782, + 0.02392284944653511, + -0.017518308013677597, + 0.00424839137122035, + 0.007433843798935413, + 0.02364029549062252, + -0.027152029797434807, + 0.0044502150267362595, + 0.012728354893624783, + 0.020249655470252037, + 0.010488110594451427, + -0.005580428522080183, + 0.008032587356865406, + -0.01301763579249382, + -0.012365072034299374, + -0.014033482410013676, + -0.0062397196888923645, + 0.02927790768444538, + -0.00035340190515853465, + -0.0056409756653010845, + -0.029466276988387108, + -0.007191655226051807, + 0.012957088649272919, + -0.020276565104722977, + 0.00604462344199419, + -0.022671541199088097, + -0.018783070147037506, + -0.002245289972051978, + 0.0056308843195438385, + 0.0032174079678952694, + 0.012069064192473888, + -0.013858568854629993, + 0.015150240622460842, + -0.0012639216147363186, + 0.005307966377586126, + -0.02760949730873108, + 0.03191507235169411, + 0.008180592209100723, + -0.03525189310312271, + -0.0069427392445504665, + -0.0200881976634264, + -0.015365519560873508, + 0.019227081909775734, + 0.011927787214517593, + 0.001444722176529467, + -0.0260083619505167, + -0.03514425456523895, + -0.04606964811682701, + -0.007104198448359966, + 0.0033603664487600327, + -0.007346387021243572, + 0.0036261011846363544, + 0.0023310650140047073, + 0.0023293832782655954, + -0.026277460157871246, + 0.02876662090420723, + 0.000570152304135263, + -0.020330386236310005, + 0.006468453444540501, + 0.03285691514611244, + 0.008880248293280602, + -0.0008880248060449958, + 0.029573915526270866, + 0.03293764591217041, + 0.008389143273234367, + -0.028282243758440018, + -0.0028877623844891787, + 0.013058001175522804, + 0.010790846310555935, + 0.009095526300370693, + 0.021622058004140854, + -0.007366569247096777, + -0.01679174229502678, + 0.019307810813188553, + 0.005805798340588808, + 0.03829270601272583, + -0.001819778117351234, + -0.019401995465159416, + 0.00821422878652811, + -0.00928389560431242, + -0.014908052049577236, + -0.0666825920343399, + -0.010568840429186821, + 0.019267447292804718, + 0.02384212054312229, + 0.008651514537632465, + 0.03597845882177353, + -0.016320819035172462, + 0.0036698298063129187, + -0.008705333806574345, + 0.030892498791217804, + -0.02211989089846611, + -0.02116459049284458, + 0.0013278324622660875, + -0.008839882910251617, + 0.0001785930508049205, + -0.016630282625555992, + -0.013898933306336403, + -0.008779335767030716, + -0.021541329100728035, + 0.045881278812885284, + 0.005960530135780573, + -0.01772013120353222, + 0.011530866846442223, + -0.014813868328928947, + -0.001998055726289749, + 0.0015077920397743583, + -0.02214680053293705, + 0.017114659771323204, + 0.025483619421720505, + -0.004843771457672119, + -0.006700550671666861, + -0.033314384520053864, + 0.015109876170754433, + -0.029573915526270866, + 0.009566448628902435, + -0.02037074975669384, + -0.009189710952341557, + -0.007191655226051807, + 0.03646283596754074, + -0.02941245771944523, + 0.010528475977480412, + 0.00448048859834671, + 0.0015708620194345713, + -0.015553888864815235, + 0.002724621444940567, + -0.009647178463637829, + -0.03509043529629707, + 0.003962474409490824, + 0.0019862826447933912, + -0.003404095070436597, + -0.03471369668841362, + -0.00973463524132967, + -0.01563461869955063, + -0.0057351598516106606, + 0.016347728669643402, + -0.01983255334198475, + 0.007016741205006838, + -0.014168031513690948, + -0.024407226592302322, + 0.0002897012745961547, + 0.009687542915344238, + -0.009263712912797928, + -0.02935863845050335, + 0.014679319225251675, + 0.012021971866488457, + 0.014544769190251827, + -0.020276565104722977, + -0.0024050672072917223, + 0.007857673801481724, + -0.0017558671534061432, + -0.021110771223902702, + 0.01977873407304287, + -0.009391535073518753, + 0.008207501843571663, + -0.0171281136572361, + 0.007373296655714512, + -0.039207641035318375, + -0.013010908849537373, + 0.017760496586561203, + 0.005082596559077501, + -0.0050422316417098045, + -0.012714900076389313, + 0.006687095854431391, + 0.00764912273734808, + 0.017262663692235947, + 0.0137778390198946, + -0.0024723417591303587, + 0.0007972040912136436, + 0.017289573326706886, + -0.04189862310886383, + 0.003478097030892968, + 0.022927185520529747, + 0.022913729771971703, + 0.009162801317870617, + -0.0002028749731834978, + -0.005287784151732922, + 0.009176256135106087, + -0.0014682682231068611, + -0.0023932941257953644, + 0.01046792883425951, + -0.023963214829564095, + -0.006216173525899649, + -0.06802807748317719, + 0.0003588679828681052, + 0.011228131130337715, + -0.005412241909652948, + -0.008530420251190662, + 0.010535202920436859, + 0.005156598519533873, + 0.01375092938542366, + 0.019576910883188248, + -0.005149871110916138, + -0.021124225109815598, + -0.010286287404596806, + -0.007628940045833588, + -0.003047539619728923, + -0.029547005891799927, + -0.015728803351521492, + 0.007272384595125914, + -0.0043291207402944565, + 0.020801307633519173, + 0.0029567189048975706, + -0.0015700210351496935, + 0.024501411244273186, + -0.011234859004616737, + 0.011645234189927578, + -0.00446703378111124, + -0.005950438790023327, + 0.012654352933168411, + -0.0025076610036194324, + 0.003777469042688608, + -0.008503509685397148, + 0.0008417734643444419, + -0.004756314679980278, + -0.02502615377306938, + 0.015930626541376114, + -0.005260874051600695, + -0.013380918651819229, + 0.007608757819980383, + 0.029089538380503654, + -0.002685938496142626, + 0.06684404611587524, + -0.02637164480984211, + -0.02938554808497429, + -0.018500516191124916, + -0.007151290308684111, + -0.015244425274431705, + -0.006444907281547785, + 0.010340106673538685, + -0.009189710952341557, + -0.0002747747057583183, + -0.015526979230344296, + 0.02817460522055626, + 0.018217962235212326, + -0.01344146579504013, + 0.00045999011490494013, + 0.012694718316197395, + -0.025308705866336823, + 0.0052945115603506565, + -0.0012714900076389313, + 0.02237553335726261, + -0.024191947653889656, + 0.04125278815627098, + 0.02335774339735508, + 0.0020014194305986166, + -0.0009208211558870971, + -0.0012185112573206425, + -0.006969648879021406, + -0.022348623722791672, + 0.0008047724841162562, + 0.024111218750476837, + 0.005913437809795141, + -0.02315591834485531, + 0.013528922572731972, + -0.006680368445813656, + 0.03716249018907547, + 0.00232770130969584, + -0.008866792544722557, + 0.0093377148732543, + 0.014477495104074478, + -0.01258035097271204, + 0.011577959172427654, + 0.001538065611384809, + 0.02160860225558281, + -0.035520993173122406, + 0.009001342579722404, + 0.006384360138326883, + 0.017599036917090416, + 0.0019946920219808817, + -0.006613093428313732, + 0.00567797664552927, + 0.006855282001197338, + 0.003918745554983616, + 0.005368513520807028, + -0.011073400266468525, + 0.0008388302521780133, + 0.01224397774785757, + -0.004224845208227634, + -0.004140751902014017, + -5.4450381867354736e-05, + 0.018433241173624992, + 0.047038402408361435, + 0.020168926566839218, + 0.010528475977480412, + 0.0003628623962868005, + -0.03113468736410141, + -0.0058562541380524635, + 0.019684549421072006, + -0.011403045617043972, + -0.026869477704167366, + 0.01921362802386284, + 0.013421284034848213, + 0.0026405281387269497, + 0.013199277222156525, + -0.005291147623211145, + -0.003848107298836112, + -0.011181039735674858, + 0.01817759871482849, + -0.00027204168145544827, + -0.014033482410013676, + -0.03519807383418083, + 0.04254446178674698, + 0.0042349365539848804, + 0.024353407323360443, + 0.002245289972051978, + -0.01611899584531784, + 0.046338748186826706, + 0.01938854157924652, + 0.011012853123247623, + -0.026748383417725563, + 0.007191655226051807, + -0.025429800152778625, + -0.0036765572149306536, + -0.001428744406439364, + -0.0003260716039221734, + -0.026721473783254623, + -0.014612044207751751, + -0.017814315855503082, + 0.0037909240927547216, + 0.022496627643704414, + 0.019617274403572083, + 0.11754219233989716, + 0.010084463283419609, + 0.00898788683116436, + 0.009223348461091518, + -0.011295406147837639, + 0.009916276670992374, + 0.0011411454761400819, + 0.00036076008109375834, + -0.016307363286614418, + -0.04270591959357262, + 0.02276572585105896, + -0.01048138365149498, + -0.009499174542725086, + -0.018083414062857628, + -0.023290468379855156, + -0.009485719725489616, + -0.007393478881567717, + 0.0234384723007679, + -0.018191052600741386, + 0.019455816596746445, + 0.01882343366742134, + -0.009478991851210594, + 0.011456864885985851, + 0.02814769558608532, + -0.024393770843744278, + 0.009418444707989693, + 0.045289263129234314, + 0.0009670724393799901, + 0.012223795987665653, + -0.02197188511490822, + -0.02129914052784443, + -0.013683654367923737, + -0.06587529182434082, + -0.023425016552209854, + 0.01466586347669363, + -0.017841225489974022, + -0.005331512540578842, + -0.012324707582592964, + 0.023061733692884445, + 0.008449690416455269, + -0.014585134573280811, + 0.016374638304114342, + -0.014881142415106297, + -0.01251307688653469, + -0.015432794578373432, + -0.015378974378108978, + -0.0035958276130259037, + -0.012371799908578396, + -0.019846009090542793 + ], + "metadata": { + "source": "test.pdf", + "file_type": "pdf", + "has_tables": false, + "table_count": 0, + "has_images": true, + "image_count": 1, + "detection_class_prob": 0.8481391668319702, + "coordinates": "CoordinatesMetadata(points=((194.43865966796875, 223.614626111111), (194.43865966796875, 404.46212611111065), (833.7641645000001, 404.46212611111065), (833.7641645000001, 223.614626111111)), system=)", + "links": [], + "last_modified": "2024-11-08T08:33:13", + "_known_field_names": "frozenset({'links', 'sent_to', 'detection_origin', 'image_path', 'page_name', 'subject', 'coordinates', 'url', 'orig_elements', 'category_depth', 'signature', 'emphasized_text_contents', 'parent_id', 'header_footer_type', 'detection_class_prob', 'cc_recipient', 'last_modified', 'file_directory', 'bcc_recipient', 'filename', 'image_base64', 'key_value_pairs', 'data_source', 'image_mime_type', 'languages', 'page_number', 'sent_from', 'link_start_indexes', 'link_texts', 'link_urls', 'emphasized_text_tags', 'filetype', 'text_as_html', 'table_as_cells', 'email_message_id', 'is_continuation', 'attached_to_filename'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "test.pdf", + "parent_id": "f6e5bc969bc25157103a4996997132fb", + "id": "2fe72ee3-a99b-4ab0-961f-202cee32984c", + "processing_timestamp": "2025-05-03T09:55:36.199953", + "chunk_number": 0, + "total_chunks": 2, + "chunking_strategy": "hybrid", + "word_count": 385 + } +} \ No newline at end of file diff --git a/data/processed/706487bf-0501-2c2e-189c-987900000001.json b/data/processed/706487bf-0501-2c2e-189c-987900000001.json new file mode 100644 index 0000000000000000000000000000000000000000..8fb9c65b8245783f1dc22ca787425333cd9e8491 --- /dev/null +++ b/data/processed/706487bf-0501-2c2e-189c-987900000001.json @@ -0,0 +1,1569 @@ +{ + "id": "706487bf-0501-2c2e-189c-987900000001", + "content": "com/js/js_output.asp ... );. Tipp: Sie ben\u00f6tigen f\u00fcr diese Aufgaben noch nicht die D3-Library (d\u00fcrfen diese aber verwenden, wenn Sie wollen). 2", + "embedding": [ + -0.013522235676646233, + 0.013318689540028572, + -0.0018471793737262487, + -0.018359843641519547, + 0.0062285056337714195, + 0.018726225942373276, + -0.03853803128004074, + -0.017437102273106575, + 0.010957556776702404, + -0.0351455993950367, + 0.007789024617522955, + 0.014343203976750374, + -0.0013323777820914984, + -0.0016461778432130814, + -0.015130247920751572, + 0.014696016907691956, + 0.015442351810634136, + 0.0075922636315226555, + 0.024303385987877846, + -0.027546551078557968, + -0.006615242920815945, + 0.023394213989377022, + 0.04293462261557579, + -0.011710676364600658, + -0.012931952252984047, + 0.002339082071557641, + 0.013583298772573471, + -0.042853206396102905, + -0.016921453177928925, + -0.0031227339059114456, + 0.020110338926315308, + -0.013990391045808792, + 0.0011568194022402167, + -0.034955624490976334, + -0.00468834163621068, + -0.011554624885320663, + -0.018522679805755615, + -0.01797989197075367, + 0.024601919576525688, + 0.012613063678145409, + 0.00720552634447813, + 0.02556537091732025, + -0.0016826464561745524, + -0.01144606713205576, + -0.011310369707643986, + 0.00269867992028594, + 0.01606655865907669, + -0.017247125506401062, + -0.0071037532761693, + 0.029636288061738014, + 0.010204436257481575, + 0.030206218361854553, + -0.040844883769750595, + -0.04847107455134392, + -0.030396193265914917, + -0.007470136042684317, + -0.010937201790511608, + 0.018305564299225807, + 0.009627723135054111, + -0.027627969160676003, + -0.000613182142842561, + -0.0157544557005167, + -0.033870045095682144, + -0.005689109209924936, + -0.031020401045680046, + -0.005034369416534901, + -0.01570017635822296, + 0.0015223539667204022, + 0.011195026338100433, + -0.013060864061117172, + 0.03471136838197708, + 0.01715213805437088, + -0.004433908965438604, + 0.002006623661145568, + 0.03343581408262253, + 0.007727961055934429, + -0.0023339935578405857, + -0.011120392940938473, + 0.0014909739838913083, + -0.011079683899879456, + 0.005495740566402674, + -0.022390052676200867, + -0.0346028096973896, + 0.024398373439908028, + 0.006733978167176247, + 0.013895402662456036, + 0.02747870236635208, + 0.049936603754758835, + -0.002257663756608963, + -0.014940272085368633, + 0.012172047048807144, + 0.022308634594082832, + 0.015835873782634735, + 0.020897382870316505, + -0.002054117852821946, + -0.016310814768075943, + -0.024520501494407654, + -0.0034399263095110655, + -0.011201811954379082, + -0.016161547973752022, + -0.011812449432909489, + 0.026773076504468918, + -0.014668877236545086, + -0.017640648409724236, + -0.026596669107675552, + 0.007558339275419712, + 0.02675950713455677, + 0.003511167364194989, + -0.006659344770014286, + -0.00674076285213232, + -0.01700287126004696, + 0.03889084607362747, + 0.0027919718995690346, + -0.021195916458964348, + 0.010577604174613953, + 0.0031312149949371815, + 0.02309567853808403, + -0.00911885779350996, + 0.0085217896848917, + -0.013847908936440945, + -0.003465369576588273, + 0.038212358951568604, + 0.01937757432460785, + 0.009227415546774864, + 0.014193937182426453, + 0.023733455687761307, + -0.006540609523653984, + 0.01521166693419218, + -0.030667588114738464, + -0.02846929244697094, + 0.02800792083144188, + 0.0009609064436517656, + 0.02243076264858246, + 0.012694481760263443, + -0.0011186546180397272, + 0.02211865969002247, + -0.010245145298540592, + 0.015632327646017075, + -0.029880544170737267, + -0.027044471353292465, + 0.0054923477582633495, + 0.014940272085368633, + 0.006917169317603111, + -0.01483171433210373, + 0.024506930261850357, + 0.031807444989681244, + 0.023624898865818977, + 0.019961072131991386, + -0.025592509657144547, + -0.02381487563252449, + -0.021413031965494156, + -0.00999410543590784, + 0.015822304412722588, + -0.01978466473519802, + -0.004162514582276344, + 0.007164817303419113, + 0.012728406116366386, + 0.0013272891519591212, + 0.022023670375347137, + 0.009152782149612904, + 0.02020532637834549, + 0.006007997784763575, + 0.027370143681764603, + -0.008101128041744232, + 0.02728872559964657, + 0.02598603256046772, + -0.006048706825822592, + -0.014343203976750374, + 0.001194984302856028, + 0.0058383760042488575, + 0.013725780881941319, + 0.01015015784651041, + -0.00368757382966578, + 0.008962806314229965, + -0.01880764402449131, + 0.012613063678145409, + -0.004803684074431658, + 0.0010728567140176892, + -0.02392343245446682, + 0.006048706825822592, + -0.03750673308968544, + -0.018088448792696, + 0.022145798429846764, + 0.031590331345796585, + -0.03104753978550434, + -0.000867614580783993, + 0.007253020536154509, + 0.014370343647897243, + 0.0039216517470777035, + -0.015496631152927876, + 0.021209487691521645, + 0.026800215244293213, + 0.004739228170365095, + -0.02262073941528797, + -0.6535181403160095, + 0.013841124251484871, + -0.007870443165302277, + -0.05202634260058403, + -0.000422357814386487, + 0.02112806774675846, + 0.007639757823199034, + 0.017450671643018723, + -0.005305764265358448, + 0.0423646941781044, + 0.004722265992313623, + 0.01689431257545948, + 0.0015834177611395717, + -0.00425071781501174, + 0.009430961683392525, + -0.007795809302479029, + 0.0013332258677110076, + -0.01606655865907669, + 0.008263965137302876, + 0.011710676364600658, + -0.00991947203874588, + 0.0170435793697834, + 0.007348008453845978, + -0.0010754010872915387, + 0.004630669951438904, + 0.00850143563002348, + 0.018156297504901886, + -0.011412142775952816, + 0.006995195522904396, + 0.0032991403713822365, + -0.03424999862909317, + 0.018020600080490112, + -0.0027902754954993725, + 0.008657487109303474, + 0.04339599609375, + 0.02707161009311676, + -0.037425313144922256, + 0.0035416993778198957, + -0.014533179812133312, + 0.040166400372982025, + -0.02158943936228752, + -0.005692501552402973, + 0.020910952240228653, + 0.01947256177663803, + 0.008996730670332909, + -0.0029717707075178623, + 0.03788668289780617, + -0.012741975486278534, + -0.006041922140866518, + -0.0016139496583491564, + 0.006306531839072704, + -0.03023335710167885, + -0.011120392940938473, + -0.01149356085807085, + 0.005146319977939129, + -0.003969145938754082, + 0.015890153124928474, + 0.00412180507555604, + -0.0027224270161241293, + 0.012592708691954613, + 0.004600138403475285, + -0.0067475480027496815, + -0.03620403632521629, + -0.020110338926315308, + -0.011893867515027523, + -0.005014014896005392, + -0.020639557391405106, + -0.02097880095243454, + 0.014763865619897842, + 0.008358953520655632, + -0.008528575301170349, + -0.0018878886476159096, + 0.0007166513241827488, + -0.00502419238910079, + 0.01901119016110897, + -0.00144941674079746, + -0.0015181134222075343, + -0.041251976042985916, + -0.0057739196345210075, + 0.008616778068244457, + 0.02217293716967106, + 0.003969145938754082, + 0.0012916686246171594, + -0.010625097900629044, + 0.027736525982618332, + -0.007660112343728542, + -0.014926702715456486, + -0.01443819236010313, + 0.002401842037215829, + -0.02097880095243454, + 0.02511756867170334, + 0.00259690685197711, + -0.0266102384775877, + 0.00038673728704452515, + -0.015143818221986294, + 0.04939381405711174, + -0.0022508788388222456, + 0.023177098482847214, + 0.020625988021492958, + -0.03047761134803295, + -0.020218897610902786, + -0.0013730869395658374, + 0.008121483027935028, + -0.013393322937190533, + 0.04448157176375389, + 0.012314529158174992, + -0.007558339275419712, + 0.023434922099113464, + 0.03756101056933403, + -0.01684003323316574, + -0.012986230663955212, + -0.02232220396399498, + -0.018576959148049355, + -0.007361578289419413, + 0.021453741937875748, + -0.02180655486881733, + 0.036502573639154434, + -0.021413031965494156, + 0.021562300622463226, + -0.0018081663874909282, + 3.084993295487948e-05, + 0.013006585650146008, + 0.021996531635522842, + -0.03281160444021225, + -0.010943986475467682, + 0.03889084607362747, + 0.0018743188120424747, + -0.02882210537791252, + -0.03829377517104149, + -0.015795165672898293, + 0.0003057429566979408, + 0.027315864339470863, + 0.010333348996937275, + -0.010889708064496517, + 0.027410853654146194, + -0.0041387672536075115, + 0.00760583346709609, + -0.0038402334321290255, + 0.019961072131991386, + -0.010855783708393574, + 0.0004486491670832038, + 0.017789915204048157, + 0.013949682004749775, + -0.030857564881443977, + 0.02480546571314335, + -0.020083200186491013, + -0.010767580009996891, + 0.0010202740086242557, + 0.012775899842381477, + 0.012423086911439896, + -0.022566460072994232, + -0.0030769361183047295, + -0.0018420907435938716, + 0.013827553950250149, + -0.0017962929559871554, + -0.015415212139487267, + -0.00043126294622197747, + 0.009620938450098038, + 0.006771294865757227, + -0.002878478728234768, + -0.0019370788941159844, + 0.012579139322042465, + -0.01565946824848652, + 0.003375470172613859, + -0.006272607482969761, + 0.011072899214923382, + 0.006109770853072405, + 0.004973305854946375, + -0.01586301438510418, + -0.026827353984117508, + 0.001439239364117384, + -0.011534269899129868, + 0.002457817317917943, + 0.013718996196985245, + -0.012355238199234009, + 0.014397482387721539, + -0.0271258894354105, + 0.006890030112117529, + 0.005149712320417166, + -0.005346473306417465, + 0.015293085016310215, + 0.011724245734512806, + -0.010197651572525501, + -0.014465331099927425, + 0.024819035083055496, + 0.015103109180927277, + -0.003646864788606763, + 0.0027461738791316748, + -0.010041600093245506, + -0.02149445191025734, + -0.0071919565089046955, + 0.025321114808321, + -0.0050581167452037334, + 0.012857318855822086, + -0.00945131666958332, + 0.0002550685021560639, + -0.0034450150560587645, + 0.01967610791325569, + 0.000944792409427464, + 0.025131138041615486, + 0.049828045070171356, + 0.019974641501903534, + 0.0335986502468586, + -0.015903722494840622, + 0.015198096632957458, + -0.0454857312142849, + 0.013088003732264042, + -0.018481971696019173, + 0.035254158079624176, + 0.014818144030869007, + -0.005064901430159807, + -0.04214758053421974, + -0.002412019297480583, + -0.015333794057369232, + 0.0023814875166863203, + 0.026542389765381813, + 0.024371234700083733, + -0.016080129891633987, + 0.002844554604962468, + 0.002471386920660734, + 0.02703090012073517, + -0.017640648409724236, + 0.02863212861120701, + -0.011323939077556133, + -0.013495096005499363, + 0.0034772432409226894, + 0.0015435566892847419, + 0.006235290784388781, + -0.03327297791838646, + -0.023163527250289917, + -0.021155208349227905, + -0.028496431186795235, + -0.010706515982747078, + 0.005933363921940327, + 0.01141892746090889, + 0.013936111703515053, + 0.03156318888068199, + 0.0020235858391970396, + 0.01373935118317604, + -0.004790114238858223, + 0.0038164863362908363, + 0.020639557391405106, + 0.01475029531866312, + -0.0035959782544523478, + 0.01441105268895626, + 0.0040403869934380054, + 0.06366916745901108, + 0.012640202417969704, + -0.027573689818382263, + -0.010523324832320213, + -0.0009727799915708601, + 0.0071376776322722435, + -0.012009210884571075, + 0.02160300873219967, + 0.01845483109354973, + -0.0010694642551243305, + 0.016161547973752022, + 0.004915634635835886, + 0.008820324204862118, + 0.029934823513031006, + -0.001262832898646593, + -0.004006462637335062, + 0.025185417383909225, + 0.015089538879692554, + 0.007917936891317368, + -0.0036231176927685738, + -0.014275355264544487, + -0.02112806774675846, + -0.005634830333292484, + 0.0001100420267903246, + -0.01306764967739582, + -0.025348253548145294, + 0.008182547055184841, + 0.0010618313681334257, + 0.016392232850193977, + -0.0016181902028620243, + -0.010129802860319614, + -0.009403822012245655, + 0.012307744473218918, + 0.00974306557327509, + -0.02764153853058815, + -0.02263430878520012, + -0.002557893982157111, + 0.015265945345163345, + 0.0011958323884755373, + -0.0020201934967190027, + 0.01330511923879385, + 0.00867784209549427, + 0.000407727959100157, + 0.025768915191292763, + -0.009763420559465885, + 0.002093130722641945, + 0.024968301877379417, + -0.00021838782413396984, + 0.0060758464969694614, + 0.00030404675635509193, + 0.015360933728516102, + -0.014506041072309017, + 0.005533057264983654, + 0.0029717707075178623, + 0.03240451216697693, + -0.001289972336962819, + -0.0016843426274135709, + -0.01967610791325569, + 0.03240451216697693, + -0.002842858200892806, + -0.002644401043653488, + -0.0025494128931313753, + 0.0031634431798011065, + -0.02428981475532055, + -0.012375593185424805, + -0.0034585846588015556, + 0.0037418529391288757, + -0.00030362268444150686, + 0.005180244334042072, + 0.0017208113567903638, + -0.006842535920441151, + -0.016256535425782204, + -9.477607818553224e-05, + -0.005136142484843731, + -0.005370220169425011, + -0.009417392313480377, + -0.004169299267232418, + 0.039813585579395294, + 0.0035688388161361217, + 0.014017530716955662, + 0.010265500284731388, + 0.0005784097011201084, + -0.019404713064432144, + -0.0016410890966653824, + -0.03544413298368454, + -0.004505150020122528, + 0.004291426856070757, + 0.003266912419348955, + -0.005207383539527655, + 0.002985340543091297, + 0.019255446270108223, + 0.0005347321275621653, + 0.012952306307852268, + -0.01663648895919323, + -0.01004838477820158, + 0.0002571887744124979, + -0.00392504408955574, + -0.005590728484094143, + -0.006839143577963114, + 0.02267501689493656, + -0.00455942889675498, + 0.013386538252234459, + 0.02806220017373562, + -0.0017640647711232305, + -0.0019370788941159844, + 0.021833693608641624, + 0.0014154923846945167, + -0.02753298170864582, + -0.005241307895630598, + 0.007789024617522955, + 0.0033635967411100864, + 0.01788490265607834, + -0.020476721227169037, + 0.035308435559272766, + -0.001135616679675877, + 0.028740687295794487, + 0.02944631315767765, + 0.02020532637834549, + 0.01475029531866312, + 0.017124999314546585, + 0.004654417280107737, + -0.007856872864067554, + 0.0019777880515903234, + 0.013834338635206223, + -0.020422441884875298, + 0.02547038160264492, + -0.0019455599831417203, + -0.0006513469852507114, + 0.00987197831273079, + 0.00455942889675498, + -0.024303385987877846, + 0.00012679216160904616, + -0.011812449432909489, + -0.006890030112117529, + 0.0027275155298411846, + -0.016460081562399864, + 0.01917402818799019, + -0.025076860561966896, + -0.006014782469719648, + -0.010828644037246704, + 0.0075379847548902035, + -0.007707606069743633, + -0.005092041101306677, + -0.01812915876507759, + -0.01353580504655838, + -0.022254355251789093, + -0.007694036699831486, + -0.008956021629273891, + 0.017437102273106575, + -0.008535359986126423, + -0.0030803284607827663, + 0.02475118637084961, + 0.007008765358477831, + 0.002693591173738241, + 0.009838053956627846, + 0.0031091643031686544, + -0.0030599739402532578, + -0.012524859979748726, + -0.011486776173114777, + -0.03693680465221405, + -0.008949236944317818, + -0.03365292772650719, + -1.8539112716098316e-05, + 0.013990391045808792, + -0.011235736310482025, + -0.010631882585585117, + -0.00800614058971405, + 0.0170435793697834, + 0.006164049729704857, + 0.005129357799887657, + 0.012436657212674618, + -0.012463795952498913, + 0.019241876900196075, + -0.01495384145528078, + 0.023991281166672707, + 0.0454857312142849, + 0.02237648330628872, + -0.018278425559401512, + 0.006482938304543495, + -0.02718016691505909, + 0.010557249188423157, + -0.006384557578712702, + 0.009797344915568829, + -0.007415857166051865, + -0.006923954468220472, + 0.01777634583413601, + -0.0007709302590228617, + -0.015143818221986294, + 0.026745935901999474, + -0.005811236798763275, + -0.005390575155615807, + -0.00870498176664114, + 0.03973216563463211, + 0.028767826035618782, + -0.020395303145051003, + 0.003684181487187743, + 0.025538230314850807, + -0.017287835478782654, + 0.012226326391100883, + -0.03796810284256935, + 0.011228950694203377, + 0.013583298772573471, + 0.015075969509780407, + 0.018712656572461128, + -0.02530754543840885, + -0.026053879410028458, + 0.0007285248721018434, + 0.010265500284731388, + 0.00029238525894470513, + 0.0036672193091362715, + -0.02346206270158291, + 0.0019150280859321356, + -0.02370631694793701, + -0.0060012126341462135, + -0.002970074536278844, + 0.00901708472520113, + -0.011072899214923382, + 0.0170435793697834, + 0.0059469337575137615, + -5.6505199609091505e-05, + -0.015944432467222214, + 0.006761117838323116, + -0.0038266635965555906, + -0.029473451897501945, + -0.0012204275699332356, + 0.012518075294792652, + -0.010041600093245506, + 0.01803416945040226, + 0.006605065893381834, + 0.014587459154427052, + -0.032377373427152634, + -0.011581763625144958, + -0.007578693795949221, + -0.02221364714205265, + -0.00045204159687273204, + -0.0019455599831417203, + 0.0038504106923937798, + 0.029744846746325493, + 0.019038330763578415, + 0.02252575010061264, + -0.0009642989025451243, + -0.015089538879692554, + 0.0006365051376633346, + 0.013678287155926228, + 0.02490045316517353, + 0.009532734751701355, + -0.027709387242794037, + 0.00842001661658287, + 0.012918381951749325, + 0.0123959481716156, + 0.004515327513217926, + 0.013603653758764267, + 0.04410162195563316, + -0.007822948507964611, + -0.010862568393349648, + -0.023597760125994682, + 0.004915634635835886, + -0.03224167600274086, + 0.017545659095048904, + 0.00025379634462296963, + -0.002315334975719452, + 0.015252375975251198, + -0.013624007813632488, + 0.0011729334946721792, + 0.01731497421860695, + -0.005000445060431957, + -0.006696661468595266, + 0.0007022335194051266, + 0.006723800674080849, + 0.004355883225798607, + 0.016500791534781456, + 0.007599048316478729, + -0.002140624914318323, + -0.027302294969558716, + -0.004990268032997847, + -0.022498611360788345, + -0.0036502571310847998, + 0.02749227173626423, + 0.017640648409724236, + 0.002439158735796809, + 0.017274266108870506, + 0.003565446473658085, + -0.007327653933316469, + 0.016962161287665367, + -0.016283676028251648, + -0.005241307895630598, + -0.0006950245588086545, + -0.008175762370228767, + -0.005075078923255205, + -0.017437102273106575, + -0.01500812079757452, + -0.0047019110061228275, + 0.02092452347278595, + 0.013793629594147205, + -0.006733978167176247, + 0.01698930189013481, + -0.001244174549356103, + -0.01373935118317604, + -0.0013501880457624793, + -0.02966342866420746, + 0.03099326230585575, + 0.0075379847548902035, + 0.008155407384037971, + 0.024167688563466072, + 0.005702678579837084, + -0.02950059063732624, + -0.05294908210635185, + 0.0018013815861195326, + -0.006181011907756329, + 0.010367273353040218, + 0.04738549515604973, + -0.014383913017809391, + -0.005017407238483429, + -0.004501757677644491, + 0.008793184533715248, + -0.02346206270158291, + -0.007836518809199333, + 0.023882724344730377, + -0.0167993251234293, + -0.0014002264942973852, + -0.014682447537779808, + -0.006004605442285538, + -0.02825217694044113, + 0.015320224687457085, + -0.0034772432409226894, + -0.007497275248169899, + -0.01216526236385107, + 0.002647793386131525, + -0.023475632071495056, + 0.04328743740916252, + -0.0065100775100290775, + 0.025076860561966896, + 0.0006827270262874663, + 0.008494650945067406, + -0.006713623646646738, + -0.02024603635072708, + -0.00767368171364069, + 0.010557249188423157, + -0.008949236944317818, + 0.019553979858756065, + 0.007714391220360994, + 0.023326365277171135, + 0.029989100992679596, + 0.01206348929554224, + -0.004793507046997547, + 0.006045314483344555, + 0.018984051421284676, + 0.019146887585520744, + -0.005122572649270296, + -0.0059469337575137615, + 0.00249852635897696, + 0.009987320750951767, + 0.01952684111893177, + 0.019364003092050552, + -0.00012976053403690457, + -0.01998821087181568, + -0.02366560883820057, + -0.016962161287665367, + 0.03188886493444443, + -0.008128267712891102, + -0.012877672910690308, + -0.007334438618272543, + -0.02055813930928707, + -0.005651792045682669, + -0.017274266108870506, + -0.014641737565398216, + 0.006571141537278891, + -0.04241897538304329, + 0.0014646826311945915, + 0.005180244334042072, + 0.006893422454595566, + 0.032214537262916565, + -0.0014663789188489318, + -0.008732120506465435, + 0.02701733075082302, + 0.0330558605492115, + -0.025660358369350433, + 0.03766956925392151, + 0.0024595134891569614, + 0.015822304412722588, + -0.015320224687457085, + 0.006710231304168701, + 0.009397037327289581, + -0.009329188615083694, + 0.007571909110993147, + -0.016256535425782204, + -0.012830179184675217, + -0.010896492749452591, + -0.020585279911756516, + 0.0012161870254203677, + -0.014546750113368034, + 0.002434070222079754, + -0.006218328606337309, + 0.001380719942972064, + 0.01586301438510418, + -0.005997820291668177, + -0.010767580009996891, + 0.006442228797823191, + -0.0015316831413656473, + -0.0020880422089248896, + -0.0021287512499839067, + -0.010380842722952366, + -0.021616578102111816, + 0.01803416945040226, + 0.005529664922505617, + -0.011724245734512806, + -0.012952306307852268, + -0.029717708006501198, + -0.0035824086517095566, + 0.0060113901272416115, + -0.0175592303276062, + 0.017138568684458733, + -0.020748116075992584, + -0.026053879410028458, + -0.001979484222829342, + 0.017423532903194427, + 0.016826463863253593, + 0.0010770972585305572, + -0.021168777719140053, + 0.0026952875778079033, + -0.013888617977499962, + 0.023231375962495804, + -0.019133318215608597, + -0.007911152206361294, + -0.0022407015785574913, + -0.02412697859108448, + -0.03422285616397858, + -0.006360810715705156, + 0.0019421675242483616, + 0.021372323855757713, + 0.010509755462408066, + -0.029012082144618034, + 0.004810469225049019, + -0.0012645291863009334, + -0.03766956925392151, + -0.01643294282257557, + -0.027085179463028908, + 0.004864748101681471, + 0.027926502749323845, + 0.05227059870958328, + -0.008752475492656231, + 0.008725335821509361, + 0.01333225890994072, + -0.0007946772966533899, + -0.04203902184963226, + -0.018685517832636833, + -0.003965753596276045, + 0.006771294865757227, + -0.0023492593318223953, + 0.004935989156365395, + -0.027573689818382263, + -0.013169422745704651, + 0.006493115331977606, + -0.005163282155990601, + 0.001916724257171154, + 0.009627723135054111, + -0.026393122971057892, + -0.03454853221774101, + -0.002730908105149865, + 0.015645897015929222, + 0.0030056950636208057, + -0.004396592266857624, + 0.00438980758190155, + -0.03728961572051048, + -0.003674004226922989, + 0.018576959148049355, + -0.01500812079757452, + -0.02624385617673397, + -0.012172047048807144, + -0.017708497121930122, + -6.54633404337801e-05, + -0.019133318215608597, + 0.000515225634444505, + -0.013895402662456036, + -0.014085379429161549, + -0.009600583463907242, + 0.015537340193986893, + -0.007863658480346203, + -0.008962806314229965, + -0.013257625512778759, + 0.008067203685641289, + 0.010265500284731388, + -0.0019455599831417203, + 0.016134407371282578, + -0.05300336331129074, + -0.02346206270158291, + -0.004196438938379288, + -0.033300116658210754, + 0.007341223768889904, + -0.006825573742389679, + 0.00542449951171875, + 0.00670344615355134, + 0.02593175321817398, + -0.018712656572461128, + -0.009132428094744682, + -0.04917670041322708, + 0.011798880062997341, + 0.020748116075992584, + -0.019621828570961952, + 0.01844126172363758, + -0.004773152060806751, + -0.008216471411287785, + -0.004796899389475584, + -0.025022581219673157, + -0.0008082470158115029, + -0.005115787964314222, + -0.02221364714205265, + 0.007870443165302277, + -0.006418481934815645, + -0.03948791325092316, + -0.017491381615400314, + 0.0033941285219043493, + 0.0021592832636088133, + 0.004691733978688717, + 0.18270283937454224, + -0.020883813500404358, + 0.007951861247420311, + 0.01967610791325569, + -0.011771740391850471, + -0.0123959481716156, + 0.01591729186475277, + -0.019852513447403908, + 0.009125643409788609, + 0.017803484573960304, + -0.014641737565398216, + 0.01219240203499794, + -0.005678931716829538, + -0.010129802860319614, + 0.01149356085807085, + -0.021670857444405556, + -0.037995241582393646, + -0.028767826035618782, + -0.03167174756526947, + 0.002030370756983757, + 0.006567749194800854, + 0.006242075469344854, + -0.018061310052871704, + -0.02138589322566986, + 0.03671968728303909, + -0.015510200522840023, + -0.026379553601145744, + 0.025348253548145294, + -0.014126088470220566, + -0.019051900133490562, + -0.028442151844501495, + 0.006191188935190439, + -0.006289569661021233, + 0.00747692072764039, + -0.01597157120704651, + -0.007232665549963713, + 0.023570619523525238, + -0.0026817177422344685, + 0.025945322588086128, + 0.024724047631025314, + -0.02211865969002247, + -0.011283230036497116, + -0.002311942633241415, + -0.031183237209916115, + 0.004488187842071056, + -0.0023102464620023966, + -0.01647365093231201, + -0.008067203685641289, + -0.006727193482220173, + -0.00596728827804327, + -0.019241876900196075, + -0.010550464503467083, + 0.031291794031858444, + 0.039786446839571, + 0.004240540321916342, + 0.016080129891633987, + 0.032730188220739365, + 0.0031091643031686544, + -0.012572354637086391, + 0.023679178208112717, + -0.023692747578024864, + 0.010462261736392975, + -0.0012255162000656128, + 0.011710676364600658, + -0.009573443792760372, + -0.006818789057433605, + -0.00824361015111208, + -0.001076249172911048, + 0.002851339289918542, + -0.021982962265610695, + -0.022077949717640877, + -0.009369897656142712, + 0.019703246653079987, + 0.02707161009311676, + -0.012972661294043064, + -0.011547839269042015, + -0.004634062759578228, + 0.011378218419849873, + 0.02738371305167675, + 0.014913132414221764, + -0.025972461327910423, + -0.0024679945781826973, + -0.004437301307916641, + -0.011669967323541641, + 0.00827074982225895, + -0.03053189069032669, + 0.014465331099927425, + -0.00914599746465683, + 0.006632205098867416, + -0.006764510180801153, + 0.00032694567926228046, + -0.0013858085731044412, + -0.006890030112117529, + 0.011038974858820438, + 0.0019336864352226257, + 0.023896293714642525, + 0.00911885779350996, + 0.030396193265914917, + -0.008304674178361893, + 0.006218328606337309, + -0.02567392773926258, + 0.07088826596736908, + 0.026800215244293213, + 0.0020134085789322853, + -0.013752920553088188, + -0.022552890703082085, + -0.018522679805755615, + 0.0023407782427966595, + 0.0030820248648524284, + 8.539388363715261e-05, + -0.011778525076806545, + -0.02887638472020626, + 0.015157387591898441, + -0.010910062119364738, + -0.01891620270907879, + 0.0019150280859321356, + -0.004047171678394079, + -0.008392877876758575, + -0.019662538543343544, + -0.011473205871880054, + -0.0026868064887821674, + -0.008019709959626198, + -0.03069472685456276, + 0.01840055361390114, + 0.010706515982747078, + 0.00785008817911148, + -0.020164618268609047, + -0.014316064305603504, + 0.01054367981851101, + -0.0211823470890522, + 0.0070833987556397915, + -0.008189331740140915, + 0.010129802860319614, + 0.017287835478782654, + 0.0033585079945623875, + 0.0012424783781170845, + 0.0108489990234375, + -0.017233556136488914, + 0.013318689540028572, + 0.008148622699081898, + 0.028767826035618782, + -0.02882210537791252, + 0.009627723135054111, + 0.006672914605587721, + -0.005458423402160406, + -0.005648399703204632, + 0.006605065893381834, + 0.010028029792010784, + -0.0105911735445261, + -0.018970482051372528, + -0.003938613925129175, + -0.00790436752140522, + 0.01777634583413601, + -0.01720641739666462, + 0.02020532637834549, + -0.01534736342728138, + 0.008582853712141514, + -0.033245835453271866, + -0.011222166009247303, + -0.021684426814317703, + -0.022770006209611893, + 0.009437746368348598, + 0.007273375056684017, + 0.003446711227297783, + -0.014872423373162746, + -0.03528129681944847, + -0.17542946338653564, + 0.011561409570276737, + -0.002062598941847682, + -0.023434922099113464, + 0.016039419919252396, + -0.009695571847259998, + 0.03452138975262642, + 0.008202901110053062, + -0.0004855418810620904, + -0.0015435566892847419, + -0.0018149513052776456, + -0.0029005296528339386, + -0.024479791522026062, + 0.0020693836268037558, + -0.019703246653079987, + 0.0038639805279672146, + -0.013963251374661922, + 0.01353580504655838, + 0.03989500552415848, + 0.012701266445219517, + 0.03595978394150734, + 0.007924721576273441, + 0.010876137763261795, + -0.013074434362351894, + -0.016446512192487717, + 0.018617669120430946, + -0.012524859979748726, + -0.00653382483869791, + -0.012233111076056957, + -0.02335350401699543, + -0.0010643756249919534, + 0.023163527250289917, + -0.0009235896868631244, + 0.010441906750202179, + 0.0005868907901458442, + -0.017857763916254044, + -0.0006025807815603912, + -0.01844126172363758, + -0.02050386182963848, + 5.059494651504792e-05, + 0.025402532890439034, + 0.027085179463028908, + -0.008908526971936226, + -0.0027190344408154488, + 0.004135374911129475, + 0.03349009156227112, + 0.008087558671832085, + -0.006136910058557987, + -0.0012797950766980648, + -0.014519610442221165, + 0.03574266657233238, + -0.017708497121930122, + 0.00375203019939363, + 0.014275355264544487, + 0.008250395767390728, + 0.0037995241582393646, + -0.021630149334669113, + 0.02614886872470379, + -0.003265216015279293, + 0.015618758276104927, + -0.024981871247291565, + -0.05465887114405632, + 0.0021100929006934166, + -0.0010906669776886702, + -0.028903523460030556, + -0.018821215257048607, + 0.003484027925878763, + -0.0015791772166267037, + -0.012110983021557331, + 0.021195916458964348, + -0.016935022547841072, + -0.016283676028251648, + -0.0017776344902813435, + -0.01648722030222416, + -0.0012416301760822535, + 0.01221954170614481, + -0.008386092260479927, + 0.008569284342229366, + 0.019703246653079987, + -0.011703891679644585, + -0.012599493376910686, + 0.07099682092666626, + 0.0025019189342856407, + -0.0026698443107306957, + -0.008732120506465435, + 0.016772184520959854, + 0.0002631255192682147, + 0.021711567416787148, + 0.026393122971057892, + -0.009369897656142712, + 0.009329188615083694, + -0.03756101056933403, + -0.026338845491409302, + -0.0007399743190035224, + 0.022200077772140503, + 0.007442996371537447, + 0.009702356532216072, + 0.004254110157489777, + 0.005587336141616106, + -0.013196561485528946, + 0.019038330763578415, + 0.012694481760263443, + -0.023054970428347588, + -0.002420500386506319, + 0.017477812245488167, + 0.01565946824848652, + -0.0018454832024872303, + 0.001675861538387835, + 0.04535003378987312, + 0.005678931716829538, + -0.013786844909191132, + 0.0062658223323524, + -0.006849321071058512, + -0.0037893468979746103, + 0.01694859191775322, + 0.026515251025557518, + 0.017694927752017975, + -0.027315864339470863, + 0.01715213805437088, + 0.01534736342728138, + 0.02511756867170334, + -0.013339043594896793, + -0.020218897610902786, + 0.004505150020122528, + -0.007666897028684616, + -0.011663182638585567, + -0.05066936835646629, + -0.01299301628023386, + 0.026474541053175926, + 0.01766778714954853, + 0.0006398975383490324, + 0.02536182478070259, + -0.008026494644582272, + 0.015740886330604553, + 0.006320101208984852, + 0.029473451897501945, + -0.04418303817510605, + -0.0075379847548902035, + 0.014302494935691357, + -0.01726069487631321, + 0.004467833321541548, + -0.013054079376161098, + -0.021223057061433792, + -0.015903722494840622, + -0.0034687621518969536, + 0.026895202696323395, + -0.003183797700330615, + -0.016283676028251648, + 0.009342758916318417, + -0.0307490061968565, + -0.008494650945067406, + 0.02092452347278595, + -0.012273820117115974, + 0.009675216861069202, + 0.01557804923504591, + -0.003470458323135972, + 0.01131715439260006, + -0.03332725539803505, + 0.013780060224235058, + -0.030450472608208656, + 0.008331813849508762, + 0.003324583638459444, + -0.019866082817316055, + -0.014858854003250599, + 0.05552733317017555, + 0.01092363242059946, + -0.01306764967739582, + -0.024574778974056244, + -0.002674932824447751, + -0.01503526046872139, + -0.005410929676145315, + -0.005282016936689615, + -0.015835873782634735, + 0.017993461340665817, + 0.005349865648895502, + -0.03235023468732834, + -0.024778325110673904, + 0.013372967950999737, + -0.007782239932566881, + -0.01845483109354973, + 0.022390052676200867, + -4.4949727453058586e-05, + -0.010306209325790405, + -0.0003716833598446101, + -0.012049919925630093, + -0.003470458323135972, + 0.004508542362600565, + -0.024303385987877846, + 0.005963895935565233, + 0.026433832943439484, + 0.005529664922505617, + 0.0073547931388020515, + -0.02184726484119892, + 0.004006462637335062, + 0.0211823470890522, + -0.01917402818799019, + -0.014044669456779957, + 0.02035459317266941, + -0.021372323855757713, + 0.014858854003250599, + -0.021616578102111816, + 0.0034263567067682743, + -0.008291104808449745, + -0.009885547682642937, + 0.03042333386838436, + -0.001984572969377041, + -0.0017742421478033066, + -0.01323048584163189, + 0.0126605574041605, + 0.010224791243672371, + 0.022335775196552277, + -0.01621582731604576, + 0.010292639955878258, + -0.0014723156346008182, + 0.016935022547841072, + -0.03235023468732834, + 0.008338598534464836, + 0.025131138041615486, + 0.01917402818799019, + -0.008874602615833282, + -0.016975730657577515, + 0.004142160061746836, + 0.010930417105555534, + -0.034494251012802124, + 0.0006636445759795606, + 0.022444332018494606, + -0.01570017635822296, + -0.017274266108870506, + -0.07528486102819443, + -0.007144462317228317, + 0.005159889347851276, + -0.02898494154214859, + -0.020381733775138855, + 0.007076614070683718, + -0.0008718551252968609, + 0.00720552634447813, + 0.01648722030222416, + -0.02795364148914814, + -0.021928682923316956, + -0.004454263485968113, + -0.019825374707579613, + -0.0027054648380726576, + -0.014112518168985844, + -0.004036994650959969, + 0.007748315576463938, + -0.0030497966799885035, + 0.01591729186475277, + 0.016907881945371628, + -0.01617511734366417, + -0.016025850549340248, + -0.006652559619396925, + -0.0017725458601489663, + -0.01565946824848652, + 0.0160122811794281, + 0.01229417510330677, + 0.016365094110369682, + -0.007212311029434204, + 0.0033686852548271418, + 0.006594888400286436, + -0.0023611329961568117, + -0.002320423722267151, + -0.020910952240228653, + 0.0028258960228413343, + -0.0019930540584027767, + -0.0028683014679700136, + 0.04735835641622543, + 0.023991281166672707, + 0.051646389067173004, + -0.023991281166672707, + -0.015265945345163345, + 0.015401642769575119, + -0.022444332018494606, + -0.011208596639335155, + -0.0027241231873631477, + 0.018997620791196823, + 0.006289569661021233, + 0.00971592590212822, + -0.021521590650081635, + -0.008291104808449745, + 0.019187597557902336, + -0.019391143694519997, + -0.013440816663205624, + 0.009335974231362343, + -0.02484617382287979, + 0.01740996353328228, + -0.02319066785275936, + 0.006092808675020933, + -0.03631259500980377, + 0.04149623215198517, + 0.02852357178926468, + -0.010380842722952366, + 0.014560319483280182, + -0.00321602588519454, + 0.011038974858820438, + -0.009342758916318417, + 0.007327653933316469, + 0.022512180730700493, + -0.017450671643018723, + -0.012579139322042465, + 0.01973038725554943, + -0.006370987743139267, + 0.010353703051805496, + 0.0038266635965555906, + -0.022091519087553024, + -0.014302494935691357, + 0.013135498389601707, + -0.019336864352226257, + -0.00533290347084403, + 0.017437102273106575, + 0.017124999314546585, + -0.03883656486868858, + 0.03389718383550644, + 0.010285855270922184, + 0.01280982419848442, + -0.00268002157099545, + 0.009580228477716446, + -0.012300959788262844, + 0.009546304121613503, + -0.027519410476088524, + 0.006981625687330961, + 0.01674504578113556, + -0.007795809302479029, + 0.02666451781988144, + -0.010937201790511608, + -0.02495473250746727, + 0.011032190173864365, + 0.006771294865757227, + 0.012151692993938923, + 0.02134518511593342, + 0.0019285978050902486, + 0.007666897028684616, + -0.014587459154427052, + -0.01715213805437088, + 0.00289883348159492, + -0.042853206396102905, + -0.027817945927381516, + -0.003500990103930235, + 0.01833270490169525, + -0.022186506539583206, + -0.006109770853072405, + -0.008080773986876011, + -0.0016750134527683258, + -0.00047578863450326025, + -0.00987197831273079, + -0.006557571701705456, + 0.002542627975344658, + -0.029202057048678398, + 0.031074680387973785, + 0.011507130227982998, + 0.026108158752322197, + 0.011914222501218319, + -0.017165707424283028, + 0.022824285551905632, + 0.007870443165302277, + -0.008338598534464836, + -0.018590528517961502, + 0.00961415283381939, + -0.015428782440721989, + -0.02567392773926258, + -0.009084933437407017, + -0.010950771160423756, + -0.027560120448470116, + 0.004956343676894903, + -0.0018946734489873052, + 0.007666897028684616, + 0.016853604465723038, + 0.008698196150362492, + 0.10595244914293289, + 0.009675216861069202, + 0.0028360735159367323, + 0.0007085942779667675, + 0.006381165236234665, + 0.005387182347476482, + -0.013922542333602905, + 0.0006365051376633346, + -0.020951662212610245, + -0.032730188220739365, + 0.014492470771074295, + -0.005750172771513462, + 0.0027546549681574106, + -0.03023335710167885, + -0.028116479516029358, + -0.026854494586586952, + -0.009335974231362343, + 0.014601028524339199, + -0.016297245398163795, + 0.029473451897501945, + 0.013759705238044262, + 0.024167688563466072, + 0.0007772910757921636, + 0.024859745055437088, + -0.048281095921993256, + -0.002244093921035528, + 0.03989500552415848, + 0.009329188615083694, + 0.02289213426411152, + -0.03538985550403595, + -0.0056755393743515015, + -0.005645007360726595, + -0.057589929550886154, + -0.014153228141367435, + 0.010713301599025726, + -0.0023763987701386213, + -0.005885870195925236, + -0.010428337380290031, + 0.023312795907258987, + 0.039189379662275314, + 0.008331813849508762, + 0.014071809127926826, + -0.014248215593397617, + 0.0038911199662834406, + -0.04516005888581276, + -0.005834983661770821, + -0.009593798778951168, + -0.0057840971276164055, + -0.02175227552652359 + ], + "metadata": { + "source": "test.pdf", + "file_type": "pdf", + "has_tables": false, + "table_count": 0, + "has_images": true, + "image_count": 1, + "detection_class_prob": 0.8481391668319702, + "coordinates": "CoordinatesMetadata(points=((194.43865966796875, 223.614626111111), (194.43865966796875, 404.46212611111065), (833.7641645000001, 404.46212611111065), (833.7641645000001, 223.614626111111)), system=)", + "links": [], + "last_modified": "2024-11-08T08:33:13", + "_known_field_names": "frozenset({'links', 'sent_to', 'detection_origin', 'image_path', 'page_name', 'subject', 'coordinates', 'url', 'orig_elements', 'category_depth', 'signature', 'emphasized_text_contents', 'parent_id', 'header_footer_type', 'detection_class_prob', 'cc_recipient', 'last_modified', 'file_directory', 'bcc_recipient', 'filename', 'image_base64', 'key_value_pairs', 'data_source', 'image_mime_type', 'languages', 'page_number', 'sent_from', 'link_start_indexes', 'link_texts', 'link_urls', 'emphasized_text_tags', 'filetype', 'text_as_html', 'table_as_cells', 'email_message_id', 'is_continuation', 'attached_to_filename'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "test.pdf", + "parent_id": "f6e5bc969bc25157103a4996997132fb", + "id": "2fe72ee3-a99b-4ab0-961f-202cee32984c", + "processing_timestamp": "2025-05-03T09:55:36.199953", + "chunk_number": 1, + "total_chunks": 2, + "chunking_strategy": "hybrid", + "word_count": 21 + } +} \ No newline at end of file diff --git a/data/processed/85fd305f-83de-70b0-47e8-2dc000000000.json b/data/processed/85fd305f-83de-70b0-47e8-2dc000000000.json new file mode 100644 index 0000000000000000000000000000000000000000..076308f03d3fe3404c1dd31e0b62eb256c67d800 --- /dev/null +++ b/data/processed/85fd305f-83de-70b0-47e8-2dc000000000.json @@ -0,0 +1,1570 @@ +{ + "id": "85fd305f-83de-70b0-47e8-2dc000000000", + "content": "\n[IMAGE: ]\n\n\n## Studiengang Bauphysik\n\n\n## Verladeger\u00e4usche in Speditionen\n\nBachelorarbeit zur Erlangung des akademischen Grades Bachelor of Engineering\n\n## vorgelegt von\n\n\n## Selin Karag\u00f6z\n\n\n## Matrikelnummer\n\n\n## Matrikelnummer\n\n610260\nEingereicht am\n30.06.2023\nErstgutachter Prof. Dr. Karl Georg Degen Zweitgutachter Prof. Dr.-Ing. Berndt Zeitler externer Betreuer Dipl.-Ing (FH) Bauphysik Thomas Heine Heine und Jud, Forststra\u00dfe 9, 70174 Stuttgart\nKurzfassung\n\n## Kurzfassung\n\nDie Logistik spielt eine entscheidende Rolle in der globalen Wirtschaft, doch sie geht auch mit einer unvermeidlichen L\u00e4rmbelastung einher. Diese Arbeit konzentriert sich auf die Analyse und Bewertung von Verladet\u00e4tigkeiten in Speditionen mit verschiedenen Flurf\u00f6rderger\u00e4ten und Anh\u00e4ngern. Ziel ist es, Emissionsdatenbl\u00e4tter f\u00fcr Verladet\u00e4tigkei- ten mit bestimmten Flurf\u00f6rderger\u00e4ten und Anh\u00e4ngern zu erstellen, die als Grundlage f\u00fcr Schallimmissionsprognosen dienen k\u00f6nnen. Weiterhin werden m\u00f6gliche L\u00e4rmmin- derungsma\u00dfnahmen aufgezeigt. Im Rahmen der Untersuchung wurde der Schalldruck im Fernfeld gemessen, wobei das H\u00fcllfl\u00e4chen-Verfahren zur Ermittlung der Schallleistung angewendet wurde. Zus\u00e4tzlich wurde die Richtcharakteristik entlang einer Kreisbahn im Nahfeld analysiert. Es wurde zudem eine Vergleichsanalyse der simulierten Messergebnisse mit den tats\u00e4chlichen Messungen durchgef\u00fchrt, um die Genauigkeit der berechneten Kenngr\u00f6\u00dfen zu \u00fcberpr\u00fc- fen und Abweichungen zu interpretieren. Die Ergebnisse zeigen, dass die Beladung mit einem Gabelstapler und einem Gabelhubwagen \u00e4hnliche Schallleistungspegel aufwei- sen. Allerdings gibt es Unterschiede in der Impulshaftigkeit der Ger\u00e4uschentwicklung. Der Gabelhubwagen erzeugt mehr impulsartige Schallereignisse, w\u00e4hrend der Gabel- stapler eine kontinuierlichere Ger\u00e4uschabstrahlung aufweist. Es gibt gewisse Variatio- nen der Schallleistungspegel je nach Flurf\u00f6rderger\u00e4t und Anh\u00e4ngertyp, jedoch zeigt sich kein signifikanter Unterschied zwischen den Beladevorg\u00e4ngen der Flurf\u00f6rderger\u00e4te in den verschiedenen Anh\u00e4ngern, was auf eine gewisse \u00c4hnlichkeit hinweist (siehe Tabelle 1). Die Schallabstrahlung der Flurf\u00f6rderger\u00e4te erfolgt weitestgehend in alle Richtungen,\n\n## ohne eine ausgepr\u00e4gte Richtcharakteristik aufzuweisen. | Anzahl Max-Pegel Schallleistungspegel Flurf\u00f6rderger\u00e4t | Einzelereignisse LAFmax LWA,5s LWAmax LWA,1h Kl LWAT,1h El [dB(A)] [dB(A)] [dB(A)] [dB(A)] [dB(A)] [dB(A)] Gabelstapler 297 69,3 100,7 108,8 72,1 5,7 77,8 STABW [dB] 6,5 4,9 6,5 4,9 2,9 - Gabelhubwagen 99 68,6 100,7 108,1 72,1 6,2 79,5 STABW [dB] 6,4 5,1 6,4 51 2,7 - |\n\n\n## I\n\nKurzfassung\n\n| Anzahl Max-Pegel Schallleistungspegel Flurf\u00f6rderger\u00e4t | Anh\u00e4nger-Typ lEinzelereignissel LArmax | LWASs LWAmax LWA\u201aIh Kl LWAT,Ih [ie [dB(A)] [dB(A)] [dB(A)] [dB(A)] [dB(A}] [dB{A)] Tautliner 36 73,1 103,1 112,5 74,6 6,9 81,5 STABW [dB] 7,1 4,8 71 4,8 2,9 - Koffer 68,3 100,1 107,9 71,6 5,4 77,0 Gabelstapler STABW [dB] 6,1 48 6,1 4,8 2,8 B Wechselbr\u00fccke 71,6 102,0 111,0 73,4 81 81,5 STABW [dB] 4,9 4 4,9 4 16 - Koffer 3 69,4 101,5 108,9 72,9 6,7 79,6 STABW [dB] 6 49 6 4,9 2,7 - Gabelhubwagen Wechselbr\u00fccke 3 64,4 97,2 103,8 68,6 5,0 73,6 STABW [dB] 5,6 4,3 5,6 4,3 2,1 - |\n\n\n## Tabelle 1: Ergebnisse der Verladeger\u00e4usche\n\nMit: LAFmax: Maximal-Pegel [dB(A)], LWA,5s: Schallleistungspegel bezogen auf 5 Sekunden [dB(A)], LWAmax: maximale Schallleistungspegel bezogen auf 5 Sekunden [dB(A)], LWA,1h: st\u00fcndliche Schall- leistungspegel [dB(A)], KI: Impulszuschlag [dB(A)], LWAT,1h: impulsbehaftete st\u00fcndliche Schallleis-\n\n## tungspegel [dB(A)], STABW: Standardabweichung [dB]\n\nEs stehen verschiedene M\u00f6glichkeiten zur L\u00e4rmminderung zur Verf\u00fcgung, wie die Ver- wendung von weicheren Oberfl\u00e4chen auf \u00dcberladebr\u00fccken, Dr\u00f6hnfolien an der Unter- seite der \u00dcberladebr\u00fccken, speziell angepasste Sto\u00dfd\u00e4mpfer in den Anh\u00e4ngern sowie Ma\u00dfnahmen auf dem Gel\u00e4nde und das richtige Verhalten des Personals. Zuk\u00fcnftige Untersuchungen k\u00f6nnten weitere spezifische Messungen und Untersuchun- gen f\u00fcr bestimmte Situationen von Flurf\u00f6rderger\u00e4ten umfassen, um eine detailliertere Bewertung vorzunehmen. Die Erkenntnisse k\u00f6nnen dazu beitragen, Standards und Richtlinien f\u00fcr den Einsatz von Flurf\u00f6rderger\u00e4ten zu verbessern und die L\u00e4rmbelastung in Speditionen und w\u00e4hrend des Verladeprozesses insgesamt zu reduzieren. Es wurden Emissionsdatenbl\u00e4tter erstellt, um die Arbeit zu erleichtern. Je nach bekanntem Anh\u00e4- ngertyp k\u00f6nnen die entsprechenden Vorlagen verwendet werden, um pr\u00e4zisere Ergeb- nisse zu erzielen. Ein Entladevorgang kann \u00e4hnlich wie ein Beladevorgang betrachtet werden. Die vorliegende Arbeit liefert somit wichtige Erkenntnisse \u00fcber Verladeger\u00e4usche in ver- schiedenen Anh\u00e4ngertypen und bietet eine Grundlage f\u00fcr zuk\u00fcnftige Untersuchungen und Ma\u00dfnahmen zur L\u00e4rmminderung in der Logistikbranche. ## II\n\nEidesstattliche Versicherung\n\n## Eidesstattliche Versicherung\n\nIch erkl\u00e4re hiermit, dass ich die vorliegende Arbeit selbstst\u00e4ndig und ohne Verwendung anderer als der angegebenen Hilfsmittel verfasst habe. Ich habe s\u00e4mtliche verwendeten Quellen erw\u00e4hnt und gem\u00e4\u00df den g\u00e4ngigen wissenschaftlichen Regeln zitiert. Die Arbeit hat in gleicher oder \u00e4hnlicher Form noch keiner anderen Pr\u00fcfungsbeh\u00f6rde vorgelegen. [IMAGE: . Hanpsi]\n\nKirchheim unter Teck, 30.06.2023\n\n## III\n\nDanksagung\n\n## Danksagung\n\nIch m\u00f6chte mich von ganzem Herzen bei allen Personen bedanken, die mich w\u00e4hrend meiner Bachelorarbeit unterst\u00fctzt haben, ohne die w\u00e4re diese Thesis nicht m\u00f6glich ge- wesen. Ein besonderer Dank geb\u00fchrt meinem externen Betreuer Thomas Heine von dem Inge- nieurb\u00fcro Heine+Jud in Stuttgart der mich tatkr\u00e4ftig unterst\u00fctzt hat und mit wertvollen Hinweisen bzw.", + "embedding": [ + 0.010092006996273994, + 0.013555415906012058, + -0.002199366223067045, + -0.037141840904951096, + -0.007462256588041782, + 0.02944236434996128, + -0.017608486115932465, + -0.005544165149331093, + -0.02048223465681076, + -0.031855229288339615, + 0.015100733377039433, + 0.011420438066124916, + -0.021078672260046005, + -0.00010812562686624005, + 0.024345528334379196, + -0.0054357219487428665, + 0.03836182877421379, + 0.01114933006465435, + 0.01717471145093441, + -0.0018503143219277263, + -0.021729331463575363, + 0.003944626078009605, + 0.0021129504311829805, + -0.0030872460920363665, + -0.017161156982183456, + -0.00347357545979321, + 0.03429520130157471, + -0.023017097264528275, + -0.002755138324573636, + 0.009963231161236763, + 0.00896012969315052, + -0.019601132720708847, + -0.013907857239246368, + 0.004419065546244383, + -0.018313366919755936, + -0.026907501742243767, + -0.02385753206908703, + -0.010031008161604404, + 0.035732075572013855, + 0.002053645672276616, + 0.022678211331367493, + 0.016008947044610977, + 0.013365640304982662, + -0.024250639602541924, + -0.007462256588041782, + 0.016076723113656044, + -0.0024789466988295317, + -0.007672365754842758, + -0.02365420199930668, + 0.020577121526002884, + 0.017608486115932465, + 0.004639341030269861, + -0.005601775832474232, + 0.004598674830049276, + 0.0005612789536826313, + 0.0026755002327263355, + 0.0017113713547587395, + 0.0169307142496109, + -0.001882508397102356, + -0.027558160945773125, + -0.011935544200241566, + 0.015209176577627659, + -0.03584051877260208, + 0.011135774664580822, + -0.019682465121150017, + -0.01065455749630928, + -0.011813545599579811, + -0.007584255188703537, + -0.00965823419392109, + -0.001779148355126381, + 0.006032160017639399, + 0.01247098296880722, + 0.007096260320395231, + 0.011122219264507294, + 0.029035702347755432, + 0.0018164258217439055, + 0.021891998127102852, + 0.016049612313508987, + -0.008777132257819176, + 0.0001339656300842762, + 0.0163071658462286, + -0.03215344622731209, + -0.01339952927082777, + 0.04034091904759407, + 0.028303708881139755, + -0.010078451596200466, + -0.007218258921056986, + 0.0034837420098483562, + -0.03597607463598251, + -0.011427216231822968, + 0.00112509960308671, + 0.03874137997627258, + 0.015127844177186489, + 0.004442787729203701, + 0.025619735941290855, + -0.018896250054240227, + -0.004991781897842884, + 0.010837554931640625, + -0.007862141355872154, + -0.04269956052303314, + -0.025484181940555573, + -0.01304708793759346, + -0.00832302588969469, + -0.00490367179736495, + -0.04183201491832733, + -0.01306742150336504, + -0.0014428045833483338, + 0.010851110331714153, + 0.012145653367042542, + -0.023098429664969444, + -0.03744005784392357, + 0.024928409606218338, + -0.002092617331072688, + 0.00440889922901988, + 0.018232034519314766, + -0.011264550499618053, + 0.03852449357509613, + 0.0029245810583233833, + 0.000496890745125711, + -0.028141044080257416, + 0.02898148074746132, + 0.01838114485144615, + 0.024128640070557594, + -0.0031872172839939594, + 0.03451209142804146, + 0.021200671792030334, + -0.0026145009323954582, + 0.004690174013376236, + -0.005676330532878637, + -0.01965535432100296, + -0.03819916397333145, + -0.003268549684435129, + 0.01488384697586298, + 0.0017435654299333692, + 0.008248470723628998, + 0.018814917653799057, + -0.005781385116279125, + -0.006794652435928583, + -0.020997339859604836, + -0.04332311078906059, + -0.010857888497412205, + 0.018259145319461823, + -0.04226578772068024, + -0.02766660414636135, + -0.017106935381889343, + 0.017228934913873672, + 0.013711303472518921, + 0.010702000930905342, + -0.016252944245934486, + -0.007252147886902094, + -0.030038801953196526, + -0.02456241473555565, + 0.024101529270410538, + 0.0008031583856791258, + -0.001231848495081067, + 0.0011894877534359694, + -0.007211481221020222, + 0.012396427802741528, + -0.021946219727396965, + -0.006618431769311428, + 0.014273853041231632, + 0.00590338371694088, + 0.014233186841011047, + -0.008939797058701515, + 0.012376095168292522, + 0.01038344856351614, + -0.0033786874264478683, + -0.009183794260025024, + -0.00023065388086251915, + -0.02637884020805359, + 0.0007252147770486772, + 0.013846857473254204, + -0.02427775040268898, + -0.001957063330337405, + -0.01572428271174431, + 0.004225900862365961, + 0.011616991832852364, + -0.0028364709578454494, + -0.0334547683596611, + -0.0309605710208416, + -0.014382296241819859, + 0.0012360844993963838, + 0.021661555394530296, + 0.01129166129976511, + -0.02237999252974987, + -0.00023171289649326354, + 0.02469796873629093, + 0.020170459523797035, + -0.014178965240716934, + -0.0005892370245419443, + 0.011969432234764099, + 0.016361387446522713, + -0.006096548400819302, + -0.01585983671247959, + -0.6107528209686279, + -0.003975125961005688, + -0.0007214022916741669, + 0.0071098157204687595, + -0.004951115697622299, + 0.026622837409377098, + 0.0033871596679091454, + 0.016862938180565834, + -0.01174576859921217, + 0.034701865166425705, + -0.001979090739041567, + 0.01646983064711094, + -0.01123066246509552, + -0.0018621752969920635, + -0.006753986235707998, + -0.003958181478083134, + -0.009387126192450523, + -0.0069674840196967125, + 0.031692564487457275, + -0.007265703286975622, + -0.030689463019371033, + 0.02361353486776352, + 0.0022654489148408175, + -0.0019672298803925514, + -0.005330667365342379, + 0.009197349660098553, + 0.029903247952461243, + -0.020861785858869553, + 0.011501770466566086, + 0.001990951830521226, + -0.0334547683596611, + 0.006282935384660959, + -0.02841215208172798, + 0.0163071658462286, + 0.04901638627052307, + 0.017567818984389305, + -0.013948523439466953, + 0.013989189639687538, + 0.03142145648598671, + 0.01965535432100296, + -0.01106799766421318, + -0.03231611102819443, + -0.00652354396879673, + -0.018787806853652, + 0.009983563795685768, + 0.012681092135608196, + 0.057908739894628525, + 0.004554620012640953, + 0.01577850431203842, + -0.034457869827747345, + -0.0029211922083050013, + 0.006242269184440374, + 0.0055306097492575645, + -0.007726587355136871, + 0.036518290638923645, + 0.0030838572420179844, + 0.036436960101127625, + -0.02411508560180664, + -0.018598031252622604, + 0.02010268159210682, + 0.015615839511156082, + 0.02576884627342224, + -0.007448701187968254, + -0.010458003729581833, + -0.03575918823480606, + 0.011840656399726868, + -0.019397800788283348, + -0.043079111725091934, + 0.030337020754814148, + 0.0017300100298598409, + -0.0010234338697046041, + 0.007211481221020222, + 0.007536811288446188, + 0.003765016794204712, + 0.04633241146802902, + 0.03299388289451599, + -0.0037040174938738346, + -0.0025263905990868807, + 0.006879373919218779, + 0.01759492978453636, + -0.005252723582088947, + 0.0021587000228464603, + 0.004425843246281147, + -0.003426131559535861, + 0.030255688354372978, + -0.03638273850083351, + -0.012477760203182697, + 0.0017300100298598409, + -0.011698324233293533, + 0.002594167832285166, + 0.02204110659658909, + 0.03733161464333534, + -0.01007167436182499, + -0.012098209001123905, + 0.005337445065379143, + 0.031069014221429825, + -0.003910737577825785, + 0.01998068392276764, + -0.00548994354903698, + -0.025484181940555573, + -0.020116237923502922, + -0.006791263353079557, + 0.005960994400084019, + -0.020048459991812706, + 0.033590320497751236, + 0.00531711196526885, + -0.002031618030741811, + 0.01428740844130516, + 0.015575173310935497, + -0.02385753206908703, + 0.012125319801270962, + -0.015290509909391403, + -0.030255688354372978, + 0.00023700797464698553, + -0.00594743900001049, + -0.03543385863304138, + 0.019641797989606857, + -0.004381788428872824, + 0.008221359923481941, + -0.01684938184916973, + 0.00391412666067481, + 0.002892386866733432, + 0.013745192438364029, + -0.0043275668285787106, + -0.017947370186448097, + 0.03017435595393181, + 0.010369893163442612, + -0.00887879729270935, + -0.012104986235499382, + 0.019018249586224556, + 0.020658453926444054, + 0.004744395613670349, + 0.03340054675936699, + -0.008560244925320148, + 0.013019977137446404, + 0.013182641938328743, + 0.02754460647702217, + -0.004368233028799295, + 0.007835030555725098, + -0.02294931933283806, + -0.01420607604086399, + 0.00581188453361392, + 0.009746343828737736, + -0.01953335478901863, + -0.004046291578561068, + -0.03274988383054733, + -0.024386193603277206, + 0.010417337529361248, + 0.003958181478083134, + 0.013121643103659153, + -0.008783909492194653, + -0.028466373682022095, + -0.02048223465681076, + 0.008946574293076992, + 0.005862717516720295, + -0.007794364355504513, + -0.03356321156024933, + -0.016008947044610977, + -0.0019655353389680386, + -0.013372418470680714, + 0.01969601958990097, + 0.021119339391589165, + -0.038578715175390244, + 0.010193672962486744, + -0.012647203169763088, + -0.01717471145093441, + 0.01931646838784218, + 0.017106935381889343, + -0.009468458592891693, + -0.030201466754078865, + 0.013365640304982662, + -0.019208025187253952, + 0.0011344188824295998, + 0.002595862140879035, + -0.01245064940303564, + -0.009787010960280895, + -0.0025060574989765882, + 0.007760475855320692, + -0.020861785858869553, + -0.006689597852528095, + 0.018110036849975586, + 0.010525780729949474, + -0.014666960574686527, + 0.008289136923849583, + 0.0255926251411438, + 0.020780453458428383, + 0.012836978770792484, + 0.028520595282316208, + -0.021498890593647957, + 0.025958621874451637, + -0.020468678325414658, + 0.01195587683469057, + -0.020699121057987213, + 0.01405696664005518, + -0.03901248797774315, + 0.017703372985124588, + -0.0027805548161268234, + 0.010661334730684757, + 0.005744107533246279, + 0.012938644737005234, + 0.021607333794236183, + -0.0011242523323744535, + 0.032885439693927765, + -0.004947727080434561, + 0.01511428877711296, + -0.013718081638216972, + 0.013114864937961102, + -0.029740583151578903, + 0.0495586022734642, + 0.008309470489621162, + 0.013080976903438568, + -0.003992069978266954, + -0.04475998505949974, + 0.005303556565195322, + 0.006892929319292307, + 0.04635952413082123, + -0.016456276178359985, + 0.013670637272298336, + -0.011379771865904331, + -0.022163106128573418, + 0.006564210169017315, + 0.001940118963830173, + 0.03952759504318237, + 0.0071572596207261086, + -0.015792060643434525, + 0.0007743531605228782, + 0.0016596912173554301, + 0.01413829904049635, + -0.003151634242385626, + -0.005655997432768345, + -0.013934968039393425, + 0.006581154651939869, + 0.01824559085071087, + 0.005266278982162476, + 0.0008243387565016747, + 0.014910957776010036, + 0.0010776555864140391, + -0.014775403775274754, + 0.054058998823165894, + -0.0016639273380860686, + 0.008390802890062332, + 0.016957825049757957, + 0.02151244506239891, + -0.0077401427552104, + 0.010844333097338676, + -0.01923513598740101, + 0.005188335664570332, + 0.023396648466587067, + -0.004937560297548771, + 0.0012242235243320465, + 0.0030872460920363665, + 0.013087754137814045, + -0.007502922788262367, + -0.02589084580540657, + 0.023586424067616463, + -0.01577850431203842, + 0.01937068998813629, + -0.004951115697622299, + 0.014951623976230621, + 0.00357185211032629, + 0.016198722645640373, + 0.02849348448216915, + 0.01824559085071087, + -0.030282799154520035, + -0.005215446464717388, + 0.005754274316132069, + -0.038416050374507904, + -0.006228713784366846, + -0.009929342195391655, + -0.02254265733063221, + 0.0030228577088564634, + -0.006394767668098211, + -0.0033888539765030146, + 0.0012547231744974852, + 0.0239524208009243, + -0.01057322509586811, + 0.014300963841378689, + 0.025457071140408516, + 0.012952200137078762, + 0.012003321200609207, + 0.0033007438760250807, + -0.029713472351431847, + -0.01808292604982853, + 0.015886947512626648, + -0.018394699320197105, + -0.014300963841378689, + -0.005872884299606085, + 0.017581375315785408, + -0.02906281314790249, + -0.011020553298294544, + -0.004164901562035084, + 0.01038344856351614, + -0.008655133657157421, + -0.005710219033062458, + 0.012186319567263126, + -0.003683684393763542, + 0.029903247952461243, + 0.012416761368513107, + 0.0009632817818783224, + 0.0023840588983148336, + 0.0006663334206677973, + -0.02572817914187908, + -0.029659250751137733, + -0.013650303706526756, + 0.029171256348490715, + 9.997119195759296e-05, + -0.019262246787548065, + -0.005103614181280136, + 0.009936120361089706, + -0.021769998595118523, + -0.009251571260392666, + 0.009034684859216213, + -0.005405222065746784, + 0.020211124792695045, + -0.010003897361457348, + 0.005245945882052183, + 0.012071098200976849, + -0.0013580832164734602, + 0.04673907533288002, + 0.028683260083198547, + -0.008417913690209389, + -0.014829625375568867, + -0.004832505714148283, + 0.022407103329896927, + 0.03378009796142578, + 0.03312943875789642, + -0.005144280381500721, + 0.020156903192400932, + 0.006005049217492342, + -0.028168154880404472, + 0.002336614765226841, + -0.02547062747180462, + 0.014558517374098301, + 0.01457207277417183, + 0.007801142055541277, + -0.006926817819476128, + 0.016984935849905014, + -0.011189996264874935, + -0.00014307317906059325, + -0.019248690456151962, + 0.005757662933319807, + 0.0004284782335162163, + 0.03410542756319046, + -0.013962078839540482, + -0.023681312799453735, + -0.006645543035119772, + -0.0169307142496109, + 0.025402849540114403, + 0.014897402375936508, + -0.01590050384402275, + 0.032641440629959106, + 0.02738194167613983, + 0.01832692325115204, + -0.02494196593761444, + -0.0019028414972126484, + 0.0342680923640728, + 0.013108087703585625, + 0.024508193135261536, + -0.025050409138202667, + -0.010363115929067135, + -0.007428368087857962, + 0.003958181478083134, + 0.004757951013743877, + 0.0018130369717255235, + 0.00347357545979321, + 0.029876137152314186, + 0.013019977137446404, + -0.017432264983654022, + 0.018069369718432426, + -0.011535659432411194, + 0.00025310504133813083, + 0.027178609743714333, + -0.003917515277862549, + -0.0037480725441128016, + 0.044326212257146835, + -0.03247877582907677, + -0.00694715091958642, + -0.01943846605718136, + 0.017323821783065796, + -0.019411355257034302, + 0.0021468389313668013, + -0.014084077440202236, + -0.013745192438364029, + 0.0009310876484960318, + 0.004046291578561068, + -0.035569410771131516, + 0.019018249586224556, + -0.010742667131125927, + -0.02464374713599682, + -0.03158412128686905, + -0.0421031229197979, + -0.013033532537519932, + -0.01854380965232849, + 0.00782825332134962, + -0.012457427568733692, + -0.018923360854387283, + -0.02646017260849476, + 0.0012606537202373147, + 0.024548858404159546, + -0.006320212967693806, + 0.00965823419392109, + -0.00437501072883606, + -0.004900283180177212, + 0.005815273616462946, + -0.02415575087070465, + -0.012850534170866013, + -0.011772879399359226, + -0.01747293211519718, + -0.008865241892635822, + 0.025484181940555573, + -0.01428740844130516, + 0.012260873802006245, + 0.013568971306085587, + -0.01511428877711296, + 0.01581917144358158, + -0.004124235361814499, + -0.003480353159829974, + 0.0005926258745603263, + 0.025443516671657562, + 0.0007692698854953051, + 0.021322669461369514, + 0.013514749705791473, + 0.012362539768218994, + -0.02778860367834568, + 0.011006997898221016, + -0.01846247725188732, + 0.004757951013743877, + 0.005042614880949259, + 0.017228934913873672, + 0.016158055514097214, + -0.001987562980502844, + 0.007679143454879522, + -0.012362539768218994, + 0.03212633728981018, + 0.003937848377972841, + -0.0035040751099586487, + -0.014029855839908123, + 0.0018757306970655918, + -0.01182710099965334, + 0.02881881408393383, + 0.00807225052267313, + 0.009366792626678944, + 0.027232831344008446, + -0.005015504080802202, + -0.02056356705725193, + -0.01354186050593853, + 0.04025958478450775, + 0.00477828411385417, + -0.0013733331579715014, + 0.04137112945318222, + -0.005791551433503628, + -0.0024738635402172804, + -0.027490384876728058, + -0.006537099368870258, + 0.00831624772399664, + 0.01709337905049324, + 0.010363115929067135, + -0.01903180405497551, + -0.027842825278639793, + -0.010288560763001442, + -0.007591032888740301, + 0.006953928619623184, + -0.00540861114859581, + -0.025985732674598694, + -0.03009302355349064, + 0.026324618607759476, + -0.0077401427552104, + 0.005330667365342379, + 0.013189420104026794, + -0.033346325159072876, + -0.025741735473275185, + 0.025375738739967346, + -0.01263364776968956, + 0.03109612502157688, + -0.0051103918813169, + -0.00021127387299202383, + -0.012247318401932716, + -0.009251571260392666, + -0.028764592483639717, + -0.03410542756319046, + -0.011698324233293533, + -0.004585119429975748, + 0.021282004192471504, + 0.011386550031602383, + 0.03491875156760216, + -0.007719809655100107, + 0.026771947741508484, + 0.01172543503344059, + -0.004974837880581617, + 0.007272480987012386, + -0.015710728242993355, + 0.005950827617198229, + -0.02589084580540657, + 0.03689784184098244, + 0.019994238391518593, + 0.023816866800189018, + 0.01428740844130516, + 0.007591032888740301, + 0.007875696755945683, + 0.03708761930465698, + -0.026189064607024193, + -0.013324974104762077, + -0.01046478096395731, + -0.03546096757054329, + -0.009346459060907364, + -0.010424114763736725, + 0.031611230224370956, + 0.015019400976598263, + -0.02036023512482643, + -0.0011505159782245755, + 0.015751393511891365, + -0.023355981335043907, + -0.006628598552197218, + 0.001346222241409123, + -0.0007790128001943231, + -0.05213413015007973, + 0.032099224627017975, + 0.012477760203182697, + -0.00021614534489344805, + -0.0007463950896635652, + -0.005679719615727663, + -0.019384244456887245, + -0.022569768130779266, + 0.01689004898071289, + -0.0067200977355241776, + 0.021498890593647957, + -0.01065455749630928, + -0.00043334971996955574, + 0.009116017259657383, + -0.013921412639319897, + 0.01554806251078844, + -0.017513597384095192, + 0.005496721249073744, + -0.015344731509685516, + -0.019912905991077423, + -0.017906704917550087, + -0.008045139722526073, + -0.023274648934602737, + 0.01937068998813629, + -0.014897402375936508, + -0.0025060574989765882, + 0.030499687418341637, + -0.00570683041587472, + -0.017242489382624626, + -0.017161156982183456, + 0.0015715811168774962, + 0.012545538134872913, + 0.011372994631528854, + 0.03451209142804146, + 0.032099224627017975, + -0.02534862793982029, + -0.026202619075775146, + -0.04280800372362137, + 0.014558517374098301, + -0.01668671704828739, + 0.016402052715420723, + -0.001733398879878223, + -0.037168949842453, + -0.007706254255026579, + 0.013704526238143444, + 0.023464426398277283, + -0.01238965056836605, + -0.008160360157489777, + 0.056498974561691284, + 0.03131301328539848, + -0.009353237226605415, + -0.022434214130043983, + 0.021458223462104797, + -0.0173373781144619, + -0.01323008630424738, + -0.014612738974392414, + 0.007069149520248175, + -0.01646983064711094, + -0.01339952927082777, + 0.00032787161762826145, + 0.03613873943686485, + 0.007536811288446188, + 0.033671654760837555, + 0.016374941915273666, + -0.03687073290348053, + 0.007387701887637377, + -0.023261094465851784, + -0.01646983064711094, + 0.017811816185712814, + -0.028005490079522133, + 0.029659250751137733, + -0.006052493117749691, + -0.019302912056446075, + 0.0132097527384758, + 0.009780232794582844, + -0.020821118727326393, + -0.019790908321738243, + 0.0012293067993596196, + 0.02336953766644001, + -0.021661555394530296, + 0.01224054116755724, + 0.013921412639319897, + 0.014829625375568867, + 0.009949675761163235, + -0.012592981569468975, + 0.0034498535096645355, + -0.01189487800002098, + 0.0063913785852491856, + -0.012850534170866013, + -0.00866868905723095, + 0.010336005128920078, + -0.005164613481611013, + -0.0013657081872224808, + -0.008763576857745647, + -0.02403375320136547, + 0.0163071658462286, + -0.01646983064711094, + 0.006045715417712927, + -0.03567785397171974, + -0.00755714438855648, + -0.0035854075103998184, + 0.005415388848632574, + 0.020577121526002884, + 0.0028415541164577007, + -0.026405951008200645, + 0.00260094553232193, + 0.041100021451711655, + -0.022989986464381218, + 0.009536235593259335, + 0.0163071658462286, + -0.0052595012821257114, + -0.01763559691607952, + 0.01519562117755413, + -0.0009717539069242775, + -0.004005625378340483, + 0.02484707720577717, + -0.0036599624436348677, + -0.017527153715491295, + -0.0026738059241324663, + -0.010180117562413216, + 0.019628243520855904, + -0.015805615112185478, + 0.0018553975969552994, + 0.012518427334725857, + 0.004432620946317911, + 0.011921988800168037, + -0.01148143783211708, + 0.004212345462292433, + 0.012376095168292522, + 0.01436874084174633, + -0.00914312805980444, + 0.008831353858113289, + -0.017852483317255974, + 0.023111984133720398, + 0.010939220897853374, + -0.0007311452645808458, + -0.008594133891165257, + -0.05476388335227966, + -0.018774252384901047, + 0.01840825565159321, + 0.008045139722526073, + -0.028629038482904434, + -0.009875120595097542, + -0.01800159364938736, + -0.016944270581007004, + -0.008533134125173092, + 0.003561685560271144, + 0.007882474921643734, + -0.0031160512007772923, + 0.014300963841378689, + -0.0010624057613313198, + 0.002190894214436412, + 0.022163106128573418, + 0.01387396827340126, + 0.0008378941565752029, + 0.02324753813445568, + 0.016361387446522713, + -0.04435332119464874, + 0.010308894328773022, + 0.0017452598549425602, + 0.029713472351431847, + -0.001480929204262793, + -0.023098429664969444, + -0.005940661299973726, + -0.005025670398026705, + -0.03134012222290039, + -0.013548638671636581, + -0.009197349660098553, + 0.002597556682303548, + 0.005672941915690899, + 0.01684938184916973, + -0.008675466291606426, + 0.03494586423039436, + 0.003961570560932159, + 0.02468441240489483, + -0.006933595519512892, + -0.013751969672739506, + -0.005493332631886005, + -0.01935713365674019, + 0.01668671704828739, + -0.020129792392253876, + -0.04272667318582535, + -0.023261094465851784, + 0.036599624902009964, + 0.011074774898588657, + -0.005828829016536474, + 0.030743684619665146, + 0.00025183422258123755, + -0.004646118730306625, + 0.005256112664937973, + 0.006123659200966358, + 0.0005701747140847147, + 0.0053238896653056145, + 0.01281664613634348, + -0.031069014221429825, + -0.02027890272438526, + 0.010993442498147488, + 0.006726875435560942, + -0.022230882197618484, + -0.020034905523061752, + 0.036192961037158966, + -0.011122219264507294, + 0.0036633512936532497, + 0.0036938509438186884, + -0.007306369487196207, + 0.002282393164932728, + -0.0014707626542076468, + 0.027558160945773125, + 0.010458003729581833, + -0.028927259147167206, + 0.008689021691679955, + 0.02435908280313015, + -0.0007307216292247176, + -0.01531762070953846, + -0.0011767796240746975, + -0.02976769395172596, + 0.016334276646375656, + 0.002195977373048663, + -0.03253299742937088, + 0.018354034051299095, + -0.004940949380397797, + 0.01565650664269924, + 0.004141179844737053, + -0.002606028690934181, + -0.03418675810098648, + -0.023830421268939972, + -0.03605740889906883, + 0.03299388289451599, + 0.01866580732166767, + -0.028710370883345604, + -0.018882695585489273, + -0.00623549148440361, + -0.01832692325115204, + -0.007835030555725098, + -0.01767626218497753, + 0.004388566128909588, + -0.04063913971185684, + -0.01618516631424427, + 0.013596082106232643, + -0.030608130618929863, + -0.011616991832852364, + 0.0017325516091659665, + -0.012660758569836617, + -0.035650745034217834, + -0.004659674130380154, + 0.19617398083209991, + -0.02659572660923004, + 0.00777403125539422, + -0.0060897707007825375, + -0.018936917185783386, + -0.019424911588430405, + 0.008038361556828022, + -0.009685344994068146, + -0.009014352224767208, + 0.027815714478492737, + 0.02286798693239689, + 0.011020553298294544, + -0.017445821315050125, + 0.009705677628517151, + 0.01846247725188732, + -0.001402138383127749, + -0.05866784229874611, + -0.014748292975127697, + -0.026229729875922203, + 0.0060897707007825375, + 0.03030990995466709, + -0.013352084904909134, + -0.006577765569090843, + -0.03432231396436691, + 0.03155700862407684, + 0.015209176577627659, + 0.004595286212861538, + 0.003768405644223094, + 0.019004693254828453, + 0.017866037786006927, + -0.02452174760401249, + -0.015602284111082554, + 0.013074198737740517, + -0.02282732166349888, + 0.0011996543034911156, + 0.013372418470680714, + 0.0018672585720196366, + -0.011318772099912167, + 0.017106935381889343, + 0.035325415432453156, + 0.012443872168660164, + -0.03524408116936684, + -0.025701068341732025, + -0.0338614284992218, + -0.0022722266148775816, + 0.02881881408393383, + -0.007841808721423149, + 0.005581442732363939, + 0.007916362956166267, + -0.001936730113811791, + -0.022393546998500824, + 0.004466509446501732, + 0.028439262881875038, + 0.04633241146802902, + 0.006770930252969265, + 0.0001908348494907841, + 0.017811816185712814, + -0.00561533123254776, + 0.00023340732150245458, + 0.005456055048853159, + -0.033915650099515915, + 0.01854380965232849, + -0.0136231929063797, + 0.013582526706159115, + -0.01655116304755211, + 0.0054831658490002155, + -0.013907857239246368, + -0.002133283531293273, + 0.01729671098291874, + -0.025402849540114403, + -0.009278682060539722, + -0.025280851870775223, + -0.0299303587526083, + 0.004361455328762531, + -0.037385836243629456, + -0.029550807550549507, + -0.0007663046126253903, + -0.00582205131649971, + 0.029740583151578903, + 0.02349153719842434, + 0.010214006528258324, + -0.006008438300341368, + 0.0004973143222741783, + -0.014897402375936508, + -0.021119339391589165, + -0.01638849824666977, + 0.010966331698000431, + 0.022718878462910652, + 0.011447548866271973, + -0.03245166689157486, + -0.019967127591371536, + -0.007001372519880533, + 0.0025179185904562473, + -0.0024738635402172804, + 0.001446193433366716, + -8.503905701218173e-05, + 0.012274429202079773, + 0.0007243675645440817, + -0.018191369250416756, + 0.008099361322820187, + -0.024969076737761497, + 0.045817308127880096, + 0.041886236518621445, + -0.015005845576524734, + -0.023342426866292953, + -0.005981327500194311, + -0.002143450081348419, + 0.0421031229197979, + -0.004381788428872824, + -0.024331972002983093, + -0.008783909492194653, + -0.018964027985930443, + 0.009434569627046585, + -0.009421014226973057, + 0.009881898760795593, + 0.012294762767851353, + -0.009109240025281906, + 0.013880746439099312, + 0.014544961974024773, + -0.008804243057966232, + -0.007150481920689344, + -0.009007574059069157, + 0.025402849540114403, + -0.016862938180565834, + 0.017771150916814804, + -0.025416405871510506, + -0.02452174760401249, + 0.013487638905644417, + -0.0031414676923304796, + -0.0017113713547587395, + 0.017744040116667747, + 0.0005875425995327532, + 0.024047307670116425, + -0.011189996264874935, + 0.01754070818424225, + -0.004602063912898302, + -0.022244438529014587, + -0.018598031252622604, + -0.015290509909391403, + 0.013257197104394436, + 0.015602284111082554, + 0.008824575692415237, + 0.007462256588041782, + -0.0027263329830020666, + 0.0019079248886555433, + -0.016198722645640373, + 0.00032215294777415693, + -0.010227561928331852, + -0.024006642401218414, + -0.040313806384801865, + -0.012681092135608196, + -0.009041463024914265, + -0.002494196640327573, + -0.01957402192056179, + 0.03212633728981018, + 0.010559669695794582, + -0.02320687286555767, + -0.03464764356613159, + 0.011874544434249401, + 0.010702000930905342, + -0.03950048238039017, + -0.01106799766421318, + 0.014178965240716934, + -0.007882474921643734, + -0.0041513461619615555, + -0.0038531271275132895, + -0.1725333333015442, + 0.019560465589165688, + 0.010295338928699493, + -0.012518427334725857, + 0.030608130618929863, + 0.011061219498515129, + 0.005479777231812477, + 0.011108663864433765, + -0.021498890593647957, + -0.0008340817294083536, + 0.012640425935387611, + -0.001130182878114283, + -0.03258721902966499, + -0.007665588054805994, + -0.011447548866271973, + -0.008756798692047596, + -0.020916007459163666, + 0.01013267319649458, + 0.019723130390048027, + 0.02233932539820671, + -0.006892929319292307, + -0.014043411239981651, + -0.0006769236060790718, + -0.002489113248884678, + 0.003468492068350315, + 0.014585628174245358, + -0.020428013056516647, + 0.029740583151578903, + -0.0023162816651165485, + -0.007455478888005018, + -0.018787806853652, + 0.008689021691679955, + 0.01577850431203842, + -0.011901655234396458, + -0.015304065309464931, + 0.007848585955798626, + -0.003161800792440772, + -0.021688666194677353, + -0.007299591787159443, + 0.030065912753343582, + 0.023965975269675255, + 0.03939203917980194, + -0.020794007927179337, + -0.011732213199138641, + -0.007672365754842758, + 0.013033532537519932, + 0.017893148586153984, + -0.011488215066492558, + -0.0017588152550160885, + -0.017188267782330513, + -0.009563346393406391, + -0.017893148586153984, + 0.0038565159775316715, + 0.02786993607878685, + -0.009814121760427952, + 0.010702000930905342, + 0.004276733845472336, + 0.023803310468792915, + -0.008838131092488766, + 0.008478912524878979, + -0.004612230230122805, + -0.00440889922901988, + 0.01792025938630104, + 0.0042936778627336025, + -0.00931257102638483, + -0.02052289992570877, + -0.009522680193185806, + 0.025280851870775223, + -0.00043419693247415125, + 0.0057000527158379555, + 0.0016325804172083735, + -0.020861785858869553, + -0.010539336130023003, + 0.0002226053475169465, + 0.007462256588041782, + 0.007197925820946693, + -0.015602284111082554, + 0.008004473522305489, + 0.010647779330611229, + -0.004381788428872824, + -0.019424911588430405, + 0.0363285169005394, + -0.0004157700459472835, + -0.02221732772886753, + -0.007997695356607437, + -0.013616415672004223, + -0.018842028453946114, + 0.019953573122620583, + 0.009976786561310291, + 0.001703746384009719, + 0.022529100999236107, + -0.034457869827747345, + -0.025375738739967346, + -0.030499687418341637, + -0.006706542335450649, + -0.006554043851792812, + -0.006269379984587431, + 0.013650303706526756, + -0.032424554228782654, + -0.002855109516531229, + 0.010702000930905342, + -0.020672010257840157, + -0.03719606250524521, + 0.014707626774907112, + 0.005147669464349747, + 0.008248470723628998, + -0.0330209955573082, + 0.021078672260046005, + 0.057908739894628525, + -0.022393546998500824, + -0.005727163515985012, + -0.010227561928331852, + 0.01783892698585987, + 0.015792060643434525, + 0.01121032889932394, + 0.0029889692086726427, + -0.011867767199873924, + -0.02254265733063221, + 0.030065912753343582, + 0.015995390713214874, + 0.04611552506685257, + -0.018842028453946114, + -0.006581154651939869, + 0.010525780729949474, + -0.017432264983654022, + -0.012748869135975838, + -0.09076707065105438, + -0.005791551433503628, + 0.019465576857328415, + 0.024169307202100754, + 0.004029347561299801, + 0.014680515974760056, + 0.0004430926637724042, + 0.012098209001123905, + 0.004629174713045359, + 0.03914804384112358, + -0.014558517374098301, + -0.024020196869969368, + -0.025524849072098732, + -0.008417913690209389, + 0.02101089432835579, + -0.01602250151336193, + 0.01065455749630928, + -0.02171577699482441, + -0.01935713365674019, + 0.02563329227268696, + -0.01820492371916771, + -0.0014665266498923302, + 0.004361455328762531, + 0.007591032888740301, + -0.016374941915273666, + 0.0018130369717255235, + -0.03781961277127266, + 0.028629038482904434, + 0.026107732206583023, + -0.011325550265610218, + 0.018476031720638275, + -0.014246742241084576, + 0.004856227897107601, + -0.010546114295721054, + -0.0011928766034543514, + -0.007604588288813829, + -0.021932663396000862, + -0.016673162579536438, + 0.037792500108480453, + -0.02919836714863777, + 0.0029330532997846603, + 0.014829625375568867, + 0.01701204665005207, + -0.01015978492796421, + -0.00854668952524662, + -0.025362184271216393, + 0.0013953606830909848, + 0.020536456257104874, + 0.009055018424987793, + -0.012606536969542503, + -0.029984580352902412, + -0.04034091904759407, + -0.010830777697265148, + 0.009834454394876957, + 0.04557330906391144, + -0.007699476554989815, + 0.0012674314202740788, + 0.012152430601418018, + -0.01838114485144615, + 0.0008811020525172353, + -0.01007167436182499, + 0.010857888497412205, + -0.03418675810098648, + 0.016673162579536438, + 0.010207228362560272, + -0.012687869369983673, + -0.020034905523061752, + -0.01866580732166767, + 0.017581375315785408, + -0.009976786561310291, + -0.02506396546959877, + -0.0026704170741140842, + -0.00765881035476923, + 0.002438280498608947, + -0.034213870763778687, + 0.006147381383925676, + -0.03830760717391968, + -0.030147245153784752, + 0.017432264983654022, + -0.00039903755532577634, + -0.021566666662693024, + -0.029496585950255394, + 0.020414456725120544, + -0.009678566828370094, + 0.023830421268939972, + 0.030933460220694542, + -0.019926462322473526, + -0.007875696755945683, + 0.018435366451740265, + -0.011610213667154312, + -0.008248470723628998, + 0.022474879398941994, + 0.027409052476286888, + 0.008221359923481941, + -0.027517495676875114, + 0.004737617913633585, + -0.01496517937630415, + 0.011027331463992596, + 0.00632699066773057, + 0.003260077675804496, + -0.019099581986665726, + -0.005571275949478149, + -0.0672890841960907, + 0.029632139950990677, + 0.02494196593761444, + 0.003363437717780471, + -0.026785502210259438, + -0.007211481221020222, + 0.006747208535671234, + 0.019018249586224556, + 0.019519798457622528, + 0.004442787729203701, + 0.0035413524601608515, + 0.012274429202079773, + -0.007855364121496677, + -0.004696951713413, + -0.028249487280845642, + -0.026744836941361427, + 0.010017452761530876, + 0.024535303935408592, + 0.01634783111512661, + 0.014951623976230621, + 0.002589084440842271, + 0.008872020058333874, + 0.004486842546612024, + 0.03204500302672386, + -0.03535252436995506, + -0.003954792860895395, + 0.0020282291807234287, + -0.00528322346508503, + -0.007577477488666773, + -0.009007574059069157, + 0.004530897829681635, + -0.016618940979242325, + -0.008248470723628998, + 0.013040310703217983, + -0.021105783060193062, + -0.011054442264139652, + 0.02601284347474575, + 0.028330819681286812, + 0.01032244972884655, + 0.04850127920508385, + -0.009915786795318127, + -0.028141044080257416, + 0.014436517842113972, + -0.019262246787548065, + -0.004161512944847345, + 0.010336005128920078, + 0.02774793654680252, + 0.011467882432043552, + 0.019180914387106895, + 0.00949556939303875, + 0.030065912753343582, + 0.022325770929455757, + 0.015182065777480602, + -0.0198180191218853, + 0.020306013524532318, + 0.006530321668833494, + 0.022163106128573418, + 0.009021129459142685, + 0.007536811288446188, + -0.025036854669451714, + 0.032804105430841446, + -0.004727451596409082, + 0.010044563561677933, + -0.018055815249681473, + 0.013704526238143444, + -0.008987241424620152, + -0.03752139210700989, + -0.00582205131649971, + 0.0026771947741508484, + -0.0163071658462286, + -0.005184946581721306, + -0.009922564961016178, + 0.007719809655100107, + 0.04313333332538605, + -0.007577477488666773, + -0.004337733145803213, + -0.008079027757048607, + -0.0021671722643077374, + -0.01007167436182499, + 0.01927580125629902, + 0.018720028921961784, + 0.001505498425103724, + -0.002251893514767289, + -0.004520731512457132, + 0.02597217820584774, + 0.0033990205265581608, + -0.030770795419812202, + 0.01245064940303564, + 0.01824559085071087, + 0.017039157450199127, + -0.018923360854387283, + 0.021769998595118523, + 0.0005523831932805479, + 0.012118542566895485, + 0.027192164212465286, + 0.012789535336196423, + -0.00799091812223196, + -0.03125879168510437, + 0.04570886492729187, + 0.02316620573401451, + 0.0015046511543914676, + 0.007075927220284939, + 0.007624921854585409, + -0.026826169341802597, + -0.014273853041231632, + 0.01598183624446392, + -0.011549214832484722, + -0.023179762065410614, + 0.010098785161972046, + 0.027734382078051567, + 0.010180117562413216, + -0.006848874036222696, + -0.01463984977453947, + 0.013108087703585625, + -0.02857481688261032, + 0.0072318147867918015, + -0.014870291575789452, + -0.01754070818424225, + -0.03269566223025322, + 0.037304505705833435, + 0.02391175366938114, + 0.00813324935734272, + -0.00590338371694088, + 0.004920616280287504, + 0.01504651177674532, + 0.012979310937225819, + 0.012952200137078762, + -0.00805191695690155, + 0.0017486487049609423, + -0.020577121526002884, + 0.0008217971189878881, + 0.011223884299397469, + -0.028845924884080887, + -0.02720572054386139, + -0.004422454629093409, + 0.0034278258681297302, + 0.02633817307651043, + 0.0017910093301907182, + 0.00269922218285501, + 0.11831167340278625, + 0.019330022856593132, + -0.015710728242993355, + 0.030147245153784752, + -0.00046257858048193157, + 0.005608553532510996, + 0.015290509909391403, + 0.004795228596776724, + 0.023274648934602737, + -0.039283595979213715, + -0.009651456028223038, + -0.005439110565930605, + 0.006760763935744762, + -0.03163834288716316, + -0.012260873802006245, + 0.010519002564251423, + 0.014395851641893387, + 0.00782147515565157, + -0.00831624772399664, + -0.0031414676923304796, + 0.005459443666040897, + -0.00722503662109375, + 0.017567818984389305, + 0.031123235821723938, + -0.02633817307651043, + -0.018096480518579483, + 0.015710728242993355, + 0.004422454629093409, + -0.01449074037373066, + -0.02378975600004196, + 0.004361455328762531, + 0.008675466291606426, + -0.05194435641169548, + -0.03234322369098663, + 0.025280851870775223, + -0.018191369250416756, + -0.004832505714148283, + -0.020631343126296997, + 0.016835827380418777, + 0.00997000839561224, + -0.006269379984587431, + 0.01824559085071087, + -0.017147600650787354, + -0.02345087006688118, + 0.005588220432400703, + -0.0008044292335398495, + -0.028222376480698586, + -0.005205279681831598, + -0.01594116911292076 + ], + "metadata": { + "source": "Thesis_Verladegeraeusche_in_Speditionen.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 41, + "has_images": true, + "image_count": 51, + "coordinates": "CoordinatesMetadata(points=((204.16666666666666, 189.02777777777797), (204.16666666666666, 642.3611111111111), (936.1666666666666, 642.3611111111111), (936.1666666666666, 189.02777777777797)), system=)", + "links": [], + "last_modified": "2025-05-05T22:59:16", + "_known_field_names": "frozenset({'cc_recipient', 'link_texts', 'url', 'filetype', 'category_depth', 'page_number', 'filename', 'orig_elements', 'detection_origin', 'email_message_id', 'page_name', 'coordinates', 'table_as_cells', 'link_start_indexes', 'sent_to', 'bcc_recipient', 'languages', 'last_modified', 'link_urls', 'file_directory', 'subject', 'data_source', 'detection_class_prob', 'image_base64', 'text_as_html', 'attached_to_filename', 'key_value_pairs', 'signature', 'sent_from', 'header_footer_type', 'parent_id', 'links', 'emphasized_text_contents', 'emphasized_text_tags', 'image_mime_type', 'is_continuation', 'image_path'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "Thesis_Verladegeraeusche_in_Speditionen.pdf", + "detection_class_prob": 0.2568194270133972, + "parent_id": "d45475a34bc527cde6987546fa6dd2f5", + "text_as_html": "
Flurf\u00f6rderger\u00e4t |Anzahl Einzelereignisse ElMax-PegelSchallleistungspegel
LAFmaxLWA,5sLWAmaxLWA,1hKlLWAT,1h
[dB(A)][dB(A)][dB(A)][dB(A)][dB(A)][dB(A)]
Gabelstapler29769,3100,7108,872,15,777,8
STABW [dB]6,54,96,54,92,9-
Gabelhubwagen9968,6100,7108,172,16,279,5
STABW [dB]6,45,16,4512,7-
", + "id": "5ba44de7-0ff3-4c0c-b018-67e92171e1c2", + "processing_timestamp": "2025-05-06T14:18:19.298665", + "chunk_number": 0, + "total_chunks": 49, + "chunking_strategy": "hybrid", + "word_count": 737 + } +} \ No newline at end of file diff --git a/data/processed/85fd305f-83de-70b0-47e8-2dc000000001.json b/data/processed/85fd305f-83de-70b0-47e8-2dc000000001.json new file mode 100644 index 0000000000000000000000000000000000000000..885026c61735ab96aed7a4a7c34c01276cc6839e --- /dev/null +++ b/data/processed/85fd305f-83de-70b0-47e8-2dc000000001.json @@ -0,0 +1,1570 @@ +{ + "id": "85fd305f-83de-70b0-47e8-2dc000000001", + "content": "Hanpsi]\n\nKirchheim unter Teck, 30.06.2023\n\n## III\n\nDanksagung\n\n## Danksagung\n\nIch m\u00f6chte mich von ganzem Herzen bei allen Personen bedanken, die mich w\u00e4hrend meiner Bachelorarbeit unterst\u00fctzt haben, ohne die w\u00e4re diese Thesis nicht m\u00f6glich ge- wesen. Ein besonderer Dank geb\u00fchrt meinem externen Betreuer Thomas Heine von dem Inge- nieurb\u00fcro Heine+Jud in Stuttgart der mich tatkr\u00e4ftig unterst\u00fctzt hat und mit wertvollen Hinweisen bzw. Anregungen erfolgreich unterst\u00fctzt hat. Ich bedanke mich herzlichst f\u00fcr die Zeit die man f\u00fcr mich genommen hat, um meine Thesis zu lesen und zu kommentie- ren. Ebenfalls dank ich meinem Betreuer Prof. Dr. Karl Georg Degen von der Hochschule der Technik in Stuttgart, der mich ebenfalls unterst\u00fctzt hat und mir Hinweise und Anre- gungen gab. Die konstruktive Kritik und Hilfestelllungen haben mir geholfen, meine Ar- beit und mein Repertoire zu erweitern und zu verbessern. Ein weiterer gro\u00dfer Dank geht an alle meine Arbeitskollegen von Heine+Jud und meinem zweiten Chef Axel Jud, die mich w\u00e4hrend dieser herausfordernden Zeit motiviert und ermutigt haben. Ich bedanke mich zudem besonders an meine Messgehilfen Tobias Gassner, Christian Reutter, Sebastian Gerner und Lena Robert, die mich bei meinen Mes- sungen tatkr\u00e4ftig unterst\u00fctzt haben. Ebenfalls geht auch ein Dank raus an meine Familie und meinem Freund, die mir mora- lischen Halt gegeben haben und mich immer motiviert haben, meine beste Leistung vor- zulegen und nie aufzugeben. Hervorgehoben bedanke ich mich bei meinen Eltern die mir mein Studium durch ihre Unterst\u00fctzung erm\u00f6glicht haben und fortw\u00e4hrend ein of- fenes Ohr f\u00fcr mich hatten. Schlie\u00dflich m\u00f6chte ich mich auch bei meinen Kommilitonen und Mitstudierenden be- danken, die mich w\u00e4hrend meines Studiums inspiriert und unterst\u00fctzt haben. Ich bin dankbar f\u00fcr die wunderbaren Erinnerungen und Freundschaften, die ich w\u00e4hrend dieser Zeit gekn\u00fcpft habe. Noch einmal vielen herzlichen Dank an alle, die mir geholfen haben, mein Bachelorstu- dium abzuschlie\u00dfen. Eure Unterst\u00fctzung und Ermutigung haben mir sehr geholfen, diese Arbeit erfolgreich und ohne Einb\u00fc\u00dfe abzuschlie\u00dfen. ## IV\n\nInhaltsverzeichnis\n\n## Inhaltsverzeichnis\n\n\n| Kurzfassung | .................................................................................................................. | I | Eidesstattliche | Versicherung | ....................................................................................... | III | Danksagung | ................................................................................................................ | IV | Inhaltsverzeichnis | ........................................................................................................ | 1 | 1 | Einleitung | ......................................................................................................... | 3 | 2 | Grundlagen | ...................................................................................................... | 6 | 2.1 | Logistik | ....................................................................................................................... | 6 | 2.2 | Ermittlung | der | akustischen | Kenngr\u00f6\u00dfen | ................................................................... | 9 | 2.3 | Statistik | .................................................................................................................... | 21 | 3 | Aktuelle | Prognosegrundlage | ............................................................................24 | 3.1 | Schallimmissionsprognosen | f\u00fcr | Gewerbe | \u2013 | Technischer | Bericht | des | HLUG | ........... | 24 | 3.2 | Be- | und | Entladevorg\u00e4ngen | mit | Palettenhubwagen | und | beladener | Palette | bei | Lkw | in | Logistikzentren | ..................................................................................................... | 27 | 3.3 | Ger\u00e4uschemissionen | durch | Ladevorg\u00e4nge | in | Ladezonen | von | Discountern | ............ | 28 | 3.4 | Fazit | .......................................................................................................................... | 30 | 4 | Beschreibung | des | Betriebs | und | Untersuchungsobjekte | .....................................31 | 4.1 | Beschreibung | des | Betriebs | ...................................................................................... | 31 | 4.2 | Beschreibung | der | Untersuchungsobjekte | ............................................................... | 33 | 5 | Beschreibung | der | Untersuchungsmethodik | ......................................................38 | 5.1 | Prozessablauf | der | untersuchten | Verladet\u00e4tigkeit | ................................................... | 38 | 5.2 | Messequipment | und | Messaufbau | ........................................................................... | 39 | 5.3 | Vorgehensweise | bei | der | Messwerterfassung | .......................................................... | 41 | 5.4 | Messpositionen | ........................................................................................................ | 44 | 6 | Messauswertung | und | Statistik | .........................................................................46 | 6.1 | Verladeger\u00e4usche | .................................................................................................... | 46 | 6.2 | Statistik | .................................................................................................................... | 48 | 6.3 | Modellierung | der | Messsituation | ............................................................................. | 50 | 6.4 | Richtcharakteristik | ................................................................................................... | 51 |\n|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|\n\n6.5\nValidierung ............................................................................................................... 55\n1\nInhaltsverzeichnis\n\n| 7 | Ergebnisse | und | Interpretation | ..........................................................................56 | 7.1 | Verladeger\u00e4usche | .................................................................................................... | 56 | 7.2 | Statistik | .................................................................................................................... | 60 | 7.3 | Richtcharakteristik | ................................................................................................... | 66 | 7.4 | Validierung | ............................................................................................................... | 68 | 7.5 | M\u00f6gliche | Minderungsma\u00dfnahmen | ......................................................................... | 70 | 7.6 | Fehlerdiskussion | ...................................................................................................... | 72 | 8 | Abschlie\u00dfende | Bewertung | und | Ausblick | ...........................................................75 | 9 | Literatur | ............................................................................................................ | I | Formelverzeichnis | ..................................................................................................... | VIII | Abbildungsverzeichnis | ................................................................................................ | IX | Tabellenverzeichnis | ..................................................................................................... | X | Diagrammverzeichnis | .................................................................................................. | XI | Anh\u00e4nge | .................................................................................................................... | XII | Anhang | 1: | Emissionsdatenbl\u00e4tter | ........................................................................................ | XII | Anhang | 2: | Lagepl\u00e4ne | ........................................................................................................... | XIX | Anhang | 3: | Messprotokolle | ................................................................................................. | XXII | Anhang | 4: | Messergebnisse | der | Beladevorg\u00e4nge | ............................................................. | XXIV | Anhang | 5: | Rechenmodell | SoundPlan | 9.0 | \u2013 | Gabelhubwagen | 27.04.23 | ............................. | XLIII |\n|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|\n\nAnhang 6: Rechenmodell SoundPlan 9.0 \u2013 Gabelstapler 03.05.2023 ............................... XLVI\n2\n1 Einleitung\n\n## 1 Einleitung\n\nLaute Kl\u00e4nge und T\u00f6ne, wie etwa lautes Geschrei oder ein donnerndes Ger\u00e4usch, wer-\nden von uns als st\u00f6rend oder bedrohlich wahrgenommen und werden auch als L\u00e4rm bezeichnet. Diese k\u00f6nnen sich negativ auf unser k\u00f6rperliches, seelischen und unser so- ziales Wohlbefinden auswirken. [1] Durch die ermittelte L\u00e4rmbelastung k\u00f6nnen Schluss- folgerungen \u00fcber die Bel\u00e4stigung gezogen und somit Menschen vor sch\u00e4dlichem und st\u00f6rendem L\u00e4rm gesch\u00fctzt werden. L\u00e4rm kann an verschieden Orten auftreten und da- her unterscheidet man in der Gesetzgebung nach Stra\u00dfen-, Schienen-, Flug-, Gewerbe-, Bau-, Freizeit- und Sportl\u00e4rm. Hinter jeder dieser Verursacher steht eine spezifische Ge- setzgebung mit beigeordneten Regelungen und Zust\u00e4ndigkeiten. Um einen pr\u00e4ventiven Schallschutz zu gew\u00e4hrleisten und ein angenehmes akustisches Stadtklima zu erreichen, ist der Schallimmissionsschutz von gro\u00dfer Bedeutung. Ziel ist es, alle st\u00f6renden Ger\u00e4u- sche zu reduzieren, besonders in Bereichen mit zunehmender Mobilit\u00e4t und Warenver- kehr. [2] Der stetig wachsende Wohnraummangel zwingt die Wohnbebauung n\u00e4her an Stra\u00dfen- und Schienenwege, sowie n\u00e4her an das Gewerbe. [3] Dadurch w\u00e4chst das Po- tential von dem daraus entstehenden L\u00e4rm bel\u00e4stigt zu werden. Gem\u00e4\u00df einer Umfrage aus dem Jahr 2020 des Bundesministeriums f\u00fcr Umwelt, Naturschutz, nukleare Sicher- heit und Verbraucherschutz, empfinden 51 % der Bev\u00f6lkerung in Deutschland eine Be-\nl\u00e4stigung durch L\u00e4rm aus Industrie-/Gewerbel\u00e4rm (siehe Abbildung 1). [4]\n\n[IMAGE: Bel\u00e4stigung durch einzelne L\u00e4rmquellen 2020 Frage: Wenn Sie einmal an die letzten 12 Monate hier bei Ihnen denken, wie stark haben Sie sich pers\u00f6nlich durch den L\u00e4rm von.", + "embedding": [ + 0.004290768411010504, + 0.020817317068576813, + -0.004165442194789648, + -0.04952358081936836, + 0.000508312601596117, + 0.03770335391163826, + -0.015738314017653465, + 0.005323059391230345, + -0.011180403642356396, + -0.019484903663396835, + 0.014287170022726059, + -0.010481216013431549, + -0.024036217480897903, + -0.0068467603996396065, + 0.011285941116511822, + -0.0028280813712626696, + 0.053771473467350006, + 0.0015542079927399755, + 0.020210474729537964, + 0.0017727040685713291, + -0.028310496360063553, + -0.0063256677240133286, + 0.015500854700803757, + 0.01693880558013916, + -0.008522171527147293, + 0.00041143226553685963, + 0.03551344573497772, + -0.027255119755864143, + -0.011345306411385536, + 0.0017990885535255075, + 0.009155398234724998, + -0.014062902890145779, + -0.00965010654181242, + 0.004472161177545786, + -0.023033609613776207, + -0.02528947964310646, + -0.01588342897593975, + 0.0012507870560511947, + 0.04218870773911476, + 0.0020695289131253958, + -9.481905726715922e-05, + 0.0010471321875229478, + 0.006701645907014608, + -0.025131171569228172, + -0.008858573623001575, + 0.016397925093770027, + 0.009907354600727558, + -0.012585374526679516, + -0.019695978611707687, + 0.013027314096689224, + 0.032347314059734344, + 0.011312325485050678, + -0.010982519946992397, + -0.001270575332455337, + -0.006355350371450186, + 0.01664857752621174, + -0.008917937986552715, + 0.03648966923356056, + -0.01645069383084774, + -0.025988666340708733, + -0.010441639460623264, + -0.009432435035705566, + -0.03799358382821083, + 0.019814709201455116, + -0.012347914278507233, + -0.011965340003371239, + -0.028838185593485832, + 0.002450454281643033, + -0.01056696567684412, + 0.00854855589568615, + 0.01480166707187891, + 0.015619584359228611, + 0.01670134626328945, + 0.0045381225645542145, + 0.026212934404611588, + -0.006629088893532753, + 0.01480166707187891, + -0.018455911427736282, + 0.00568914320319891, + -0.005807873327285051, + 0.02003897726535797, + -0.028442418202757835, + -0.014735706150531769, + 0.030104637145996094, + 0.041951246559619904, + 0.009056456387043, + -0.006866548676043749, + 0.006912721320986748, + -0.03295415639877319, + -0.023152340203523636, + -0.0023482146207243204, + 0.03145024552941322, + -0.002387791173532605, + 0.014089287258684635, + 0.02284891903400421, + 0.006734626367688179, + -0.01824483461678028, + 0.006685155909508467, + 0.008007675409317017, + -0.024867327883839607, + -0.014590591192245483, + -0.020012592896819115, + -0.0014758792240172625, + 0.002267412142828107, + -0.03912811353802681, + -0.00547806778922677, + 0.0012474890099838376, + 0.011655323207378387, + 0.005943093448877335, + -0.009643509984016418, + -0.032795850187540054, + 0.04577698931097984, + -0.020421551540493965, + -0.031291939318180084, + 0.025474170222878456, + -0.034748297184705734, + 0.026661468669772148, + -0.00011522576824063435, + 0.010078852996230125, + -0.01678049936890602, + 0.029919946566224098, + 0.028125805780291557, + 0.01427397783845663, + -0.010316313244402409, + 0.038178276270627975, + 0.01947171241044998, + -0.0032353911083191633, + -0.006685155909508467, + -0.01229514554142952, + -0.009960123337805271, + -0.019392557442188263, + 0.0005182067397981882, + 0.025685245171189308, + 0.008357268758118153, + -0.00673792464658618, + 0.015171049162745476, + -0.021595658734440804, + 0.003149641677737236, + -0.0173081886023283, + -0.03854765743017197, + 0.0004984184051863849, + 0.010072257369756699, + -0.025197133421897888, + -0.032347314059734344, + -0.0019969716668128967, + 0.02650316245853901, + 0.020870085805654526, + 0.01144424732774496, + -0.0003601062926463783, + -0.002691212110221386, + -0.022096961736679077, + -0.015527239069342613, + 0.012941564433276653, + -0.001684481161646545, + 0.0012277006171643734, + -0.010131622664630413, + -0.018112912774086, + -0.0013027313398197293, + -0.005121877882629633, + -0.01461697556078434, + 0.026437202468514442, + -0.0021387881133705378, + 0.026028243824839592, + 0.008126405067741871, + 0.019841093569993973, + 0.012387490831315517, + 0.003400293877348304, + 0.0018172278068959713, + -0.006559829693287611, + -0.016767306253314018, + 0.004673342686146498, + 0.025500554591417313, + -0.006421311292797327, + 0.0014940184773877263, + -0.033006925135850906, + 0.011905975639820099, + 0.027149582281708717, + 0.01608131267130375, + -0.017110304906964302, + -0.014498245902359486, + -0.01404971070587635, + 0.01238089520484209, + 0.012150031514465809, + 0.016740921884775162, + -0.021450543776154518, + 0.0191419068723917, + 0.02170119620859623, + 0.016872845590114594, + -0.003403591923415661, + -0.005725421942770481, + 0.02960333414375782, + 0.021067969501018524, + 0.0015286480775102973, + -0.02650316245853901, + -0.640825092792511, + 0.0022443258203566074, + 0.005092195700854063, + 0.017281804233789444, + 0.020593049004673958, + 0.01897040754556656, + 0.003472850890830159, + 0.007855964824557304, + -0.01543489284813404, + 0.048916738480329514, + -0.014907204546034336, + -0.006991874892264605, + -0.0035124276764690876, + -0.007908733561635017, + -0.020329205319285393, + -0.012499624863266945, + -0.019603634253144264, + -0.013799058273434639, + 0.00899709202349186, + -0.005616586189717054, + -0.012347914278507233, + 0.016674961894750595, + 0.00873324740678072, + -0.009880970232188702, + -0.001437127124518156, + 0.02817857451736927, + 0.019352981820702553, + -0.029497796669602394, + 0.01038227416574955, + 0.015395316295325756, + -0.034062303602695465, + 0.0012062633177265525, + -0.03400953486561775, + 0.021806733682751656, + 0.056093305349349976, + 0.0144586693495512, + -0.017730338498950005, + 0.02324468456208706, + 0.002631847281008959, + 0.01398374978452921, + -0.015764698386192322, + -0.018350373953580856, + 0.0014470212627202272, + -0.009016879834234715, + 0.012499624863266945, + 0.014762090519070625, + 0.044932689517736435, + 0.002079423051327467, + 0.0019277125829830766, + -0.014076095074415207, + -0.0022608160506933928, + -0.009326896630227566, + 0.009102629497647285, + 0.00163171230815351, + 0.02023686096072197, + 0.0023234791588038206, + 0.014247593469917774, + -0.021120738238096237, + 0.0021255959291011095, + 0.008317692205309868, + 0.0075327553786337376, + 0.012024705298244953, + 0.013192216865718365, + -0.014194824732840061, + -0.03844211995601654, + 0.0026747218798846006, + -0.029999099671840668, + -0.032795850187540054, + 0.04174017161130905, + -0.009749048389494419, + -0.008541960269212723, + 0.007803196087479591, + -0.014142055995762348, + -0.015817467123270035, + 0.043956466019153595, + 0.015566815622150898, + 0.0013538511702790856, + -0.007545948028564453, + 0.0007519563660025597, + 0.019841093569993973, + -0.009392858482897282, + -0.019643209874629974, + -0.008053848519921303, + -7.5649113568943e-05, + 0.03896980732679367, + -0.04039456695318222, + -0.01918148249387741, + -0.013508829288184643, + -0.024854136630892754, + 0.0050658113323152065, + 0.012169819325208664, + 0.022255269810557365, + -0.0010314664104953408, + 0.00798129104077816, + 0.006718136370182037, + 0.030605942010879517, + 0.009096032939851284, + 0.02369322068989277, + -0.015685545280575752, + -0.03195154666900635, + -0.01633196324110031, + -0.014828051440417767, + 0.014814859256148338, + -0.017176266759634018, + 0.01900998316705227, + -0.007611908949911594, + -0.016714537516236305, + 0.01873294822871685, + 0.03580367565155029, + -0.01046142727136612, + 0.004119269549846649, + -0.006032140925526619, + -0.024286869913339615, + -0.0009531376417726278, + 0.01726861111819744, + -0.026978082954883575, + 0.033613767474889755, + 0.00412256782874465, + 0.011140827089548111, + -0.012044494040310383, + 0.0018370161997154355, + 0.019352981820702553, + 0.015593199990689754, + -0.012697508558630943, + 0.00045224567293189466, + 0.02181992679834366, + 0.014603783376514912, + -0.0007016609888523817, + -0.01869337074458599, + 0.02292807213962078, + 0.03651605546474457, + -0.0001385182695230469, + 0.01848229579627514, + 0.001345606055110693, + 0.012565585784614086, + -0.003225496970117092, + 0.027307888492941856, + -0.011661919765174389, + 0.00789554137736559, + -0.03358738496899605, + -0.009188379161059856, + 0.00210250960662961, + 0.017849069088697433, + -0.013159235939383507, + -0.004181932657957077, + -0.021476928144693375, + -0.023271068930625916, + 0.0037762720603495836, + 0.015105088241398335, + 0.01356159895658493, + 0.0023630557116121054, + -0.011206788010895252, + -0.0009333493071608245, + 0.019498096778988838, + 0.02597547508776188, + -0.01188618689775467, + -0.022281654179096222, + -0.011173807084560394, + -0.0030853296630084515, + -0.0069852788001298904, + 0.0191419068723917, + 0.031001709401607513, + -0.02419452555477619, + 0.01219620369374752, + -0.01689922995865345, + -0.017862260341644287, + 0.01237429864704609, + 0.016767306253314018, + -0.011351902037858963, + -0.03648966923356056, + 0.01164872758090496, + -0.008034059777855873, + 0.002155278343707323, + 0.01103528868407011, + 0.005006446037441492, + -0.005738614127039909, + 0.0011271099792793393, + -0.008845381438732147, + -0.03440530225634575, + 0.007077624090015888, + 0.010078852996230125, + -0.010632926598191261, + -0.004976763855665922, + 0.012347914278507233, + 0.02329745516180992, + 0.02068539522588253, + 0.025381824001669884, + 0.011325517669320107, + 0.009379666298627853, + 0.027281504124403, + -0.00040421774610877037, + 0.004010433796793222, + -0.020909663289785385, + 0.002440560143440962, + -0.024247294291853905, + 0.0067610107362270355, + -0.013033909723162651, + -0.0004341063613537699, + -0.0005351092549972236, + 0.02316553145647049, + 0.028574340045452118, + 0.012097262777388096, + 0.028811801224946976, + -0.013878211379051208, + 0.01398374978452921, + -0.03590921312570572, + 0.013522021472454071, + -0.01701795868575573, + 0.04699067398905754, + 0.008832189254462719, + 0.009504991583526134, + -0.00806044414639473, + -0.050262343138456345, + -0.001860102522186935, + 0.0077570234425365925, + 0.047782208770513535, + -0.006919317413121462, + 0.0005309866974130273, + -0.008047251962125301, + -0.0011337060714140534, + 0.009821604937314987, + -0.006635684985667467, + 0.025223517790436745, + 0.003868617583066225, + -0.0017595118843019009, + 0.0013901297934353352, + 0.02039516717195511, + 0.02226846106350422, + -0.004221509210765362, + -0.006483974400907755, + -0.011015500873327255, + 0.0136407520622015, + 0.007974694482982159, + 0.012420471757650375, + 0.0019524480449035764, + 0.015936197713017464, + 0.012710700742900372, + -0.029867177829146385, + 0.056409917771816254, + 0.0077570234425365925, + 0.005135070066899061, + 0.01930021308362484, + -4.377651566755958e-05, + -0.0019029772374778986, + 0.02474859729409218, + -0.015421700663864613, + 0.010758252814412117, + 0.028363265097141266, + -0.003594879060983658, + 0.00706443190574646, + -0.015184241347014904, + 0.02328426204621792, + -0.01945851929485798, + -0.01685965247452259, + 0.024986058473587036, + -0.02862711064517498, + 0.013508829288184643, + 0.005389020312577486, + 0.026938505470752716, + 0.019445326179265976, + 0.014762090519070625, + 0.0205666646361351, + 0.012506221421062946, + -0.0191419068723917, + 0.0023069889284670353, + 0.01889125443994999, + -0.04287470504641533, + -0.0012837675167247653, + -0.024774981662631035, + -0.014089287258684635, + -0.0022228884045034647, + -0.007110604550689459, + -0.011569573543965816, + 0.003274967661127448, + 0.037360355257987976, + -0.013462657108902931, + 0.01062633004039526, + 0.03195154666900635, + 0.012420471757650375, + 0.010177794843912125, + -0.00380265642888844, + -0.029365872964262962, + -0.01528977882117033, + 0.013601175509393215, + -0.018680177628993988, + 0.007163373753428459, + -0.006018948741257191, + 0.019880671054124832, + -0.02870626375079155, + -0.01637154072523117, + -0.019761940464377403, + -0.004544718656688929, + -0.0035520042292773724, + -0.004772284533828497, + 0.005319761112332344, + 0.0028528168331831694, + 0.02569843828678131, + -0.002920426893979311, + -0.005336251575499773, + 0.011437651701271534, + 0.005992564372718334, + -0.014287170022726059, + -0.02109435386955738, + -0.0099799120798707, + 0.011477228254079819, + -0.009920546784996986, + -0.004455671180039644, + -0.013284562155604362, + 0.0008302851347252727, + -0.0017891944153234363, + 0.006520253140479326, + 0.006236620247364044, + -0.004059904720634222, + 0.015857044607400894, + 0.006124486681073904, + 0.008865169249475002, + -0.0054318951442837715, + 0.003654243890196085, + 0.04453692212700844, + 0.0071435850113630295, + -0.001223578117787838, + -0.037360355257987976, + -0.0016605702694505453, + 0.02552693895995617, + 0.051898181438446045, + 0.02370641380548477, + 0.0062728989869356155, + 0.014669744297862053, + 0.009623722173273563, + 0.0035618983674794436, + -0.021635234355926514, + -0.05147602781653404, + 0.007176565937697887, + 0.014841243624687195, + 0.004142356105148792, + 0.004092885181307793, + 0.023033609613776207, + 0.010573561303317547, + 0.020817317068576813, + -0.026661468669772148, + 0.013192216865718365, + 0.02304680272936821, + 0.023323839530348778, + -0.004877822007983923, + 0.004396306350827217, + 0.008766227401793003, + -0.000884703011251986, + 0.030025484040379524, + 0.005329655483365059, + -0.015302971005439758, + 0.02023686096072197, + -0.00021210611157584935, + 0.010540581308305264, + -0.03717566654086113, + -0.008317692205309868, + 0.017822684720158577, + 0.013667136430740356, + 0.010758252814412117, + -0.03437891602516174, + 0.013060294091701508, + 0.008851977065205574, + -0.013878211379051208, + 0.01941894181072712, + -0.011872994713485241, + 0.008561748079955578, + 0.027624500915408134, + 0.0011477228254079819, + -0.015580007806420326, + -0.00606841966509819, + -0.01904956065118313, + -0.016226425766944885, + 0.019405750557780266, + 0.003931280691176653, + -0.0012565585784614086, + 0.005032830405980349, + -0.01861421763896942, + -0.016068119555711746, + -0.02634485624730587, + -0.0007832878618501127, + -0.033244386315345764, + -0.014696129597723484, + -0.027149582281708717, + -0.0012417173711583018, + 0.006355350371450186, + -0.0001421255146851763, + -0.026964889839291573, + -0.001596258138306439, + -0.01775672286748886, + -0.021595658734440804, + -0.018455911427736282, + -0.030394867062568665, + -0.0013884807704016566, + -0.038705963641405106, + 0.005916709080338478, + -0.0014701075851917267, + -0.02324468456208706, + -0.03387761116027832, + 0.0029319701716303825, + 0.02614697255194187, + -0.020962432026863098, + 0.003967558965086937, + -0.004983359947800636, + 0.0005058390670455992, + 0.0073744491674005985, + -0.030632326379418373, + -0.017743531614542007, + -0.005540730897337198, + -0.028152190148830414, + -0.011846610344946384, + 0.010824213735759258, + -0.024484753608703613, + 0.01580427587032318, + 0.008495787158608437, + -0.005253800190985203, + 0.014445477165281773, + -0.004627170041203499, + -0.021556081250309944, + -0.007743831258267164, + 0.005913410801440477, + -0.010474619455635548, + 0.02687254548072815, + 0.012446856126189232, + 0.004808562807738781, + -0.013693520799279213, + 0.01056696567684412, + -0.022176116704940796, + 0.01584385149180889, + -0.0029286721255630255, + 0.006645578891038895, + -0.0009910652879625559, + -0.013587983325123787, + 0.012532605789601803, + -0.0005631427629850805, + 0.018469102680683136, + 0.027175966650247574, + -0.0027934517711400986, + -0.0034497645683586597, + 0.016239618882536888, + -0.00611789058893919, + 0.019973015412688255, + 0.004841543268412352, + 0.008766227401793003, + 0.0153689319267869, + -0.017703954130411148, + -0.011516804806888103, + -0.03482745215296745, + 0.023957064375281334, + 0.018046952784061432, + -0.007875753566622734, + 0.02960333414375782, + -0.009181782603263855, + 0.012209395878016949, + -0.03546067699790001, + -0.01488082017749548, + 0.006681857630610466, + 0.012018108740448952, + 0.010969327762722969, + -0.031239168718457222, + -0.036542437970638275, + -0.005748508498072624, + -0.01580427587032318, + 0.002638443373143673, + 0.0015797679079696536, + -0.012657932005822659, + -0.011180403642356396, + 0.00693250959739089, + -0.01641111820936203, + 0.003845531027764082, + 0.010118430480360985, + -0.03440530225634575, + -0.012717296369373798, + 0.015263394452631474, + -0.013343926519155502, + 0.009326896630227566, + -0.001922765513882041, + -0.014076095074415207, + -0.033323537558317184, + 0.012526009231805801, + -0.012506221421062946, + -0.03875873237848282, + -0.0007911207503639162, + 0.001628414262086153, + -0.006210235878825188, + 0.016806883737444878, + 0.014867627993226051, + 0.0010207477025687695, + 0.019761940464377403, + 0.008924534544348717, + 0.004650256130844355, + 0.002485083881765604, + -0.015065510757267475, + -0.008838784880936146, + -0.029207566753029823, + 0.02435283176600933, + 0.004933889023959637, + 0.023323839530348778, + 0.017558841034770012, + -0.003298054216429591, + 0.006223428063094616, + 0.01816568151116371, + -0.016463886946439743, + -0.007882349193096161, + -0.006912721320986748, + -0.025421401485800743, + -0.003462956752628088, + 0.0003902010212186724, + 0.012281953357160091, + 0.018627408891916275, + -0.01386501919478178, + -0.016622193157672882, + 0.020975623279809952, + -0.02125266008079052, + -0.006424609571695328, + 0.004287470132112503, + 0.021595658734440804, + -0.05097472295165062, + 0.027598116546869278, + 0.009208166971802711, + 0.0021157017908990383, + -0.012242376804351807, + 0.0050954935140907764, + -0.01689922995865345, + -0.019432134926319122, + 0.028943723067641258, + 0.005250502377748489, + 0.011002308689057827, + -0.014590591192245483, + -0.015408508479595184, + 0.002569184172898531, + -0.0004922345979139209, + 0.012189608067274094, + -0.0003157886676490307, + -0.005382424220442772, + -0.010969327762722969, + -0.02162204310297966, + -0.009049860760569572, + -0.0059595839120447636, + 0.0013752885861322284, + 0.01431355532258749, + -0.013733097352087498, + -0.011411267332732677, + 0.02138458378612995, + -0.004653554409742355, + 0.0008368812268599868, + -0.010237160138785839, + -0.009089437313377857, + 0.015342547558248043, + -3.313513661851175e-05, + 0.0346163772046566, + 0.015039126388728619, + -0.01697838306427002, + -0.010289928875863552, + -0.04873204603791237, + 0.014933588914573193, + -0.012519413605332375, + 0.019432134926319122, + 0.012077474035322666, + -0.03424699231982231, + -0.00981500931084156, + 0.002948460401967168, + 0.02854795567691326, + -0.011523401364684105, + -0.010078852996230125, + 0.03276946395635605, + 0.02720235101878643, + -0.0069852788001298904, + -0.014234401285648346, + 0.009702875278890133, + -0.023851526901125908, + 0.0046073817647993565, + -0.0013150990707799792, + 0.0025922704953700304, + -0.0062036397866904736, + -0.002409228589385748, + -0.001289539155550301, + 0.04232063144445419, + 0.023521721363067627, + 0.030474020168185234, + 0.02439240738749504, + -0.040579259395599365, + -0.0023828439880162477, + -0.029788024723529816, + -0.013944173231720924, + 0.019432134926319122, + -0.014221209101378918, + 0.0354342944920063, + -0.00010687756730476394, + -0.010652714408934116, + -0.0021189998369663954, + -0.008172578178346157, + -0.01221599243581295, + 0.008687074296176434, + -0.012895391322672367, + 0.01746649481356144, + -0.019062751904129982, + -0.0014544418081641197, + -0.012519413605332375, + -0.002186609897762537, + 0.010019488632678986, + -0.0034926394000649452, + 0.010501004755496979, + -0.012057686224579811, + 0.01664857752621174, + -0.0012252271408215165, + -0.0005330480053089559, + -0.0025576408952474594, + 0.0002638443256728351, + -0.009109225124120712, + -0.008825592696666718, + -0.029286719858646393, + -0.00226411409676075, + -0.0024389110039919615, + 0.008759631775319576, + -0.036014750599861145, + 0.0008010148885659873, + -0.007348064798861742, + 0.004195124842226505, + 0.0035454081371426582, + 0.00011543189611984417, + -0.017281804233789444, + -0.004445776809006929, + 0.019999399781227112, + -0.03065871074795723, + 0.004666746594011784, + 0.014247593469917774, + 0.0006266302661970258, + -0.006233322434127331, + 0.029867177829146385, + -0.0036146673373878, + -0.01689922995865345, + 0.022334422916173935, + -0.008753035217523575, + -0.02589632011950016, + -0.008159385994076729, + 0.00040854644612409174, + 0.020012592896819115, + -0.020131321623921394, + 0.00020427322306204587, + 0.006635684985667467, + -0.0006670314469374716, + 0.008126405067741871, + -0.006164063233882189, + -0.004297364503145218, + 0.0156723540276289, + 0.008799208328127861, + 0.00016098626656457782, + -0.0018683476373553276, + -0.009702875278890133, + 0.022703804075717926, + 0.006134380586445332, + 0.005520942620933056, + -0.01852187141776085, + -0.03490660339593887, + -0.023112762719392776, + 0.006780799478292465, + 0.0049965521320700645, + -0.02218930795788765, + -0.007394237443804741, + -0.007677869871258736, + 0.0035618983674794436, + -0.019603634253144264, + 0.017083920538425446, + 0.007163373753428459, + 0.00955116469413042, + 0.011793841607868671, + 0.021028393879532814, + -0.003868617583066225, + 0.018587833270430565, + 0.0033574190456420183, + 0.011008904315531254, + 0.015619584359228611, + 0.013706712983548641, + -0.032347314059734344, + 0.002569184172898531, + -0.0027241928037256002, + 0.03733397275209427, + 0.011061673052608967, + -0.011470632627606392, + -0.008429826237261295, + 0.010151410475373268, + -0.030605942010879517, + -0.027782807126641273, + -0.007315083872526884, + -0.010190987028181553, + 0.0023416185285896063, + 0.015606392174959183, + 0.0003061006427742541, + 0.023798758164048195, + -0.0036971187219023705, + 0.011523401364684105, + -0.021067969501018524, + -0.03831019625067711, + 0.01453782245516777, + -0.009194974787533283, + 0.007638293318450451, + -0.012901987880468369, + -0.03356099873781204, + -0.008034059777855873, + 0.023957064375281334, + 0.007908733561635017, + -0.014669744297862053, + 0.03580367565155029, + -0.008851977065205574, + -0.009762240573763847, + 0.016912421211600304, + -0.0012277006171643734, + -0.01726861111819744, + 0.020830510184168816, + 0.0164902713149786, + -0.03131832182407379, + -0.012710700742900372, + 0.010316313244402409, + 0.002572482218965888, + -0.027598116546869278, + -0.013614367693662643, + 0.021727580577135086, + 0.0016201690305024385, + 0.011404670774936676, + 0.013277965597808361, + -0.012222588993608952, + 0.002270710188895464, + -0.009775432758033276, + 0.019801516085863113, + 0.002420771634206176, + -0.017321379855275154, + 0.020184090360999107, + 0.011193595826625824, + -0.017176266759634018, + -0.012875603511929512, + 0.008165981620550156, + -0.030262945219874382, + 0.012281953357160091, + -0.004429286811500788, + -0.02283572591841221, + 0.015645969659090042, + -0.015302971005439758, + 0.003489341353997588, + -0.0075657363049685955, + 0.003365664277225733, + -0.0403154119849205, + -0.030685095116496086, + -0.024722212925553322, + 0.027004467323422432, + 0.03065871074795723, + -0.01775672286748886, + -0.003736695274710655, + -0.011833418160676956, + -0.016226425766944885, + 0.003459658706560731, + -0.025553323328495026, + -0.019801516085863113, + -0.03836296498775482, + -0.029629718512296677, + 0.026687853038311005, + -0.023877911269664764, + -0.007651485502719879, + -0.004023625981062651, + -0.024722212925553322, + -0.030553173273801804, + -0.008264923468232155, + 0.2027379870414734, + -0.02560609206557274, + 0.0075261592864990234, + 0.008495787158608437, + -0.004501843824982643, + -0.014511438086628914, + 0.021753964945673943, + -0.007136988919228315, + 0.001954097067937255, + 0.028838185593485832, + -0.009010284207761288, + 0.00856834463775158, + -0.004422690719366074, + 0.00706443190574646, + 0.02601505070924759, + -0.024577099829912186, + -0.054299164563417435, + -0.01528977882117033, + -0.012242376804351807, + 0.005712229758501053, + 0.028890954330563545, + -0.017255419865250587, + -0.01107486616820097, + -0.024946480989456177, + 0.03327076882123947, + 0.007994483225047588, + -0.011701496317982674, + 0.0044853538274765015, + 0.030526788905262947, + 0.007387641351670027, + -0.03395676612854004, + -0.009175186976790428, + 0.01900998316705227, + -0.006480676122009754, + 0.0006954771815799177, + 0.0035058315843343735, + 0.006589512340724468, + -0.019841093569993973, + 0.017453301697969437, + 0.018192065879702568, + -0.010421850718557835, + -0.018798908218741417, + -0.004386411979794502, + -0.029576949775218964, + 0.008792612701654434, + 0.03184600919485092, + 0.0056759510189294815, + -0.0012054387480020523, + -0.013093275018036366, + -0.006015650928020477, + -0.023363415151834488, + 0.006780799478292465, + 0.011404670774936676, + 0.04894312471151352, + 0.012657932005822659, + 0.0063784364610910416, + 0.011358498595654964, + -0.01502593420445919, + -0.016846461221575737, + 0.02638443373143673, + -0.02455071546137333, + 0.026516355574131012, + 0.001157616963610053, + 0.025922704488039017, + -0.00482505327090621, + 0.005923305172473192, + -0.00757233239710331, + -0.008983899839222431, + 0.0025955685414373875, + -0.03522321954369545, + -0.020474320277571678, + -0.0280994214117527, + -0.029576949775218964, + -0.00261700595729053, + -0.023548105731606483, + -0.01705753616988659, + 0.010929751209914684, + -0.0023614068049937487, + 0.030632326379418373, + 0.016872845590114594, + -0.012565585784614086, + 0.007202950306236744, + 0.006774203386157751, + -0.02907564491033554, + -0.012229184620082378, + -0.01678049936890602, + 0.011879591271281242, + 0.03408868610858917, + -0.005834257695823908, + -0.023917488753795624, + -0.02841603383421898, + 0.0022954456508159637, + -0.0036377536598592997, + -0.003855425165966153, + 0.023587683215737343, + -0.01105507742613554, + 0.012934967875480652, + 0.007189758121967316, + 0.012097262777388096, + 0.017980990931391716, + -0.013416483998298645, + 0.040816716849803925, + 0.0215824656188488, + -0.030315713956952095, + -0.0191419068723917, + -0.010639522224664688, + -0.012018108740448952, + 0.026898929849267006, + -0.00965010654181242, + -0.011582765728235245, + -0.01816568151116371, + -0.025381824001669884, + 0.0060750157572329044, + -0.015896620228886604, + 0.0037696759682148695, + 0.012591971084475517, + -0.009907354600727558, + 0.017690762877464294, + 0.014155248180031776, + -0.007644889410585165, + -0.007268911227583885, + 0.008627709932625294, + 0.01904956065118313, + -0.010501004755496979, + 0.011826821602880955, + -0.022123346105217934, + -0.021516505628824234, + 0.0063421581871807575, + -0.003650945844128728, + -0.007084220182150602, + 0.027228735387325287, + -0.01734776422381401, + 0.03836296498775482, + -0.016767306253314018, + 0.005715527571737766, + -0.004501843824982643, + -0.007301891688257456, + -0.0054846638813614845, + -0.0062201302498579025, + 0.005138368345797062, + 0.011576170101761818, + 0.009828201495110989, + -0.010276736691594124, + -0.004106077365577221, + 0.0031100651249289513, + -0.019115522503852844, + 0.012934967875480652, + -0.0047986689023673534, + -0.020263245329260826, + -0.03981411084532738, + -0.00854855589568615, + 0.0017710550455376506, + -0.009181782603263855, + -0.027993883937597275, + 0.04263724386692047, + 0.011391478590667248, + -0.010923155583441257, + -0.01660900004208088, + 0.0005685020587407053, + 0.011107846163213253, + -0.012077474035322666, + -0.029339488595724106, + 0.012354510836303234, + -0.014036518521606922, + -0.010448235087096691, + 0.008865169249475002, + -0.16780498623847961, + 0.028284111991524696, + 0.011338709853589535, + -0.036384131759405136, + 0.03844211995601654, + 0.011556381359696388, + 0.008983899839222431, + 0.009524780325591564, + -0.002274008234962821, + 0.004412796348333359, + 0.011668515391647816, + -0.009161994792521, + -0.020421551540493965, + -0.01762480102479458, + -0.005679249297827482, + -0.0012994332937523723, + -0.013587983325123787, + 0.013930981047451496, + 0.021899079903960228, + 0.019326597452163696, + -0.00682037603110075, + -0.017901837825775146, + 0.012532605789601803, + 0.005375828128308058, + 0.0004827526572626084, + 0.00873324740678072, + -0.0173081886023283, + 0.025276286527514458, + -0.008522171527147293, + -0.021965039893984795, + -0.015302971005439758, + -1.3269514965941198e-05, + 0.015593199990689754, + 0.006269600708037615, + -0.0009152099955826998, + -0.012591971084475517, + 0.004650256130844355, + -0.011793841607868671, + -0.004554612562060356, + 0.028204958885908127, + 0.008416634052991867, + 0.02765088528394699, + -0.012400683015584946, + 0.005082301329821348, + -0.02780919149518013, + 0.009254340082406998, + 0.014959973283112049, + -0.006200341507792473, + -0.010896771214902401, + -0.018416333943605423, + -0.011833418160676956, + -0.025672053918242455, + 0.0016968488926067948, + 0.018112912774086, + -0.023759182542562485, + 0.004267681855708361, + 0.005755104590207338, + 0.016477078199386597, + -0.008805804885923862, + 0.014828051440417767, + -0.002788504818454385, + -0.007315083872526884, + 0.01990705542266369, + 0.0039939433336257935, + -0.004980061668902636, + -0.009168590418994427, + -0.0050954935140907764, + 0.009742451831698418, + -0.008660689927637577, + 0.009227955713868141, + -0.0019903755746781826, + -0.04102779179811478, + -0.01563277654349804, + 0.003067190293222666, + -0.009907354600727558, + -0.018957214429974556, + -0.017479686066508293, + 0.015171049162745476, + 0.005702335387468338, + -0.019841093569993973, + -0.009986507706344128, + 0.035038527101278305, + -0.005052618682384491, + -0.037149280309677124, + -0.014405900612473488, + -0.001129583572037518, + -0.0006686804699711502, + 0.008238539099693298, + 0.019814709201455116, + 0.010876982472836971, + 0.021556081250309944, + -0.030183792114257812, + -0.026173356920480728, + -0.018944023177027702, + -0.0023696518037468195, + -0.007822984829545021, + -0.005029532592743635, + 0.010520792566239834, + -0.02369322068989277, + 0.0023581087589263916, + 0.017967799678444862, + -0.014603783376514912, + -0.020777741447091103, + 0.03334992378950119, + -0.00924114789813757, + 0.003918088506907225, + -0.03614667430520058, + 0.01502593420445919, + 0.05237310007214546, + -0.009702875278890133, + -0.011213383637368679, + -0.0017710550455376506, + 0.015527239069342613, + 0.021160315722227097, + 0.004867928102612495, + -0.003970857243984938, + -0.0162791945040226, + -0.022730188444256783, + 0.029392259195446968, + 0.015500854700803757, + 0.06453632563352585, + -0.009472011588513851, + -0.023851526901125908, + 0.0029088836163282394, + -0.0014264084165915847, + -0.017044343054294586, + -0.08770185708999634, + -0.0017182861920446157, + 0.024207716807723045, + 0.015408508479595184, + 0.022136539220809937, + 0.020342398434877396, + 0.002054687822237611, + 0.017004767432808876, + 0.007552544120699167, + 0.03187239542603493, + -0.009016879834234715, + -0.018389949575066566, + -0.019761940464377403, + -0.01105507742613554, + 0.011661919765174389, + -0.007974694482982159, + -0.005695739295333624, + -0.03371930494904518, + -0.01771714724600315, + 0.028679879382252693, + 0.0022377297282218933, + -0.007948310114443302, + 0.008805804885923862, + -0.0008748088730499148, + -0.009010284207761288, + -0.004482055548578501, + -0.028679879382252693, + 0.022809341549873352, + 0.014432284981012344, + -0.0082451356574893, + -0.005550625268369913, + -0.012413876131176949, + 0.004106077365577221, + -0.023350223898887634, + 0.0019409048836678267, + -0.008093425072729588, + -0.02492009662091732, + -0.00045100890565663576, + 0.04239978268742561, + -0.024695828557014465, + 0.0025263093411922455, + 0.011391478590667248, + 0.021067969501018524, + -0.02499924972653389, + 0.008772823959589005, + -0.014762090519070625, + -0.013917787931859493, + 0.010580157861113548, + 0.01820525899529457, + -0.02072497271001339, + -0.0244319848716259, + -0.04292747378349304, + -0.026133781298995018, + 0.010758252814412117, + 0.0472281351685524, + 0.008680478669703007, + -0.011160614900290966, + 0.009742451831698418, + -0.034062303602695465, + 0.009524780325591564, + 0.0024735406041145325, + 0.014471861533820629, + -0.02765088528394699, + 0.026292087510228157, + 0.0037762720603495836, + -0.020698588341474533, + -0.005323059391230345, + -0.0076185050420463085, + 0.019247444346547127, + -0.00019829550001304597, + -0.024088988080620766, + 0.014590591192245483, + -0.009557761251926422, + 0.008667286485433578, + -0.022215692326426506, + -0.00021375513460952789, + -0.04852097108960152, + -0.03240008279681206, + 0.011536593548953533, + -0.0006864074966870248, + -0.005346145946532488, + -0.03986687958240509, + -9.188172407448292e-05, + -0.009201571345329285, + 0.01146403606981039, + 0.03472191467881203, + -0.013198812492191792, + -0.004947081208229065, + 0.013706712983548641, + -0.016252810135483742, + -0.000442351505625993, + 0.01816568151116371, + 0.029788024723529816, + -0.0043831137008965015, + 0.0062498124316334724, + -0.005102089606225491, + -0.006348754279315472, + -0.008601325564086437, + 0.00832428876310587, + 0.014867627993226051, + -0.012651335448026657, + -0.006945701781660318, + -0.0655389279127121, + 0.014089287258684635, + 0.016635384410619736, + -0.0154744703322649, + -0.009590741246938705, + -0.014221209101378918, + -0.004172038286924362, + 0.015527239069342613, + 0.002044793451204896, + 0.009452222846448421, + -0.010006296448409557, + 0.023798758164048195, + -0.011576170101761818, + 0.008601325564086437, + -0.02796749956905842, + -0.020289629697799683, + 0.0035849849227815866, + 0.01378586608916521, + 0.004013732075691223, + 0.000947366061154753, + -0.017598416656255722, + -0.005669354926794767, + -0.019115522503852844, + 0.01889125443994999, + -0.03311246261000633, + -0.010487811639904976, + 0.0017479687230661511, + -0.001621818169951439, + -0.02353491447865963, + -0.0042083170264959335, + 0.0008443018305115402, + -0.017572032287716866, + 0.002961652586236596, + 0.015065510757267475, + -0.024524331092834473, + -0.021199891343712807, + 0.01645069383084774, + 0.03393037989735603, + 0.009194974787533283, + 0.0537450909614563, + -0.014379516243934631, + -0.01840314269065857, + 0.015421700663864613, + -0.011840014718472958, + 0.0006299283122643828, + 0.007954906672239304, + 0.012275357730686665, + 0.001625116216018796, + 0.020104937255382538, + -0.008436422795057297, + 0.03986687958240509, + 0.027782807126641273, + -0.0064114173874258995, + -0.00736125698313117, + 0.0036905226297676563, + -0.007862561382353306, + 0.008759631775319576, + -4.1547750697645824e-06, + 0.01945851929485798, + -0.029339488595724106, + 0.02414175681769848, + -0.003486043307930231, + 0.005062513053417206, + -0.0018089826917275786, + -0.0016919017070904374, + -0.013469252735376358, + -0.02532905526459217, + -0.014023326337337494, + -0.007974694482982159, + -0.016437502577900887, + -0.005220819730311632, + -0.018429527059197426, + 0.014551014639437199, + 0.037729740142822266, + -0.006051929201930761, + 0.01121998019516468, + 0.010092045180499554, + 0.009161994792521, + -0.0108901746571064, + 0.008001078851521015, + 0.022862110286951065, + 0.005474769975990057, + -0.0098743736743927, + -0.003535513998940587, + 0.029919946566224098, + 0.018785716965794563, + -0.01154318917542696, + 0.016266003251075745, + 0.016305578872561455, + 0.01404971070587635, + -0.0003889642539434135, + 0.01238089520484209, + 0.012288549914956093, + 0.0004707972111646086, + 0.01090996339917183, + 0.005471471697092056, + 0.007875753566622734, + -0.022255269810557365, + 0.0391017310321331, + 0.03672713041305542, + 0.0065169548615813255, + 0.00291218189522624, + 0.004491949919611216, + -0.008825592696666718, + -0.004178634379059076, + 0.018192065879702568, + -0.015118280425667763, + -0.025988666340708733, + 0.0313447080552578, + 0.027861962094902992, + 0.013423080556094646, + 0.018020568415522575, + 0.0060750157572329044, + 0.012011513113975525, + -0.02968248724937439, + 0.01015800703316927, + -0.018455911427736282, + 0.001675411476753652, + -0.03894342482089996, + 0.04841543361544609, + 0.01701795868575573, + 0.016622193157672882, + 0.015936197713017464, + 0.0007783407927490771, + 0.008627709932625294, + 0.003103469032794237, + 0.0036344556137919426, + 0.0006600230699405074, + 0.005098791792988777, + -0.005972776096314192, + -0.009808412753045559, + 0.009234551340341568, + -0.03738674148917198, + -0.01543489284813404, + -0.0003535101714078337, + 0.0008414160693064332, + 0.008383653126657009, + 0.0026301981415599585, + 0.013205409049987793, + 0.09208167344331741, + 0.006579617969691753, + -0.027149582281708717, + 0.02560609206557274, + -0.0007659730617888272, + -0.00922135915607214, + 0.01861421763896942, + -0.009135609492659569, + -0.0019804814364761114, + -0.011424459517002106, + -0.010527389124035835, + -0.015606392174959183, + 0.0011114442022517323, + -0.04295385628938675, + -0.008508979342877865, + 0.01970917172729969, + -0.003723503090441227, + 0.002475189510732889, + -0.009504991583526134, + 0.013587983325123787, + 0.025052018463611603, + 0.00938626192510128, + 0.010995712131261826, + 0.020421551540493965, + -0.022321229800581932, + -0.01726861111819744, + 0.010923155583441257, + -0.01337690744549036, + 0.009755644015967846, + -0.0317668579518795, + 0.013363715261220932, + 0.01580427587032318, + -0.06643600016832352, + -0.011259556747972965, + 0.016965189948678017, + -0.02308637835085392, + 0.0044160946272313595, + -0.003469552844762802, + 0.014748898334801197, + 0.011675111949443817, + 0.006912721320986748, + 0.007598716765642166, + -0.030922556295990944, + -0.028679879382252693, + 0.01910232938826084, + 0.008588133379817009, + -0.01371990516781807, + 0.014115671627223492, + -0.0199466310441494 + ], + "metadata": { + "source": "Thesis_Verladegeraeusche_in_Speditionen.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 41, + "has_images": true, + "image_count": 51, + "coordinates": "CoordinatesMetadata(points=((204.16666666666666, 189.02777777777797), (204.16666666666666, 642.3611111111111), (936.1666666666666, 642.3611111111111), (936.1666666666666, 189.02777777777797)), system=)", + "links": [], + "last_modified": "2025-05-05T22:59:16", + "_known_field_names": "frozenset({'cc_recipient', 'link_texts', 'url', 'filetype', 'category_depth', 'page_number', 'filename', 'orig_elements', 'detection_origin', 'email_message_id', 'page_name', 'coordinates', 'table_as_cells', 'link_start_indexes', 'sent_to', 'bcc_recipient', 'languages', 'last_modified', 'link_urls', 'file_directory', 'subject', 'data_source', 'detection_class_prob', 'image_base64', 'text_as_html', 'attached_to_filename', 'key_value_pairs', 'signature', 'sent_from', 'header_footer_type', 'parent_id', 'links', 'emphasized_text_contents', 'emphasized_text_tags', 'image_mime_type', 'is_continuation', 'image_path'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "Thesis_Verladegeraeusche_in_Speditionen.pdf", + "detection_class_prob": 0.2568194270133972, + "parent_id": "d45475a34bc527cde6987546fa6dd2f5", + "text_as_html": "
Flurf\u00f6rderger\u00e4t |Anzahl Einzelereignisse ElMax-PegelSchallleistungspegel
LAFmaxLWA,5sLWAmaxLWA,1hKlLWAT,1h
[dB(A)][dB(A)][dB(A)][dB(A)][dB(A)][dB(A)]
Gabelstapler29769,3100,7108,872,15,777,8
STABW [dB]6,54,96,54,92,9-
Gabelhubwagen9968,6100,7108,172,16,279,5
STABW [dB]6,45,16,4512,7-
", + "id": "5ba44de7-0ff3-4c0c-b018-67e92171e1c2", + "processing_timestamp": "2025-05-06T14:18:19.298665", + "chunk_number": 1, + "total_chunks": 49, + "chunking_strategy": "hybrid", + "word_count": 1053 + } +} \ No newline at end of file diff --git a/data/processed/85fd305f-83de-70b0-47e8-2dc000000002.json b/data/processed/85fd305f-83de-70b0-47e8-2dc000000002.json new file mode 100644 index 0000000000000000000000000000000000000000..de8fc409b87f79aed155c689fc917288adf665f8 --- /dev/null +++ b/data/processed/85fd305f-83de-70b0-47e8-2dc000000002.json @@ -0,0 +1,1570 @@ +{ + "id": "85fd305f-83de-70b0-47e8-2dc000000002", + "content": "Gem\u00e4\u00df einer Umfrage aus dem Jahr 2020 des Bundesministeriums f\u00fcr Umwelt, Naturschutz, nukleare Sicher- heit und Verbraucherschutz, empfinden 51 % der Bev\u00f6lkerung in Deutschland eine Be-\nl\u00e4stigung durch L\u00e4rm aus Industrie-/Gewerbel\u00e4rm (siehe Abbildung 1). [4]\n\n[IMAGE: Bel\u00e4stigung durch einzelne L\u00e4rmquellen 2020 Frage: Wenn Sie einmal an die letzten 12 Monate hier bei Ihnen denken, wie stark haben Sie sich pers\u00f6nlich durch den L\u00e4rm von. folgenden Dingen gest\u00f6rt oder bel\u00e4stigt gef\u00fchlt? \u201aAntworten: \"zumindest etwas bel\u00e4stigt\u201d, das hei\u00dft Summe der Angaben \u201e\u00e4u\u00dferst gest\u00f6rt oder bel\u00e4stigt\u201d, \u201estark gest\u00f6rt oder bel\u00e4stigt\u201c, \u201emittelm\u00e4\u00dfig gest\u00f6rt oder bel\u00e4stigt\" und \u201eetwas gest\u00f6rt oder bel\u00e4stigt\" Schienenverkehrsl\u00e4rm Flugverkehrsl\u00e4rm Industrie- und Gewerbel\u00e4rm L\u00e4rm von Nachbarn/ Nachbarinnen Stra\u00dfenverkehrsl\u00e4rm Repr\u00e4sentativerhebung bei 2.115 Befragten, Bev\u00f6lkerung ab 14 Jahren Bundesministerium f\u00fcr Umwelt, Naturschutz, nukleare Sicherheit und Verbraucherschutz/Umweitbundesamt (Hrsg.). Umweltbewusstsein in Deutschland 2020 - Ergebnisse einer repr\u00e4sentativen Bev\u00f6lkerungsumfrage]\n\nAbbildung 1: Ausma\u00df der L\u00e4rmbel\u00e4stigung der Bev\u00f6lkerung in Deutschland 2020 [4]\n3\n1 Einleitung\nDer immerw\u00e4hrende Austausch von G\u00fctern f\u00fchrt zu einer L\u00e4rmquelle, die genau be- trachtet werden muss, um eine zuk\u00fcnftige L\u00e4rmbelastung vorherzusagen. Verantwort- lich f\u00fcr diesen G\u00fcterfluss sind Logistikunternehmen oder auch Speditionen genannt. Eine zentrale Schnittstelle sind die Verladestationen, an denen der Umschlag der G\u00fcter stattfindet und geeignete Flurf\u00f6rderger\u00e4te zum Einsatz kommen, um den Wechsel der Transportmittel zu erm\u00f6glichen. Durch diesen Prozess von Be- und Entladung der Anh\u00e4- nger entsteht eine vielf\u00e4ltige L\u00e4rmbelastung durch unterschiedliche Faktoren. [5]\n\n## Mit Hilfe einer Schallimmissionsprognose lassen sich Schallimmissionen von Industrie-\n\nund Gewerbel\u00e4rm, dergleichen f\u00fcr alle anderen Verursachern, prognostizieren. Richt- werte f\u00fcr Gewerbe gibt die Technische Anleitung zum Schutz gegen L\u00e4rm (TA L\u00e4rm) vor, die laut der TA L\u00e4rm zum \u201eSchutz der Allgemeinheit und der Nachbarschaft vor sch\u00e4dli- chen Umwelteinwirkungen durch Ger\u00e4usche sowie der Vorsorge gegen sch\u00e4dliche Um- welteinwirkungen durch Ger\u00e4usche\u201c [6] dient. F\u00fcr eine Schallimmissionsprognose wer- den schalltechnische Eingangsdaten ben\u00f6tigt und sind erforderlich, um eine Simulation durchf\u00fchren zu k\u00f6nnen. F\u00fcr Be- und Entladevorg\u00e4nge an einem Umschlagspunkt stehen Ver\u00f6ffentlichungen zur Verf\u00fcgung, die auf messtechnisch ermittelten Schalldruckpegeln basieren. F\u00fcr Verladet\u00e4tigkeiten werden zu derzeitigem Stand beispielgebend der der Technische Bericht [7, 8] von der hessischen Landesanstalt f\u00fcr Umwelt verwendet. Die bisherigen Ver\u00f6ffentlichungen und Untersuchungen in diesem Bereich sind konzentrie- ren sich haupts\u00e4chlich auf Verbraucherm\u00e4rkte und Verladungen mit Handhubwagen, was nur einen kleinen Teil der tats\u00e4chlich m\u00f6glichen Verladet\u00e4tigkeiten abdeckt. ## Ziel dieser Thesis\n\nUm eine umfassendere und praxisn\u00e4here Schallimmissionsprognose durchf\u00fchren zu k\u00f6nnen, bedarf es weiterer Untersuchungen. Das Ziel dieser Thesis besteht darin, detail- liert die Verladet\u00e4tigkeiten in Speditionen zu analysieren und zu bewerten. Die mess- technisch ermittelten Daten werden ausgewertet und durch eine geeignete Simulation verifiziert. Die notwendigen Rechengrundlagen werden dazu erl\u00e4utert, die zur Analyse und Bewertung von Verladeger\u00e4usche ben\u00f6tigt werden. Aus dem gewonnenen Wissen werden Emissionsans\u00e4tze ausgearbeitet, die als Prognosegrundlage f\u00fcr weiterf\u00fchrende Schallimmissionsprognosen zur Verf\u00fcgung steht. Zus\u00e4tzlich wird die 2D-Richtcharakte- ristik der Verladeger\u00e4usche durch eine Untersuchung entlang einer Kreisbahn im Nah-\n4\n1 Einleitung\nfeld ermittelt. Die Thesis stellt eine wichtige Grundlage f\u00fcr die Entwicklung von geeig- neten Ma\u00dfnahmen zur Reduktion der L\u00e4rmbelastung in Speditionen dar, weshalb m\u00f6g- liche Minderungsma\u00dfnahmen aufgezeigt werden, um die L\u00e4rmbelastung zu reduzieren. Die Thesis bietet somit eine umfassende Einf\u00fchrung in die Grundlagen und Rechen- grundlagen der L\u00e4rmemissionsmessung und -bewertung. 5\n2 Grundlagen\n\n## 2 Grundlagen\n\nDas folgende Kapitel dient zur Einf\u00fchrung in die Thesis und bildet somit das Grundge- r\u00fcst. Es werden die allgemeinen Grundlagen der Logistik und Grundlagen zur Ermittlung der notwendigen akustischen Kenngr\u00f6\u00dfen aufgezeigt. Ziel dieses Kapitel ist es ein grund- legendes Wissen darzubieten, um ein vollst\u00e4ndiges Verst\u00e4ndnis der Thesis zu vermitteln.", + "embedding": [ + 0.03203568235039711, + -0.003609198145568371, + 0.002449330175295472, + -0.04144422337412834, + -0.003729072865098715, + 0.007153599057346582, + -0.021707026287913322, + -0.0005042023840360343, + -0.028951341286301613, + -0.02315848134458065, + -0.0012230451684445143, + 0.010581365786492825, + -0.006090926937758923, + -0.0001335427659796551, + 0.001762480940669775, + 0.027551725506782532, + 0.056088365614414215, + -0.0017300824401900172, + 0.012052259407937527, + 0.0042085712775588036, + -0.014527508988976479, + 0.009285423904657364, + 0.012376245111227036, + 0.0017106432933360338, + -0.001807838911190629, + 0.018868913874030113, + 0.03522370010614395, + -0.026437215507030487, + -0.01520139817148447, + 0.014955169521272182, + 0.0076330979354679585, + -0.01450159028172493, + -0.01632886752486229, + 0.02597067505121231, + -0.018570847809314728, + -0.008540256880223751, + -0.0017414218746125698, + 0.007263754494488239, + 0.037530478090047836, + -0.022121727466583252, + 0.0075423819944262505, + 0.0171193927526474, + 0.009071593172848225, + -0.024052681401371956, + -0.0007901195785962045, + 0.02641129679977894, + -0.0007961943047121167, + 0.019076265394687653, + -0.025815162807703018, + 0.012739108875393867, + 0.03644188493490219, + 0.0271888617426157, + -0.01873932033777237, + 0.00503797410055995, + -0.012454001232981682, + 0.0002804499235935509, + -0.010244420729577541, + 0.011060863733291626, + -0.0010019250912591815, + -0.023806452751159668, + -0.04292159527540207, + 0.006538026966154575, + -0.027292536571621895, + 0.006220520939677954, + -0.03950030729174614, + -0.006084447260946035, + -0.02372869662940502, + -0.00568594504147768, + -0.011216376908123493, + -0.017858078703284264, + 0.033124275505542755, + 0.029132774099707603, + 0.007315591908991337, + 0.016445502638816833, + 0.017378581687808037, + 0.002625902183353901, + 0.0171323511749506, + -0.012421603314578533, + -0.0015664697857573628, + 0.004244209732860327, + 0.012227212078869343, + -0.007043444085866213, + -0.03327978774905205, + 0.04372508078813553, + 0.028692154213786125, + 0.011222857050597668, + -0.008987356908619404, + 0.011443166993558407, + -0.024117479100823402, + 0.0007957892958074808, + 0.0038003495428711176, + 0.015214357525110245, + 0.007464625407010317, + 0.01520139817148447, + 0.023301035165786743, + 0.0029450280126184225, + -0.013361160643398762, + 0.010412893258035183, + 0.000559684936888516, + -0.04066665843129158, + -0.014994047582149506, + -0.012142975814640522, + -0.01489037275314331, + 0.004500158131122589, + -0.03079157881438732, + -0.009589970111846924, + -0.003787390189245343, + 0.008481939323246479, + 0.017780322581529617, + -0.027888670563697815, + -0.014359036460518837, + 0.027499886229634285, + 0.0006678150384686887, + -0.01398321334272623, + 0.028303371742367744, + -0.02178478240966797, + 0.03911152482032776, + -0.01156628131866455, + 0.000381897873012349, + -0.02737029269337654, + 0.03504226729273796, + 0.017248986288905144, + 0.01038049440830946, + -0.006631982512772083, + 0.03867090493440628, + 0.025892918929457664, + -0.016380704939365387, + 0.0002766026009339839, + -0.026100270450115204, + -0.011579240672290325, + -0.031906090676784515, + 0.0005430806777440012, + 0.021395999938249588, + 0.011728274635970592, + 0.011818990111351013, + 0.009427977725863457, + -0.011423727497458458, + 0.008313467726111412, + -0.0161344762891531, + -0.017482256516814232, + 0.006265879143029451, + 0.01772848516702652, + -0.03366857022047043, + -0.030299121513962746, + -0.011929145082831383, + 0.05152665078639984, + 0.025231989100575447, + 0.0005621148156933486, + -0.012946459464728832, + 0.007484064437448978, + -0.023223279044032097, + -0.02157743275165558, + 0.007808050140738487, + -0.0067583369091153145, + 0.0024379906244575977, + 0.01592712663114071, + 0.0006398712866939604, + 0.026825997978448868, + -0.015447627753019333, + -0.008404183201491833, + 0.008080197498202324, + -0.014670061878859997, + 0.03185425326228142, + 0.013037175871431828, + 0.027733156457543373, + 0.010438811965286732, + 0.020216694101691246, + -0.0040595377795398235, + -0.0025578653439879417, + -0.013218607753515244, + -0.008157954551279545, + 0.021046096459031105, + -0.01359443087130785, + 0.017832159996032715, + -0.013918415643274784, + 0.01087943185120821, + 0.0018191784620285034, + 0.016069680452346802, + -0.026502011343836784, + -0.019270656630396843, + -0.04566899314522743, + 0.012849263846874237, + 0.014657102525234222, + 0.005436476320028305, + -0.02256234921514988, + 0.012376245111227036, + 0.025037597864866257, + 0.02838112786412239, + -0.01378882210701704, + -0.001814318704418838, + 0.0030600428581237793, + 0.01813022792339325, + 0.006055288482457399, + -0.02879582904279232, + -0.6336637735366821, + 0.005060653202235699, + -0.0035865192767232656, + 0.003865146776661277, + 0.002752256579697132, + 0.036934345960617065, + 0.006388993468135595, + 0.004817664157599211, + -0.0026631606742739677, + 0.04364732280373573, + 0.006946248468011618, + 0.0009565671207383275, + 0.01076927687972784, + -0.0076330979354679585, + -0.01260303519666195, + -0.005958092864602804, + -0.020385166630148888, + -0.011268215253949165, + 0.02296409010887146, + -0.008462500758469105, + -0.008993837051093578, + 0.008488419465720654, + -0.0005159468855708838, + 0.003661035792902112, + 0.007127680350095034, + 0.010613763704895973, + -0.0031135003082454205, + -0.028329290449619293, + 0.005903015378862619, + 0.002130204578861594, + -0.026903754100203514, + 0.012240171432495117, + -0.02637241780757904, + 0.035171862691640854, + 0.05344464257359505, + 0.014566387049853802, + 0.008274588733911514, + 0.028303371742367744, + 0.019996384158730507, + -0.011358930729329586, + -0.015836410224437714, + -0.017404500395059586, + -0.0003333000640850514, + -0.013646268285810947, + 0.005255044437944889, + 0.0012765027349814773, + 0.05904311314225197, + -0.002102665835991502, + 0.025918837636709213, + -0.032502222806215286, + 0.0070888022892177105, + 0.011825470253825188, + 0.002676120027899742, + 0.0028915703296661377, + 0.03885233774781227, + 0.017637768760323524, + 0.032554060220718384, + -0.027448048815131187, + -0.01167643629014492, + 0.009045674465596676, + 0.00219338177703321, + 0.010594325140118599, + 0.003260913770645857, + 0.0036415967624634504, + -0.02358614280819893, + 0.020799867808818817, + -0.02232907898724079, + -0.03099893033504486, + 0.011034945026040077, + -0.01299181766808033, + -0.016419583931565285, + 0.005582269746810198, + -0.0070499237626791, + -0.026139147579669952, + 0.042377300560474396, + 0.02333991415798664, + 0.008306987583637238, + -0.00894847884774208, + -0.010432332754135132, + 0.01178011205047369, + -0.006045568734407425, + -0.008028360083699226, + -0.02843296527862549, + 0.004837103188037872, + 0.02739621140062809, + -0.0363122932612896, + -0.006868491880595684, + 0.00208484660834074, + -0.00609416700899601, + 0.003819788806140423, + 0.0036059583071619272, + 0.055051613599061966, + 0.0017964994767680764, + -0.014449751935899258, + -0.0015867188340052962, + 0.022588267922401428, + -0.0012603035429492593, + 0.01667877286672592, + -0.0017479016678407788, + -0.022264281287789345, + -0.024415545165538788, + -0.0023051565513014793, + 0.033538974821567535, + -0.022225404158234596, + 0.03045463375747204, + -0.010153704322874546, + -0.006868491880595684, + 0.013140850700438023, + 0.012959418818354607, + -0.02091650292277336, + -8.534992230124772e-05, + -0.009978752583265305, + -0.02131824381649494, + -0.01056840643286705, + -0.00924654584378004, + -0.020994259044528008, + 0.03403143584728241, + 0.006521827541291714, + 0.011158059351146221, + -0.011682916432619095, + -9.903071259032004e-06, + -2.2033544155419804e-05, + 0.04144422337412834, + -0.02656680904328823, + -0.00724431499838829, + 0.03105076774954796, + 0.012661352753639221, + 0.015486505813896656, + 0.0006131425034254789, + -0.0015130122192203999, + 0.01299829687923193, + 0.004607073497027159, + 0.017404500395059586, + -0.0028705112636089325, + 0.02742213010787964, + 0.01229848898947239, + 0.039163365960121155, + -0.00624644011259079, + 0.011844908818602562, + -0.030661985278129578, + -0.013633308932185173, + 0.0007083132513798773, + 0.015084763988852501, + -0.03003993257880211, + -0.011760672554373741, + -0.02801826409995556, + -0.0007111481390893459, + -0.00023893929028417915, + 0.0014708940871059895, + 0.010114826261997223, + -0.01048417016863823, + -0.013542592525482178, + -0.0004944828106090426, + 0.016601014882326126, + 0.01390545628964901, + 0.008572655729949474, + -0.027940507978200912, + -0.015849368646740913, + -0.0063630747608840466, + -0.01890779286623001, + 0.010322176851332188, + 0.016277030110359192, + -0.04188484326004982, + 0.004108136054128408, + 0.0037096336018294096, + -0.022691942751407623, + -0.0013315803371369839, + 0.0035444011446088552, + -0.008630973286926746, + -0.03747864067554474, + 0.014410873875021935, + -0.004302527289837599, + -0.010840553790330887, + 0.030325040221214294, + 0.0062723588198423386, + -0.0015016726683825254, + -0.013199168257415295, + -0.0037485118955373764, + -0.011903226375579834, + -0.010425852611660957, + 0.016380704939365387, + 0.0022646584548056126, + -0.007192477583885193, + -0.00549155380576849, + 0.02580220252275467, + 0.014631183817982674, + 0.024208195507526398, + -0.0006840143469162285, + -0.013257485814392567, + 0.02499871887266636, + 0.0008528917678631842, + 0.014151685871183872, + -0.020696192979812622, + 0.00795060396194458, + -0.032761409878730774, + -0.005352240055799484, + -0.0009112091502174735, + -0.0007670355844311416, + 0.006006690673530102, + 0.01491629146039486, + 0.030325040221214294, + 0.01893371157348156, + 0.008579134941101074, + -0.01186434831470251, + 0.006492668762803078, + -0.021305285394191742, + 0.00583497853949666, + -0.023210318759083748, + 0.023093685507774353, + 0.02354726381599903, + 0.019620560109615326, + -0.01673061028122902, + -0.029728908091783524, + -0.008592095226049423, + -0.0019779312424361706, + 0.04870149493217468, + 0.006421392317861319, + 0.016212232410907745, + 0.021408960223197937, + -0.008501378819346428, + -0.001534881186671555, + -0.0010683421278372407, + 0.03903377056121826, + 0.0018418574472889304, + -0.010082428343594074, + -0.0005058223032392561, + -0.004098416306078434, + -0.006343635730445385, + -0.0009760062675923109, + -0.009291903115808964, + -0.007607178762555122, + 0.0029596074018627405, + -6.985936488490552e-05, + 0.008119075559079647, + -0.006712979171425104, + 0.021188650280237198, + 0.013568511232733727, + -0.010108347050845623, + 0.03245038539171219, + 0.019231777638196945, + -0.005093051586300135, + 0.013970253989100456, + 0.0030713824089616537, + -0.005822019185870886, + 0.0231844000518322, + -0.014670061878859997, + 0.013270445168018341, + 0.034912675619125366, + -0.0070304847322404385, + -0.006874971557408571, + -0.005109251011162996, + 0.015862328931689262, + -0.013516673818230629, + -0.016212232410907745, + 0.0034083272330462933, + -0.026696402579545975, + 0.030506473034620285, + 0.0033176112920045853, + 0.018842995166778564, + 0.0009541372419334948, + 0.010756317526102066, + -0.003920224029570818, + 0.006926809437572956, + -0.02155151404440403, + 0.0008804305107332766, + -0.0002053257921943441, + -0.028303371742367744, + -0.024920962750911713, + 0.005468874704092741, + -0.0011849768925458193, + -0.01671764999628067, + 0.008468979969620705, + -0.00462327292189002, + -0.014540468342602253, + 0.030325040221214294, + -0.015460587106645107, + -0.018648603931069374, + 0.023223279044032097, + 0.033927757292985916, + 0.01669173128902912, + -0.00864393264055252, + -0.022419795393943787, + -0.0001765720808180049, + 0.02597067505121231, + -0.006437591277062893, + -0.019244737923145294, + -0.0049634575843811035, + 0.0022549389395862818, + -0.03462756797671318, + -0.010859993286430836, + -0.01552538387477398, + 0.013160290196537971, + -0.011209897696971893, + -0.009913955815136433, + 0.025685569271445274, + 0.005617908202111721, + 0.01570681668817997, + 0.01056840643286705, + -0.017560012638568878, + 0.015330992639064789, + -0.0002701228950172663, + -0.029547475278377533, + -0.034342460334300995, + -0.005543391685932875, + 0.014229441992938519, + -0.021188650280237198, + -0.018207984045147896, + -0.019594641402363777, + -0.001246534171514213, + -0.01892075128853321, + -0.005012055393308401, + 0.0161215178668499, + 0.006829613819718361, + 0.004441841039806604, + 0.000831832701805979, + 0.005938653834164143, + 0.009350220672786236, + -0.003356489585712552, + 0.03099893033504486, + -0.009123430587351322, + -0.010613763704895973, + -0.027707237750291824, + -0.0007731103105470538, + 0.023521345108747482, + 0.04647247493267059, + 0.01854492910206318, + 0.014981088228523731, + 0.03042871505022049, + -0.010834074579179287, + -0.023521345108747482, + -0.006518587935715914, + -0.05069724842905998, + 0.010555447079241276, + 0.01189026702195406, + 0.0017057835357263684, + -0.009764921851456165, + 0.02637241780757904, + 0.0019163740798830986, + 0.014657102525234222, + -0.02580220252275467, + 0.004587634466588497, + -0.002109145512804389, + 0.014644143171608448, + -0.0024622895289212465, + 0.003251194255426526, + 0.012622473761439323, + 7.638969691470265e-05, + 0.04452856257557869, + -0.00734799075871706, + -0.016354786232113838, + 0.021901417523622513, + 0.027499886229634285, + 0.016069680452346802, + -0.024285951629281044, + -0.004458039999008179, + 0.02192733623087406, + 0.006790735758841038, + 0.02378053404390812, + -0.02838112786412239, + 0.010224981233477592, + -0.012609514407813549, + 0.00806723814457655, + 0.009635328315198421, + -0.014073928818106651, + 0.03281324729323387, + 0.027085185050964355, + 0.0005831738817505538, + -0.016199273988604546, + 0.003267393447458744, + -0.009071593172848225, + -0.0030001054983586073, + 0.01491629146039486, + -0.012628953903913498, + -0.0010075948666781187, + -0.0015753793995827436, + -0.014981088228523731, + -0.009149350225925446, + -0.0033095115795731544, + -0.0045131174847483635, + -0.031076686456799507, + 0.00045803445391356945, + -0.009687165729701519, + -0.0049926163628697395, + -0.01189674623310566, + -0.0051740482449531555, + -0.03810069337487221, + 0.01186434831470251, + -0.022484591230750084, + -0.026281701400876045, + -0.031102605164051056, + -0.017806241288781166, + -0.007056403439491987, + -0.02597067505121231, + 0.0024671494029462337, + 0.017572972923517227, + -0.03003993257880211, + -0.01932249404489994, + -0.0018175585428252816, + 0.03581983596086502, + -0.0008415522752329707, + 0.027448048815131187, + -0.006427871994674206, + -0.013892496936023235, + 0.0003839228011202067, + -0.027862749993801117, + -0.005251804366707802, + 0.004406202584505081, + -0.020203733816742897, + -0.012745589017868042, + 0.013879537582397461, + -0.028562558814883232, + -0.0023488947190344334, + -0.005021774675697088, + 0.002554625505581498, + -0.008300507441163063, + 0.005157848820090294, + -0.000306166271911934, + -0.006223761010915041, + -0.0023845331743359566, + 0.007827488705515862, + 0.008579134941101074, + 0.0003203406522516161, + 0.019789032638072968, + -0.020683232694864273, + 0.033538974821567535, + -0.01478669699281454, + 0.011034945026040077, + 0.0018029791535809636, + 0.006946248468011618, + -0.015991922467947006, + -0.0007536712219007313, + -0.0042085712775588036, + 0.012855743989348412, + 0.016626935452222824, + 0.012933500111103058, + -0.0039007852319628, + 0.004490438848733902, + 0.0035962387919425964, + -0.0026356219314038754, + -0.0049051400274038315, + 0.006965687498450279, + 0.002115625189617276, + 0.028096020221710205, + 0.011112702079117298, + -0.00397854158654809, + -0.0281996950507164, + 0.032113440334796906, + 0.021279366686940193, + -0.0006856342661194503, + 0.01695092022418976, + -0.022510509938001633, + 0.018026551231741905, + -0.03721944987773895, + -0.006933289114385843, + 0.0014036670327186584, + 0.019776074215769768, + 0.014359036460518837, + -0.02435074746608734, + -0.046602070331573486, + -0.008527297526597977, + 0.012551196850836277, + 0.0115857208147645, + -0.03467940539121628, + -0.024726571515202522, + -0.011423727497458458, + 0.0009508973453193903, + -0.024013804271817207, + 0.003456925041973591, + 0.02359910123050213, + -0.03327978774905205, + -0.024415545165538788, + 0.01329636387526989, + -0.02480432763695717, + 0.012739108875393867, + -0.0019471526611596346, + -0.01653621904551983, + -0.010600804351270199, + -0.007743252906948328, + -0.020294450223445892, + -0.03942255303263664, + 0.004302527289837599, + -0.016613975167274475, + 0.014631183817982674, + 0.007548861671239138, + 0.03200976550579071, + 0.0031475189607590437, + -0.0046329922042787075, + -0.0050250147469341755, + 0.006874971557408571, + 0.002902909880504012, + -0.02493392303586006, + -0.007743252906948328, + -0.024622896686196327, + 0.020087098702788353, + 0.005893295630812645, + 0.007432227022945881, + 0.01280390564352274, + 0.01279742643237114, + 0.011002547107636929, + 0.03480900079011917, + -0.017598891630768776, + -0.002554625505581498, + -0.018881874158978462, + -0.015966003760695457, + 0.0016652853228151798, + -0.012590075843036175, + 0.004247449804097414, + 0.03335754573345184, + -0.039370715618133545, + -0.013555551879107952, + 0.024065641686320305, + -0.038800500333309174, + -0.01728786528110504, + -0.013918415643274784, + 0.003570319851860404, + -0.04849414527416229, + 0.03659740090370178, + 0.0028348728083074093, + -0.0013186208670958877, + -0.02034628763794899, + -0.006385753862559795, + -0.02197917550802231, + -0.013425958342850208, + 0.016186313703656197, + -0.008281068876385689, + 0.0006366314482875168, + -0.009110471233725548, + -0.028743991628289223, + 0.010801675729453564, + -0.004555235616862774, + 0.004671870730817318, + -0.01511068269610405, + -0.021694067865610123, + -0.003855427261441946, + -0.026696402579545975, + -0.020657313987612724, + -0.021836621686816216, + -0.02656680904328823, + 0.009687165729701519, + -0.003855427261441946, + 0.02017781510949135, + 0.019037386402487755, + -0.00689441105350852, + -0.010419372469186783, + -0.010419372469186783, + -0.00624644011259079, + 0.012065218761563301, + -0.008287548087537289, + 0.02822561375796795, + 0.005420276895165443, + -0.023326953873038292, + -0.011702354997396469, + -0.044995103031396866, + 0.005773421376943588, + -0.024726571515202522, + 0.029884420335292816, + -0.016795406118035316, + -0.03812661021947861, + 0.01814318634569645, + 0.021603351458907127, + 0.02152559533715248, + -0.011799550615251064, + -0.013762903399765491, + 0.03846355527639389, + 0.021395999938249588, + -0.011209897696971893, + -0.015577221289277077, + -0.003855427261441946, + 0.006790735758841038, + -0.0026793598663061857, + 0.015460587106645107, + 0.008637452498078346, + -0.0015413608634844422, + -0.005935413762927055, + -0.0161215178668499, + 0.036130860447883606, + 0.0034893236588686705, + 0.01588824763894081, + 0.015616100281476974, + -0.01836349628865719, + -0.001051332917995751, + -0.026307620108127594, + -0.006343635730445385, + 0.01835053786635399, + -0.016212232410907745, + 0.02879582904279232, + -0.010749838314950466, + -0.004568194970488548, + 0.0028478323947638273, + -0.0030681423377245665, + -0.011138620786368847, + 0.015162520110607147, + 0.000243799076997675, + 0.017572972923517227, + -0.02077394910156727, + -0.012875182554125786, + -0.0029012898448854685, + 0.006674100644886494, + 0.011702354997396469, + -0.0035508808214217424, + -0.01219481322914362, + -0.0008820504299364984, + 0.0032544340938329697, + -0.016601014882326126, + -0.004224770702421665, + 0.01588824763894081, + -0.0030681423377245665, + -0.002018429571762681, + -0.014864454045891762, + -0.030169527977705002, + -0.0013510194839909673, + -0.006751857232302427, + 0.02032036893069744, + -0.008734648115932941, + -0.008741128258407116, + 0.013348201289772987, + 0.009116951376199722, + 0.015680896118283272, + -0.006320956628769636, + -0.013931374996900558, + 0.004688069690018892, + 0.025089435279369354, + -0.039759498089551926, + 0.015797531232237816, + 0.023482467979192734, + 0.004247449804097414, + 0.005310121923685074, + 0.028329290449619293, + 0.012317927554249763, + -0.015953045338392258, + 0.03242446482181549, + -0.019478006288409233, + -0.024506261572241783, + -0.016769487410783768, + -0.014631183817982674, + 0.0006382513674907386, + -0.023923087865114212, + -0.004292807541787624, + 0.03138771280646324, + 0.018985548987984657, + 0.004153493791818619, + -0.008870722725987434, + -0.018467172980308533, + 0.02235499769449234, + 0.030506473034620285, + -0.0005758841871283948, + 0.004950498230755329, + -0.007756212260574102, + 0.020994259044528008, + 0.005915974732488394, + 0.003638356924057007, + 0.0062723588198423386, + -0.03001401387155056, + -0.01689908280968666, + 0.012868703342974186, + 0.003576799528673291, + -0.021655188873410225, + 0.005958092864602804, + -0.012622473761439323, + -0.005329560954123735, + -0.014449751935899258, + 0.011378370225429535, + 0.007568300701677799, + 0.01892075128853321, + 0.02695559151470661, + -0.0014482151018455625, + -0.017469296231865883, + 0.022432753816246986, + -0.004215050954371691, + -0.0014798037009313703, + 0.014683022163808346, + 0.003819788806140423, + -0.02012597769498825, + 0.008410663343966007, + -0.016393665224313736, + 0.03042871505022049, + 0.006372794508934021, + -0.010289778932929039, + -0.004496918525546789, + -0.004075737204402685, + -0.02560781128704548, + -0.016173355281352997, + -0.0023148762993514538, + -0.004568194970488548, + 0.0027716958429664373, + 0.0362086184322834, + -0.013069573789834976, + 0.03397959843277931, + 0.0055693103931844234, + 0.022005094215273857, + -0.030169527977705002, + -0.02055363915860653, + 0.017767364159226418, + -0.015991922467947006, + 0.009758442640304565, + -0.01037401519715786, + -0.017197148874402046, + -0.003382408292964101, + 0.023676859214901924, + -0.0038003495428711176, + -0.0021496436093002558, + 0.03786742314696312, + -0.016056720167398453, + -0.01522731687873602, + 0.007373909465968609, + 0.007944123819470406, + 0.005310121923685074, + 0.00219338177703321, + 0.0043608443811535835, + -0.00844954140484333, + -0.011702354997396469, + 0.012914060615003109, + 0.014994047582149506, + -0.029521556571125984, + -0.01772848516702652, + 0.023275116458535194, + -0.005157848820090294, + -0.018013592809438705, + 0.009427977725863457, + -0.024221153929829597, + -0.0008626113412901759, + -0.01728786528110504, + 0.029521556571125984, + 0.03382408246397972, + -0.014631183817982674, + 0.00613952474668622, + 0.007937643676996231, + -0.015240277163684368, + -0.025918837636709213, + 0.0019196139182895422, + -0.010529528371989727, + 0.004185892175883055, + -0.0007322071469388902, + -0.023080725222826004, + 0.017987674102187157, + -0.001112080179154873, + 0.00834586564451456, + -0.01038049440830946, + 0.00492781912907958, + -0.041185032576322556, + -0.01349075511097908, + -0.0322430357336998, + 0.027499886229634285, + 0.018376456573605537, + -0.012894622050225735, + 0.006217281334102154, + -0.0191540215164423, + -0.02939196303486824, + -0.0056600263342261314, + -0.028951341286301613, + -0.00023954675998538733, + -0.039007849991321564, + -0.009142870083451271, + 0.020605476573109627, + -0.007671975996345282, + 0.009408538229763508, + -0.013749943114817142, + -0.01730082370340824, + -0.03610493987798691, + -0.011987462639808655, + 0.19408026337623596, + -0.028277453035116196, + -0.014734859578311443, + 0.02050180174410343, + -0.011598680168390274, + -0.03320202976465225, + 0.02419523522257805, + -0.012162414379417896, + -0.005407317541539669, + 0.02192733623087406, + 0.001960112014785409, + 0.013179728761315346, + 0.000786474731285125, + 0.01634182780981064, + 0.016419583931565285, + -0.01420352328568697, + -0.025867000222206116, + -0.009408538229763508, + 0.00038007544935680926, + 0.03942255303263664, + 0.027551725506782532, + -0.020385166630148888, + -0.007587739732116461, + -0.023819413036108017, + 0.04756106808781624, + 0.026320580393075943, + -0.015966003760695457, + 0.003797109704464674, + 0.03651964291930199, + 0.011028465814888477, + -0.03105076774954796, + 0.002207960933446884, + 0.028277453035116196, + -0.01198098249733448, + -0.0046945493668317795, + 0.012123536318540573, + 0.0049375384114682674, + -0.03447205573320389, + 0.022847454994916916, + 0.01632886752486229, + 0.013225086964666843, + -0.025879960507154465, + -0.01753409393131733, + -0.016199273988604546, + 0.01219481322914362, + 0.020190775394439697, + 0.002949887653812766, + -0.007108241319656372, + 0.009797320701181889, + 0.0004551995953079313, + -0.018609724938869476, + 0.008786486461758614, + 0.016380704939365387, + 0.030973011627793312, + 0.007568300701677799, + -0.013361160643398762, + 0.007879327051341534, + -0.003306271741166711, + -0.013840659521520138, + 0.01649734005331993, + -0.01956872269511223, + 0.019205858930945396, + -0.0037161135114729404, + 0.025076474994421005, + -0.018169105052947998, + 0.02050180174410343, + -0.018259821459650993, + -0.011721794493496418, + -0.0017479016678407788, + -0.037141695618629456, + 0.0008901500841602683, + -0.0030276442412286997, + -0.03911152482032776, + 0.014216482639312744, + -0.013134371489286423, + -0.02597067505121231, + 0.002178802387788892, + 0.00814499519765377, + 0.028458883985877037, + 0.013672186993062496, + -0.016406623646616936, + 0.006285318173468113, + -0.00786636769771576, + -0.022277241572737694, + -0.00010600399400573224, + -0.007412787526845932, + 0.011009026318788528, + 0.015680896118283272, + 0.004367324057966471, + -0.021888459101319313, + -0.01693795993924141, + 0.012058739550411701, + -0.0023343153297901154, + -0.0012562536867335439, + 0.026527930051088333, + -0.003350009908899665, + 0.020294450223445892, + -0.0023100164253264666, + -0.008300507441163063, + -0.003554120659828186, + -0.018842995166778564, + 0.06541914492845535, + 0.0362863726913929, + -0.017585931345820427, + -0.0024687692057341337, + 0.0036772352177649736, + -0.011734753847122192, + 0.023806452751159668, + -0.013853618875145912, + -0.003790630027651787, + -0.01651030033826828, + -0.018674522638320923, + 0.029469719156622887, + -0.022717861458659172, + 0.009654766879975796, + 0.001368028693832457, + 0.0005005575367249548, + 0.016380704939365387, + 0.013283404521644115, + -0.002716618124395609, + -0.028484802693128586, + 0.009265984408557415, + 0.01956872269511223, + -0.016821326687932014, + -0.005164328496903181, + -0.031180361285805702, + -0.01853196881711483, + 0.02638537622988224, + 0.0036934344097971916, + -0.016225192695856094, + 0.011702354997396469, + -0.013918415643274784, + 0.0181172676384449, + -0.011767152696847916, + 0.00568594504147768, + 0.004072497598826885, + -0.009836198762059212, + -0.011183978989720345, + -0.0025659650564193726, + -0.0016912041464820504, + 0.015318033285439014, + -0.011844908818602562, + 0.01835053786635399, + -0.0015810491750016809, + -0.006836093496531248, + -0.0054170372895896435, + 0.01673061028122902, + -0.0033467700704932213, + -0.02073507010936737, + -0.0262039452791214, + -0.03001401387155056, + 0.005242085084319115, + 0.010309217497706413, + -0.024532180279493332, + 0.027499886229634285, + 0.01048417016863823, + -0.01018610317260027, + -0.03099893033504486, + 0.010918310843408108, + 0.016251111403107643, + -0.019607601687312126, + -0.010062988847494125, + 0.0023051565513014793, + -0.01715826988220215, + 0.0019082744838669896, + 0.00745814573019743, + -0.16245926916599274, + 0.014734859578311443, + 0.01238920446485281, + -0.030480554327368736, + -0.0001215957963722758, + 0.011728274635970592, + -0.008831843733787537, + 0.012246650643646717, + -0.022303160279989243, + -0.00020390836289152503, + 0.0181043092161417, + -0.0066935401409864426, + -0.030532391741871834, + -0.016601014882326126, + -0.0016928240656852722, + -0.01871340163052082, + -0.01552538387477398, + 0.026437215507030487, + 0.025478217750787735, + 0.019789032638072968, + -0.0071212006732821465, + -0.01832461915910244, + 0.014138726517558098, + 0.008909600786864758, + -0.0018467172048985958, + 0.021395999938249588, + -0.023275116458535194, + 0.0362086184322834, + -0.0018564367201179266, + -0.02155151404440403, + -0.02541342005133629, + 0.012071698904037476, + 0.0034439656883478165, + 0.0038683866150677204, + -0.010218502022325993, + 0.003696674248203635, + 0.015292114578187466, + -0.007905245758593082, + -0.0034990431740880013, + 0.03444613516330719, + 0.02054067887365818, + 0.041988518089056015, + -0.00659634405747056, + 0.018402375280857086, + -0.007626618258655071, + 0.021616311743855476, + 0.021694067865610123, + -0.016056720167398453, + -0.013957294635474682, + -0.01954280398786068, + -0.004846822936087847, + -0.017819201573729515, + -0.013736983761191368, + 0.020255571231245995, + -0.022445714101195335, + 0.03286508843302727, + 0.01609559915959835, + 0.015460587106645107, + 0.004124335013329983, + -0.016004882752895355, + 0.006771296262741089, + -0.028847666457295418, + 0.02400084398686886, + 0.0062140412628650665, + 0.0010399933671578765, + -0.01789695769548416, + -0.008028360083699226, + 0.004613553173840046, + -0.021292325109243393, + 0.0002401542296865955, + -0.019426168873906136, + -0.01671764999628067, + 0.0027133782859891653, + 0.0023488947190344334, + 0.0013477795291692019, + -0.004506637807935476, + -0.007983001880347729, + 0.005348999984562397, + 0.0022112007718533278, + -0.02133120410144329, + -0.01628999039530754, + 0.025024637579917908, + -0.0011768771801143885, + -0.013853618875145912, + -0.022588267922401428, + 0.006000210996717215, + -0.005465635098516941, + 0.012214252725243568, + -0.019244737923145294, + 0.006534786894917488, + 0.03263181820511818, + -0.019879749044775963, + -0.02737029269337654, + -0.02576332539319992, + -0.0054170372895896435, + -4.8926867748377845e-05, + -0.00011106627061963081, + 0.013309323228895664, + -0.023313995450735092, + 0.0022938172332942486, + 0.01673061028122902, + -0.008656891994178295, + -0.022264281287789345, + 0.011009026318788528, + 0.01277150772511959, + -0.0005151369259692729, + -0.03263181820511818, + 0.0033402901608496904, + 0.03688250482082367, + -0.02374165505170822, + 0.0036415967624634504, + 0.002851072233170271, + 0.012939980253577232, + -0.010062988847494125, + -0.004328445997089148, + -0.0002318521001143381, + 0.006654661614447832, + -0.0211497712880373, + 0.010957188904285431, + 0.014060969464480877, + 0.05175992101430893, + -0.012356805615127087, + -0.01695092022418976, + 0.006016410421580076, + 0.0044191619381308556, + -0.03162098303437233, + -0.09315230697393417, + 0.022860415279865265, + 0.02278265915811062, + -0.002795994747430086, + 0.006155724171549082, + 0.0302213653922081, + -0.00523236533626914, + 0.024519219994544983, + 0.006473229732364416, + 0.03983725234866142, + -0.023262156173586845, + -0.011922665871679783, + -0.015486505813896656, + -0.003280353033915162, + 0.019400250166654587, + -0.030661985278129578, + -0.014423833228647709, + -0.029106855392456055, + -0.028251534327864647, + 0.01990566775202751, + 0.010114826261997223, + -0.0051740482449531555, + -0.0011509583564475179, + 0.004166453145444393, + -0.02700742892920971, + 0.0012303348630666733, + -0.028355209156870842, + 0.0066676209680736065, + 0.011326531879603863, + -0.01439791452139616, + 0.02035924792289734, + -0.015512424521148205, + -0.005559590645134449, + -0.02354726381599903, + 0.012428082525730133, + 0.01167643629014492, + -0.021395999938249588, + -0.004801464732736349, + 0.04312894493341446, + -0.02619098499417305, + -0.006641702260822058, + 0.010620243847370148, + 0.021059056743979454, + -0.01307605393230915, + 0.0013647888554260135, + -0.03439429774880409, + -0.007555341348052025, + 0.015642018988728523, + 0.01653621904551983, + -0.012039300054311752, + -0.028355209156870842, + -0.04476183280348778, + -0.027525806799530983, + 0.0073026325553655624, + 0.020048221573233604, + -0.0027733156457543373, + -0.0037679511588066816, + 0.009395578876137733, + -0.039940930902957916, + 0.012855743989348412, + -0.010315697640180588, + 0.02116273157298565, + -0.026307620108127594, + 0.02034628763794899, + 0.002101045800372958, + -0.007678455673158169, + -0.02437666803598404, + 0.005284203216433525, + 0.02091650292277336, + -0.0156031409278512, + -0.03436838090419769, + 0.002382913138717413, + 0.003638356924057007, + 0.0030665225349366665, + -0.039370715618133545, + 0.008099636994302273, + -0.04395835101604462, + -0.014670061878859997, + 0.011624598875641823, + 0.0110738230869174, + -0.007134160026907921, + -0.026255782693624496, + 0.014799656346440315, + 0.006952728144824505, + 0.016004882752895355, + 0.02336583286523819, + -0.0161215178668499, + -0.016471421346068382, + 0.007782130967825651, + -0.005996970925480127, + -0.00814499519765377, + 0.02737029269337654, + 0.010672081261873245, + -0.0013664087746292353, + 0.006408432498574257, + 0.017585931345820427, + 0.003699914086610079, + -0.014644143171608448, + 0.011209897696971893, + 0.016601014882326126, + 0.0005766941467300057, + -0.014164645224809647, + -0.04312894493341446, + 0.016277030110359192, + 0.028925422579050064, + 0.001777060329914093, + -0.003583279438316822, + -0.0032949321903288364, + 0.016963878646492958, + 0.02178478240966797, + 0.02257530763745308, + 0.008903120644390583, + 0.004879221320152283, + 0.019050346687436104, + -0.010840553790330887, + -0.00866985134780407, + -0.035767994821071625, + -0.02339175157248974, + 0.0072119166143238544, + 0.025452299043536186, + 0.007108241319656372, + -0.004869501572102308, + 0.004111375659704208, + -0.010199062526226044, + -0.010050029493868351, + 0.03470532223582268, + -0.022653063759207726, + -0.004859782289713621, + 0.00817091390490532, + -0.0019228537566959858, + -0.01731378398835659, + -0.003077862085774541, + -0.0016507060499861836, + 8.114823867799714e-05, + -0.00522912573069334, + -0.007639577612280846, + -0.018233902752399445, + -0.028147857636213303, + 0.006026129703968763, + 0.032346710562705994, + 0.004561715293675661, + 0.06127213314175606, + -0.0049051400274038315, + -0.011274694465100765, + 0.0009176888852380216, + -0.042169950902462006, + 0.006900890730321407, + -0.007082322612404823, + 0.010989587754011154, + 0.006972167640924454, + 0.015538343228399754, + -0.0007386868819594383, + 0.04657615348696709, + 0.012901101261377335, + -0.010801675729453564, + -0.004315486643463373, + 0.0005402457900345325, + -0.0061524841003119946, + 0.01046473067253828, + 0.0013963774545118213, + 0.01836349628865719, + -0.016017841175198555, + 0.03263181820511818, + 0.004892180673778057, + 0.02335287258028984, + -0.006680580321699381, + -0.016613975167274475, + -0.0021674628369510174, + -0.03470532223582268, + -0.020631395280361176, + -0.007561821024864912, + -0.022458672523498535, + -0.007438706699758768, + -0.008767046965658665, + 0.026061391457915306, + 0.00787284690886736, + -0.026903754100203514, + -0.011203417554497719, + 0.004982896614819765, + 0.008656891994178295, + -0.009408538229763508, + 0.02012597769498825, + 0.012842784635722637, + 0.003942903131246567, + 0.006521827541291714, + 0.00015318438818212599, + 0.02680007927119732, + 0.028873585164546967, + -0.018078388646245003, + -0.004529316909611225, + 0.009227106347680092, + -0.003638356924057007, + -0.020670272409915924, + 0.0161215178668499, + 0.0035217220429331064, + 0.01037401519715786, + 0.013140850700438023, + 0.029884420335292816, + 0.013212127611041069, + -0.013309323228895664, + 0.03581983596086502, + 0.02458401769399643, + 0.017274904996156693, + -0.0003559790493454784, + -0.01299829687923193, + -0.0343165397644043, + -0.029158692806959152, + 0.02354726381599903, + -0.016264071688055992, + -0.025841081514954567, + 0.016808366402983665, + 0.01833757758140564, + -0.009875076822936535, + 0.02536158263683319, + -0.0018612965941429138, + 0.01128765381872654, + -0.018817076459527016, + 0.002284097485244274, + -0.018169105052947998, + -0.0004043743829242885, + -0.026100270450115204, + 0.017883997410535812, + 0.03447205573320389, + 0.011689395643770695, + -0.0030762420501559973, + 0.0019066545646637678, + 0.01400913204997778, + -0.01775440387427807, + -0.0031880170572549105, + -0.004801464732736349, + 0.011209897696971893, + -0.021823661401867867, + -0.012058739550411701, + 0.016626935452222824, + -0.04367324337363243, + 0.003609198145568371, + -0.011909706518054008, + -0.011754193343222141, + 0.01895963028073311, + 0.010199062526226044, + 0.0019325733883306384, + 0.09958017617464066, + 0.01269375067204237, + -0.012739108875393867, + 0.02700742892920971, + -0.00010681396088330075, + 0.009926915168762207, + 0.012538237497210503, + 0.012551196850836277, + -0.0004454800218809396, + -0.050023358315229416, + -0.010121306404471397, + -0.024026762694120407, + 0.015862328931689262, + -0.03589759021997452, + -0.0012497740099206567, + 0.03403143584728241, + -0.01198098249733448, + 0.0067259385250508785, + -0.003047083504498005, + 0.02116273157298565, + 0.0322171151638031, + -0.03719353303313255, + 0.0045390366576612, + 0.017236027866601944, + -0.019633520394563675, + -0.02659272775053978, + 0.006210801657289267, + 0.002282477682456374, + -0.004205331671983004, + -0.0050574131309986115, + 0.003265773644670844, + 0.010412893258035183, + -0.0584728978574276, + -0.01539578940719366, + 0.022899294272065163, + -0.020799867808818817, + 0.008391223847866058, + -0.03519778326153755, + 0.013827700167894363, + -0.004334925673902035, + 0.006434351671487093, + 0.029884420335292816, + -0.010905351489782333, + -0.014475670643150806, + -0.0040174201130867004, + 0.016069680452346802, + 0.008527297526597977, + -0.000831832701805979, + -0.01995750516653061 + ], + "metadata": { + "source": "Thesis_Verladegeraeusche_in_Speditionen.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 41, + "has_images": true, + "image_count": 51, + "coordinates": "CoordinatesMetadata(points=((204.16666666666666, 189.02777777777797), (204.16666666666666, 642.3611111111111), (936.1666666666666, 642.3611111111111), (936.1666666666666, 189.02777777777797)), system=)", + "links": [], + "last_modified": "2025-05-05T22:59:16", + "_known_field_names": "frozenset({'cc_recipient', 'link_texts', 'url', 'filetype', 'category_depth', 'page_number', 'filename', 'orig_elements', 'detection_origin', 'email_message_id', 'page_name', 'coordinates', 'table_as_cells', 'link_start_indexes', 'sent_to', 'bcc_recipient', 'languages', 'last_modified', 'link_urls', 'file_directory', 'subject', 'data_source', 'detection_class_prob', 'image_base64', 'text_as_html', 'attached_to_filename', 'key_value_pairs', 'signature', 'sent_from', 'header_footer_type', 'parent_id', 'links', 'emphasized_text_contents', 'emphasized_text_tags', 'image_mime_type', 'is_continuation', 'image_path'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "Thesis_Verladegeraeusche_in_Speditionen.pdf", + "detection_class_prob": 0.2568194270133972, + "parent_id": "d45475a34bc527cde6987546fa6dd2f5", + "text_as_html": "
Flurf\u00f6rderger\u00e4t |Anzahl Einzelereignisse ElMax-PegelSchallleistungspegel
LAFmaxLWA,5sLWAmaxLWA,1hKlLWAT,1h
[dB(A)][dB(A)][dB(A)][dB(A)][dB(A)][dB(A)]
Gabelstapler29769,3100,7108,872,15,777,8
STABW [dB]6,54,96,54,92,9-
Gabelhubwagen9968,6100,7108,172,16,279,5
STABW [dB]6,45,16,4512,7-
", + "id": "5ba44de7-0ff3-4c0c-b018-67e92171e1c2", + "processing_timestamp": "2025-05-06T14:18:19.298665", + "chunk_number": 2, + "total_chunks": 49, + "chunking_strategy": "hybrid", + "word_count": 567 + } +} \ No newline at end of file diff --git a/data/processed/85fd305f-83de-70b0-47e8-2dc000000003.json b/data/processed/85fd305f-83de-70b0-47e8-2dc000000003.json new file mode 100644 index 0000000000000000000000000000000000000000..b82c27af651f7263fa36fc2d5cae0519dad17550 --- /dev/null +++ b/data/processed/85fd305f-83de-70b0-47e8-2dc000000003.json @@ -0,0 +1,1570 @@ +{ + "id": "85fd305f-83de-70b0-47e8-2dc000000003", + "content": "Es werden die allgemeinen Grundlagen der Logistik und Grundlagen zur Ermittlung der notwendigen akustischen Kenngr\u00f6\u00dfen aufgezeigt. Ziel dieses Kapitel ist es ein grund- legendes Wissen darzubieten, um ein vollst\u00e4ndiges Verst\u00e4ndnis der Thesis zu vermitteln. ## 2.1 Logistik\n\n\n## Einer der wichtigsten Komponente der globalen Wirtschaft ist die Logistik. Sie verbindet\n\ndie Gesellschaft durch den Handel und Verbrauch von G\u00fctern. Als Grundger\u00fcst der Lo- gistik, steht der G\u00fcteraustausch zwischen Unternehmen oder dem privaten Haushalt. Im t\u00e4glichen Leben machen wir permanent Gebrauch von Logistik, sei es f\u00fcr den Trans- port von Personen oder von G\u00fctern. Vernetzt werden die Unternehmen \u00fcber die Liefer- und Logistikkette, welche den Austausch von G\u00fctern erm\u00f6glichen. Die Kette beginnt mit der G\u00fcterbereitstellung, der G\u00fcterverwendung und der G\u00fcterverteilung. Unternehmen stellen G\u00fcter \u00fcber die Produktionskette her, die dann bereitgestellt werden. Diese be- reitgestellten G\u00fcter werden entweder als Sachg\u00fcter wie Smartphones verwendet oder als Konsumg\u00fcter wie Nahrungsmittel verbraucht. Damit Unternehmen die G\u00fcter an den Kunden verteilen k\u00f6nnen wird die Logistik ben\u00f6tigt. Die Logistik stellt das Bindeglied zwischen Bereitstellung und Verwendung der G\u00fcter dar. Ein sogenannter G\u00fcterfluss ist entstanden [5]. ## Die Logistikkette\n\nDie raumzeitliche Transformation der G\u00fcter ist einer der Hauptarbeitsprozesse der Lo- gistik. Dies betrifft die \u00dcberbr\u00fcckung der Zeit zwischen Fertigstellung und dem Ver- brauch. Um die Zeit zu \u00fcberbr\u00fccken, bis die G\u00fcter verbraucht werden, ist es erforderlich, diese zwischenzulagern. Diese Zwischenlagerung betrifft den Transport, den Umschlag und die Lagerung der G\u00fcter. Unter Umschlag wird der Vorgang bezeichnet, indem die G\u00fcter das Transportmittel durch Flurf\u00f6rderger\u00e4te wechseln. [9]\nLogistikunternehmen, auch bekannt als Speditionen, tragen die Verantwortung f\u00fcr den G\u00fcterfluss sowie die damit verbundenen Prozesse. Ihre Aufgabe besteht darin, die\n6\n2 Grundlagen\nMenge, Art und Handhabungseigenschaften der G\u00fcter zu ber\u00fccksichtigen und den ge- samten Prozess der Planung, Steuerung und Kontrolle zu gew\u00e4hrleisten. Die Menge und Art der G\u00fcter ergeben sich aus der Zusammenstellung der G\u00fcter f\u00fcr eine Bestellung im Lager. Die G\u00fcterhandhabungseigenschaft wird durch die Verpackung ge\u00e4ndert. Die G\u00fc- ter werden auf sogenannten Ladungstr\u00e4ger, zu Ladeeinheiten gebildet. Die Ladetr\u00e4ger sind spezielle und genormte Lade- oder Transporthilfsmittel wie beispielsweise Schach- teln, Beh\u00e4lter oder Paletten. Eine Logistikkette entsteht aus den einzelnen logistischen Prozessanteilen, die den Lauf einer Ladeeinheit darstellt.", + "embedding": [ + 0.026644760742783546, + 0.015669595450162888, + 0.01612098328769207, + -0.036652665585279465, + 0.008066940121352673, + -0.005039419513195753, + -0.01609518937766552, + 0.0051812841556966305, + 0.0025793572422116995, + -0.036755841225385666, + 0.005116799846291542, + 0.010427052155137062, + -0.02069934271275997, + 0.0063677881844341755, + 0.01242605410516262, + 0.0002577342092990875, + 0.045603036880493164, + -0.0053650629706680775, + 0.017320385202765465, + 0.00655156746506691, + -0.031984031200408936, + -0.009337273426353931, + 0.021253904327750206, + -0.011020303703844547, + 0.013967219740152359, + 0.011052546091377735, + 0.022569376975297928, + -0.018584270030260086, + -0.01294192485511303, + -0.012193911708891392, + -0.004088281188160181, + -0.014470194466412067, + -0.016275744885206223, + 0.0133739672601223, + -0.0036659114994108677, + -0.00820880476385355, + 0.011278240010142326, + -0.017836255952715874, + 0.013799561187624931, + -0.022556480020284653, + 0.009962767362594604, + 0.024026712402701378, + 0.002684143604710698, + -0.014379916712641716, + -0.0044171493500471115, + 0.026464205235242844, + -0.017243003472685814, + -0.005826123524457216, + -0.027831265702843666, + 0.003920623101294041, + 0.01770728826522827, + 0.03541457653045654, + -0.03348005935549736, + -0.006603154819458723, + -0.009034198708832264, + 0.010420603677630424, + -0.013361071236431599, + -0.00820880476385355, + 0.01403170358389616, + -0.04191455617547035, + -0.01548904087394476, + 0.013528728857636452, + -0.028372930362820625, + -0.0003675584157463163, + -0.0180039145052433, + -0.007699381560087204, + -0.02749594859778881, + -0.005481134168803692, + -0.022066401317715645, + 0.002000614069402218, + 0.020260851830244064, + 0.024091197177767754, + 0.016752924770116806, + 0.026670554652810097, + 0.031287603080272675, + 0.004500978626310825, + 0.017449352890253067, + -0.0015322994440793991, + -0.032577283680438995, + 0.01992553472518921, + 0.004349441267549992, + -0.011291136965155602, + -0.020144781097769737, + 0.04996215179562569, + 0.024890797212719917, + -0.0012574366992339492, + 0.025006869807839394, + 0.009195408783853054, + -0.0052070776000618935, + 0.011826353147625923, + -0.014276742935180664, + -0.0007133535109460354, + 0.004578359425067902, + 0.021950330585241318, + -0.006071162410080433, + -0.0014807123225182295, + -0.007286684587597847, + 0.01792653277516365, + -0.003196791047230363, + -0.05834506079554558, + -0.013270793482661247, + -0.0026986526791006327, + -0.01486999448388815, + 0.004372010473161936, + -0.024091197177767754, + -0.01666264794766903, + 0.002229531994089484, + 0.020015813410282135, + 0.013064444996416569, + -0.017836255952715874, + -0.030771732330322266, + 0.05264468118548393, + -0.011194410733878613, + 0.0009995009750127792, + 0.028347136452794075, + -0.009317927993834019, + 0.046273671090602875, + -0.01668844185769558, + 0.013025754131376743, + -0.027857059612870216, + 0.025522740557789803, + 0.010020802728831768, + 0.019964225590229034, + 0.0031919546891003847, + 0.035491958260536194, + 0.022414615377783775, + -0.0043655624613165855, + 0.009595208801329136, + -0.021602116525173187, + -0.026025714352726936, + -0.016237054020166397, + -0.014341226778924465, + 0.0007459985208697617, + 0.021202316507697105, + -0.0015137603040784597, + 0.008286185562610626, + -0.009885386563837528, + 0.022491995245218277, + -0.01661106012761593, + -0.04552565515041351, + 0.0097048319876194, + 0.019177520647644997, + -0.02598702535033226, + -0.02242751233279705, + -0.015476143918931484, + 0.028811421245336533, + 0.011542623862624168, + 0.017810462042689323, + -0.0026373928412795067, + 0.0077574169263243675, + 0.013348174281418324, + -0.010381912812590599, + 0.013257896527647972, + -0.023871952667832375, + 0.008956817910075188, + 0.000770582992117852, + -0.0073963068425655365, + 0.010478639043867588, + -0.006293631624430418, + -0.016804512590169907, + 0.012458295561373234, + -0.01738486811518669, + 0.00838291086256504, + 0.0052070776000618935, + 0.02625785768032074, + 0.019125934690237045, + 0.0035240468569099903, + 0.004597704391926527, + -0.0012985451612621546, + -0.00023456029884982854, + 0.002630944363772869, + 0.008273288607597351, + -0.003656239015981555, + 0.014276742935180664, + -0.02153763361275196, + -0.00793797243386507, + 0.007299581076949835, + 0.009182511828839779, + -0.041450273245573044, + -0.02267255075275898, + -0.01373507734388113, + 0.02156342752277851, + 0.002123133512213826, + -0.0007274593808688223, + -0.0417855866253376, + 0.012251947075128555, + 0.004907227121293545, + 0.03386696055531502, + 0.009891835041344166, + 0.0032322572078555822, + -0.0021585996728390455, + 0.015953324735164642, + 0.01310313493013382, + -0.001078493776731193, + -0.631839394569397, + 0.0011042873375117779, + 0.002658350160345435, + -0.03443441912531853, + 0.009105131030082703, + 0.020738033577799797, + 0.016353124752640724, + 0.009253444150090218, + -0.0014807123225182295, + 0.04119233787059784, + 0.0036239970941096544, + 0.009891835041344166, + 0.009872490540146828, + -0.022259853780269623, + -0.023549532517790794, + -0.030281655490398407, + -0.012445398606359959, + -0.02069934271275997, + 0.03301577270030975, + 0.013567419722676277, + -0.026193372905254364, + 0.012471192516386509, + 0.005755191203206778, + 0.018945379182696342, + 0.011297585442662239, + 0.016623957082629204, + 0.03629155829548836, + -0.013025754131376743, + 0.012916131876409054, + 0.010323877446353436, + -0.024813417345285416, + -0.0010736575350165367, + -0.03923202306032181, + 0.02407830022275448, + 0.04526771977543831, + 0.025380875915288925, + -0.00845384318381548, + 0.017423558980226517, + 0.01054312288761139, + 0.01555352471768856, + -0.012419605627655983, + -0.036111000925302505, + 0.014379916712641716, + -0.0014637853018939495, + 0.011162168346345425, + -0.004307526629418135, + 0.053960155695676804, + -0.001230031019076705, + -0.004510650876909494, + -0.021421562880277634, + 0.01577276922762394, + -0.014560472220182419, + 0.0033048016484826803, + -0.002258549677208066, + 0.02035112865269184, + 0.006364563945680857, + 0.009034198708832264, + -0.021357078105211258, + 0.008299082517623901, + -0.0017378419870510697, + -0.0025342185981571674, + -0.010291635990142822, + -0.008731124922633171, + -0.020634857937693596, + -0.03750385344028473, + 0.020286645740270615, + -0.02628365159034729, + -0.02739277482032776, + 0.03992845118045807, + -0.020183470100164413, + -0.006841745227575302, + 0.006545118987560272, + -0.02057037502527237, + -0.013889838941395283, + 0.03807131201028824, + 0.013515831902623177, + -0.003121022367849946, + -0.013670593500137329, + 0.009098682552576065, + 0.011478140018880367, + -0.012645299546420574, + -0.012277740985155106, + -0.012161669321358204, + -0.007551068440079689, + 0.03415068984031677, + -0.01013687439262867, + 0.004513875115662813, + -0.009485586546361446, + -0.008221701718866825, + 0.006364563945680857, + 0.007905730046331882, + 0.026128889992833138, + -0.002148926956579089, + -0.01523110456764698, + -0.0006855448009446263, + 0.039051469415426254, + -0.006132422015070915, + 0.025355082005262375, + 0.01706244796514511, + -0.02407830022275448, + -0.004559013992547989, + 0.011516829952597618, + 0.014534678310155869, + 0.0015685716643929482, + 0.018287643790245056, + 0.012754921801388264, + -0.007028748746961355, + 0.008589260280132294, + 0.017668597400188446, + -0.024929488077759743, + -0.007525274995714426, + -0.016868997365236282, + -0.007073887623846531, + -0.002946915803477168, + -0.00015163799980655313, + -0.019538631662726402, + 0.02269834466278553, + -0.006574137136340141, + 0.008286185562610626, + -0.022904692217707634, + 0.002930794842541218, + -0.004152765031903982, + 0.030126893892884254, + -0.018635855987668037, + -0.011787663213908672, + 0.024955281987786293, + 0.0021956779528409243, + 0.008105630055069923, + -0.0020054501947015524, + -0.006990058347582817, + 0.004278508946299553, + -0.01296771876513958, + 0.006332322023808956, + -0.006461290176957846, + 0.028372930362820625, + -0.011852147057652473, + 0.04108916223049164, + -0.00847963709384203, + 0.013412658125162125, + -0.03747806325554848, + -0.02623206377029419, + -0.021369975060224533, + 0.010859094560146332, + -0.039670515805482864, + -0.02336897701025009, + -0.03154553845524788, + -0.006893332581967115, + -0.010252945125102997, + -0.005345718003809452, + 0.011761869303882122, + -0.009524276480078697, + -0.032551489770412445, + -0.025999922305345535, + 0.03167450800538063, + 0.005049091763794422, + -0.003132306970655918, + -0.03046220913529396, + -0.010362568311393261, + 0.010639849118888378, + -0.04010900482535362, + -0.015463246963918209, + 0.023768777027726173, + -0.04108916223049164, + 0.011819904670119286, + -0.023730088025331497, + -0.020428510382771492, + 0.0021118486765772104, + 0.0025261580012738705, + -0.03502767160534859, + -0.03502767160534859, + 0.006970712915062904, + -0.00591640081256628, + -0.021911639720201492, + 0.0075188265182077885, + -0.0014686215436086059, + -0.007415652275085449, + -7.828752131899819e-05, + 0.010891336016356945, + 0.021202316507697105, + -0.010581813752651215, + 0.009375963360071182, + -0.006396806333214045, + -0.022169575095176697, + -0.0029162857681512833, + 0.01913883164525032, + 0.01548904087394476, + 0.002263386035338044, + 0.019074346870183945, + -0.020286645740270615, + 0.001454112702049315, + -0.0032290329691022635, + 0.03105546161532402, + -0.003071047365665436, + 0.004510650876909494, + -0.02736698091030121, + -0.005926073528826237, + -0.004246267024427652, + 0.016920583322644234, + -0.008872989565134048, + 0.007041645236313343, + 0.03995424509048462, + -0.012045598588883877, + 0.010459293611347675, + -0.019822360947728157, + 0.008872989565134048, + -0.0024165352806448936, + 0.004936245270073414, + -0.013864045962691307, + 0.040857020765542984, + 0.01851978525519371, + 0.02806340716779232, + -0.009311479516327381, + -0.03409910202026367, + -0.00545211648568511, + 0.018365023657679558, + 0.05132921040058136, + -0.012503434903919697, + 0.01965470239520073, + -0.011304032988846302, + -0.002229531994089484, + -0.00019445935322437435, + -0.005861589685082436, + 0.02860507182776928, + -0.01120085921138525, + -0.022853106260299683, + -0.0037529647815972567, + 0.012812957167625427, + 0.017436455935239792, + -0.001230031019076705, + -0.031829267740249634, + -0.011549072340130806, + -0.010227152146399021, + -0.01690768636763096, + 0.01577276922762394, + 0.016675544902682304, + 0.007273787632584572, + 0.01960311457514763, + -0.009550070390105247, + 0.029043562710285187, + 0.014341226778924465, + 0.004201128147542477, + 0.026618966832756996, + 0.021099142730236053, + -0.004239818546921015, + 0.013799561187624931, + -0.022827312350273132, + 0.01617257110774517, + 0.01938387006521225, + -0.021950330585241318, + -0.010098183527588844, + 0.016056498512625694, + -0.0032209723722189665, + -0.009936974383890629, + -0.03280942514538765, + 0.00867953710258007, + -0.026386825367808342, + 0.01827474683523178, + -0.0037529647815972567, + 0.017836255952715874, + 0.0104979844763875, + 0.0037561890203505754, + 0.0008705331129021943, + -0.01103964913636446, + -0.01240026019513607, + -0.004378458950668573, + 0.002827620366588235, + -0.016843203455209732, + -0.008898782543838024, + -0.028553485870361328, + 0.024194370955228806, + 0.012135876342654228, + -0.004559013992547989, + -0.014225155115127563, + 0.01176831778138876, + 0.021963227540254593, + 0.00820880476385355, + 0.03095228783786297, + -0.0008818177739158273, + 0.004668636713176966, + 0.018081294372677803, + -0.014341226778924465, + -0.027186425402760506, + -0.021924536675214767, + 0.02873403951525688, + 0.0010164279956370592, + -0.015940427780151367, + -0.015682492405176163, + 0.0071061295457184315, + -0.030023718252778053, + -0.0072222002781927586, + -0.01160710770636797, + -0.00867953710258007, + -0.002316585276275873, + -0.03043641708791256, + 0.008170113898813725, + -0.00016352722013834864, + 0.019396767020225525, + 0.013670593500137329, + -0.012555021792650223, + 0.018777720630168915, + 0.014083290472626686, + -0.028372930362820625, + -0.02590964362025261, + -0.019370973110198975, + 0.025754882022738457, + 0.011213756166398525, + -0.029146738350391388, + 0.0040044523775577545, + 0.004288181662559509, + -0.03172609582543373, + -0.0006742601399309933, + -0.016082292422652245, + -0.006828848272562027, + -0.020957278087735176, + 0.00807338859885931, + 0.0104979844763875, + 0.013148274272680283, + 6.735548231517896e-05, + 0.03381537273526192, + 0.014573369175195694, + -0.011058994568884373, + -0.023871952667832375, + -0.005455340724438429, + 0.020776722580194473, + 0.032499901950359344, + -0.001005949336104095, + 0.003791655180975795, + 0.04062487930059433, + -0.012961270287632942, + -0.026051508262753487, + 0.012909683398902416, + -0.031287603080272675, + 0.019809463992714882, + -0.001837792107835412, + 0.0014928029850125313, + 0.007905730046331882, + 0.038432423025369644, + -0.011187962256371975, + 0.010149771347641945, + -0.0016846427461132407, + -0.0020376923494040966, + -0.009556518867611885, + 0.02170529216527939, + -0.0012139100581407547, + -0.0033886306919157505, + -0.011865044012665749, + -0.006667638663202524, + 0.016701338812708855, + 0.0011526503367349505, + -0.009666141122579575, + 0.02180846594274044, + 0.018687443807721138, + 0.00014559262490365654, + -0.030616970732808113, + -0.007254442200064659, + 0.021253904327750206, + 0.012593711726367474, + 0.009085786528885365, + -0.034279659390449524, + 0.020983071997761726, + -0.007763865403831005, + 0.004639619030058384, + 0.021357078105211258, + 0.004255939740687609, + 0.027908645570278168, + 0.019151728600263596, + 0.011046097613871098, + -0.029997926205396652, + -0.010730125941336155, + 0.002418147400021553, + 0.008879437111318111, + 0.013077341951429844, + 0.004700878635048866, + -0.010517328977584839, + 0.018558476120233536, + 0.004181783180683851, + -0.020260851830244064, + 0.0024245958775281906, + 0.02040271647274494, + -0.01978367008268833, + 0.0051812841556966305, + 0.005078109912574291, + -0.0019570873118937016, + -0.005145817995071411, + -0.003965761978179216, + -0.032525695860385895, + 0.007660691160708666, + -0.022195369005203247, + -0.011858595535159111, + -0.019938431680202484, + -0.023871952667832375, + -0.01609518937766552, + -0.03448600694537163, + -0.0022875675931572914, + 0.02151183970272541, + -0.018042603507637978, + -0.010594709776341915, + -0.019590219482779503, + 0.0267995223402977, + -0.008028249256312847, + 0.018094191327691078, + -0.008163665421307087, + 0.00924699567258358, + 0.0012929028598591685, + -0.010639849118888378, + -0.014147775247693062, + -0.024942385032773018, + -0.027599122375249863, + 0.0038142246194183826, + 0.016546577215194702, + -0.0069320229813456535, + 0.0034305450972169638, + 0.0031290827319025993, + 0.007422100752592087, + -0.006899780593812466, + -0.0018506888300180435, + -0.003801327897235751, + 0.00300978752784431, + 0.013889838941395283, + 0.003939968068152666, + -0.009524276480078697, + -0.00512324832379818, + 0.02857927978038788, + -0.03879353404045105, + -0.002687367843464017, + -0.004633170552551746, + 0.0034079758916050196, + -0.013012857176363468, + 0.008305530063807964, + -0.021357078105211258, + -0.019306490197777748, + -0.018184468150138855, + -0.003469235496595502, + 0.010730125941336155, + 0.02200191840529442, + -0.025896746665239334, + 0.015966221690177917, + 0.016972171142697334, + -0.020712239667773247, + 0.01730748824775219, + 0.020776722580194473, + 0.025110043585300446, + 0.04294629767537117, + -0.01965470239520073, + -0.00837001483887434, + -0.0238590557128191, + 0.008350669406354427, + 0.022543583065271378, + 0.008531223982572556, + 0.03711695224046707, + 0.004733120556920767, + 0.0010712393559515476, + -0.03348005935549736, + -0.004039918538182974, + 0.010723678395152092, + 0.02752174250781536, + 0.01272268034517765, + -0.0033209226094186306, + -0.018584270030260086, + 0.014418607577681541, + 0.007331822998821735, + 0.014276742935180664, + -0.015411660075187683, + -0.020750928670167923, + -0.016327330842614174, + -0.0018297316273674369, + -0.0019619236700236797, + -0.007299581076949835, + -0.004707327112555504, + -0.024658655747771263, + -0.015140827745199203, + 0.01462495606392622, + -0.0049104513600468636, + 0.014173568226397038, + -0.006674087140709162, + -0.013902735896408558, + -0.02512294054031372, + -0.02747015468776226, + -0.006545118987560272, + -0.04186296835541725, + 0.014908685348927975, + -0.026980077847838402, + 0.024323338642716408, + 0.024903694167733192, + 0.032009825110435486, + -0.0003197999903932214, + 0.006906229071319103, + 0.009775764308869839, + -0.004923348315060139, + 0.0027163857594132423, + -0.0089116794988513, + 0.00027607183437794447, + -0.030126893892884254, + 0.022092195227742195, + 0.012000460177659988, + 0.004865312483161688, + 0.007247994188219309, + 0.01056891679763794, + 0.011819904670119286, + 0.0388709157705307, + -0.010871990583837032, + -0.015295588411390781, + -0.0042688362300395966, + -0.0208154134452343, + 0.007209303788840771, + 0.025819366797804832, + 0.008241046220064163, + 0.015901736915111542, + -0.03706536442041397, + 0.0034466662909835577, + 0.007628449238836765, + -0.013541625812649727, + -0.018326332792639732, + -0.01965470239520073, + 0.024877900257706642, + -0.05011691153049469, + 0.01755252666771412, + 0.008860092610120773, + -0.009375963360071182, + -0.006429048255085945, + 0.008118527010083199, + -0.025793572887778282, + -0.0073705133982002735, + -0.004559013992547989, + 0.00027042950387112796, + 0.008660192601382732, + -0.005658464971929789, + -0.02806340716779232, + 0.019538631662726402, + -0.027702298015356064, + 0.002877595601603389, + -0.011323378421366215, + 0.004068936221301556, + -0.0054875826463103294, + -0.015837254002690315, + -0.0022746706381440163, + -0.004043142776936293, + -0.016456300392746925, + 0.03417648375034332, + 0.022337233647704124, + 0.007357616908848286, + 0.031803473830223083, + 0.0008568302728235722, + -0.018184468150138855, + 0.0025761330034583807, + -0.016004912555217743, + 0.013670593500137329, + -0.008724676445126534, + 0.03422807157039642, + 0.0005739069893024862, + -0.013954322785139084, + -0.0179523266851902, + -0.053960155695676804, + -0.0021843931172043085, + -0.004243042785674334, + 0.009782212786376476, + 0.002608375158160925, + -0.026722142472863197, + -0.008124975487589836, + 0.002377845114096999, + 0.019022760912775993, + -0.006944919470697641, + -0.014250949025154114, + 0.03623997047543526, + 0.023356080055236816, + 0.005242543760687113, + -0.002171496395021677, + -0.004678309429436922, + 0.0036401180550456047, + 0.00591640081256628, + 0.011581314727663994, + -0.003952865023165941, + -0.014470194466412067, + -0.00508778216317296, + -0.0067708129063248634, + 0.043952248990535736, + 0.0020683221518993378, + 0.026399722322821617, + 0.00804759468883276, + -0.008860092610120773, + 0.005745518486946821, + -0.014753923751413822, + -0.013631903566420078, + -0.004791156388819218, + -0.011542623862624168, + 0.0149602722376585, + 0.001358998822979629, + 0.0032516024075448513, + 0.0328352190554142, + 0.006964264903217554, + -0.01784915290772915, + -0.012187463231384754, + 0.009969215840101242, + 0.015308485366404057, + -0.010343222878873348, + 0.001924845390021801, + 0.017565423622727394, + 0.005635895766317844, + 0.02232433669269085, + -0.0036659114994108677, + -0.0004292211669962853, + 0.00046629944699816406, + -0.0073189265094697475, + -0.015992015600204468, + -0.014018806628882885, + 0.006445168983191252, + -0.006222699303179979, + -0.023846158757805824, + 0.014637853018939495, + -0.03634314611554146, + -0.0014121981803327799, + -0.024323338642716408, + 0.009388860315084457, + -0.03151974454522133, + -0.024336235597729683, + -0.0017910412279888988, + 0.02296917699277401, + 0.002166660036891699, + -0.02173108607530594, + -0.012161669321358204, + -0.007950868457555771, + 0.020712239667773247, + -0.05076175183057785, + 0.024194370955228806, + 0.024220164865255356, + -0.014470194466412067, + -0.012097185477614403, + 0.015695389360189438, + 0.010762368328869343, + -0.016327330842614174, + 0.04547407105565071, + -0.008653744123876095, + -0.013541625812649727, + -0.006067938171327114, + -0.0012848423793911934, + 0.006509652826935053, + -0.017268797382712364, + -0.015321382321417332, + 0.0015218207845464349, + 0.008311978541314602, + 0.007905730046331882, + 0.000899550854228437, + 6.614640733459964e-05, + 0.004007676616311073, + 0.02146025188267231, + -0.0022005143109709024, + 0.009762867353856564, + -0.021898742765188217, + 0.01946124993264675, + 0.030900700017809868, + 0.008795608766376972, + -0.011491036973893642, + -0.015321382321417332, + -0.01011108048260212, + -0.003098452929407358, + -0.005735845770686865, + -0.00031274708453565836, + 0.019551528617739677, + 0.006751467939466238, + -0.024116991087794304, + -0.01399301365017891, + 0.001666909665800631, + -0.005590756889432669, + 0.00018811172049026936, + -0.010897784493863583, + -0.015334279276430607, + 0.020686445757746696, + 0.029507847502827644, + 0.0039496407844126225, + -0.01031098049134016, + 0.01459916215389967, + 0.006964264903217554, + -0.05561094358563423, + 0.018648752942681313, + -0.013477141968905926, + 0.012116530910134315, + -0.005319924559444189, + -0.034357041120529175, + -3.858960189973004e-05, + 0.0008802056545391679, + -0.022659653797745705, + -0.0035820824559777975, + 0.013722180388867855, + -0.002316585276275873, + 0.0008947145543061197, + 0.03825186938047409, + -0.003291904693469405, + 0.017488041892647743, + -0.0013654473004862666, + 0.027289601042866707, + -0.015656698495149612, + 0.00793797243386507, + 0.0024923039600253105, + 0.0007508347625844181, + -9.576871525496244e-05, + -0.015953324735164642, + -0.02924991212785244, + -0.010910681448876858, + 0.03941258043050766, + -0.006867538671940565, + 0.008395807817578316, + 0.04289471358060837, + -0.006738570984452963, + -0.021176522597670555, + -0.006532222498208284, + 0.011265343055129051, + 0.004065711982548237, + -0.0023407668340951204, + 0.020364025607705116, + -0.024052506312727928, + 0.002437492599710822, + -8.342608634848148e-05, + 0.011091236025094986, + -0.0328352190554142, + 0.007048093713819981, + 0.002224695635959506, + 0.004255939740687609, + 0.014753923751413822, + 0.022014815360307693, + -0.008324875496327877, + 0.006325874011963606, + -0.007512378040701151, + 0.03384116664528847, + 0.030023718252778053, + -0.011574866250157356, + 0.008195907808840275, + 0.026567380875349045, + -0.004207576625049114, + -0.015979118645191193, + -0.001837792107835412, + -0.03051379695534706, + 0.026051508262753487, + 0.002326257759705186, + -0.026593172922730446, + 0.012077840976417065, + 0.002558399923145771, + 0.00305976253002882, + -0.010304532013833523, + 0.003045253688469529, + -0.0008479637326672673, + -0.006841745227575302, + -0.03703957051038742, + 0.029972132295370102, + 0.005013625603169203, + -0.0058067780919373035, + 0.017371971160173416, + -0.011839250102639198, + -0.004097953904420137, + -0.004775035195052624, + -0.017475144937634468, + -0.014947375282645226, + -0.024865005165338516, + -0.026541586965322495, + -8.806087134871632e-05, + -0.006764364428818226, + 0.00014518960961140692, + -0.023201318457722664, + -0.012155220843851566, + -0.0477181114256382, + -0.02736698091030121, + 0.19417402148246765, + -0.025793572887778282, + -0.0004497754271142185, + -0.002263386035338044, + -0.018094191327691078, + -0.031906649470329285, + 0.01430253591388464, + -0.0025148733984678984, + 0.010104632005095482, + 0.02237592451274395, + -0.0007355198613367975, + 0.013967219740152359, + -0.014779717661440372, + 0.00521675031632185, + 0.0010744634782895446, + -0.0419403500854969, + -0.03582727164030075, + -0.01811998523771763, + 0.0025648484006524086, + 0.04013479873538017, + 0.034305453300476074, + -0.005045867525041103, + -0.0003451905504334718, + -0.028347136452794075, + 0.03884512186050415, + 0.0063162012957036495, + 0.0008963266736827791, + 0.016752924770116806, + 0.032009825110435486, + 0.00731247803196311, + -0.011935976333916187, + 0.00041088357102125883, + 0.0073189265094697475, + -0.015721183270215988, + 0.007415652275085449, + 0.0180039145052433, + 0.01711403578519821, + -0.020609064027667046, + 0.029456259682774544, + -0.004639619030058384, + 0.03146816045045853, + -0.020905690267682076, + -0.001378344022668898, + -0.030178479850292206, + 0.009188960306346416, + 0.01849399134516716, + -0.00715126795694232, + -0.005932522006332874, + -0.00023798600886948407, + -0.0032241966109722853, + -0.02620626986026764, + 0.018700340762734413, + 0.008872989565134048, + 0.03327370807528496, + 0.0006214639288373291, + 0.03807131201028824, + -0.005671361926943064, + -0.00924699567258358, + 0.007357616908848286, + 0.004997504875063896, + -0.04635104909539223, + 0.02180846594274044, + -0.004720224067568779, + 0.021692395210266113, + 0.012812957167625427, + 0.029069356620311737, + -0.01176831778138876, + -0.02623206377029419, + 0.0036691357381641865, + -0.029404673725366592, + 0.0003790446207858622, + -0.02084120735526085, + -0.007164164911955595, + 0.02269834466278553, + -0.01229063794016838, + -0.029972132295370102, + 0.012471192516386509, + -0.00034196634078398347, + 0.012883889488875866, + 0.018210262060165405, + -0.013670593500137329, + 0.01376087125390768, + -0.014341226778924465, + -0.033660613000392914, + -0.001454112702049315, + -0.005768087692558765, + 0.012980615720152855, + 0.02129259519279003, + 0.0031838940922170877, + -0.02059616893529892, + 8.856465137796476e-05, + -0.0025874178390949965, + 0.0017233331454917789, + -0.0007322956807911396, + 0.012303533963859081, + 0.006654741708189249, + 0.007860591635107994, + 0.015695389360189438, + -0.003314474131911993, + 0.0024971403181552887, + -0.036188382655382156, + 0.06376171112060547, + 0.033118948340415955, + -0.01153617538511753, + 0.0030162360053509474, + -0.014457297511398792, + -0.020660651847720146, + 0.032009825110435486, + -0.00020171380310785025, + -0.01725590042769909, + 0.00032121059484779835, + -0.004594480153173208, + 0.012316430918872356, + -0.011439450085163116, + -0.01210363395512104, + 0.010214255191385746, + 0.004936245270073414, + 0.019125934690237045, + 0.018726134672760963, + 0.007351168431341648, + -0.025032661855220795, + 0.0030662110075354576, + 0.00907288957387209, + -0.0027308946009725332, + -0.0005392468883655965, + -0.01757832057774067, + -0.02353663556277752, + 0.0073963068425655365, + -0.0046976543962955475, + 0.011381413787603378, + 0.0024923039600253105, + -0.015437453053891659, + -0.0023101367987692356, + -0.006225923541933298, + 0.007196406833827496, + -0.0026454534381628036, + -0.009730624966323376, + -0.016585268080234528, + -0.002281119115650654, + 0.017939429730176926, + 0.004807277116924524, + 0.012406708672642708, + -0.014392813667654991, + -0.012935477308928967, + 0.017423558980226517, + -0.007209303788840771, + 0.00834422092884779, + -0.0104335006326437, + -0.025406669825315475, + -0.03038482926785946, + -0.010304532013833523, + -0.004678309429436922, + 0.008866541087627411, + -0.026051508262753487, + 0.014973169192671776, + 0.006364563945680857, + -0.01851978525519371, + -0.025922540575265884, + 0.029043562710285187, + 0.01730748824775219, + -0.00524899223819375, + -0.006990058347582817, + 0.016856100410223007, + -0.016972171142697334, + 0.0036272211000323296, + -0.0007911372231319547, + -0.1609518975019455, + 0.018107088282704353, + -0.0006299274391494691, + -0.010859094560146332, + 0.019499940797686577, + 0.01876482367515564, + -0.0019377422286197543, + 0.02437492646276951, + -0.023742983117699623, + 0.008860092610120773, + 0.010846197605133057, + 0.0017056000651791692, + -0.028192374855279922, + -0.03703957051038742, + -0.01519241463392973, + -0.0267995223402977, + -0.023523738607764244, + 0.0067450194619596004, + 0.028991976752877235, + 0.020235057920217514, + 0.011052546091377735, + -0.01160710770636797, + 0.030565384775400162, + 0.017462249845266342, + -0.011117029935121536, + 0.016017809510231018, + -0.012980615720152855, + 0.006541894748806953, + 0.0021102367900311947, + -0.014766820706427097, + -0.005052316002547741, + -0.018945379182696342, + 0.023575326427817345, + 3.49371948686894e-05, + -0.03683322295546532, + -0.01792653277516365, + -0.0049781594425439835, + -0.0009591985144652426, + -0.016430506482720375, + 0.019525734707713127, + 0.020995968952775, + 0.03709115833044052, + -0.016881894320249557, + 0.01310313493013382, + -0.010942922905087471, + -0.005026522558182478, + 0.022569376975297928, + -0.0031290827319025993, + -0.018906688317656517, + -0.0359046533703804, + -0.0018103864276781678, + 0.007905730046331882, + -0.014818407595157623, + 0.020557478070259094, + 0.00469120591878891, + 0.015579317696392536, + 0.012625954113900661, + 0.01738486811518669, + 0.0004937050980515778, + 0.001973208272829652, + 0.013038651086390018, + -0.014457297511398792, + -0.0006722449907101691, + 0.005071661435067654, + 0.014199362136423588, + -0.03053959086537361, + -0.025484049692749977, + 0.008331323973834515, + -0.008124975487589836, + 0.006886884104460478, + 0.0016604613047093153, + -0.016353124752640724, + -0.0019603115506470203, + 0.011678040027618408, + 3.1587052944814786e-05, + 0.0023214216344058514, + -0.017617009580135345, + 0.023652706295251846, + 0.012174566276371479, + -0.024645758792757988, + -0.029069356620311737, + 0.022762827575206757, + -0.009343721903860569, + -0.03404751792550087, + -0.002877595601603389, + -0.02153763361275196, + -0.006977161392569542, + -0.0043655624613165855, + -0.004014124628156424, + -0.0028759834822267294, + 0.01378666516393423, + -0.03167450800538063, + -0.019538631662726402, + -0.01604360155761242, + 0.010813955217599869, + 0.0018764823907986283, + -0.011084787547588348, + -0.014792613685131073, + 0.009582312777638435, + -0.00016906880773603916, + 0.012567918747663498, + 0.004075384698808193, + -0.025948334485292435, + 0.007002955302596092, + 0.001383986440487206, + 0.022014815360307693, + -0.01698506809771061, + 0.009717728942632675, + 0.04635104909539223, + -0.007667139638215303, + -0.00565524073317647, + 0.0003014623944181949, + 0.017965223640203476, + 0.023807467892766, + 0.007099681068211794, + 0.009311479516327381, + -0.005448892246931791, + -0.01153617538511753, + 0.028269756585359573, + 0.02289179526269436, + 0.06644424051046371, + -0.013096686452627182, + -0.013631903566420078, + 0.015695389360189438, + -0.007712278515100479, + -0.029043562710285187, + -0.08811084181070328, + 0.0022504893131554127, + 0.02124100737273693, + 0.02024795487523079, + 0.008311978541314602, + 0.03358323127031326, + -0.009027750231325626, + -0.003071047365665436, + -0.002574521116912365, + 0.03768441081047058, + -0.04044432193040848, + -0.03046220913529396, + -0.017513835802674294, + -0.010917129926383495, + 0.02213088609278202, + -0.015979118645191193, + -0.012155220843851566, + -0.0179007388651371, + -0.010523777455091476, + 0.030255861580371857, + 0.0011566805187612772, + -0.0041237473487854, + -0.016572371125221252, + 0.0023036885540932417, + -0.028914595022797585, + 0.0006121943588368595, + -0.03889670968055725, + -0.0036465662997215986, + 0.02151183970272541, + -0.01690768636763096, + 0.012999961152672768, + -0.02425885573029518, + 0.0035530647728592157, + -0.04673795402050018, + 0.04304947331547737, + 0.008466740138828754, + -0.016262847930192947, + -0.011046097613871098, + 0.039025675505399704, + -0.009163166396319866, + -0.013045099563896656, + 0.007673588115721941, + 0.003511150134727359, + -0.038535598665475845, + -0.0026035388000309467, + -0.017101138830184937, + 0.002050589071586728, + 0.002019959269091487, + 0.000986604136414826, + 0.005368287209421396, + -0.009092234075069427, + -0.013619006611406803, + -0.0298689566552639, + 0.001425900962203741, + 0.025703296065330505, + 0.009479138068854809, + -0.013812458142638206, + -0.006706329062581062, + -0.007415652275085449, + -0.006873987149447203, + -0.004126971587538719, + 0.01040770672261715, + -0.019422560930252075, + 0.05009111762046814, + -0.017268797382712364, + 0.00837001483887434, + -0.03693639487028122, + -0.0003482132451608777, + 0.022788621485233307, + -0.011961769312620163, + -0.0027051009237766266, + 0.029456259682774544, + 0.001184892258606851, + 0.009601657278835773, + -0.034924499690532684, + -0.0009213141747750342, + -0.04596414789557457, + -0.00395608926191926, + 0.024736035615205765, + -0.0007556710625067353, + -0.000829424592666328, + -0.03438283130526543, + 0.023446358740329742, + -0.010826852172613144, + 0.028450310230255127, + 0.02458127588033676, + -0.01755252666771412, + -0.009350170381367207, + 0.012645299546420574, + -0.019538631662726402, + 0.009608105756342411, + 0.012122979387640953, + 0.039593134075403214, + 0.007944420911371708, + -0.007383410353213549, + -0.0014928029850125313, + -0.011819904670119286, + -0.006090507376939058, + -0.0061291977763175964, + 0.021679498255252838, + -0.011071891523897648, + -0.006067938171327114, + -0.04764072969555855, + 0.01523110456764698, + 0.03507925942540169, + -0.01668844185769558, + -0.002893716562539339, + -0.004942693281918764, + 0.003785206936299801, + -0.00201189867220819, + 0.020338231697678566, + 0.01606939546763897, + -0.02051878720521927, + -0.003933520056307316, + 0.010020802728831768, + -0.01220036018639803, + -0.024955281987786293, + -0.02124100737273693, + 0.016623957082629204, + 0.016572371125221252, + -0.005668137688189745, + 0.004768586717545986, + -0.002614823402836919, + -0.011981114745140076, + 0.028759833425283432, + 0.020480096340179443, + -0.013644800521433353, + 0.005497255362570286, + -0.0004493723972700536, + -0.007686484605073929, + -0.015127930790185928, + 0.006674087140709162, + 0.022608065977692604, + -0.004929796792566776, + 0.0011349172564223409, + 0.010968716815114021, + -0.007950868457555771, + -0.01029808446764946, + 0.0045493412762880325, + 0.022221162915229797, + 0.0018458525883033872, + 0.08439657092094421, + -0.012845199555158615, + -0.0209443811327219, + 0.00791217852383852, + -0.017462249845266342, + 0.0032258087303489447, + 0.0016266071470454335, + 0.011420104652643204, + 0.004168886225670576, + 0.009904731996357441, + -0.006977161392569542, + 0.034279659390449524, + 0.021369975060224533, + 0.011910182423889637, + -0.014650749042630196, + 0.019190417602658272, + -0.01525689847767353, + 0.023652706295251846, + 0.012754921801388264, + 0.021640807390213013, + -0.015630904585123062, + 0.03688481077551842, + 0.008782711811363697, + 0.006403254345059395, + -0.023330286145210266, + -0.004133420065045357, + -0.02418147400021553, + -0.02307235077023506, + -0.01671423576772213, + -0.0015024755848571658, + -0.017488041892647743, + -0.009156718850135803, + 0.001157486578449607, + 0.010781713761389256, + 0.01646919548511505, + 0.010762368328869343, + 0.009118027985095978, + 0.017449352890253067, + -0.0010446397354826331, + 0.0066224997863173485, + 0.026593172922730446, + 0.0018813187489286065, + 0.011387862265110016, + -0.008008904755115509, + 0.005252216476947069, + 0.01582435704767704, + 0.011645798571407795, + -0.006532222498208284, + 0.016804512590169907, + -0.0037561890203505754, + 0.00761555228382349, + -0.021124936640262604, + 0.008634398691356182, + -0.008918127976357937, + 0.022827312350273132, + 0.00875046942383051, + 0.020660651847720146, + 0.008440947160124779, + -0.006432272493839264, + 0.034279659390449524, + 0.014702336862683296, + -0.00415921350941062, + 0.00774452043697238, + 0.011716730892658234, + -0.03995424509048462, + -0.03097808174788952, + 0.002281119115650654, + -0.023136835545301437, + -0.0360594168305397, + 0.004504202865064144, + 0.023523738607764244, + -0.016185466200113297, + -0.005294130649417639, + 0.025135837495326996, + -0.002676083240658045, + -0.021769775077700615, + 0.018455302342772484, + -0.022285647690296173, + -0.01579856313765049, + -0.029120944440364838, + 0.031287603080272675, + 0.021692395210266113, + 0.012438950128853321, + 6.151162961032242e-05, + -0.00684819370508194, + 0.01378666516393423, + -0.010581813752651215, + 0.003569185733795166, + -0.01176831778138876, + 0.018751926720142365, + 0.008537672460079193, + -0.011549072340130806, + -0.007673588115721941, + -0.01399301365017891, + -0.007854143157601357, + -0.015863047912716866, + -0.0104979844763875, + 0.03033324144780636, + 0.010697884485125542, + 0.008660192601382732, + 0.10508301854133606, + 0.014444400556385517, + -0.011181513778865337, + 0.011781214736402035, + -0.00280666328035295, + 0.0006738571100868285, + 0.011748972348868847, + 0.0023665602784603834, + -0.0050748856738209724, + -0.02924991212785244, + 0.005793881136924028, + -0.011104132980108261, + 0.011935976333916187, + -0.003998003900051117, + -0.00357563397847116, + 0.022530686110258102, + -0.0061936816200613976, + 0.013812458142638206, + -0.004749241750687361, + 0.005397305358201265, + 0.016133880242705345, + -0.017668597400188446, + -0.008118527010083199, + 0.023820364847779274, + -0.018365023657679558, + -0.031339190900325775, + 0.011781214736402035, + -0.006438720505684614, + 0.0026551259215921164, + 9.778383537195623e-05, + -0.0011187961790710688, + 0.002885655965656042, + -0.0779481753706932, + -0.0356467179954052, + 0.020286645740270615, + -0.016778718680143356, + -0.0032209723722189665, + -0.02927570603787899, + 0.027212219312787056, + 0.011981114745140076, + 0.008769814856350422, + 0.014315432868897915, + -0.017488041892647743, + -0.03956734016537666, + -0.030178479850292206, + 0.003037193324416876, + -0.0012397036189213395, + -0.017075344920158386, + -0.027753883972764015 + ], + "metadata": { + "source": "Thesis_Verladegeraeusche_in_Speditionen.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 41, + "has_images": true, + "image_count": 51, + "coordinates": "CoordinatesMetadata(points=((204.16666666666666, 189.02777777777797), (204.16666666666666, 642.3611111111111), (936.1666666666666, 642.3611111111111), (936.1666666666666, 189.02777777777797)), system=)", + "links": [], + "last_modified": "2025-05-05T22:59:16", + "_known_field_names": "frozenset({'cc_recipient', 'link_texts', 'url', 'filetype', 'category_depth', 'page_number', 'filename', 'orig_elements', 'detection_origin', 'email_message_id', 'page_name', 'coordinates', 'table_as_cells', 'link_start_indexes', 'sent_to', 'bcc_recipient', 'languages', 'last_modified', 'link_urls', 'file_directory', 'subject', 'data_source', 'detection_class_prob', 'image_base64', 'text_as_html', 'attached_to_filename', 'key_value_pairs', 'signature', 'sent_from', 'header_footer_type', 'parent_id', 'links', 'emphasized_text_contents', 'emphasized_text_tags', 'image_mime_type', 'is_continuation', 'image_path'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "Thesis_Verladegeraeusche_in_Speditionen.pdf", + "detection_class_prob": 0.2568194270133972, + "parent_id": "d45475a34bc527cde6987546fa6dd2f5", + "text_as_html": "
Flurf\u00f6rderger\u00e4t |Anzahl Einzelereignisse ElMax-PegelSchallleistungspegel
LAFmaxLWA,5sLWAmaxLWA,1hKlLWAT,1h
[dB(A)][dB(A)][dB(A)][dB(A)][dB(A)][dB(A)]
Gabelstapler29769,3100,7108,872,15,777,8
STABW [dB]6,54,96,54,92,9-
Gabelhubwagen9968,6100,7108,172,16,279,5
STABW [dB]6,45,16,4512,7-
", + "id": "5ba44de7-0ff3-4c0c-b018-67e92171e1c2", + "processing_timestamp": "2025-05-06T14:18:19.298665", + "chunk_number": 3, + "total_chunks": 49, + "chunking_strategy": "hybrid", + "word_count": 356 + } +} \ No newline at end of file diff --git a/data/processed/85fd305f-83de-70b0-47e8-2dc000000004.json b/data/processed/85fd305f-83de-70b0-47e8-2dc000000004.json new file mode 100644 index 0000000000000000000000000000000000000000..1b494e3d5e544b13d123e486ecee9b99aae5c35b --- /dev/null +++ b/data/processed/85fd305f-83de-70b0-47e8-2dc000000004.json @@ -0,0 +1,1570 @@ +{ + "id": "85fd305f-83de-70b0-47e8-2dc000000004", + "content": "Die Ladetr\u00e4ger sind spezielle und genormte Lade- oder Transporthilfsmittel wie beispielsweise Schach- teln, Beh\u00e4lter oder Paletten. Eine Logistikkette entsteht aus den einzelnen logistischen Prozessanteilen, die den Lauf einer Ladeeinheit darstellt. Zu Beginn steht das einzelne Packst\u00fcck, welches zu einer Ladeeinheit, durch die Lagerung auf beispielsweise einer Normpalette, gebildet wird. Die Ladeeinheit wird im Lager zwischengelagert, bis der Auf- trag zur Auslieferung erteilt wird. Am Tag der Auslieferung wird die Ladeeinheit in das Transportfahrzeug umgeschlagen und zu dem jeweiligen Auslieferungsort transportiert. Dort angekommen wird die Ladeeinheit in das Auslieferungslager umgeschlagen und wieder zwischengelagert. [5]\n\n## F\u00f6rdern und Transportieren\n\nF\u00fcr den Umschlag der Ladeeinheiten sind Transportmittel notwendig und realisieren so- mit die logistischen Funktionen das Transportieren, Umschlagens, Stapelns, Lagern und Kommissionierens. Die Hauptfunktion eines Transportmittels besteht darin, G\u00fcter ent- lang der verschiedenen Produktions- und Vertriebsprozesse zu transportieren. Trans- port bedeutet, dass ein Gegenstand von einem Ausgangsort abgeholt und zu einem Be- stimmungsort gebracht wird, wo er ben\u00f6tigt wird. Der Transport kann entweder von Menschen oder automatisiert durchgef\u00fchrt werden. In der Praxis werden bevorzugt von Menschen gesteuerte Techniken, wie Flurf\u00f6rderger\u00e4te, f\u00fcr den Umschlag in ein Trans- portmittel verwendet. Beispiele f\u00fcr Flurf\u00f6rderger\u00e4te sind Handgabelhubwagen, Gabel- stapler und andere. Es gibt verschiedene Kriterien, die bei der Auswahl eines geeigneten Flurf\u00f6rderger\u00e4ts eine Rolle spielen, wie die Anzahl der zu transportierenden Einheiten und die Art der Transportg\u00fcter. Je nach Gewicht und Gr\u00f6\u00dfe der G\u00fcter wird das passende Flurf\u00f6rderger\u00e4t ausgew\u00e4hlt. Durch die Verwendung von Normpaletten als Transportein- heiten k\u00f6nnen verschiedene Flurf\u00f6rderger\u00e4te eingesetzt werden. Flurf\u00f6rderger\u00e4te k\u00f6n- nen je nach Antriebsart (z.B. Elektro), Bedienungsart (z.B. Automatik) und Bauart (z.B. Schmalgangstapler) unterschieden werden. Flurf\u00f6rderger\u00e4te k\u00f6nnen je nach Antriebs- art (z.B. Elektro), Bedienungsart (z.B. Automatik) und Bauart (z.B. Schmalgangstapler)\n\n## unterschieden werden. [10, 3, 5]\n\n7\n2 Grundlagen\n\n## Verladezone\n\nDer Umschlagspunkt in der Logistik ist der zentrale Bereich einer Spedition, wo die G\u00fcter von den Kunden ankommen, gelagert und f\u00fcr den Weitertransport vorbereitet werden. Eine geeignete Verladestation ist entscheidend f\u00fcr eine sichere und effiziente Verla- dung.", + "embedding": [ + 0.011753558181226254, + 0.010035781189799309, + 0.02218574844300747, + -0.010993772186338902, + -0.008351038210093975, + 0.004882450681179762, + -0.004320869687944651, + -0.008436927571892738, + -0.0010372729739174247, + -0.03348343446850777, + 0.013431694358587265, + 0.022859646007418633, + -0.032690614461898804, + 0.018076298758387566, + 0.006857893895357847, + 0.003993831109255552, + 0.03086712956428528, + 0.01938445121049881, + -0.0013486200477927923, + 0.0010091939475387335, + -0.042310167104005814, + -0.01285689976066351, + 0.01881626434624195, + -0.012757796794176102, + -0.016530299559235573, + 0.01163463480770588, + 0.03961457684636116, + -0.004198642913252115, + 0.0036700963973999023, + -0.007895166985690594, + -0.007505363784730434, + -0.010405763983726501, + -0.014852163381874561, + -0.00180696917232126, + -0.021141869947314262, + -0.020309409126639366, + -0.001727687194943428, + -0.015539273619651794, + 0.01950337551534176, + -0.020071562379598618, + 0.025793081149458885, + 0.017415614798665047, + -0.0036502759903669357, + -0.014376470819115639, + 0.002982985693961382, + 0.015552488155663013, + -0.02490776591002941, + -0.012870113365352154, + -0.023744961246848106, + 0.016503872349858284, + 0.030047882348299026, + 0.02385067194700241, + -0.02872651442885399, + -0.01236138679087162, + -0.015195718966424465, + -0.013385445810854435, + -0.018829477950930595, + -0.008714414201676846, + 0.017270265147089958, + -0.031607095152139664, + -0.03261133283376694, + 0.010187738575041294, + -0.014997513964772224, + 0.00836425181478262, + -0.009130644612014294, + -0.013140993192791939, + 0.00846996158361435, + -0.007465722505003214, + -0.012790830805897713, + -0.015631768852472305, + 0.01655672676861286, + 0.029228635132312775, + 0.022291459143161774, + 0.012354779988527298, + 0.028647232800722122, + -0.017468469217419624, + 0.005301984492689371, + 0.00958651676774025, + -0.02209325321018696, + 0.010286840610206127, + 0.017177768051624298, + -0.02930791676044464, + -0.018644485622644424, + 0.050608351826667786, + 0.02408851683139801, + -0.015195718966424465, + 0.019067322835326195, + 0.010478438809514046, + -0.011991403996944427, + 0.01851234957575798, + -0.010623789392411709, + 0.0012701639207080007, + 0.004287835210561752, + 0.021934689953923225, + 0.007353406399488449, + -0.00644496688619256, + 0.0020712425466626883, + 0.03475194796919823, + 0.004026865586638451, + -0.041438065469264984, + -0.006791825406253338, + 0.029598617926239967, + -0.030074309557676315, + -0.0020662874449044466, + -0.030074309557676315, + -0.009804542176425457, + 0.002241368405520916, + 0.002176951849833131, + 0.0017788901459425688, + -0.024709559977054596, + -0.02973075397312641, + 0.05092547833919525, + -0.012110327370464802, + 0.0049022710882127285, + 0.016768144443631172, + -0.01010184921324253, + 0.026969097554683685, + -0.030153591185808182, + 0.006243458483368158, + -0.023163560777902603, + 0.020520826801657677, + 0.01875019632279873, + 0.008872978389263153, + 0.004297745879739523, + 0.036099743098020554, + 0.021815765649080276, + 0.01935802400112152, + 0.014812522567808628, + -0.008575670421123505, + -0.013715787790715694, + -0.022436808794736862, + -0.004155698698014021, + -0.0004143723926972598, + 0.006722453981637955, + -0.011264652013778687, + -4.7822122724028304e-05, + -0.009084396995604038, + 0.009692225605249405, + -0.01754775084555149, + -0.030682137235999107, + 0.0261102095246315, + 0.00608159089460969, + -0.0204679723829031, + -0.011674275621771812, + 0.002505641896277666, + 0.028567951172590256, + 0.01938445121049881, + 0.020031921565532684, + -0.012473703362047672, + 0.0049022710882127285, + 0.008740841411054134, + -0.012737976387143135, + 0.019556229934096336, + -0.0284622423350811, + -4.219599213683978e-05, + 0.01096073817461729, + -0.02074545994400978, + -0.004971642512828112, + -0.00663986848667264, + -0.03205636143684387, + 0.02825082279741764, + 0.0015212235739454627, + 0.01649065874516964, + -0.0053482321090996265, + 0.01331277098506689, + 0.020150844007730484, + 0.003047402249649167, + 0.002137310802936554, + 0.004581839311867952, + -0.003974010702222586, + -0.00755161140114069, + -0.001261905301362276, + -0.011905515566468239, + 0.02589878998696804, + -0.02429993636906147, + -0.005771069787442684, + 0.01691349595785141, + -0.006656385492533445, + -0.05650164559483528, + -0.02933434396982193, + -0.0049353050999343395, + 0.00513351010158658, + 0.021577920764684677, + 0.004832899197936058, + -0.039059605449438095, + -0.0216439887881279, + 0.010570934973657131, + 0.009348670020699501, + -0.011396788991987705, + 0.00015051194350235164, + -0.0058140140026807785, + 0.01860484480857849, + 0.004291138611733913, + -0.013662933371961117, + -0.622416615486145, + -0.003977314103394747, + -0.00024734335602261126, + -0.019159819930791855, + -0.001963881542906165, + 0.03533335030078888, + 0.007644107099622488, + 3.43761857948266e-05, + -0.007981055416166782, + 0.031157830730080605, + -0.0002826486306730658, + 0.02577986754477024, + 0.004040079191327095, + 0.014759667217731476, + -0.015129650011658669, + -0.02140614204108715, + -0.02463027834892273, + -0.009606337174773216, + 0.04439792409539223, + 0.0034190367441624403, + -0.0284622423350811, + 0.026916243135929108, + -0.008826730772852898, + 0.0024726076517254114, + 0.010802173987030983, + 0.006322740111500025, + 0.030259300023317337, + 0.0031613700557500124, + -0.006289706099778414, + 0.002621261402964592, + -0.01582997478544712, + -0.004961732309311628, + -0.028832225129008293, + 0.011502498760819435, + 0.0378703735768795, + 0.02848866954445839, + -0.008033910766243935, + 0.02053404040634632, + 0.009553481824696064, + 0.017732743173837662, + 0.001396519597619772, + -0.02197433076798916, + -0.0070428852923214436, + -0.017085272818803787, + 0.010273627005517483, + -0.002072894247248769, + 0.03784394636750221, + -0.00037204736145213246, + -0.009467593394219875, + -0.01978086121380329, + 0.025370243936777115, + -0.004188732709735632, + -0.0027583532501012087, + -0.008218902163207531, + 0.00503440760076046, + 0.01487859059125185, + 0.011707310564815998, + -0.008133012801408768, + 0.0001238781405845657, + 0.00839728582650423, + 0.002606396097689867, + 0.01790452003479004, + -0.021723270416259766, + -0.01691349595785141, + -0.031131403520703316, + 0.01966193877160549, + -0.014310402795672417, + -0.03343058004975319, + 0.03290203586220741, + 0.004386937711387873, + -0.007432688493281603, + 0.01989978551864624, + -0.02385067194700241, + -0.007796064484864473, + 0.0284622423350811, + 0.01205747202038765, + 0.003488408401608467, + -0.025634516030550003, + 0.008007482625544071, + 0.021445784717798233, + -0.008635132573544979, + 0.0072807311080396175, + -0.01151571236550808, + -0.01730990596115589, + 0.033536288887262344, + -0.006656385492533445, + -0.005394480191171169, + 0.008205687627196312, + 0.00015784139395691454, + 0.019344810396432877, + 0.01860484480857849, + 0.029017215594649315, + 0.010134883224964142, + -0.02641412243247032, + -0.012004617601633072, + 0.03578261286020279, + -0.002563451649621129, + 0.028752941638231277, + -0.004172215703874826, + -0.026704823598265648, + -0.00418212590739131, + -0.0028805797919631004, + 0.018340570852160454, + 0.005625719204545021, + 0.022542517632246017, + 0.02345426194369793, + -0.005130206700414419, + 0.0073335859924554825, + 0.02204039879143238, + -0.02830367721617222, + -0.011462857015430927, + -0.02159113436937332, + -0.00788195338100195, + -0.007406261283904314, + -0.014587890356779099, + -0.02632162719964981, + -0.00608159089460969, + -0.0017788901459425688, + 0.004628087393939495, + -0.037817519158124924, + 0.009375098161399364, + -0.0011520667467266321, + 0.007743209600448608, + -0.0036370621528476477, + -0.024577423930168152, + 0.04453006386756897, + 0.01510322280228138, + -0.0049650357104837894, + -0.0038782116025686264, + -0.00728733791038394, + 0.00948080699890852, + -0.007987662218511105, + 0.010703071020543575, + -0.026030926033854485, + 0.01672850362956524, + 0.008251936174929142, + 0.02662554197013378, + 0.0038319637533277273, + 0.0205868948251009, + -0.04254801198840141, + -0.029228635132312775, + -0.014640744775533676, + 0.010901276022195816, + -0.03432910889387131, + -0.014495394192636013, + -0.03572975844144821, + -0.01518250536173582, + -0.003126684343442321, + -0.021379714831709862, + 0.00480977538973093, + -0.0456400103867054, + -0.024669919162988663, + -0.03374771028757095, + 0.012632266618311405, + 0.006117928307503462, + -0.002545282943174243, + -0.0312899686396122, + -0.0038484809920191765, + 0.004961732309311628, + -0.03979957103729248, + -0.002903703600168228, + 0.01053790096193552, + -0.03919174149632454, + 0.013015463016927242, + -0.01959587074816227, + -0.01715134084224701, + 0.007346799597144127, + 0.012737976387143135, + -0.03358914330601692, + -0.038663193583488464, + 0.0156449843198061, + -0.004941911902278662, + -0.02514561079442501, + 0.01344490796327591, + -0.01655672676861286, + 0.002358639845624566, + -0.011462857015430927, + 0.01166766881942749, + 0.006570496596395969, + -0.014852163381874561, + -0.0006714195478707552, + 0.0019242404960095882, + -0.019225887954235077, + 0.002385067055001855, + 0.013636506162583828, + 0.010980558581650257, + 0.004958428908139467, + 0.028541523963212967, + -0.027563711628317833, + 0.020573681220412254, + -0.00808015838265419, + 0.029625045135617256, + -0.003012716304510832, + -0.0038848184049129486, + -0.028990788385272026, + 0.006425146479159594, + 0.0030110646039247513, + 0.0331663079559803, + 0.003656882792711258, + -0.005949454382061958, + 0.02737872116267681, + -0.023771390318870544, + 0.0036040281411260366, + -0.026916243135929108, + 0.025211678817868233, + -0.020216912031173706, + 0.02526453323662281, + -0.010194345377385616, + 0.05507456883788109, + 0.0216439887881279, + 0.02267465554177761, + 0.006372291594743729, + -0.023388193920254707, + 0.00040012638783082366, + -0.006061770487576723, + 0.05935579910874367, + -0.016873855143785477, + 0.014627531170845032, + 0.022053612396121025, + -0.015156077221035957, + 0.0026130029000341892, + 0.006388808600604534, + 0.022899286821484566, + -0.0007011502748355269, + -0.013127779588103294, + -0.005189668387174606, + 0.01573747955262661, + 0.004796561785042286, + -0.008060337975621223, + -0.02227824553847313, + 0.013557223603129387, + 0.008654952980577946, + -0.015565701760351658, + 0.030523573979735374, + 0.021564707159996033, + -0.0016830910462886095, + 0.0204679723829031, + 0.00011190325312782079, + 0.061575695872306824, + -0.021670415997505188, + 0.010359516367316246, + 0.03253205120563507, + 0.02719372883439064, + -0.023956380784511566, + 0.015565701760351658, + -0.013874351978302002, + 0.0009200016502290964, + 0.016992777585983276, + -0.013874351978302002, + -0.01582997478544712, + -0.004096237011253834, + 0.009394918568432331, + -0.011073053814470768, + -0.027748703956604004, + -0.0044695232063531876, + 0.0033001136034727097, + 0.014667171984910965, + -0.012044258415699005, + 0.020388690754771233, + 0.0023536847438663244, + 0.001491492846980691, + 0.006864500697702169, + 0.003964100498706102, + -0.019939426332712173, + 0.0005281338235363364, + 0.004495950881391764, + -0.01415183860808611, + -0.02559487521648407, + -0.011086267419159412, + 0.023480689153075218, + 0.013781855814158916, + 0.014759667217731476, + -0.017494896426796913, + 0.011165549978613853, + 0.02686338871717453, + 0.019648725166916847, + 0.01392720639705658, + 0.023256056010723114, + 0.013378839008510113, + 0.02013763040304184, + -0.010141490958631039, + -0.026361268013715744, + -0.004856023006141186, + 0.033509861677885056, + -0.010630396194756031, + -0.012671908363699913, + -0.02933434396982193, + 0.02234431356191635, + -0.012149968184530735, + -0.005965971387922764, + -0.012374600395560265, + -0.006511034909635782, + -0.015909256413578987, + 0.0011041671968996525, + 0.011813019402325153, + -0.0023685500491410494, + 0.04151734709739685, + 0.006725757382810116, + 0.010438797995448112, + 0.00611132150515914, + -0.01294939499348402, + -0.019159819930791855, + -0.024101730436086655, + -0.024550996720790863, + 0.03239991515874863, + -0.0029070070013403893, + -0.021868621930480003, + 0.01160820759832859, + 0.027537284418940544, + -0.03728897124528885, + -0.006388808600604534, + -0.011165549978613853, + 0.0030391437467187643, + -0.009157071821391582, + -0.003191100899130106, + -0.011092874221503735, + 0.027048379182815552, + 0.015380710363388062, + 0.04447720944881439, + 0.012500130571424961, + -0.023982807993888855, + -0.002373505150899291, + 0.001853217021562159, + 0.012242463417351246, + 0.024683132767677307, + 0.024828482419252396, + 0.002824421739205718, + 0.028356531634926796, + -0.036945417523384094, + -0.028752941638231277, + 0.025092756375670433, + -0.010273627005517483, + 0.018472708761692047, + 0.0012412589276209474, + 0.006078287493437529, + -0.006418539211153984, + 0.030285727232694626, + -0.01510322280228138, + 0.017930947244167328, + 0.011931942775845528, + -0.008965473622083664, + -0.012169788591563702, + 0.03633758798241615, + -0.012453882955014706, + 0.011363754980266094, + -0.0284622423350811, + -0.027061592787504196, + 0.014098984189331532, + 0.00605186028406024, + -0.0011314203729853034, + 0.04104165360331535, + 0.025119183585047722, + 0.010075422003865242, + -0.021696843206882477, + -0.009269388392567635, + 0.0063359541818499565, + 0.0027732185553759336, + 0.01757417991757393, + -0.019675152376294136, + -0.00031526986276730895, + -0.005212792195379734, + -0.0067786118015646935, + 0.027352293953299522, + 0.005189668387174606, + 0.03018001839518547, + 0.013497762382030487, + 0.007426081690937281, + -0.016173530369997025, + 0.00591641990467906, + 0.012797437608242035, + 0.0070957401767373085, + -0.0035544768907129765, + 0.01311456598341465, + -0.010452011600136757, + 0.04127949848771095, + -0.0031679770909249783, + -0.020732246339321136, + 0.0025584965478628874, + 0.019225887954235077, + -0.007862132973968983, + 0.004238284192979336, + -0.004558715503662825, + -0.010610575787723064, + -0.003225786844268441, + 0.0043175662867724895, + -0.022661441937088966, + -0.0017838452477008104, + -0.025938430801033974, + -0.009447772987186909, + -0.01797058992087841, + -0.019040895625948906, + -0.006649778690189123, + -0.019278742372989655, + 0.000547954288776964, + -0.0010793915716931224, + -0.020719032734632492, + -0.012367993593215942, + -0.016860641539096832, + 0.01337223220616579, + -0.004687549080699682, + 0.0054869758896529675, + -0.023057851940393448, + 0.014112197794020176, + 0.02385067194700241, + -0.0017078666714951396, + -0.008906012400984764, + -0.022635014727711678, + -0.03808179125189781, + -0.01151571236550808, + 0.017468469217419624, + 0.003083739895373583, + 0.002606396097689867, + 0.00782249215990305, + -0.006332650780677795, + 0.004162305500358343, + -0.002680723089724779, + -0.013061711564660072, + 0.000581814325414598, + -0.004083023406565189, + 0.022542517632246017, + 0.002477562753483653, + 0.0013122824020683765, + 0.007829098962247372, + -0.029810035601258278, + 0.004637997597455978, + -0.01246709655970335, + 0.011951763182878494, + -0.006183996796607971, + 0.013061711564660072, + -0.01649065874516964, + -0.002290919655933976, + -0.01347794197499752, + -0.0004480259376578033, + 0.01337223220616579, + 0.008985294960439205, + -0.01454824861139059, + -0.002746791345998645, + 0.00931563600897789, + -0.025304175913333893, + 0.013273130171000957, + -4.629300292435801e-06, + 0.02279357798397541, + 0.03657543286681175, + -0.011958369985222816, + -0.018921973183751106, + -0.02538345754146576, + 0.02297857031226158, + -0.002333864104002714, + 0.00690414197742939, + 0.03686613589525223, + -0.008641739375889301, + 0.002373505150899291, + -0.023203201591968536, + 0.0019440610194578767, + 0.018010230734944344, + 0.03229420632123947, + -0.009408132173120975, + 0.00846996158361435, + -0.02653304673731327, + -0.00243792193941772, + 0.013953633606433868, + 0.009520447812974453, + -0.0033100240398198366, + -0.009857396595180035, + -0.027986548840999603, + 0.01079556718468666, + -0.014667171984910965, + -0.00839728582650423, + -0.01655672676861286, + -0.023044638335704803, + -0.006752184592187405, + 0.027246585115790367, + -0.007696961984038353, + 0.020877595990896225, + -0.015129650011658669, + -0.017917733639478683, + -0.026850175112485886, + -0.026546260342001915, + -0.0005066615995019674, + -0.03356271609663963, + 0.009394918568432331, + -0.024366004392504692, + 0.029281489551067352, + 0.037817519158124924, + 0.02632162719964981, + -0.018670912832021713, + 0.014389685355126858, + -0.003392609301954508, + -0.010980558581650257, + 0.0026130029000341892, + -0.0006528377998620272, + -0.004644604399800301, + -0.012288711965084076, + 0.014363257214426994, + 0.02336176484823227, + 0.004865933209657669, + 0.013544009998440742, + 0.017204197123646736, + 0.00696360319852829, + 0.037764664739370346, + -0.011112695559859276, + -0.016966350376605988, + 0.0010191041510552168, + -0.022991783916950226, + -0.007928200997412205, + 0.01947694644331932, + 0.011033413000404835, + -0.008047124370932579, + -0.033087026327848434, + 0.006032039411365986, + -0.0038055365439504385, + -0.023374980315566063, + -0.018221648409962654, + -0.01317402720451355, + 0.01026702020317316, + -0.03578261286020279, + 0.02761656790971756, + 0.018908759579062462, + -0.01088145561516285, + -0.010729499161243439, + -0.013649719767272472, + -0.022687869146466255, + -0.011099481023848057, + 0.005800800397992134, + 0.007729995995759964, + 0.0158828292042017, + 0.00014813760935794562, + -0.024894550442695618, + 0.01370257418602705, + -0.006649778690189123, + 0.00028223570552654564, + -0.010934310965240002, + 0.00325221405364573, + -0.01875019632279873, + -0.027510857209563255, + -0.017283478751778603, + 0.0023256056010723114, + -0.021961117163300514, + 0.03668114170432091, + 0.008318004198372364, + 0.008251936174929142, + 0.02486812323331833, + -0.017494896426796913, + -0.009487413801252842, + -0.00361393834464252, + -0.025542020797729492, + -0.004991463385522366, + 0.0014749757247045636, + 0.04109450802206993, + 0.007485543377697468, + 0.0028739729896187782, + -0.013378839008510113, + -0.08298183977603912, + 0.01210372056812048, + 0.005285467486828566, + 0.006061770487576723, + 0.000190669103176333, + 0.00286075915209949, + -0.008780482225120068, + -0.010379336774349213, + -0.004941911902278662, + -0.0016104158712550998, + -0.018340570852160454, + 0.02843581512570381, + 0.02197433076798916, + 0.006302919704467058, + -0.010650216601788998, + 0.0014898411463946104, + 0.009381704963743687, + -0.002033253200352192, + -0.005239219404757023, + -7.329456821025815e-06, + -0.01748168282210827, + 0.002276054350659251, + -0.005288770888000727, + 0.04627426713705063, + 0.0007643281132914126, + 0.035888321697711945, + 0.014178265817463398, + -0.008430320769548416, + 0.0017260354943573475, + -0.016345307230949402, + -0.000976985553279519, + 0.006583710201084614, + -0.010828601196408272, + 0.019820502027869225, + -0.002946648048236966, + -0.004486040212213993, + 0.0229389276355505, + 0.023929953575134277, + -0.03794965520501137, + -0.01938445121049881, + 0.0022430201061069965, + 0.01339865941554308, + -0.008787089958786964, + 0.014891804195940495, + 0.02825082279741764, + 0.0044364891946315765, + -0.003739468054845929, + -0.006702633108943701, + 0.006616744678467512, + 0.005876779090613127, + -0.01205747202038765, + -0.019952639937400818, + -0.00802069716155529, + 0.0004232503124512732, + -0.017983803525567055, + -0.02465670555830002, + 0.004502557683736086, + -0.018010230734944344, + -0.008179260417819023, + -0.03311345353722572, + 0.013993274420499802, + -0.02806583233177662, + -0.030285727232694626, + -0.0005686006625182927, + 0.012876720167696476, + 0.007908380590379238, + -0.014587890356779099, + -0.0035941177047789097, + -0.030576428398489952, + 0.048520591109991074, + -0.03485765680670738, + 0.04220445826649666, + 0.016926709562540054, + 0.010458618402481079, + -0.02194790355861187, + 0.008760661818087101, + 0.008133012801408768, + -0.015314641408622265, + 0.0406980998814106, + -0.0009241309599019587, + -0.022991783916950226, + 0.007260910701006651, + -0.000667703163344413, + 0.00037782834260724485, + -0.016992777585983276, + -0.008628525771200657, + 0.0026575990486890078, + -0.013266523368656635, + 0.0181159395724535, + -0.0033860024996101856, + -0.007815884426236153, + -0.010075422003865242, + -0.007307158783078194, + 0.018274502828717232, + 0.024854909628629684, + -0.019701579585671425, + -0.00516984798014164, + 0.012315139174461365, + -0.004271318204700947, + -0.004396848380565643, + -0.024471713230013847, + -0.01660958118736744, + 0.013662933371961117, + -0.009441166184842587, + -0.01020755898207426, + 0.003779109101742506, + 0.016292452812194824, + -0.031184257939457893, + -0.00556295458227396, + 0.00015030548092909157, + 0.009474200196564198, + 0.0010224075522273779, + 0.015539273619651794, + -0.007346799597144127, + 0.03036501072347164, + 0.036707572638988495, + 0.003871604800224304, + -0.010590755380690098, + 0.022687869146466255, + 0.0026856781914830208, + -0.022635014727711678, + 0.007260910701006651, + -0.012202822603285313, + 0.025092756375670433, + -0.002513900399208069, + -0.03979957103729248, + 0.013306164182722569, + -0.0009332153131254017, + -0.03348343446850777, + -0.004661121405661106, + 0.02909649722278118, + 0.005219398997724056, + -0.001081043272279203, + 0.033959127962589264, + -0.007485543377697468, + 0.014971086755394936, + 0.014270761981606483, + 0.033906273543834686, + -0.0031200775410979986, + 0.0004946867120452225, + 0.0005524965235963464, + -0.0015022289007902145, + -0.018776623532176018, + -0.007141987793147564, + -0.05266968160867691, + -0.015499632805585861, + 0.03422340005636215, + -0.0039343698881566525, + 0.018433067947626114, + 0.029175780713558197, + -0.00892583280801773, + -0.02171005681157112, + -0.021274005994200706, + 0.008978688158094883, + 0.0013766990741714835, + -0.011793198995292187, + 0.03723611682653427, + -0.032637760043144226, + -0.00516984798014164, + -0.002294223289936781, + 0.01337223220616579, + -0.015341068617999554, + 0.004030168987810612, + -0.000407352636102587, + 0.00970543920993805, + 0.0007952976739034057, + 0.016173530369997025, + -0.002376808552071452, + 0.0009100913885049522, + -0.00227275094948709, + 0.026836959645152092, + 0.014759667217731476, + -0.02321641519665718, + 0.0013684405712410808, + 0.017772383987903595, + -0.003914549481123686, + -0.012334959581494331, + -0.016094248741865158, + -0.024617064744234085, + 2.6246681954944506e-05, + 0.00899850856512785, + -0.026546260342001915, + 0.022146107628941536, + -0.0018879028502851725, + 0.010240592993795872, + -0.006970210000872612, + 0.0002931782801169902, + -0.019199460744857788, + -0.001166932052001357, + -0.022648228332400322, + 0.03401198238134384, + -0.016054607927799225, + -0.015248573385179043, + 0.010425584390759468, + 0.006293009500950575, + -0.012506737373769283, + -0.0032720346935093403, + -0.01660958118736744, + 0.004155698698014021, + -0.00994989275932312, + -0.015261786989867687, + -0.019860142841935158, + -0.005711608100682497, + -0.00454550189897418, + -0.008456747978925705, + -0.013742215000092983, + -0.024458499625325203, + -0.017917733639478683, + 0.17917734384536743, + -0.04061881825327873, + 0.006567193195223808, + 0.00035057513741776347, + -0.028964361175894737, + -0.014429326169192791, + 0.023890312761068344, + -0.010042387992143631, + 0.004472826607525349, + 0.029440052807331085, + 0.023189987987279892, + 0.01059736218303442, + -0.013847924768924713, + 0.0020745459478348494, + 0.0025039901956915855, + -0.0381082184612751, + -0.017085272818803787, + -0.025555234402418137, + 0.004654514603316784, + 0.04159662872552872, + 0.02333533763885498, + -0.01938445121049881, + 0.0012131799012422562, + -0.034778375178575516, + 0.02782798558473587, + 0.01079556718468666, + 0.0034652845934033394, + 0.016543513163924217, + 0.018710553646087646, + 0.017442042008042336, + -0.019939426332712173, + -0.0051070828922092915, + -0.006785218603909016, + -0.017257051542401314, + 0.01860484480857849, + 0.015195718966424465, + -0.0004616525548044592, + -0.002477562753483653, + 0.020666178315877914, + 0.015314641408622265, + 0.029677899554371834, + -0.006676205899566412, + -0.007036278489977121, + -0.02159113436937332, + -0.011925335973501205, + 0.02827725000679493, + -0.007809278089553118, + 0.00014380188076756895, + 0.008060337975621223, + 0.0026691609527915716, + -0.029915744438767433, + 0.008588884025812149, + -0.006352471187710762, + 0.043790098279714584, + -0.000430270069045946, + 0.026718037202954292, + -0.004125968087464571, + -0.0031960560008883476, + 0.023956380784511566, + -0.021815765649080276, + -0.030919983983039856, + 0.008701200596988201, + -0.017917733639478683, + 0.016688862815499306, + 0.016213171184062958, + 0.023559970781207085, + 0.0022991783916950226, + -0.018803050741553307, + 0.007789457682520151, + -0.03255847841501236, + -0.007168415002524853, + -0.010134883224964142, + 0.0010678295511752367, + 0.00048518937546759844, + -0.004922091495245695, + -0.03580904006958008, + 0.004033472388982773, + -0.012169788591563702, + 0.012903147377073765, + 0.04645925760269165, + -0.007743209600448608, + -0.006289706099778414, + -0.025885576382279396, + -0.01872376725077629, + 0.01543356478214264, + -0.02074545994400978, + 0.025013474747538567, + 0.013385445810854435, + 0.00644496688619256, + -0.02608378231525421, + 0.007875346578657627, + -0.018261289224028587, + 0.008384072221815586, + 0.003395912703126669, + 0.00975168775767088, + -0.014257548376917839, + 0.02743157558143139, + 0.01390077918767929, + -0.006468090694397688, + -0.026361268013715744, + -0.013649719767272472, + 0.07299230247735977, + 0.03768538311123848, + 0.0036502759903669357, + -0.0023966291919350624, + 0.005212792195379734, + -0.0031068637035787106, + 0.031792085617780685, + 0.010683250613510609, + -0.03195064887404442, + 0.018644485622644424, + -0.01210372056812048, + 0.0029301310423761606, + -0.017944160848855972, + 0.005295377690345049, + 0.017812024801969528, + -0.004393544979393482, + 0.00013802089961245656, + 0.015142863616347313, + -0.006864500697702169, + -0.007835705764591694, + -0.004912181291729212, + 0.016199957579374313, + -0.001157847698777914, + 0.0014039522502571344, + -0.026281986385583878, + -0.04262729361653328, + 0.02204039879143238, + -0.0034190367441624403, + 0.01989978551864624, + 0.014852163381874561, + -0.028118686750531197, + 0.003111818805336952, + -0.010531294159591198, + -0.003240652149543166, + 0.006553979590535164, + -0.01457467582076788, + -0.02206682600080967, + 0.002001870656386018, + 0.00852942280471325, + 0.0066629922948777676, + 0.019450519233942032, + -0.008694593794643879, + -0.011112695559859276, + 0.01971479319036007, + -0.0037625920958817005, + 0.015552488155663013, + -0.007862132973968983, + -0.038213927298784256, + -0.03935030475258827, + -0.01651708595454693, + -0.003924459684640169, + 0.00487584387883544, + -0.017613820731639862, + 0.003904639044776559, + 0.0030523573514074087, + -0.035201214253902435, + -0.028964361175894737, + 0.043578676879405975, + -0.006996637210249901, + -0.019344810396432877, + -0.017204197123646736, + 0.01207729335874319, + -0.02806583233177662, + 0.006276492495089769, + -0.002466000849381089, + -0.16564655303955078, + 0.023744961246848106, + 0.01594889722764492, + -0.011436429806053638, + 0.014310402795672417, + -0.0002748030237853527, + 0.0027236673049628735, + 0.024564210325479507, + -0.030919983983039856, + 0.011291079223155975, + 0.025581661611795425, + -0.008298183791339397, + -0.03641686961054802, + -0.02396959438920021, + -0.02893793396651745, + -0.004502557683736086, + -0.011218404397368431, + 0.019912999123334885, + 0.026123423129320145, + 0.007545004598796368, + 0.029228635132312775, + -0.013491155579686165, + 0.005906509701162577, + 0.0036667929962277412, + 0.008324611000716686, + 0.00827836338430643, + -0.0229389276355505, + 0.008800303563475609, + -0.0053449287079274654, + -0.011225011199712753, + -0.0008122276631183922, + -0.00556295458227396, + 0.01552606001496315, + -0.010002747178077698, + -0.016384948045015335, + -0.008595491759479046, + 0.0021852103527635336, + -0.006976816803216934, + 0.000894400174729526, + 0.024141373112797737, + 0.00336948549374938, + 0.040988799184560776, + -0.022687869146466255, + 0.006877714302390814, + 0.0020811527501791716, + 0.005645539611577988, + 0.004664424806833267, + -0.023388193920254707, + -0.016107462346553802, + -0.019106963649392128, + -0.00011696161527652293, + -0.004334083292633295, + 0.004571929108351469, + 0.0274051483720541, + 0.016860641539096832, + 0.014957872219383717, + 0.016318880021572113, + 0.014098984189331532, + -0.012282105162739754, + 0.021445784717798233, + -0.007511970587074757, + -0.010042387992143631, + -0.00948080699890852, + -0.009130644612014294, + 0.01032648142427206, + -0.016847427934408188, + -0.01478609535843134, + 0.008853157982230186, + 0.0010777398711070418, + -0.003752681892365217, + -0.0036304553505033255, + -0.010967344976961613, + 0.023176774382591248, + -0.005444031208753586, + 0.007201449479907751, + 0.024458499625325203, + -0.0022793577518314123, + 0.012480310164391994, + 0.01246709655970335, + -0.02608378231525421, + -0.04085666313767433, + 0.046379975974559784, + 0.009447772987186909, + -0.038028936833143234, + -0.0008242025505751371, + -0.014640744775533676, + -0.012982429005205631, + 0.009864003397524357, + -0.007148594595491886, + 0.0009778115199878812, + 0.004337386693805456, + -0.0331663079559803, + -0.010425584390759468, + -0.031184257939457893, + 0.01390077918767929, + -0.0033215859439224005, + -5.810014044982381e-06, + -0.01844628155231476, + 0.00029359120526351035, + -0.006378898397088051, + 0.005569561384618282, + -0.00852942280471325, + -0.04619498550891876, + -0.006930569186806679, + 0.005688484292477369, + 0.02544952556490898, + -0.007346799597144127, + 0.019952639937400818, + 0.0705609917640686, + -0.02213289402425289, + 0.0020266463980078697, + -0.012804044410586357, + 0.02872651442885399, + 0.0378703735768795, + 0.019516589120030403, + 0.025396671146154404, + 0.001194185228087008, + -0.02119472436606884, + 0.02933434396982193, + 0.010452011600136757, + 0.03913888707756996, + -0.02396959438920021, + -0.008602098561823368, + 0.028092259541153908, + 0.0027666117530316114, + -0.027722276747226715, + -0.09725259989500046, + 0.010623789392411709, + 0.02526453323662281, + 0.0070098512805998325, + -0.007868739776313305, + 0.004172215703874826, + -0.005777676589787006, + 5.77065693505574e-05, + 0.014283975586295128, + 0.02994217351078987, + -0.041834473609924316, + -0.020031921565532684, + -0.01468038558959961, + -0.00739304767921567, + 0.01703241840004921, + -0.0061939070001244545, + -0.0038022331427782774, + -0.016662435606122017, + -0.016900282353162766, + 0.021868621930480003, + 0.004135878290981054, + -0.0028310285415500402, + -0.0015137909213081002, + -0.004961732309311628, + -0.018829477950930595, + -0.006517642177641392, + -0.03583546727895737, + -0.006824859883636236, + 0.013147599995136261, + -0.032241351902484894, + 0.011958369985222816, + -0.009606337174773216, + 0.017653461545705795, + -0.023163560777902603, + 0.028145113959908485, + 0.007862132973968983, + -0.014257548376917839, + -0.015565701760351658, + 0.03580904006958008, + -0.024009235203266144, + -0.01754775084555149, + -0.007994269020855427, + -0.010425584390759468, + -0.029440052807331085, + -0.006517642177641392, + -0.033509861677885056, + -0.0017342939972877502, + 0.003381047397851944, + 0.009996140375733376, + 0.008866371586918831, + -0.0170588456094265, + -0.01766667515039444, + -0.03440839424729347, + -0.008721021004021168, + 0.033298444002866745, + -0.004386937711387873, + -0.0014782791258767247, + -0.024881336838006973, + 0.004419972188770771, + -0.028515096753835678, + -0.014072556979954243, + 0.008972080424427986, + -0.01700599119067192, + 0.02441885881125927, + 0.0054341210052371025, + 0.0016574895707890391, + -0.03633758798241615, + 0.004429882392287254, + 0.009692225605249405, + 0.0003511945251375437, + -0.003409126540645957, + 0.007578038610517979, + -0.005995701998472214, + 0.005252433009445667, + -0.02700873836874962, + -0.0031894491985440254, + -0.037553247064352036, + -0.004046685993671417, + 0.008251936174929142, + -0.02973075397312641, + -0.0043142628856003284, + -0.036284733563661575, + 0.005566257983446121, + -0.039535295218229294, + 0.04889057204127312, + 0.02315034717321396, + -0.0004864281800109893, + -0.015050368383526802, + 0.017190983518958092, + -0.008991901762783527, + 0.016384948045015335, + 0.02390352636575699, + 0.029043642804026604, + -0.011297686956822872, + -0.025660943239927292, + 0.011674275621771812, + -0.022529304027557373, + 0.012473703362047672, + 0.0072807311080396175, + 0.018908759579062462, + -0.0014477225486189127, + -0.016266025602817535, + -0.039297450333833694, + 0.009176893159747124, + 0.024775628000497818, + 0.008489781990647316, + -0.025211678817868233, + 0.0022017275914549828, + 0.006468090694397688, + -0.002961513353511691, + 0.032214924693107605, + 0.023493902757763863, + -0.011396788991987705, + 0.005655450280755758, + 0.009044756181538105, + -0.016424590721726418, + -0.010022567585110664, + -0.036918990314006805, + 0.003129987744614482, + 0.025793081149458885, + 0.004030168987810612, + 0.004459613002836704, + 0.002885534893721342, + 0.002333864104002714, + 0.008899405598640442, + 0.01679457165300846, + -0.026268772780895233, + 0.006910748779773712, + 0.006458180490881205, + 0.006431753281503916, + -0.002807904500514269, + 0.006811646278947592, + 0.019728006795048714, + -0.004908877890557051, + -0.014508607797324657, + 0.02107580192387104, + -0.02357318438589573, + 0.000980289070867002, + 0.005159937310963869, + 0.012718155980110168, + -0.002355336444452405, + 0.0625799372792244, + -0.0073335859924554825, + -0.03868962079286575, + 0.01171391736716032, + -0.029836462810635567, + -0.01709848642349243, + 0.009434559382498264, + 0.01886911876499653, + 0.00392776308581233, + 0.011284472420811653, + 0.010418977588415146, + 0.035439059138298035, + 0.027458002790808678, + 0.01281065121293068, + -0.016358520835638046, + 0.015261786989867687, + -0.01171391736716032, + 0.03171280398964882, + 0.005635629408061504, + 0.011746951378881931, + -0.021247578784823418, + 0.027986548840999603, + 0.013068318367004395, + 0.005969274789094925, + -0.016014965251088142, + 0.003412429941818118, + -0.019093750044703484, + -0.02909649722278118, + 0.0011173808015882969, + -0.010141490958631039, + -0.005632326006889343, + -0.009375098161399364, + 0.012942788191139698, + 0.00759125268086791, + 0.003093650098890066, + 0.018010230734944344, + 0.0019407575018703938, + 0.012830471619963646, + -0.018763409927487373, + 0.00021265746909193695, + 0.00909100379794836, + 0.0014163401210680604, + 0.01543356478214264, + -0.004353903699666262, + 0.006431753281503916, + 0.02077188715338707, + 0.0054010869935154915, + -0.011073053814470768, + 0.01715134084224701, + -0.006428449880331755, + 0.014297189190983772, + -0.02909649722278118, + 0.02406208962202072, + -0.015169291757047176, + 0.025660943239927292, + -0.0013089790008962154, + 0.017944160848855972, + -0.0001739455619826913, + -0.0008919226238504052, + 0.018049871549010277, + 0.00794141460210085, + 0.003574297297745943, + 0.009460986591875553, + 0.0063359541818499565, + -0.0008613659883849323, + -0.012797437608242035, + 0.00392776308581233, + -0.010187738575041294, + -0.02143257111310959, + -0.0061939070001244545, + 0.024894550442695618, + -0.001739249099045992, + -0.004856023006141186, + 0.0013362321769818664, + -0.010240592993795872, + -0.02803940512239933, + 0.0022446720395237207, + 0.0010397505247965455, + -0.022053612396121025, + -0.024735987186431885, + 0.01359686441719532, + 0.01956944353878498, + 0.024947406724095345, + -0.010273627005517483, + -0.007558218203485012, + 0.02260858751833439, + 0.0003408713382668793, + 0.005044317804276943, + -0.01210372056812048, + -0.0016863944474607706, + -0.003352968255057931, + -0.007432688493281603, + 0.0010703071020543575, + -0.018168793991208076, + -0.029836462810635567, + -0.019199460744857788, + -0.0015542577020823956, + 0.036522578448057175, + 0.021485425531864166, + 0.01102019939571619, + 0.11194619536399841, + 0.010161311365664005, + -0.018697340041399002, + 0.02444528602063656, + 0.011621421203017235, + 0.014640744775533676, + 0.02782798558473587, + 0.003752681892365217, + 0.00048684110515750945, + -0.02613663673400879, + 0.016332093626260757, + -0.004713976290076971, + -0.007188235409557819, + -0.009467593394219875, + -0.009745080024003983, + 0.01518250536173582, + 0.005166544578969479, + 0.010670037008821964, + -0.02587236277759075, + 0.005880082491785288, + 0.015010727569460869, + -0.02801297791302204, + 0.009408132173120975, + 0.017508110031485558, + -0.011628028005361557, + -0.00690414197742939, + 0.012235856615006924, + -0.019305169582366943, + -0.011026806198060513, + -0.008615312166512012, + -0.001745855901390314, + 0.004248194396495819, + -0.06501124799251556, + -0.036496151238679886, + 0.041834473609924316, + -0.008687986992299557, + -0.014270761981606483, + -0.03276989609003067, + 0.02095687761902809, + 0.009460986591875553, + 0.0013866092776879668, + 0.032690614461898804, + -0.004948518704622984, + -0.03723611682653427, + -0.01222264301031828, + 0.001010845648124814, + 0.019001254811882973, + -0.016199957579374313, + -0.021128656342625618 + ], + "metadata": { + "source": "Thesis_Verladegeraeusche_in_Speditionen.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 41, + "has_images": true, + "image_count": 51, + "coordinates": "CoordinatesMetadata(points=((204.16666666666666, 189.02777777777797), (204.16666666666666, 642.3611111111111), (936.1666666666666, 642.3611111111111), (936.1666666666666, 189.02777777777797)), system=)", + "links": [], + "last_modified": "2025-05-05T22:59:16", + "_known_field_names": "frozenset({'cc_recipient', 'link_texts', 'url', 'filetype', 'category_depth', 'page_number', 'filename', 'orig_elements', 'detection_origin', 'email_message_id', 'page_name', 'coordinates', 'table_as_cells', 'link_start_indexes', 'sent_to', 'bcc_recipient', 'languages', 'last_modified', 'link_urls', 'file_directory', 'subject', 'data_source', 'detection_class_prob', 'image_base64', 'text_as_html', 'attached_to_filename', 'key_value_pairs', 'signature', 'sent_from', 'header_footer_type', 'parent_id', 'links', 'emphasized_text_contents', 'emphasized_text_tags', 'image_mime_type', 'is_continuation', 'image_path'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "Thesis_Verladegeraeusche_in_Speditionen.pdf", + "detection_class_prob": 0.2568194270133972, + "parent_id": "d45475a34bc527cde6987546fa6dd2f5", + "text_as_html": "
Flurf\u00f6rderger\u00e4t |Anzahl Einzelereignisse ElMax-PegelSchallleistungspegel
LAFmaxLWA,5sLWAmaxLWA,1hKlLWAT,1h
[dB(A)][dB(A)][dB(A)][dB(A)][dB(A)][dB(A)]
Gabelstapler29769,3100,7108,872,15,777,8
STABW [dB]6,54,96,54,92,9-
Gabelhubwagen9968,6100,7108,172,16,279,5
STABW [dB]6,45,16,4512,7-
", + "id": "5ba44de7-0ff3-4c0c-b018-67e92171e1c2", + "processing_timestamp": "2025-05-06T14:18:19.298665", + "chunk_number": 4, + "total_chunks": 49, + "chunking_strategy": "hybrid", + "word_count": 325 + } +} \ No newline at end of file diff --git a/data/processed/85fd305f-83de-70b0-47e8-2dc000000005.json b/data/processed/85fd305f-83de-70b0-47e8-2dc000000005.json new file mode 100644 index 0000000000000000000000000000000000000000..1ed5e76ad991c89acf4f1506b0cf654f5799010f --- /dev/null +++ b/data/processed/85fd305f-83de-70b0-47e8-2dc000000005.json @@ -0,0 +1,1570 @@ +{ + "id": "85fd305f-83de-70b0-47e8-2dc000000005", + "content": "[10, 3, 5]\n\n7\n2 Grundlagen\n\n## Verladezone\n\nDer Umschlagspunkt in der Logistik ist der zentrale Bereich einer Spedition, wo die G\u00fcter von den Kunden ankommen, gelagert und f\u00fcr den Weitertransport vorbereitet werden. Eine geeignete Verladestation ist entscheidend f\u00fcr eine sichere und effiziente Verla- dung. Die Gestaltung einer Verladestation variiert je nach Unternehmensgr\u00f6\u00dfe und -art, aber es gibt grundlegende Merkmale, die in den meisten Verladezonen zu finden sind. Es ist wichtig, die unterschiedlichen Abmessungen der Anh\u00e4nger bei der Gestaltung zu ber\u00fccksichtigen. Die Fahrbahndecken in den Verladezonen bestehen in der Regel aus Beton, Asphalt, Betonplatten oder Klinkerpflaster. [11]\nEine Verladestation besteht aus diversen Komponenten. Aus der vertieften Verladesta- tion, \u00dcberladebr\u00fccke und der Torrandabdichtung. Die vertiefte Verladestation dient zum H\u00f6henausgleich zwischen dem Lagerboden und der Anh\u00e4nger-Ladefl\u00e4che. [11] Eine \u00dcberladebr\u00fccke wird ben\u00f6tigt, um Anh\u00e4nger zu Be- und Entladen und wird \u00fcbli- cherweise an die Verladeschleusen angebaut. \u00dcberladebr\u00fccken sind in unterschiedli- chen Ausf\u00fchrungen und Materialien erh\u00e4ltlich. In der Regel werden \u00dcberladebr\u00fccken in elektrohydraulischen und manuellen Verladerampen unterteilt, welche beispielsweise aus Stahl oder Aluminium bestehen. Der Anhebe- bzw. der Absenkvorgang funktioniert vollautomatisiert. Um die Be- und Entladung mit einem Flurf\u00f6rderger\u00e4t zu erleichtern und das Flurf\u00f6rderger\u00e4t somit nicht auf den Boden aufsetzt, ist ein Klappkeil mit offenen\nScharnieren oder auch Vorschublippen auf die \u00dcberladebr\u00fccke angebaut. [12]\nDa eine Verladestation allen Wetterbedingungen ausgesetzt ist, werden sogenannte Torrandabdichtungen an das Tor angebracht, die die L\u00fccken zwischen Anh\u00e4nger und Geb\u00e4ude umschlie\u00dft. Torrandabdichtungen werden in drei Arten unterschieden. In auf- blasbare Torranddichtungen, Planentorabdichtungen und Kissentorabdichtungen. Auf- blasbare Torrandabdichtungen bestehen aus mit Luft gef\u00fcllten Kissen, die gegen das Dach und die Seiten des Anh\u00e4ngers dr\u00fccken, um die L\u00fccken abzudichten. Bei Planentor- abdichtungen werden die L\u00fccken mit Hilfe von Planen geschlossen, die die Seiten und das Dach des Anh\u00e4ngers umschlie\u00dfen. [11]\n\n## Ablauf einer Be- und Entladung\n\nDer Beladevorgang kann je nach Art und Umfang der zu transportierenden G\u00fcter sehr unterschiedlich sein aber kann grunds\u00e4tzlich in folgenden Arbeitsschritten erfolgen. Zu\n8\n2 Grundlagen\nBeginn einer Be- und Entladung steht das einzelne Packst\u00fcck. Das Packst\u00fcck wird zu ei- ner Ladeeinheit gebildet und auf einem geeigneten Ladungstr\u00e4ger wie einer Normpa- lette abgelegt. Die Ladeeinheit wird im Lager zwischengelagert, bis der Auftrag zur Aus- lieferung an Kunden erteilt wird. Der Anh\u00e4nger dockt an eine zugewiesene Verladesta- tion an, wo der Fahrer der Zugmaschine und das Verladepersonal den Beladevorgang abstimmen. Der Fahrer \u00f6ffnet die Laderaumt\u00fcren respektive die Abdeckung des Anh\u00e4- ngers, w\u00e4hrend das Verladepersonal die G\u00fcter kontrolliert und den Transport vorberei- tet.", + "embedding": [ + 0.023669270798563957, + 0.0034805797040462494, + 0.014640375040471554, + -0.01452069915831089, + -0.006183264777064323, + 0.024041596800088882, + -0.02350970357656479, + -0.007040943019092083, + -0.007060889154672623, + -0.024600084871053696, + 0.008317488245666027, + 0.02827015146613121, + -0.02658138982951641, + 0.01177479699254036, + 0.009580736048519611, + 0.00849035382270813, + 0.029573291540145874, + 0.015065889805555344, + -0.013151072897017002, + -0.01337047852575779, + -0.027179770171642303, + -0.009986304678022861, + 0.01781843975186348, + -0.01290507148951292, + -0.016728058457374573, + 0.007918568328022957, + 0.03909418731927872, + 0.0027708339039236307, + 0.01251280028373003, + 0.0002977358235511929, + -0.007592782843858004, + -0.014813240617513657, + -0.007160619366914034, + 0.0035104986745864153, + -0.006329535506665707, + -0.01296490989625454, + -0.003919391892850399, + -0.023882027715444565, + 0.016502002254128456, + -0.01854979433119297, + 0.025743655860424042, + -0.0018317090580239892, + 0.0008634962141513824, + -0.03140832483768463, + 0.007586134131997824, + 0.016648273915052414, + -0.02656809240579605, + -0.013297343626618385, + -0.03228595107793808, + 0.018416820093989372, + 0.030424321070313454, + 0.02491922117769718, + -0.03329654783010483, + -0.0029852534644305706, + -0.0032994032371789217, + -0.008257649838924408, + -0.024015001952648163, + -0.00372325605712831, + 0.016355732455849648, + -0.030105184763669968, + -0.025384629145264626, + 0.00125576788559556, + -0.018204063177108765, + 0.006575536448508501, + -0.013682966120541096, + -0.0041122036054730415, + -0.0034805797040462494, + -0.007911919616162777, + -0.01612967811524868, + -0.01704719476401806, + 0.02010558359324932, + 0.03159448876976967, + 0.009534195065498352, + 0.012113879434764385, + 0.02744571678340435, + -0.020664071664214134, + 0.011203011497855186, + 0.011050092056393623, + -0.02491922117769718, + 0.009148572571575642, + 0.022153373807668686, + -0.029679670929908752, + -0.022259753197431564, + 0.06648671627044678, + 0.027658473700284958, + -0.0149063216522336, + 0.006359454244375229, + 0.004201960284262896, + 0.0005115321837365627, + 0.009746952913701534, + -0.01708708517253399, + 0.009427816607058048, + -0.003076672786846757, + 0.023935217410326004, + 0.009574087336659431, + -0.0021325615234673023, + 0.0038529052399098873, + 0.028908424079418182, + 0.004142122343182564, + -0.03845591843128204, + -0.016369029879570007, + 0.012645773589611053, + -0.007798891980201006, + 0.001450241543352604, + -0.02491922117769718, + -0.013589885085821152, + -0.010578036308288574, + 0.0019696690142154694, + 0.00443798815831542, + -0.015797244384884834, + -0.018164170905947685, + 0.04465247690677643, + -0.022046994417905807, + -0.003606904298067093, + 0.009461060166358948, + -0.023243755102157593, + 0.02834993600845337, + -0.017406221479177475, + 0.0023220486473292112, + -0.028722262009978294, + 0.016634976491332054, + 0.028775451704859734, + 0.01293831504881382, + -0.000516934203915298, + 0.019001903012394905, + 0.013164369389414787, + 0.020783746615052223, + 0.009600682184100151, + -0.019241254776716232, + -0.011282796040177345, + -0.019214661791920662, + 0.013011449947953224, + -0.002445048885419965, + 0.001364639843814075, + -0.00884938146919012, + 0.006056939717382193, + -0.01298485603183508, + -0.0004236450477037579, + -0.023655973374843597, + -0.044093988835811615, + 0.026328738778829575, + 0.003076672786846757, + -0.028030799701809883, + -0.030158374458551407, + 0.004654070362448692, + 0.025983009487390518, + 0.01708708517253399, + 0.010092683136463165, + -0.01178809441626072, + 0.001879911869764328, + -0.0033343087416142225, + -0.01854979433119297, + 0.017259951680898666, + -0.03066367283463478, + -0.01533183641731739, + 0.01868276670575142, + -0.007273646537214518, + 0.0001451280404580757, + -0.014161670580506325, + -0.02912118099629879, + 0.029626481235027313, + 0.0053787752985954285, + 0.013895723968744278, + -0.014135075733065605, + 0.013922318816184998, + 0.024586787447333336, + -0.006605455186218023, + -0.0010380238527432084, + -0.005684614181518555, + -0.011555391363799572, + -0.008231055922806263, + 0.0033775251358747482, + -0.0298126433044672, + 0.016355732455849648, + -0.011415769346058369, + -0.003769796807318926, + 0.015052592381834984, + -0.0012341596884652972, + -0.038269754499197006, + -0.011847932823002338, + -0.010976957157254219, + 0.013682966120541096, + 0.015956811606884003, + 0.010338684543967247, + -0.041647277772426605, + -0.019161472097039223, + 0.014121778309345245, + 0.016767950728535652, + -0.014387725852429867, + -0.002925415523350239, + 0.000511947728227824, + 0.009866628795862198, + -0.0065921577624976635, + -0.004650746006518602, + -0.616996705532074, + 0.0029569966718554497, + -0.006721807178109884, + -0.00344401178881526, + 0.002875550417229533, + 0.030929621309041977, + 0.01698070764541626, + -0.003926040604710579, + -0.007433214690536261, + 0.031993407756090164, + -0.005658019334077835, + 0.017525898292660713, + -0.004245176911354065, + 0.007872027345001698, + -0.015664270147681236, + -0.009594033472239971, + -0.026820741593837738, + -0.010850631631910801, + 0.05092882364988327, + 0.009035544469952583, + -0.035078391432762146, + 0.02333683706820011, + -0.014028697274625301, + 0.012705611065030098, + 0.014387725852429867, + -0.0028738882392644882, + 0.016834435984492302, + 0.00013619387755170465, + -0.003084983676671982, + 0.003969256766140461, + -0.0071207270957529545, + 0.0031115782912820578, + -0.020052393898367882, + 0.02107628993690014, + 0.04260468855500221, + 0.024560192599892616, + -0.012632476165890694, + 0.022379428148269653, + -0.0005559951532632113, + 0.030211564153432846, + 0.00847040768712759, + -0.03579644858837128, + 0.0009183477959595621, + -0.024746356531977654, + 0.004693962167948484, + -0.006987753789871931, + 0.0435355007648468, + -0.0027924419846385717, + -0.008111379109323025, + -0.02253899723291397, + 0.024826139211654663, + 0.0011660107411444187, + 0.0027990906964987516, + 0.0013970520813018084, + 0.011748203076422215, + 0.009826736524701118, + 0.015943514183163643, + -0.007386674173176289, + 0.004088933113962412, + -0.006359454244375229, + 0.006203210446983576, + 0.012619178742170334, + -0.011276147328317165, + -0.015850432217121124, + -0.034413523972034454, + 0.018057791516184807, + -0.02108958549797535, + -0.02114277519285679, + 0.008137973956763744, + -0.00018637056928128004, + -0.009933114983141422, + 0.007107430137693882, + -0.006292967591434717, + -0.011681715957820415, + 0.02821696177124977, + 0.021209262311458588, + -0.009567438624799252, + -0.013417019508779049, + 0.001609809580259025, + 0.03172745928168297, + -0.0058541554026305676, + 0.006083534564822912, + -0.0052192071452736855, + -0.009594033472239971, + 0.0325784906744957, + 0.007220457307994366, + -0.01448080688714981, + 0.012200312688946724, + -0.005764398258179426, + 0.018190765753388405, + 0.023124080151319504, + 0.03712618350982666, + -0.005734479054808617, + -0.015491404570639133, + -0.0019447364611551166, + 0.03962608426809311, + -0.004374825861304998, + 0.028110584244132042, + 0.0026096035726368427, + -0.03305719420313835, + -0.010225657373666763, + -0.0051693422719836235, + 0.015464810654520988, + -0.003992527257651091, + 0.04906719550490379, + 0.01534513384103775, + -0.017233356833457947, + 0.0010081048822030425, + 0.026395225897431374, + -0.030078589916229248, + -0.013948912732303143, + -0.00271930661983788, + -0.016462111845612526, + -0.00934138335287571, + -0.017193464562296867, + -0.019932717084884644, + -0.007532944902777672, + -0.003703310154378414, + -0.004816962406039238, + -0.026461713016033173, + 0.009766899049282074, + 0.006136723794043064, + 0.009048841893672943, + -0.01045836042612791, + -0.016821138560771942, + 0.021435316652059555, + 0.01850990206003189, + -0.007153970655053854, + -0.014760050922632217, + 0.0021857507526874542, + 0.0021757776848971844, + 0.003906094469130039, + 0.019680067896842957, + -0.011070038191974163, + 0.02104969508945942, + 0.011495552957057953, + 0.03220616653561592, + -0.0031414972618222237, + 0.003889472922310233, + -0.04699281230568886, + -0.02256559208035469, + -0.01338377594947815, + 0.02346981130540371, + -0.03396141529083252, + -0.022312942892313004, + -0.036594290286302567, + -0.017166869714856148, + 0.009840033948421478, + -0.02829674631357193, + 0.013131126761436462, + -0.02268526703119278, + -0.038482509553432465, + -0.01783173717558384, + 0.016621679067611694, + 0.0010363616747781634, + 0.002029506955295801, + -0.01940082386136055, + -0.0010704360902309418, + 0.003613553009927273, + -0.031248755753040314, + 0.0080448929220438, + 0.006073561497032642, + -0.04763108491897583, + 0.008098081685602665, + -0.015012700110673904, + -0.011661769822239876, + 0.02335013449192047, + 0.02093001827597618, + -0.03337633237242699, + -0.035237960517406464, + 0.007772297132760286, + -0.0054585593752563, + -0.018283847719430923, + 0.00547850551083684, + -0.021953914314508438, + 0.0029387129470705986, + -0.013483505696058273, + 0.009494302794337273, + 0.007885324768722057, + -0.006186589132994413, + -0.004308339208364487, + 0.009055490605533123, + -0.012373178265988827, + -0.0023386701941490173, + 0.01489302422851324, + 0.015305242501199245, + 0.00017972190107684582, + 0.04451950639486313, + -0.02581014297902584, + 0.007406620308756828, + 0.0060170479118824005, + 0.03938673064112663, + 0.00042260618647560477, + 0.002170791383832693, + -0.019028497859835625, + 0.007114078849554062, + -0.0012441326398402452, + 0.03077005222439766, + 0.0029569966718554497, + 0.005043017212301493, + 0.03074345737695694, + -0.012140474282205105, + 0.021408721804618835, + -0.01449410431087017, + 0.010983605869114399, + -0.009421167895197868, + 0.01783173717558384, + -0.01704719476401806, + 0.05505100265145302, + 0.018829038366675377, + 0.027073390781879425, + -0.005421991925686598, + -0.024493705481290817, + -0.006788293831050396, + 0.005116153042763472, + 0.06414638459682465, + -0.01406858954578638, + 0.023602783679962158, + 0.02255229465663433, + 0.011395823210477829, + -0.003906094469130039, + 0.0024400625843554735, + 0.0298126433044672, + -0.0021541696041822433, + -0.027844637632369995, + -0.012000852264463902, + 0.012692314572632313, + 0.003773121163249016, + -0.01934763416647911, + -0.02108958549797535, + 0.0024001705460250378, + 0.007193862926214933, + -0.015504701994359493, + 0.015983406454324722, + 0.016634976491332054, + -0.005209234077483416, + 0.013709560967981815, + -0.0013987142592668533, + 0.03882824257016182, + -0.012399772182106972, + 0.011801391839981079, + 0.03912078216671944, + 0.035929422825574875, + -0.02503889799118042, + 0.013869129121303558, + 0.003424065886065364, + 0.0137893445789814, + 0.02357618883252144, + -0.018110981211066246, + 0.0017170194769278169, + 0.007546242326498032, + -0.0009515911224298179, + -0.009028895758092403, + -0.02010558359324932, + -0.005624776240438223, + -0.012027447111904621, + 0.012452961876988411, + -0.015278647653758526, + 0.012393123470246792, + 0.004564313217997551, + 0.00931478850543499, + 0.0070276460610330105, + 0.005412018857896328, + -0.010139224119484425, + 0.003036780748516321, + 0.0014161670114845037, + -0.020810341462492943, + -0.027764853090047836, + -0.008337434381246567, + 0.017512600868940353, + 0.028004204854369164, + -0.009514248929917812, + -0.018217360600829124, + 0.01289177406579256, + 0.017206761986017227, + 0.00803824421018362, + 0.0019447364611551166, + 0.00852359738200903, + 0.01333058625459671, + 0.028004204854369164, + -0.008789543993771076, + -0.022991105914115906, + -0.01700730249285698, + 0.03797721117734909, + -0.008749651722609997, + -0.010644523426890373, + -0.014041994698345661, + 0.02763187885284424, + -0.0037864185869693756, + 0.00852359738200903, + -0.006053615361452103, + -0.010112629272043705, + -0.010764199309051037, + 0.0009200099157169461, + 0.010651172138750553, + -0.015132376924157143, + 0.028004204854369164, + 0.009148572571575642, + 0.0014211535453796387, + 0.0014934578211978078, + 0.007958459667861462, + -0.018762551248073578, + -0.012020798400044441, + -0.02579684555530548, + 0.03005199506878853, + -0.009913169778883457, + -0.005554965231567621, + -0.00373655348084867, + 0.008244352415204048, + -0.027658473700284958, + -0.011980906128883362, + -0.0001484523672843352, + -0.0011244566412642598, + -0.0019048444228246808, + 0.001203409512527287, + -0.00021099143486935645, + 0.01136257965117693, + 0.01051155012100935, + 0.04433334246277809, + 0.018376927822828293, + -0.019267849624156952, + 0.002860591048374772, + 0.0035603635478764772, + 0.011635174974799156, + 0.023948514834046364, + 0.025358034297823906, + -0.008616678416728973, + 0.026873931288719177, + -0.01922795921564102, + -0.016661571338772774, + 0.019839636981487274, + -0.029360534623265266, + 0.011495552957057953, + 0.024520300328731537, + 0.009574087336659431, + -7.620001269970089e-05, + 0.024507002905011177, + -0.02171456068754196, + 0.02268526703119278, + 0.006804915610700846, + -0.0028472936246544123, + -0.013270748779177666, + 0.038269754499197006, + -0.008636624552309513, + -0.009760250337421894, + -0.02656809240579605, + -0.02922756038606167, + 0.04199301078915596, + 0.003590282751247287, + -0.008623327128589153, + 0.01610308326780796, + 0.028562692925333977, + 0.01087722647935152, + -0.024733059108257294, + -0.00690796971321106, + 0.03071686252951622, + 0.011894473806023598, + 0.02600960247218609, + -0.006402670871466398, + 0.007665918208658695, + -0.004128824919462204, + -0.019759852439165115, + 0.03957289457321167, + 0.007506350055336952, + 0.0019131553126499057, + 0.01932103931903839, + 0.002209021244198084, + -0.015478107146918774, + 0.0043681771494448185, + 0.001549140433780849, + 0.009627276100218296, + 0.0036833640187978745, + 0.0001314151450060308, + -0.01691422052681446, + 0.018363630399107933, + -0.01945401355624199, + -0.011242903769016266, + -0.013436965644359589, + 0.01138252578675747, + -0.014135075733065605, + 0.002026182599365711, + -0.0048003410920500755, + -0.01049160398542881, + -0.00846375897526741, + -0.026076089590787888, + -0.03574325889348984, + 0.01247290801256895, + -0.020743856206536293, + -0.01085728034377098, + -0.027791447937488556, + -0.02577025070786476, + -0.002694374183192849, + -0.011834635399281979, + 0.00746645824983716, + -0.0015001065330579877, + -0.010099331848323345, + -0.0257569532841444, + -0.01448080688714981, + 0.03409438952803612, + 0.0005842520040459931, + 0.006615428254008293, + -0.012698962353169918, + 0.01847000978887081, + 0.027951015159487724, + -0.00543528888374567, + -0.00807148776948452, + -0.01712697744369507, + -0.017472708597779274, + -0.007320187520235777, + 0.021235857158899307, + 0.004384798929095268, + 0.015850432217121124, + 0.016355732455849648, + 0.0032761329784989357, + -0.0009241653606295586, + 0.0011942676501348615, + -0.01295161247253418, + 0.004557664506137371, + 0.019640175625681877, + 0.0177120603621006, + 0.010850631631910801, + 0.0007409113459289074, + 0.013829236850142479, + -0.03667407110333443, + 0.01089717261493206, + -0.008344083093106747, + 0.007140673231333494, + -0.00887597631663084, + 0.012319988571107388, + -0.02175445295870304, + -0.011714959517121315, + -0.010371928103268147, + -0.009966358542442322, + 0.010571387596428394, + 0.011282796040177345, + -0.012399772182106972, + -0.010996903292834759, + 0.018935415893793106, + -0.02175445295870304, + 0.017259951680898666, + 0.0149063216522336, + 0.01773865520954132, + 0.024892626330256462, + 0.009667168371379375, + -0.004560988862067461, + -0.018443414941430092, + 0.032711464911699295, + 0.010139224119484425, + 0.002730941865593195, + 0.0500246062874794, + -0.004551015794277191, + 0.0045277453027665615, + -0.015132376924157143, + -0.005136098712682724, + 0.021289046853780746, + 0.028669072315096855, + -0.012187015265226364, + 0.007320187520235777, + -0.039971813559532166, + -0.0008634962141513824, + 0.01604989357292652, + 0.011455661617219448, + -0.001008935971185565, + -0.01869606412947178, + -0.032738059759140015, + 0.02672765962779522, + -0.01248620543628931, + -0.018416820093989372, + -0.023217162117362022, + -0.025690468028187752, + -0.003224605694413185, + 0.016515299677848816, + -0.01873595640063286, + 0.020664071664214134, + -0.009853331372141838, + -0.012200312688946724, + -0.01610308326780796, + -0.01498610619455576, + -0.013171018101274967, + -0.03412098437547684, + 0.0031132404692471027, + -0.01869606412947178, + 0.027685068547725677, + 0.029653076082468033, + 0.0050097741186618805, + -0.014281346462666988, + 0.022472510114312172, + -0.013004801236093044, + -0.012213610112667084, + 0.0011227944632992148, + -0.018416820093989372, + -0.00014959511463530362, + -0.023935217410326004, + 0.016475407406687737, + 0.02108958549797535, + 0.0004841063928324729, + 0.012326637282967567, + 0.009381275624036789, + 0.017924819141626358, + 0.03497201204299927, + -0.014361131004989147, + -0.014733456075191498, + -0.017605682834982872, + -0.027791447937488556, + -0.0027990906964987516, + 0.017326438799500465, + 0.006425940897315741, + -0.009966358542442322, + -0.04358869045972824, + -0.0022987781558185816, + 0.004105554893612862, + -0.027219662442803383, + -0.01706049218773842, + -0.017419518902897835, + 0.001048827893100679, + -0.0482693575322628, + 0.022884728386998177, + 0.03233913704752922, + -0.013483505696058273, + -0.005618127528578043, + -0.001682113972492516, + -0.023975109681487083, + -0.004118851851671934, + 0.017206761986017227, + 0.004311663564294577, + 0.002543116919696331, + 0.004391447640955448, + -0.00843051541596651, + 0.01177479699254036, + -0.015225457958877087, + 0.016541894525289536, + -0.017366331070661545, + 0.002064412459731102, + -0.015092484652996063, + -0.014427617192268372, + -0.022831538692116737, + 0.00845711026340723, + -0.020863531157374382, + 0.02272515930235386, + 0.00020143396977800876, + 0.023749055340886116, + 0.03303059935569763, + -0.03249870613217354, + -0.014321238733828068, + 0.002538130385801196, + -0.0068680779077112675, + -0.006346157286316156, + 0.019134877249598503, + 0.036833640187978745, + 0.0020245204214006662, + 0.0003993358404841274, + -0.013656371273100376, + -0.07813519239425659, + 0.0063428329303860664, + 0.01612967811524868, + 0.016541894525289536, + 0.011249552480876446, + 0.0045244209468364716, + -0.006213183514773846, + -0.002581346780061722, + 0.0036700668279081583, + 0.004248501267284155, + -0.004198635928332806, + 0.050609689205884933, + 0.028030799701809883, + 0.007240403443574905, + -0.004866827744990587, + -0.008264298550784588, + 0.008098081685602665, + -0.007286943960934877, + -0.003573660971596837, + 0.0023187242913991213, + -0.0149063216522336, + -0.005498451646417379, + -0.004221906419843435, + 0.04462588578462601, + -0.003055064706131816, + 0.02763187885284424, + 0.011967608705163002, + -0.01776525005698204, + -0.0017702088225632906, + 0.00015136116417124867, + -0.0005165186594240367, + 0.010172467678785324, + -0.021209262311458588, + 0.014214860275387764, + -0.015424918383359909, + -0.011016848497092724, + 0.020464612171053886, + 0.02578354813158512, + -0.03715277835726738, + -0.022153373807668686, + -0.0037166073452681303, + 0.022844836115837097, + -0.006768347695469856, + 0.006086858920753002, + 0.009906521067023277, + 0.0009981318144127727, + 0.011236255057156086, + 0.0023203864693641663, + 0.008084784261882305, + 0.0012391462223604321, + -0.0035936071071773767, + -0.024467112496495247, + -0.006040317937731743, + -0.008556840009987354, + -0.004986503627151251, + -0.015970109030604362, + 0.009520897641777992, + -0.011681715957820415, + -0.012240204028785229, + -0.03563687950372696, + 0.0031265378929674625, + -0.02518516778945923, + -0.04045051708817482, + -0.0028738882392644882, + -0.0036667424719780684, + 0.016555191949009895, + -0.013829236850142479, + 0.005661343690007925, + -0.030344536527991295, + 0.029599886387586594, + -0.04308339208364487, + 0.028881829231977463, + 0.025278249755501747, + 0.016555191949009895, + -0.023828839883208275, + 0.003576985327526927, + 0.0034573092125356197, + -0.005505099892616272, + 0.03550390526652336, + 0.010119277983903885, + -0.007778945844620466, + -0.014773348346352577, + -0.00032308389199897647, + -0.00041886631515808403, + -0.013436965644359589, + -0.009713709354400635, + 0.010252251289784908, + -0.016648273915052414, + 0.017938116565346718, + -0.009008949622511864, + -0.013476856984198093, + 0.007798891980201006, + 0.0004379812453407794, + 0.00849035382270813, + 0.014773348346352577, + -0.0267675518989563, + -0.00047995097702369094, + 0.01291836891323328, + 0.002418454270809889, + -0.0043648527935147285, + -0.028669072315096855, + -0.02192731946706772, + 0.02187412977218628, + 0.006927915848791599, + -0.017379628494381905, + -0.0054253158159554005, + -0.0007022659410722554, + -0.02922756038606167, + -0.007326836232095957, + 0.010764199309051037, + -0.001302308519370854, + -0.01253939513117075, + 0.02354959398508072, + 0.0019912770949304104, + 0.029333939775824547, + 0.02416127175092697, + 0.013057990930974483, + -0.025464411824941635, + 0.029466912150382996, + -0.005245801992714405, + -0.012605881318449974, + 0.007579485420137644, + -0.012286745011806488, + 0.026461713016033173, + -0.002858928870409727, + -0.025663873180747032, + 0.024413922801613808, + -0.004700610879808664, + -0.03324335813522339, + 0.017552493140101433, + 0.0306902676820755, + 0.012014149688184261, + 0.006113453768193722, + 0.03451990336179733, + 0.0023220486473292112, + 0.017978008836507797, + 0.009055490605533123, + 0.025717061012983322, + -0.014680267311632633, + 0.005418667569756508, + -0.008570137433707714, + -0.00888262502849102, + 0.006788293831050396, + -0.007153970655053854, + -0.04829595237970352, + -0.01538502611219883, + 0.031089188531041145, + 0.011941013857722282, + 0.00893581472337246, + 0.026036197319626808, + -0.00047995097702369094, + -0.010199062526226044, + -0.019121579825878143, + 0.0018051143269985914, + 0.007898622192442417, + -0.010697712190449238, + 0.030371131375432014, + -0.03576985374093056, + -0.012811990454792976, + 0.00048452193732373416, + 0.004750475753098726, + -0.005687938537448645, + -0.005691262893378735, + 0.00747310696169734, + -0.007007699925452471, + 0.01448080688714981, + 0.023735757917165756, + -0.0068680779077112675, + -0.006632050033658743, + -0.00036484585143625736, + 0.01956039108335972, + 0.016648273915052414, + -0.01710038259625435, + 0.011036794632673264, + 0.013004801236093044, + 0.0012748828157782555, + -0.01049160398542881, + -0.0169674102216959, + -0.031142378225922585, + 0.007147321943193674, + 0.015252052806317806, + -0.02110288292169571, + 0.022326238453388214, + -0.002353629795834422, + 0.01768546737730503, + -0.010086034424602985, + 0.015970109030604362, + -0.019573688507080078, + -0.008676516823470592, + -0.021235857158899307, + 0.03531774505972862, + -0.0003642225346993655, + -0.0217677503824234, + 0.008330785669386387, + 0.0025896576698869467, + -0.01848330721259117, + -0.0012624164810404181, + -0.009953061118721962, + 0.0019613581243902445, + -0.020836936309933662, + -0.021195964887738228, + -0.028775451704859734, + -0.011242903769016266, + 0.0014884714037179947, + 0.006721807178109884, + -0.0022788322530686855, + -0.02342991903424263, + -0.026315441355109215, + 0.17839716374874115, + -0.048162978142499924, + -0.011475606821477413, + 0.006269697565585375, + -0.0208901260048151, + -0.026235658675432205, + 0.029387129470705986, + -0.0011335985036566854, + 0.017419518902897835, + 0.0200789887458086, + 0.012133825570344925, + 0.015730757266283035, + -0.006352805532515049, + 0.002223980613052845, + 0.02091672085225582, + -0.0308232419192791, + -0.011894473806023598, + -0.021342236548662186, + 0.004943287465721369, + 0.04031754285097122, + 0.019640175625681877, + -0.020810341462492943, + 0.0019380877492949367, + -0.027099985629320145, + 0.02267196960747242, + 0.001455227960832417, + -0.004052365198731422, + 0.015451513230800629, + 0.013583236373960972, + 0.02433413825929165, + -0.018337035551667213, + -0.0004122176324017346, + -0.004637448582798243, + -0.011827986687421799, + 0.005265748128294945, + 0.00805154163390398, + 0.01688762567937374, + -0.0060669127851724625, + 0.012944963760674, + 0.039200566709041595, + 0.03821656480431557, + -0.017406221479177475, + -0.013895723968744278, + -0.0200789887458086, + -0.019653473049402237, + 0.023283647373318672, + 0.021461911499500275, + -0.0055848839692771435, + 0.007626026403158903, + 0.00503304461017251, + -0.021182667464017868, + 0.007340133655816317, + -0.0035337689332664013, + 0.041700467467308044, + 0.0013845858629792929, + 0.004301690496504307, + -0.0007380025344900787, + -0.00852359738200903, + 0.011641823686659336, + -0.007818837650120258, + -0.0267010647803545, + 0.016369029879570007, + -0.011262849904596806, + 0.03055729530751705, + 0.014334536157548428, + 0.015744054690003395, + 0.0008310839766636491, + -0.0016746341716498137, + 0.004753800109028816, + -0.015517999418079853, + -0.0023453189060091972, + -0.013104531913995743, + 0.0003536262083798647, + 0.003553715068846941, + -0.018855633214116096, + -0.036886829882860184, + 0.0050529902800917625, + -0.007100781425833702, + 0.031089188531041145, + 0.0340677946805954, + -0.010750901885330677, + 0.007040943019092083, + -0.006189913488924503, + -0.021355533972382545, + -0.0021225884556770325, + -0.02426765114068985, + 0.04186003655195236, + 0.031940218061208725, + 0.0149728087708354, + -0.02104969508945942, + -0.00372990476898849, + -0.02432084083557129, + 0.004720557015389204, + -0.007127375807613134, + 0.00345398485660553, + 0.007286943960934877, + 0.030903026461601257, + 0.01450740173459053, + -0.005305639933794737, + -0.01699400506913662, + -0.00703429477289319, + 0.05252450704574585, + 0.039971813559532166, + -0.01338377594947815, + -0.013869129121303558, + 0.0034672822803258896, + -0.008211109787225723, + 0.03481244295835495, + 0.002194061642512679, + -0.02840312570333481, + 0.0026594686787575483, + -0.0031248757150024176, + 0.00936797820031643, + -0.015105782076716423, + -0.001633079955354333, + -0.0013106194091960788, + 0.011415769346058369, + 0.00032370720873586833, + 0.004813638050109148, + -0.03486563265323639, + -0.02353629842400551, + -0.020557692274451256, + 0.018855633214116096, + -0.005342207849025726, + 0.01775195263326168, + -0.03412098437547684, + -0.03473266214132309, + 0.018071088939905167, + 0.0011385850375518203, + 0.016422219574451447, + 0.012206961400806904, + -0.002855604514479637, + 0.008171217516064644, + -0.008290893398225307, + 0.0012948288349434733, + 0.017193464562296867, + -0.019693365320563316, + -0.04454610124230385, + -0.009893223643302917, + 0.017339736223220825, + 0.022153373807668686, + 0.014201562851667404, + -0.001876587513834238, + -0.01691422052681446, + 0.019813042134046555, + -0.006106805056333542, + 0.016528597101569176, + -0.01137587707489729, + -0.030903026461601257, + -0.044040799140930176, + -0.009175166487693787, + 0.006834834348410368, + -0.005997101776301861, + -0.019719960168004036, + 0.0057012359611690044, + -0.0009499289444647729, + -0.03316357359290123, + -0.0370463989675045, + 0.043402526527643204, + -0.0013197612715885043, + -0.027951015159487724, + -0.0011369228595867753, + 0.007080835290253162, + -0.04435993731021881, + 0.00033347244607284665, + -3.072413528570905e-05, + -0.1672273874282837, + 0.02590322494506836, + 0.022472510114312172, + 0.0013505114475265145, + 0.019081687554717064, + 0.005558289587497711, + 0.01949390582740307, + 0.013895723968744278, + -0.03409438952803612, + 0.004401420708745718, + 0.03130194544792175, + -0.008364029228687286, + -0.0388016477227211, + -0.02510538324713707, + -0.016462111845612526, + -0.005927290767431259, + -0.009520897641777992, + 0.017366331070661545, + 0.044865235686302185, + 0.01534513384103775, + 0.030450915917754173, + -0.01293831504881382, + 0.014188265427947044, + 0.006552265956997871, + -0.0021109532099217176, + 0.008297542110085487, + -0.02171456068754196, + 0.020052393898367882, + -0.0014751739799976349, + -0.009055490605533123, + 0.009587384760379791, + -0.016847733408212662, + 0.015451513230800629, + -0.015025997534394264, + -0.022419320419430733, + -0.011555391363799572, + -0.000668191525619477, + 0.002405156847089529, + -0.011203011497855186, + 0.023655973374843597, + 0.016475407406687737, + 0.03385503590106964, + -0.021621480584144592, + 0.0024500354193150997, + 0.00850365124642849, + 0.017193464562296867, + 0.0063428329303860664, + -0.023110782727599144, + -0.00891586858779192, + -0.022326238453388214, + 0.001878249691799283, + -0.008603380993008614, + 0.0028240233659744263, + 0.038509104400873184, + 0.015557891689240932, + 0.020703963935375214, + 0.019148174673318863, + 0.007592782843858004, + -0.01381593942642212, + 0.023230459541082382, + 0.007147321943193674, + -0.008676516823470592, + -0.004863503389060497, + -0.00544858630746603, + -0.009600682184100151, + -0.021169370040297508, + -0.012991504743695259, + 0.012333285994827747, + -0.010990254580974579, + -0.0033392952755093575, + -0.0021392100024968386, + -0.025238357484340668, + 0.019906122237443924, + -0.014015399850904942, + 0.010438414290547371, + 0.02920096553862095, + 0.00022231496404856443, + 0.009733655489981174, + 0.02590322494506836, + -0.019919419661164284, + -0.03417417034506798, + 0.048987410962581635, + 0.004265123046934605, + -0.01864287443459034, + -0.007719107903540134, + 0.0033492683432996273, + -0.016648273915052414, + 0.010285494849085808, + -0.011116579174995422, + 0.0018067765049636364, + 0.011508850380778313, + -0.043216366320848465, + -0.006738428492099047, + -0.015172268263995647, + 0.009560789912939072, + -0.012007500976324081, + 0.0038794998545199633, + -0.011608581058681011, + 0.004674016032367945, + -0.0008472900954075158, + 0.010591333732008934, + -0.015305242501199245, + -0.04579605162143707, + 0.00012144214269937947, + 0.01293831504881382, + 0.01335053239017725, + -0.013669668696820736, + 0.025743655860424042, + 0.03712618350982666, + -0.003563687903806567, + 0.0013995453482493758, + -0.01781843975186348, + 0.014254751615226269, + 0.027099985629320145, + 0.0009731993195600808, + 0.024892626330256462, + -0.009215058758854866, + -0.022991105914115906, + 0.03074345737695694, + 0.015611081384122372, + 0.04268447309732437, + -0.013051342219114304, + -0.019613580778241158, + 0.024639977142214775, + -0.011728256940841675, + -0.025304844602942467, + -0.09324096888303757, + 0.00489009777083993, + 0.033615682274103165, + 0.013530046679079533, + -0.014560590498149395, + 0.01336382981389761, + -0.013762750662863255, + 0.01138252578675747, + -0.007865378633141518, + 0.0323125459253788, + -0.054678674787282944, + -0.025650575757026672, + -0.016741355881094933, + -0.01338377594947815, + 0.023815542459487915, + -0.004314987920224667, + 0.00042593051330186427, + -0.000805735879112035, + -0.008390623144805431, + 0.023749055340886116, + -0.01093706488609314, + -0.0007554552867077291, + -0.004085608758032322, + 0.0008319150656461716, + -0.030238159000873566, + -0.008084784261882305, + -0.03289762884378433, + -0.00025015627034008503, + 0.013869129121303558, + -0.0218342375010252, + 0.0324455164372921, + -0.011980906128883362, + 0.01704719476401806, + -0.020584287121891975, + 0.021648075431585312, + -0.003101605223491788, + -0.031062593683600426, + -0.011415769346058369, + 0.03470606729388237, + -0.03239232674241066, + -0.008244352415204048, + 0.0015616067685186863, + -0.01852319948375225, + -0.03225935623049736, + -0.00886932760477066, + -0.03414757922291756, + -0.017951413989067078, + 0.004494502209126949, + 0.004218582063913345, + 0.010225657373666763, + -0.02099650539457798, + -0.031248755753040314, + -0.015065889805555344, + -0.01789822429418564, + 0.02827015146613121, + 0.002416792092844844, + 0.00035840494092553854, + -0.012306691147387028, + -0.008836084976792336, + -0.02498570829629898, + -0.01950720325112343, + 0.012619178742170334, + -0.027711663395166397, + 0.020584287121891975, + 0.01610308326780796, + 0.00011552067007869482, + -0.020531097427010536, + 0.007725756615400314, + 0.018004601821303368, + 0.016767950728535652, + -0.028775451704859734, + 0.002907131565734744, + -0.004338258411735296, + -7.355093111982569e-05, + -0.035051796585321426, + -0.009720358066260815, + -0.04997141659259796, + -0.011442364193499088, + -0.0004367346118669957, + -0.013423668220639229, + -0.00443798815831542, + -0.034360334277153015, + 0.018084386363625526, + -0.018190765753388405, + 0.03811018541455269, + 0.029440317302942276, + -0.020411422476172447, + -0.01695411279797554, + 0.0250123031437397, + -0.020517800003290176, + 0.01604989357292652, + 0.025384629145264626, + 0.02983923815190792, + 0.0006307926960289478, + -0.025517601519823074, + 0.0022871431428939104, + -0.009933114983141422, + 0.011395823210477829, + -0.01295161247253418, + 0.013503451831638813, + -0.01870936155319214, + -0.003610228653997183, + -0.052843641489744186, + 0.01950720325112343, + 0.034280549734830856, + -0.00649242801591754, + -0.007306890096515417, + -0.00849700253456831, + -0.0010147534776479006, + 0.010804091580212116, + 0.021515101194381714, + 0.020863531157374382, + -0.010026196949183941, + 0.0080781364813447, + 0.006402670871466398, + -0.011641823686659336, + -0.01686103083193302, + -0.03723256289958954, + 0.006578860338777304, + 0.02186083234846592, + -0.0053255860693752766, + 0.004777070600539446, + -0.01045171171426773, + 0.010611279867589474, + 0.006861429195851088, + 0.00688802357763052, + -0.028615882620215416, + 0.004218582063913345, + 0.004953260533511639, + 0.003058389062061906, + 0.0008767935796640813, + 0.006927915848791599, + 0.0169674102216959, + -0.010996903292834759, + -0.01134263351559639, + 0.024812841787934303, + -0.020464612171053886, + 0.0002254315186291933, + -0.007752350997179747, + 0.026049494743347168, + 0.0019114931346848607, + 0.06414638459682465, + -0.02497241087257862, + -0.026980308815836906, + 0.009853331372141838, + -0.03289762884378433, + -0.009600682184100151, + -0.011588634923100471, + 0.024427220225334167, + 0.011515499092638493, + 0.009587384760379791, + -0.0045244209468364716, + 0.03539752587676048, + 0.01698070764541626, + 0.016674868762493134, + -0.014148373156785965, + 0.019001903012394905, + -0.009195112623274326, + 0.009673817083239555, + -0.006292967591434717, + 0.010199062526226044, + -0.029307344928383827, + 0.040051598101854324, + -0.0005061301053501666, + 0.0267675518989563, + -0.016781246289610863, + -0.0018134252168238163, + -0.026873931288719177, + -0.03534433990716934, + -0.007054240442812443, + -0.008091432973742485, + -0.012346583418548107, + -0.0011543756118044257, + 0.0038562295958399773, + 0.00847040768712759, + 0.008284244686365128, + 0.011834635399281979, + 0.0022389402147382498, + 0.009161869063973427, + -0.00042219064198434353, + -0.0005090389167889953, + 0.002707671606913209, + 0.011967608705163002, + 0.007792243268340826, + -0.0017702088225632906, + -0.006266373209655285, + 0.02333683706820011, + 0.002169129205867648, + -0.01848330721259117, + 0.009667168371379375, + -0.0045244209468364716, + 0.014214860275387764, + -0.017259951680898666, + 0.017605682834982872, + -0.02187412977218628, + 0.02255229465663433, + -0.01331728883087635, + 0.02422775886952877, + 0.0022854809649288654, + -0.0031464837957173586, + 0.030929621309041977, + 0.01491961907595396, + 0.011109930463135242, + 0.016648273915052414, + -0.002378562232479453, + -0.019813042134046555, + -0.02433413825929165, + 0.014228157699108124, + -0.006745077203959227, + -0.03178064897656441, + 0.0024733059108257294, + 0.02986583299934864, + -0.010145872831344604, + -0.012439664453268051, + -0.0013571600429713726, + -0.004285068716853857, + -0.005003125406801701, + 0.0023453189060091972, + -0.0030916323885321617, + -0.019666770473122597, + -0.022818241268396378, + 0.02013217844069004, + 0.00890921987593174, + 0.009394573047757149, + -0.011621877551078796, + -0.005987128708511591, + 0.024733059108257294, + -0.003103267401456833, + 0.00805819034576416, + -0.012672368437051773, + -0.006794942542910576, + -0.0003268237633164972, + -0.009102031588554382, + -0.015291945077478886, + -0.011143174022436142, + -0.01869606412947178, + -0.03066367283463478, + -0.0006170798442326486, + 0.02108958549797535, + 0.03164767846465111, + 0.007173916790634394, + 0.11574007570743561, + 0.027179770171642303, + -0.016568489372730255, + 0.03071686252951622, + 0.004261798691004515, + 0.014786645770072937, + 0.02252569980919361, + 0.0004795354325324297, + 0.011129876598715782, + -0.03534433990716934, + 0.012665719725191593, + -0.012379826977849007, + -0.00648577930405736, + -0.019161472097039223, + -0.0080116493627429, + 0.0006382724968716502, + 0.005687938537448645, + 0.011568688787519932, + -0.02898820862174034, + 0.0018184116343036294, + 0.015424918383359909, + -0.03720596805214882, + 0.012213610112667084, + 0.02171456068754196, + -0.027738258242607117, + -0.014720158651471138, + 0.0009665506659075618, + -0.019001903012394905, + -0.01692751795053482, + -0.02167467027902603, + -0.0034739309921860695, + -0.010159170255064964, + -0.06728455424308777, + -0.040689870715141296, + 0.03374865651130676, + -0.01610308326780796, + -0.009208410046994686, + -0.03715277835726738, + 0.015943514183163643, + 0.0031431594397872686, + -0.0007292761583812535, + 0.029520101845264435, + -0.017339736223220825, + -0.0466470792889595, + -0.0109503623098135, + 0.006249751430004835, + -0.0017984657315537333, + -0.009886574931442738, + -0.012419718317687511 + ], + "metadata": { + "source": "Thesis_Verladegeraeusche_in_Speditionen.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 41, + "has_images": true, + "image_count": 51, + "coordinates": "CoordinatesMetadata(points=((204.16666666666666, 189.02777777777797), (204.16666666666666, 642.3611111111111), (936.1666666666666, 642.3611111111111), (936.1666666666666, 189.02777777777797)), system=)", + "links": [], + "last_modified": "2025-05-05T22:59:16", + "_known_field_names": "frozenset({'cc_recipient', 'link_texts', 'url', 'filetype', 'category_depth', 'page_number', 'filename', 'orig_elements', 'detection_origin', 'email_message_id', 'page_name', 'coordinates', 'table_as_cells', 'link_start_indexes', 'sent_to', 'bcc_recipient', 'languages', 'last_modified', 'link_urls', 'file_directory', 'subject', 'data_source', 'detection_class_prob', 'image_base64', 'text_as_html', 'attached_to_filename', 'key_value_pairs', 'signature', 'sent_from', 'header_footer_type', 'parent_id', 'links', 'emphasized_text_contents', 'emphasized_text_tags', 'image_mime_type', 'is_continuation', 'image_path'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "Thesis_Verladegeraeusche_in_Speditionen.pdf", + "detection_class_prob": 0.2568194270133972, + "parent_id": "d45475a34bc527cde6987546fa6dd2f5", + "text_as_html": "
Flurf\u00f6rderger\u00e4t |Anzahl Einzelereignisse ElMax-PegelSchallleistungspegel
LAFmaxLWA,5sLWAmaxLWA,1hKlLWAT,1h
[dB(A)][dB(A)][dB(A)][dB(A)][dB(A)][dB(A)]
Gabelstapler29769,3100,7108,872,15,777,8
STABW [dB]6,54,96,54,92,9-
Gabelhubwagen9968,6100,7108,172,16,279,5
STABW [dB]6,45,16,4512,7-
", + "id": "5ba44de7-0ff3-4c0c-b018-67e92171e1c2", + "processing_timestamp": "2025-05-06T14:18:19.298665", + "chunk_number": 5, + "total_chunks": 49, + "chunking_strategy": "hybrid", + "word_count": 406 + } +} \ No newline at end of file diff --git a/data/processed/85fd305f-83de-70b0-47e8-2dc000000006.json b/data/processed/85fd305f-83de-70b0-47e8-2dc000000006.json new file mode 100644 index 0000000000000000000000000000000000000000..85188a1110a7f6b0fdf3ff20128799c44a53bbbb --- /dev/null +++ b/data/processed/85fd305f-83de-70b0-47e8-2dc000000006.json @@ -0,0 +1,1570 @@ +{ + "id": "85fd305f-83de-70b0-47e8-2dc000000006", + "content": "Der Anh\u00e4nger dockt an eine zugewiesene Verladesta- tion an, wo der Fahrer der Zugmaschine und das Verladepersonal den Beladevorgang abstimmen. Der Fahrer \u00f6ffnet die Laderaumt\u00fcren respektive die Abdeckung des Anh\u00e4- ngers, w\u00e4hrend das Verladepersonal die G\u00fcter kontrolliert und den Transport vorberei- tet. Anschlie\u00dfend wird die \u00dcberladebr\u00fccke angehoben und eventuell eine Verladebr\u00fc- cke zwischen dem Anh\u00e4nger und der Rampe platziert. [13]\nNun beginnt die eigentliche Beladung. Die Ladeeinheit wird mithilfe eines passenden Flurf\u00f6rderger\u00e4ts angehoben und zum entsprechenden Anh\u00e4nger transportiert. Dabei ist es wichtig, das Gewicht gleichm\u00e4\u00dfig zu verteilen. Der Anh\u00e4nger sollte l\u00fcckenlos und si- cher beladen werden, um eine formschl\u00fcssige und/oder kraftschl\u00fcssige Verbindung her- zustellen. Bei einer formschl\u00fcssigen Beladung, werden die Ladeeinheiten direkt an die Bordw\u00e4nde l\u00fcckenlos verladen. Bei einer Kraftschl\u00fcssigen Verladung werden die Lade- einheiten mithilfe von Zurrmitteln, beispielsweise mit Zurrgurten, gesichert. [14, 15] Ist der Anh\u00e4nger beladen und kontrolliert, kann die Auslieferung an den Kunden durch die Zugmaschine beginnen. Bei einem Entladevorgang werden die Ladeeinheiten aus dem Anh\u00e4nger entnommen und auf vorhergesehene Lagerpl\u00e4tze zwischengelagert. Dies erfolgt in der Regel \u00e4hnlich wie beim Verladevorgang. ## 2.2 Ermittlung der akustischen Kenngr\u00f6\u00dfen\n\nDer folgende Abschnitt behandelt die Ermittlung der akustischen Kenngr\u00f6\u00dfen, die f\u00fcr den Kontext wichtig sind. Im Rahmen dessen werden verschiedene Ans\u00e4tze und Verfah- ren vorgestellt, um den entstehenden L\u00e4rm zu bewerten und zu quantifizieren. Die ge- naue Erfassung und Analyse der akustischen Eigenschaften spielt eine gro\u00dfe Rolle bei der Beurteilung der L\u00e4rmbelastung der Verladet\u00e4tigkeiten. Zun\u00e4chst werden die grundlegenden Begriffe und Parameter erkl\u00e4rt, die zur Beschrei- bung des Schalls und der L\u00e4rmemissionen verwendet werden. Dazu geh\u00f6ren unter an- derem der Schalldruckpegel, die Schallleistung und die Schallemission. Die genaue Kenntnis dieser Begriffe ist wichtig, um die Messergebnisse korrekt zu interpretieren und vergleichbar zu machen. 9\n2 Grundlagen\n\n## Zur Beurteilung von Schallimmissionen\n\nDie Beurteilung von L\u00e4rmimmissionen hat das Ziel, das Ausma\u00df und die St\u00e4rke der L\u00e4rm- wirkung zu erfassen und zu bewerten. Die sogenannten Mittelungspegel eignen sich hervorragend im Schallimmissionsschutz zur quantitativen Erfassung und Charakterisie- rung von zeitlich schwankenden Ger\u00e4uschen. Hierbei wird ein sogenannter Beurtei- lungspegel (siehe Formel 1) verwendet, welcher eine Gr\u00f6\u00dfenordnung darstellt f\u00fcr die durchschnittliche Ger\u00e4uschimmission w\u00e4hrend einer bestimmten Beurteilungszeit Tr. Die Norm legt Verfahren zur Beurteilung von Schallimmissionen fest und bietet eine standardisierte Methode zur Bestimmung des Beurteilungspegels. Der Beurteilungspe- gel kann auch mithilfe einer Messung gem\u00e4\u00df der Norm DIN 45645-1 [16] ermittelt wer- den. Die ermittelten Beurteilungspegel werden mit den derzeitig geltenden Immissions- grenz- oder Richtwerten der jeweiligen Regelwerke verglichen. Die jeweiligen Regel- werke legen die wesentlichen Rahmenbedingungen und Schutzziele fest.", + "embedding": [ + 0.02934376895427704, + 0.010185169987380505, + 0.01434438768774271, + -0.04142187535762787, + -0.002705128863453865, + 0.003605746664106846, + -0.012759299948811531, + -0.013977590017020702, + -0.016479671001434326, + -0.010414418764412403, + 0.005885128863155842, + 0.007755139376968145, + -0.028557775542140007, + 0.014108588919043541, + 0.0015883625019341707, + 0.008167785592377186, + 0.039273492991924286, + 0.008154685609042645, + 0.012281153351068497, + -0.0031554377637803555, + -0.020828837528824806, + -0.0019027601229026914, + -0.0026576416566967964, + -0.005980103276669979, + -0.017632462084293365, + 0.03238294646143913, + 0.03725610673427582, + -0.023055819794535637, + -0.007715839426964521, + -0.004997610580176115, + -0.00034673791378736496, + -0.0034157983027398586, + -0.014147888869047165, + 0.007440741639584303, + -0.021798228845000267, + -0.01376799214631319, + -0.0028426777571439743, + -0.012209104374051094, + 0.031518351286649704, + -0.011966756545007229, + 0.014187188819050789, + -0.006553223822265863, + 0.007781338877975941, + -0.04246986657381058, + 0.017331164330244064, + 0.012484202161431313, + -0.006566323339939117, + -0.001227296655997634, + -0.023933513090014458, + 0.015038682147860527, + 0.011075963266193867, + 0.023697713389992714, + -0.023029619827866554, + 0.009097878821194172, + -0.014986282214522362, + -0.0020550463814288378, + -0.02095983549952507, + 0.002300669439136982, + 0.00417886720970273, + -0.014907683245837688, + -0.03311654180288315, + 0.004745437763631344, + -0.01989874430000782, + 0.014160988852381706, + -0.00666457274928689, + 0.0007663439610041678, + -0.003907044418156147, + -0.011835756711661816, + -0.011311761103570461, + -0.01043406780809164, + 0.025531699880957603, + 0.024549206718802452, + 0.008763831108808517, + 0.021981626749038696, + 0.03254014626145363, + -0.014606385491788387, + 0.00921577773988247, + -0.0034288980532437563, + -0.012831348925828934, + 0.012254954315721989, + 0.012084655463695526, + -0.03005116432905197, + -0.024077611044049263, + 0.05879233777523041, + 0.02123493328690529, + -0.005262883845716715, + -0.002685478888452053, + -0.0035664469469338655, + -0.010656766593456268, + 0.008482183329761028, + -0.0016161998501047492, + 0.01883765310049057, + 0.0002740744093898684, + 0.006546673830598593, + 0.019859444350004196, + -0.010493017733097076, + 0.005151534453034401, + 0.014855283312499523, + 0.001694799168035388, + -0.04252226650714874, + -0.02337021753191948, + 0.0038644697051495314, + -0.006150401663035154, + 0.006517198868095875, + -0.021326633170247078, + -0.009425376541912556, + 0.0015466066543012857, + 0.01554957777261734, + 0.003166900249198079, + -0.029684366658329964, + -0.0037334708031266928, + 0.02685478888452053, + -0.009523625485599041, + -0.010329268872737885, + 0.01027686893939972, + -0.004578413907438517, + 0.041762471199035645, + -0.016728568822145462, + 0.008475633338093758, + -0.02202092669904232, + 0.027090586721897125, + 0.025374500080943108, + 0.006517198868095875, + -0.0028770649805665016, + 0.02481120452284813, + 0.02685478888452053, + 0.019872544333338737, + 0.0069494955241680145, + -0.02065853774547577, + -0.013833491131663322, + -0.03254014626145363, + 0.0064811743795871735, + 0.009261627681553364, + 0.008737631142139435, + -0.011848856694996357, + 0.012569351121783257, + -0.01920444890856743, + 0.012667600996792316, + -0.024575406685471535, + -0.03382393345236778, + 0.008659032173454762, + 0.006923295557498932, + -0.03508152440190315, + -0.032880742102861404, + -0.0009538362501189113, + 0.043229661881923676, + 0.017422864213585854, + 0.02085503563284874, + -0.009281277656555176, + 0.0017013491597026587, + -0.016348671168088913, + -0.023488115519285202, + 0.013237446546554565, + -0.02395971119403839, + -0.019138948991894722, + 0.005652605555951595, + 0.008776931092143059, + 0.01110871322453022, + -0.015523377805948257, + -0.013453594408929348, + 0.0158377755433321, + 0.016204573214054108, + 0.008128486573696136, + -0.004768362734466791, + 0.01554957777261734, + 0.017514562234282494, + -0.008763831108808517, + -0.023396415635943413, + -0.003270061919465661, + -0.016204573214054108, + -0.004280391614884138, + 0.014069289900362492, + -0.010047621093690395, + 0.018588753417134285, + -0.01671546883881092, + 0.007971287705004215, + 0.026304593309760094, + -0.004663563333451748, + -0.02473260648548603, + -0.034636128693819046, + -0.024601606652140617, + -0.0007327754865400493, + 0.014134788885712624, + 0.011822657659649849, + -0.042286466807127, + -0.002084521111100912, + -0.0004867430543527007, + 0.024274108931422234, + -0.013636993244290352, + -0.014291987754404545, + -0.005449557211250067, + 0.01940094865858555, + -0.00894067995250225, + -0.027457384392619133, + -0.6296334862709045, + -0.008154685609042645, + 0.004188692197203636, + -0.005678805522620678, + -0.0006517198635265231, + 0.021418331190943718, + 0.020697837695479393, + -0.00025749485939741135, + 0.013093347661197186, + 0.043124862015247345, + -0.006831596605479717, + 0.010735365562140942, + 0.0076241400092840195, + 0.005479032173752785, + 0.0021320083178579807, + -0.016872666776180267, + -0.016584469005465508, + -0.01497318223118782, + 0.0386446975171566, + 0.0029654891695827246, + -0.019256848841905594, + 0.02200782671570778, + -0.013198146596550941, + 0.00644842442125082, + 0.004945211112499237, + -0.012582451105117798, + 0.016086673364043236, + -0.011672008782625198, + 0.015680577605962753, + -0.019649846479296684, + -0.01951884664595127, + 0.00734249223023653, + -0.030679959803819656, + 0.016846468672156334, + 0.04320346191525459, + 0.008095736615359783, + 0.007709289435297251, + 0.024850504472851753, + -0.004096992779523134, + 0.010624016635119915, + 0.007100144401192665, + -0.02194232866168022, + -0.0014876570785418153, + -0.0075717405416071415, + 0.008979979902505875, + -0.0019518847111612558, + 0.06083592399954796, + 5.582807716564275e-05, + 0.012667600996792316, + -0.027745582163333893, + 0.0031505252700299025, + 0.02357981540262699, + 0.015313779935240746, + 0.014449186623096466, + 0.02847917750477791, + 0.00512205995619297, + 0.04037388414144516, + -0.011049763299524784, + -0.016348671168088913, + 0.006536848843097687, + 0.0148159833624959, + 0.012785499915480614, + -0.005508506670594215, + -0.019859444350004196, + -0.03102055750787258, + 0.015339979901909828, + -0.015759175643324852, + -0.028924573212862015, + 0.0076241400092840195, + -0.021117035299539566, + -0.007990937680006027, + 0.009864222258329391, + -0.007185293827205896, + -0.018575653433799744, + 0.02452300675213337, + 0.014226488769054413, + 0.0027133161202073097, + -0.014370587654411793, + 0.005551081616431475, + 0.023317817598581314, + -0.012130504474043846, + 0.00994282215833664, + -0.0014393512392416596, + -0.009110978804528713, + 0.017711061984300613, + -0.00245295581407845, + 0.007938537746667862, + 0.0058196294121444225, + 0.0020059216767549515, + 0.006382924970239401, + 0.015955675393342972, + 0.03285454213619232, + 0.0014712822157889605, + -0.026239093393087387, + -0.008580432273447514, + 0.03806830197572708, + -0.014567085541784763, + 0.01468498446047306, + 0.006608898285776377, + -0.02868877537548542, + -0.011822657659649849, + -0.01680716872215271, + 0.007309742737561464, + -0.008678682148456573, + 0.02695958875119686, + 0.0034059733152389526, + -0.016951266676187515, + 0.018955551087856293, + 0.020409639924764633, + -0.027169186621904373, + -0.014409886673092842, + -0.011580308899283409, + -0.005544531624764204, + -0.017029866576194763, + -0.015169681049883366, + -0.021038435399532318, + 0.026147395372390747, + 0.004002018831670284, + 0.015313779935240746, + -0.036548715084791183, + 0.013636993244290352, + 0.010296518914401531, + 0.020593037828803062, + -0.00995592214167118, + -0.019021051004529, + 0.03709891065955162, + 0.012536602094769478, + 0.0022220700047910213, + 0.0007778063882142305, + -0.011626158840954304, + 0.014147888869047165, + -0.0013836766593158245, + 0.00046340885455720127, + -0.012294253334403038, + 0.020828837528824806, + 0.026422493159770966, + 0.03235674649477005, + 0.0006721884710714221, + 0.020239342004060745, + -0.01814335770905018, + -0.02540070004761219, + -0.017907559871673584, + 0.01862805336713791, + -0.0302345622330904, + -0.012084655463695526, + -0.03487192466855049, + -0.014252687804400921, + 0.013977590017020702, + -0.00980527326464653, + 0.003645046381279826, + -0.016741668805480003, + -0.03081095777451992, + -0.01201915554702282, + 0.014029989950358868, + -0.00526615884155035, + 0.008187435567378998, + -0.030548959970474243, + -0.006988795008510351, + 0.003553347196429968, + -0.017331164330244064, + 0.0004486714897211641, + 0.015182781033217907, + -0.05543876439332962, + -0.0018405355513095856, + -0.012497302144765854, + -0.018090957775712013, + 0.024785006418824196, + 0.003245499450713396, + -0.03146595135331154, + -0.0421292707324028, + 0.007276992779225111, + 1.246665033249883e-05, + -0.014946983195841312, + 0.021379033103585243, + 0.00039258753531612456, + -0.000677919655572623, + -0.010997363366186619, + -0.016283173114061356, + -0.0009096240974031389, + -0.021379033103585243, + 0.015536477789282799, + 0.0020566838793456554, + -0.01361079327762127, + 0.004627538844943047, + 0.01709536649286747, + 0.0058622038923203945, + 0.010879464447498322, + 0.01573297567665577, + -0.02858397550880909, + 0.02840057760477066, + -0.006870896089822054, + 0.02976296655833721, + -0.015719877555966377, + 0.010217919945716858, + -0.031046755611896515, + 0.001843810547143221, + 0.002248269971460104, + 0.010493017733097076, + 0.010257219895720482, + 0.02067163772881031, + 0.029003173112869263, + -0.005691905505955219, + 0.0309943575412035, + -0.009261627681553364, + 0.009759423322975636, + 0.0039004944264888763, + 0.011206962168216705, + -0.01085981447249651, + 0.046295035630464554, + 0.020357239991426468, + 0.020697837695479393, + -0.008338084444403648, + -0.01603427343070507, + -0.012857548892498016, + 0.003690896090120077, + 0.046714235097169876, + -0.016374871134757996, + 0.013519094325602055, + 0.032513946294784546, + -0.007565190549939871, + -0.00644842442125082, + 0.006258476059883833, + 0.04616403952240944, + 0.0023841813672333956, + -0.009097878821194172, + -0.01940094865858555, + 0.004882986657321453, + 0.0112528121098876, + 0.004005293361842632, + -0.006323975510895252, + -0.007276992779225111, + 0.0029704016633331776, + 0.0028770649805665016, + 0.01173095777630806, + 0.015339979901909828, + 0.014449186623096466, + 0.012706900015473366, + 0.005213758908212185, + 0.04681903123855591, + 0.0063501750119030476, + 0.0222043264657259, + 0.018392255529761314, + 0.014069289900362492, + -0.0026150669436901808, + 0.01826125755906105, + -0.029212770983576775, + -0.00492883613333106, + 0.04414665326476097, + -0.01506488211452961, + -0.02405141107738018, + -0.003373223589733243, + 0.007761688902974129, + -0.015811575576663017, + -0.01768486201763153, + -0.004968136083334684, + -0.008180885575711727, + 0.02887217327952385, + -0.011030113324522972, + 0.011986405588686466, + 0.01805165782570839, + -0.006621998269110918, + 0.035002924501895905, + 0.011789907701313496, + -0.013545293360948563, + 0.017894459888339043, + -0.002994963899254799, + -0.018706653267145157, + -0.022374624386429787, + -0.0151172811165452, + 0.005921153351664543, + 0.0032536869402974844, + -0.0029147271998226643, + -0.011999505572021008, + 0.008672132156789303, + 0.015195881016552448, + -0.0026789288967847824, + -0.014802884310483932, + 0.02685478888452053, + 0.03293314203619957, + 0.011711307801306248, + -0.0011233162367716432, + -0.029605768620967865, + 0.004666838329285383, + 0.022427024319767952, + -0.011527909897267818, + -0.011416560038924217, + -0.023160617798566818, + 0.01173095777630806, + -0.026435593143105507, + 0.004460514988750219, + -0.012228754349052906, + 0.00791233777999878, + -0.004588238894939423, + -0.009431925602257252, + 0.007250793278217316, + -0.005449557211250067, + 0.022374624386429787, + 0.019938044250011444, + -0.0016317559638991952, + 0.007892687804996967, + -0.0002707994426600635, + -0.0351601243019104, + -0.017946859821677208, + -0.026723790913820267, + 0.017658662050962448, + -0.001253496389836073, + -0.015392378903925419, + -0.027640782296657562, + 0.008691782131791115, + -0.013263645581901073, + -0.033954933285713196, + 0.00461116386577487, + 0.006831596605479717, + -0.009503975510597229, + 0.0020517713855952024, + 0.0006406668690033257, + 0.00623227609321475, + 0.006412399932742119, + 0.03772770240902901, + 0.014868383295834064, + -0.02503390423953533, + -0.01463258545845747, + 0.0007614315254613757, + 0.00513843446969986, + 0.014239588752388954, + 0.009425376541912556, + -0.00157608138397336, + 0.02926517091691494, + -0.01520898099988699, + -0.022558022290468216, + 0.0011282286141067743, + -0.03149215131998062, + 0.014724284410476685, + 0.027955180034041405, + 0.010453717783093452, + 0.010060721077024937, + 0.038959093391895294, + -0.01730496436357498, + 0.02406451106071472, + -0.00907167885452509, + 0.010800865478813648, + -0.004460514988750219, + 0.0295533686876297, + -0.011331411078572273, + -0.0027182286139577627, + -0.022151926532387733, + -0.011265912093222141, + 0.031623151153326035, + -0.005967003293335438, + -0.017344264313578606, + 0.018221957609057426, + 0.01624387316405773, + 0.017946859821677208, + -0.023501215502619743, + 0.011626158840954304, + 0.02020004205405712, + 0.02676309086382389, + 0.00893412996083498, + -0.015916375443339348, + -0.006651472765952349, + 0.00024357621441595256, + 0.0007209037430584431, + 0.012903398834168911, + 0.002844315255060792, + 0.011947106570005417, + 0.020108342170715332, + 0.003034263616427779, + -0.007113244384527206, + 0.015392378903925419, + 0.01024411991238594, + 0.0104209678247571, + 0.0038775696884840727, + 0.003085025819018483, + -0.0098118232563138, + 0.020501339808106422, + -0.011265912093222141, + -0.0063272505067288876, + 0.001853635418228805, + -0.0017275488935410976, + -0.0225056242197752, + -0.008724531158804893, + -0.019269948825240135, + -0.006923295557498932, + -0.005780329462140799, + -0.011095613241195679, + -0.025243502110242844, + 0.013368445448577404, + -0.015562677755951881, + -0.03419073298573494, + -0.01806475780904293, + -0.020828837528824806, + 0.0021434708032757044, + -0.014567085541784763, + 0.02579369768500328, + 0.00593752833083272, + -0.021379033103585243, + -0.034898124635219574, + -0.00985112227499485, + 0.008121936582028866, + -0.008449433371424675, + 0.011645808815956116, + -0.0017209990182891488, + -0.010925314389169216, + 0.00492883613333106, + -0.010126220993697643, + 0.010401318781077862, + -0.013492894358932972, + -0.014449186623096466, + -0.013898991048336029, + 0.026409393176436424, + -0.013014747761189938, + 0.004673388320952654, + 4.474945308174938e-05, + 0.013145746663212776, + 0.0057901544496417046, + 0.020016642287373543, + 0.0047847372479736805, + -0.0034485480282455683, + 0.009425376541912556, + 0.01632247120141983, + 0.0057999794371426105, + 0.006215901114046574, + 0.019780844449996948, + -0.021208733320236206, + 0.017422864213585854, + -0.021994726732373238, + 0.0026609166525304317, + -0.002947476925328374, + 0.029317570850253105, + -0.018287455663084984, + 4.016960519948043e-05, + -0.0024316683411598206, + 0.020422739908099174, + 0.009124078787863255, + -0.014501586556434631, + -0.023999011144042015, + -0.012156704440712929, + 0.005086035002022982, + -0.0013394644483923912, + 0.00446706498041749, + 0.0069822450168430805, + 0.0228069219738245, + 0.029998764395713806, + 0.0038317199796438217, + -0.0026920288801193237, + -0.029003173112869263, + 0.05402397736907005, + 0.021562431007623672, + -0.010041071102023125, + 0.0416838712990284, + -0.012268053367733955, + 0.009896972216665745, + -0.016086673364043236, + -0.00045726829557679594, + 0.03796350210905075, + 0.011724407784640789, + 0.00763069000095129, + -0.0048567866906523705, + -0.02973676659166813, + -0.02453610673546791, + -0.006242101080715656, + 0.015104181133210659, + -0.0098118232563138, + 0.0009415551321581006, + -0.016780968755483627, + 0.015182781033217907, + -0.01623077318072319, + 0.003618846647441387, + 0.014291987754404545, + -0.02094673551619053, + -0.017815859988331795, + 0.024470608681440353, + -0.019138948991894722, + 0.029134171083569527, + -0.01853635534644127, + -0.004568589385598898, + -0.02926517091691494, + -0.011573758907616138, + -0.004627538844943047, + -0.027064388617873192, + 0.0028999897185713053, + -0.011783357709646225, + 0.01988564431667328, + 0.01454088557511568, + 0.026239093393087387, + -0.008600082248449326, + 0.006687497720122337, + 0.0006926570786163211, + -0.012051905505359173, + -0.0030621010810136795, + -0.01101701334118843, + -0.015457878820598125, + -0.022165026515722275, + 0.02735258638858795, + 0.017606262117624283, + -0.0018470855429768562, + 0.007329392712563276, + 0.005600206088274717, + 0.0057901544496417046, + 0.03445272892713547, + -0.014724284410476685, + -0.014724284410476685, + -0.005443007219582796, + -0.02057993784546852, + 0.0070935944095253944, + -0.0005919515970163047, + 0.004303316120058298, + 0.014239588752388954, + -0.014553985558450222, + 0.008449433371424675, + 0.01940094865858555, + -0.03846129775047302, + -0.003661421360448003, + -0.001709536649286747, + 0.01680716872215271, + -0.056643955409526825, + 0.023396415635943413, + 0.023501215502619743, + -0.00893412996083498, + 0.004483439959585667, + -0.002351431641727686, + -0.014121688902378082, + -0.010872914455831051, + 0.0064942738972604275, + 0.0034387230407446623, + 0.009012728929519653, + -0.001956797204911709, + -0.027116786688566208, + 0.007794438861310482, + -0.020920535549521446, + 0.013008197769522667, + -0.01549717877060175, + -0.010872914455831051, + -0.012222204357385635, + -0.0386446975171566, + -0.038697097450494766, + -0.0022613697219640017, + -0.021195633336901665, + 0.010702615603804588, + 0.019086550921201706, + 0.02038343995809555, + 0.016204573214054108, + -0.011855406686663628, + 0.0027706283144652843, + -0.007787888869643211, + -0.005295633338391781, + 0.015287579968571663, + -0.006916745565831661, + 0.027745582163333893, + 0.0064811743795871735, + -0.011665458790957928, + -0.018601853400468826, + -0.05999752879142761, + 0.01448848657310009, + -0.0015343254199251533, + 0.0058523789048194885, + -0.012916498817503452, + 0.00048101184074766934, + -2.765818135230802e-05, + 0.0222043264657259, + -0.0008531308267265558, + 0.011226612143218517, + -0.016872666776180267, + 0.0388018973171711, + 0.006638372782617807, + -0.016204573214054108, + -0.009202677756547928, + -0.015706777572631836, + 0.008010586723685265, + -0.017134666442871094, + 0.011488609947264194, + -0.0004822399641852826, + -0.006143851671367884, + -0.012254954315721989, + 0.01057161670178175, + 0.035579320043325424, + 0.010800865478813648, + 0.016401071101427078, + 0.022636622190475464, + -0.01506488211452961, + 0.008436333388090134, + -0.015431678853929043, + -0.024392008781433105, + 0.01129866112023592, + -0.01540547888725996, + 0.023540515452623367, + -0.00148438208270818, + -0.014593285508453846, + 0.005357857793569565, + 0.015025582164525986, + -0.005089309997856617, + -0.0074472916312515736, + 0.007879587821662426, + 0.020632337778806686, + -0.009052028879523277, + 0.01540547888725996, + 0.018588753417134285, + 0.004948486108332872, + 0.0038677447009831667, + 0.0025495674926787615, + 0.0014696447178721428, + -0.0019191349856555462, + 0.007427641656249762, + -0.024654006585478783, + -0.0049059116281569, + -0.0047421627677977085, + -0.029212770983576775, + -0.0026167044416069984, + -0.013505994342267513, + -0.013636993244290352, + 0.006798846647143364, + -0.020619237795472145, + 0.01097116433084011, + -0.026199795305728912, + -0.019558146595954895, + 0.006271576043218374, + 0.0074669416062533855, + 0.025256602093577385, + -0.010892564430832863, + -0.021601730957627296, + -0.015012482181191444, + 0.022178126499056816, + -0.04309866204857826, + 0.011803007684648037, + 0.022558022290468216, + -0.00892757996916771, + -0.004453964997082949, + 0.008724531158804893, + 0.004411390516906977, + -0.010362018831074238, + 0.02056683786213398, + -0.0005858110380358994, + -0.025623399764299393, + -0.014226488769054413, + -0.00608817720785737, + 0.014029989950358868, + -0.01420028880238533, + -0.014475386589765549, + 0.011482059955596924, + -0.0038546447176486254, + 0.018090957775712013, + -0.009314026683568954, + -0.014409886673092842, + 0.0143967866897583, + 0.010158970020711422, + 0.0014860195806249976, + 0.03523872420191765, + -0.017409764230251312, + 0.010132770985364914, + 0.013794192112982273, + -0.01260210108011961, + -0.01173095777630806, + -0.04396325349807739, + -0.01737046428024769, + 0.020907435566186905, + 0.011311761103570461, + -0.026527291163802147, + 0.0011102162534371018, + -0.011744057759642601, + -0.029396168887615204, + -0.014658785425126553, + 0.014121688902378082, + -0.013080247677862644, + 0.012471102178096771, + 0.015431678853929043, + -0.004909186623990536, + 0.003975818865001202, + 0.030365562066435814, + -0.005488857161253691, + -0.008554233238101006, + 0.03314274176955223, + -0.0012559526367112994, + -0.03691551089286804, + 0.009261627681553364, + -0.018706653267145157, + 0.030391762033104897, + 0.010270319879055023, + -0.01999044232070446, + 0.0024464058224111795, + -0.007532441057264805, + -0.038277897983789444, + -0.003743295557796955, + 0.0016137436032295227, + 0.015759175643324852, + 0.0087900310754776, + 0.00791233777999878, + -0.00366797111928463, + 0.031623151153326035, + 0.0047716377303004265, + 0.02444440871477127, + -0.0210646353662014, + -0.015104181133210659, + -0.003939793910831213, + -0.0029851391445845366, + -0.00021225927048362792, + -0.010506117716431618, + -0.04181487113237381, + -0.00037027677171863616, + 0.032775942236185074, + 0.008377384394407272, + 0.010741915553808212, + 0.020252441987395287, + 0.0009382801363244653, + -0.01737046428024769, + 0.0007565190899185836, + 0.011056313291192055, + 0.02646179310977459, + -0.012444902211427689, + 0.01612597331404686, + -0.0052497838623821735, + -0.010735365562140942, + 0.0080695366486907, + 0.011842306703329086, + -0.025361401960253716, + -0.017514562234282494, + 0.018470855429768562, + -0.004968136083334684, + 0.006746447179466486, + 0.02327851764857769, + -0.0017586612375453115, + 0.008560783229768276, + -0.017606262117624283, + 0.028426777571439743, + 0.011757157742977142, + -0.027378784492611885, + 0.010453717783093452, + 0.013243996538221836, + -0.016374871134757996, + -0.018090957775712013, + 0.0041199177503585815, + -0.039168693125247955, + 0.0002626120112836361, + 0.01067641656845808, + -0.01961054652929306, + 0.01554957777261734, + -0.006340350490063429, + 0.017239464446902275, + -0.004018393345177174, + -0.005750854965299368, + -0.014868383295834064, + -0.01125936210155487, + -0.023344017565250397, + 0.03798970207571983, + 0.0158377755433321, + -0.02355361543595791, + -0.0036024716682732105, + -0.01129211112856865, + -0.013250546529889107, + 0.0042640166357159615, + -0.029029373079538345, + 0.012071555480360985, + -0.02685478888452053, + -0.006792296655476093, + 0.0028181152883917093, + -0.01709536649286747, + 0.005141709465533495, + 0.010191719979047775, + 0.002089433604851365, + -0.027457384392619133, + -0.020239342004060745, + 0.19639365375041962, + -0.05116819962859154, + -0.014501586556434631, + -0.000569845549762249, + -0.031439755111932755, + -0.033090341836214066, + 0.03460992872714996, + 0.0041297427378594875, + 0.0047421627677977085, + 0.022531824186444283, + 0.005462657194584608, + -0.00027161819161847234, + -0.016663068905472755, + 0.008993079885840416, + 0.017606262117624283, + -0.02491600438952446, + -0.04084547981619835, + -0.005184284411370754, + 0.0074669416062533855, + 0.040426284074783325, + 0.018405355513095856, + -0.026789288967847824, + -0.01729186438024044, + -0.019558146595954895, + 0.0471334308385849, + 0.016859568655490875, + -0.004355716053396463, + 0.018300555646419525, + 0.032094746828079224, + 0.03178035095334053, + -0.029815366491675377, + -0.005557631608098745, + 0.014475386589765549, + -0.016663068905472755, + -0.004696313291788101, + 0.0070215449668467045, + 0.0076241400092840195, + -0.02200782671570778, + 0.012916498817503452, + 0.01882455311715603, + 0.03141355514526367, + -0.02221742644906044, + -0.024706406518816948, + -0.027090586721897125, + 0.0007712564547546208, + 0.012726549990475178, + 0.005813079420477152, + 0.004257466644048691, + 0.01023756992071867, + -0.007394892163574696, + -0.01573297567665577, + 0.011337961070239544, + 0.007709289435297251, + 0.04008568450808525, + -0.007178743835538626, + -0.017553862184286118, + -0.0003408020129427314, + -0.005102409981191158, + 0.02171962894499302, + -0.00608817720785737, + -0.036548715084791183, + 0.019545046612620354, + -0.0059964777901768684, + 0.028243377804756165, + -0.020920535549521446, + 0.0102310199290514, + -0.018313655629754066, + -0.009124078787863255, + -0.009176477789878845, + -0.027771782130002975, + -0.00630432553589344, + -0.013925191015005112, + -0.019007951021194458, + 0.0017340988852083683, + -0.010899114422500134, + -0.03350953757762909, + 0.008685232140123844, + 0.0075717405416071415, + 0.02561029978096485, + 0.019662946462631226, + 0.004365540575236082, + -0.00385136972181499, + -0.0009612049325369298, + -0.014422986656427383, + -0.010460267774760723, + -0.017711061984300613, + 0.024261008948087692, + 0.003070288337767124, + 0.030286962166428566, + -0.0386446975171566, + -0.016047373414039612, + -0.00770273944362998, + -0.005397157743573189, + -0.010918764397501945, + -0.006726797204464674, + -0.009261627681553364, + 0.02037033997476101, + 0.009006178937852383, + 0.00024255277821794152, + -0.0053120083175599575, + -0.02329161763191223, + 0.054233573377132416, + 0.04860061779618263, + -0.021955428645014763, + -0.01833985559642315, + 0.014514686539769173, + -0.008554233238101006, + 0.028636375442147255, + -0.005479032173752785, + -0.02375011332333088, + -0.002601967193186283, + -0.025361401960253716, + 0.014318187721073627, + -0.01892935112118721, + -0.002543017501011491, + -0.003582821926102042, + 6.022882371325977e-05, + 0.0006042327731847763, + -0.004431040026247501, + -0.008017136715352535, + -0.013008197769522667, + -0.003399423323571682, + 0.01536617986857891, + 0.009975572116672993, + 0.014016889967024326, + -0.04461824893951416, + -0.034898124635219574, + 0.02406451106071472, + -0.0008211997919715941, + 0.011036663316190243, + 0.012182904407382011, + -0.01013932004570961, + 0.022440124303102493, + -0.00770273944362998, + 0.017422864213585854, + 0.0037236458156257868, + -0.021405231207609177, + -0.03408593311905861, + -0.017645562067627907, + 0.010329268872737885, + 0.018418455496430397, + -7.138420914998278e-05, + 0.0047847372479736805, + -0.0014598198467865586, + 0.021313533186912537, + 0.004401565529406071, + 0.0324353463947773, + -0.005488857161253691, + -0.028138579800724983, + -0.0225056242197752, + -0.023527415469288826, + -0.004902636632323265, + 0.0059539033100008965, + -0.016754768788814545, + 0.02126113325357437, + 0.010113121010363102, + -0.021103935316205025, + -0.03170175105333328, + 0.02123493328690529, + 0.0131850466132164, + -0.02229602448642254, + -0.012975447811186314, + -0.013374995440244675, + -0.03238294646143913, + 0.008423234336078167, + -0.009176477789878845, + -0.16453470289707184, + 0.007087044417858124, + 0.02173272892832756, + -0.012241854332387447, + 0.010466817766427994, + -0.003132513025775552, + 0.0038317199796438217, + 0.01979394443333149, + -0.02471950650215149, + 0.002434943336993456, + 0.024942204356193542, + -0.00985767226666212, + -0.028164779767394066, + -0.0295533686876297, + -0.013938290998339653, + -0.010833615437150002, + -0.0010897476458922029, + 0.014789784327149391, + 0.041395675390958786, + 0.019636746495962143, + -0.0005424176342785358, + -0.020147642120718956, + 0.01903415098786354, + 0.0017455612542107701, + -0.0021909577772021294, + -0.0026936663780361414, + -0.024955304339528084, + 0.034321729093790054, + -0.023920413106679916, + -0.009451575577259064, + -0.008757281117141247, + -0.006500823888927698, + 0.012425252236425877, + 0.0032585994340479374, + -0.01231390330940485, + -0.008999629877507687, + 0.006635097786784172, + 0.00403476832434535, + 0.004414665512740612, + 0.02984156645834446, + 0.005682080518454313, + 0.039456889033317566, + -0.01950574666261673, + 0.027562184259295464, + -0.002009196672588587, + 0.03581511974334717, + 0.018759053200483322, + -0.025570999830961227, + -0.0074472916312515736, + -0.01999044232070446, + -0.002958939177915454, + -0.007905787788331509, + -0.019099650904536247, + 0.0208419356495142, + -0.007014994975179434, + 0.018418455496430397, + 0.005318558309227228, + 0.024221710860729218, + -0.006720247212797403, + 0.0034550977870821953, + -0.005534706637263298, + -0.004355716053396463, + 0.00579342944547534, + 0.003618846647441387, + -0.0024611433036625385, + -0.02403831109404564, + -0.009680824354290962, + 0.031334955245256424, + -0.010597816668450832, + -0.016584469005465508, + -0.0017946859588846564, + -0.03138735517859459, + 0.00922232773154974, + -0.0148159833624959, + 0.01173750776797533, + 0.026003295555710793, + 0.004630813840776682, + 0.009196127764880657, + 0.012864098884165287, + -0.0007352317334152758, + -0.016833368688821793, + 0.045718640089035034, + 0.007250793278217316, + -0.0281123798340559, + -0.022243626415729523, + -0.012268053367733955, + -0.013204696588218212, + 0.00741454167291522, + -0.015772275626659393, + 0.004015118349343538, + 0.013676293194293976, + -0.02908177115023136, + -0.006684222724288702, + -0.04262706637382507, + 0.011672008782625198, + -0.0064811743795871735, + 0.005845829378813505, + -0.013257095590233803, + -0.010466817766427994, + -0.00155643152538687, + 0.004489989951252937, + -0.015719877555966377, + -0.018994851037859917, + 0.02461470663547516, + 0.006317425519227982, + 0.004935386124998331, + -0.012091205455362797, + 0.01582467555999756, + 0.038854293525218964, + -0.017239464446902275, + -0.005033635534346104, + -0.011049763299524784, + 0.02722158655524254, + 0.013833491131663322, + 0.003910319413989782, + 0.008364284411072731, + -0.0246278066188097, + -0.028086179867386818, + 0.0007303192978724837, + 0.01551027875393629, + 0.0575871467590332, + -0.015562677755951881, + 0.010073821060359478, + 0.009209227748215199, + -0.014029989950358868, + -0.02481120452284813, + -0.09824922680854797, + 0.009700474329292774, + 0.026776190847158432, + 0.00543318223208189, + 0.009091328829526901, + 0.004093717783689499, + 0.005777054466307163, + 0.0031554377637803555, + 0.011626158840954304, + 0.027797982096672058, + -0.04522084444761276, + -0.024496808648109436, + -0.006825046613812447, + -0.010682966560125351, + 0.023881113156676292, + -0.0038841194473206997, + 0.009379526600241661, + -0.028348177671432495, + -0.029107971116900444, + 0.024549206718802452, + -0.009451575577259064, + -0.001278877491131425, + 0.0021958702709525824, + -0.002063233871012926, + -0.016964366659522057, + -0.013925191015005112, + -0.03657491132616997, + 0.015051782131195068, + 0.011233162134885788, + -0.026632091030478477, + 0.03130875527858734, + -0.02086813561618328, + 0.0012854273663833737, + -0.006124202162027359, + -0.008180885575711727, + 0.004853512160480022, + -0.023933513090014458, + -0.0038939444348216057, + 0.046504635363817215, + -0.020226242020726204, + -0.00021225927048362792, + -0.0034747477620840073, + 0.002115633338689804, + -0.010944964364171028, + 0.007696189451962709, + -0.025479299947619438, + -0.008665582165122032, + 0.018890051171183586, + 0.0022613697219640017, + 0.0047519877552986145, + -0.03479332849383354, + -0.037911102175712585, + -0.028374377638101578, + 0.012589001096785069, + 0.028138579800724983, + -0.01231390330940485, + -0.0010586354183033109, + -0.0031963749788701534, + -0.026199795305728912, + 0.001987909432500601, + -0.01623077318072319, + 0.017724160104990005, + -0.02761458419263363, + 0.016387971118092537, + -0.0032373121939599514, + -0.011351061053574085, + -0.02211262658238411, + -0.010918764397501945, + 0.008809681050479412, + 0.01923064887523651, + -0.023501215502619743, + 0.002074696123600006, + -0.0038317199796438217, + 0.0046799383126199245, + -0.023710813373327255, + -0.008593532256782055, + -0.045351844280958176, + -0.014108588919043541, + 0.003419073298573494, + -0.012228754349052906, + -0.005836004391312599, + -0.03605091571807861, + 0.02936996892094612, + -0.017069166526198387, + 0.03290694206953049, + 0.014658785425126553, + -0.011121813207864761, + -0.023409515619277954, + 0.021274233236908913, + -0.01467188447713852, + 0.004300041124224663, + 0.02300341986119747, + 0.030679959803819656, + 0.005479032173752785, + -0.03460992872714996, + 0.010768115520477295, + -0.006314150523394346, + 0.004208342172205448, + -0.008586982265114784, + 0.01217635441571474, + 0.0023661688901484013, + -0.007506241090595722, + -0.04797182232141495, + 0.018300555646419525, + 0.022531824186444283, + -0.008829331025481224, + -0.0030260763596743345, + -0.004277116619050503, + 0.003736745798960328, + 0.007879587821662426, + 0.034059733152389526, + 0.009713573381304741, + -0.01129211112856865, + 0.017042966559529305, + -0.005390607751905918, + 0.0080695366486907, + -0.017265664413571358, + -0.04663563519716263, + 0.007846838794648647, + 0.018379155546426773, + -0.003592646913602948, + 0.004024943336844444, + -0.018863851204514503, + 0.0070411949418485165, + -0.006425499450415373, + 0.03188515082001686, + -0.0331951379776001, + -0.0006959320162422955, + 0.0005199021543376148, + -0.00748659111559391, + -0.008600082248449326, + 0.002019021660089493, + 0.0010332544334232807, + -0.007990937680006027, + -0.017029866576194763, + 0.0158377755433321, + -0.009156827814877033, + -0.020999135449528694, + 0.018903151154518127, + 0.027955180034041405, + 0.018968651071190834, + 0.038094501942396164, + -0.013807292096316814, + -0.02936996892094612, + -0.008311884477734566, + -0.02048823982477188, + -0.008246385492384434, + 0.006042327731847763, + 0.023448815569281578, + 0.0031898249872028828, + 0.016859568655490875, + -0.004355716053396463, + 0.039168693125247955, + 0.015575777739286423, + 0.014318187721073627, + -0.0074996910989284515, + 0.011134912259876728, + -0.0007164006237871945, + 0.015981875360012054, + 0.0016489495756104589, + 0.024496808648109436, + -0.03332613781094551, + 0.06188391521573067, + -0.00893412996083498, + 0.011364161036908627, + -0.015785375609993935, + -0.002674016635864973, + -0.012471102178096771, + -0.028374377638101578, + -0.014527786523103714, + 0.002983501646667719, + -0.011992955580353737, + -0.019099650904536247, + 0.00248570553958416, + 0.013597693294286728, + 0.022453224286437035, + -0.011226612143218517, + -0.004512914456427097, + 0.012562801130115986, + -0.01023756992071867, + -0.010656766593456268, + 0.012516952119767666, + 0.01585087552666664, + 0.014475386589765549, + 0.013846591114997864, + -0.00922887772321701, + 0.03555312007665634, + 0.007728939410299063, + -0.014763584360480309, + 0.002572492230683565, + -0.0015899999998509884, + 0.00260851695202291, + -0.010637116618454456, + 0.02037033997476101, + 0.003979093860834837, + 0.023815613240003586, + 0.02300341986119747, + 0.01882455311715603, + -0.0015220443019643426, + -0.00733594223856926, + 0.044172853231430054, + 0.03793730214238167, + 0.01037511881440878, + 0.012045355513691902, + -0.0131850466132164, + -0.03542212396860123, + 0.004506364464759827, + 0.016964366659522057, + -0.022741422057151794, + -0.032697342336177826, + 0.002233532490208745, + 0.021575530990958214, + -0.014449186623096466, + -0.009196127764880657, + 0.01564127765595913, + 0.007977837696671486, + -0.02549239993095398, + 0.009425376541912556, + -0.02538760006427765, + -0.02635699324309826, + -0.02936996892094612, + 0.02329161763191223, + 0.031623151153326035, + 0.002009196672588587, + -0.0041297427378594875, + 0.014383687637746334, + 0.01786825992166996, + -0.010630566626787186, + 0.005898228846490383, + -0.011927456595003605, + 0.011226612143218517, + -0.022754522040486336, + 0.007945087738335133, + -0.0018650979036465287, + -0.02608189545571804, + -0.01520898099988699, + -0.019479546695947647, + -0.015706777572631836, + 0.017999259755015373, + 0.015601977705955505, + 0.005623131059110165, + 0.11643188446760178, + 0.02085503563284874, + -0.020907435566186905, + 0.03497672453522682, + 0.010912214405834675, + 0.01989874430000782, + 0.02386801317334175, + 0.0022973944433033466, + 0.007231143303215504, + -0.031727951020002365, + 0.02270212210714817, + -0.012909948825836182, + 0.013217796571552753, + -0.023776313289999962, + -0.007945087738335133, + 0.02115633338689804, + 0.014606385491788387, + 0.010774665512144566, + -0.02221742644906044, + -0.022675922140479088, + 0.032016150653362274, + -0.03149215131998062, + 0.007781338877975941, + 0.029500968754291534, + -0.021510031074285507, + -0.011717857792973518, + 0.01144930999726057, + -0.001622749725356698, + 0.0025806797202676535, + -0.01482908334583044, + -0.008757281117141247, + 0.00028348996420390904, + -0.049596212804317474, + -0.021077735349535942, + 0.019269948825240135, + -0.030968157574534416, + 0.0025135427713394165, + -0.019007951021194458, + 0.010047621093690395, + -0.004116642754524946, + 0.011947106570005417, + 0.01856255531311035, + -0.009759423322975636, + -0.03371913731098175, + -0.00040220777736976743, + 0.017815859988331795, + 0.0029294644482433796, + -0.012530052103102207, + -0.024116910994052887 + ], + "metadata": { + "source": "Thesis_Verladegeraeusche_in_Speditionen.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 41, + "has_images": true, + "image_count": 51, + "coordinates": "CoordinatesMetadata(points=((204.16666666666666, 189.02777777777797), (204.16666666666666, 642.3611111111111), (936.1666666666666, 642.3611111111111), (936.1666666666666, 189.02777777777797)), system=)", + "links": [], + "last_modified": "2025-05-05T22:59:16", + "_known_field_names": "frozenset({'cc_recipient', 'link_texts', 'url', 'filetype', 'category_depth', 'page_number', 'filename', 'orig_elements', 'detection_origin', 'email_message_id', 'page_name', 'coordinates', 'table_as_cells', 'link_start_indexes', 'sent_to', 'bcc_recipient', 'languages', 'last_modified', 'link_urls', 'file_directory', 'subject', 'data_source', 'detection_class_prob', 'image_base64', 'text_as_html', 'attached_to_filename', 'key_value_pairs', 'signature', 'sent_from', 'header_footer_type', 'parent_id', 'links', 'emphasized_text_contents', 'emphasized_text_tags', 'image_mime_type', 'is_continuation', 'image_path'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "Thesis_Verladegeraeusche_in_Speditionen.pdf", + "detection_class_prob": 0.2568194270133972, + "parent_id": "d45475a34bc527cde6987546fa6dd2f5", + "text_as_html": "
Flurf\u00f6rderger\u00e4t |Anzahl Einzelereignisse ElMax-PegelSchallleistungspegel
LAFmaxLWA,5sLWAmaxLWA,1hKlLWAT,1h
[dB(A)][dB(A)][dB(A)][dB(A)][dB(A)][dB(A)]
Gabelstapler29769,3100,7108,872,15,777,8
STABW [dB]6,54,96,54,92,9-
Gabelhubwagen9968,6100,7108,172,16,279,5
STABW [dB]6,45,16,4512,7-
", + "id": "5ba44de7-0ff3-4c0c-b018-67e92171e1c2", + "processing_timestamp": "2025-05-06T14:18:19.298665", + "chunk_number": 6, + "total_chunks": 49, + "chunking_strategy": "hybrid", + "word_count": 413 + } +} \ No newline at end of file diff --git a/data/processed/85fd305f-83de-70b0-47e8-2dc000000007.json b/data/processed/85fd305f-83de-70b0-47e8-2dc000000007.json new file mode 100644 index 0000000000000000000000000000000000000000..bf411755b93355142d148fb8c3a57df504c6dc7e --- /dev/null +++ b/data/processed/85fd305f-83de-70b0-47e8-2dc000000007.json @@ -0,0 +1,1570 @@ +{ + "id": "85fd305f-83de-70b0-47e8-2dc000000007", + "content": "Die ermittelten Beurteilungspegel werden mit den derzeitig geltenden Immissions- grenz- oder Richtwerten der jeweiligen Regelwerke verglichen. Die jeweiligen Regel- werke legen die wesentlichen Rahmenbedingungen und Schutzziele fest. Wird ein vor- gegebener Immissionsgrenz- oder Richtwert \u00fcberschritten, zeigt dies, dass ein Schutzziel nicht erreicht wurde und entsprechende Schallschutzma\u00dfnahmen ergriffen werden\n\n## m\u00fcssen. [17]\n\n\ud835\udc3f\ud835\udc5f = 10 \u2217 lg( 1 \ud835\udc47\ud835\udc5f \ud835\udc41 \u2211\ud835\udc47\ud835\udc56 \u2217 100,1(\ud835\udc3f\ud835\udc34\ud835\udc52\ud835\udc5e,\ud835\udc56\u2212\ud835\udc36\ud835\udc5a\ud835\udc52\ud835\udc61+\ud835\udc3e\ud835\udc3c,\ud835\udc56+\ud835\udc3e\ud835\udc47+\ud835\udc3e\ud835\udc45,\ud835\udc56 \ud835\udc56=1\n)\n\ud835\udc3f\ud835\udc5f,\ud835\udc4e\ud835\udc62\ud835\udc60 \ud835\udc40\ud835\udc52\ud835\udc60\ud835\udc60\ud835\udc62\ud835\udc5b\ud835\udc54 \ud835\udc5b\ud835\udc4e\ud835\udc50\u210e \ud835\udc37\ud835\udc3c\ud835\udc41 45645\u22121 = \ud835\udc3f\ud835\udc52\ud835\udc5e + \ud835\udc3e\ud835\udc3c + \ud835\udc3e\ud835\udc47 + \ud835\udc3e\ud835\udc45 + \ud835\udc3e\ud835\udc46\nFormel 1: Beurteilungspegel [dB(A)]\n\n## \ud835\udc41\n\n\ud835\udc47\ud835\udc5f = \u2211\ud835\udc47\ud835\udc57 = 16 \u210e \ud835\udc61\ud835\udc4e\ud835\udc54\ud835\udc60 \ud835\udc5c\ud835\udc51\ud835\udc52\ud835\udc5f 8 \u210e \ud835\udc5b\ud835\udc4e\ud835\udc50\u210e\ud835\udc61\ud835\udc60 \ud835\udc56=1\nMit LAeq,T: Mittelungsegel w\u00e4hrend Teilzeit Ti [dB(A)], N: Anzahl der gew\u00e4hlten Teilzeiten [-], Ti: Teilzei- ten i, Cmet: meteorologische Korrektur [dB(A)] nach DIN EN ISO 9613-2 [18], KT,i: Zuschlag f\u00fcr Ton- und\nInformationshaltigkeit in der Teilzeit Ti [dB(A)], KI,i: Zuschlag f\u00fcr Impulshaltigkeit in der Teilzeit Ti [dB(A)], KR,i: Zuschlag f\u00fcr Tageszeiten mit erh\u00f6hter Empfindlichkeit in der Teilzeit Ti, [dB(A)], KS: Zu-o-\nder Abschlag f\u00fcr bestimmte Ger\u00e4usche und Situationen [dB(A)]\nIn den Beurteilungspegel flie\u00dfen eine Anzahl von St\u00f6reinfl\u00fcsse mit ein, die mithilfe von Zu- bzw. Abschl\u00e4ge ber\u00fccksichtigt werden. F\u00fcr R\u00e4ume, die besonderen Schutz bed\u00fcrfen, wird ein Zuschlag von 6 dB(A) vergeben. Wenn w\u00e4hrend der Messung Einzelt\u00f6ne her-\n10\n2 Grundlagen\nvortreten oder das Ger\u00e4usch informationshaltig ist, kann dies zu einer erh\u00f6hten L\u00e4rm- belastung f\u00fchren. In diesem Fall wird ein Ton- und Informationszuschlag KT von 3 oder 6 dB vergeben. Wenn das Ger\u00e4usch nicht ton- oder informationshaltig ist, wird kein Zu- schlag vergeben. Der Ton- und Informationszuschlag kann nach der DIN 415681 [19] er- mittelt werden. Wenn das Ger\u00e4usch w\u00e4hrend bestimmter Teilzeiten Impulse aufweist, wird ein Impulszuschlag Ti f\u00fcr diese Zeiten vergeben (siehe Formel 2). Bei nicht Impuls- haltigen Ger\u00e4uschen kein Zuschlag zu vergeben. [17]\n\ud835\udc3e\ud835\udc3c,\ud835\udc56 = \ud835\udc3f\ud835\udc34\ud835\udc39\ud835\udc47\ud835\udc52\ud835\udc5e,\ud835\udc56 \u2212 \ud835\udc3f\ud835\udc34\ud835\udc52\ud835\udc5e,\ud835\udc56\n\n## Formel 2: Impulszuschlag [dB(A)]\n\nMit LAFTeq,i: Taktmaximalpegel in der Teilzeit Ti [dB(A)], LAeq,i: Mittelungspegel in der Teilzeit Ti [dB(A)]\nDer Taktmaximal-Mittelungspegel LAFTeq beschreibt den Maximalwert des Schalldruck- pegels LAF \u00fcber die zugeh\u00f6rige Taktzeit T von 5 Sekunden und wird mithilfe der Formel 3 nach der DIN 45641 [20] berechnet. \ud835\udc3f\u0305\ud835\udc34\ud835\udc39\ud835\udc47\ud835\udc52\ud835\udc5e = 10 \u2217 lg( 1 \ud835\udc41 \ud835\udc41 \u2211100,1\u2217\ud835\udc3f\ud835\udc34\ud835\udc39\ud835\udc47,\ud835\udc56 \ud835\udc56=1 )\nFormel 3: Taktmaximal-Mittelungspegel [dB(A)]\nMit LAFeq: Taktmaximalpegel [dB(A)], N: Anzahl der gemessenen Taktmaximalpegel [-]\nDer Taktmaximal-Mittelungspegel ist eine Gr\u00f6\u00dfe, die in der Beurteilung von impulshal- tigen Ger\u00e4uschen verwendet wird und kann als Ann\u00e4herung f\u00fcr den Impulsschallpegel verwendet werden. In der technischen Anleitung zum Schutz gegen L\u00e4rm (TA L\u00e4rm) [6], wird der zeitliche Schalldruckpegelverlauf in gleichlange Zeit Zeitintervalle, sogenannte Takte zerlegt. Der Taktmaximal-Mittelunvergspegel wird in einem 5-Sekunden-Takt bei beispielsweise Nachbarschaftsl\u00e4rm und in einem 3-Sekunden-Takt bei Arbeitsplatzl\u00e4rm ermittelt. [21, 17]\nBei der Bestimmung des Beurteilungspegels Lr f\u00fcr die unterschiedlichen Witterungsver- h\u00e4ltnisse, ist die meteorologische Korrektur Cmet nach EN ISO 9613-2 [18] zu beachten. Die meteorologische Korrektur Cmet ber\u00fccksichtigt verschiedene Faktoren, wie die geo- metrische Ausbreitung, die Luftabsorption, den Bodeneffekt, die Reflexion an Fl\u00e4chen und die Abschirmung durch Hindernisse. Um zuverl\u00e4ssige Ergebnisse zu erhalten, ist es von Bedeutung, dass die Faktoren bei der Messung und Auswertung der Schallemissio-\n11\n2 Grundlagen\nnen korrekt ber\u00fccksichtigt werden. F\u00fcr den Fall einer Punktschallquelle, gilt eine spezi- fische Voraussetzung (siehe Formel 4). Bei einer Punktschallquelle breitet sich der aus- gesendete Schall gleichm\u00e4\u00dfig, ungest\u00f6rt und verlustfrei in die Umgebung aus. Die Schall- leistung ist hierbei konstant \u00fcber den Zeitverlauf. [22, 17]\n\ud835\udc36\ud835\udc5a\ud835\udc52\ud835\udc61 = 0,\ud835\udc64\ud835\udc52\ud835\udc5b\ud835\udc5b \ud835\udc51\ud835\udc5d \u2264 10(\u210e\ud835\udc60 + \u210e\ud835\udc5f)\n\ud835\udc36\ud835\udc5a\ud835\udc52\ud835\udc61 = \ud835\udc360 [1 \u2212 10( 10(\u210e\ud835\udc60 + \u210e\ud835\udc5f) \ud835\udc51\ud835\udc5d )],\ud835\udc64\ud835\udc52\ud835\udc5b\ud835\udc5b \ud835\udc51\ud835\udc5d \u2265 10(\u210e\ud835\udc60 + \u210e\ud835\udc5f)\nFormel 4: meteorologische Korrektur [dB(A)]\nMit hs: Quellh\u00f6hen [m], hr: Aufpunkth\u00f6hen [m], dp: Abstand zwischen Quelle und Aufpunkt, projiziert\nauf die horizontale Bodenebene [m]\nJe geringer der Abstand dp zwischen der Schallquelle und dem Aufpunkt und je gr\u00f6\u00dfer die H\u00f6henunterschiede zwischen Schallquelle und Aufpunkt sind, desto st\u00e4rker sind die meteorologischen Auswirkungen zu ber\u00fccksichtigen. [17]\n\n## Charakterisierung der Ger\u00e4uschemissionen\n\nUm die Emissionen einer Quelle unabh\u00e4ngig von Umgebungseinfl\u00fcssen, Entfernung und Fremdger\u00e4uschen zu definieren, wird der Schallleistungspegel LWA ben\u00f6tigt. Dieser be- schreibt die Schallenergie, die von einer Quelle pro Zeiteinheit in die gesamte Luft gleich- f\u00f6rmig abgestrahlt wird.", + "embedding": [ + 0.030270833522081375, + 0.013295323587954044, + 0.002251522848382592, + -0.03866787999868393, + 0.010807309299707413, + 0.008662693202495575, + -0.016573799774050713, + -0.02370092272758484, + -0.017493845894932747, + -0.035531945526599884, + 0.011422833427786827, + 0.012627965770661831, + -0.019243231043219566, + 0.013684075325727463, + -0.008312816731631756, + 0.012323442846536636, + 0.03115200437605381, + -0.006424129009246826, + 0.021666452288627625, + -0.003981469664722681, + -0.006427368614822626, + 0.0008463457925245166, + -0.010502787306904793, + 0.013042634353041649, + -0.012815861962735653, + -0.003997667692601681, + 0.02721264958381653, + -0.03053000196814537, + -0.024543218314647675, + 0.0019227033481001854, + 0.01728651113808155, + -0.00896721612662077, + -0.02879357524216175, + 0.023208502680063248, + -0.007165997754782438, + -0.0015566283836960793, + -0.01210314966738224, + 0.0013258068356662989, + 0.03190359100699425, + -0.00982247106730938, + 0.01952831633388996, + 0.0017979786498472095, + 0.019424648955464363, + -0.025515099987387657, + 0.008338733576238155, + 0.006148763000965118, + 0.016016587615013123, + 0.0001914401800604537, + -0.027316316962242126, + 0.004775172099471092, + 0.01186341978609562, + 0.003187767695635557, + -0.022249581292271614, + -0.004788130521774292, + -0.007742647081613541, + -0.015265000984072685, + 0.0007653557695448399, + 0.016314631327986717, + -0.004396138712763786, + -0.013321240432560444, + -0.04112997651100159, + -0.01297784224152565, + -0.023441754281520844, + 0.019139563664793968, + -0.01185694057494402, + -0.017454970628023148, + -0.013230531476438046, + 0.007327978033572435, + -0.019411690533161163, + -0.00691330898553133, + 0.029156411066651344, + 0.03244784474372864, + 0.010230660438537598, + 0.026396270841360092, + 0.023389920592308044, + -0.00048067583702504635, + 0.010250098071992397, + -0.017584554851055145, + 0.013308282010257244, + 0.015407543629407883, + 0.025761308148503304, + -0.009323572739958763, + -0.03216275945305824, + 0.03345860168337822, + 0.005669302307069302, + -0.009660490788519382, + -0.019994819536805153, + 0.025230014696717262, + -0.021031491458415985, + 0.0007698102272115648, + 0.005325904581695795, + 0.011694960296154022, + 0.012485423125326633, + 0.00016187882283702493, + 0.018867436796426773, + -0.011351563036441803, + 0.011306208558380604, + 0.011254374869167805, + 0.009239342994987965, + -0.03338085114955902, + -0.007023455575108528, + -0.006116366945207119, + 0.0011136129032820463, + -0.001069068443030119, + -0.016457173973321915, + -0.017649346962571144, + 0.00692626740783453, + 0.018310226500034332, + 0.006232992745935917, + -0.026124143972992897, + -0.009718803688883781, + 0.01785668171942234, + 0.019930027425289154, + -0.00803421065211296, + 0.025683557614684105, + 0.0038940005470067263, + 0.04830893501639366, + -0.005095892585813999, + -0.015809254720807076, + -0.009705845266580582, + 0.026927566155791283, + 0.009615136310458183, + 0.01678113453090191, + -0.01731242798268795, + 0.033225350081920624, + 0.004797849338501692, + 0.0016513867303729057, + -0.01469483133405447, + -0.02824932336807251, + -0.020564988255500793, + -0.01741609536111355, + -0.0202280692756176, + 0.034313857555389404, + 0.0019340419676154852, + -0.003955553285777569, + 0.013450824655592442, + -0.010230660438537598, + -0.009466114453971386, + -0.02188674546778202, + -0.03589478135108948, + 0.0202021524310112, + 0.022949334233999252, + -0.028715824708342552, + -0.030193082988262177, + -0.001064209034666419, + 0.023182585835456848, + 0.005458727944642305, + 0.014396787621080875, + -0.0010763575555756688, + 0.0029885321855545044, + -0.014850332401692867, + -0.016431257128715515, + 0.009155113250017166, + -0.004528962541371584, + -0.014811457134783268, + 0.010515745729207993, + 0.006187638267874718, + 0.024530259892344475, + -0.016379423439502716, + 0.0042924717999994755, + -0.0010245238663628697, + 0.007302061188966036, + 0.004318388644605875, + 0.01216146256774664, + 0.018724894151091576, + 0.009459635242819786, + -0.0005142866866663098, + 0.006796683184802532, + -0.015122458338737488, + -0.007412207778543234, + 0.0018481925362721086, + 0.028612157329916954, + -0.010580537840723991, + 0.01729946956038475, + -0.011098873801529408, + 0.016820009797811508, + 0.006501879543066025, + 0.008338733576238155, + -0.015588960610330105, + -0.025476224720478058, + -0.027394067496061325, + 0.003997667692601681, + 0.015938837081193924, + 0.015848129987716675, + -0.022910458967089653, + -0.009044966660439968, + 0.009291176684200764, + 0.018763769418001175, + -0.012491902336478233, + -0.03187767416238785, + 0.013476740568876266, + 0.016612675040960312, + 0.004645588342100382, + -0.037734873592853546, + -0.6340288519859314, + -0.010042763315141201, + 0.012543736025691032, + 0.01495399884879589, + -0.00860438123345375, + 0.022366207093000412, + 0.013249969109892845, + -0.0043313466012477875, + 0.0006110697868280113, + 0.053803298622369766, + 0.005121809430420399, + 0.019295064732432365, + -0.008882986381649971, + 0.0011638267897069454, + -0.005636906251311302, + -0.018141767010092735, + -0.017675263807177544, + -0.012770508415997028, + 0.01469483133405447, + -0.0010002268245443702, + -0.012738112360239029, + 0.020487237721681595, + 0.005591551773250103, + 0.0012966503854840994, + 0.00014942660345695913, + 0.021031491458415985, + 0.01665155030786991, + -0.014837373979389668, + 0.013191656209528446, + 0.007729688659310341, + -0.025528058409690857, + 0.011183103546500206, + -0.026163019239902496, + 0.011727356351912022, + 0.04335882142186165, + -0.025566931813955307, + 0.012783465906977654, + 0.007366853300482035, + 0.0076972926035523415, + 0.006045096088200808, + -0.007237269077450037, + -0.011999483220279217, + 0.012563173659145832, + -0.01293248776346445, + 0.004593754652887583, + 0.019955944269895554, + 0.028949076309800148, + -0.00304198544472456, + 0.026059351861476898, + -0.03700920566916466, + 0.0009589219698682427, + 0.0001069068384822458, + 0.02644810453057289, + 0.013645200058817863, + 0.037320204079151154, + -0.011170145124197006, + 0.01093041431158781, + -0.019748609513044357, + -0.02418038435280323, + 0.014811457134783268, + -0.005225476808845997, + 0.01061941310763359, + 0.0005114520317874849, + -0.01624983921647072, + 0.002769859042018652, + 0.009200467728078365, + -0.005552676506340504, + -0.02427109144628048, + -0.0014140859711915255, + -0.012615007348358631, + -0.016962552443146706, + 0.02941557951271534, + -0.0068355584517121315, + -0.028586240485310555, + 0.040171053260564804, + 0.01067124679684639, + 0.022936375811696053, + -0.0344952754676342, + 0.011098873801529408, + 0.018595311790704727, + -0.003408060409128666, + -0.005653104279190302, + -0.01299727987498045, + 0.005737333558499813, + 0.013211093842983246, + -0.03760528936982155, + 0.0014894066844135523, + 0.015744462609291077, + 0.018737852573394775, + 0.01789555698633194, + 0.03389918804168701, + 0.040663473308086395, + 0.0022774396929889917, + -0.02545030787587166, + -0.016975510865449905, + 0.019930027425289154, + -0.015407543629407883, + 0.01956719160079956, + 0.015938837081193924, + -0.027419984340667725, + -0.023325128480792046, + -0.012304005213081837, + 0.017610471695661545, + -0.003589478088542819, + 0.03107425570487976, + -0.011746793985366821, + -0.004752494860440493, + 0.004788130521774292, + 0.015588960610330105, + -0.02643514610826969, + -0.0002336562320124358, + -0.025204097852110863, + -0.012005962431430817, + -0.00589283462613821, + -0.010405599139630795, + -0.03275884687900543, + 0.04667617380619049, + -0.005218997597694397, + -9.303729893872514e-05, + -0.007483478635549545, + 0.015692628920078278, + -0.009368926286697388, + 0.04276273772120476, + -0.019917069002985954, + -0.02432292513549328, + 0.03229234367609024, + 0.008131398819386959, + 0.014798498712480068, + 0.0030549438670277596, + 0.00036668236134573817, + 0.027419984340667725, + 0.006790203973650932, + 0.01680705137550831, + -0.010301931761205196, + 0.013709992170333862, + 0.020189194008708, + 0.01624983921647072, + -0.02361021377146244, + -0.0008836012566462159, + -0.03164442628622055, + -0.036542702466249466, + -0.0100751593708992, + 0.010185305960476398, + -0.03747570514678955, + -0.00982247106730938, + -0.040067389607429504, + -0.02257354184985161, + 0.018815603107213974, + 0.01608137972652912, + 0.0033497477415949106, + -0.010898018255829811, + -0.030452251434326172, + -0.01264740340411663, + 0.026823898777365685, + -0.0018773488700389862, + 0.004681223537772894, + -0.011753273196518421, + -0.011558896861970425, + -0.019308023154735565, + -0.012077233754098415, + 0.0030500844586640596, + 0.013062071986496449, + -0.04154464602470398, + -0.024387717247009277, + 0.0016667748568579555, + -0.024504343047738075, + 0.014344953931868076, + 0.007308540400117636, + -0.03151484206318855, + -0.0402228869497776, + 0.0008868408040143549, + 0.022599458694458008, + -0.006113127339631319, + 0.02306596003472805, + 0.00805364828556776, + 0.006699495483189821, + -0.024620968848466873, + -0.00811844039708376, + -0.007483478635549545, + -0.022094080224633217, + 0.02355838008224964, + 0.0017493846826255322, + -0.004282752983272076, + 0.012362318113446236, + 0.019178438931703568, + 0.010885059833526611, + 0.0003474472323432565, + 0.016599716618657112, + -0.014604122377932072, + 0.036672286689281464, + -0.003958792891353369, + 0.0405857227742672, + -0.016392381861805916, + 0.01380070112645626, + -0.02129065990447998, + 0.004324867390096188, + 0.010010368190705776, + -0.0037611769512295723, + 0.004094855859875679, + 0.026720231398940086, + 0.040145136415958405, + -0.02256058342754841, + 0.03387327119708061, + -0.018789686262607574, + 0.01266684103757143, + -0.011591292917728424, + 0.005575353745371103, + -0.010437995195388794, + 0.031385257840156555, + 0.03560969606041908, + 0.017597513273358345, + -0.002253142651170492, + -0.03148892521858215, + -0.003783854190260172, + -0.004240638110786676, + 0.04400674253702164, + 0.003693145466968417, + 0.018932228907942772, + 0.011675522662699223, + -0.012861216440796852, + 0.0036672286223620176, + -0.003456654492765665, + 0.033691853284835815, + 0.009317093528807163, + -0.011675522662699223, + -0.015161333605647087, + 0.00403330335393548, + 0.006712453905493021, + 0.006093689706176519, + -0.006119606550782919, + -0.011416354216635227, + -0.016509007662534714, + 0.007451082579791546, + 0.015938837081193924, + -0.004470649641007185, + 0.018297268077731133, + 0.019813401624560356, + -0.009284697473049164, + 0.03630945086479187, + 0.0017931192414835095, + 0.008656213991343975, + 0.009355967864394188, + 0.006527796387672424, + -0.0018368539167568088, + 0.014202411286532879, + -0.029830247163772583, + 0.013541532680392265, + 0.03695737197995186, + -0.008260983042418957, + -0.009323572739958763, + -0.00708824722096324, + 0.010276014916598797, + -0.024957887828350067, + 0.0058831158094108105, + 0.018141767010092735, + -0.009116237983107567, + 0.021212909370660782, + 0.0038194898515939713, + -0.005351821426302195, + 0.012602048926055431, + -0.0030517042614519596, + 0.003903719363734126, + 0.009122717194259167, + -0.026124143972992897, + 0.018297268077731133, + -0.002458857372403145, + -0.03573928028345108, + -0.02993391454219818, + -0.022651292383670807, + -0.0172735545784235, + 0.001822275691665709, + -0.010282494127750397, + 0.0051866015419363976, + 0.013237010687589645, + 0.0259556844830513, + -0.005270831286907196, + -0.015938837081193924, + 0.022107038646936417, + 0.03286251425743103, + 0.013956202194094658, + -0.018193600699305534, + -0.017675263807177544, + 0.012090192176401615, + 0.019722692668437958, + -0.01964494213461876, + -0.020474279299378395, + -0.018919270485639572, + -0.008507193066179752, + -0.014604122377932072, + 0.00810548197478056, + -0.010599975474178791, + -0.0006823409930802882, + 0.008552547544240952, + 0.0035344050265848637, + 0.007029934786260128, + -0.013476740568876266, + 0.008306337520480156, + 0.011532980017364025, + -0.006751328706741333, + 0.02371388114988804, + 0.00406245980411768, + -0.01383957639336586, + -0.01098224800080061, + -0.0259427260607481, + 0.011455229483544827, + -0.0025430868845432997, + -0.01739017851650715, + -0.023908257484436035, + -0.002455617766827345, + -0.011383959092199802, + -0.02659064717590809, + -0.0016829728847369552, + 0.00810548197478056, + 0.01900997944176197, + 0.0006507548969238997, + -0.008513672277331352, + 0.004477128852158785, + -0.02126474305987358, + 0.02824932336807251, + -0.0006880103028379381, + -0.00044220557902008295, + -0.025152264162898064, + 0.00803421065211296, + -0.006880912929773331, + 0.006867954507470131, + 0.018595311790704727, + 0.02139432728290558, + 0.02354542165994644, + -0.01380070112645626, + -0.00811844039708376, + -0.013049113564193249, + -0.03734612092375755, + 0.012576132081449032, + 0.0202151108533144, + 0.021796036511659622, + 0.0032007258851081133, + 0.031437091529369354, + -0.0024718157947063446, + 0.007029934786260128, + -0.023895299062132835, + 0.025592848658561707, + -0.013995077461004257, + 0.018919270485639572, + 0.013262927532196045, + -0.019243231043219566, + 0.005351821426302195, + 0.009848387911915779, + 0.03522094339132309, + -0.017143970355391502, + -0.026331478729844093, + 0.015459377318620682, + 0.01843981072306633, + 0.01678113453090191, + -0.03122975490987301, + -0.013722950592637062, + 0.025696516036987305, + 0.008481276221573353, + -0.0014408126007765532, + -0.018802644684910774, + -0.0031294547952711582, + -0.0009686407865956426, + -0.007165997754782438, + 0.03169625997543335, + -0.02415446750819683, + -0.0007297201664187014, + 0.03524686023592949, + 0.008546068333089352, + -0.003280096221715212, + -0.007548270747065544, + -0.01296488381922245, + 0.011507063172757626, + 0.014331995509564877, + -0.0054490091279149055, + -0.006119606550782919, + 0.0027552808169275522, + -0.01783076487481594, + -0.012478943914175034, + -0.0072113522328436375, + -0.015187250450253487, + -0.02310483530163765, + 0.022729042917490005, + -0.02429700829088688, + -0.009006091393530369, + -0.018025141209363937, + -0.02073344774544239, + -0.020461320877075195, + 0.022845666855573654, + -0.007593625225126743, + -0.0346507728099823, + -0.0009694506879895926, + -0.00490151671692729, + 0.0011622069869190454, + -0.009453156031668186, + 0.0027973956894129515, + 0.004104574676603079, + -0.016962552443146706, + -0.029804330319166183, + -0.0038486463017761707, + -0.0004964689142070711, + -0.005529999267309904, + 0.010126993060112, + 0.007347415667027235, + -0.01784372329711914, + 0.011008164845407009, + -0.01900997944176197, + 0.010574058629572392, + 0.008526630699634552, + -0.02529480680823326, + -0.01301023829728365, + 0.032603345811367035, + -0.018686018884181976, + 0.015109499916434288, + -0.00030593984411098063, + 0.003602436510846019, + -0.00893482007086277, + 0.021497992798686028, + 0.02478942833840847, + 0.00404950138181448, + -0.007658417336642742, + 0.022923417389392853, + 0.008993132971227169, + 0.01836206018924713, + -0.0015817353269085288, + -0.011254374869167805, + 0.018219517543911934, + -0.03516910970211029, + -0.0025657641235738993, + -0.0035732800606638193, + 0.033743686974048615, + 0.0021883505396544933, + 0.009388363920152187, + 0.002444279147312045, + 0.007710251025855541, + 0.00806012749671936, + -0.0019291825592517853, + -0.018206559121608734, + 0.010010368190705776, + -0.004963069222867489, + 0.014902165159583092, + -0.006693016272038221, + 0.003414539620280266, + -0.002073344774544239, + 0.021109241992235184, + 0.0007714300299994648, + -0.0037546977400779724, + -0.025515099987387657, + 0.05090061575174332, + 0.008507193066179752, + -0.014124661684036255, + 0.010029804892838001, + -0.015705587342381477, + 0.008170274086296558, + -0.022288456559181213, + -0.008844111114740372, + 0.03397693857550621, + 0.002943177707493305, + 0.020072568207979202, + -0.010865622200071812, + -0.02122586779296398, + -0.011293250136077404, + -0.0038616047240793705, + 0.022288456559181213, + -0.01732538640499115, + 0.0037579373456537724, + -0.007561229169368744, + 0.014202411286532879, + -0.02484126202762127, + 0.01679409295320511, + 0.021666452288627625, + -0.02705714851617813, + -0.02420629933476448, + 0.01610729657113552, + -0.013152780942618847, + 0.02199041284620762, + -0.02762731909751892, + -0.011027602478861809, + -0.028482573106884956, + 0.00045475902152247727, + -0.018906312063336372, + -0.028430739417672157, + -0.009304135106503963, + -0.0013096088077872992, + 0.008779319003224373, + 0.012913050130009651, + 0.016509007662534714, + -0.006006220821291208, + -0.01789555698633194, + 0.00863029807806015, + 0.0027504214085638523, + 0.007405728567391634, + -0.004266554955393076, + -0.0003310467582195997, + -0.03288843110203743, + 0.014435662887990475, + 0.005662823095917702, + -0.02073344774544239, + 0.006524556782096624, + -0.011345083825290203, + 0.009524427354335785, + 0.03636128455400467, + -0.013748867437243462, + -0.0028638073708862066, + -0.013684075325727463, + -0.010250098071992397, + 0.007658417336642742, + -0.0018400935223326087, + 0.00803421065211296, + 0.020046651363372803, + -0.014072827994823456, + -0.003263898193836212, + 0.00983542948961258, + -0.03519502654671669, + -0.004263315349817276, + 0.0016513867303729057, + 0.02074640616774559, + -0.0402747206389904, + 0.03757937252521515, + 0.00016673823120072484, + 0.018608270213007927, + -0.005277310498058796, + -0.020474279299378395, + -0.017053261399269104, + -0.018012182787060738, + 0.0172476377338171, + -0.004208242055028677, + -0.003469612915068865, + -0.022897500544786453, + -0.025255931541323662, + 0.012848258018493652, + -0.016262797638773918, + 0.01267979945987463, + -0.018673060461878777, + -0.005125049035996199, + -0.016547882929444313, + -0.024906054139137268, + -0.01954127475619316, + -0.025113388895988464, + -0.021731244400143623, + 0.01955423317849636, + -0.004635869525372982, + 0.0100816385820508, + 0.01473370660096407, + -0.008844111114740372, + -0.0049857464618980885, + 0.007904627360403538, + -0.001452151220291853, + 0.03226642683148384, + -0.007392770145088434, + 0.03053000196814537, + 0.02135545201599598, + -0.014267203398048878, + -0.02642218768596649, + -0.03190359100699425, + -0.005163924302905798, + -0.015822213143110275, + 0.018128808587789536, + -0.012602048926055431, + -0.018932228907942772, + 0.017571596428751945, + 0.014163536950945854, + 0.009142154827713966, + -0.005001944489777088, + -0.009563302621245384, + 0.03231826052069664, + 0.015239084139466286, + -0.002763379830867052, + -0.0060872104950249195, + 0.02079823985695839, + -0.018102891743183136, + -0.004169366788119078, + 0.01383957639336586, + 0.005743812769651413, + -0.01297784224152565, + -0.012388234958052635, + -0.014474538154900074, + 0.04105222597718239, + 0.010010368190705776, + 0.013269406743347645, + 0.022236622869968414, + -0.021744202822446823, + 0.011098873801529408, + -0.028119739145040512, + -0.024659844115376472, + 0.013904368504881859, + -0.017169887199997902, + 0.038952965289354324, + -0.016845926642417908, + 0.002944797510281205, + -0.008882986381649971, + -0.010016847401857376, + 0.018297268077731133, + 0.0003201130894012749, + 0.011539459228515625, + 0.0172605961561203, + -0.01790851540863514, + 0.010023325681686401, + 0.009232863783836365, + 0.003602436510846019, + 0.002259621862322092, + 0.009187509305775166, + -0.015083583071827888, + -0.006718933116644621, + 0.008351691998541355, + -0.0011111831991001964, + -0.006712453905493021, + 0.0067772455513477325, + -0.011584813706576824, + -0.013049113564193249, + -0.021459117531776428, + -0.006343139335513115, + -0.006450045853853226, + -0.016547882929444313, + 0.024595052003860474, + -0.009129196405410767, + 0.003579759271815419, + -0.0034922901540994644, + -0.005870157387107611, + 0.03586886450648308, + -0.002850848948583007, + -0.03327718377113342, + 0.001198652433231473, + 0.02713489904999733, + -0.035998448729515076, + 0.007924064993858337, + 0.013450824655592442, + -0.005274070892482996, + -0.0025430868845432997, + -0.004078657831996679, + 0.011293250136077404, + -0.025152264162898064, + 0.03882338106632233, + -0.012809382751584053, + -0.018219517543911934, + -0.0061455233953893185, + -0.0021786317229270935, + 0.013185176998376846, + -0.022651292383670807, + -0.006424129009246826, + 0.006168200634419918, + 0.016314631327986717, + 0.013684075325727463, + -0.0201373603194952, + 0.017778931185603142, + 0.005695219151675701, + 0.02127770148217678, + 0.008850590325891972, + 0.0348321907222271, + -0.0171958040446043, + 0.015459377318620682, + 0.009213426150381565, + 0.00035554624628275633, + 0.0055040824227035046, + -0.026797981932759285, + -0.016832968220114708, + 0.017675263807177544, + 0.026616564020514488, + -0.026642480865120888, + -0.005497603211551905, + -0.01792147383093834, + -0.0025511858984827995, + -0.012848258018493652, + 0.015329793095588684, + 0.0064597646705806255, + 0.01606842130422592, + 0.010178826749324799, + -0.005325904581695795, + -0.026240769773721695, + 0.007982376962900162, + -0.007898148149251938, + -0.011591292917728424, + 0.026279645040631294, + 0.00803421065211296, + -0.02480238676071167, + 0.0023503305856138468, + -0.02123882621526718, + 0.036672286689281464, + 0.02144615910947323, + -0.024089675396680832, + -0.01606842130422592, + 0.00032396012102253735, + -0.05468446761369705, + -0.01100168563425541, + -0.02361021377146244, + 0.009239342994987965, + 0.00017878548533190042, + 0.018543478101491928, + -0.018258392810821533, + 0.03877154737710953, + 0.007276144344359636, + 0.02775690332055092, + -0.04250356927514076, + -0.028663991019129753, + -0.007146560121327639, + -0.010463912039995193, + 0.014267203398048878, + -0.002944797510281205, + -0.03237009420990944, + -0.007671375758945942, + 0.031437091529369354, + -0.005277310498058796, + 0.021783078089356422, + 0.03154075890779495, + -0.015770379453897476, + -0.026901649311184883, + 0.003974990453571081, + 0.020305819809436798, + 0.02240508235991001, + 0.0022822991013526917, + 0.0008819814538583159, + -0.021575743332505226, + 0.006278347223997116, + 0.007613062858581543, + 0.006362576968967915, + -0.03353635221719742, + -0.009232863783836365, + 0.03859012946486473, + -0.019748609513044357, + -0.011215499602258205, + 0.016470132395625114, + -0.016923677176237106, + 2.413249785604421e-05, + -0.02938966266810894, + 0.0460023358464241, + 0.0013403849443420768, + -0.03249967843294144, + 0.009913180023431778, + 0.015887005254626274, + -0.010010368190705776, + -0.031981341540813446, + 0.006210315506905317, + -0.03859012946486473, + 0.009278218261897564, + 0.0027407025918364525, + -0.004370221868157387, + 0.023752756416797638, + -0.007425166200846434, + 0.022923417389392853, + -0.022042246535420418, + -0.005944668315351009, + -0.03216275945305824, + -0.026383312419056892, + -0.03817545995116234, + 0.03641311824321747, + 0.048801351338624954, + -0.012265129946172237, + 0.003994428087025881, + -0.020409487187862396, + 0.0010779773583635688, + -0.005960866343230009, + -0.024957887828350067, + 0.01267332024872303, + -0.024931970983743668, + 0.002338991966098547, + 0.008286899887025356, + -0.02122586779296398, + -0.0017477648798376322, + -0.009077362716197968, + -0.006599067710340023, + -0.026953481137752533, + -0.006796683184802532, + 0.19188806414604187, + -0.02995983138680458, + -0.012900091707706451, + 0.010898018255829811, + -0.023986008018255234, + -0.019359856843948364, + 0.019942985847592354, + 0.00589283462613821, + 0.0039199176244437695, + 0.02199041284620762, + 0.00490151671692729, + -0.010204743593931198, + 0.007606583647429943, + 0.01794739067554474, + 0.018064016476273537, + -0.017066219821572304, + -0.03913438320159912, + 0.003009589621797204, + -0.003268757602199912, + 0.02710898220539093, + 0.01843981072306633, + -0.014578205533325672, + 0.0005989212659187615, + -0.015563043765723705, + 0.04944927245378494, + 0.016897760331630707, + 0.008273941464722157, + 0.004392899107187986, + 0.040145136415958405, + 0.01266684103757143, + -0.02243099920451641, + 0.0016683946596458554, + 0.0036801870446652174, + -0.0010909356642514467, + -0.010165868327021599, + 0.014435662887990475, + -0.01663859188556671, + -0.021472075954079628, + 0.011254374869167805, + 0.016884801909327507, + 0.007127122487872839, + -0.0068938713520765305, + -0.024517301470041275, + -0.021122200414538383, + 0.026292603462934494, + 0.032085008919239044, + -0.007671375758945942, + 0.013709992170333862, + 0.000754422158934176, + 0.011733835563063622, + -0.00589283462613821, + 0.01293248776346445, + 0.017105095088481903, + 0.03506544232368469, + 0.006952184252440929, + -0.023247377946972847, + 0.015135416761040688, + -0.012025400064885616, + -0.005653104279190302, + -0.003955553285777569, + -0.03988597169518471, + 0.02126474305987358, + -0.02528184838593006, + 0.020888948813080788, + -0.024620968848466873, + 0.014046911150217056, + -0.022729042917490005, + 0.004350784234702587, + -0.00405922019854188, + -0.016262797638773918, + 0.007846314460039139, + -0.0013460542540997267, + -0.03050408512353897, + 0.005005184095352888, + -0.01781780645251274, + -0.032033175230026245, + 0.008850590325891972, + 0.019839318469166756, + 0.027290400117635727, + 0.030115332454442978, + 0.0014877868816256523, + -0.0006584489601664245, + -0.0037903334014117718, + -0.004169366788119078, + -0.006984580308198929, + -0.023364003747701645, + 0.020396528765559196, + -0.00491447513923049, + 0.005180122330784798, + 0.00406245980411768, + -0.02302708476781845, + 0.005594791378825903, + -0.006288066040724516, + 0.005309706553816795, + 0.0070040179416537285, + -0.019709734246134758, + -0.006537515204399824, + -0.00592199107632041, + -0.02257354184985161, + -0.00859142281115055, + -0.020577946677803993, + 0.06556952744722366, + 0.04849034920334816, + -0.013360115699470043, + -0.00979007501155138, + 0.002632176037877798, + 0.005679021123796701, + 0.021199950948357582, + -0.0022855387069284916, + -0.011403395794332027, + -0.018284309655427933, + -0.02941557951271534, + 0.015550085343420506, + -0.029208244755864143, + 0.001133050536736846, + 0.010211222805082798, + -0.0030630428809672594, + 0.012498381547629833, + -0.008772839792072773, + -0.01181806530803442, + -0.010839705355465412, + 0.011448750272393227, + 0.024400675669312477, + -0.007315019611269236, + 0.012621486559510231, + -0.023817548528313637, + -0.05369963124394417, + 0.02760140225291252, + -0.003845406696200371, + -0.009556823410093784, + 0.007418686989694834, + -0.016366465017199516, + 0.00980303343385458, + 0.003132694400846958, + 0.00604833522811532, + -0.007729688659310341, + -0.005947907920926809, + -0.02819748967885971, + -0.0035473632160574198, + 0.00979007501155138, + 0.009615136310458183, + -0.017027344554662704, + 0.007353894878178835, + 0.013735909014940262, + 0.01298432145267725, + -0.004574317019432783, + 0.004729817621409893, + -0.004101335071027279, + -0.01662563346326351, + -0.015446418896317482, + -0.024659844115376472, + -0.00691978819668293, + -0.004781651310622692, + -0.03812362626194954, + 0.026370353996753693, + 0.003965272102504969, + -0.009472593665122986, + -0.028612157329916954, + 0.003719062078744173, + 0.011059998534619808, + -0.017610471695661545, + -0.008461838588118553, + -0.010178826749324799, + -0.026098227128386497, + -0.005484644789248705, + -0.00981599185615778, + -0.16255022585391998, + 0.00782687682658434, + 0.02933782897889614, + -0.018867436796426773, + 0.007716730237007141, + 0.006424129009246826, + 0.00860438123345375, + 0.01551121100783348, + -0.020655697211623192, + -0.00859142281115055, + 0.03112608753144741, + -0.012537256814539433, + -0.03270701318979263, + -0.004781651310622692, + -0.021666452288627625, + -0.0044998060911893845, + -0.013904368504881859, + 0.03047816827893257, + 0.01792147383093834, + 0.01562783680856228, + 0.002121938858181238, + -0.023221461102366447, + 0.022910458967089653, + 0.0008281230693683028, + -0.0027261243667453527, + 0.008422963321208954, + -0.026383312419056892, + 0.020305819809436798, + -0.00890890322625637, + -0.00046245308476500213, + -0.017740055918693542, + 0.008338733576238155, + 0.01846572756767273, + 0.011610730551183224, + 0.0034210188314318657, + -0.0032541793771088123, + -0.003265517996624112, + -0.018543478101491928, + -0.0025301284622401, + 0.033225350081920624, + 0.010211222805082798, + 0.02716081589460373, + -0.016003629192709923, + 0.023778673261404037, + -0.01608137972652912, + 0.02430996671319008, + 0.005147726275026798, + -0.01794739067554474, + -0.007327978033572435, + -0.006699495483189821, + 9.754236816661432e-05, + -0.0202021524310112, + -0.011993004009127617, + 0.0027407025918364525, + -0.0051898411475121975, + 0.014008035883307457, + -0.017986265942454338, + 0.02411559224128723, + -0.0037903334014117718, + 0.0049825068563222885, + -0.0014359531924128532, + -0.020124401897192, + 0.0076389797031879425, + 0.004315149039030075, + 0.008999612182378769, + -0.015848129987716675, + 0.002957755932584405, + 0.02659064717590809, + -0.019320981577038765, + -0.005293508525937796, + 0.0009095180430449545, + -0.03387327119708061, + 0.008772839792072773, + -0.016858885064721107, + 0.013774784281849861, + 0.0005689549725502729, + -0.008260983042418957, + -0.007373332511633635, + -0.00019042780331801623, + -0.001452961121685803, + -0.018089933320879936, + 0.03804587572813034, + 0.008675651624798775, + -0.0010820267489179969, + -0.02085007354617119, + -0.008656213991343975, + -0.007289102766662836, + 0.025048596784472466, + -0.01910068839788437, + -0.011941170319914818, + 0.0065148379653692245, + -0.008377608843147755, + -0.008131398819386959, + -0.026059351861476898, + -0.007178956177085638, + -0.0036186345387250185, + -0.006861475296318531, + 0.013619283214211464, + -0.025022679939866066, + -0.015407543629407883, + 0.022068163380026817, + -0.02307891845703125, + -0.014500454999506474, + 0.01301671750843525, + -0.0011095633963122964, + 0.008792277425527573, + -0.02762731909751892, + 0.010230660438537598, + 0.03739795461297035, + -0.0035635612439364195, + -0.017688222229480743, + -0.003822729457169771, + 0.01386549323797226, + -0.001313658314757049, + 0.0054522487334907055, + -0.005630427040159702, + -0.020500196143984795, + -0.018089933320879936, + 0.01271219551563263, + -0.006731891538947821, + 0.05877932533621788, + -0.019359856843948364, + 0.0036672286223620176, + 0.008889465592801571, + -0.02368796430528164, + -0.041829731315374374, + -0.0862511396408081, + 0.0074705202132463455, + 0.027368150651454926, + -0.00034441010211594403, + 0.017079178243875504, + 0.005980303976684809, + -0.0011225218186154962, + -0.009064404293894768, + -0.0026629522908478975, + 0.026072310283780098, + -0.02193857915699482, + -0.04167423024773598, + -0.030167166143655777, + -0.01178566925227642, + -0.0036866662558168173, + -0.012304005213081837, + 0.008863548748195171, + -0.020383570343255997, + -0.028508489951491356, + 0.03053000196814537, + -0.003218543715775013, + -0.0034469356760382652, + -0.008241545408964157, + 0.006226513534784317, + -0.014228328131139278, + -0.005429571494460106, + -0.03734612092375755, + 0.02192562073469162, + 0.007846314460039139, + -0.011085915379226208, + 0.018828561529517174, + -0.021057408303022385, + -0.004072178620845079, + -0.0012934107799082994, + -0.015433460474014282, + -0.01728651113808155, + -0.016470132395625114, + -1.323680771747604e-05, + 0.020409487187862396, + -0.0028411303646862507, + -0.014902165159583092, + 0.011228458024561405, + 0.0065763904713094234, + -0.01552416943013668, + -0.0019162241369485855, + -0.026746148243546486, + 0.007606583647429943, + 0.021005574613809586, + 0.012589090503752232, + -0.005649864673614502, + -0.03848646208643913, + -0.03742387145757675, + -0.01186341978609562, + 0.014772581867873669, + 0.011377479881048203, + -0.002711546141654253, + -0.005870157387107611, + -0.0010301931761205196, + -0.026642480865120888, + 0.014111703261733055, + -0.019826360046863556, + 0.02199041284620762, + -0.030167166143655777, + 0.022016329690814018, + -0.001067448640242219, + -0.011701439507305622, + -0.02257354184985161, + -0.007457561790943146, + 0.010813788510859013, + -0.01265388261526823, + -0.02368796430528164, + 0.0049857464618980885, + -0.0017931192414835095, + 0.009569781832396984, + -0.017079178243875504, + 0.0055656349286437035, + -0.027782820165157318, + -0.01210314966738224, + 0.017429053783416748, + -0.005008423700928688, + -0.005805365275591612, + -0.031955424696207047, + 0.019774526357650757, + -0.025515099987387657, + 0.03273293003439903, + 0.011461708694696426, + -0.009044966660439968, + -0.018854478374123573, + 0.02889724262058735, + -0.012511339969933033, + -0.011105353012681007, + 0.01785668171942234, + 0.02477646991610527, + -0.002768239239230752, + -0.009990930557250977, + 0.01619800552725792, + 0.007937023416161537, + -0.014422704465687275, + 0.014098744839429855, + 0.023234419524669647, + -0.007885189726948738, + -0.02070753090083599, + -0.04317740350961685, + 0.021614618599414825, + 0.014319037087261677, + 0.005461967550218105, + -0.006751328706741333, + 0.0021122200414538383, + 0.011183103546500206, + 0.01836206018924713, + 0.02656473033130169, + 0.0072631859220564365, + -0.010515745729207993, + 0.015588960610330105, + -0.02070753090083599, + -0.0074705202132463455, + -0.03356226906180382, + -0.024374758824706078, + -0.005436050705611706, + 0.02420629933476448, + -0.007366853300482035, + -0.009304135106503963, + -0.013671116903424263, + 0.006965142674744129, + -0.005257872864603996, + 0.018206559121608734, + -0.012090192176401615, + -0.002066865563392639, + -0.0021462358999997377, + -0.011092394590377808, + -0.009187509305775166, + -0.016962552443146706, + 0.009070883505046368, + 0.009990930557250977, + -0.013437866233289242, + 0.015290917828679085, + -0.007049372419714928, + -0.02879357524216175, + 0.01565375365316868, + 0.04219256713986397, + 0.03063366934657097, + 0.03353635221719742, + -0.003453414887189865, + -0.02476351149380207, + 0.00606129365041852, + -0.034935858100652695, + 0.005128288641571999, + 0.007541791535913944, + 0.013172218576073647, + 0.008675651624798775, + 0.015550085343420506, + -0.015122458338737488, + 0.04325515404343605, + 0.008429442532360554, + 0.006275107618421316, + 0.007587146013975143, + -0.0030727616976946592, + -0.005474925972521305, + 0.011545938439667225, + 0.012018920853734016, + 0.031955424696207047, + -0.02824932336807251, + 0.05020086094737053, + 0.0009718803339637816, + 0.004739536438137293, + -0.019930027425289154, + 0.013930285349488258, + -0.014837373979389668, + -0.01622392237186432, + -0.01293896697461605, + -0.008371129631996155, + -0.009880783967673779, + -0.02359725534915924, + -0.008306337520480156, + 0.009919659234583378, + 0.03179992362856865, + -0.006602307315915823, + -0.01063237152993679, + -0.002329273382201791, + 0.0014197552809491754, + -0.0023535701911896467, + 0.009323572739958763, + 0.0259038507938385, + 0.008273941464722157, + 0.018724894151091576, + -0.009271739050745964, + 0.03794220834970474, + 0.013580407947301865, + -0.01960606686770916, + -0.014215369708836079, + -0.011118311434984207, + 0.00693922583013773, + 0.007574187591671944, + 0.020863031968474388, + -4.750571315526031e-05, + 0.005954387132078409, + 0.02822340652346611, + 0.00892186164855957, + 0.007988856174051762, + -0.008235066197812557, + 0.025074513629078865, + 0.045820917934179306, + 0.009608657099306583, + -0.008669172413647175, + -0.012511339969933033, + -0.025618765503168106, + -0.0050699757412076, + 0.019968902692198753, + -0.011377479881048203, + -0.036646369844675064, + 0.006991059519350529, + 0.009887263178825378, + -0.01622392237186432, + 0.022094080224633217, + 0.0038907609414309263, + 0.000694489513989538, + -0.0042373985052108765, + 0.011293250136077404, + -0.01907477155327797, + -0.018064016476273537, + -0.028508489951491356, + 0.042399901896715164, + 0.025048596784472466, + 0.006952184252440929, + 0.006816120818257332, + 0.010548141784965992, + 0.0343656912446022, + -0.0023001169320195913, + 0.02069457247853279, + -0.00693922583013773, + 0.019930027425289154, + -0.025605807080864906, + 0.005944668315351009, + 0.010347286239266396, + -0.035454194992780685, + -0.004768692888319492, + -0.016612675040960312, + 0.002633795840665698, + 0.03190359100699425, + 0.013386032544076443, + 0.014306078664958477, + 0.11890631914138794, + 0.02427109144628048, + -0.006803162395954132, + 0.029830247163772583, + 0.016936635598540306, + 0.028093822300434113, + -0.0019648182205855846, + -0.0017785410163924098, + 0.011396917514503002, + -0.05712064728140831, + 0.016534924507141113, + -0.012569652870297432, + 0.01300375908613205, + -0.03822729364037514, + -0.018310226500034332, + 0.02244395762681961, + 0.0018984063062816858, + 0.009388363920152187, + -0.01177919004112482, + -0.011189582757651806, + 0.052118703722953796, + -0.0004191234183963388, + 0.000438965973444283, + 0.03128159046173096, + -0.0348062738776207, + -0.02192562073469162, + 0.019761567935347557, + 0.006437087431550026, + 0.009019049815833569, + -0.010159389115869999, + -0.0053971754387021065, + 0.008578464388847351, + -0.04325515404343605, + -0.019968902692198753, + 0.019489441066980362, + -0.047531429678201675, + 0.0014659195439890027, + -0.024037841707468033, + 0.02705714851617813, + 0.00605805404484272, + 0.03003758192062378, + 0.022171830758452415, + -0.0013962681405246258, + -0.02355838008224964, + 0.00863029807806015, + 0.008656213991343975, + -0.0036056761164218187, + 0.0020441883243620396, + -0.01842685230076313 + ], + "metadata": { + "source": "Thesis_Verladegeraeusche_in_Speditionen.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 41, + "has_images": true, + "image_count": 51, + "coordinates": "CoordinatesMetadata(points=((204.16666666666666, 189.02777777777797), (204.16666666666666, 642.3611111111111), (936.1666666666666, 642.3611111111111), (936.1666666666666, 189.02777777777797)), system=)", + "links": [], + "last_modified": "2025-05-05T22:59:16", + "_known_field_names": "frozenset({'cc_recipient', 'link_texts', 'url', 'filetype', 'category_depth', 'page_number', 'filename', 'orig_elements', 'detection_origin', 'email_message_id', 'page_name', 'coordinates', 'table_as_cells', 'link_start_indexes', 'sent_to', 'bcc_recipient', 'languages', 'last_modified', 'link_urls', 'file_directory', 'subject', 'data_source', 'detection_class_prob', 'image_base64', 'text_as_html', 'attached_to_filename', 'key_value_pairs', 'signature', 'sent_from', 'header_footer_type', 'parent_id', 'links', 'emphasized_text_contents', 'emphasized_text_tags', 'image_mime_type', 'is_continuation', 'image_path'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "Thesis_Verladegeraeusche_in_Speditionen.pdf", + "detection_class_prob": 0.2568194270133972, + "parent_id": "d45475a34bc527cde6987546fa6dd2f5", + "text_as_html": "
Flurf\u00f6rderger\u00e4t |Anzahl Einzelereignisse ElMax-PegelSchallleistungspegel
LAFmaxLWA,5sLWAmaxLWA,1hKlLWAT,1h
[dB(A)][dB(A)][dB(A)][dB(A)][dB(A)][dB(A)]
Gabelstapler29769,3100,7108,872,15,777,8
STABW [dB]6,54,96,54,92,9-
Gabelhubwagen9968,6100,7108,172,16,279,5
STABW [dB]6,45,16,4512,7-
", + "id": "5ba44de7-0ff3-4c0c-b018-67e92171e1c2", + "processing_timestamp": "2025-05-06T14:18:19.298665", + "chunk_number": 7, + "total_chunks": 49, + "chunking_strategy": "hybrid", + "word_count": 668 + } +} \ No newline at end of file diff --git a/data/processed/85fd305f-83de-70b0-47e8-2dc000000008.json b/data/processed/85fd305f-83de-70b0-47e8-2dc000000008.json new file mode 100644 index 0000000000000000000000000000000000000000..fc089c2fe9e01a116b1282418559df4ff76cb101 --- /dev/null +++ b/data/processed/85fd305f-83de-70b0-47e8-2dc000000008.json @@ -0,0 +1,1570 @@ +{ + "id": "85fd305f-83de-70b0-47e8-2dc000000008", + "content": "[17]\n\n## Charakterisierung der Ger\u00e4uschemissionen\n\nUm die Emissionen einer Quelle unabh\u00e4ngig von Umgebungseinfl\u00fcssen, Entfernung und Fremdger\u00e4uschen zu definieren, wird der Schallleistungspegel LWA ben\u00f6tigt. Dieser be- schreibt die Schallenergie, die von einer Quelle pro Zeiteinheit in die gesamte Luft gleich- f\u00f6rmig abgestrahlt wird. Der Schallleistungspegel gibt somit Aufschluss \u00fcber die Ursache einer Ger\u00e4uschquelle. Hingegen beschreibt der Schalldruckpegel die Schallenergie, die an einem bestimmten Ort in der Umgebung \u00fcbertragen wird. Der Schalldruckpegel gibt somit Aufschluss \u00fcber die Wirkung einer Ger\u00e4uschquelle. [23, 24]\nDie DIN 3740 [25] gibt Auskunft \u00fcber verschiedene Verfahren zur Bestimmung von Schalleistungspegel f\u00fcr unterschiedliche Maschinen, Ger\u00e4te und Produkte. Sie stellt Richtlinien vor, um festzulegen, welche Verfahren unter bestimmten Bedingungen und Anforderungen an die Genauigkeit geeignet sind. Um den Schallleistungspegel zu be- stimmen, werden in der Regel unterschiedliche Verfahren angewendet: Die Messungen von Schalldruck, Schallintensit\u00e4t und Schwingschnelle. Die Abbildung 2 gibt einen \u00dcber- blick \u00fcber die Grundnormen f\u00fcr die Verfahren zur Bestimmung des Luftschallleistungs- pegel, entweder A-bewertet oder in Frequenzb\u00e4ndern beschrieben. Dort enthalten sind\n12\n2 Grundlagen\nf\u00fcr Schalldruckpegelmessungen die ISO 3741 bis ISO 3747 [26\u201331], Schallintensit\u00e4tsmes- sungen die ISO 9614-1 bis ISO 9614-3 [32\u201334] und f\u00fcr Schwingungsmessungen die\nISO/TS 7849-1 und ISO/TS 7849-2 [35, 36]. [IMAGE: Bestimmung des Schallleistungspegels ISO 3740 \u2014z]\n\nAbbildung 2: \u00dcberblick \u00fcber die Grundnormen zur Bestimmung des Schallleistungspegels\nIn dieser Thesis wird der Schallleistungspegel aus der Messung des Schalldruckpegels (siehe Abbildung 2 gr\u00fcner Kasten) ermittelt. Um den Schalldruckpegel zu bestimmen gibt es zwei Methoden zur Messung: die direkte und die indirekte Methode. Die direkte Methode findet Anwendung in einer Freifeld-Umgebung oder in einem diffusen Schall- feld. Hierbei wird die gesuchte Messgr\u00f6\u00dfe, der Schallleistungspegel, durch den Vergleich mit einem Bezugswert mithilfe einer anderen Messgr\u00f6\u00dfe, dem Schalldruckpegel, ermit- telt. Hingegen wird die Indirekte Methode nur im diffusen Schallfeld eingesetzt und die gesuchte Messgr\u00f6\u00dfe aus einer anderen Messgr\u00f6\u00dfe ermittelt. [37, 23] Ein diffuses Schall- feld enth\u00e4lt Schall aus allen Richtungen und entsteht oft in halligen R\u00e4umen, in denen der Direktschall zus\u00e4tzlich Reflexionen an den W\u00e4nden erf\u00e4hrt. In einem Freifeld erf\u00e4hrt der Schall keine zus\u00e4tzlichen Reflexionen. Die Schallleistung wird in Anlehnung an das H\u00fcllfl\u00e4chen-Verfahren indirekt aus dem Schalldruck p, der Schallschnelle v\u0305 und der Messfl\u00e4che S berechnet, welche in der Normreihe DIN EN ISO 3740 bis 3747 [25, 38, 27, 28, 39\u201341] (siehe Abbildung 2 roter und gr\u00fcner Kasten) beschrieben wird. Dabei wird der Schalldruckpegel von Messpunkten berechnet, die auf einer gedachten H\u00fcllfl\u00e4che\n13\n2 Grundlagen\nangeordneten sind, auf die die abgestrahlte Schallleistung der Quelle trifft. [42] Die Messfl\u00e4che ist so zu dimensionieren, dass alle Messpunkte im Fernfeld liegen, folglich zwischen Schalldruck und Schallschnelle kein Phasenunterschied besteht. Im Fernfeld ist die Schallpegelverteilung gleichbleibend auf der gesamten Messfl\u00e4che. Die H\u00fcllfl\u00e4che wird in n-Teilfl\u00e4chen Si zerlegt, auf denen ein Schalldruck-Effektivwert gemessen wird. [21, 43] Der Schalldruckpegel beschreibt die Druckschwankungen des Schalls in einem Medium wie Luft. Er h\u00e4ngt mit dem physikalischen Schalldruck zusammen und wird als Verh\u00e4ltnis von Kraft zu Fl\u00e4che definiert, auf die die Kraft senkrecht wirkt (siehe Formel 5). [44]\n\ud835\udc5d = \ud835\udc3c \ud835\udc63\n\n## Formel 5: Schalldruck [Pa = N/m\u00b2]\n\nMit I: Schallintensit\u00e4t [W/m\u00b2], v: Schallschnelle [m/s]\nDie Schallschnelle beschreibt die Geschwindigkeit, mit der sich ein Teilchen wie z.B.", + "embedding": [ + 0.0299252737313509, + 0.02765054814517498, + 0.005955357104539871, + -0.030986811965703964, + -0.002187843434512615, + 0.0005066792364232242, + -0.012005493976175785, + -0.018930768594145775, + -0.020687362179160118, + -0.03690109774470329, + 0.013559889979660511, + 0.03465164825320244, + -0.015834614634513855, + 0.00616703275591135, + 0.004739010706543922, + 0.011481043882668018, + 0.035384614020586014, + -0.01043214276432991, + 0.005686813034117222, + 0.0025021976325660944, + 0.004919093102216721, + 0.0010038804030045867, + -0.007032691966742277, + 0.008012088015675545, + -0.008043681271374226, + 0.01689615286886692, + 0.03558681160211563, + -0.027246152982115746, + -0.026361538097262383, + 0.001109718345105648, + 0.012555219233036041, + -0.0027423074934631586, + -0.02775164693593979, + 0.012081318534910679, + -0.014330768957734108, + -0.017199449241161346, + -0.015265933237969875, + -0.006258653476834297, + 0.017578570172190666, + -0.002284203190356493, + 0.002533791121095419, + 0.015784066170454025, + 0.010609065182507038, + -0.012599450536072254, + 0.0006263392861001194, + 0.009111538529396057, + 0.005127609707415104, + 0.00046126372762955725, + -0.01347142830491066, + 0.008195329457521439, + 0.012965933419764042, + 0.0037438184954226017, + -0.027574723586440086, + -0.00035641310387291014, + -0.0070895603857934475, + -0.018766483291983604, + -0.0030866756569594145, + 0.0017929257592186332, + 0.009478021413087845, + -0.010924999602138996, + -0.03323626145720482, + -0.0013229738688096404, + -0.018817031756043434, + 0.0065271975472569466, + -0.01997966878116131, + -0.014495054259896278, + -0.014722527004778385, + 0.012795329093933105, + -0.017414284870028496, + -0.007557142525911331, + 0.024946153163909912, + 0.03068351559340954, + 0.00904835108667612, + 0.022949449717998505, + 0.014166482724249363, + 0.0027328296564519405, + 0.012409890070557594, + 5.578210675594164e-06, + 0.0026649036444723606, + 0.009383241645991802, + 0.03091098740696907, + -0.03141648322343826, + -0.018109340220689774, + 0.03470219671726227, + 0.006672527175396681, + -0.01132307667285204, + -0.015935713425278664, + 0.02537582255899906, + -0.025552745908498764, + 0.0025195740163326263, + 0.004154532682150602, + 0.020611537620425224, + 0.015885164961218834, + 0.00019706386956386268, + 0.02684175781905651, + -0.003118269145488739, + 0.016112636774778366, + 0.013926372863352299, + -0.0010702266590669751, + -0.03492967039346695, + -0.011828570626676083, + 0.0008435439085587859, + 0.002486401004716754, + -0.005683653522282839, + -0.0294956024736166, + -0.005674175452440977, + 0.0019035027362406254, + 0.026058241724967957, + 0.020662087947130203, + -0.028282416984438896, + -0.016226373612880707, + 0.007948900572955608, + 0.0073928567580878735, + -0.013534614816308022, + 0.030178021639585495, + -0.015670329332351685, + 0.023606592789292336, + -0.012593131512403488, + -0.015670329332351685, + -0.01404010970145464, + 0.02916703186929226, + 0.006742032710462809, + 0.01737637259066105, + -0.0065587908029556274, + 0.03417142853140831, + -0.0005528845940716565, + -0.001114457380026579, + -0.016542308032512665, + -0.013610439375042915, + -0.01684560440480709, + -0.029950547963380814, + -0.008403846062719822, + 0.03341318666934967, + 0.00015826321032363921, + 0.008075274527072906, + 0.008018406108021736, + -0.008700824342668056, + -0.013787361793220043, + -0.024895602837204933, + -0.03250329568982124, + 0.02119285613298416, + 0.013547251932322979, + -0.03449999913573265, + -0.03482856974005699, + -0.009623351506888866, + 0.022191207855939865, + 0.015682967379689217, + 0.001553605659864843, + -0.00566153833642602, + 0.013041757978498936, + -0.0246681310236454, + -0.01441923063248396, + 0.008346977643668652, + 0.005219230428338051, + -0.027776923030614853, + 0.003345741657540202, + -0.005152884405106306, + 0.043270327150821686, + 0.003298351541161537, + -0.0027280906215310097, + 0.0007839113823138177, + 0.00654615368694067, + -0.004729532636702061, + 0.00030428398167714477, + 0.015291208401322365, + 0.026007691398262978, + -0.006119642872363329, + -0.003070879029110074, + -0.00645137345418334, + -0.00041821770719252527, + -0.009876098483800888, + 0.017313186079263687, + -0.015177471563220024, + 0.027524175122380257, + -0.01385054923593998, + 0.010394230484962463, + 0.005494093056768179, + -0.00702005485072732, + -0.018715932965278625, + -0.027448350563645363, + -0.01912032812833786, + 0.0013727335026487708, + -0.001157108461484313, + 0.01531648263335228, + -0.021331867203116417, + 0.005949038080871105, + 0.010305768810212612, + 0.020687362179160118, + -0.0053266482427716255, + -0.01580934040248394, + 0.009553845971822739, + 0.022406043484807014, + 0.006400824058800936, + -0.028383515775203705, + -0.617916464805603, + -0.017123626545071602, + -0.008422802202403545, + 0.0051118130795657635, + -0.004947527311742306, + 0.024807142093777657, + 0.005004395265132189, + 0.002004601527005434, + 0.005655219778418541, + 0.0497659333050251, + 0.001630219747312367, + -0.015076372772455215, + -0.009661263786256313, + 0.002378983423113823, + -0.010192032903432846, + -0.013281867839396, + -0.016757141798734665, + -0.020055493339896202, + 0.023935163393616676, + -0.007323351223021746, + -0.013041757978498936, + 0.018665384501218796, + 0.012548900209367275, + 0.0025843405164778233, + -0.0036364009138196707, + 0.015202746726572514, + 0.028914283961057663, + -0.009895054623484612, + 0.026386812329292297, + 0.007474999874830246, + -0.023808790370821953, + 0.01072912011295557, + -0.03548571467399597, + 0.013433516025543213, + 0.03086043894290924, + -0.006053296383470297, + 0.00518763717263937, + 0.002808653749525547, + 0.015139560215175152, + 0.0027849588077515364, + -0.01160109881311655, + -0.008732417598366737, + -0.0015109545784071088, + -0.009389559738337994, + 0.011803296394646168, + -0.005250824149698019, + 0.04792087897658348, + -0.0021562499459832907, + 0.008195329457521439, + -0.02570439502596855, + -0.0050770603120327, + 0.0019129806896671653, + 0.031062636524438858, + 0.025009339675307274, + 0.03520769253373146, + -0.014608791097998619, + 0.035182416439056396, + -0.027574723586440086, + -0.02590659260749817, + 0.02840879000723362, + 0.010804944671690464, + 0.025931866839528084, + 0.016099998727440834, + -0.011266208253800869, + -0.007784615270793438, + 0.022633515298366547, + -0.014709889888763428, + -0.026639560237526894, + 0.003841758007183671, + -0.017717581242322922, + -0.009496977552771568, + 0.02358131855726242, + 0.005440384615212679, + -0.030430767685174942, + 0.029293404892086983, + 0.013345054350793362, + 0.015101647935807705, + -0.02401098795235157, + 0.004783241543918848, + 0.0052824174053967, + -0.011689560487866402, + -0.008877746760845184, + -0.023619230836629868, + 0.006634615361690521, + 0.012649999931454659, + -0.03576373681426048, + -0.004299862310290337, + 0.026412086561322212, + 0.017667032778263092, + 0.030784614384174347, + 0.04031318426132202, + 0.04102087765932083, + -0.01344615314155817, + -0.03020329587161541, + -0.029596703127026558, + 0.025578022003173828, + -0.019145604223012924, + 0.010261538438498974, + 0.013142856769263744, + -0.033767033368349075, + -0.01786923035979271, + -0.004214560147374868, + 0.014646702446043491, + -0.02193845994770527, + 0.019208790734410286, + -0.008745054714381695, + -0.0078478017821908, + -0.002469024620950222, + 0.02481978014111519, + -0.034525275230407715, + 0.019790109246969223, + -0.018892856314778328, + -0.01999230682849884, + 0.0024500684812664986, + -0.008700824342668056, + -0.028282416984438896, + 0.06308571249246597, + 0.011266208253800869, + 0.028156042098999023, + -0.01874120905995369, + 0.018058789893984795, + 0.00790467020124197, + 0.0485527440905571, + -0.022772526368498802, + -0.022684065625071526, + 0.03394395485520363, + 0.013913735747337341, + 0.020687362179160118, + 0.00136799446772784, + -0.012251922860741615, + 0.03101208619773388, + 0.006950549315661192, + 0.013951648026704788, + -0.007057966664433479, + 0.0016491757705807686, + 0.016441207379102707, + 0.018918130546808243, + -0.019423626363277435, + 0.012510988861322403, + -0.026791207492351532, + -0.03144175559282303, + -0.008700824342668056, + 0.008764010854065418, + -0.03687582165002823, + -0.020624175667762756, + -0.03786153718829155, + -0.022418679669499397, + -0.0005366929690353572, + 0.00013940590724814683, + -0.004776922985911369, + 0.001875068643130362, + -0.026589009910821915, + 0.004811675753444433, + 0.03950439393520355, + 0.005304532591253519, + 0.007734065875411034, + -0.017338460311293602, + -0.017970329150557518, + -0.020447252318263054, + -0.020573625341057777, + 0.016011537984013557, + 0.0006291036843322217, + -0.04802197590470314, + -0.013142856769263744, + 0.0017060438403859735, + -0.03369120880961418, + 0.01842527464032173, + -0.000933585106395185, + -0.018185164779424667, + -0.042082417756319046, + -0.005364560056477785, + 0.03513186797499657, + -0.000138714793138206, + 0.02020714245736599, + 0.0012747938744723797, + 0.004157692193984985, + -0.02178681269288063, + -0.013863186351954937, + -0.008429120294749737, + -0.017806043848395348, + 0.023783516138792038, + 0.009004120714962482, + -0.010836537927389145, + 0.009035713970661163, + 0.017629120498895645, + 0.003449999960139394, + 0.007866757921874523, + 0.01793241687119007, + -0.014823625795543194, + 0.022684065625071526, + -0.0029618816915899515, + 0.021256042644381523, + -0.01781868003308773, + 0.01847582310438156, + -0.03899889811873436, + -0.002301579574123025, + 0.004081868100911379, + -0.015089010819792747, + -0.008757691830396652, + 0.016542308032512665, + 0.02646263688802719, + -0.009471703320741653, + 0.0232021976262331, + -0.030784614384174347, + 0.027347251772880554, + -0.011657966300845146, + 0.005152884405106306, + -0.010179394856095314, + 0.04943736270070076, + 0.040818680077791214, + 0.020775822922587395, + -0.010583790950477123, + -0.025881318375468254, + -0.011613735929131508, + 0.006302884314209223, + 0.03980769217014313, + -0.011942307464778423, + 0.010773351415991783, + 0.015215383842587471, + -0.013749450445175171, + -0.0022826234344393015, + 0.0009098901064135134, + 0.03492967039346695, + 0.008207966573536396, + -0.010198350995779037, + -0.0013269230257719755, + -0.0018039834685623646, + 0.0064703295938670635, + -0.0015646633692085743, + -0.018602197989821434, + -0.01113351620733738, + -0.01755329594016075, + 0.02422582358121872, + 0.008334340527653694, + -0.01706043817102909, + 0.034853845834732056, + 0.015404944308102131, + -0.0019587911665439606, + 0.051914282143116, + 0.0045494502410292625, + 0.020510438829660416, + 0.007664560340344906, + -0.008328021503984928, + 0.00022747252660337836, + 0.010691208764910698, + -0.022633515298366547, + 0.0021957417484372854, + 0.020978020504117012, + -0.017287911847233772, + -0.011613735929131508, + -0.019044505432248116, + 0.011101922951638699, + -0.02114230766892433, + 0.0013482485665008426, + 0.018109340220689774, + -0.003295192262157798, + 0.023619230836629868, + -0.005626785568892956, + -0.0040249996818602085, + 0.012024450115859509, + 0.016264285892248154, + -0.003320466959849, + 0.02498406544327736, + -0.01431813184171915, + 0.006824175361543894, + 0.003459477797150612, + -0.029369229450821877, + -0.01721208728849888, + -0.008189010433852673, + -0.0027217718306928873, + 0.0028449862729758024, + 0.008290109224617481, + 0.0018608515383675694, + 0.0015930974623188376, + 0.020055493339896202, + -0.007386538200080395, + -0.009989834390580654, + 0.015607141889631748, + 0.030329668894410133, + 0.002121497178450227, + -0.017363736405968666, + -0.015114285051822662, + -0.0022699860855937004, + 0.02231758087873459, + -0.017667032778263092, + -0.02167307585477829, + -0.01977747119963169, + 0.004407280124723911, + -0.026765933260321617, + 0.0018482141895219684, + -0.02661428414285183, + 0.011885439045727253, + 0.007771977689117193, + -0.006811538245528936, + -0.005206593312323093, + 0.0023631867952644825, + 0.00894093420356512, + 0.01775549352169037, + -0.0005781592917628586, + 0.018665384501218796, + -0.0005489354371093214, + -0.007942582480609417, + -0.009793955832719803, + -0.007993131875991821, + 0.02390988916158676, + 0.003690109821036458, + -0.0230252742767334, + -0.02325274609029293, + 0.010868131183087826, + -0.020674724131822586, + -0.015354394912719727, + -0.01439395546913147, + -0.006179670337587595, + 0.006028021685779095, + 0.006950549315661192, + -0.016769779846072197, + 0.02313901111483574, + -0.00018946170166600496, + 0.030809888616204262, + -0.0037912086118012667, + 0.005828983150422573, + -0.02422582358121872, + 0.006596703082323074, + 0.0074560437351465225, + 0.004426236264407635, + 0.013623076491057873, + 0.021812086924910545, + 0.02939450368285179, + -0.018185164779424667, + -0.02541373483836651, + -0.00974972452968359, + -0.030986811965703964, + 0.01846318691968918, + 0.020952746272087097, + 0.0029255494009703398, + 0.003273076843470335, + 0.03048131801187992, + 0.0054214284755289555, + -0.00452417554333806, + -0.03151758015155792, + 0.03614285588264465, + -0.01393901091068983, + 0.014621428214013577, + 0.010147801600396633, + -0.008290109224617481, + 0.007007417269051075, + 0.00904835108667612, + 0.044458240270614624, + -0.019587911665439606, + -0.009357966482639313, + 0.010015109553933144, + 0.012409890070557594, + 0.00914944987744093, + -0.02027032896876335, + -0.011594779789447784, + 0.03063296526670456, + 0.0034942305646836758, + 0.0043346150778234005, + -0.0280296690762043, + -0.014836262911558151, + -0.0015156936133280396, + 0.0013664148282259703, + 0.017629120498895645, + -0.023998349905014038, + -0.004325137007981539, + 0.03184615448117256, + 0.010463736020028591, + -0.009604395367205143, + 0.0028370877262204885, + -0.011474724858999252, + 0.006691483315080404, + 0.014558241702616215, + 0.004359889775514603, + 0.011992856860160828, + 0.009515933692455292, + -0.012839560396969318, + -0.007557142525911331, + -0.00011028072913177311, + -0.010678570717573166, + -0.028585713356733322, + 0.008049999363720417, + -0.025009339675307274, + -0.006088049151003361, + -0.0027517855633050203, + -0.02129395492374897, + -0.0217741746455431, + 0.01954999938607216, + -0.0046505494974553585, + -0.029293404892086983, + -0.0018877059919759631, + 0.002908173017203808, + 0.003247802145779133, + -0.010672252625226974, + 0.007595054805278778, + 0.006163873244076967, + -0.012157142162322998, + -0.04324505478143692, + 0.0012961194152012467, + 0.010653296485543251, + -0.022229120135307312, + 0.01917087845504284, + -0.0037406592164188623, + -0.025236811488866806, + -0.008700824342668056, + -0.016378020867705345, + 0.0006871565710753202, + 0.0027454670052975416, + -0.019916482269763947, + -0.009901373647153378, + 0.02487032860517502, + -0.012852197512984276, + 0.008909340016543865, + 0.008460713550448418, + -0.009256867691874504, + -0.009326373226940632, + 0.02444065921008587, + 0.006176510825753212, + 0.0031151098664849997, + -0.0096170324832201, + 0.028863735496997833, + 0.012631043791770935, + 0.0013585163978859782, + 0.013420878909528255, + -0.01110824104398489, + 0.02684175781905651, + -0.03662307560443878, + 0.010646977461874485, + 0.013357691466808319, + 0.037684615701436996, + 0.008467032574117184, + 0.006982142571359873, + 0.011101922951638699, + -0.0026254120748490095, + 0.0029255494009703398, + 0.008688186295330524, + -0.016378020867705345, + 0.014217032119631767, + 0.0008751373388804495, + -0.007797252386808395, + 0.0012052884558215737, + 0.008568131364881992, + -0.022633515298366547, + 0.030026372522115707, + 0.006609340663999319, + -0.002559065818786621, + -0.03791208565235138, + 0.044028569012880325, + 0.023315932601690292, + -0.018159888684749603, + 0.01122197788208723, + -0.010135164484381676, + 0.007159065920859575, + -0.021154943853616714, + -0.0051686810329556465, + 0.011045054532587528, + 0.011670604348182678, + 0.003987087868154049, + -0.0008230081875808537, + -0.018046153709292412, + 0.0010749655775725842, + -0.005216071382164955, + 0.01024258229881525, + -0.01933516375720501, + 0.0045557692646980286, + -0.014141208492219448, + 0.010962911881506443, + -0.016213735565543175, + 0.007531867828220129, + 0.020548351109027863, + -0.03136593475937843, + -0.04471098631620407, + 0.02661428414285183, + -0.01477307640016079, + 0.017199449241161346, + -0.032250549644231796, + -0.00980659294873476, + -0.015329120680689812, + -0.010356318205595016, + -0.016099998727440834, + -0.03331208601593971, + -0.006868406198918819, + -0.01803351566195488, + 0.01347142830491066, + -0.005844780243933201, + 0.029748350381851196, + 0.015164834447205067, + -0.009307417087256908, + 0.007519230712205172, + -0.0021625685039907694, + 0.006767307408154011, + -0.011417856439948082, + -0.017717581242322922, + -0.017894504591822624, + 0.03465164825320244, + 0.02139505371451378, + 0.001737637328915298, + 0.015556592494249344, + -0.005955357104539871, + 0.0025606455747038126, + 0.053430765867233276, + -0.018930768594145775, + 0.001960370922461152, + -0.0005900068208575249, + -0.01607472449541092, + 0.00021305802511051297, + 0.006302884314209223, + 0.0012052884558215737, + 0.012593131512403488, + -0.001625480712391436, + -0.01431813184171915, + 0.01623900979757309, + -0.0313912071287632, + -0.016491757705807686, + -0.005563598591834307, + 0.01393901091068983, + -0.02982417494058609, + 0.047010987997055054, + 0.004732692148536444, + 0.01885494403541088, + -0.00752554927021265, + -0.007266483269631863, + -0.005010714288800955, + -0.019954394549131393, + 0.0015923075843602419, + -0.006141758058220148, + 0.004296703264117241, + -0.021660439670085907, + -0.01867802068591118, + 0.008542857132852077, + -0.010312087833881378, + 0.020434614270925522, + -0.01325659267604351, + -0.0020077608060091734, + -0.006918955594301224, + -0.030329668894410133, + -0.029647251591086388, + -0.012814285233616829, + -0.01717417500913143, + 0.00996456015855074, + 0.00673571415245533, + 0.014368681237101555, + 0.03687582165002823, + -0.016415933147072792, + -0.005358241498470306, + 0.011778021231293678, + 0.0032572802156209946, + 0.011727471835911274, + -0.0064039831049740314, + 0.029192306101322174, + 0.01890549436211586, + -0.011588460765779018, + -0.035991206765174866, + -0.04852747172117233, + -0.004426236264407635, + -0.017565933987498283, + 0.025982417166233063, + -0.001174484845250845, + -0.020181868225336075, + 0.005712087731808424, + 0.015998899936676025, + 0.00907362625002861, + -0.00869450531899929, + -0.018703296780586243, + 0.035940658301115036, + 0.005952197592705488, + -0.007222252432256937, + -0.021066483110189438, + 0.026968130841851234, + -0.02547692134976387, + -0.012864834628999233, + 0.014090659096837044, + -8.031636389205232e-05, + -0.027119779959321022, + -0.0077656591311097145, + -0.010236263275146484, + 0.039074722677469254, + 0.022886263206601143, + 0.005870054941624403, + 0.0204851645976305, + -0.01717417500913143, + 0.009838186204433441, + -0.01786923035979271, + -0.0338934063911438, + 0.017528021708130836, + -0.02081373520195484, + 0.039681319147348404, + -0.02569175697863102, + -0.01100082416087389, + -0.00673571415245533, + 0.007026373408734798, + 0.005715247243642807, + 0.003273076843470335, + 0.011759065091609955, + 0.02140769176185131, + -0.020118679851293564, + -8.865899144439027e-05, + 0.010703845880925655, + -0.015796702355146408, + 0.006975824013352394, + 0.004776922985911369, + -0.003298351541161537, + -0.00047942993114702404, + 0.011007142253220081, + 0.003822802100330591, + 0.004419917240738869, + 0.014596153050661087, + -0.013294504955410957, + -0.016226373612880707, + -0.024465933442115784, + -0.02172362618148327, + -0.008100548759102821, + -0.009718131273984909, + 0.012548900209367275, + -0.02009340561926365, + 0.0022383928298950195, + -0.01040054950863123, + 0.004543131683021784, + 0.011045054532587528, + 0.009781318716704845, + -0.019221428781747818, + -0.011462087742984295, + 0.03187142685055733, + -0.031113184988498688, + 0.012789011001586914, + 0.030759340152144432, + -0.014558241702616215, + -0.009105219505727291, + -0.008871428668498993, + 0.023871976882219315, + -0.028889009729027748, + 0.02422582358121872, + -0.0077656591311097145, + -0.023075822740793228, + -0.004546291194856167, + -0.008896702900528908, + 0.023998349905014038, + -0.018008241429924965, + 0.005121291149407625, + -0.00030428398167714477, + 0.023973075672984123, + 0.0029697800055146217, + -0.030809888616204262, + 0.0017044642008841038, + 0.0058858515694737434, + 0.02281043864786625, + 0.00023082931875251234, + 0.03667362406849861, + -0.022671427577733994, + 0.011278845369815826, + -0.000662276754155755, + -0.009370604529976845, + 0.003547939471900463, + -0.01846318691968918, + -0.008934615179896355, + 0.007917307317256927, + -0.0013964285608381033, + -0.03199779987335205, + 0.01091868057847023, + -0.023758240044116974, + -0.010912362486124039, + -0.013104944489896297, + 0.006394505500793457, + 0.00904835108667612, + 0.031795602291822433, + 0.006362911779433489, + -0.0025653846096247435, + -0.01458351593464613, + 0.018324175849556923, + -0.017237361520528793, + -0.014330768957734108, + 0.02178681269288063, + 0.0011808035196736455, + -0.039630766957998276, + 0.014987912029027939, + -0.01585988886654377, + 0.028535163030028343, + 0.023151647299528122, + -0.01493736170232296, + -0.011386263184249401, + 0.02227967046201229, + -0.03525824099779129, + -0.015417581424117088, + -0.02150879055261612, + 0.003462637308984995, + -0.0074560437351465225, + 0.030430767685174942, + -0.020219778642058372, + 0.02427637204527855, + 0.008549175225198269, + 0.014027471654117107, + -0.02004285715520382, + -0.03295823931694031, + 0.003352060215547681, + -0.014217032119631767, + 0.0020409340504556894, + 0.005408790893852711, + -0.01663076877593994, + -0.0014185438631102443, + 0.03166922926902771, + -0.013951648026704788, + 0.01829889975488186, + 0.03867032751441002, + -0.016706593334674835, + -0.0326043963432312, + 0.0006599072366952896, + 0.024642856791615486, + 0.02509780041873455, + 0.012510988861322403, + -0.004776922985911369, + -0.019107691943645477, + 0.008877746760845184, + -0.0012455700198188424, + 0.012460439465939999, + -0.027347251772880554, + 0.00958543922752142, + 0.02792857028543949, + -0.009370604529976845, + -0.010514285415410995, + 0.01211291179060936, + -0.021091757342219353, + 0.0171615369617939, + -0.021496152505278587, + 0.052773624658584595, + 0.0020077608060091734, + -0.030329668894410133, + 0.019436262547969818, + 0.014027471654117107, + -0.011639010161161423, + -0.023770878091454506, + -0.006353433709591627, + -0.03192197531461716, + 0.001845054910518229, + 0.012327746488153934, + -0.004116620868444443, + 0.01477307640016079, + -0.01382527407258749, + 0.00980659294873476, + -0.011007142253220081, + -0.015518681146204472, + -0.02536318637430668, + -0.02401098795235157, + -0.03434835001826286, + 0.03990878909826279, + 0.02281043864786625, + -0.014381318353116512, + -0.0003698403015732765, + -0.01809670217335224, + -0.004824312869459391, + -0.011146153323352337, + -0.018753845244646072, + 0.01306703221052885, + -0.021976372227072716, + -0.004091346170753241, + -0.00030290178256109357, + -0.020573625341057777, + -0.0017455356428399682, + 0.006704120431095362, + -0.001320604351349175, + -0.027852745726704597, + 0.0025843405164778233, + 0.19229009747505188, + -0.02091483399271965, + -0.004780082032084465, + 0.017237361520528793, + -0.024529119953513145, + -0.028535163030028343, + 0.013319780118763447, + -0.020978020504117012, + 0.00032225274480879307, + 0.02825714275240898, + 0.013193406164646149, + -0.010906043462455273, + 0.008517581969499588, + 0.01570824161171913, + 0.01515219733119011, + -0.015190109610557556, + -0.030607691034674644, + -0.0014090659096837044, + -0.0040249996818602085, + 0.011443131603300571, + 0.016264285892248154, + -0.020459888502955437, + 0.0044293953105807304, + -0.012763735838234425, + 0.044306591153144836, + 0.0150510985404253, + 0.0009817651007324457, + -0.0016934064915403724, + 0.04324505478143692, + 0.02590659260749817, + -0.021091757342219353, + 0.006144917570054531, + 0.007841483689844608, + -0.005408790893852711, + -0.008031043224036694, + -0.0030219091568142176, + 0.006110164802521467, + -0.03058241680264473, + 0.023973075672984123, + 0.03894834965467453, + 0.009920329786837101, + -0.0026380494236946106, + -0.008220603689551353, + -0.033387910574674606, + 0.018374724313616753, + 0.023480219766497612, + -0.014343406073749065, + 0.007266483269631863, + 0.003677472472190857, + 0.010356318205595016, + -0.008997801691293716, + 0.005086538381874561, + 0.012315109372138977, + 0.04455934092402458, + -0.00556675810366869, + -0.01711098849773407, + 0.012890109792351723, + 0.0036364009138196707, + -0.00654615368694067, + 0.003769093193113804, + -0.037558238953351974, + 0.023012636229395866, + -0.014532966539263725, + 0.0033741756342351437, + -0.023151647299528122, + 0.017022527754306793, + -0.01869065873324871, + -0.0007874656585045159, + -0.0261340644210577, + -0.010571153834462166, + -0.007923626340925694, + -0.007797252386808395, + -0.025679120793938637, + 0.008511263877153397, + -0.017477471381425858, + -0.033539559692144394, + 0.02335384488105774, + 0.01167692244052887, + 0.019651098176836967, + 0.022090109065175056, + 0.009515933692455292, + 0.009781318716704845, + -0.016175823286175728, + 0.0026743817143142223, + 0.012138186022639275, + -0.009389559738337994, + 0.005440384615212679, + -0.006264972500503063, + -0.0014643543399870396, + -0.007405494339764118, + -0.014785713516175747, + 0.0064892852678895, + 0.003352060215547681, + -0.008100548759102821, + 0.009724450297653675, + -0.024137360975146294, + 0.012593131512403488, + -0.011929670348763466, + -0.016011537984013557, + -0.01550604309886694, + -0.007986812852323055, + 0.05575604364275932, + 0.04655604064464569, + -0.016769779846072197, + -0.004925412125885487, + -0.0002667668159119785, + 0.009256867691874504, + 0.019865933805704117, + -0.0023157966788858175, + -0.0011389423161745071, + -0.008372252807021141, + -0.03434835001826286, + 0.01755329594016075, + -0.02210274711251259, + 0.0022099586203694344, + 0.014431867748498917, + -0.007411812897771597, + 0.00933901034295559, + 0.0018766482826322317, + 0.012100274674594402, + -0.005506730638444424, + 0.010817581787705421, + 0.02487032860517502, + -0.005411950405687094, + 0.023770878091454506, + -0.022684065625071526, + -0.05373406410217285, + 0.022684065625071526, + -0.004284065682440996, + 0.0066219777800142765, + 0.024213185533881187, + -0.019815383478999138, + 0.008359614759683609, + 0.005923763383179903, + 0.009515933692455292, + 0.011778021231293678, + -0.0065651098266243935, + -0.019031867384910583, + 0.005955357104539871, + -0.015632417052984238, + 0.00324464263394475, + -0.022140659391880035, + 0.009882417507469654, + 0.027069229632616043, + 0.008612362667918205, + -0.009686538018286228, + 0.011158790439367294, + 0.010394230484962463, + -0.01575879007577896, + -0.020181868225336075, + -0.0363956019282341, + -0.0010560095543041825, + 0.00575631856918335, + -0.031113184988498688, + 0.010735439136624336, + 0.009193681180477142, + -0.008795604109764099, + -0.029040658846497536, + 0.02351813018321991, + 0.022014284506440163, + -0.012871153652668, + -0.014735164120793343, + -0.012668956071138382, + -0.020598899573087692, + 0.010071977972984314, + -0.006843131501227617, + -0.15538901090621948, + -0.00993928499519825, + 0.017123626545071602, + -0.03293296694755554, + -0.0005663118208758533, + 0.0022952610161155462, + 0.0012187155662104487, + 0.026058241724967957, + -0.013041757978498936, + -0.006659890059381723, + 0.0043409341014921665, + -0.002361607039347291, + -0.021534064784646034, + -0.007721428293734789, + -0.020396701991558075, + 0.0044293953105807304, + -0.012965933419764042, + 0.03672417625784874, + 0.023556042462587357, + 0.0006140968180261552, + 0.008713461458683014, + -0.01938571408390999, + 0.012176098302006721, + 0.0011239354498684406, + -0.007639285642653704, + 0.007866757921874523, + -0.023151647299528122, + 0.018715932965278625, + -0.021432965993881226, + -0.013888461515307426, + -0.022368131205439568, + 0.004265109542757273, + 0.008245878852903843, + 0.010305768810212612, + 0.010331043973565102, + -0.004830631893128157, + 0.004975961521267891, + -0.008214285597205162, + -0.010046702809631824, + 0.029242856428027153, + -0.005067582242190838, + 0.03548571467399597, + -0.014621428214013577, + 0.026816481724381447, + -0.006672527175396681, + 0.019651098176836967, + 0.02633626200258732, + -0.0021530906669795513, + 0.010248900391161442, + 0.008005768992006779, + 0.013370329514145851, + -0.019840659573674202, + -0.020978020504117012, + 0.012447801418602467, + -0.0006097527220845222, + 0.007474999874830246, + -0.02096538431942463, + 0.030430767685174942, + 0.0041292579844594, + 0.01271318644285202, + -0.014874175190925598, + -0.025021977722644806, + -7.793451004545204e-06, + -0.010558515787124634, + 0.01031840592622757, + 0.000533533631823957, + 0.008846153505146503, + 0.029849449172616005, + -0.023126373067498207, + 0.0018829669570550323, + -0.0008020775858312845, + -0.04241098836064339, + 0.007626648060977459, + -0.010880769230425358, + 0.00882719736546278, + -0.012258240953087807, + -0.00422403821721673, + 0.003137225052341819, + 0.007595054805278778, + 0.006514560431241989, + -0.01684560440480709, + 0.040009889751672745, + 0.01100082416087389, + -0.024756591767072678, + -0.02374560385942459, + -0.0030171701218932867, + -0.020523076876997948, + 0.017565933987498283, + -0.010280494578182697, + -0.002679120749235153, + 0.005165521986782551, + -0.013964285142719746, + -0.02015659213066101, + -0.03834175691008568, + 0.007645604200661182, + -0.010457416996359825, + -0.005964835174381733, + 0.012921703048050404, + -0.018968680873513222, + -0.004840109497308731, + 0.007190659176558256, + -0.026209888979792595, + -0.015493405982851982, + 0.014115933328866959, + -0.004517856985330582, + -0.004347252659499645, + -0.0321747250854969, + 0.0028844778425991535, + 0.038114283233881, + -0.015885164961218834, + -0.014532966539263725, + -0.003015590598806739, + 0.037078019231557846, + -0.008530219085514545, + 2.6928441002382897e-05, + 0.008890383876860142, + -0.0073928567580878735, + -0.02231758087873459, + 0.012068680487573147, + -0.0020851646549999714, + 0.05909230560064316, + -0.012965933419764042, + -0.007790933828800917, + -0.001699725165963173, + -0.013749450445175171, + -0.03700219467282295, + -0.08558021485805511, + -0.007822527550160885, + 0.016542308032512665, + 0.01997966878116131, + 0.016921427100896835, + 0.030076922848820686, + 0.015417581424117088, + -0.01129780150949955, + 0.009970879182219505, + 0.036471426486968994, + -0.012384614907205105, + -0.03189670294523239, + -0.021268680691719055, + -0.013433516025543213, + 0.014381318353116512, + -0.011771703138947487, + 0.008732417598366737, + -0.027043955400586128, + -0.035283517092466354, + 0.026715382933616638, + -0.012738460674881935, + 0.009307417087256908, + -0.0165170319378376, + -0.011064010672271252, + -0.011215658858418465, + 0.011158790439367294, + -0.03583955764770508, + 0.031593404710292816, + 0.022481868043541908, + -0.016378020867705345, + 0.022772526368498802, + -0.023695053532719612, + -0.01831153780221939, + -0.020447252318263054, + -0.009844505228102207, + -0.0045557692646980286, + -0.024301648139953613, + -0.0096170324832201, + 0.04094505310058594, + -0.006805219687521458, + -0.014381318353116512, + 0.011948625557124615, + 0.012567856349050999, + -0.0050770603120327, + 0.015518681146204472, + -0.008113186806440353, + -0.0038607141468673944, + 0.016226373612880707, + 0.024895602837204933, + -0.0020709477830678225, + -0.05176263675093651, + -0.03583955764770508, + -0.020548351109027863, + 0.016378020867705345, + 0.01824835129082203, + -0.008290109224617481, + -0.01306703221052885, + 0.0016396977007389069, + -0.023379120975732803, + 0.009920329786837101, + -0.017073076218366623, + 0.023985713720321655, + -0.041475821286439896, + 0.030506592243909836, + 0.001922458759509027, + -0.009256867691874504, + -0.018501097336411476, + -0.00022628776787314564, + 0.007576098665595055, + -0.007892033085227013, + -0.025552745908498764, + 0.0056331041269004345, + -0.0026380494236946106, + 0.01869065873324871, + -0.027296701446175575, + -0.004043955821543932, + -0.04291648045182228, + -0.007885714061558247, + 0.020763186737895012, + -0.009136812761425972, + -0.006144917570054531, + -0.02292417548596859, + 0.008991483598947525, + -0.018817031756043434, + 0.03616813197731972, + 0.021685713902115822, + -0.0006895260885357857, + -0.011013461276888847, + 0.017907142639160156, + -0.014785713516175747, + -0.02835824154317379, + 0.013433516025543213, + 0.017515383660793304, + -0.018374724313616753, + -0.010078296065330505, + 0.01393901091068983, + -0.011935988441109657, + -0.011594779789447784, + 0.017073076218366623, + 0.025717031210660934, + 0.0007242787978611887, + -0.013104944489896297, + -0.039630766957998276, + 0.022747252136468887, + 0.011613735929131508, + -0.001699725165963173, + -0.018020877614617348, + -0.007860438898205757, + 0.017148900777101517, + 0.014305493794381618, + 0.03546043857932091, + -0.002856043865904212, + -0.008707142435014248, + 0.02081373520195484, + -0.019764835014939308, + -0.015253296121954918, + -0.024326922371983528, + -0.02699340507388115, + -0.002928708679974079, + 0.01960054785013199, + -0.006122801918536425, + -0.009793955832719803, + -0.02101593278348446, + -0.007759340573102236, + -0.0035921703092753887, + 0.023265384137630463, + -0.016099998727440834, + 0.005228708498179913, + -0.0008004978881217539, + -0.005291895475238562, + -0.02140769176185131, + -0.0010054601589217782, + 0.00020930630853399634, + -0.005301373545080423, + -0.020396701991558075, + 0.023657141253352165, + -0.009326373226940632, + -0.01982802152633667, + 0.01534175779670477, + 0.028156042098999023, + 0.009478021413087845, + 0.03748241811990738, + -0.002856043865904212, + -0.02481978014111519, + -0.006868406198918819, + -0.03136593475937843, + 0.00022214112686924636, + 0.00907362625002861, + 0.007557142525911331, + 0.007892033085227013, + 0.02390988916158676, + 0.005569917615503073, + 0.05287472531199455, + 0.012928021140396595, + -0.0017455356428399682, + 0.0021736263297498226, + -0.002426373539492488, + -0.013319780118763447, + 0.017945054918527603, + -0.0031577609479427338, + 0.04592417553067207, + -0.015253296121954918, + 0.04711208492517471, + 0.0034436811693012714, + 0.005936400964856148, + -0.020030219107866287, + 0.012807966209948063, + -0.035612087696790695, + -0.02027032896876335, + -0.030178021639585495, + -0.01018571387976408, + -0.02825714275240898, + -0.008713461458683014, + -0.005083378870040178, + 0.005560439545661211, + 0.032831866294145584, + -0.010489010252058506, + -0.013547251932322979, + -0.0024800824467092752, + -0.004426236264407635, + 0.0015591345727443695, + 0.004963323939591646, + 0.014798351563513279, + 0.008062637411057949, + -0.0018355768406763673, + 0.0016791895031929016, + 0.0506252720952034, + 0.01189807616174221, + -0.01874120905995369, + -0.007727746851742268, + -0.010962911881506443, + 0.010173076763749123, + -0.005838461220264435, + 0.025565383955836296, + 0.012940659187734127, + 0.004584203008562326, + 0.030127471312880516, + -0.01043214276432991, + 0.0057278843596577644, + -0.017249999567866325, + 0.04215823858976364, + 0.03149230778217316, + 0.004931730683892965, + 0.0005809237482026219, + -0.01842527464032173, + -0.03149230778217316, + 0.01561977993696928, + 0.021066483110189438, + -0.027827471494674683, + -0.0318208783864975, + 0.01760384626686573, + 0.016276922076940536, + -0.016870878636837006, + 0.016643406823277473, + -0.0013474586885422468, + -0.00019568165589589626, + -0.017679668962955475, + 0.0023236949928104877, + -0.03326153755187988, + -0.012675274163484573, + -0.03308461606502533, + 0.033590108156204224, + 0.026058241724967957, + 0.019474174827337265, + -0.0033962910529226065, + 0.021710988134145737, + 0.01813461445271969, + -0.023821428418159485, + 0.01309230737388134, + 0.004088186658918858, + 0.010924999602138996, + -0.01412857137620449, + 0.014558241702616215, + 0.015228021889925003, + -0.04410439357161522, + -0.008182692341506481, + -0.01754065789282322, + -0.003870192216709256, + 0.02666483446955681, + 0.015480768866837025, + 0.011537911370396614, + 0.11767911911010742, + 0.031113184988498688, + -0.018652746453881264, + 0.02483241632580757, + 0.003614285495132208, + 0.009155768901109695, + 0.023543406277894974, + 0.007746702991425991, + 0.002051991643384099, + -0.04349780082702637, + 0.010444779880344868, + -0.017262637615203857, + 0.02129395492374897, + -0.039681319147348404, + 0.0003737894876394421, + 0.020990658551454544, + -0.006031181197613478, + 0.02308846078813076, + -0.029849449172616005, + 0.002988736145198345, + 0.04051538184285164, + -0.000812740356195718, + 0.010470055043697357, + 0.028661537915468216, + -0.029520878568291664, + -0.030405493453145027, + 0.03540989011526108, + 0.0028291894122958183, + 0.024162637069821358, + -0.011247252114117146, + -0.002529052086174488, + 0.003040865296497941, + -0.05969889834523201, + -0.03621868044137955, + 0.021913185715675354, + -0.04200659319758415, + 0.0069884611293673515, + -0.018892856314778328, + 0.011177746579051018, + 0.0018719092477113008, + 0.020775822922587395, + 0.022254394367337227, + -0.00011985748278675601, + -0.026108790189027786, + 0.010324724949896336, + 0.02575494349002838, + -0.012839560396969318, + -0.004947527311742306, + -0.027953844517469406 + ], + "metadata": { + "source": "Thesis_Verladegeraeusche_in_Speditionen.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 41, + "has_images": true, + "image_count": 51, + "coordinates": "CoordinatesMetadata(points=((204.16666666666666, 189.02777777777797), (204.16666666666666, 642.3611111111111), (936.1666666666666, 642.3611111111111), (936.1666666666666, 189.02777777777797)), system=)", + "links": [], + "last_modified": "2025-05-05T22:59:16", + "_known_field_names": "frozenset({'cc_recipient', 'link_texts', 'url', 'filetype', 'category_depth', 'page_number', 'filename', 'orig_elements', 'detection_origin', 'email_message_id', 'page_name', 'coordinates', 'table_as_cells', 'link_start_indexes', 'sent_to', 'bcc_recipient', 'languages', 'last_modified', 'link_urls', 'file_directory', 'subject', 'data_source', 'detection_class_prob', 'image_base64', 'text_as_html', 'attached_to_filename', 'key_value_pairs', 'signature', 'sent_from', 'header_footer_type', 'parent_id', 'links', 'emphasized_text_contents', 'emphasized_text_tags', 'image_mime_type', 'is_continuation', 'image_path'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "Thesis_Verladegeraeusche_in_Speditionen.pdf", + "detection_class_prob": 0.2568194270133972, + "parent_id": "d45475a34bc527cde6987546fa6dd2f5", + "text_as_html": "
Flurf\u00f6rderger\u00e4t |Anzahl Einzelereignisse ElMax-PegelSchallleistungspegel
LAFmaxLWA,5sLWAmaxLWA,1hKlLWAT,1h
[dB(A)][dB(A)][dB(A)][dB(A)][dB(A)][dB(A)]
Gabelstapler29769,3100,7108,872,15,777,8
STABW [dB]6,54,96,54,92,9-
Gabelhubwagen9968,6100,7108,172,16,279,5
STABW [dB]6,45,16,4512,7-
", + "id": "5ba44de7-0ff3-4c0c-b018-67e92171e1c2", + "processing_timestamp": "2025-05-06T14:18:19.298665", + "chunk_number": 8, + "total_chunks": 49, + "chunking_strategy": "hybrid", + "word_count": 521 + } +} \ No newline at end of file diff --git a/data/processed/85fd305f-83de-70b0-47e8-2dc000000009.json b/data/processed/85fd305f-83de-70b0-47e8-2dc000000009.json new file mode 100644 index 0000000000000000000000000000000000000000..c1417791ec8669dad6568c55bd1e095e5c54fa34 --- /dev/null +++ b/data/processed/85fd305f-83de-70b0-47e8-2dc000000009.json @@ -0,0 +1,1570 @@ +{ + "id": "85fd305f-83de-70b0-47e8-2dc000000009", + "content": "Er h\u00e4ngt mit dem physikalischen Schalldruck zusammen und wird als Verh\u00e4ltnis von Kraft zu Fl\u00e4che definiert, auf die die Kraft senkrecht wirkt (siehe Formel 5). [44]\n\ud835\udc5d = \ud835\udc3c \ud835\udc63\n\n## Formel 5: Schalldruck [Pa = N/m\u00b2]\n\nMit I: Schallintensit\u00e4t [W/m\u00b2], v: Schallschnelle [m/s]\nDie Schallschnelle beschreibt die Geschwindigkeit, mit der sich ein Teilchen wie z.B. ein Luftteilchen in einem Schallfeld um seine Ruhelage bewegt. Sie entspricht der Momen- tangeschwindigkeit des schwingenden Teilchens. Die Schallschnelle berechnet sich aus der zeitlichen Ableitung der Auslenkung \u03be des Teilchens (siehe Formel 6). [45\u201349]\n\ud835\udc63\u0305 = \ud835\udf15\ud835\udf09\u20d1 \ud835\udf15\ud835\udc61 = \ud835\udf09\u20d1\u0307\nFormel 6: Schallschnelle [m/s]\nMit \u03be: Auslenkung [m], t: Zeit [s]\nAus den Gr\u00f6\u00dfen des Schalldruckes p, der Schallgeschwindigkeit der Luft c und der Mess- fl\u00e4che S kann die abgestrahlte Schallleistung P definiert werden, wobei \u03c1 die Dichte der Luft bei Normalbedingungen darstellt (siehe Formel 7). \ud835\udc43 = \ud835\udc5d \u2217 \ud835\udc63 \u2217 \ud835\udc46 = \ud835\udc5d2 \ud835\udf0c \u2217 \ud835\udc50 \u2217 \ud835\udc46\nFormel 7: Schallleistung [W]\nMit \u03c1: Luftdichte [kg/m\u00b3], v: Luft-Schallgeschwindigkeit [m/s], p: Schalldruck [Pa = N/m\u00b2]\nDie abgestrahlte Leistung auf die einzelnen Messfl\u00e4chen Si ist die Summe aller Schallleis- tungen auf den einzelnen Teilfl\u00e4chen (siehe Formel 8). [21]\n14\n2 Grundlagen\n\ud835\udc41 \ud835\udc43\u0305 = \u2211 \ud835\udc56=1 \ud835\udc5d\ud835\udc52\ud835\udc53\ud835\udc53,\ud835\udc56 \ud835\udf0c \u2217 \ud835\udc50 2 \u2217 \ud835\udc46\ud835\udc56\nFormel 8: Schallleistung der einzelnen Teilfl\u00e4chen [W]\nMit \u03c1: Luftdichte [kg/m\u00b3], v: Luft-Schallgeschwindigkeit [m/s], peff: effektiver Schalldruck [Pa = N/m\u00b2],\nSi: Teilfl\u00e4chen [m\u00b2]\nUnter Einbeziehung der Bezugsgr\u00f6\u00dfen (siehe Formel 9), ergibt sich die Gleichung wie folgt: [46, 49]\n\ud835\udc430 = \ud835\udc5d0 2 \u2217 1\ud835\udc5a\u00b2 \ud835\udf0c \u2217 \ud835\udc50\nFormel 9: Bezugsgr\u00f6\u00dfe\n\ud835\udc43\u0305 \ud835\udc430 = \ud835\udc46 \u2044 1\ud835\udc5a2 \ud835\udc41 \ud835\udc41 \u2211 \ud835\udc56=1 \ud835\udc5d\ud835\udc52\ud835\udc53\ud835\udc53,\ud835\udc56 \ud835\udc5d0 2 2\nFormel 10: Schallleistung der einzelnen Teilfl\u00e4chen [W]\nMit \u03c1: Luftdichte [kg/m\u00b3], v: Luft-Schallgeschwindigkeit [m/s], peff: effektiver Schalldruck [Pa = N/m\u00b2],\nSi: Teilfl\u00e4chen [m\u00b2], N: Anzahl der Teilfl\u00e4chen [-]\nDurch Bildung des logarithmischen Verh\u00e4ltnisses des Schallleistungspegels zur Bezugs- gr\u00f6\u00dfe, ergibt sich der zeitbezogene Schallleistungspegel LWA (siehe Formel 11) und ent- sprechend der maximalen Schalleistungspegel LWAmax (siehe Formel 12). [50, 49, 21] Der zeitbezogene Schallleistungspegel LWA bezieht sich f\u00fcr 1 Ereignis pro Einwirkzeit T, wobei die durchschnittliche Einwirkzeit 5 Sekunden betrug. LWA = 10 \u2217 lg( 1 N N \u221110\ud835\udc3f\ud835\udc34\ud835\udc52\ud835\udc5e,\ud835\udc56\u22170,1 i=1 ) + 10 \u2217 lg( \ud835\udc46 \ud835\udc460 )\nLWA,5s = L\ud835\udc34\ud835\udc52\ud835\udc5e + 10 \u2217 lg( \ud835\udc46 \ud835\udc460 ) = L\ud835\udc34\ud835\udc52\ud835\udc5e + 10 \u2217 lg( 2\ud835\udf0b\ud835\udc5f\u00b2 \ud835\udc460 )\nFormel 11: Schallleistungspegel bezogen auf 5 Sekunden [dB(A)]\n\ud835\udc3f\ud835\udc4a\ud835\udc34\ud835\udc5a\ud835\udc4e\ud835\udc65 = \ud835\udc3f\u0305\ud835\udc34\ud835\udc39\ud835\udc5a\ud835\udc4e\ud835\udc65 + 10 \u2217 \ud835\udc59\ud835\udc54( \ud835\udc46 \ud835\udc460 ) = \ud835\udc3f\u0305\ud835\udc34\ud835\udc39\ud835\udc5a\ud835\udc4e\ud835\udc65 + 10 \u2217 \ud835\udc59\ud835\udc54( 2\ud835\udf0b\ud835\udc5f\u00b2 \ud835\udc460 )\nFormel 12: maximale Schallleistungspegel [dB(A)]\nMit LAeq: \u00e4quivalente Dauerschallpegel [dB(A)], S: H\u00fcllfl\u00e4che, hier Fl\u00e4cheninhalt einer Halbkugel mit\nRadius r [m\u00b2], S0: Bezugsfl\u00e4che = 1 m\u00b2, LAFmax: maximale Schalldruckpegel [dB(A)]\n15\n2 Grundlagen\nDabei stellt der erste Term den \u00e4quivalenten Dauerschallpegel nach DIN EN ISO 3744 ff [29] dar. Er gibt an welcher konstante Schallpegel \u00fcber die gesamte Messzeit notwendig w\u00e4re, um die gleiche Energie abzustrahlen wie das gemessene zeitlich ver\u00e4nderliche Ge- r\u00e4usch. Eine weitere wichtige akustische Gr\u00f6\u00dfe ist der Maximale Schalldruckpegel LAFmax, welcher zur Beurteilung von Ger\u00e4uschspitzen gem\u00e4\u00df der technischen Anleitung zum Schutz gegen L\u00e4rm (TA L\u00e4rm) [6] ben\u00f6tigt wird. Dieser gibt den h\u00f6chsten vorkommen- den Schalldruckpegel eines Einzelereignisses innerhalb der gemessenen Zeit an, der von einer sehr kurzen Einwirkzeit gepr\u00e4gt ist. [51]\nUm aussagekr\u00e4ftige Emissionsans\u00e4tze darbieten zu k\u00f6nnen, wird der st\u00fcndliche Schal- leistungspegel (siehe Formel 13) je Vorgang gebildet. Um die Impulshaltigkeit des Ge- r\u00e4usches einzubeziehen, wird der impulsbehaftete Schalleistungspegel bezogen auf 1 Stunde gebildet (siehe Formel 14). LWA,1h = 10 \u2217 lg(( \ud835\udc47 3600 s ) \u2217 10(0,1\u2217\ud835\udc3f\ud835\udc4a\ud835\udc34,5\ud835\udc60))\nFormel 13: st\u00fcndlicher Schallleistungspegel [dB(A)]\n\ud835\udc3f\ud835\udc4a\ud835\udc34\ud835\udc47,1\u210e = 10 \u2217 \ud835\udc59\ud835\udc54(( \ud835\udc47 3600 \ud835\udc60 ) \u2217 10(0,1\u2217\ud835\udc3f\ud835\udc4a\ud835\udc34,5\ud835\udc60)) + \ud835\udc3e\ud835\udc3c\nFormel 14: impulsbehafteter st\u00fcndlicher Schallleistungspegel [dB(A)]\nMit: T: Zeit [s], LWA: Schallleistungspegel bezogen auf 5 Sekunden [dB(A)]\nUm den \u00e4quivalenten Dauerschallpegel zu erfassen, m\u00fcssen verschiedene Einfl\u00fcsse be- r\u00fccksichtigt werden. Dazu wird der Schalldruckpegel in Anlehnung nach DIN EN ISO 3744 bis 3746 [29, 52, 30] gemessen. Das Verfahren zur Messung wird in Kapitel 5, aufgezeigt. Dabei wird Summe des direkten Schalls und dessen Beitr\u00e4ge gemessen. Die Beitr\u00e4ge des Schalls beinhalten alle Reflektionen an der Decke, des Bodens, der W\u00e4nde und weiteren m\u00f6glichen Hindernissen. Es k\u00f6nnen bei der Messung externe unerw\u00fcnschte Ger\u00e4usche auftreten, sprich Ger\u00e4usche die nicht von der zu betrachtenden Quelle ausgehen und zu einem erh\u00f6hten Schalldruckpegel f\u00fchren. Ist die Differenz zwischen Fremdger\u00e4usche und den gemessenen Schalldruckpegel gr\u00f6\u00dfer als 10 dB wird nach DIN EN ISO 3746 [30] keine Fremdger\u00e4uschkorrektur vorgenommen. Liegt die Differenz des Fremdger\u00e4usches und dem gemessenen Schalldruckpegel zwischen 3 dB und 10 dB, so ist es ratsam eine Fremdger\u00e4uschkorrektur nach Formel 15 durchzuf\u00fchren. [25] Um vorherrschende Fremdger\u00e4usche zu pr\u00fcfen, ist der 95-Perzentilpegel einzusetzen. Der 95-Perzentilpegel beinhaltet alle Pegelwerte, die 95 % der Messzeit \u00fcberschritten wurde.", + "embedding": [ + 0.015212252736091614, + 0.026750413700938225, + 0.01972937397658825, + -0.032035067677497864, + 0.006118244957178831, + -8.930631884140894e-05, + -0.027077559381723404, + -0.020861798897385597, + -0.011959674768149853, + -0.030927807092666626, + 0.014344059862196445, + 0.03326815366744995, + -0.013928837142884731, + 0.0059546721167862415, + 0.0007348971557803452, + 0.0040893154218792915, + 0.03379661962389946, + -0.010506395250558853, + 0.015979785472154617, + -0.0033217822201550007, + 0.0003882883465848863, + 0.008455445989966393, + -0.013727516867220402, + 0.005850866436958313, + -0.03475289046764374, + 0.014268564991652966, + 0.02370544709265232, + -0.01236860640347004, + -0.003966636024415493, + -0.01737644523382187, + 0.025529909878969193, + -0.01455796230584383, + -0.025945132598280907, + 0.02861262485384941, + -0.018559200689196587, + 0.0018732210155576468, + -0.01420565228909254, + -0.002050949027761817, + 0.02969472110271454, + -0.0011245617642998695, + 0.005482828244566917, + 0.024397484958171844, + 0.010871287435293198, + -0.0019990461878478527, + -0.0012354450300335884, + -0.011563325300812721, + 0.004800227005034685, + -0.0177035890519619, + -0.009116027504205704, + 0.008807756006717682, + 0.021314769983291626, + 0.0035923062823712826, + -0.01790490932762623, + 0.007744534406810999, + -0.0018480559810996056, + -0.030097361654043198, + 0.005007838364690542, + 0.012607674114406109, + 0.005523721221834421, + 0.003444461850449443, + -0.027782179415225983, + -0.010336531326174736, + -0.015350660309195518, + 0.013173886574804783, + -0.013010313734412193, + -0.015338078141212463, + -0.01910024881362915, + 0.0032557242084294558, + -0.012972566299140453, + 0.010380569845438004, + 0.023793524131178856, + 0.03518069535493851, + 0.002197220688685775, + 0.02142801322042942, + 0.026322608813643456, + 0.01172689814120531, + 0.00846173707395792, + 0.0014226099010556936, + 0.00827299989759922, + -0.001608988270163536, + 0.019112830981612206, + -0.01862211339175701, + -0.002233395352959633, + 0.031179456040263176, + 0.012997731566429138, + -0.019741956144571304, + -0.01902475394308567, + 0.027404705062508583, + -0.02446039766073227, + -0.004834828898310661, + 0.0029065595008432865, + 0.02987087517976761, + -0.00714057357981801, + -0.0146082928404212, + 0.025794142857193947, + -0.011789810843765736, + 0.014998350292444229, + 0.0026832199655473232, + -0.0008619018481113017, + -0.025504745543003082, + -0.003482209285721183, + -0.0014752991264685988, + 0.0004270188801456243, + -0.003812500275671482, + -0.019817451015114784, + -0.009279600344598293, + 0.00965078454464674, + 0.020685644820332527, + -0.0007561301463283598, + -0.02486303821206093, + -0.018005570396780968, + -0.012532179243862629, + 0.015099010430276394, + -0.011166976764798164, + 0.03757137060165405, + -0.012947401963174343, + 0.03329331800341606, + -0.025290843099355698, + -0.01740160956978798, + -0.01940222829580307, + 0.03432508558034897, + 0.016810230910778046, + 0.015086428262293339, + 0.0006837807013653219, + 0.020647896453738213, + 0.0006322710542008281, + -0.004149082116782665, + -0.01431889459490776, + -0.022812088951468468, + -0.007845194078981876, + -0.014180487021803856, + -0.008430280722677708, + 0.030097361654043198, + 0.009034241549670696, + -0.000791518425103277, + 0.008807756006717682, + -0.016357261687517166, + -0.008983911015093327, + -0.021516090258955956, + -0.023302806541323662, + 0.027908004820346832, + 0.0011536587262526155, + -0.02934241108596325, + -0.04708374664187431, + -0.014658622443675995, + 0.024523310363292694, + 0.01654599979519844, + 0.014381807297468185, + -0.011940800584852695, + -0.0010246880119666457, + -0.009694823063910007, + -0.017540017142891884, + 0.013878507539629936, + -0.0026722103357315063, + -0.013991749845445156, + 0.0062975455075502396, + -0.004894596058875322, + 0.03276485204696655, + 0.004979528021067381, + -0.004086169879883528, + -0.016281766816973686, + 0.031431108713150024, + 0.01205404382199049, + -0.0077130780555307865, + 0.005863449070602655, + 0.026045793667435646, + -0.005942089948803186, + 0.0009397561079822481, + 0.005183993838727474, + 0.0005559896235354245, + -0.0034413160756230354, + 0.02172999270260334, + -0.017728755250573158, + 0.023667698726058006, + 0.007436262909322977, + -0.0033406561706215143, + 0.012412644922733307, + -0.001265328493900597, + -0.016684407368302345, + -0.020383663475513458, + -0.03369595855474472, + 0.0021956476848572493, + 0.0015445029130205512, + 0.02117636241018772, + -0.016231436282396317, + 0.01228052843362093, + 0.012739790603518486, + 0.013249381445348263, + -0.013173886574804783, + -0.013563944958150387, + 0.01071400661021471, + 0.023944513872265816, + 0.0009153775172308087, + -0.030776817351579666, + -0.6309373378753662, + -0.008279290981590748, + -0.011557034216821194, + -0.006064769346266985, + -0.005410478916019201, + 0.022195545956492424, + 0.011682859621942043, + -0.009808065369725227, + -0.007725660223513842, + 0.041824258863925934, + 0.00047538289800286293, + -0.0048065185546875, + -0.008606435731053352, + -0.006225196179002523, + -0.017716173082590103, + -0.01745194010436535, + -0.008744843304157257, + -0.009757735766470432, + 0.01782941445708275, + -0.0063950601033866405, + -0.021843235939741135, + 0.016885727643966675, + 5.148507170815719e-06, + -0.002033648081123829, + 0.0007388291996903718, + 0.00523746944963932, + 0.025265676900744438, + -0.006744224578142166, + 0.01212953869253397, + -0.0032195495441555977, + -0.02210746891796589, + -0.00033225686638616025, + -0.025542492046952248, + 0.01735127903521061, + 0.0387037955224514, + -0.025794142857193947, + 0.002267997246235609, + 0.0037904807832092047, + 0.01937706395983696, + 0.0036143255420029163, + -0.00988985225558281, + -0.017288366332650185, + 0.0036111800000071526, + -0.01917574368417263, + 0.00741738872602582, + -0.0056904396042227745, + 0.030147690325975418, + -0.022573020309209824, + 0.020371081307530403, + -0.023290224373340607, + -0.0020729682873934507, + -0.007549505215138197, + 0.022875001654028893, + -0.000434096553362906, + 0.0170744638890028, + -0.02003135345876217, + 0.029946371912956238, + -0.01629434898495674, + -0.03379661962389946, + 0.011588490568101406, + 0.013123556971549988, + -0.0021767739672213793, + 0.0027445596642792225, + -0.013362624682486057, + -0.009260726161301136, + 0.020899547263979912, + -0.01071400661021471, + -0.025404084473848343, + 0.0202326737344265, + -0.0048505570739507675, + -0.020396247506141663, + 0.031154291704297066, + 0.005674711428582668, + -0.017212871462106705, + 0.020811470225453377, + 0.015551980584859848, + 0.03367079421877861, + -0.004240305628627539, + -0.002079259604215622, + 0.006769389845430851, + -0.001726949354633689, + -0.009990512393414974, + -0.015979785472154617, + -0.0010042415233328938, + 0.025794142857193947, + -0.03422442451119423, + -0.00592636177316308, + 0.031582098454236984, + 0.01431889459490776, + 0.008052805438637733, + 0.02178032323718071, + 0.040893152356147766, + 0.001410027383826673, + -0.010909034870564938, + -0.015677805989980698, + 0.015451320447027683, + -0.019188325852155685, + 0.001310940133407712, + 0.0028782489243894815, + -0.027429869398474693, + -0.017036717385053635, + -0.005835138261318207, + -0.0008760571945458651, + -0.01967904344201088, + 0.01955321803689003, + -0.005124226678162813, + -0.00857497937977314, + 0.008178630843758583, + 0.0382004976272583, + -0.036136966198682785, + 0.0014752991264685988, + -0.01967904344201088, + -0.01727578416466713, + -0.002739841351285577, + -0.011808684095740318, + -0.021969059482216835, + 0.051361799240112305, + 0.0025699774269014597, + 0.020924711599946022, + -0.023302806541323662, + 0.018584365025162697, + 0.008524649776518345, + 0.04033952206373215, + -0.02005651965737343, + -0.027228549122810364, + 0.031556930392980576, + 0.005073896609246731, + 0.01626918464899063, + -0.01639500819146633, + -0.017464522272348404, + 0.030021866783499718, + 0.003954053390771151, + 0.022862417623400688, + -0.0006161497440189123, + 0.015338078141212463, + 0.01942739449441433, + 0.004992110189050436, + -0.004573741927742958, + 0.02383127249777317, + -0.027480199933052063, + -0.036539606750011444, + 0.004130208399146795, + 0.007662747986614704, + -0.021767741069197655, + -0.0247875414788723, + -0.04396328702569008, + -0.02398226223886013, + -0.0033312193118035793, + 0.018081065267324448, + 0.010172958485782146, + 0.007543214131146669, + -0.0354071781039238, + 0.010638510808348656, + 0.025102104991674423, + 0.002865666290745139, + 0.008279290981590748, + -0.009210396558046341, + -0.008530940860509872, + -0.031078796833753586, + -0.005957818124443293, + 0.012337150052189827, + 0.004677547607570887, + -0.05178960785269737, + -0.018332716077566147, + -0.004894596058875322, + -0.030650991946458817, + 0.01642017439007759, + 0.004580033011734486, + -0.01492285542190075, + -0.03807467222213745, + -0.0008933581411838531, + 0.020245255902409554, + -0.009518668055534363, + 0.011733189225196838, + -0.0017411046428605914, + -0.011915636248886585, + -0.010028259828686714, + -0.012462974525988102, + -0.013060644268989563, + -0.03372112289071083, + 0.01433147769421339, + -0.008468028157949448, + -0.017615512013435364, + 0.017791667953133583, + 0.0326390266418457, + 0.006612108554691076, + 0.012022587470710278, + 0.008971328847110271, + -0.017867162823677063, + 0.031380776315927505, + -0.00562752690166235, + 0.036287955939769745, + -0.026221947744488716, + 0.013400372117757797, + -0.026674918830394745, + 0.0030638407915830612, + 0.01457054540514946, + -0.011915636248886585, + 0.0015893281670287251, + 0.02263593301177025, + 0.008166048675775528, + 0.0024095503613352776, + 0.041547443717718124, + -0.02145317755639553, + 0.022799506783485413, + -0.01004084199666977, + 0.002313608769327402, + -0.01679764874279499, + 0.04723473638296127, + 0.026599423959851265, + 0.014872525818645954, + -0.0054073333740234375, + -0.03417409211397171, + -0.02203197218477726, + 0.0072726900689303875, + 0.036011140793561935, + -0.00028841468156315386, + 0.00732302013784647, + 0.008983911015093327, + -0.014016915112733841, + -0.002584132831543684, + -0.006354167126119137, + 0.03905610740184784, + 0.013840760104358196, + -0.008090552873909473, + -0.0009531250689178705, + 0.00019149004947394133, + 0.018596947193145752, + -0.00620317691937089, + -0.02245977893471718, + -0.014016915112733841, + -0.024724630638957024, + 0.008939872495830059, + -0.0005618876311928034, + -0.013979167677462101, + 0.027555694803595543, + 0.0023843853268772364, + -0.015753300860524178, + 0.04715924337506294, + 0.006162283476442099, + 0.01200371328741312, + 0.01409240998327732, + -0.0065491958521306515, + -0.002043084939941764, + 0.007820028811693192, + -0.019540635868906975, + 0.011519286781549454, + 0.02919142134487629, + 0.0026155889499932528, + -0.010286200791597366, + -0.013828177005052567, + 0.009298473596572876, + -0.015199670568108559, + 0.0032038213685154915, + 0.01902475394308567, + -0.003570286789909005, + 0.012192451395094395, + 0.0007360767922364175, + -0.014054662548005581, + 0.0170744638890028, + -0.0043724216520786285, + 0.014180487021803856, + 0.020333334803581238, + -0.01200371328741312, + 0.012362315319478512, + -0.0008642610628157854, + -0.032513201236724854, + -0.015526816248893738, + -0.018370462581515312, + -0.008612727746367455, + 0.006618399638682604, + 0.008210087195038795, + 0.0093613862991333, + -0.0010820957832038403, + 0.01765326038002968, + -0.013740099966526031, + -0.002117007039487362, + 0.012859323993325233, + 0.026121288537979126, + -0.00471844058483839, + -0.023944513872265816, + -0.025794142857193947, + -0.013010313734412193, + 0.030248351395130157, + -0.007278981152921915, + -0.010103754699230194, + -0.013702352531254292, + 0.002623453037813306, + -0.02861262485384941, + 0.008103135973215103, + -0.026423268020153046, + 0.006439099088311195, + -0.0011237752623856068, + -0.0021626187954097986, + 0.0032431415747851133, + 0.001799298799596727, + 0.005822556093335152, + 0.023227311670780182, + -0.002818481996655464, + 0.007675330154597759, + -0.008845503441989422, + -0.008468028157949448, + -0.013714934699237347, + -0.02461138740181923, + 0.020723391324281693, + 0.00622205063700676, + -0.014394390396773815, + -0.030223187059164047, + 0.007700495421886444, + -0.02345379628241062, + -0.010172958485782146, + -0.009109736420214176, + 0.002614016178995371, + 0.013412954285740852, + 0.0013329595094546676, + -0.007052496075630188, + 0.02370544709265232, + -0.013526196591556072, + 0.04824133962392807, + -0.0003702010144479573, + -0.010021967813372612, + -0.019741956144571304, + 0.007467718794941902, + -0.02410808764398098, + 0.005850866436958313, + 0.004951217211782932, + 0.004356693476438522, + 0.019968440756201744, + -0.017489686608314514, + -0.01740160956978798, + -0.00965078454464674, + -0.0295940600335598, + 0.016936056315898895, + 0.017489686608314514, + 0.010292491875588894, + -0.005479682702571154, + 0.02115119807422161, + -0.003488500602543354, + -0.006857467349618673, + -0.02000618912279606, + 0.026901403442025185, + -0.020194927230477333, + 0.017011551186442375, + 0.008763717487454414, + -0.012142120860517025, + 0.008543523028492928, + 0.004872576333582401, + 0.037042904645204544, + -0.005492264870554209, + -0.006253506988286972, + 0.010575599037110806, + 0.012085500173270702, + 0.0177035890519619, + -0.02893977053463459, + 0.003107879776507616, + 0.027807343751192093, + 0.00011638820433290675, + 0.00037393643287941813, + -0.013979167677462101, + -0.0006574360886588693, + 0.0012975712306797504, + 0.006322710774838924, + 0.009418007917702198, + -0.0025448123924434185, + 0.0015940465964376926, + 0.027983499690890312, + 0.004617780912667513, + -0.00810942705720663, + 0.004466790705919266, + -0.003497937461361289, + 0.01636984385550022, + 0.020257839933037758, + 0.006693894509226084, + 0.01636984385550022, + 0.015715554356575012, + -0.020144596695899963, + -0.0008831348386593163, + -0.003903723321855068, + -0.009845812804996967, + -0.026574257761240005, + 0.006624690722674131, + -0.013878507539629936, + -0.012689460068941116, + -0.019767120480537415, + -0.022774340584874153, + -0.012821576558053493, + 0.023969680070877075, + -0.01436922512948513, + -0.024850454181432724, + -0.004834828898310661, + -0.007241233717650175, + 0.004359839484095573, + -0.016155941411852837, + -0.017288366332650185, + 0.020761139690876007, + -0.018257221207022667, + -0.022900165989995003, + 0.006181157659739256, + 0.008719678968191147, + -0.009587871842086315, + 0.027429869398474693, + -0.002749278210103512, + -0.027354374527931213, + 0.003812500275671482, + -0.0241584163159132, + 0.005501701962202787, + 0.001454852637834847, + -0.02228362299501896, + -0.010097463615238667, + 0.031582098454236984, + -0.010267327539622784, + 0.012739790603518486, + 0.0024064048193395138, + -0.009071988984942436, + -0.01204146072268486, + 0.02818481996655464, + 0.015237418003380299, + -0.0030544039327651262, + -0.008342203684151173, + 0.01687314361333847, + 0.005696730688214302, + 0.0065869432874023914, + 0.02205713838338852, + -0.007228651084005833, + 0.014910273253917694, + -0.036690596491098404, + -0.005596071016043425, + 0.010720297694206238, + 0.02851196564733982, + 0.005706167779862881, + 0.012267946265637875, + 0.010934200137853622, + -0.009870978072285652, + -0.0036394905764609575, + 0.006932962220162153, + -0.014029497280716896, + 0.003941470757126808, + -0.0024724630638957024, + -0.0020556673407554626, + 0.001955007202923298, + 0.02210746891796589, + 0.008631600998342037, + 0.015451320447027683, + -0.0008217950817197561, + -0.006939253769814968, + -0.03226155415177345, + 0.03351980447769165, + 0.024523310363292694, + -0.005482828244566917, + 0.018055900931358337, + -0.011676568537950516, + -0.0014430565061047673, + -0.025919968262314796, + 0.004649236798286438, + 0.019465140998363495, + 0.0002597108541522175, + 0.011242471635341644, + -0.0037370051722973585, + -0.036262791603803635, + -0.01864727772772312, + -0.019188325852155685, + 0.020421411842107773, + -0.008228960447013378, + 0.008524649776518345, + -0.011211015284061432, + 0.02223329246044159, + -0.0087888827547431, + 0.00022274973161984235, + 0.018232055008411407, + -0.0225101076066494, + -0.04373680055141449, + 0.015489068813621998, + -0.022812088951468468, + 0.018634695559740067, + -0.02823515050113201, + -0.010833540000021458, + -0.010216997005045414, + 0.0041459365747869015, + -0.008637892082333565, + -0.02575639635324478, + -0.00075023208046332, + -0.01047493889927864, + 0.01492285542190075, + 0.004583179019391537, + 0.032186057418584824, + 0.008392533287405968, + -0.0011426490964367986, + 0.017867162823677063, + 0.0013754254905506968, + 0.006099371239542961, + -0.00928589142858982, + -0.011198433116078377, + -0.03782302141189575, + 0.04303218051791191, + 0.036766089498996735, + 0.014822195284068584, + 0.013387789018452168, + 0.006303837057203054, + 0.0024001135025173426, + 0.04791419208049774, + -0.006061623804271221, + -0.0017159396084025502, + -0.013790429569780827, + -0.011594781652092934, + 0.022220710292458534, + -0.015816213563084602, + 0.002989918692037463, + 0.014897690154612064, + -0.012897071428596973, + -0.010531559586524963, + 0.015212252736091614, + -0.016017533838748932, + -0.015136757865548134, + -0.010984529741108418, + 0.01475928258150816, + -0.03523102402687073, + 0.04217657074332237, + 0.005677856970578432, + 0.023541873320937157, + -0.01727578416466713, + -0.010380569845438004, + -0.0001862801145762205, + -0.007052496075630188, + 0.019666461274027824, + -0.002442579483613372, + 0.019616130739450455, + -0.01884859800338745, + 2.4182008928619325e-05, + -0.020987624302506447, + -0.030852312222123146, + 0.014457302168011665, + -0.02256043814122677, + 0.01058818120509386, + -0.014016915112733841, + -0.020761139690876007, + -0.03349464014172554, + -0.015086428262293339, + -0.03417409211397171, + 0.006675020791590214, + 0.010204414837062359, + 0.0031865204218775034, + 0.027933169156312943, + -0.00014283113705459982, + 0.009606745094060898, + 0.003812500275671482, + -0.0012275810586288571, + 0.020408829674124718, + -0.007851485162973404, + 0.032035067677497864, + 0.027958335354924202, + -0.017565181478857994, + -0.0283358097076416, + -0.05234323814511299, + 0.012456683441996574, + -0.018735354766249657, + 0.01647050492465496, + -0.006662438623607159, + -0.02941790595650673, + 0.008166048675775528, + -0.003648927668109536, + 0.00029883458046242595, + -0.013840760104358196, + 0.007052496075630188, + 0.046957921236753464, + 0.013551361858844757, + -0.0012315131025388837, + -0.015187088400125504, + 0.027127889916300774, + -0.030575497075915337, + -0.005228032357990742, + 0.01867244392633438, + -0.0007643874268978834, + -0.026196783408522606, + -0.02167966216802597, + -0.02135251834988594, + 0.0328906774520874, + 0.02906559593975544, + 0.009757735766470432, + 0.026121288537979126, + -0.018005570396780968, + 0.0024347153957933187, + -0.03550783917307854, + -0.0177035890519619, + 0.01086499635130167, + -0.005070751067250967, + 0.0427553653717041, + -0.020534655079245567, + -0.0020226382184773684, + 0.004202557727694511, + -0.01090274378657341, + 0.008965037763118744, + 0.004167955834418535, + 0.006599525921046734, + 0.016105610877275467, + -0.009719988331198692, + 0.005684148520231247, + -0.002919142134487629, + -0.001491027302108705, + 0.014016915112733841, + 0.006099371239542961, + -0.005489119328558445, + -0.00991501659154892, + 0.008606435731053352, + -0.01730095036327839, + -0.007109117694199085, + -0.0001980762172024697, + -0.01902475394308567, + -0.013928837142884731, + -0.02463655173778534, + -0.021566420793533325, + -0.004419606178998947, + -0.0016703280853107572, + 0.019188325852155685, + -0.031028466299176216, + -0.015627475455403328, + -0.02909076027572155, + -0.004322091583162546, + 0.021088285371661186, + 0.0005233537522144616, + -0.0196035485714674, + -0.0061088078655302525, + 0.02383127249777317, + -0.03764686733484268, + 0.009153774939477444, + 0.031657591462135315, + -0.015828795731067657, + -0.014180487021803856, + 0.011940800584852695, + 0.013048062101006508, + -0.0283358097076416, + 0.02893977053463459, + 0.006599525921046734, + -0.013060644268989563, + -0.0028845402412116528, + -0.008449154905974865, + 0.018836015835404396, + -0.022120051085948944, + -0.002420560223981738, + 0.015287748537957668, + 0.022900165989995003, + -0.010544142685830593, + -0.018093647435307503, + 0.0002217667206423357, + 0.003928888589143753, + 0.02203197218477726, + -0.010009385645389557, + 0.030323846265673637, + -0.018836015835404396, + 0.015476485714316368, + 0.009814356453716755, + -0.007675330154597759, + -0.013677187263965607, + -0.03243770822882652, + -0.010323948226869106, + 0.015048680827021599, + -0.001734813442453742, + -0.016457920894026756, + 0.015111593529582024, + -0.025945132598280907, + -0.008543523028492928, + -0.018534036353230476, + 0.0298457108438015, + 0.008008766919374466, + 0.016558581963181496, + 0.0002740627678576857, + -0.008159756660461426, + -0.01704929955303669, + 0.012488139793276787, + 0.004369276110082865, + -0.011204724200069904, + 0.030122525990009308, + 0.0021752011962234974, + -0.029971536248922348, + 0.011148102581501007, + -0.01614335924386978, + 0.022963078692555428, + 0.015539398416876793, + -0.025328589603304863, + -0.006322710774838924, + 0.021012790501117706, + -0.02327764220535755, + -0.015715554356575012, + -0.031758252531290054, + 0.005910633597522974, + -0.00296318088658154, + 0.011909344233572483, + -0.01857178285717964, + 0.022799506783485413, + 0.008002475835382938, + 0.018810851499438286, + -0.02941790595650673, + -0.017011551186442375, + 0.007744534406810999, + -0.006750516127794981, + -0.004460499156266451, + -0.011242471635341644, + -0.02924175001680851, + -0.01077691838145256, + 0.036690596491098404, + -0.005533158313483, + 0.016332097351551056, + 0.02863778918981552, + -0.0049858191050589085, + -0.026725249364972115, + 0.006951835937798023, + 0.03399793803691864, + 0.02964439056813717, + 0.004105043597519398, + 0.0044510625302791595, + -0.010349113494157791, + 0.01413015741854906, + 0.008285582065582275, + 0.018911510705947876, + -0.040515679866075516, + 0.0034004230983555317, + 0.02944307029247284, + -0.020584983751177788, + -0.01090274378657341, + 0.020811470225453377, + -0.019943276420235634, + 0.007845194078981876, + -0.0235292911529541, + 0.05340016633272171, + -0.007071369793266058, + -0.021893564611673355, + 0.017389027401804924, + 0.025416668504476547, + -0.01892409287393093, + -0.01444472000002861, + 0.009506084956228733, + -0.02815965563058853, + 0.005325546953827143, + 0.006200031377375126, + -0.019112830981612206, + 0.0018087356584146619, + -0.0035293938126415014, + 0.0175777655094862, + -0.0141679048538208, + -0.004963799845427275, + -0.022044556215405464, + -0.031808581203222275, + -0.03248803690075874, + 0.04293151944875717, + 0.03508003428578377, + -0.009984220378100872, + -0.00424974225461483, + -0.011557034216821194, + -0.0008736979798413813, + -0.0027099577710032463, + -0.011538160964846611, + 0.013551361858844757, + -0.022535273805260658, + -0.012985149398446083, + 0.00854981504380703, + -0.020484324544668198, + -0.0038471021689474583, + -0.0019188325386494398, + 0.006049041170626879, + -0.023302806541323662, + 0.0032368504907935858, + 0.2150099128484726, + -0.01455796230584383, + -0.008719678968191147, + 0.00620317691937089, + -0.025404084473848343, + -0.021541254594922066, + 0.0016892018029466271, + -0.014507632702589035, + 0.0022003662306815386, + 0.01955321803689003, + -0.00562752690166235, + -0.008159756660461426, + -0.0072726900689303875, + 0.016785066574811935, + 0.01436922512948513, + 0.0007116981432773173, + -0.024171000346541405, + -0.0007234942750073969, + -0.015086428262293339, + -0.003155064070597291, + 0.01742677390575409, + -0.014016915112733841, + -0.009109736420214176, + -0.00363319949246943, + 0.04383746162056923, + 0.002647045301273465, + 0.0064925746992230415, + -0.014432137832045555, + 0.036564771085977554, + 0.013513614423573017, + -0.013966584578156471, + 0.008688222616910934, + 0.015589728020131588, + -0.0007659601978957653, + -0.011355713941156864, + 0.004652382805943489, + 0.006435953080654144, + -0.011651403270661831, + 0.024171000346541405, + 0.03304166719317436, + 0.01185272354632616, + -0.014985768124461174, + -0.014193070121109486, + -0.016533415764570236, + 0.004611489363014698, + 0.028084158897399902, + -0.002584132831543684, + -1.549467197037302e-05, + 0.007637582719326019, + 0.01699896901845932, + -0.008581271395087242, + 0.004054713528603315, + 0.008008766919374466, + 0.05757756158709526, + 0.0025448123924434185, + -0.0295940600335598, + 0.005102207418531179, + 0.015061262995004654, + 0.0008854940533638, + 0.00983952172100544, + -0.0240325927734375, + 0.02901526540517807, + -0.013966584578156471, + 0.020522071048617363, + -0.036640264093875885, + 0.021818069741129875, + -0.03447607532143593, + 0.009474629536271095, + -0.01455796230584383, + -0.022422030568122864, + -0.008656766265630722, + -0.007945854216814041, + -0.036539606750011444, + 0.004970090929418802, + -0.025089522823691368, + -0.03460190072655678, + 0.013576527126133442, + 0.013853342272341251, + 0.010292491875588894, + 0.01972937397658825, + 0.0014493477065116167, + 0.0005976691609248519, + -0.007436262909322977, + -0.007039913907647133, + -0.011613655835390091, + -0.01480961311608553, + 0.0005382954841479659, + 0.0022554146125912666, + 0.005051877349615097, + -0.01626918464899063, + -0.008354785852134228, + 0.006410788279026747, + 0.000840668857563287, + -0.007524340413510799, + 0.017011551186442375, + -0.01892409287393093, + 0.002821627538651228, + -3.966439180658199e-05, + -0.006907797418534756, + 0.015765883028507233, + -0.013350041583180428, + 0.05420544743537903, + 0.04909694939851761, + -0.00807167962193489, + -0.006876341067254543, + -0.010103754699230194, + 0.0074991751462221146, + 0.015262583270668983, + 0.003815645817667246, + -0.018584365025162697, + -0.012066625989973545, + -0.01634467951953411, + 0.004589470103383064, + -0.0323873795568943, + 0.0027335500344634056, + 0.015413573011755943, + -0.00972627941519022, + 0.02223329246044159, + -0.0011237752623856068, + -0.007820028811693192, + -0.008159756660461426, + 0.007146865129470825, + 0.022963078692555428, + 0.006914088502526283, + 0.01475928258150816, + -0.017779085785150528, + -0.0566716194152832, + 0.024623969569802284, + 0.0022475505247712135, + 0.00417424738407135, + 0.03246287256479263, + -0.007436262909322977, + 0.007587252650409937, + 0.005986128468066454, + 0.007077661342918873, + 0.007209777366369963, + -0.009644493460655212, + -0.026045793667435646, + 0.0044699362479150295, + 0.011481539346277714, + 0.0013604838168248534, + -0.026448434218764305, + 0.0023749484680593014, + 0.02230878733098507, + 0.015614893287420273, + -0.01078950148075819, + 0.00614655576646328, + -0.00205881311558187, + -0.00419312110170722, + -0.013450701721012592, + -0.026599423959851265, + -0.002956889569759369, + -0.0160678643733263, + -0.03253836929798126, + 0.01742677390575409, + 0.008990202099084854, + -0.020962459966540337, + -0.023139234632253647, + 0.01231827586889267, + -0.0006810282939113677, + -0.010600763373076916, + -0.012179868295788765, + -0.016659241169691086, + -0.014859942719340324, + 0.0026171617209911346, + -0.009713697247207165, + -0.15572112798690796, + 0.009084571152925491, + 0.017061881721019745, + -0.013287128880620003, + 0.01433147769421339, + 0.013916254974901676, + 0.015891708433628082, + 0.031103961169719696, + -0.011921927332878113, + 0.003976072650402784, + 0.004252887796610594, + -0.002304171910509467, + -0.005080188158899546, + -0.010525268502533436, + -0.013677187263965607, + -0.015375825576484203, + -0.008920998312532902, + 0.031934406608343124, + 0.02873845025897026, + 0.011330549605190754, + 0.014016915112733841, + -0.01619368977844715, + 0.01692347414791584, + 0.00466181943193078, + 0.002041512168943882, + 0.012104373425245285, + -0.01689830981194973, + 0.00826041679829359, + -0.004315800499171019, + -0.02137768268585205, + -0.016093028709292412, + 0.005105352960526943, + 0.01122988946735859, + -0.011582199484109879, + 0.0012802702840417624, + -0.00616542948409915, + -0.00943688116967678, + -0.026070958003401756, + -0.009826939553022385, + 0.041723597794771194, + 0.014344059862196445, + 0.026045793667435646, + -0.014910273253917694, + 0.01255734357982874, + -0.01444472000002861, + 0.03470255807042122, + 0.019993606954813004, + -0.002574695972725749, + -0.0017112211789935827, + -0.005067605525255203, + 0.006338438950479031, + -0.015828795731067657, + 0.0027131035458296537, + 0.023139234632253647, + -0.007448845077306032, + 0.006876341067254543, + -0.0166969895362854, + 0.027354374527931213, + -0.0007470864802598953, + -0.0025243659038096666, + -0.008556106127798557, + -0.01449505053460598, + 0.020622732117772102, + -0.012777538038790226, + 0.0062597980722785, + -0.016885727643966675, + 0.001772560877725482, + 0.04298185184597969, + -0.027857674285769463, + 0.0028452198021113873, + 0.014419554732739925, + -0.02951856516301632, + 0.011959674768149853, + -0.011154393665492535, + -0.006099371239542961, + -0.006958127487450838, + -0.0037684612907469273, + -0.0012354450300335884, + 0.006008148193359375, + 0.013991749845445156, + -0.015325495973229408, + 0.04270503669977188, + 0.01940222829580307, + -0.03387211263179779, + -0.025466997176408768, + -0.008323329500854015, + -0.016080446541309357, + 0.017716173082590103, + -0.026398103684186935, + -0.0028892585542052984, + 0.00972627941519022, + -0.015715554356575012, + -0.027329208329319954, + -0.022925330325961113, + 0.0085372319445014, + -0.0012448820052668452, + 1.533493195893243e-05, + 0.0032211223151534796, + -0.02010684832930565, + -0.006351021118462086, + 0.008644183166325092, + -0.018445957452058792, + -0.009084571152925491, + 0.006083643063902855, + 0.010128919966518879, + -0.0026612007059156895, + -0.029896041378378868, + 0.0016247164458036423, + 0.04763737693428993, + -0.017766501754522324, + -0.020119432359933853, + -0.01425598282366991, + 0.02941790595650673, + 0.013878507539629936, + 0.006907797418534756, + 0.01722545549273491, + 0.0009531250689178705, + -0.028134489431977272, + 0.011399753391742706, + -0.003011937951669097, + 0.07146865129470825, + -0.005240614991635084, + -0.005357003305107355, + 0.010877578519284725, + -0.015904290601611137, + -0.03369595855474472, + -0.0870206281542778, + 0.002738268580287695, + 0.025768978521227837, + 0.007794864010065794, + 0.022975660860538483, + 0.02881394512951374, + -0.01200371328741312, + -0.006228341720998287, + 0.0014619302237406373, + 0.04962541535496712, + -0.006454826798290014, + -0.030323846265673637, + -0.03198473900556564, + -0.003705548821017146, + -0.004142791032791138, + -0.013664604164659977, + 0.001780424965545535, + -0.03261386230587959, + -0.03369595855474472, + 0.024372318759560585, + -0.013790429569780827, + -0.003985509742051363, + -0.020824052393436432, + -0.008902125060558319, + -0.010418317280709743, + 0.007014748640358448, + -0.041975248605012894, + 0.01942739449441433, + 0.018961841240525246, + -0.00943688116967678, + 0.019062500447034836, + -0.01488510798662901, + -0.022447194904088974, + -0.01847112365067005, + -0.012569926679134369, + -0.014004332013428211, + -0.03266419470310211, + -0.0070084575563669205, + 0.03294100984930992, + -0.014067244715988636, + -0.0160678643733263, + 0.010468646883964539, + 0.015451320447027683, + -0.003315491136163473, + -0.0019738811533898115, + -0.00592636177316308, + -0.009990512393414974, + 0.026599423959851265, + 0.015199670568108559, + -0.0008060669642873108, + -0.0432586669921875, + -0.03495420888066292, + -0.018257221207022667, + 0.011525577865540981, + 0.0323873795568943, + -0.011953383684158325, + -0.003532539354637265, + 0.0010144647676497698, + -0.013110973872244358, + 0.0002748491824604571, + -0.01922607421875, + 0.020496906712651253, + -0.04283085837960243, + 0.01634467951953411, + 0.00367094692774117, + -0.006932962220162153, + -0.018332716077566147, + 0.00018018545233644545, + 0.02476237714290619, + 0.0016404446214437485, + -0.015199670568108559, + -0.001564949518069625, + -0.0011174840619787574, + 0.013110973872244358, + -0.021000206470489502, + 0.009701114147901535, + -0.050732675939798355, + -0.01942739449441433, + 0.025316007435321808, + -0.007436262909322977, + -0.0023466378916054964, + -0.0241584163159132, + 0.008990202099084854, + -0.01209179125726223, + 0.03953424096107483, + 0.022975660860538483, + -0.02140284702181816, + -0.005404187366366386, + 0.024850454181432724, + -0.020207509398460388, + -0.02160416729748249, + 0.009065697900950909, + 0.02931724488735199, + -0.00846173707395792, + -0.008801464922726154, + 0.011947091668844223, + 0.0019817452412098646, + -0.011915636248886585, + 0.01889892853796482, + 0.014973185956478119, + -0.019188325852155685, + -0.011915636248886585, + -0.03757137060165405, + 0.025353755801916122, + 0.016835397109389305, + 0.014432137832045555, + -0.03241254389286041, + -0.0038942864630371332, + 0.014746700413525105, + 0.012897071428596973, + 0.023894183337688446, + -0.0013408235972747207, + -0.018232055008411407, + 0.013765264302492142, + -0.020257839933037758, + -0.027329208329319954, + -0.025592822581529617, + -0.030147690325975418, + 0.0007482660585083067, + 0.026549093425273895, + -0.0010144647676497698, + -0.02335313707590103, + -0.01248184870928526, + 0.011915636248886585, + -0.002043084939941764, + 0.009883560240268707, + -0.010802083648741245, + -0.0018323278054594994, + 0.0014878816436976194, + -0.010361695662140846, + -0.01917574368417263, + -0.002991491463035345, + -0.0020147741306573153, + -0.006379331927746534, + -0.006750516127794981, + 0.027379538863897324, + -0.004564305301755667, + -0.016785066574811935, + 0.012834158726036549, + 0.03387211263179779, + 0.006344730034470558, + 0.04189975559711456, + -0.004366130568087101, + -0.0294682364910841, + -0.002488191006705165, + -0.027580859139561653, + 0.009380260482430458, + 0.012186159379780293, + -0.0007667466416023672, + 0.009864686988294125, + 0.011789810843765736, + -0.007580961566418409, + 0.035860151052474976, + 0.0020273567643016577, + 0.010103754699230194, + -0.00616542948409915, + -0.009078280068933964, + -0.007096535060554743, + 0.020345916971564293, + 0.0028782489243894815, + 0.036489274352788925, + -0.023151816800236702, + 0.04003754258155823, + 0.0020462304819375277, + 0.008946163579821587, + -0.021667080000042915, + 0.013274546712636948, + -0.020295586436986923, + -0.013312294147908688, + -0.020937293767929077, + -0.003107879776507616, + -0.01882343366742134, + -0.002603006549179554, + -0.0016766192857176065, + 0.009587871842086315, + 0.01667182333767414, + -0.0065491958521306515, + -0.014394390396773815, + -0.016432756558060646, + 0.0013243090361356735, + -0.0034067141823470592, + 0.020559819415211678, + 0.027706684544682503, + 0.011538160964846611, + 0.0036929664202034473, + 0.0013408235972747207, + 0.04242822155356407, + 0.017804250121116638, + -0.0118904709815979, + -0.008474319241940975, + 0.008650475181639194, + 0.02446039766073227, + -0.0036048886831849813, + 0.01480961311608553, + -0.01484736055135727, + 0.003545121755450964, + 0.03918193280696869, + 0.008122009225189686, + -0.00036980779259465635, + -0.03394760936498642, + 0.03341914340853691, + 0.03329331800341606, + 0.001029406557790935, + 0.003444461850449443, + -0.013878507539629936, + -0.02901526540517807, + 0.010097463615238667, + 0.008524649776518345, + -0.006080497521907091, + -0.03243770822882652, + 0.004290635697543621, + 0.011362005025148392, + -0.00037334661465138197, + 0.007021039724349976, + 0.006819719914346933, + 0.010424608364701271, + -0.014344059862196445, + 0.020371081307530403, + -0.030021866783499718, + -0.011682859621942043, + -0.029896041378378868, + 0.04177393019199371, + 0.02240944840013981, + 0.0014359788037836552, + -0.0036080344580113888, + 0.013576527126133442, + 0.015250001102685928, + -0.006907797418534756, + 0.009235561825335026, + -0.004592615645378828, + 0.018521452322602272, + -0.018659859895706177, + 0.004866285249590874, + 0.015853961929678917, + -0.030399341136217117, + -0.001608988270163536, + -0.023441214114427567, + 0.004517120774835348, + 0.025202766060829163, + 0.012702042236924171, + 0.0064925746992230415, + 0.11143069714307785, + 0.023617368191480637, + -0.015765883028507233, + 0.026096124202013016, + 0.022069720551371574, + 0.015426156111061573, + 0.01424339972436428, + -0.0198551993817091, + -0.001673473627306521, + -0.050657179206609726, + -0.0025432396214455366, + -0.01110406406223774, + 0.015916872769594193, + -0.020647896453738213, + -0.001852774410508573, + 0.027832509949803352, + 0.0016388717340305448, + 0.027228549122810364, + -0.027480199933052063, + 0.0016939202323555946, + 0.029820546507835388, + 0.0008909989264793694, + -0.006055332254618406, + 0.01925123855471611, + -0.013614274561405182, + -0.022447194904088974, + 0.03268935903906822, + 0.02110086753964424, + 0.014985768124461174, + -0.02198164351284504, + -0.01662149466574192, + 0.0036111800000071526, + -0.045800331979990005, + -0.028285479173064232, + 0.02899010106921196, + -0.03467739373445511, + -0.0008430280722677708, + -0.02132735215127468, + 0.005740769673138857, + 0.017414191737771034, + 0.007278981152921915, + 0.02871328592300415, + -0.010839831084012985, + -0.027304043993353844, + 0.0035388306714594364, + 0.013501032255589962, + -0.00728527270257473, + -0.0060144392773509026, + -0.03424958884716034 + ], + "metadata": { + "source": "Thesis_Verladegeraeusche_in_Speditionen.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 41, + "has_images": true, + "image_count": 51, + "coordinates": "CoordinatesMetadata(points=((204.16666666666666, 189.02777777777797), (204.16666666666666, 642.3611111111111), (936.1666666666666, 642.3611111111111), (936.1666666666666, 189.02777777777797)), system=)", + "links": [], + "last_modified": "2025-05-05T22:59:16", + "_known_field_names": "frozenset({'cc_recipient', 'link_texts', 'url', 'filetype', 'category_depth', 'page_number', 'filename', 'orig_elements', 'detection_origin', 'email_message_id', 'page_name', 'coordinates', 'table_as_cells', 'link_start_indexes', 'sent_to', 'bcc_recipient', 'languages', 'last_modified', 'link_urls', 'file_directory', 'subject', 'data_source', 'detection_class_prob', 'image_base64', 'text_as_html', 'attached_to_filename', 'key_value_pairs', 'signature', 'sent_from', 'header_footer_type', 'parent_id', 'links', 'emphasized_text_contents', 'emphasized_text_tags', 'image_mime_type', 'is_continuation', 'image_path'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "Thesis_Verladegeraeusche_in_Speditionen.pdf", + "detection_class_prob": 0.2568194270133972, + "parent_id": "d45475a34bc527cde6987546fa6dd2f5", + "text_as_html": "
Flurf\u00f6rderger\u00e4t |Anzahl Einzelereignisse ElMax-PegelSchallleistungspegel
LAFmaxLWA,5sLWAmaxLWA,1hKlLWAT,1h
[dB(A)][dB(A)][dB(A)][dB(A)][dB(A)][dB(A)]
Gabelstapler29769,3100,7108,872,15,777,8
STABW [dB]6,54,96,54,92,9-
Gabelhubwagen9968,6100,7108,172,16,279,5
STABW [dB]6,45,16,4512,7-
", + "id": "5ba44de7-0ff3-4c0c-b018-67e92171e1c2", + "processing_timestamp": "2025-05-06T14:18:19.298665", + "chunk_number": 9, + "total_chunks": 49, + "chunking_strategy": "hybrid", + "word_count": 782 + } +} \ No newline at end of file diff --git a/data/processed/85fd305f-83de-70b0-47e8-2dc000000010.json b/data/processed/85fd305f-83de-70b0-47e8-2dc000000010.json new file mode 100644 index 0000000000000000000000000000000000000000..4d33fb30ec49d28f91429db1ad6e59fd50d5d86e --- /dev/null +++ b/data/processed/85fd305f-83de-70b0-47e8-2dc000000010.json @@ -0,0 +1,1570 @@ +{ + "id": "85fd305f-83de-70b0-47e8-2dc000000010", + "content": "[25] Um vorherrschende Fremdger\u00e4usche zu pr\u00fcfen, ist der 95-Perzentilpegel einzusetzen. Der 95-Perzentilpegel beinhaltet alle Pegelwerte, die 95 % der Messzeit \u00fcberschritten wurde. [53] Um jene\n16\n2 Grundlagen\nEinfl\u00fcsse zu ber\u00fccksichtigen, sind Korrekturen an den gemessenen Schalldruckpegeln erforderlich. Zum einen wird eine Fremdger\u00e4uschkorrektur K1 (siehe Formel 15) nach den Verfahren der Normreihe DIN EN ISO 3746 ff [30] und eine Umgebungskorrektur K2 im Freien (siehe Formel 16) nach den Verfahren der Normreihe DIN EN ISO 3744 ff [29] vorgenommen. Bei Messungen im Freien kann in der Regel die Umgebungskorrektur K2 vernachl\u00e4ssigt werden, wenn der Boden aus eben und aus einem harten Material be- steht und keine Gegenst\u00e4nde in der N\u00e4he sind, wodurch die Emissionen reflektiert wer- den k\u00f6nnen. Au\u00dferdem muss die Emissionsquelle mindestens das Dreifache des gr\u00f6\u00dften Abstands betragen. \ud835\udc3e1 = \u221210lg(1 \u2212 10\u22120,1\u2217\u2206\ud835\udc3f\ud835\udc34) = 10lg(1 \u2212 10\u22120,1\u2217(\ud835\udc3f\ud835\udc34\ud835\udc52\ud835\udc5e\nFormel 15: Fremdger\u00e4uschkorrektur [dB(A)]\n\n## Mit L\u0305AFeq: gemessene mittlere Schalldruckpegel [dB(A)], L\u0305AF95: 95-Perzentilpegel [dB(A)]\n\n\ud835\udc3e2 = \ud835\udc3f\ud835\udc4a\ud835\udc34\u2217 \u2212 \ud835\udc3f\ud835\udc4a\ud835\udc34\ud835\udc5f\nFormel 16: Umgebungskorrektur [dB(A)]\nMit: LWA*: Schallleistungspegel der Vergleichsschallquelle ohne Umgebungskorrektur [dB] d.h. K2 = 0 [dB(A), LWA* : kalibrierte Schallleistungspegel der Vergleichsschallquelle bezogen auf 1 pW =\n10-12 W [dB(A)]\nDer Messfl\u00e4chen-Schalldruckpegel nach DIN EN ISO 3744 ff [29] ber\u00fccksichtigt somit die notwendigen Korrekturen, um die Einfl\u00fcsse von Fremdger\u00e4uschen und der Messumge- bung zu ber\u00fccksichtigen (siehe Formel 17). \ud835\udc3f\u0305\ud835\udc5d\ud835\udc53 = \ud835\udc3f\u0305\ud835\udc34\ud835\udc52\ud835\udc5e \u2212 \ud835\udc3e1 \u2212 \ud835\udc3e2\nFormel 17: zeitlich gemittelte Messfl\u00e4chen-Schalldruckpegel [dB(A)]\n\n## Mit L\u0305AFeq: \u00e4quivalenter Dauerschallpegel [dB(A)] K1: Fremdger\u00e4uschkorrektur nach Formel 15, K2: Um-\n\ngebungskorrektur nach Formel 16 [dB(A)]\nDer \u00e4quivalente Dauerschallpegel wird nach der L\u00e4rmfibel [54] als A-bewerteten Schall-\ndruckpegel definiert, der konstant \u00fcber eine Einwirkzeit die gleiche Schallenergie aus- sendet wie der Schallpegel mit einer schwankenden Intensit\u00e4t. [54] Der \u00e4quivalente Dauerschallpegel ergibt sich aus dem gebildeten Mittelwert des gemes- senen Schalldruckpegel LAFeq (siehe Formel 18) aller Mikrofonpositionen auf der H\u00fcllfl\u00e4- che. Dies wird in Anlehnung an die Normreihe DIN EN ISO 3744 ff [29] durchgef\u00fchrt und\n17\n2 Grundlagen\nunter Ber\u00fccksichtigung der notwendigen Korrekturen wie der Fremdger\u00e4uschkorrektur K1 und der Umgebungskorrektur K2. \ud835\udc3f\u0305\ud835\udc34\ud835\udc52\ud835\udc5e = 10 \u2217 lg( 1 \ud835\udc41 \ud835\udc41 \u2211100,1\u2217\ud835\udc3f\ud835\udc34\ud835\udc39\ud835\udc52\ud835\udc5e,\ud835\udc56 \ud835\udc56=1 )\nFormel 18: \u00e4quivalenter Dauerschallpegel [dB(A)]\n\n## Mit L\u0305Aeq: \u00e4quivalenter Dauerschallpegel [dB(A)], N: Anzahl der gemessenen Schalldruckpegel [-]\n\nNach der Betrachtung der Grundlagen des Schallleistungspegels und der Schallmessung, ist es nun sinnvoll, auch die Richtcharakteristik von Schallquellen zu betrachten. In die- ser Thesis wird die 2D-Richtcharakteristik von mehreren Positionen entlang eines Krei- ses um die Schallquelle herum bestimmt und basiert auf Grundlage der einzelnen Schall- messungen an jedem einzelnen Mikrofon. Es werden somit die Messdaten von mehre- ren Mikrofonpositionen, die in einer Kreisbahn um die Schallquelle herum platziert sind, verwendet, um die Richtwerte f\u00fcr verschiedene Winkel zu berechnen. Die gesammelten Messwerte der verschiedenen Positionen werden im Anschluss analysiert, um die Richtcharakteristik zu bestimmen. Dazu werden statistische Verfahren oder mathema- tische Modelle verwendet, um die Beziehung zwischen den Schallpegeln und den Win- keln zu bestimmen. Durch die Verwendung mehrerer Mikrofonpositionen k\u00f6nnen Infor-\n\n## mationen \u00fcber die Schallausbreitung in verschiedene Richtungen gewonnen werden. Im Allgemeinen beschreibt die Richtcharakteristik, wie Schall in Abh\u00e4ngigkeit von der Richtung ausgestrahlt wird und ist damit eine wichtige Eigenschaft von Schallquellen. Bei gleichm\u00e4\u00dfiger Abstrahlung ergibt sich f\u00fcr die jeweilig gew\u00e4hlte H\u00fcllfl\u00e4che ein ge- schlossener Kreis oder Rechteck. Im Mittelpunkt des geschlossenen Kreises, befindet sich die Schallquelle, die sich im Ursprung des Koordinatensystems befindet. Der Mess- punkt liegt auf einer Kugeloberfl\u00e4che, mit dem Abstand r, um die Schallquelle herum. Um nun die Richtcharakteristik der Quelle zu bestimmen, wird der Schallpegel an diesem Messpunkt gemessen. Der komplexe Richtungsfaktor \u0393 beschreibt \"das Verh\u00e4ltnis des komplexen Schalldruckes in einer bestimmten Richtung zum komplexen Schalldruck in\nder Bezugsrichtung\" [55]\nDer Richtungsfaktor beschreibt somit, wie sich der Schalldruck in einer bestimmten Rich- tung im Vergleich zur Bezugsrichtung ver\u00e4ndert. Dabei ist der Schalldruck abh\u00e4ngig von dessen Entfernung r, der Richtung durch den azimutalen Winkel \ud835\udf11 und den polar Winkel\n\u03b8 zwischen der Quelle und dem Messpunkt. [55\u201357]\n18\n2 Grundlagen\n\ud835\udc5d(\ud835\udc5f,\ud835\udf11,\ud835\udf03) \u0393 = \ud835\udc5d0(\ud835\udc5f,\ud835\udf110,\ud835\udf030)\nFormel 19: komplexe Richtungsfaktor [-]\nMit p(r,\u03c6,\u03b8): Schalldruck im Messpunkt [dB], p0(r,\u03c60,\u03b80): Schalldruck im Ursprung [dB]\nDa die Bezugsrichtung meist eine geometrische Symmetrieachse des Strahlers ist, be- rechnet sich der Richtungsfaktor nach Formel 20. Dies bedeutet, dass die Achse des Strahlers so gerichtet ist, dass entlang derer die Eigenschaften des Strahlers spiegelsym- metrisch sind.", + "embedding": [ + 0.023081976920366287, + 0.03132270649075508, + -0.004788352642208338, + -0.03415339067578316, + 0.007162687834352255, + 0.0041368985548615456, + -0.02235446497797966, + -0.024021130055189133, + -0.028862392529845238, + -0.02783064730465412, + 0.010033054277300835, + 0.017910027876496315, + -0.023081976920366287, + 0.018637539818882942, + -0.006074726581573486, + 0.00824072863906622, + 0.03216926380991936, + -0.000944112369325012, + 0.01957669109106064, + -0.004044306464493275, + -0.004629623144865036, + 0.020396795123815536, + -0.005909382831305265, + -0.002602509455755353, + -0.025912661105394363, + 0.018624311313033104, + 0.027301548048853874, + -0.022817427292466164, + -0.03370365500450134, + -0.006111102178692818, + 0.012149453163146973, + -0.011660035699605942, + -0.025767158716917038, + 0.02035711333155632, + -0.01576717384159565, + 0.004880945198237896, + -0.01002644095569849, + -0.013002626597881317, + 0.03055551089346409, + 0.00046585581731051207, + 0.018187804147601128, + 0.0072751217521727085, + 0.0006006109178997576, + -0.009940462186932564, + 0.01597881317138672, + -0.008445754647254944, + 0.018743358552455902, + -0.010198397561907768, + -0.019021136686205864, + 0.01596558466553688, + 0.009199721738696098, + -0.002551252953708172, + -0.019206320866942406, + 0.005724198184907436, + -0.0009093902190215886, + -0.021216901019215584, + -0.006127636414021254, + 0.017804207280278206, + -0.010859772562980652, + -0.0030605115462094545, + -0.03555550426244736, + -0.009312155656516552, + -0.033677201718091965, + 0.007777766324579716, + -0.016203681007027626, + -0.013353154994547367, + 0.0025281046982854605, + 0.008406072854995728, + -0.014603153802454472, + -0.005029754713177681, + 0.030185140669345856, + 0.02973540686070919, + 0.008101840503513813, + 0.018994681537151337, + 0.01665341481566429, + 0.006984116975218058, + -0.002045301254838705, + -0.0007394995773211122, + 0.006650122813880444, + -0.0024024436715990305, + 0.023875627666711807, + -0.016190452501177788, + -0.032486725598573685, + 0.028888847678899765, + 0.013571408577263355, + -0.014775111339986324, + -0.016005268320441246, + 0.03261899948120117, + -0.01924600452184677, + -0.006111102178692818, + 0.005806869827210903, + 0.036190424114465714, + 0.004983458202332258, + 1.0011042377300328e-06, + 0.010899455286562443, + -0.013690456748008728, + 0.009609774686396122, + 0.01162696722894907, + -0.0030572046525776386, + -0.03095233626663685, + -0.0037499945610761642, + -0.005522478837519884, + 0.014140191487967968, + -0.001606313860975206, + -0.021084625273942947, + -0.009715594351291656, + 0.012943102978169918, + -0.001214449293911457, + -0.0031266489531844854, + -0.007757925428450108, + -0.017208969220519066, + 0.010667974129319191, + 0.018531719222664833, + -0.007896813564002514, + 0.029179852455854416, + -0.0011433515464887023, + 0.03164016455411911, + -0.011693105101585388, + -0.027671918272972107, + -0.006372345145791769, + 0.02175922691822052, + 0.010661359876394272, + 0.015912676230072975, + -0.015939129516482353, + 0.032195720821619034, + -0.007103164214640856, + 0.005310839042067528, + -0.022301554679870605, + -0.02965604141354561, + -0.014285693876445293, + -0.010859772562980652, + -0.008835965767502785, + 0.027592552825808525, + 0.0199735164642334, + 0.0038624282460659742, + -0.0006766690057702363, + -0.023412665352225304, + -0.008062157779932022, + -0.018716903403401375, + -0.026587262749671936, + 0.03002641163766384, + 0.020304203033447266, + -0.031084612011909485, + -0.042460255324840546, + -0.00331679405644536, + 0.022513195872306824, + 0.007043640594929457, + -0.0024669277481734753, + -0.007003958337008953, + -0.0015360427787527442, + -0.014179873280227184, + -0.013042309321463108, + 0.027116362005472183, + 0.006111102178692818, + -0.008174591697752476, + 0.001502973958849907, + 0.0055588544346392155, + 0.03092588111758232, + -0.007466920185834169, + 0.00012504115875344723, + -0.018306851387023926, + 0.011891516856849194, + 0.006878296844661236, + -0.001990737859159708, + 0.013743366114795208, + 0.008749986998736858, + -0.002491729101166129, + 0.017605794593691826, + -0.007678560446947813, + -0.001944441581144929, + -0.00685845548287034, + 0.014999978244304657, + -0.009775117971003056, + 0.018888860940933228, + 0.008842580020427704, + 0.010919296182692051, + 0.0007605809369124472, + 0.013280403800308704, + -0.030264506116509438, + -0.03084651567041874, + -0.027619007974863052, + 0.00847882404923439, + 0.010621678084135056, + 0.017023785039782524, + 0.0021180524490773678, + -0.00333167496137321, + 0.015410030260682106, + 0.012705008499324322, + -0.016097860410809517, + -0.006448403466492891, + 0.014126963913440704, + 0.013399451971054077, + 0.003988089505583048, + -0.03214281052350998, + -0.6285704970359802, + -0.00853834766894579, + -0.0004877638421021402, + 0.009861096739768982, + -0.013022467494010925, + 0.030687786638736725, + 0.00740739656612277, + -0.0001346517528872937, + 0.0006324395653791726, + 0.05671949312090874, + 0.00210978533141315, + 0.004156739916652441, + -0.015066116116940975, + -0.0029050884768366814, + -0.013353154994547367, + -0.02965604141354561, + -0.007824062369763851, + -0.011104481294751167, + 0.026706309989094734, + -0.012122998014092445, + -0.023571394383907318, + 0.022407375276088715, + 0.00015500969311688095, + 0.013320086523890495, + -0.003538354765623808, + 0.02035711333155632, + 0.008326707407832146, + -0.02464282140135765, + 0.01904759183526039, + 0.007129619363695383, + -0.03256608918309212, + -0.0027248638216406107, + -0.023769807070493698, + 0.011633581481873989, + 0.04031740128993988, + -0.022830653935670853, + -0.0029629587661474943, + 0.0012342905392870307, + 0.01716928742825985, + 0.002714943140745163, + -0.008194432593882084, + -0.007261894177645445, + 0.015899447724223137, + -0.013941778801381588, + 0.006755942478775978, + -0.0031299558468163013, + 0.03534386307001114, + -0.0025231444742530584, + 0.023571394383907318, + -0.029074031859636307, + -0.0074007827788591385, + -0.011203687638044357, + 0.021216901019215584, + 0.006203694734722376, + 0.024113722145557404, + -0.006339276675134897, + 0.03629624471068382, + -0.02136240340769291, + -0.026111073791980743, + 0.009160039946436882, + -0.014087281189858913, + 0.012156067416071892, + 0.0031216884963214397, + -0.0053141457028687, + -0.0071759154088795185, + 0.014193100854754448, + -0.01476188376545906, + -0.032671909779310226, + 0.013445748016238213, + -0.0084391413256526, + -0.024708958342671394, + 0.026269802823662758, + -0.0016782382735982537, + -0.02034388668835163, + 0.03523804247379303, + 0.013485429808497429, + 0.02793646790087223, + -0.023425891995429993, + -4.167177394265309e-05, + 0.008108453825116158, + -0.007493375334888697, + -0.008313479833304882, + -0.014034370891749859, + 0.004199729301035404, + 0.010542312636971474, + -0.024470863863825798, + -0.012599187903106213, + 0.02145499549806118, + 0.01231479737907648, + 0.012585960328578949, + 0.014298921450972557, + 0.03134915977716446, + -0.006428562104701996, + -0.020740710198879242, + -0.0008763214573264122, + 0.02973540686070919, + -0.024695731699466705, + 0.014629608020186424, + 0.013458975590765476, + -0.030793605372309685, + -0.01266532577574253, + -0.010859772562980652, + 0.018108438700437546, + -0.013862413354218006, + 0.02214282564818859, + -0.005181870888918638, + -0.01628304459154606, + 0.01182537991553545, + 0.02415340393781662, + -0.03962957113981247, + -0.006597212515771389, + -0.023769807070493698, + -0.011144164018332958, + -0.011468237265944481, + -0.0036276401951909065, + -0.023822717368602753, + 0.03494703769683838, + 0.010747338645160198, + 0.009900779463350773, + -0.011011889204382896, + 0.011547602713108063, + -0.00076967483619228, + 0.030079321935772896, + -0.02546292543411255, + -0.010105805471539497, + 0.035290952771902084, + 0.016137542203068733, + 0.01391532365232706, + 0.002430552151054144, + -0.02335975505411625, + 0.016415320336818695, + 0.007202370557934046, + 0.016031723469495773, + -0.0083796177059412, + 0.014550243504345417, + 0.016693098470568657, + 0.020978806540369987, + -0.01996028795838356, + -0.005886234808713198, + -0.02933858148753643, + -0.030079321935772896, + 0.002481808653101325, + 0.022222189232707024, + -0.04912691190838814, + -0.011329349130392075, + -0.0405290424823761, + -0.027380913496017456, + 0.01648145727813244, + 0.008908716961741447, + 0.002700062235817313, + 0.01252643670886755, + -0.03182535246014595, + 0.0017394154565408826, + 0.019100502133369446, + -0.003664015792310238, + 0.009325383231043816, + -0.004546951036900282, + -0.012195749208331108, + -0.029074031859636307, + -0.017632249742746353, + 0.025912661105394363, + 0.015317438170313835, + -0.0464814156293869, + -0.030608421191573143, + -0.006375652272254229, + -0.016719551756978035, + 0.012208976782858372, + -0.007394168991595507, + -0.02514546550810337, + -0.03873010352253914, + -0.0024669277481734753, + 0.02383594401180744, + -0.013081992045044899, + 0.0008697077282704413, + 0.000991235370747745, + 0.0012417309917509556, + -0.029100487008690834, + -0.006590598728507757, + -0.020780393853783607, + -0.024391498416662216, + 0.027275092899799347, + -0.013756593689322472, + -0.023915309458971024, + 0.01227511465549469, + 0.024021130055189133, + -0.001599700073711574, + 0.006593905854970217, + 0.006299593951553106, + -0.015119025483727455, + 0.035661324858665466, + -0.017288334667682648, + 0.018994681537151337, + -0.026719538494944572, + 0.017407381907105446, + -0.028280382975935936, + 0.00902776513248682, + 0.012883579358458519, + -0.01806875690817833, + 0.0015674580354243517, + 0.025171920657157898, + 0.03415339067578316, + -0.001772484160028398, + 0.030687786638736725, + -0.03600523993372917, + 0.017632249742746353, + -0.009325383231043816, + 0.011851835064589977, + -0.017328016459941864, + 0.042169250547885895, + 0.03992057591676712, + 0.0136640015989542, + -0.011197073385119438, + -0.027619007974863052, + -0.0057374257594347, + 0.004404755309224129, + 0.034973494708538055, + -0.0015203350922092795, + 0.01607140526175499, + 0.017195742577314377, + -0.001833661342971027, + -0.007824062369763851, + -0.016243362799286842, + 0.02703699842095375, + 0.026997314766049385, + -0.008167977444827557, + -0.012499981559813023, + -0.009894165210425854, + -0.0020254601258784533, + 0.009702366776764393, + -0.014629608020186424, + -0.011157391592860222, + -0.024470863863825798, + 0.0034060797188431025, + 0.021984094753861427, + -0.012394161894917488, + 0.032486725598573685, + 0.015925902873277664, + 0.005128961056470871, + 0.03304228186607361, + 0.003601185278967023, + 0.024179859086871147, + 0.018201032653450966, + 0.011574056930840015, + -0.011130936443805695, + 0.008458982221782207, + -0.02515869401395321, + 0.010119033046066761, + 0.041084595024585724, + -0.017539657652378082, + -0.006302901078015566, + -0.0007882759673520923, + 0.003654095344245434, + -0.014126963913440704, + 0.007023799233138561, + 0.009914007037878036, + -0.0007853824645280838, + 0.036481428891420364, + 0.00330356671474874, + -0.01187828928232193, + 0.02175922691822052, + 0.013346541672945023, + -0.0007878626347519457, + 0.00310680759139359, + -0.029682496562600136, + 0.015079343691468239, + 0.0033515163231641054, + -0.03603169322013855, + -0.030290961265563965, + -0.01546294055879116, + -0.011501305736601353, + -0.007255280390381813, + -0.005426579620689154, + 0.009642843157052994, + 0.010284376330673695, + 0.014391513541340828, + 0.0016881589544937015, + -0.018492037430405617, + 0.02444440871477127, + 0.03764544799923897, + -0.0042195706628263, + -0.025185149163007736, + -0.011335962451994419, + 0.009490727446973324, + 0.032804183661937714, + -0.010873000137507915, + -0.01966928318142891, + -0.003829359542578459, + -0.009490727446973324, + -0.0045105754397809505, + 0.009801573120057583, + -0.007288349326699972, + 0.004007930867373943, + 0.01042987871915102, + -0.016732780262827873, + 0.00025566265685483813, + 0.006544302683323622, + 0.005290997680276632, + 0.0065178475342690945, + -0.0005663021001964808, + 0.019325368106365204, + 0.004398141987621784, + -0.01834653504192829, + -0.019735421985387802, + -0.02005288191139698, + 0.018240714445710182, + -0.0005034714704379439, + -0.021587271243333817, + -0.018597856163978577, + 0.005955679342150688, + -0.0099272346124053, + -0.008101840503513813, + 0.005462955217808485, + 0.014378285966813564, + 0.01656082272529602, + 0.0002048194728558883, + -0.021878276020288467, + 0.007433851715177298, + -0.014378285966813564, + 0.03283064067363739, + -0.009034378454089165, + 0.00309192668646574, + -0.014246011152863503, + 0.011058185249567032, + -0.00638226605951786, + -0.003554889000952244, + 0.009523795917630196, + 0.02843911200761795, + 0.028809482231736183, + -0.012678553350269794, + -0.005598536692559719, + -0.0019460950279608369, + -0.025515835732221603, + 0.006134250201284885, + 0.014259238727390766, + 0.004589940421283245, + 0.0076256501488387585, + 0.02572747692465782, + -0.0013376303249970078, + 0.009821414016187191, + -0.02124335616827011, + 0.020423250272870064, + -0.02703699842095375, + 0.016600504517555237, + 0.024179859086871147, + -0.01607140526175499, + 0.01585976593196392, + 0.012989399023354053, + 0.029417946934700012, + -0.00828041136264801, + -0.020978806540369987, + 0.014708973467350006, + 0.022724835202097893, + 0.020515844225883484, + -0.03325391933321953, + -0.015410030260682106, + 0.024391498416662216, + -0.008425913751125336, + -0.0016683177091181278, + -0.01906081847846508, + 0.0011789003619924188, + -0.007943110540509224, + 0.000884588691405952, + 0.017513202503323555, + -0.011937813833355904, + 0.0017328016692772508, + 0.0397089384496212, + 0.0038525075651705265, + -0.010244694538414478, + 0.012030405923724174, + -0.015277755446732044, + 0.016216907650232315, + 0.004890866111963987, + -0.01272484939545393, + -0.008386231027543545, + 0.006898138206452131, + -0.028280382975935936, + -0.003878962714225054, + 0.01427246630191803, + -0.008055543527007103, + -0.03166662156581879, + 0.0219576396048069, + -0.016415320336818695, + -0.020502615720033646, + -0.02056875266134739, + -0.016335954889655113, + -0.022407375276088715, + 0.02534387819468975, + -0.002037034137174487, + -0.025793613865971565, + -0.0036309470888227224, + -0.004130285233259201, + 0.010211625136435032, + -0.024814778938889503, + 0.0035879577044397593, + -0.0003904177574440837, + -0.016944419592618942, + -0.023783033713698387, + -0.005257928743958473, + -0.002091597532853484, + -0.0020734097342938185, + 0.00902776513248682, + 0.004292321857064962, + -0.011263211257755756, + -0.009563478641211987, + -0.01301585417240858, + 0.006534382235258818, + -0.0008395325276069343, + -0.03113752044737339, + -0.019021136686205864, + 0.03452375903725624, + -0.0029563449788838625, + 0.002653765957802534, + -0.00320601393468678, + 0.0050595165230333805, + -0.004715601447969675, + 0.01307537779211998, + 0.011554216034710407, + -0.008869035169482231, + -0.02244705706834793, + 0.018240714445710182, + 0.009768504649400711, + 0.007116391789168119, + 0.01645500212907791, + -0.00750660290941596, + 0.016746006906032562, + -0.024669276550412178, + -0.0029993343632668257, + 0.012347865849733353, + 0.017433837056159973, + 0.01411373633891344, + -0.002645498840138316, + -0.0025132237933576107, + -0.011772469617426395, + 0.0020882906392216682, + -0.007440465502440929, + -0.007347872946411371, + -0.003262230660766363, + 0.004169967491179705, + 0.0074007827788591385, + -0.005476182326674461, + 0.012969558127224445, + -0.00017309415852651, + 0.017910027876496315, + -0.0019312141230329871, + 0.007936496287584305, + -0.02973540686070919, + 0.037169259041547775, + 0.007414010353386402, + 0.0010466254316270351, + 0.023201024159789085, + -0.015608442947268486, + 0.013544954359531403, + -0.03695761784911156, + -0.007658719085156918, + 0.014417968690395355, + 0.01542325783520937, + 0.01497352309525013, + -0.013783048838376999, + -0.035872962325811386, + -0.012003950774669647, + 0.006332662887871265, + 0.010211625136435032, + -0.011679877527058125, + 0.008412686176598072, + -0.015886221081018448, + 0.010145488195121288, + -0.01767193153500557, + 0.009107129648327827, + 0.0198544692248106, + -0.027301548048853874, + -0.0298412274569273, + 0.009120357222855091, + -0.02014547400176525, + 0.02044970542192459, + -0.03701052814722061, + -0.0040509202517569065, + -0.007447079289704561, + -0.005922610405832529, + -0.014285693876445293, + -0.029497312381863594, + 0.002974532777443528, + -0.017486747354269028, + 0.0008341588545590639, + 0.011197073385119438, + 0.02256610430777073, + -0.005482796113938093, + 0.0010598530061542988, + 0.009100516326725483, + -0.003262230660766363, + 0.005496023688465357, + -0.02746027708053589, + -0.0004943775711581111, + -0.035396773368120193, + 0.035978782922029495, + 0.011296279728412628, + 0.0030142152681946754, + -0.0009300581878051162, + -0.0034589897841215134, + 0.011124322190880775, + 0.04661368951201439, + -0.013518499210476875, + -0.0121759083122015, + -0.007334645371884108, + -0.018002619966864586, + 0.011157391592860222, + 0.009861096739768982, + 0.007480147760361433, + 0.02894175797700882, + -0.004874331410974264, + -0.008796283975243568, + -0.0020899439696222544, + -0.022195735946297646, + -0.018941771239042282, + -0.013399451971054077, + 0.023174569010734558, + -0.0464814156293869, + 0.032989371567964554, + -0.01307537779211998, + 0.021984094753861427, + -0.01697087474167347, + 0.0007986099808476865, + -0.005006606690585613, + -0.02107139863073826, + 0.022010549902915955, + -0.001431049546226859, + 0.0019262537825852633, + -0.008525120094418526, + -0.012222204357385635, + 0.0064384825527668, + -0.016428546980023384, + 0.01837299019098282, + -0.035767145454883575, + -0.007037026807665825, + -0.016402091830968857, + -0.023928536102175713, + -0.021997323259711266, + -0.0038128250744193792, + -0.012334638275206089, + 0.01382273156195879, + 0.0007779420120641589, + -0.0029447709675878286, + 0.02923276275396347, + 0.0019659362733364105, + -0.012089929543435574, + -0.0005567948101088405, + 0.004553564824163914, + 0.037460263818502426, + -0.013849186711013317, + 0.022195735946297646, + 0.01936505176126957, + -0.03645497187972069, + -0.01944441720843315, + -0.028915302827954292, + 0.0020271134562790394, + -0.011018502525985241, + 0.022777745500206947, + 0.0026736073195934296, + -0.02064811810851097, + 0.012129612267017365, + 0.005446420516818762, + 0.00685845548287034, + -0.005697743035852909, + -0.018730131909251213, + 0.047751255333423615, + 0.017936481162905693, + 0.0012045287294313312, + -0.010456333868205547, + 0.030370326712727547, + -0.012605802156031132, + 0.006094567943364382, + 0.012632257305085659, + -0.01017855666577816, + -0.019140183925628662, + -0.0025148773565888405, + -0.007665332872420549, + 0.04198406636714935, + 0.004679225850850344, + 0.009411361999809742, + 0.01476188376545906, + -0.03333328664302826, + 0.009331997483968735, + -0.032486725598573685, + -0.00728173553943634, + 0.01562167052179575, + -0.011679877527058125, + 0.04388882592320442, + -0.013167970813810825, + 0.011335962451994419, + -0.013902096077799797, + -0.015502623282372952, + -0.0013921937206760049, + 0.01411373633891344, + -0.010370355099439621, + 0.017407381907105446, + -0.021997323259711266, + 0.013796276412904263, + 0.017738070338964462, + -0.0021130922250449657, + 0.0013690455816686153, + 0.018624311313033104, + -0.012572732754051685, + -0.017023785039782524, + 0.017645476385951042, + -0.003716925857588649, + 0.007910041138529778, + -0.003650788450613618, + -0.0281481072306633, + 0.004715601447969675, + -0.018690448254346848, + -0.009417976252734661, + -0.015410030260682106, + -0.014497333206236362, + 0.02915339730679989, + -0.016706325113773346, + 0.0062433769926428795, + -0.013187811709940434, + -0.0045006549917161465, + 0.02624334767460823, + 0.0016236748779192567, + -0.006352504249662161, + -0.007103164214640856, + 0.02244705706834793, + -0.043862368911504745, + 0.013201039284467697, + 0.03216926380991936, + -0.01407405361533165, + -0.003156410763040185, + 0.0028968211263418198, + 0.003644174663349986, + -0.008134908974170685, + 0.04129623621702194, + -0.01382273156195879, + -0.02066134661436081, + -0.019484099000692368, + -0.0006816292880102992, + 0.018412671983242035, + -0.015634898096323013, + -0.012387548573315144, + -0.0023908696603029966, + 0.018399443477392197, + -0.014298921450972557, + -0.018637539818882942, + 0.010396810248494148, + 0.001162366010248661, + 0.026071390137076378, + -0.007513216696679592, + 0.021997323259711266, + -0.024285679683089256, + 0.01756611280143261, + 0.012804213911294937, + -0.013902096077799797, + 0.005228166934102774, + -0.016798917204141617, + -0.007341259159147739, + 0.029285671189427376, + 0.010939138010144234, + -0.03851846233010292, + -0.00608795415610075, + -0.017883572727441788, + 0.0006766690057702363, + -0.01362431887537241, + 0.02174600027501583, + 0.005393510684370995, + 0.016137542203068733, + 0.010390196926891804, + 0.0041898088529706, + -0.0315343476831913, + 0.03291000425815582, + 0.013280403800308704, + -0.01332669984549284, + 0.029179852455854416, + 0.008749986998736858, + -0.014206328429281712, + 0.020939122885465622, + -0.020820075646042824, + 0.03343910351395607, + 0.025092557072639465, + -0.01866399496793747, + -0.001378966262564063, + 0.007010571658611298, + -0.020925896242260933, + -0.02126981131732464, + -0.023068750277161598, + 0.016441775485873222, + -0.0005456341314129531, + 0.014828020706772804, + -0.01626981794834137, + 0.025595201179385185, + 0.0045767128467559814, + 0.022010549902915955, + -0.02366398647427559, + -0.008115068078041077, + -0.0019543622620403767, + -0.0010730804642662406, + 0.008723532781004906, + -0.005248008295893669, + -0.025171920657157898, + 5.378836431191303e-05, + 0.03613751381635666, + 0.0016807185020297766, + 0.01924600452184677, + 0.03182535246014595, + -0.005267849657684565, + -0.03444439545273781, + 0.028121652081608772, + 0.011309507302939892, + 0.029603131115436554, + 0.0023578007239848375, + 0.0003670629521366209, + -0.017923254519701004, + -0.003968248143792152, + 0.0020122325513511896, + 0.019880924373865128, + -0.026097845286130905, + -0.00898808240890503, + 0.03804227337241173, + -0.0011946080485358834, + -0.014656063169240952, + 0.01974864862859249, + -0.018505264073610306, + 0.013207652606070042, + -0.03489413112401962, + 0.045370303094387054, + 0.004662691615521908, + -0.032804183661937714, + 0.008260570466518402, + 0.018941771239042282, + -0.015251300297677517, + -0.025370333343744278, + 0.004292321857064962, + -0.026600491255521774, + 0.0020949044264853, + 0.012506595812737942, + 0.008611098863184452, + 0.025820069015026093, + -0.015383576042950153, + 0.025185149163007736, + -0.0046759191900491714, + 0.007030413020402193, + -0.036481428891420364, + -0.025370333343744278, + -0.031693074852228165, + 0.03473540022969246, + 0.04740734025835991, + -0.02087298594415188, + 0.008220887742936611, + -0.012195749208331108, + -0.0025165306869894266, + -0.010555540211498737, + -0.025899432599544525, + 0.009331997483968735, + -0.015039660967886448, + -0.006683191284537315, + 0.012142839841544628, + -0.02465604990720749, + -0.009708981029689312, + -0.008148136548697948, + -0.0044510518200695515, + -0.017195742577314377, + -0.002614083467051387, + 0.20222193002700806, + -0.02743382193148136, + 0.002397483214735985, + 0.008346549235284328, + -0.029417946934700012, + -0.032275084406137466, + 0.00982802826911211, + -0.0016931192949414253, + 0.006514540873467922, + 0.024497319012880325, + 0.001886571291834116, + -0.004322083666920662, + 0.003086966462433338, + 0.008611098863184452, + 0.0058333249762654305, + -0.007678560446947813, + -0.03383592888712883, + -0.006084647495299578, + -0.012572732754051685, + 0.02076716534793377, + 0.024669276550412178, + -0.006107795517891645, + 0.006197080947458744, + -0.008961627259850502, + 0.054550185799598694, + 0.020793620496988297, + 0.0012028752826154232, + 0.004980151541531086, + 0.04362427443265915, + 0.010019826702773571, + -0.02206346020102501, + -0.006220228970050812, + 0.013035695068538189, + 0.0023561473935842514, + -0.020621662959456444, + 0.0192724596709013, + -0.0052347807213664055, + -0.013280403800308704, + 0.024616366252303123, + 0.019986743107438087, + 0.012513209134340286, + -0.024708958342671394, + -0.004811501130461693, + -0.018187804147601128, + 0.017711615189909935, + 0.013234107755124569, + -0.011759242042899132, + -0.005677901674062014, + 0.003776449477300048, + 0.011560830287635326, + -0.008068771101534367, + 0.005128961056470871, + 0.00011625727347563952, + 0.033386196941137314, + -0.012063474394381046, + -0.026388850063085556, + 0.02335975505411625, + -0.005036368500441313, + -0.0007262721192091703, + 0.009391521103680134, + -0.02514546550810337, + 0.021283037960529327, + -0.02822747267782688, + 0.026269802823662758, + -0.036666613072156906, + 0.019193094223737717, + -0.03322746604681015, + -0.005102505907416344, + -0.0018038995331153274, + -0.027592552825808525, + 0.0036871640477329493, + -0.01191797200590372, + -0.023399436846375465, + 0.019537009298801422, + -0.023730125278234482, + -0.03261899948120117, + 0.008015861734747887, + 0.010482789017260075, + 0.028783027082681656, + 0.04203697666525841, + 0.006421948317438364, + -0.0015095877461135387, + -0.016693098470568657, + -0.016216907650232315, + -0.003384585026651621, + -0.02386239916086197, + 0.001599700073711574, + 0.007652105297893286, + 0.0006989903631620109, + -0.014219556003808975, + -0.0003623093361966312, + 0.014219556003808975, + 0.0025165306869894266, + 0.00032014670432545245, + 0.012162680737674236, + -0.015185163356363773, + -0.0069245933555066586, + 0.0029447709675878286, + -0.0090806744992733, + -0.005029754713177681, + -0.023293616250157356, + 0.0608464740216732, + 0.02533065155148506, + -0.01937827840447426, + -0.016891509294509888, + -0.011686490848660469, + 0.008551575243473053, + 0.024589911103248596, + 0.0114748515188694, + -0.0030572046525776386, + -0.021521132439374924, + -0.029206307604908943, + 0.012962943874299526, + -0.026997314766049385, + 0.0036276401951909065, + 0.015079343691468239, + 0.011931199580430984, + 0.009153425693511963, + -0.008617712184786797, + -0.0136640015989542, + -0.00943120289593935, + 0.012943102978169918, + 0.026587262749671936, + -0.0020122325513511896, + 0.002825723495334387, + -0.025515835732221603, + -0.04738088324666023, + 0.016746006906032562, + -0.0018501956947147846, + -0.007123005576431751, + 0.02955022267997265, + -0.015224846079945564, + 0.021494677290320396, + 0.0011177232954651117, + 0.027592552825808525, + 0.006296287290751934, + 0.00718252919614315, + -0.024669276550412178, + -0.002258594613522291, + 0.008756601251661777, + 0.02515869401395321, + -0.015740718692541122, + 0.021111080422997475, + 0.006190467160195112, + 0.011130936443805695, + -0.010145488195121288, + 0.01716928742825985, + 0.0011714599095284939, + -0.01867722161114216, + -0.004011237528175116, + -0.022724835202097893, + 0.0016898124013096094, + -0.004857797175645828, + -0.027222182601690292, + 0.021798910573124886, + -0.006931206677109003, + -0.014140191487967968, + -0.03230154141783714, + 0.02075393870472908, + 0.019391506910324097, + -0.020939122885465622, + -0.01785711757838726, + -0.009583319537341595, + -0.02403435669839382, + -0.0011846874840557575, + -0.0002155668189516291, + -0.16730134189128876, + 0.0025347184855490923, + 0.011686490848660469, + -0.022632243111729622, + 0.01481479313224554, + 0.01292326208204031, + 0.007883586920797825, + 0.021137535572052002, + -0.0035019791685044765, + -0.0019742033910006285, + 0.024722186848521233, + -0.006180546712130308, + -0.017103150486946106, + -0.007466920185834169, + -0.003249003319069743, + -0.005876314360648394, + -0.02465604990720749, + 0.023690441623330116, + 0.02883593738079071, + 0.015912676230072975, + 0.006309514865279198, + -0.01756611280143261, + 0.020317431539297104, + 0.012843896634876728, + 0.010416651144623756, + 0.009484113194048405, + -0.023968219757080078, + 0.01517193578183651, + -0.011587284505367279, + -0.011805538088083267, + -0.004424596671015024, + -0.0031332627404481173, + 0.028783027082681656, + 0.007936496287584305, + 0.011560830287635326, + -0.02604493498802185, + 0.002655419521033764, + -0.008749986998736858, + 0.0006291326717473567, + 0.020105790346860886, + 0.013148128986358643, + 0.03312164545059204, + -0.015290983021259308, + 0.022989384829998016, + -0.0054331934079527855, + 0.03904756158590317, + 0.025277741253376007, + -0.023796262219548225, + -0.005578695796430111, + 0.004361766390502453, + 0.007738084066659212, + -0.011964268051087856, + 0.004467586055397987, + 0.006279752589762211, + -0.015396802686154842, + 0.007698401343077421, + -0.027513187378644943, + 0.013293631374835968, + 0.009206335991621017, + -0.001547616790048778, + -0.007698401343077421, + -0.023108432069420815, + 0.01925923116505146, + -0.008994695730507374, + -0.004507268778979778, + -0.012513209134340286, + -0.004166660830378532, + 0.0249338261783123, + -0.030687786638736725, + 0.00441467622295022, + -0.0021759227383881807, + -0.03624333441257477, + 0.018544945865869522, + -0.008134908974170685, + -0.001102015608921647, + 0.000442294345702976, + -0.014179873280227184, + -0.009867710992693901, + -0.0011855141492560506, + 0.006455017253756523, + -0.010820089839398861, + 0.038968198001384735, + 0.0025115704629570246, + -0.007539671845734119, + -0.031984079629182816, + -0.012989399023354053, + -0.01501320581883192, + 0.01915341056883335, + -0.022989384829998016, + -0.007301576901227236, + 0.011309507302939892, + -0.0044609722681343555, + -0.006593905854970217, + -0.02075393870472908, + -0.0032357757445424795, + -0.004146819468587637, + -0.0021908036433160305, + -0.0014748655958101153, + -0.02346557378768921, + -0.0019775102846324444, + 0.012830669060349464, + -0.03084651567041874, + -0.02066134661436081, + 0.01526452787220478, + 6.94443442625925e-05, + -0.010443106293678284, + -0.020211610943078995, + -0.002056875266134739, + 0.046534325927495956, + -0.015132253058254719, + -0.011739401146769524, + -0.017790978774428368, + 0.018015846610069275, + -0.0014054212952032685, + -0.0062665254808962345, + 0.00025008231750689447, + -0.005644833203405142, + -0.009999985806643963, + 0.010952364653348923, + -0.005585309583693743, + 0.050449661910533905, + -0.01726187951862812, + 0.009993371553719044, + 0.016825372353196144, + -0.017142832279205322, + -0.03441793844103813, + -0.08306866139173508, + 0.012830669060349464, + 0.021018488332629204, + 0.007771153002977371, + 0.02244705706834793, + 0.02484123408794403, + -0.0033994659315794706, + -0.0091401981189847, + -0.005241394508630037, + 0.03999994322657585, + -0.02047616057097912, + -0.02743382193148136, + -0.016931192949414253, + -0.014999978244304657, + 0.0028902075719088316, + 0.00399139616638422, + 0.009371679276227951, + -0.029391491785645485, + -0.044867660850286484, + 0.02833329141139984, + -0.01575394533574581, + -0.0017542963614687324, + 0.0037367669865489006, + -0.006130943540483713, + -0.021679863333702087, + -0.01501320581883192, + -0.038968198001384735, + 0.014259238727390766, + 0.005846552550792694, + -0.012063474394381046, + 0.024391498416662216, + -0.022420601919293404, + -0.006970889400690794, + -0.017195742577314377, + -0.015899447724223137, + -0.01718251407146454, + -0.006335969548672438, + -0.004262560047209263, + 0.022804200649261475, + -0.017539657652378082, + -0.006898138206452131, + 0.01472220104187727, + 0.004064147360622883, + -0.009120357222855091, + 0.0017576032551005483, + -0.011587284505367279, + -0.0032820720225572586, + 0.02804228663444519, + 0.010502629913389683, + -0.007691788021475077, + -0.038862377405166626, + -0.03195762634277344, + -0.024695731699466705, + 0.02047616057097912, + 0.02046293392777443, + -0.0018072064267471433, + -0.0034656033385545015, + -0.0026322712656110525, + -0.01814812235534191, + -0.00016265684098470956, + -0.03470894321799278, + 0.02177245542407036, + -0.031058156862854958, + 0.02095235139131546, + -0.002590935444459319, + -0.0014740389306098223, + -0.012883579358458519, + -0.005254622083157301, + 0.010615063831210136, + -0.006679884623736143, + -0.018425898626446724, + 0.0013020813930779696, + 0.006871683057397604, + 0.01431214902549982, + -0.02316134236752987, + 0.016031723469495773, + -0.04343909025192261, + -0.011752628721296787, + 0.017301563173532486, + -0.003667322685942054, + -0.009212949313223362, + -0.02835974656045437, + 0.00828041136264801, + -0.029708951711654663, + 0.02695763297379017, + 0.019695738330483437, + -0.004751977045089006, + -0.01517193578183651, + 0.005674595013260841, + -0.034867674112319946, + -0.027275092899799347, + 0.015912676230072975, + 0.019193094223737717, + -0.0011276438599452376, + -0.020899441093206406, + 0.019113728776574135, + 0.022328009828925133, + -0.01707669533789158, + 0.013584636151790619, + 0.01834653504192829, + -0.005102505907416344, + -0.004160047043114901, + -0.04383591562509537, + 0.02115076221525669, + 0.021494677290320396, + -0.011990723200142384, + -0.021931184455752373, + -0.011355803348124027, + 0.026798903942108154, + 0.018928544595837593, + 0.024510545656085014, + 0.005039675161242485, + -0.0312433410435915, + 0.0069510480388998985, + -0.021005259826779366, + -0.019126957282423973, + -0.036269787698984146, + -0.03296291455626488, + -0.018915316089987755, + 0.02455022931098938, + 0.0029497311916202307, + -0.0026256574783474207, + 0.001169806462712586, + 0.011468237265944481, + -0.006964275613427162, + 0.01945764385163784, + -0.021124308928847313, + -0.0033052200451493263, + -0.0024173245765268803, + 0.0013384571066126227, + -0.01411373633891344, + 0.002048608148470521, + 0.013009240850806236, + 0.00014436569472309202, + -0.00863093975931406, + 0.021216901019215584, + 0.002375988522544503, + -0.021415313705801964, + 0.013888868503272533, + 0.027380913496017456, + 0.009133584797382355, + 0.03859782591462135, + -0.008353162556886673, + -0.029708951711654663, + 0.010357127524912357, + -0.028412656858563423, + -0.0012880272697657347, + 0.014947067946195602, + -0.0013698723632842302, + 0.01227511465549469, + 0.016626959666609764, + -0.01546294055879116, + 0.04343909025192261, + 0.003422614187002182, + 0.005290997680276632, + 0.007559512741863728, + -0.00898146815598011, + -0.0034556828904896975, + -9.383253927808255e-05, + 0.00412036431953311, + 0.03174598515033722, + -0.03915338218212128, + 0.04920627921819687, + 0.00968913920223713, + 0.005651446990668774, + -0.01686505414545536, + 0.007162687834352255, + -0.013419292867183685, + -0.033888839185237885, + -0.015330665744841099, + 0.0143650583922863, + -0.0304232370108366, + -0.01996028795838356, + -0.0028587921988219023, + 0.008359775878489017, + 0.025793613865971565, + -0.00341600039973855, + -0.015568760223686695, + -0.008816124871373177, + -0.004761897958815098, + 0.002982799895107746, + 0.0022437137085944414, + 0.024126948788762093, + 0.00828041136264801, + 0.001054892665706575, + -0.012394161894917488, + 0.04939146339893341, + 0.010707656852900982, + -0.02177245542407036, + -0.019510554149746895, + -0.004679225850850344, + 0.015687808394432068, + -0.0035813439171761274, + 0.021190445870161057, + 0.004556871484965086, + 0.005125653930008411, + 0.030396781861782074, + 0.0022470206022262573, + -0.01162696722894907, + -0.01127643883228302, + 0.03074069693684578, + 0.02904757671058178, + -0.003875655820593238, + -0.012546278536319733, + -0.01665341481566429, + -0.020581981167197227, + -0.0022949702106416225, + 0.005062823183834553, + -0.022486740723252296, + -0.018042301759123802, + 0.00760580925270915, + 0.024814778938889503, + -0.006309514865279198, + 0.013055536895990372, + 0.009695753455162048, + 0.005727504845708609, + -0.006977503187954426, + 0.003392852144315839, + -0.0341004803776741, + -0.00676255626603961, + -0.013544954359531403, + 0.029708951711654663, + 0.026693083345890045, + 0.02104494348168373, + 0.0055687748827040195, + 0.023624304682016373, + 0.029470857232809067, + -0.020383568480610847, + 0.024682503193616867, + -0.0015889527276158333, + 0.018703676760196686, + -0.014576698653399944, + 0.008855807594954967, + -0.004801580216735601, + -0.02503964677453041, + -0.008921944536268711, + -0.007321417797356844, + 0.012579347006976604, + 0.037169259041547775, + 0.013730138540267944, + 0.005145495291799307, + 0.12264532595872879, + 0.01855817437171936, + -0.01431214902549982, + 0.030396781861782074, + 0.006706339307129383, + 0.01935182325541973, + -0.002033727243542671, + -0.0040509202517569065, + 0.0071494607254862785, + -0.06767185777425766, + 0.009775117971003056, + -0.01845235377550125, + 0.026679854840040207, + -0.022499967366456985, + -0.003425921080633998, + 0.016785690560936928, + 0.007010571658611298, + 0.00824072863906622, + -0.011349190026521683, + -0.011302893981337547, + 0.041163962334394455, + 0.002371028298512101, + 0.0017410689033567905, + 0.02825392782688141, + -0.025290967896580696, + -0.0143650583922863, + 0.03939147666096687, + 0.0047089881263673306, + 0.003144836751744151, + -0.020092563703656197, + -0.011898131109774113, + 0.006838614586740732, + -0.04402109980583191, + -0.015290983021259308, + 0.014828020706772804, + -0.03894174098968506, + 0.01187828928232193, + -0.020542297512292862, + 0.013941778801381588, + 0.00728173553943634, + 0.007923268713057041, + 0.02355816774070263, + -0.005896155722439289, + -0.026177210733294487, + 0.00638226605951786, + 0.007665332872420549, + 0.0009350184700451791, + -0.002045301254838705, + -0.024378271773457527 + ], + "metadata": { + "source": "Thesis_Verladegeraeusche_in_Speditionen.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 41, + "has_images": true, + "image_count": 51, + "coordinates": "CoordinatesMetadata(points=((204.16666666666666, 189.02777777777797), (204.16666666666666, 642.3611111111111), (936.1666666666666, 642.3611111111111), (936.1666666666666, 189.02777777777797)), system=)", + "links": [], + "last_modified": "2025-05-05T22:59:16", + "_known_field_names": "frozenset({'cc_recipient', 'link_texts', 'url', 'filetype', 'category_depth', 'page_number', 'filename', 'orig_elements', 'detection_origin', 'email_message_id', 'page_name', 'coordinates', 'table_as_cells', 'link_start_indexes', 'sent_to', 'bcc_recipient', 'languages', 'last_modified', 'link_urls', 'file_directory', 'subject', 'data_source', 'detection_class_prob', 'image_base64', 'text_as_html', 'attached_to_filename', 'key_value_pairs', 'signature', 'sent_from', 'header_footer_type', 'parent_id', 'links', 'emphasized_text_contents', 'emphasized_text_tags', 'image_mime_type', 'is_continuation', 'image_path'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "Thesis_Verladegeraeusche_in_Speditionen.pdf", + "detection_class_prob": 0.2568194270133972, + "parent_id": "d45475a34bc527cde6987546fa6dd2f5", + "text_as_html": "
Flurf\u00f6rderger\u00e4t |Anzahl Einzelereignisse ElMax-PegelSchallleistungspegel
LAFmaxLWA,5sLWAmaxLWA,1hKlLWAT,1h
[dB(A)][dB(A)][dB(A)][dB(A)][dB(A)][dB(A)]
Gabelstapler29769,3100,7108,872,15,777,8
STABW [dB]6,54,96,54,92,9-
Gabelhubwagen9968,6100,7108,172,16,279,5
STABW [dB]6,45,16,4512,7-
", + "id": "5ba44de7-0ff3-4c0c-b018-67e92171e1c2", + "processing_timestamp": "2025-05-06T14:18:19.298665", + "chunk_number": 10, + "total_chunks": 49, + "chunking_strategy": "hybrid", + "word_count": 705 + } +} \ No newline at end of file diff --git a/data/processed/85fd305f-83de-70b0-47e8-2dc000000011.json b/data/processed/85fd305f-83de-70b0-47e8-2dc000000011.json new file mode 100644 index 0000000000000000000000000000000000000000..c6b5597dbec7b7f308c5af2b2733f1bd616ca1d3 --- /dev/null +++ b/data/processed/85fd305f-83de-70b0-47e8-2dc000000011.json @@ -0,0 +1,1570 @@ +{ + "id": "85fd305f-83de-70b0-47e8-2dc000000011", + "content": "[55\u201357]\n18\n2 Grundlagen\n\ud835\udc5d(\ud835\udc5f,\ud835\udf11,\ud835\udf03) \u0393 = \ud835\udc5d0(\ud835\udc5f,\ud835\udf110,\ud835\udf030)\nFormel 19: komplexe Richtungsfaktor [-]\nMit p(r,\u03c6,\u03b8): Schalldruck im Messpunkt [dB], p0(r,\u03c60,\u03b80): Schalldruck im Ursprung [dB]\nDa die Bezugsrichtung meist eine geometrische Symmetrieachse des Strahlers ist, be- rechnet sich der Richtungsfaktor nach Formel 20. Dies bedeutet, dass die Achse des Strahlers so gerichtet ist, dass entlang derer die Eigenschaften des Strahlers spiegelsym- metrisch sind. [55]\n\u0393 = \ud835\udc5d\u0303(\ud835\udc5f,\ud835\udf11,\ud835\udf03) \ud835\udc5d\u03030(\ud835\udc5f,\ud835\udf110,\ud835\udf030)\nFormel 20: Richtungsfaktor [-]\nMit p(r,\u03c6,\u03b8): Schalldruck im Messpunkt [dB(A)], p0(r,\u03c60,\u03b80): Schalldruck im Ursprung [dB(A)]\nEine gerichtete Schallabstrahlung l\u00e4sst sich daran erkennen, dass es starke Unterschiede im gemessenen Schalldruckpegel gibt. Um die Richtwirkung einer Schallquelle definie- ren zu k\u00f6nnen, wird das Richtma\u00df DI eingef\u00fchrt, welche das Ma\u00df f\u00fcr die gerichtete Schallabstrahlung einer Schallquelle im Vergleich einer Kugelwelle (siehe Formel 21) be- schreibt. Ergibt sich ein positiver Wert des Richtma\u00dfes, deutet dies auf eine gerichtete Schallquelle hin und ein h\u00f6herer Schalldruckpegel auf der Achse der Schallquelle gemes- sen wird, als auf einer Kugel. Hingegen negative Werte auf eine ungerichtete Schallab- strahlung hindeuten, bei welchen der Schalldruckpegel auf der Achse der Schallquelle niedriger ist als auf einer Kugel. [42, 55]\n\ud835\udc37\ud835\udc3c = 20lg(\ud835\udee4) = 20lg( \ud835\udc5d\u0303(\ud835\udc5f,\ud835\udf11,\ud835\udf03) \ud835\udc5d\u03030(\ud835\udc5f,\ud835\udf110,\ud835\udf030) ) = \ud835\udc3f\ud835\udc5d(\ud835\udc5f,\ud835\udf11,\ud835\udf03) \u2212 \ud835\udc3f\ud835\udc5d(\ud835\udc5f,\ud835\udf110,\ud835\udf030)\nFormel 21: Richtma\u00df [dB(A)]\nMit: Lp(r,\u03c6,\u03b8): Schalldruckpegel im Messpunkt [dB(A)], Lp(r,\u03c60,\u03b80): Schalldruckpegel im Ursprung\n[dB(A)]\n19\n2 Grundlagen\n\n[IMAGE: ]\n\nAbbildung 3: Geometrische Darstellung der Richtcharakteristik (Quelle: in Anlehnung an [55] \u2013 GeoGebra 3D)\nUm die Richtcharakteristik zu visualisieren, werden die berechneten Richtwerte in ei- nem Polarkoordinatendiagramm dargestellt. Dies bedeutet, dass die kartesischen Koor- dinaten in Abh\u00e4ngigkeit vom Winkel angegeben werden. Die Konturen, die sich aus dem Polarkoordinatendiagramm ergeben, beschreiben die horizontale, beziehungsweise vertikale, Richtcharakteristik (siehe Formel 22). \ud835\udf03 = \ud835\udf030 = 0\u00b0 \u2229 0\u00b0 \u2264 \ud835\udf11 \u2264 360\u00b0 Beziehungsweise \ud835\udf11 = \ud835\udf110 = \ud835\udc50\ud835\udc5c\ud835\udc5b\ud835\udc60\ud835\udc61. \u2229 0\u00b0 \u2264 \ud835\udf03 \u2264 360\u00b0\nFormel 22: Konturen des Polarkoordinatendiagramms\nMit: \ud835\udf11: azimutalen Winkel = arctan(y/x) [\u00b0], \ud835\udf03: polar Winkel [\u00b0]\nDie Messpunkte MP in der Ebene, wird durch die Angabe von zwei Koordinaten im kar- tesischen Koordinatensystem [x; y] beschrieben. Von der Quelle Q aus geht ein Vektor mit dem Abstand r zum Messpunkt mit einem Winkel \ud835\udf11 mit 0\u00b0 \u2264 \ud835\udf11 \u2264 360\u00b0 aus. [58]\n20\n2 Grundlagen\n\n## 2.3 Statistik\n\nDie Statistik bezogen auf Messwerte dient dazu, die gesammelten Informationen syste- matisch zu analysieren und interpretieren zu k\u00f6nnen. Durch statistische Methoden k\u00f6n- nen Muster, Trends, Zusammenh\u00e4nge und Unsicherheiten in den Messwerten identifi- ziert werden. Dies erm\u00f6glicht eine zuverl\u00e4ssige und fundierte Aussage \u00fcber die gemes- senen Verladet\u00e4tigkeiten. Im Folgenden werden somit verschiedene statistische Analy- semethoden vorgestellt, die in der Auswertung von Verladeger\u00e4uschen eingesetzt wer- den k\u00f6nnen. [59]\nUm statistische Aussagen treffen zu k\u00f6nnen sind statistische Parameter notwendig, die Aufschluss \u00fcber die Verteilung der Variablen liefern. Bevor \u00fcberhaupt eine statistische Aussage gemacht werden kann, ist eine Gewinnung notwendig, die die eigentliche Da- tenerhebung und eine dahinterliegende Planung umfasst. Bei den erhobenen Daten handelt es sich um eine Prim\u00e4rerhebung, welche immer objektiv, valide und reliabel sind. Objektiv bedeutet, dass die Messung unabh\u00e4ngig von pers\u00f6nlichen Meinungen o- der subjektiven Einsch\u00e4tzungen durchgef\u00fchrt wurde. Die objektive Schallleistungsmes- sung basiert auf den anerkannten Regeln der Technik, sowie festgesetzten Verfahren, um eine genaue und verl\u00e4ssliche Bestimmung der Schallleistung zu erm\u00f6glichen. Valid bedeutet, dass die Erhebungsmethode den beabsichtigten Sachverhalt genau und pr\u00e4- zise misst. Reliabel bedeutet, dass die Messungen unter konstanten Bedingungen wie- derholbar sind. Diese Eigenschaften der Datenerhebung sorgen daf\u00fcr, dass die Daten vertrauensw\u00fcrdig und aussagekr\u00e4ftig sind. [60]\nDie statistische Einheit ist der Beladevorgang, der untersucht und gemessen wird.", + "embedding": [ + 0.012142976745963097, + 0.022195715457201004, + 0.012410788796842098, + -0.02829659730195999, + 0.0049806456081569195, + 0.01358654722571373, + -0.00922317523509264, + -0.005908188410103321, + -0.008164992555975914, + -0.0458545982837677, + 0.021895242854952812, + 0.023175515234470367, + -0.03472407907247543, + 0.00913825910538435, + -0.00039089901838451624, + 6.602161647606408e-06, + 0.03140582516789436, + -0.012188700959086418, + 0.011365669779479504, + 0.008498123846948147, + 0.010353210382163525, + 0.014670858159661293, + -0.004151082132011652, + -0.006162936333566904, + -0.03333929553627968, + 0.028244342654943466, + 0.020850123837590218, + -0.024181442335247993, + -0.021986691281199455, + -0.013233819976449013, + 0.007648964878171682, + -0.003261097939684987, + -0.026441510766744614, + 0.01810668781399727, + -0.016708839684724808, + 0.007766540627926588, + -0.0011177874403074384, + -0.0096150953322649, + 0.020314501598477364, + 0.003094532061368227, + 0.019243253394961357, + 0.009856779128313065, + 0.008772468194365501, + -0.011457117274403572, + 0.007093745283782482, + -0.010261762887239456, + 0.018903590738773346, + -0.02214345894753933, + -0.007753476966172457, + 0.02806144580245018, + 0.001272922265343368, + 0.021777667105197906, + -0.02926333248615265, + 0.0014354056911543012, + 0.018459415063261986, + -0.009667350910604, + 0.00903374794870615, + -0.00047765206545591354, + -0.013416715897619724, + -0.0063719600439071655, + -0.022365547716617584, + -0.011737992987036705, + -0.025448648259043694, + -0.0028201884124428034, + -0.03028232418000698, + -0.0038408124819397926, + -0.011933952569961548, + -0.002477258676663041, + -0.01906035840511322, + 0.001868150313384831, + 0.015533081255853176, + 0.03710172697901726, + 0.0037069066893309355, + 0.0157421063631773, + 0.030569732189178467, + -0.0019857261795550585, + 0.007185193244367838, + 0.004206604324281216, + -0.0009659185889177024, + 0.0008573242230340838, + 0.015180354006588459, + -0.017649447545409203, + -0.018185071647167206, + 0.028035318478941917, + 0.009432199411094189, + -0.011920888908207417, + -0.02381565049290657, + 0.022117331624031067, + -0.0290543083101511, + -0.0005037800292484462, + -0.008295631967484951, + 0.019935645163059235, + 0.0031533201690763235, + 0.0016338150016963482, + 0.021686220541596413, + -0.008053948171436787, + 0.002459295792505145, + 0.011822909116744995, + -0.005320309195667505, + -0.01126115769147873, + -0.014448770321905613, + -0.01570291258394718, + 0.013495099730789661, + -0.005924518685787916, + -0.01707463152706623, + -0.015376313589513302, + -0.008543848060071468, + 0.01192742120474577, + -0.0008891676552593708, + -0.027486629784107208, + -0.0228227861225605, + 0.006636505946516991, + -0.013612675480544567, + -0.002480524592101574, + 0.04109930619597435, + -0.012449980713427067, + 0.03480246290564537, + -0.013135840184986591, + -0.01920406147837639, + -0.009536711499094963, + 0.028087573125958443, + 0.010627553798258305, + 0.016891736537218094, + -0.01141139306128025, + 0.04047223553061485, + -0.007296237163245678, + -0.004301317967474461, + -0.007779604755342007, + -0.030021043494343758, + -0.020131604745984077, + 0.00026821999927051365, + 0.0004180476244073361, + 0.0052713192999362946, + 0.029576867818832397, + 0.01069287396967411, + 0.009765330702066422, + -0.018864398822188377, + -0.0022763998713344336, + -0.03171936422586441, + -0.031876131892204285, + 0.03289512172341347, + 0.01998790167272091, + -0.029132692143321037, + -0.032973505556583405, + -0.01242385245859623, + 0.006244586315006018, + 0.019034231081604958, + 0.001850187312811613, + 0.016774160787463188, + -0.013168499805033207, + 0.005999636370688677, + -0.019465342164039612, + 0.018642310053110123, + 0.0021702549420297146, + -0.018315711989998817, + 0.000973267073277384, + 0.007799200713634491, + 0.044234663248062134, + -0.003265996929258108, + 0.008961895480751991, + -0.007531389128416777, + 0.018158942461013794, + 0.008524252101778984, + -0.00889657624065876, + 0.022300226613879204, + 0.0169048011302948, + -0.0053399051539599895, + 0.014409578405320644, + 0.006198862101882696, + -0.005026369355618954, + -0.0016362644964829087, + 0.016878671944141388, + -0.013651867397129536, + 0.02104608528316021, + 0.000640951911918819, + 0.008988023735582829, + 0.0020592110231518745, + 0.008700615726411343, + -0.019935645163059235, + -0.026088783517479897, + -0.021202852949500084, + 0.009856779128313065, + 0.0038538763765245676, + 0.017597191035747528, + -0.013018263503909111, + 0.01612096093595028, + 0.004814079497009516, + 0.023110194131731987, + -0.010444658808410168, + -0.008831256069242954, + 0.0073354290798306465, + 0.019465342164039612, + 0.01717914454638958, + -0.03454118221998215, + -0.6182923913002014, + 0.011156645603477955, + -0.011796780861914158, + -0.020144669339060783, + -0.0018632513238117099, + 0.020954636856913567, + 0.022666018456220627, + -0.0003208841953892261, + -0.009595499373972416, + 0.04739614948630333, + 0.0006131909321993589, + 0.008981491439044476, + -0.0050165713764727116, + 0.0019857261795550585, + -0.02132042869925499, + -0.0267289187759161, + -0.004356840159744024, + 0.001139016472734511, + 0.03323478624224663, + 0.0016387139912694693, + -0.030256196856498718, + 0.004941453225910664, + 0.0005466462462209165, + 0.016277728602290154, + 0.003964920528233051, + 0.02182992361485958, + 0.03017781302332878, + -0.017806215211749077, + 0.012325872667133808, + 0.004536469932645559, + -0.022509250789880753, + 0.001397030195221305, + -0.014017659239470959, + 0.0075901770032942295, + 0.04122994467616081, + -0.005454214755445719, + 0.0013872322160750628, + 0.02730373479425907, + 0.023867905139923096, + 0.0036513847298920155, + -0.014135234989225864, + -0.025043664500117302, + 0.009131727740168571, + -0.020993828773498535, + -0.0018746822606772184, + 0.005535864736884832, + 0.041256073862314224, + -0.00814539659768343, + -0.007315833121538162, + -0.04201378673315048, + -0.001959598157554865, + 0.005529332906007767, + 0.022535379976034164, + 0.004833675455302, + 0.028688518330454826, + -0.01153550110757351, + 0.006496068090200424, + -0.017153015360236168, + -0.03145808354020119, + -0.00023535591026302427, + -0.02009241282939911, + 0.008308696560561657, + 0.002289463998749852, + -0.0181720070540905, + -0.0020461471285670996, + 0.006319703999906778, + -0.02279665879905224, + -0.012907220050692558, + 0.02343679405748844, + -0.004778153728693724, + -0.0023221238516271114, + 0.024338210001587868, + -0.008151928894221783, + -0.014853754080832005, + 0.02874077297747135, + 0.02491302415728569, + 0.021333491429686546, + -0.014579410664737225, + 0.001954699167981744, + 0.01519341766834259, + -0.0007793485419824719, + 0.0037265026476234198, + -0.009092535823583603, + 0.015520017594099045, + 0.014383451081812382, + -0.02658521570265293, + -0.007002297323197126, + 0.030883267521858215, + 0.013860891573131084, + 0.015454697422683239, + 0.008583039976656437, + 0.03017781302332878, + -0.004987177439033985, + -0.009014151990413666, + 0.004947985522449017, + 0.029080437496304512, + -0.017440423369407654, + 0.00823031272739172, + 0.0032496668864041567, + -0.04473109543323517, + -0.029655253514647484, + -0.0003225172113161534, + 0.0075640492141246796, + -0.0009291761671192944, + 0.012208296917378902, + 0.008850852027535439, + -0.015820490196347237, + 0.003883270313963294, + 0.00925583578646183, + -0.05191628634929657, + -6.155638857308077e-06, + -0.022261034697294235, + -0.0127308564260602, + -0.004778153728693724, + -0.004781419411301613, + -0.033626705408096313, + 0.044574327766895294, + -0.006198862101882696, + 0.002689548535272479, + -0.007792668882757425, + 0.010444658808410168, + -0.012162572704255581, + 0.029446229338645935, + -0.02480851300060749, + -0.007074149325489998, + 0.03135357052087784, + -0.0019775612745434046, + 0.009340750984847546, + -0.00011655526759568602, + -0.010954153724014759, + 0.034306030720472336, + -0.0026127975434064865, + 0.00894883181899786, + -0.020797869190573692, + 0.029446229338645935, + 0.01618628017604351, + 0.02094157226383686, + -0.02392016164958477, + -0.0021931170485913754, + -0.03788556531071663, + -0.036840446293354034, + -0.00530397891998291, + 0.01541550550609827, + -0.029916532337665558, + -0.015768233686685562, + -0.04384274408221245, + -0.008073544129729271, + 0.0038865364622324705, + 0.02081093192100525, + -0.005989838391542435, + 0.010516510345041752, + -0.020066285505890846, + -0.0015113401459529996, + 0.04287600889801979, + 0.007002297323197126, + 0.0009291761671192944, + -0.01920406147837639, + -0.01469698641449213, + -0.010379338636994362, + -0.016434496268630028, + 0.014892945997416973, + 0.021124469116330147, + -0.03840812295675278, + -0.010072334669530392, + -0.013547355309128761, + -0.02666359953582287, + -0.0119404848664999, + -0.0020085880532860756, + -0.017871536314487457, + -0.04018482565879822, + 0.005813474766910076, + 0.012828836217522621, + -0.01228668075054884, + 0.0010067435214295983, + -0.009053343906998634, + -0.0008516086963936687, + -0.019190998747944832, + -0.006963105406612158, + -0.007381153292953968, + -0.02378952130675316, + 0.024011610075831413, + -0.004494011867791414, + -0.03958388417959213, + -0.0021065680775791407, + 0.019922582432627678, + 0.02279665879905224, + 0.016682712361216545, + 0.026049591600894928, + -0.015310993418097496, + 0.017335912212729454, + -0.011365669779479504, + 0.03284286707639694, + -0.01380863506346941, + 0.016238536685705185, + -0.02871464565396309, + 0.010895365849137306, + 0.015885809436440468, + -0.00616946816444397, + -0.007048021536320448, + 0.025344137102365494, + 0.03670980781316757, + 0.0015031751245260239, + 0.04068125784397125, + -0.01541550550609827, + 0.016656585037708282, + -0.001716281403787434, + 0.01802830398082733, + -0.01220176462084055, + 0.026650534942746162, + 0.029184948652982712, + 0.012966007925570011, + -0.0096150953322649, + -0.045906852930784225, + 0.002519716741517186, + 0.013429779559373856, + 0.031431954354047775, + 0.0030243131332099438, + 0.01666964776813984, + 0.03004717268049717, + -0.017401231452822685, + -3.345095319673419e-05, + -0.0008042517583817244, + 0.027225350961089134, + 0.011901292949914932, + -0.007002297323197126, + -0.010464254766702652, + 0.0011365669779479504, + 0.0021392279304564, + 0.0037526304367929697, + -0.018642310053110123, + -0.01618628017604351, + -0.009628158994019032, + -0.003817950375378132, + -0.004755291622132063, + -0.006786741781979799, + 0.020027093589305878, + -0.009739203378558159, + -0.002823454327881336, + 0.04530591145157814, + 0.0038898023776710033, + 0.01734897680580616, + 0.006176000460982323, + 0.006045360583811998, + -0.00970001146197319, + 0.011829441413283348, + -0.02235248312354088, + 0.018041366711258888, + 0.008765935897827148, + -0.005343170836567879, + -0.0023172248620539904, + -0.01785847172141075, + 0.0037820246070623398, + -0.004033506382256746, + -0.0055097369477152824, + 0.027591142803430557, + -0.006293576210737228, + 0.030203940346837044, + 0.002121265046298504, + 0.004046570044010878, + 0.016578201204538345, + 0.005882060620933771, + 0.008615699596703053, + 0.015820490196347237, + -0.006541791837662458, + 0.0042915199883282185, + 0.016578201204538345, + -0.01878601498901844, + -0.01625160127878189, + -0.013873955234885216, + -0.003964920528233051, + -0.00438949977979064, + 0.013965402729809284, + -0.007472601253539324, + 0.015219545923173428, + 0.01295294426381588, + -0.015493889339268208, + 0.003883270313963294, + 0.029759764671325684, + 0.016329985111951828, + -0.004693237598985434, + -0.022365547716617584, + -0.019073422998189926, + -0.008694084361195564, + 0.03255545720458031, + -0.004040038213133812, + -0.03603047877550125, + 0.009399538859724998, + -0.01047078613191843, + -0.022783594205975533, + -0.012959475629031658, + -0.002199648879468441, + -0.008119268342852592, + -0.00461158761754632, + -0.010745130479335785, + 0.01179024949669838, + 0.007322365418076515, + 0.012913752347230911, + -0.008302164264023304, + -0.014043786562979221, + 0.026441510766744614, + 0.009869842790067196, + -0.023110194131731987, + -0.008106204681098461, + -0.017675574868917465, + 0.03556017577648163, + 0.0077012209221720695, + -0.015872744843363762, + -0.02333228290081024, + 0.003412966849282384, + -0.024011610075831413, + -0.013070520013570786, + -0.006541791837662458, + -0.0030520742293447256, + 0.02330615371465683, + 0.004967581480741501, + -0.0069435094483196735, + 0.0231363233178854, + -0.012103784829378128, + 0.03576919808983803, + -0.0008001692476682365, + -0.003314986824989319, + -0.009732671082019806, + 0.017597191035747528, + 0.0021882180590182543, + 0.001338242320343852, + 0.01810668781399727, + 0.0031680171377956867, + 0.012502236291766167, + -0.010477318428456783, + 0.002278032945469022, + 0.0006376859382726252, + -0.03610886260867119, + 0.0027042455039918423, + -0.0018028303747996688, + 0.003012882312759757, + 0.006378491874784231, + 0.023293090984225273, + 0.004631183575838804, + 0.003301922930404544, + -0.01403072290122509, + 0.007962500676512718, + -0.019047293812036514, + 0.026101848110556602, + 0.02827046997845173, + -0.025265753269195557, + -0.003377040848135948, + 0.0071982573717832565, + 0.03344380855560303, + -0.00811273604631424, + -0.01830264739692211, + 0.017949920147657394, + 0.009628158994019032, + 0.012319340370595455, + -0.03976678103208542, + -0.029550740495324135, + 0.03049134835600853, + 0.0018469212809577584, + 0.01652594469487667, + -0.01768863946199417, + -0.00886391568928957, + -0.00975226704031229, + -0.0035991286858916283, + -0.00252788164652884, + -0.018864398822188377, + 0.014932137914001942, + 0.018838271498680115, + 0.007257045246660709, + -0.020641101524233818, + 0.01148324552923441, + -0.01823732629418373, + 0.018981974571943283, + 0.0004253961087670177, + 0.00433724420145154, + 0.008413208648562431, + 0.0010541005758568645, + -0.033313170075416565, + -0.008628764189779758, + -0.008426272310316563, + -0.010875769890844822, + -0.02288810722529888, + 0.012071125209331512, + -0.010300954803824425, + -0.0007960867369547486, + -0.03660529479384422, + -0.024560296908020973, + -0.02100689336657524, + 0.0380423329770565, + -0.016787225380539894, + -0.02375032939016819, + -0.007348493207246065, + -0.003925728145986795, + -0.015598401427268982, + -0.018015239387750626, + -0.01139832939952612, + 0.0022078140173107386, + -0.0035762665793299675, + -0.017819279804825783, + -0.00858957227319479, + 0.02590588852763176, + -0.001300683245062828, + 0.012404256500303745, + -0.002823454327881336, + -0.004941453225910664, + -0.002444598823785782, + -0.01697012037038803, + -0.007583645172417164, + -0.0038538763765245676, + -0.03516825661063194, + -0.013442843221127987, + 0.031876131892204285, + -0.002637292491272092, + 0.01452715415507555, + -0.010483850724995136, + 0.014892945997416973, + -0.026493767276406288, + 0.010738598182797432, + -0.0025621745735406876, + -0.01108479406684637, + -0.007368089165538549, + 0.024612553417682648, + 0.014082979410886765, + 0.014043786562979221, + 0.018629247322678566, + -0.012182168662548065, + 0.026885686442255974, + -0.022091204300522804, + 0.009732671082019806, + 0.004559331573545933, + 0.016721904277801514, + 0.011986209079623222, + 0.013521227054297924, + -0.0028022252954542637, + -0.0021555579733103514, + -0.0024527637287974358, + 0.0035076807253062725, + -0.024782385677099228, + 0.008988023735582829, + -0.01622547209262848, + -0.007211321499198675, + -0.012841899879276752, + 0.013148903846740723, + 0.0015064411563798785, + 0.02036675624549389, + -0.017976047471165657, + -0.007596708834171295, + -0.01872069388628006, + 0.012587152421474457, + -0.004921857267618179, + -0.0011929053580388427, + 0.05160275101661682, + -0.019347766414284706, + 0.0013627372682094574, + -0.04172637686133385, + -0.009464859031140804, + 0.016473688185214996, + 0.007681624963879585, + 0.01669577695429325, + 0.005006773397326469, + -0.028688518330454826, + -0.015611466020345688, + -0.01425281073898077, + 0.0013366092462092638, + -0.014109106734395027, + -0.005849400535225868, + -0.011195837520062923, + 0.02009241282939911, + -0.01314237155020237, + 0.0084524005651474, + 0.025579288601875305, + -0.02915882132947445, + -0.03900906816124916, + 0.019974837079644203, + 0.007884116843342781, + 0.02423369698226452, + -0.027329862117767334, + -0.023384537547826767, + -0.01153550110757351, + -0.015219545923173428, + -0.022875042632222176, + -0.042693112045526505, + -0.009334219619631767, + -0.0115681616589427, + 0.007655496709048748, + 0.0009895970579236746, + 0.031980641186237335, + 0.000535215251147747, + -0.002918168203905225, + 0.03083101101219654, + -0.01286802813410759, + 0.0024527637287974358, + -0.008099672384560108, + -0.0017081163823604584, + -0.04376436024904251, + 0.038617148995399475, + 0.01041853055357933, + 0.0035860647913068533, + 0.016408368945121765, + -0.010967218317091465, + 0.003791822586208582, + 0.04023708403110504, + -0.010255230590701103, + -0.0036644486244767904, + -0.004105358384549618, + -0.025670737028121948, + -0.005927784368395805, + -0.0028789762873202562, + 0.015428570099174976, + 0.020236117765307426, + -0.019517598673701286, + -0.001485212123952806, + 0.00536276726052165, + -0.01882520690560341, + -0.028453364968299866, + -0.0008434437331743538, + 0.024220634251832962, + -0.04454819858074188, + 0.03642239794135094, + -0.0012076023267582059, + 0.010679810307919979, + -0.018981974571943283, + 0.0014688821975141764, + 0.0054411510936915874, + -0.014801498502492905, + 0.02111140452325344, + 0.0035632026847451925, + 0.032973505556583405, + -0.006714889779686928, + 0.0026732184924185276, + 0.006182532291859388, + -0.013821699656546116, + 0.01562452968209982, + -0.031092291697859764, + -0.003187613096088171, + -0.016447560861706734, + -0.008458931930363178, + -0.035194382071495056, + -0.017401231452822685, + -0.021790731698274612, + 0.013900083489716053, + 0.011215433478355408, + 0.00391919631510973, + 0.02354130707681179, + -0.012528364546597004, + -0.01673496887087822, + 0.00930809136480093, + -0.005741622764617205, + 0.029655253514647484, + -0.01069287396967411, + 0.021647028625011444, + 0.03537727892398834, + -0.03853876516222954, + -0.01570291258394718, + -0.04028933867812157, + -0.006554855965077877, + -0.004562597721815109, + 0.01751880720257759, + 0.0036709806881844997, + -0.015833552926778793, + -0.003043909091502428, + 0.009595499373972416, + 0.01005927100777626, + -0.012972540222108364, + -0.0035730006638914347, + 0.055077772587537766, + 0.019765812903642654, + 0.018838271498680115, + -0.00864182785153389, + 0.03514212742447853, + -0.02881915681064129, + -0.006345832254737616, + 0.019112614914774895, + -0.0046834396198391914, + -0.021842988207936287, + 0.013795571401715279, + -0.008883511647582054, + 0.033652834594249725, + 0.012031933292746544, + 0.016891736537218094, + 0.015611466020345688, + -0.02738211862742901, + 0.007002297323197126, + -0.024168377742171288, + -0.009686946868896484, + 0.019073422998189926, + -0.019360831007361412, + 0.025683799758553505, + -0.008498123846948147, + -0.0028430502861738205, + 0.006153138354420662, + -0.005744888912886381, + 0.013795571401715279, + -0.0006972903502173722, + -0.012227892875671387, + 0.020275309681892395, + -0.03203289955854416, + -0.009660818614065647, + 0.021790731698274612, + -8.961078856373206e-05, + 0.013952339068055153, + 0.004314382094889879, + -0.027774037793278694, + -0.023619690909981728, + 0.006747549865394831, + -0.011424457654356956, + 0.0003819175180979073, + 0.005888592451810837, + -0.008243376389145851, + -0.00988943874835968, + -0.006672431714832783, + -0.015833552926778793, + -0.011293817311525345, + -0.016408368945121765, + 0.009961291216313839, + -0.03812071681022644, + -0.019530661404132843, + -0.011300349608063698, + 0.00290510430932045, + 0.01861618272960186, + 0.009131727740168571, + -0.009543242864310741, + -0.008360952138900757, + 0.03192838653922081, + -0.043921127915382385, + -0.003582798643037677, + 0.02816595882177353, + -0.02761727012693882, + -0.010104994289577007, + 0.003252933034673333, + 0.006989233661442995, + -0.018629247322678566, + 0.04209217056632042, + -0.008354419842362404, + -0.014553282409906387, + -0.029028180986642838, + -0.009856779128313065, + 0.006045360583811998, + -0.01861618272960186, + -0.005019837524741888, + 0.007524856831878424, + 0.020954636856913567, + -0.0017979313852265477, + -0.016160152852535248, + 0.01201233733445406, + -0.003690576646476984, + 0.016604328528046608, + -0.0015488991048187017, + 0.019047293812036514, + -0.01785847172141075, + 0.01011152658611536, + 0.019073422998189926, + -0.0038767384830862284, + 0.00939300749450922, + -0.0255662240087986, + -0.016852544620633125, + 0.019857261329889297, + 0.022639891132712364, + -0.022300226613879204, + 0.01830264739692211, + -0.008328292518854141, + -0.0204973965883255, + -0.010738598182797432, + 0.03200677037239075, + 0.005068827420473099, + 0.01541550550609827, + 0.01789766363799572, + -0.00291653536260128, + -0.01148324552923441, + 0.036161117255687714, + 0.008040884509682655, + -0.0215555801987648, + 0.019008101895451546, + 0.012685132212936878, + -0.02816595882177353, + 0.0232408344745636, + -0.013638803735375404, + 0.021647028625011444, + 0.03313027322292328, + -0.023502115160226822, + -0.0014827626291662455, + 0.015101970173418522, + -0.013240351341664791, + -0.012809240259230137, + -0.012051529251039028, + 0.012312809005379677, + -0.008929235860705376, + 0.020850123837590218, + -0.027120839804410934, + 0.018838271498680115, + -0.0024935887195169926, + 0.03281673789024353, + -0.0028479492757469416, + 0.006799805909395218, + 0.004516873974353075, + 0.00572202680632472, + 0.014487962238490582, + -0.01144405361264944, + -0.024612553417682648, + -0.008445868268609047, + 0.03383572772145271, + -0.009680415503680706, + -0.0043339780531823635, + 0.030517475679516792, + -0.013482035137712955, + -0.02412918582558632, + 0.002348251873627305, + 0.019034231081604958, + 0.019896453246474266, + 0.002080440055578947, + 0.0018371233018115163, + -0.02307100221514702, + -0.01580742560327053, + 0.005695898551493883, + 0.027434375137090683, + -0.030256196856498718, + 0.01002661045640707, + 0.032424818724393845, + -0.019138742238283157, + -0.010934557765722275, + 0.0220781397074461, + -0.012926816008985043, + 0.0042588599026203156, + -0.013083583675324917, + 0.04697810113430023, + 0.024926088750362396, + -0.008798595517873764, + 0.013991530984640121, + 0.023933226242661476, + -0.0107255345210433, + -0.012933348305523396, + 0.0030145151540637016, + -0.010973749682307243, + -0.004709567874670029, + 0.008347888477146626, + 0.00416741194203496, + 0.026088783517479897, + -0.024220634251832962, + 0.007250513415783644, + -0.0001778947771526873, + -0.0069500417448580265, + -0.039374858140945435, + -0.030412964522838593, + -0.03600434958934784, + 0.02785242162644863, + 0.03412313759326935, + -0.006009434349834919, + 0.016316920518875122, + -0.026206359267234802, + -0.013031328096985817, + -0.004902261309325695, + -0.00922317523509264, + 0.0021424940787255764, + -0.00628051208332181, + -0.00436337199062109, + 0.00416741194203496, + -0.02009241282939911, + -0.011640013195574284, + 0.002020019106566906, + -0.006407886277884245, + -0.03801620379090309, + -0.001614219043403864, + 0.1916748285293579, + -0.014670858159661293, + -0.0007899629999883473, + 0.014461834914982319, + -0.028871413320302963, + -0.030569732189178467, + 0.02176460437476635, + -0.005467278882861137, + 0.011907825246453285, + 0.018080558627843857, + 0.02111140452325344, + 0.007577112875878811, + -0.009334219619631767, + 0.01734897680580616, + 0.017270591109991074, + -0.017806215211749077, + -0.020732548087835312, + -0.017401231452822685, + -0.009484454989433289, + 0.023018747568130493, + 0.029576867818832397, + -0.0077273487113416195, + -0.011248094029724598, + -0.011248094029724598, + 0.03976678103208542, + 0.020353693515062332, + -0.016499817371368408, + 0.0011937218951061368, + 0.04365984722971916, + 0.014657794497907162, + -0.01755799911916256, + -0.0005123532610014081, + 0.010183378122746944, + 0.006420949939638376, + -0.0076163047924637794, + 0.014292002655565739, + -0.004761823453009129, + -0.006643037777394056, + 0.0314842127263546, + 0.011169709265232086, + 0.010483850724995136, + -0.02939397282898426, + -0.0027646664530038834, + -0.0219736285507679, + 0.025239624083042145, + 0.018093623220920563, + -0.010549169965088367, + 0.005522801075130701, + 0.004689971450716257, + 0.02152945287525654, + -0.012058060616254807, + -0.006734485737979412, + 0.007426877040416002, + 0.04339856654405594, + -0.009471391327679157, + -0.02819208614528179, + 0.018603118136525154, + -0.01358654722571373, + 0.008609168231487274, + -0.005356234963983297, + -0.03778105229139328, + 0.015663720667362213, + -0.03626563027501106, + 0.025997335091233253, + -0.02785242162644863, + 0.022456996142864227, + -0.03245094418525696, + -0.004814079497009516, + -0.012103784829378128, + -0.028139829635620117, + 0.005258255172520876, + -0.013913147151470184, + -0.0238809697329998, + 0.010457722470164299, + -0.023528242483735085, + -0.03657916560769081, + 0.001596256042830646, + 0.0016297325491905212, + 0.02423369698226452, + 0.04475722089409828, + -0.009164387360215187, + 0.009543242864310741, + -0.011248094029724598, + -0.02552703209221363, + 0.0006801438867114484, + -0.014135234989225864, + 0.005983306560665369, + 0.013429779559373856, + 0.015925001353025436, + -0.01184250507503748, + -0.0006160486955195665, + 0.009562838822603226, + -0.00029740986065007746, + 0.013253415934741497, + 0.00650259992107749, + -0.006153138354420662, + -0.015402441844344139, + 0.0024413326755166054, + -0.007988628931343555, + 0.00018156901933252811, + -0.021581707522273064, + 0.0718519315123558, + 0.03281673789024353, + -0.01779315248131752, + 0.0018485542386770248, + -0.010653682053089142, + 0.007936372421681881, + 0.021503323689103127, + 0.011777184903621674, + -0.019347766414284706, + -0.01902116648852825, + -0.029968788847327232, + 0.020510461181402206, + -0.026506831869482994, + 0.005065561272203922, + 0.0011063565034419298, + -0.0006483003962785006, + 0.028897540643811226, + -0.011156645603477955, + 0.0014280572067946196, + -0.0007479133200831711, + -0.007172129582613707, + -0.0045462679117918015, + 0.004294786136597395, + 0.008027820847928524, + -0.0365530364215374, + -0.032294176518917084, + 0.015036650002002716, + 0.0028022252954542637, + 0.009183983318507671, + 0.039374858140945435, + -0.019765812903642654, + 0.025958143174648285, + 0.0016640254762023687, + 0.009464859031140804, + -0.0036775125190615654, + -0.013900083489716053, + -0.027329862117767334, + -0.009112131781876087, + 0.005996370688080788, + 0.010287890210747719, + -0.017505744472146034, + 0.01508890651166439, + -0.009190515615046024, + 0.012175636366009712, + -0.013390587642788887, + -0.009059875272214413, + 0.0020330832339823246, + -0.022182650864124298, + -0.027878550812602043, + -0.012541428208351135, + -0.006100882310420275, + -0.00944526307284832, + -0.027538886293768883, + -0.008759403601288795, + 0.006326236296445131, + -0.018158942461013794, + -0.028793029487133026, + 0.01358654722571373, + 0.009177451953291893, + 0.0016803554026409984, + -0.00864182785153389, + 0.0060551585629582405, + -0.013560419902205467, + 0.011992741376161575, + -0.0019857261795550585, + -0.16387467086315155, + 0.01916486956179142, + 0.018668439239263535, + -0.019791942089796066, + 0.01909955032169819, + 0.001287619350478053, + 0.023280026391148567, + 0.013625739142298698, + -0.007831860333681107, + 0.009432199411094189, + 0.03328704088926315, + -0.0019498001784086227, + -0.021137531846761703, + -0.016878671944141388, + -0.007969032973051071, + -0.01563759334385395, + -0.02436433732509613, + 0.03114454634487629, + 0.019622109830379486, + 0.023280026391148567, + 0.010144186206161976, + -0.035194382071495056, + 0.013116244226694107, + 0.02696407027542591, + -0.006264182273298502, + 0.008067012764513493, + -0.015990320593118668, + 0.030621986836194992, + -0.01430506631731987, + -0.014213618822395802, + -0.005287649109959602, + -0.006623441819101572, + 0.026911815628409386, + -0.011947017163038254, + -0.0014909276505932212, + -0.0027140434831380844, + -0.02028837241232395, + 0.009517115540802479, + -0.019138742238283157, + 0.01768863946199417, + 0.025069793686270714, + 0.02070642076432705, + -0.013305671513080597, + 0.028244342654943466, + -0.00811273604631424, + 0.03788556531071663, + 0.0226137638092041, + -0.015898874029517174, + -0.01656513661146164, + -0.014840690419077873, + -0.003922462463378906, + -0.021059148013591766, + 0.02385484240949154, + 0.015245674178004265, + 0.005617514718323946, + -0.002457662718370557, + -0.014448770321905613, + 0.020614972338080406, + -0.006198862101882696, + -0.01105213351547718, + -0.0016093200538307428, + -0.02286197803914547, + 0.00785145629197359, + -0.012796176597476006, + 0.0058689964935183525, + -0.015729041770100594, + 0.007681624963879585, + 0.019282445311546326, + -0.04133445769548416, + -0.005646908655762672, + -0.00661364383995533, + -0.023044874891638756, + 0.0059441146440804005, + -0.0009169286349788308, + -0.0016966854454949498, + 0.008792064152657986, + 0.0017358773620799184, + 0.000858140701893717, + 0.005924518685787916, + -0.002509918762370944, + -0.03083101101219654, + 0.042379576712846756, + 0.003579532727599144, + -0.027695653960108757, + -0.006936977617442608, + -0.00900108739733696, + -0.011515905149281025, + 0.020066285505890846, + -0.008942299522459507, + -0.012848432175815105, + 0.020196925848722458, + -0.02580137550830841, + -0.0017995643429458141, + -0.0030471752397716045, + 0.002287830924615264, + -0.002196382964029908, + -0.008916172198951244, + -0.005039433483034372, + -0.012456512078642845, + -0.009197047911584377, + 0.01810668781399727, + -0.01857699081301689, + -0.03859101980924606, + 0.017022376880049706, + 0.011378733441233635, + 0.01314237155020237, + -0.0220781397074461, + 0.012018868699669838, + 0.04828450083732605, + 0.001946534146554768, + -0.01098681427538395, + -0.00944526307284832, + 0.007942904718220234, + 0.01139832939952612, + -0.015454697422683239, + 0.01707463152706623, + -0.009948226623237133, + -0.002967158332467079, + 0.004601789638400078, + -0.01697012037038803, + 0.04739614948630333, + -0.011365669779479504, + 0.014540218748152256, + 0.02337147481739521, + -0.009843714535236359, + -0.03438441455364227, + -0.07550985366106033, + 0.003314986824989319, + 0.023397602140903473, + 0.022195715457201004, + 0.020027093589305878, + 0.03164098039269447, + -0.00814539659768343, + -0.005130881443619728, + -0.001660759444348514, + 0.04663843661546707, + -0.028348853811621666, + -0.018563926219940186, + -0.02457336150109768, + -0.011065198108553886, + 0.012789644300937653, + -0.009797991253435612, + 0.009059875272214413, + -0.04653392359614372, + -0.03255545720458031, + 0.03579532727599144, + -0.02347598597407341, + -0.0033509128261357546, + 0.0011422823881730437, + 0.0061172121204435825, + -0.017910728231072426, + 0.007034957408905029, + -0.0359259657561779, + -0.0014051952166482806, + 0.020719485357403755, + 0.005953912623226643, + 0.02026224508881569, + -0.03344380855560303, + 0.005281117279082537, + -0.03412313759326935, + -0.013207691721618176, + -0.02542252093553543, + -0.01762332022190094, + -0.0034619567450135946, + 0.035507917404174805, + 0.00048826655256561935, + -0.002358049852773547, + 0.008792064152657986, + 0.004591991659253836, + 0.0036317885387688875, + -0.003197411075234413, + -0.004784685559570789, + -0.015376313589513302, + 0.026885686442255974, + 0.015533081255853176, + 0.009967822581529617, + -0.019831134006381035, + -0.026506831869482994, + -0.02586669661104679, + 0.010784322395920753, + 0.013390587642788887, + 6.267269782256335e-06, + -0.0026405586395412683, + -0.0028201884124428034, + -0.007250513415783644, + 0.0006405436433851719, + -0.03323478624224663, + 0.025108985602855682, + -0.030987778678536415, + 0.04065512865781784, + -0.012090721167623997, + 0.006930445786565542, + -0.0314842127263546, + 0.0034390948712825775, + 0.015480825677514076, + -0.006097616162151098, + -0.007250513415783644, + 0.016160152852535248, + -0.0017554733203724027, + -0.008746339939534664, + -0.03637014329433441, + 0.008857383392751217, + -0.06626054644584656, + -9.87964085652493e-05, + 0.02115059643983841, + -0.031092291697859764, + 0.000881002692040056, + -0.02651989459991455, + 0.023998545482754707, + -0.01906035840511322, + 0.04851965233683586, + 0.03310414403676987, + -0.016238536685705185, + -0.02269214764237404, + 0.02169928327202797, + -0.006897785700857639, + -0.010967218317091465, + 0.022287163883447647, + 0.030569732189178467, + -0.021189788356423378, + -0.014814562164247036, + 0.0006972903502173722, + 0.01358654722571373, + -0.015232609584927559, + 0.006812869571149349, + 0.015467762015759945, + -0.00469650374725461, + -0.010843110270798206, + -0.041935402899980545, + 0.021673155948519707, + 0.022901169955730438, + -0.006257650442421436, + -0.030256196856498718, + -0.013357928022742271, + 0.01956985332071781, + 0.007720816880464554, + 0.02011854201555252, + 0.0009291761671192944, + -0.0011496309889480472, + 0.006496068090200424, + -0.034750208258628845, + -0.01646062545478344, + -0.03511599823832512, + -0.05225595086812973, + -0.006417684257030487, + 0.020314501598477364, + 0.010686341673135757, + -0.01122196577489376, + -0.010176846757531166, + 0.0203928854316473, + 0.011731460690498352, + 0.014932137914001942, + -0.03545566275715828, + -0.006042094435542822, + -0.011548565700650215, + 0.0018436552491039038, + -0.016303857788443565, + 0.0028822424355894327, + -0.0010132755851373076, + 0.002302527893334627, + 0.002011854201555252, + 0.03974065184593201, + 0.005437884945422411, + -0.01327954325824976, + 0.00900108739733696, + 0.04410402476787567, + 0.014292002655565739, + 0.06411805003881454, + -0.010941090062260628, + -0.02683343179523945, + 0.004621385596692562, + -0.008569976314902306, + 0.002513184677809477, + 0.032294176518917084, + -0.0031647509895265102, + -0.0012606747914105654, + 0.0116204172372818, + -0.016617393121123314, + 0.03482859209179878, + 0.011019473895430565, + 0.009948226623237133, + -0.018590055406093597, + 0.014762306585907936, + -0.013821699656546116, + 0.006734485737979412, + -0.0014403046807274222, + 0.022182650864124298, + -0.024612553417682648, + 0.0388784296810627, + 0.010575298219919205, + 0.010353210382163525, + -0.018354903906583786, + -0.0020820731297135353, + -0.031562596559524536, + -0.03853876516222954, + -0.006646303925663233, + 0.018707631155848503, + -0.04008031636476517, + -0.009686946868896484, + -0.012554492801427841, + 0.014435706660151482, + 0.020405950024724007, + -0.00013115019828546792, + -0.01783234439790249, + 0.0038440783973783255, + -0.01055570226162672, + -0.0005825721891596913, + 0.02381565049290657, + 0.021842988207936287, + 0.010398934595286846, + -0.0034488928504288197, + -0.017022376880049706, + 0.04410402476787567, + 0.024821577593684196, + -0.020275309681892395, + -0.019935645163059235, + 0.006512397900223732, + 0.009726138785481453, + -0.005075359251350164, + 0.028322726488113403, + -0.009366879239678383, + 0.012939879670739174, + 0.02837498113512993, + 0.004791217390447855, + -0.011999272741377354, + -0.012619812041521072, + 0.03388798609375954, + 0.024455785751342773, + -0.012992136180400848, + 0.007498729042708874, + -0.003984516486525536, + -0.0182765182107687, + 9.843918815022334e-05, + 0.007779604755342007, + -0.012280148454010487, + -0.026702791452407837, + 0.0024478647392243147, + 0.013050924055278301, + -0.004895729478448629, + -0.0031206600833684206, + -0.0024511306546628475, + 0.0029638921841979027, + -0.008001692593097687, + 0.020027093589305878, + -0.031327441334724426, + -0.010621022433042526, + -0.007394216954708099, + 0.013077052310109138, + 0.021607836708426476, + 0.015990320593118668, + -0.010653682053089142, + -0.0007785320049151778, + 0.015389378182590008, + -0.021059148013591766, + 0.03195451572537422, + -0.01069287396967411, + 0.011026006191968918, + 0.0016713739605620503, + 0.011751057580113411, + 0.016160152852535248, + -0.004637715872377157, + -0.012058060616254807, + -0.009373411536216736, + -0.0022486390080302954, + 0.014448770321905613, + 0.01375637948513031, + 0.0006344199064187706, + 0.11255931854248047, + 0.02655908651649952, + -0.010235634632408619, + 0.020445141941308975, + 0.0044711497612297535, + 0.007028425578027964, + 0.006202128250151873, + -0.004856537561863661, + -0.006247851997613907, + -0.05972855165600777, + 0.003994314465671778, + -0.014187490567564964, + 0.0059114545583724976, + -0.02104608528316021, + -0.0022159789223223925, + 0.011809845454990864, + -0.002970424247905612, + 0.017571063712239265, + -0.013677995651960373, + -0.022875042632222176, + 0.040602874010801315, + 0.007720816880464554, + -0.001913874177262187, + 0.02635006420314312, + -0.01380863506346941, + -0.03417539224028587, + 0.009850246831774712, + 0.01486681867390871, + 0.005702430848032236, + -0.02121591567993164, + -0.009144791401922703, + 0.023593561723828316, + -0.052961405366659164, + -0.03221579268574715, + 0.02248312346637249, + -0.04407789558172226, + 0.007890649139881134, + -0.019478406757116318, + 0.006313172169029713, + 0.030125556513667107, + -0.001157795893959701, + 0.019726620987057686, + -0.010438126511871815, + -0.04593298211693764, + 0.0023858107160776854, + -0.0016566769918426871, + -0.012410788796842098, + -0.00236131576821208, + -0.019478406757116318 + ], + "metadata": { + "source": "Thesis_Verladegeraeusche_in_Speditionen.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 41, + "has_images": true, + "image_count": 51, + "coordinates": "CoordinatesMetadata(points=((204.16666666666666, 189.02777777777797), (204.16666666666666, 642.3611111111111), (936.1666666666666, 642.3611111111111), (936.1666666666666, 189.02777777777797)), system=)", + "links": [], + "last_modified": "2025-05-05T22:59:16", + "_known_field_names": "frozenset({'cc_recipient', 'link_texts', 'url', 'filetype', 'category_depth', 'page_number', 'filename', 'orig_elements', 'detection_origin', 'email_message_id', 'page_name', 'coordinates', 'table_as_cells', 'link_start_indexes', 'sent_to', 'bcc_recipient', 'languages', 'last_modified', 'link_urls', 'file_directory', 'subject', 'data_source', 'detection_class_prob', 'image_base64', 'text_as_html', 'attached_to_filename', 'key_value_pairs', 'signature', 'sent_from', 'header_footer_type', 'parent_id', 'links', 'emphasized_text_contents', 'emphasized_text_tags', 'image_mime_type', 'is_continuation', 'image_path'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "Thesis_Verladegeraeusche_in_Speditionen.pdf", + "detection_class_prob": 0.2568194270133972, + "parent_id": "d45475a34bc527cde6987546fa6dd2f5", + "text_as_html": "
Flurf\u00f6rderger\u00e4t |Anzahl Einzelereignisse ElMax-PegelSchallleistungspegel
LAFmaxLWA,5sLWAmaxLWA,1hKlLWAT,1h
[dB(A)][dB(A)][dB(A)][dB(A)][dB(A)][dB(A)]
Gabelstapler29769,3100,7108,872,15,777,8
STABW [dB]6,54,96,54,92,9-
Gabelhubwagen9968,6100,7108,172,16,279,5
STABW [dB]6,45,16,4512,7-
", + "id": "5ba44de7-0ff3-4c0c-b018-67e92171e1c2", + "processing_timestamp": "2025-05-06T14:18:19.298665", + "chunk_number": 11, + "total_chunks": 49, + "chunking_strategy": "hybrid", + "word_count": 577 + } +} \ No newline at end of file diff --git a/data/processed/85fd305f-83de-70b0-47e8-2dc000000012.json b/data/processed/85fd305f-83de-70b0-47e8-2dc000000012.json new file mode 100644 index 0000000000000000000000000000000000000000..0a026d1c21f1e714cb99e24c4e48d2a7d54ad17c --- /dev/null +++ b/data/processed/85fd305f-83de-70b0-47e8-2dc000000012.json @@ -0,0 +1,1570 @@ +{ + "id": "85fd305f-83de-70b0-47e8-2dc000000012", + "content": "Diese Eigenschaften der Datenerhebung sorgen daf\u00fcr, dass die Daten vertrauensw\u00fcrdig und aussagekr\u00e4ftig sind. [60]\nDie statistische Einheit ist der Beladevorgang, der untersucht und gemessen wird. Die akustischen Kenngr\u00f6\u00dfen werden f\u00fcr jeden Beladevorgang separat ermittelt und analy- siert. Die einzelnen Messdaten einer akustischen Kenngr\u00f6\u00dfe, repr\u00e4sentieren die Merk- male der statistischen Einheit. Ein Merkmal ist der Schalldruckpegel, Schallleistungspe- gel oder eine andere akustische Messgr\u00f6\u00dfe. Um die Verteilung der Messwerte zu visua- lisieren, wird eine H\u00e4ufigkeitsverteilung erstellt. Diese zeigt, wie oft ein bestimmter Wert in der Messreihe auftritt. Die H\u00e4ufigkeitsverteilung erm\u00f6glicht es, wichtige Infor- mationen zu erlangen, um die Messergebnisse besser interpretieren zu k\u00f6nnen. [60] Hierbei werden die Messwerte xi und deren H\u00e4ufigkeit ni beziehungsweise hi in eine H\u00e4ufigkeitstabelle gegen\u00fcbergestellt und anschlie\u00dfen in einem S\u00e4ulendiagramm visua-\n21\n2 Grundlagen\nlisiert. Die absolute H\u00e4ufigkeit ni stellt die konkreten Werte dar, wobei die relative H\u00e4u- figkeit die Anteile an der gesamten Anzahl der Messwerte widerspiegelt (siehe Formel 23). [61]\n\n## \ud835\udc5b\ud835\udc56\n\n\u210e\ud835\udc56 = \ud835\udc5b\n\n## Formel 23: relative H\u00e4ufigkeit [-]\n\nMit: ni: absolute H\u00e4ufigkeit [-], n: gesamte Anzahl der Messwerte [-]\nDer Mittelwert, oder auch Median genannt, wird aus den Einzelwerten berechnet und stellt die mittlere Gr\u00f6\u00dfenordnung dar. [60] Bei den Messwerten handelt es sich um Schallpegelgr\u00f6\u00dfen, die energetisch gemittelt werden m\u00fcssen, da es sich hierbei um lo- garithmische Verh\u00e4ltnisse handelt (siehe Formel 24). [62]\n\ud835\udc3f\u0305\ud835\udc5a\ud835\udc56\ud835\udc61\ud835\udc61\ud835\udc52\ud835\udc59 = 10 \u2217 lg( 1 \ud835\udc41 \ud835\udc41 \u2211100,1\u2217\ud835\udc3f\ud835\udc56 \ud835\udc56=1 )\nFormel 24: Mittelungspegel [dB(A)]\nMit: Li: der i-te Schallpegel [dB(A)], N: Anzahl der gemessenen Schalldruckpegel [-]\nEine weitere wichtige Kenngr\u00f6\u00dfe stellt das Streuungsma\u00df dar, welche die Abweichung der einzelnen Messwerte vom Mittelwert darstellt. In der Regel werden folgende Unter- scheidungen gemacht: Spannweite, Varianz, Standardabweichung und Quartilsabstand. Die Spannweite stellt \u201edie Differenz zwischen dem gr\u00f6\u00dften (Maximum) und dem kleins- ten Wert (Minimum)\u201c [59] dar. Der Quartilabstand gibt an wo sich die Werte im mittle- ren 50%-Bereich der Messreihe befinden. Die Varianz (siehe Formel 25) umfasst alle Werte einer Verteilung und gibt die mittlere quadrierte Abweichung vom Mittelwert an. Hierbei wird die quadrierte Abweichung aller einzelnen Messwerte zu einem Mittelwert aufsummiert. Eine gro\u00dfe Varianz deutet auf eine gr\u00f6\u00dfere Streuung um den Mittelwert hin. Folglich deutet eine kleine Varianz eine geringe Streuung um den Mittelwert hin. Um die Kenngr\u00f6\u00dfe interpretierbar zu machen, wird die Quadratwurzel der Varianz, die sogenannte Standardabweichung (siehe Formel 26), berechnet, die die positive Wurzel der Varianz darstellt. Die Standardabweichung gibt \u00e4hnlich wie die Varianz, die durch- schnittliche Abweichung vom Mittelwert an. [59, 60]\n\ud835\udf0e = \ud835\udc602 = \u2211 (\ud835\udc3f\ud835\udc56 \u2212 \ud835\udc3f\u0305)\u00b2 \ud835\udc5b \ud835\udc56=1 \ud835\udc5b\nFormel 25: Varianz der Schalldruckpegel [dB(A)]\n22\n2 Grundlagen\n\ud835\udc60 = \u221a\ud835\udc602 = \u221a \u2211 (\ud835\udc3f\ud835\udc56 \u2212 \ud835\udc3f\u0305)\u00b2 \ud835\udc5b \ud835\udc56=1 \ud835\udc5b\nFormel 26: Standardabweichung der Schalldruckpegel [dB(A)]\nMit: Li: der i-te Schallpegel [dB(A)], L\u0305: Mittelungspegel [dB(A)]; n: Anzahl der Messwerte [-]\nDie Messdaten, die einer nat\u00fcrlichen Variation unterliegen, werden auf einem Dia- gramm entsprechend ihrer H\u00e4ufigkeitsverteilung dargestellt. Wenn eine bestimmte Re- gelm\u00e4\u00dfigkeit in der Verteilung der Daten vermutet wird, kann eine Funktion angepasst werden, wie zum Beispiel eine Gau\u00dfsche Glockenkurve oder auch Normalverteilung ge- nannt. Dabei werden die Daten analysiert und eine Funktion verwendet, die am besten zu der beobachteten Verteilung passt.", + "embedding": [ + 0.01918942481279373, + 0.03707396984100342, + 0.023398304358124733, + -0.04313782602548599, + -0.003030329942703247, + 0.0019605194684118032, + 0.002568184630945325, + -0.008456139825284481, + 0.003063911572098732, + -0.041986461728811264, + 0.02454967051744461, + 0.028144489973783493, + -0.017782200127840042, + 0.001025834702886641, + -0.0080275759100914, + 0.007541443686932325, + 0.04042572155594826, + 0.01377800665795803, + 0.014942165464162827, + -0.009940122254192829, + -0.01712976023554802, + 0.014481619000434875, + 0.006262148730456829, + 0.007861267775297165, + -0.014392068609595299, + 0.033952489495277405, + 0.016170289367437363, + -0.021249089390039444, + -0.024050746113061905, + -0.0062685455195605755, + 0.0040105897933244705, + -0.013739627785980701, + -0.010227963328361511, + -0.0001452199649065733, + -0.020635027438402176, + 0.012255646288394928, + -0.01116824522614479, + -0.013125566765666008, + 0.02896323800086975, + -0.02005934529006481, + 0.004157708492130041, + 0.009172544814646244, + 0.0007287983316928148, + -0.022259732708334923, + 0.014942165464162827, + -0.0004973259055987, + -0.00011543638538569212, + -0.002796858549118042, + 0.007112880237400532, + 0.006457241252064705, + 0.0058975499123334885, + 0.010560580529272556, + -0.027274569496512413, + 0.011225813068449497, + -0.0040489686653018, + -0.017500754445791245, + -0.007771716918796301, + -0.0031022904440760612, + -0.014903786592185497, + -0.029551714658737183, + -0.027811873704195023, + 0.001318473368883133, + -0.016413355246186256, + 0.003914642613381147, + -0.04098861292004585, + -0.012127716094255447, + -0.024588050320744514, + 0.006201382260769606, + -0.010682113468647003, + 0.006844228133559227, + 0.02014889568090439, + 0.03259643539786339, + 0.0075734262354671955, + 0.025317247956991196, + 0.024408947676420212, + 0.0022915371228009462, + 0.016144702211022377, + 0.009178941138088703, + -0.003241413738578558, + 0.005644889082759619, + 0.015236402861773968, + -0.00408095121383667, + -0.013368632644414902, + 0.035769086331129074, + 0.0071384659968316555, + 0.009684262797236443, + -0.016707591712474823, + 0.022848207503557205, + -0.007253602612763643, + -0.006997743621468544, + 0.007880456745624542, + 0.00426325062289834, + -0.006537197157740593, + 0.0036811712197959423, + -0.000303033011732623, + 0.004103338811546564, + 0.0036459907423704863, + 0.020443134009838104, + -0.004938078578561544, + -0.01258186623454094, + -0.021504947915673256, + -0.002899202285334468, + 0.0035724311601370573, + -0.00538263376802206, + -0.012134113349020481, + 0.014967751689255238, + -0.0205454770475626, + 0.003674774896353483, + -0.0019573213066905737, + -0.019893037155270576, + -0.025534728541970253, + 0.015505054965615273, + -0.016758764162659645, + -0.011302570812404156, + 0.041244469583034515, + -0.009051011875271797, + 0.03837884962558746, + -0.02208063192665577, + -0.00983777828514576, + -0.013957108370959759, + 0.023398304358124733, + 0.0029087970033288, + 0.021991081535816193, + -0.005152360536158085, + 0.01852419041097164, + 0.013368632644414902, + 0.01116824522614479, + -0.016029566526412964, + -0.02616158314049244, + -0.014635134488344193, + -0.006527602672576904, + 0.0031774488743394613, + 0.014942165464162827, + 0.02474156580865383, + -0.01113626267760992, + -0.0016175085911527276, + -0.0006484426558017731, + 0.01512126624584198, + -0.009882553480565548, + -0.038225334137678146, + 0.02709546685218811, + 0.01700183004140854, + -0.028553863987326622, + -0.037688031792640686, + -0.008692809380590916, + 0.03425952047109604, + 0.01739841140806675, + 0.012396368198096752, + -0.004803752526640892, + -0.00557132950052619, + 0.0074454969726502895, + -0.018575362861156464, + 0.026008067652583122, + -0.013112773187458515, + -0.008449743501842022, + -0.009697056375443935, + 0.004355999641120434, + 0.017769407480955124, + -0.011283381842076778, + -0.00816190242767334, + 0.0012625042581930757, + 0.02822124771773815, + 0.004320818930864334, + -0.0033997264690697193, + 0.0005189140210859478, + 0.028400348499417305, + -0.006079849321395159, + -0.002800056943669915, + -0.014340897090733051, + -0.002788863144814968, + -0.0012057354906573892, + 0.01570974290370941, + 0.0006016684346832335, + 0.01659245602786541, + -0.005427408963441849, + 0.005609708372503519, + -0.0017878147773444653, + 0.00345409638248384, + -0.02804214507341385, + -0.025061389431357384, + -0.02133863978087902, + 0.00538583192974329, + 0.013317461125552654, + 0.004992448724806309, + -0.022387662902474403, + 0.026135995984077454, + 0.01879284344613552, + 0.02924468368291855, + -0.0036683783400803804, + -0.012428350746631622, + 0.0011313764844089746, + 0.00023846857948228717, + -0.006214175373315811, + -0.013522148132324219, + -0.6263428330421448, + 0.0072280168533325195, + -0.00046094597200863063, + -0.000923491083085537, + 0.009140562266111374, + 0.03057515062391758, + 0.018895186483860016, + -0.006844228133559227, + -0.0011225813068449497, + 0.03605053201317787, + -0.002406673738732934, + 0.0006372487987391651, + 0.00734315300360322, + -0.00859686266630888, + -0.017078587785363197, + -0.02007213793694973, + -0.016554076224565506, + -0.02275865711271763, + 0.02502300962805748, + -0.002126827836036682, + -0.0342339351773262, + 0.024728771299123764, + 0.008839928545057774, + 0.023910023272037506, + -0.011219416745007038, + 0.020110517740249634, + 0.02255397103726864, + 0.005174748133867979, + -0.004279241897165775, + -0.007183241192251444, + -0.035231783986091614, + 0.0011217817664146423, + -0.018844015896320343, + 0.012127716094255447, + 0.03901849687099457, + 8.530299237463623e-05, + 0.008481726050376892, + 0.019381318241357803, + 0.01840905472636223, + 0.005721646826714277, + -0.011149055324494839, + -0.01348376926034689, + 0.01076526753604412, + -0.0029983476269990206, + 0.01348376926034689, + -0.006825038697570562, + 0.029321441426873207, + -0.010522201657295227, + 0.009390025399625301, + -0.044596221297979355, + 0.005664078518748283, + -0.01338142529129982, + 0.016016773879528046, + 0.011660773307085037, + 0.03226381912827492, + -0.004215276800096035, + 0.02208063192665577, + -0.01023435965180397, + -0.0268396083265543, + 0.004778166767209768, + -0.004611858632415533, + 0.003046321216970682, + 0.0026337485760450363, + -0.026379061862826347, + -0.029065581038594246, + 0.014264139346778393, + 0.0027824665885418653, + -0.042395833879709244, + 0.02307848073542118, + -0.01893356628715992, + -0.01258186623454094, + 0.033287256956100464, + 0.0035532417241483927, + -0.02228531800210476, + 0.029474956914782524, + 0.016809936612844467, + 0.011923029087483883, + -0.02722339704632759, + 0.013215117156505585, + 0.004260052461177111, + -0.0045191096141934395, + -0.008193884044885635, + -0.018025266006588936, + 0.0003088297962676734, + -0.0002520610869396478, + -0.019765106961131096, + 0.008174695074558258, + 0.02135143242776394, + 0.0040841493755578995, + 0.01831950433552265, + 0.010144809260964394, + 0.023577407002449036, + 0.010726888664066792, + -0.02247721329331398, + -0.006383682135492563, + 0.03223823383450508, + -0.01464792713522911, + 0.019240597262978554, + -0.005238712765276432, + -0.03285229578614235, + -0.026379061862826347, + -0.009677866473793983, + 0.02227252535521984, + -0.008795153349637985, + 0.005747232586145401, + -0.0004509514837991446, + 0.007515857927501202, + 0.005337858106940985, + 0.017027415335178375, + -0.022464420646429062, + 0.010387875139713287, + -0.006786659825593233, + -0.015044509433209896, + -0.007707752287387848, + -0.008737584576010704, + -0.024524085223674774, + 0.034361861646175385, + 0.0024914268869906664, + 0.004397576674818993, + 0.0014927773736417294, + 0.010963558219373226, + 0.013099980540573597, + 0.05086476728320122, + -0.02549634873867035, + -0.007784510031342506, + 0.01679714396595955, + 0.004020184278488159, + 0.02903999574482441, + 0.0054689859971404076, + -0.037688031792640686, + 0.03336401283740997, + -0.01197420060634613, + 0.004787761252373457, + -0.020622234791517258, + 0.03090776689350605, + 0.0016103126108646393, + 0.016682006418704987, + -0.02020006813108921, + 0.010112826712429523, + -0.029014410451054573, + -0.030216947197914124, + -0.0036683783400803804, + 0.00325420661829412, + -0.04306107014417648, + -0.02435777708888054, + -0.038916151970624924, + -0.006399672944098711, + -9.324860729975626e-05, + 0.01673317886888981, + 0.002280343323945999, + 0.007394324988126755, + -0.02543238364160061, + -0.003498871810734272, + 0.03955579921603203, + 0.017718235030770302, + 0.00441356748342514, + -0.018895186483860016, + -0.022438833490014076, + -0.0027296957559883595, + -0.014174588024616241, + -0.0007220021216198802, + 0.019777899608016014, + -0.05526554211974144, + -0.017884543165564537, + -0.008085144683718681, + -0.028067732229828835, + 0.003594818990677595, + -0.007196034304797649, + -0.023539027199149132, + -0.03292905166745186, + 0.0039306338876485825, + 0.02080133557319641, + -0.015671363100409508, + 0.0053154705092310905, + 0.0017814182210713625, + 0.011923029087483883, + -0.033287256956100464, + -0.007630994543433189, + -0.013227909803390503, + -0.035359714180231094, + 0.018281124532222748, + -0.004685417748987675, + -0.031752102077007294, + -0.0031534621957689524, + 0.033082567155361176, + 0.00048653187695890665, + 0.009505162015557289, + 0.009569126181304455, + -0.010061655193567276, + 0.02676285058259964, + -0.0009698655339889228, + 0.013368632644414902, + -0.030856594443321228, + 0.01954762637615204, + -0.01906149461865425, + 0.004426360595971346, + 0.002157211070880294, + -0.007112880237400532, + -0.0029295855201780796, + 0.03124038316309452, + 0.01562019158154726, + 0.015837671235203743, + 0.02208063192665577, + -0.028144489973783493, + 0.02241324819624424, + -0.025918515399098396, + 0.003100691130384803, + -0.01972672902047634, + 0.031470656394958496, + 0.01826833188533783, + 0.030421635136008263, + -0.004838933236896992, + -0.04088626801967621, + -0.008635241538286209, + 0.010394271463155746, + 0.04152591526508331, + -0.011731134727597237, + 0.015300367958843708, + 0.0318288579583168, + -0.005296281073242426, + -0.004378387238830328, + -0.015300367958843708, + 0.03257085010409355, + 0.006482827477157116, + 0.009952914901077747, + -0.01026634220033884, + 0.016566870734095573, + 0.025598691776394844, + 0.012965654954314232, + -0.01559460535645485, + -0.0020020967349410057, + -0.004032977391034365, + 0.007842077873647213, + -0.0060030915774405, + 0.011948615312576294, + 0.025330040603876114, + 0.012389971874654293, + -0.011814288794994354, + 0.030805423855781555, + 0.011897442862391472, + 0.01153924036771059, + 0.0015591407427564263, + -0.003566034836694598, + -0.011264191940426826, + 0.02822124771773815, + -0.02456246316432953, + 0.010515804402530193, + 0.040169861167669296, + -0.00672269519418478, + -0.011756720952689648, + -0.009006236679852009, + 0.006837831810116768, + -0.014097830280661583, + -0.00933245662599802, + 0.013867557980120182, + -0.016157494857907295, + 0.023385511711239815, + -0.01210852712392807, + -0.0063325101509690285, + 0.039427872747182846, + 0.01024075597524643, + 0.006946571636945009, + 0.007336756680160761, + -0.004912492819130421, + 0.013688456267118454, + 0.011903840117156506, + -0.01666921377182007, + -0.00513317110016942, + -0.02154332771897316, + 0.006978554185479879, + 0.015505054965615273, + -0.018485812470316887, + -0.017219310626387596, + 0.027811873704195023, + 0.01820436678826809, + -0.016413355246186256, + 0.006418862380087376, + 0.017423998564481735, + 0.0159144289791584, + 0.017475169152021408, + -0.01907428726553917, + -0.024792736396193504, + -0.010343099944293499, + 0.028016559779644012, + 0.0005053215427324176, + -0.02481832355260849, + -0.008788756094872952, + 0.00269131688401103, + -0.025406798347830772, + -0.010503011755645275, + -0.014264139346778393, + 0.009095787070691586, + -0.0052451095543801785, + -0.03157300129532814, + 0.003172651631757617, + 0.020762957632541656, + 0.031342726200819016, + 0.004778166767209768, + -0.005200333893299103, + 0.04249817878007889, + 0.0024258631747215986, + -0.013330253772437572, + -0.016835521906614304, + -0.02181197889149189, + 0.01421296689659357, + -0.0044935233891010284, + -0.03443862125277519, + -0.019649971276521683, + -0.011654376983642578, + -0.01725768856704235, + -0.010950764641165733, + -0.020890887826681137, + -0.0009186937240883708, + 0.017577512189745903, + 0.0025010216049849987, + -0.004560686647891998, + 0.019573213532567024, + -0.0080275759100914, + 0.04160267114639282, + 0.017948508262634277, + -0.009818589314818382, + -0.015543433837592602, + -0.0018565768841654062, + 0.01719372533261776, + 0.007112880237400532, + 0.01672038622200489, + 0.004506316501647234, + 0.01712976023554802, + -0.04139798507094383, + -0.0017142553115263581, + -0.008980650454759598, + -0.007656580302864313, + 0.018178781494498253, + 0.01518523134291172, + -0.01211492344737053, + 0.007682166527956724, + 0.04019544646143913, + 0.008756774477660656, + 0.0031022904440760612, + -0.006099038757383823, + 0.009082994423806667, + -0.012306817807257175, + 0.024715978652238846, + 0.01592722162604332, + -0.01725768856704235, + -0.02804214507341385, + 0.020187275484204292, + 0.033287256956100464, + -0.01210852712392807, + -0.01733444631099701, + 0.025905722752213478, + 0.01847301982343197, + -0.0014935769140720367, + -0.029807573184370995, + -0.008213073946535587, + 0.028988825157284737, + 0.0159144289791584, + 0.0285026915371418, + -0.03633197769522667, + 0.012767364270985126, + -0.0011265791254118085, + 0.007682166527956724, + -0.0006064657936803997, + -0.01973952166736126, + 0.027197811752557755, + 0.025509141385555267, + 0.01732165366411209, + -0.0047365897335112095, + -0.0021236296743154526, + -0.00357882771641016, + 0.02428101934492588, + 0.0060734529979527, + 0.011820686049759388, + 0.008616051636636257, + 0.0007427906384691596, + -0.010784456506371498, + -0.0007319966098293662, + -0.01290808618068695, + -0.00028124501113779843, + -0.02883530966937542, + -0.0018309908919036388, + -0.017743822187185287, + -0.015402711927890778, + -0.0342339351773262, + -0.0323917493224144, + -0.008225866593420506, + 0.024511292576789856, + -0.02543238364160061, + -0.03446420654654503, + -0.009537143632769585, + -0.01441765483468771, + -0.020366376265883446, + -0.024472912773489952, + 0.01111067645251751, + 0.013330253772437572, + -0.03735541179776192, + -0.029347026720643044, + -0.013004033826291561, + 0.009671470150351524, + 0.002571383025497198, + 0.016144702211022377, + -0.009754624217748642, + -0.018357882276177406, + 0.006198184099048376, + -0.02924468368291855, + 0.009677866473793983, + -0.02909116819500923, + -0.024984631687402725, + -0.025189317762851715, + 0.005427408963441849, + -0.016912279650568962, + 0.006300527602434158, + 0.0009978500893339515, + -0.0029759600292891264, + -0.004330413416028023, + 0.004416766110807657, + 0.023193618282675743, + -0.007176844868808985, + -0.018767258152365685, + 0.007618201430886984, + 0.008910289965569973, + 0.0016854711575433612, + 0.007317567244172096, + -0.028477106243371964, + 0.016605248674750328, + -0.028681794181466103, + -0.00107460783328861, + -0.019227802753448486, + 0.024370569735765457, + -0.010227963328361511, + -0.0016263037687167525, + 0.010893196798861027, + 0.00809154100716114, + -0.009345250204205513, + -0.0016486913664266467, + -0.011878253892064095, + -0.007323963567614555, + -0.001760629704222083, + -0.00018309909501112998, + -0.007317567244172096, + 0.021236296743154526, + 0.015313160605728626, + 0.02796538919210434, + -0.010087240487337112, + 0.006425259169191122, + -0.018498605117201805, + 0.028477106243371964, + 0.009876157157123089, + 0.0044295587576925755, + 0.06155967339873314, + -0.020494306460022926, + 0.008436950854957104, + -0.030344877392053604, + 0.00473019341006875, + 0.028937652707099915, + 0.01611911691725254, + -0.012025373056530952, + -0.015313160605728626, + -0.019253389909863472, + -0.019035909324884415, + 0.005980703979730606, + 0.029065581038594246, + -0.0007883655489422381, + 0.0025697837118059397, + -0.007381531875580549, + -0.0018885591998696327, + -0.012319610454142094, + 0.012466729618608952, + 0.01606794446706772, + -0.029270268976688385, + -0.03070307895541191, + 0.01651569828391075, + -0.008424157276749611, + 0.01613190956413746, + -0.026123203337192535, + -0.011859064921736717, + -0.013125566765666008, + -0.011596809141337872, + -0.004020184278488159, + -0.03003784641623497, + -0.0038954531773924828, + 0.005520157981663942, + 0.02549634873867035, + 0.01428972464054823, + 0.033824559301137924, + 0.015824878588318825, + -0.005628897808492184, + 0.014711892232298851, + -0.008891100063920021, + 0.006997743621468544, + -0.009684262797236443, + -0.02193990908563137, + -0.019752314314246178, + 0.01840905472636223, + 0.01893356628715992, + 0.012837724760174751, + 0.013176738284528255, + -0.00980579573661089, + 0.005827188491821289, + 0.044391535222530365, + 0.005174748133867979, + -0.018178781494498253, + -0.016643628478050232, + -0.029602885246276855, + 0.016208667308092117, + 0.01037508249282837, + 0.006780263502150774, + 0.01954762637615204, + -0.01972672902047634, + 0.00144720240496099, + 0.0034668894950300455, + -0.019291767850518227, + -0.006569179706275463, + -0.0031870435923337936, + 0.029781987890601158, + -0.034822408109903336, + 0.027325740084052086, + -0.001511966809630394, + -0.0049444749020040035, + -0.03198237344622612, + -0.002195589942857623, + -0.009677866473793983, + -0.017782200127840042, + 0.027146639302372932, + 0.00762459821999073, + 0.022298110648989677, + -0.010566976852715015, + -0.003882660297676921, + -0.0029759600292891264, + -0.02717222459614277, + 6.156606832519174e-05, + -0.004029779229313135, + 0.002800056943669915, + -0.012159698642790318, + -0.04577317461371422, + -0.01565857045352459, + -0.022899379953742027, + -0.030268119648098946, + 0.02655816450715065, + 0.014609548263251781, + 0.004877312108874321, + 0.021556120365858078, + 0.0021923917811363935, + -0.0011497663799673319, + 0.0009850570932030678, + -0.009856968186795712, + 0.011993390507996082, + 0.010630941018462181, + 0.028860894963145256, + 0.025381213054060936, + -0.019624384120106697, + -0.030958939343690872, + -0.056033119559288025, + 0.005373038817197084, + 0.009306871332228184, + 0.019880244508385658, + -0.009441196918487549, + -0.013969901017844677, + 0.002160409465432167, + 0.026276718825101852, + -0.019496455788612366, + -0.00015951209934428334, + -0.025138147175312042, + 0.027914216741919518, + 0.014340897090733051, + -0.008488122373819351, + -0.009856968186795712, + 0.02448570542037487, + -0.019816279411315918, + -0.008411364629864693, + 0.023782093077898026, + -0.02193990908563137, + -0.0061150300316512585, + 0.00582079216837883, + 0.000823546142783016, + 0.03612729161977768, + 0.007970008067786694, + 0.02301451750099659, + 0.006812245585024357, + -0.020622234791517258, + -0.013067997992038727, + -0.016208667308092117, + -0.028349176049232483, + -0.0031870435923337936, + -0.013765214011073112, + 0.030012261122465134, + 0.010080844163894653, + -0.007758924271911383, + 0.03180327266454697, + -0.009306871332228184, + 0.010112826712429523, + 0.007432703860104084, + -0.009479575790464878, + 0.01954762637615204, + -0.013957108370959759, + -0.007336756680160761, + 0.0187416709959507, + 0.00010089439456351101, + 0.008270641788840294, + 0.007170448545366526, + -0.02007213793694973, + -0.027811873704195023, + 0.006677919998764992, + -0.015466676093637943, + -0.013036015443503857, + 0.003511664690449834, + 0.00690819276496768, + -0.026660507544875145, + -0.0042760432697832584, + -0.013867557980120182, + -0.0036140084266662598, + -0.015569020062685013, + 0.021504947915673256, + -0.038916151970624924, + 0.0007371937390416861, + -0.0063964747823774815, + -0.007880456745624542, + 0.015517848543822765, + -0.003100691130384803, + -0.009716245345771313, + -0.01846022717654705, + 0.020775750279426575, + -0.030549563467502594, + 0.011769513599574566, + 0.02883530966937542, + -0.01585046388208866, + -0.016848314553499222, + 0.015198023989796638, + 0.010100034065544605, + 0.00622057169675827, + 0.029781987890601158, + -0.00023127254098653793, + -0.020519891753792763, + -0.014519997872412205, + -0.012517901137471199, + 0.03497592359781265, + -0.039427872747182846, + 0.009204527363181114, + -0.01624704711139202, + 0.019701141864061356, + 0.0014048258308321238, + -0.000706010905560106, + 0.0061310213059186935, + 0.010874006897211075, + 0.017948508262634277, + -0.013573319651186466, + 0.0076373908668756485, + -0.017308861017227173, + 0.012345196679234505, + 0.010029672645032406, + -0.010893196798861027, + 0.002390682464465499, + -0.04208880662918091, + -0.007016933057457209, + -0.0023187221959233284, + 0.012965654954314232, + -0.03280112147331238, + 0.021389812231063843, + -0.0062845367938280106, + -0.023782093077898026, + -0.01117464154958725, + 0.04416126385331154, + -0.00498605240136385, + 0.013163945637643337, + 0.00622057169675827, + -0.013650077395141125, + 0.009575522504746914, + 0.017372826114296913, + -0.014890993945300579, + -0.007285584695637226, + 0.020622234791517258, + 0.008584069088101387, + -0.04400774836540222, + 0.01746237650513649, + -0.028144489973783493, + 0.02280982956290245, + 0.0205454770475626, + -0.009006236679852009, + -0.009358042851090431, + 0.02113395370543003, + -0.016093531623482704, + -0.019841864705085754, + -0.014110623858869076, + 0.0014288126258179545, + -0.008507311344146729, + 0.035564400255680084, + -0.01485261507332325, + 0.02261793613433838, + 0.0060670566745102406, + 0.021645670756697655, + -0.04403333365917206, + 0.0015135658904910088, + -0.0034668894950300455, + 0.01468630600720644, + 0.006210977211594582, + -0.019918622449040413, + -0.029526127502322197, + -0.009358042851090431, + 0.023922815918922424, + -0.012409161776304245, + 0.01117464154958725, + 0.03090776689350605, + -0.013598905876278877, + -0.02536841854453087, + 0.012153302319347858, + 0.025982480496168137, + 0.026110410690307617, + 0.003853876143693924, + 0.016758764162659645, + -0.019982587546110153, + -0.011993390507996082, + -0.02689078077673912, + 0.012025373056530952, + -0.047078054398298264, + 0.013650077395141125, + 0.008916686289012432, + -0.012671416625380516, + 0.004960466176271439, + 0.02154332771897316, + -0.010010483674705029, + 0.008072351105511189, + -0.012357989326119423, + 0.019368525594472885, + 0.018447434529662132, + -0.008705602027475834, + 0.024178674444556236, + -0.004304827656596899, + -0.021837566047906876, + -0.03477123752236366, + 0.011942218989133835, + -0.034413035959005356, + 0.0015439491253346205, + 0.005836783442646265, + -0.0069849505089223385, + 0.00986336451023817, + -0.020647820085287094, + 0.024037953466176987, + 0.0020020967349410057, + -0.021300261840224266, + -0.016298217698931694, + -0.01673317886888981, + -0.050890352576971054, + 0.01806364580988884, + 0.01294646505266428, + -0.01666921377182007, + -0.0016838719602674246, + -0.0098313819617033, + -0.009114976972341537, + -0.0005928732571192086, + -0.022912172600626945, + -0.0027073079254478216, + -0.006300527602434158, + 0.001938131870701909, + 0.007387928664684296, + -0.005990298930555582, + 0.003745136084035039, + -0.0016854711575433612, + -0.0050340257585048676, + -0.030293704941868782, + -0.010432650335133076, + 0.18421848118305206, + -0.034361861646175385, + -0.0010250350460410118, + 0.012421954423189163, + -0.03500150889158249, + -0.032084718346595764, + 0.038097403943538666, + -0.01264583133161068, + 0.017718235030770302, + 0.02435777708888054, + 0.0058079990558326244, + 0.014711892232298851, + -0.0018373874481767416, + 0.01611911691725254, + 0.02909116819500923, + -0.05500968545675278, + -0.025701036676764488, + -0.014008279889822006, + 0.00336134759709239, + 0.010074447840452194, + 0.017372826114296913, + -0.01250510849058628, + -0.01431531086564064, + -0.010547786951065063, + 0.03525736927986145, + -0.003905047895386815, + -0.011008333414793015, + 0.004832536913454533, + 0.03901849687099457, + 0.030063431710004807, + -0.00603507412597537, + -0.0040137879550457, + 0.008616051636636257, + 0.001114585786126554, + -0.018907979130744934, + 0.0026321494951844215, + -0.010758871212601662, + 0.002721700118854642, + 0.03715072572231293, + 0.012121319770812988, + 0.017718235030770302, + -0.021325847133994102, + -0.008648034185171127, + -0.012773760594427586, + 0.0260976180434227, + 0.028886480256915092, + -0.0029935501515865326, + 0.0035884224344044924, + -0.00949876569211483, + 0.0042344662360847, + -0.002744087716564536, + 0.008513707667589188, + -0.01564577780663967, + 0.03354311361908913, + -0.003716351930052042, + -0.007451893296092749, + 0.014929372817277908, + -0.008552086539566517, + 0.0015351539477705956, + -0.0016598852816969156, + -0.0381229892373085, + 0.009671470150351524, + -0.014276931993663311, + 0.02133863978087902, + -0.022310905158519745, + 0.015057302080094814, + -0.036229632794857025, + 0.002963166916742921, + -0.020583856850862503, + -0.007906042970716953, + -0.009959311224520206, + -0.005667276680469513, + -0.024524085223674774, + 0.0033517528790980577, + -0.0032909864094108343, + -0.02996108867228031, + 0.02140260487794876, + 0.030191361904144287, + 0.015313160605728626, + 0.007336756680160761, + -0.007132069673389196, + -4.5874719944549724e-05, + -0.02554752118885517, + -0.012300421483814716, + 0.00010254349035676569, + 0.0007899646298028529, + 0.00792523194104433, + 0.004615056794136763, + 0.00737513555213809, + -0.04011869058012962, + -0.021057195961475372, + -0.001535953488200903, + 0.007906042970716953, + -0.012569073587656021, + 0.007758924271911383, + -0.0005205131601542234, + -0.0023634973913431168, + 0.009959311224520206, + -0.021927116438746452, + -0.012492315843701363, + -0.028681794181466103, + 0.07558074593544006, + 0.05270695313811302, + -0.003294184571132064, + 0.005238712765276432, + -0.009134165942668915, + -0.01920221745967865, + 0.015569020062685013, + 0.007528651040047407, + -0.01959879882633686, + -0.006729091517627239, + -0.029781987890601158, + 0.02113395370543003, + -0.01793571561574936, + 0.0015015724347904325, + 0.017833372578024864, + -0.010387875139713287, + 0.0004341607273090631, + 0.0016135107725858688, + 0.0074454969726502895, + 0.0002740489726420492, + -0.0102023771032691, + 0.004906096030026674, + 0.019586006179451942, + 0.002390682464465499, + -0.012466729618608952, + -0.03518061339855194, + 0.025061389431357384, + 0.0036172065883874893, + 0.008213073946535587, + 0.0323917493224144, + -0.02174801379442215, + 0.024664808064699173, + 0.011232210323214531, + 0.009754624217748642, + 0.0053090741857886314, + -0.029270268976688385, + -0.028323590755462646, + -0.023385511711239815, + 0.019291767850518227, + 0.008353795856237411, + -0.005500968545675278, + -0.0005516959354281425, + 0.006313320714980364, + 0.005836783442646265, + -0.009345250204205513, + 0.01153924036771059, + 0.013074394315481186, + -0.013995487242937088, + -0.025982480496168137, + 0.003156660357490182, + -0.015210817568004131, + 0.001172153977677226, + -0.01645173318684101, + 0.004538299050182104, + 0.01070769876241684, + -0.014276931993663311, + -0.01592722162604332, + 0.001374442595988512, + 0.015569020062685013, + -0.0037355413660407066, + -0.02635347656905651, + 0.008987046778202057, + -0.004979655612260103, + 0.007055311929434538, + -0.005414615850895643, + -0.15883725881576538, + 0.01746237650513649, + 0.02140260487794876, + -0.014507205225527287, + 0.0048101493157446384, + 0.0019685151055455208, + 0.00538583192974329, + 0.01301043014973402, + -0.010592562146484852, + -0.009409214369952679, + 0.03497592359781265, + -0.017833372578024864, + -0.008955065160989761, + -0.03193120285868645, + -0.010183188132941723, + -0.00625575240701437, + -0.014622341841459274, + 0.039837244898080826, + 0.01847301982343197, + 0.028912067413330078, + 0.016003979369997978, + -0.02053268440067768, + 0.016003979369997978, + 0.015453883446753025, + -0.00048293385771103203, + 0.005625699646770954, + -0.009914536029100418, + 0.03418276086449623, + -0.010439046658575535, + -0.023666957393288612, + -0.0014416055055335164, + -0.02668609283864498, + 0.01645173318684101, + 0.015236402861773968, + -0.0058335852809250355, + -0.0039018497336655855, + -0.005657682195305824, + -0.009997690096497536, + 0.002337911631911993, + 0.011871857568621635, + 0.015415504574775696, + 0.03553881496191025, + -0.014328103512525558, + 0.020890887826681137, + -0.0008403368992730975, + 0.021300261840224266, + 0.018076438456773758, + -0.010541390627622604, + -0.01037508249282837, + -0.010195980779826641, + 0.0016966649563983083, + -0.028809722512960434, + 0.010790852829813957, + 0.011468879878520966, + -0.008507311344146729, + 0.007496668491512537, + -0.027990974485874176, + 0.0311892107129097, + 0.005769620183855295, + -0.012805743142962456, + 0.00043655940680764616, + -0.006380483508110046, + 0.026532577350735664, + -0.0018038059351965785, + 0.019099874421954155, + -0.017692649737000465, + -0.013714042492210865, + 0.02295055240392685, + -0.027914216741919518, + -0.008628844283521175, + 0.00029923507827334106, + -0.02454967051744461, + 0.006709902081638575, + 0.007669373415410519, + -0.005497770383954048, + 0.0036044137086719275, + -0.012428350746631622, + 0.0025633873883634806, + -0.009473179467022419, + -0.014225760474801064, + -0.02094205841422081, + 0.045594073832035065, + 0.008142712526023388, + -0.029807573184370995, + -0.006390078458935022, + -0.018165988847613335, + -0.0024498498532921076, + 0.002590572228655219, + -0.00893587525933981, + -0.004269646946340799, + 0.00495087169110775, + -0.01906149461865425, + -0.018025266006588936, + -0.01606794446706772, + 0.013317461125552654, + -0.006735487841069698, + -0.010541390627622604, + 0.014328103512525558, + 0.002104440238326788, + -0.006054263561964035, + -0.010611752048134804, + -0.012300421483814716, + -0.00855848379433155, + 0.03157300129532814, + 0.0043176207691431046, + 0.001092198072001338, + -0.011584016494452953, + 0.010848421603441238, + 0.03715072572231293, + -0.00849451869726181, + -0.03472006693482399, + 0.005213127005845308, + 0.018895186483860016, + 0.01700183004140854, + -0.002533004153519869, + 0.020622234791517258, + -0.027018709108233452, + -0.01592722162604332, + 0.01947087049484253, + -0.006338906474411488, + 0.05900108441710472, + -0.014366482384502888, + 0.006754677277058363, + 0.018613742664456367, + 0.000697215786203742, + -0.029526127502322197, + -0.08909010142087936, + 0.0008955064695328474, + 0.008513707667589188, + 0.014954958111047745, + 0.011699152179062366, + 0.014635134488344193, + 0.0016087134135887027, + -0.0010114426258951426, + 0.006230166647583246, + 0.04835734888911247, + -0.021261882036924362, + -0.0169378649443388, + -0.030472805723547935, + -0.004605461843311787, + 0.005836783442646265, + -0.013522148132324219, + -0.01164158433675766, + -0.023910023272037506, + -0.024255432188510895, + 0.03492475301027298, + -0.009517954662442207, + -0.00993372593075037, + -0.007362342439591885, + -0.010982747189700603, + -0.005919937510043383, + 0.018690500408411026, + -0.0330313965678215, + 0.017551926895976067, + 0.019035909324884415, + -0.003156660357490182, + 0.030140189453959465, + -0.04119329899549484, + -0.003511664690449834, + -0.02087809331715107, + -0.0020100921392440796, + -0.010010483674705029, + -0.02857944928109646, + -0.017513548955321312, + 0.03149624168872833, + -0.012460333295166492, + 0.0037131537683308125, + 0.013266288675367832, + 0.014507205225527287, + 0.005021232645958662, + 0.01920221745967865, + -0.005763223860412836, + -0.009479575790464878, + 0.027146639302372932, + 0.012050958350300789, + 0.007950818166136742, + -0.019841864705085754, + -0.02173522114753723, + -0.016835521906614304, + 0.020890887826681137, + 0.010004086419939995, + -0.0006716298521496356, + -0.00044255610555410385, + -0.01565857045352459, + -0.014635134488344193, + -0.015517848543822765, + -0.019240597262978554, + 0.020903680473566055, + -0.01744958385825157, + 0.046873368322849274, + -0.015530641190707684, + -0.01217888854444027, + -0.03510385379195213, + -0.00451591145247221, + 0.01334304641932249, + -0.013330253772437572, + -0.006997743621468544, + 0.016349390149116516, + -0.002974360715597868, + 0.010835628025233746, + -0.019368525594472885, + 0.023794885724782944, + -0.04705246910452843, + -0.016170289367437363, + 0.020097723230719566, + -0.017897337675094604, + -0.009019029326736927, + -0.020583856850862503, + 0.013061601668596268, + -0.012498712167143822, + 0.04175618663430214, + 0.02133863978087902, + -0.011520051397383213, + -0.012249249033629894, + 0.01579929329454899, + -0.024511292576789856, + -0.005561735015362501, + 0.011481672525405884, + 0.025944102555513382, + -0.004787761252373457, + -0.026865195482969284, + -0.00451591145247221, + 0.01780778542160988, + -0.022669106721878052, + -0.004586272407323122, + -0.000823546142783016, + -0.008680016733705997, + -0.012326006777584553, + -0.02863062173128128, + 0.022259732708334923, + 0.017078587785363197, + -0.0019605194684118032, + -0.016835521906614304, + -0.006163003388792276, + 0.009965707547962666, + -0.00092588976258412, + 0.007323963567614555, + 0.0018661716021597385, + -0.028144489973783493, + 0.009984897449612617, + -0.016042359173297882, + -0.012377179227769375, + -0.05096711218357086, + -0.051350899040699005, + -0.0040105897933244705, + 0.01692507229745388, + 0.004506316501647234, + 0.007119276560842991, + 0.001389634213410318, + 0.01953483372926712, + 0.010432650335133076, + 0.011372932232916355, + -0.007490272168070078, + -0.015108473598957062, + 0.014443240128457546, + -0.012281231582164764, + -0.012626641429960728, + -0.005721646826714277, + 0.011123470030725002, + -0.01394431572407484, + -0.0055265543051064014, + 0.02495904453098774, + -0.002390682464465499, + -0.028860894963145256, + 0.024383362382650375, + 0.02421705424785614, + 0.004371990449726582, + 0.04909934103488922, + -0.0161958746612072, + -0.020762957632541656, + -0.009888949804008007, + -0.017411204054951668, + -0.021197916939854622, + 0.01760309934616089, + 0.008257849141955376, + 0.0024162684567272663, + 0.017846165224909782, + -0.018818428739905357, + 0.03794388845562935, + -0.0029407793190330267, + 0.002424264093860984, + -0.004218475427478552, + -0.009549937210977077, + -0.005113981664180756, + 0.0161958746612072, + 0.015006130561232567, + 0.026660507544875145, + -0.015261989086866379, + 0.05073683708906174, + 0.004941276740282774, + 0.002497823443263769, + -0.029730815440416336, + -0.012652227655053139, + -0.03141948580741882, + -0.01481423620134592, + 0.00024266626860480756, + 0.02086530067026615, + -0.012421954423189163, + 0.0056800697930157185, + 0.009780210442841053, + 0.018114816397428513, + 0.0009826584719121456, + 0.005964712705463171, + -0.0038186954334378242, + 0.021172331646084785, + -0.00712567288428545, + 0.006169400177896023, + 0.016848314553499222, + 0.007650183979421854, + 0.005993497092276812, + 0.004704607184976339, + 0.0005233116098679602, + 0.047333914786577225, + 0.02314244583249092, + -0.012127716094255447, + 0.0045830742456018925, + 0.006111831869930029, + 0.0005105186719447374, + -0.011993390507996082, + 0.023846058174967766, + -0.001081004273146391, + 0.015274781733751297, + 0.029193511232733727, + 0.011219416745007038, + -0.0009178941254504025, + -0.01468630600720644, + 0.03592260181903839, + 0.04411008954048157, + 0.002841633977368474, + 0.0011961407726630569, + -0.0099721048027277, + -0.01725768856704235, + 0.021901529282331467, + 0.009786606766283512, + -0.006709902081638575, + -0.014340897090733051, + 0.006652333773672581, + 0.012428350746631622, + -0.0005716849700547755, + 0.0046630301512777805, + -0.0008267443627119064, + 0.01084202527999878, + -0.020084930583834648, + 0.03129155561327934, + -0.031752102077007294, + -0.0011177839478477836, + -0.02735132724046707, + 0.01739841140806675, + 0.015236402861773968, + 0.01287610363215208, + 0.010547786951065063, + -0.015070094726979733, + 0.019752314314246178, + -0.009166148491203785, + 0.020993230864405632, + -0.0070745013654232025, + 0.006271743681281805, + -0.003825091989710927, + 0.00650521507486701, + -0.0014839821960777044, + -0.013125566765666008, + -0.003757928963750601, + -0.0179996807128191, + -0.010726888664066792, + 0.015824878588318825, + 0.011481672525405884, + 0.012377179227769375, + 0.12322169542312622, + 0.030344877392053604, + -0.00892947893589735, + 0.01933014765381813, + 0.017846165224909782, + 0.02127467468380928, + 0.02630230411887169, + -0.006741884630173445, + -0.011903840117156506, + -0.04943195730447769, + 0.028349176049232483, + -0.025841759517788887, + 0.010170395486056805, + -0.0323917493224144, + -0.00025885735522024333, + 0.01738561876118183, + -0.0067674703896045685, + 0.02435777708888054, + -0.03505268320441246, + -0.02208063192665577, + 0.032007958739995956, + -0.00019579210493247956, + 0.013624491170048714, + 0.015146852470934391, + -0.008296228013932705, + -0.028809722512960434, + 0.027018709108233452, + -0.0064220610074698925, + 0.003322968725115061, + -0.01585046388208866, + 0.0032446119002997875, + 0.008743980899453163, + -0.06345303356647491, + -0.03070307895541191, + 0.003623603144660592, + -0.03520619869232178, + -0.0003354151558596641, + -0.02260514162480831, + 0.00014282128540799022, + 0.006434853654354811, + -0.0016774755204096437, + 0.01939411275088787, + -0.015325954183936119, + -0.011737531051039696, + 0.00890389271080494, + 0.006054263561964035, + -0.007029725704342127, + -0.03083100914955139, + -0.0094603868201375 + ], + "metadata": { + "source": "Thesis_Verladegeraeusche_in_Speditionen.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 41, + "has_images": true, + "image_count": 51, + "coordinates": "CoordinatesMetadata(points=((204.16666666666666, 189.02777777777797), (204.16666666666666, 642.3611111111111), (936.1666666666666, 642.3611111111111), (936.1666666666666, 189.02777777777797)), system=)", + "links": [], + "last_modified": "2025-05-05T22:59:16", + "_known_field_names": "frozenset({'cc_recipient', 'link_texts', 'url', 'filetype', 'category_depth', 'page_number', 'filename', 'orig_elements', 'detection_origin', 'email_message_id', 'page_name', 'coordinates', 'table_as_cells', 'link_start_indexes', 'sent_to', 'bcc_recipient', 'languages', 'last_modified', 'link_urls', 'file_directory', 'subject', 'data_source', 'detection_class_prob', 'image_base64', 'text_as_html', 'attached_to_filename', 'key_value_pairs', 'signature', 'sent_from', 'header_footer_type', 'parent_id', 'links', 'emphasized_text_contents', 'emphasized_text_tags', 'image_mime_type', 'is_continuation', 'image_path'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "Thesis_Verladegeraeusche_in_Speditionen.pdf", + "detection_class_prob": 0.2568194270133972, + "parent_id": "d45475a34bc527cde6987546fa6dd2f5", + "text_as_html": "
Flurf\u00f6rderger\u00e4t |Anzahl Einzelereignisse ElMax-PegelSchallleistungspegel
LAFmaxLWA,5sLWAmaxLWA,1hKlLWAT,1h
[dB(A)][dB(A)][dB(A)][dB(A)][dB(A)][dB(A)]
Gabelstapler29769,3100,7108,872,15,777,8
STABW [dB]6,54,96,54,92,9-
Gabelhubwagen9968,6100,7108,172,16,279,5
STABW [dB]6,45,16,4512,7-
", + "id": "5ba44de7-0ff3-4c0c-b018-67e92171e1c2", + "processing_timestamp": "2025-05-06T14:18:19.298665", + "chunk_number": 12, + "total_chunks": 49, + "chunking_strategy": "hybrid", + "word_count": 518 + } +} \ No newline at end of file diff --git a/data/processed/85fd305f-83de-70b0-47e8-2dc000000013.json b/data/processed/85fd305f-83de-70b0-47e8-2dc000000013.json new file mode 100644 index 0000000000000000000000000000000000000000..74c6c2b3c4ac02964b9488e14b73e5b794418e2a --- /dev/null +++ b/data/processed/85fd305f-83de-70b0-47e8-2dc000000013.json @@ -0,0 +1,1570 @@ +{ + "id": "85fd305f-83de-70b0-47e8-2dc000000013", + "content": "Wenn eine bestimmte Re- gelm\u00e4\u00dfigkeit in der Verteilung der Daten vermutet wird, kann eine Funktion angepasst werden, wie zum Beispiel eine Gau\u00dfsche Glockenkurve oder auch Normalverteilung ge- nannt. Dabei werden die Daten analysiert und eine Funktion verwendet, die am besten zu der beobachteten Verteilung passt. [63] Mithilfe dieser Normalverteilung k\u00f6nnen Aussagen \u00fcber die Wahrscheinlichkeit von Ereignissen oder das Verhalten der Mess- werte getroffen werden (siehe Formel 27). Hierbei ben\u00f6tigt man den Mittelwert, den Erfahrungswert \u03bc und die Varianz \u03c3. Mithilfe einer normalverteilten Zufallsgr\u00f6\u00dfe x, kann eine glockenf\u00f6rmige H\u00e4ufigkeitsverteilung gebildet werden. [64] Innerhalb des Intervalls \u03bc \u00b1 \u03c3 der Funktion befinden sich 68,27 % der gemessenen Werte. [63]\n\ud835\udc53(\ud835\udc65) = 1 \ud835\udf0e\u221a2\ud835\udf0b \u2217 \ud835\udc52\u2212 1 2 ( \ud835\udc65\u2212\ud835\udf07 \ud835\udf0e ) 2\nFormel 27: Dichtefunktion der Normalverteilung\nMit: x: Zufallsgr\u00f6\u00dfe, \u03bc: Erfahrungswert, \u03c3: Varianz\n23\n3 Aktuelle Prognosegrundlage\n\n## 3 Aktuelle Prognosegrundlage\n\nDie Untersuchungen der Emissionen von Verladeger\u00e4usche sind Gegenstand einzelner Untersuchungen und Grundlage von zahlreichen Schallimmissionsprognosen f\u00fcr Gewer- bebetriebe. Im folgenden Kapitel ist der derzeitige Stand der aktuellen Prognosegrund- lage zur betrachteten Thematik aufgezeigt. Ziel dieses Abschnittes ist es einen konkreten \u00dcberblick \u00fcber die derzeitige Prognosegrundlage zu bekommen. ## 3.1 Schallimmissionsprognosen f\u00fcr Gewerbe \u2013 Technischer Bericht des\n\n\n## HLUG\n\nIm Rahmen von Schallimmissionsprognosen f\u00fcr Gewerbe Genehmigungsverfahren, wer- den bei der \u00dcberpr\u00fcfung der immissionsschutztechnischen Grenzwerte, vor allem die Lkw- und Verladeger\u00e4usche bei der Belieferung der G\u00fcter betrachtet. Hierbei werden in der Praxis erfahrungsgem\u00e4\u00df die Verladeger\u00e4usche des Technischen Berichts des Hessi- schen Landesamt f\u00fcr Umwelt und Geologie von 1995 [7] und 2005 [8] herangezogen. Im Jahr 1991 und 1995 f\u00fchrte Dipl.-Ing. Ekkehard Knothe von T\u00dcV NORD, damals RWT\u00dcV, im Auftrag des HLUG (Hessisches Landesamt f\u00fcr Umwelt und Geologie) eine schalltechnische Untersuchung durch, um Kennwerte und Emissionsdatenkataloge zur Prognose und Beurteilung von Lkw- und Verladeger\u00e4usche auf Betriebsgel\u00e4nden anzu- fertigen. Im Jahre 2005 wurde eine erneute Beauftragung der HLUG zur Aktualisierung und Erweiterung erteilt. Die erzielten Ergebnisse sind zu heutigem Stand Grundlage f\u00fcr zahlreiche Schallimmissionsprognosen bei Verladevorg\u00e4ngen. Im Jahr 1995 wurden Ger\u00e4uschemissionen bei \u00fcblichen Verladeger\u00e4usche genauer un- tersucht und Emissionsans\u00e4tze entwickelt. Hierbei wurden die Emissionen einzelner Be- und Entladevorg\u00e4nge eines Palettenhubwagens \u00fcber eine \u00dcberladebr\u00fccke, Hubstapler (Elektro- und Verbrennungsmotor), Autolader-Systeme und \u00dcberladesysteme mit und ohne Torrandabdichtungen ermittelt. Im Jahr 2005 wurden die Untersuchungen erwei- tert und es entstanden erneuerte Emissionsans\u00e4tze. Hierbei wurden beispielsweise die Emissionen von Handhubwagen bei Bewegungsvorg\u00e4ngen und unterschiedlichen Lade- einheiten (Leerfahrt, Glas- und PET-Flaschen) ermittelt. Die Untersuchung fand zudem\n24\n3 Aktuelle Prognosegrundlage\nauf unterschiedlichen Fahrbahnoberfl\u00e4chen (Asphalt eben, Asphalt uneben und Pflas- tersteinen) statt. Aus den erlangten Kenngr\u00f6\u00dfen, wurden Mittel- und Maximalwerte ge- bildet, um einen st\u00fcndlichen Schallleistungspegel zu berechnen. [8] Die der Erfassung der Verladeger\u00e4usche von Fahrzeugen fand bei der Untersuchung 1995 in Speditionen und Lebensmittelzentren ermittelt. Bei der Ermittlung der Emissionen wurde zwischen der Verladung an Innen- und Au\u00dfenrampen und verschiedenen Hilfsmitteln unterschie- den. Der Emissionsort wurde so gew\u00e4hlt, dass beispielsweise eine benachbarte Verlade- t\u00e4tigkeit die Messergebnisse nicht beeintr\u00e4chtigen. Die Messwerterfassung erfolgte mit einem Pegelschreiben \u201eRION LR 04\u201c oder einem Magnetbandger\u00e4t \u201eSony TCD-D 10\u201c. [7] Eine \u00dcbersicht zur Erhebung und Ergebnisse der Schallpegelmessungen sind folgend auf- gezeigt.", + "embedding": [ + 0.012341904453933239, + 0.016354672610759735, + -0.00055068323854357, + -0.015589078888297081, + -0.002001434564590454, + 0.004982961341738701, + -0.0096623245626688, + 0.003524372586980462, + -0.020750239491462708, + -0.035375725477933884, + 0.016697870567440987, + 0.018875854089856148, + -0.012275904417037964, + 0.004662863910198212, + -0.00214498327113688, + 0.013543094508349895, + 0.0384645015001297, + 0.004177767783403397, + 0.003537572454661131, + 0.005972953513264656, + -0.004025968722999096, + 0.014005091041326523, + 0.0037619706708937883, + -0.02148943394422531, + -0.011675309389829636, + 0.016420671716332436, + 0.04018048942089081, + -0.011048314161598682, + 0.00133566465228796, + 0.008315935730934143, + 0.015034683048725128, + -0.007365542929619551, + -0.02336381934583187, + 0.003775170771405101, + -0.003105275798588991, + -0.0095897251740098, + 0.014295488595962524, + -0.008711932227015495, + 0.027350187301635742, + -0.00529975863173604, + 0.013912691734731197, + -0.0042371670715510845, + 0.006916746497154236, + -0.029330171644687653, + 0.018400657922029495, + 0.007015745621174574, + 0.008447933942079544, + 0.007438142318278551, + -0.010064922273159027, + 0.009233328513801098, + 0.03046536259353161, + 0.011926107108592987, + -0.018493056297302246, + 0.0023462818935513496, + -0.0006991820991970599, + -0.008837331086397171, + -0.004699163604527712, + -0.007655940484255552, + -0.023495817556977272, + -0.024340610951185226, + -0.033923737704753876, + -0.007233543787151575, + -0.02097463794052601, + 0.006982745602726936, + -0.005870654247701168, + -0.020261842757463455, + -0.018255459144711494, + -0.0036134719848632812, + -0.01552307978272438, + 0.01916625164449215, + 0.01731826551258564, + 0.016684670001268387, + 0.002050934126600623, + 0.008005738258361816, + 0.01738426461815834, + -0.0029089273884892464, + 0.006995945703238249, + 0.0023248319048434496, + -0.00393686955794692, + 0.004788262769579887, + 0.03212855011224747, + -0.021925030276179314, + -0.018625054508447647, + 0.033976536244153976, + 0.008863731287419796, + -0.0013901141937822104, + -0.01754266396164894, + 0.024485809728503227, + -0.02090863697230816, + -0.011404711753129959, + 0.001235015457496047, + 0.00873833242803812, + 0.0009363677236251533, + 0.0032653247471898794, + -0.0020228843204677105, + -0.013925892300903797, + -0.007629540748894215, + 0.022809423506259918, + 0.0052964589558541775, + -0.037619706243276596, + -0.006015853490680456, + 0.010163920931518078, + 0.01071171648800373, + -0.0097415242344141, + -0.016526272520422935, + 0.005725455470383167, + 0.003425373462960124, + 0.0014924134593456984, + -0.004438465461134911, + -0.016354672610759735, + -0.0144274877384305, + 0.022373827174305916, + -0.008249935694038868, + -0.009682124480605125, + 0.028300579637289047, + -0.011912907473742962, + 0.04625244066119194, + -0.008111337199807167, + -0.007207144051790237, + -0.01708066649734974, + 0.02493460662662983, + -0.009081529453396797, + 0.02510620467364788, + 0.0014074391219764948, + 0.03585091978311539, + 0.014018290676176548, + 0.008045337162911892, + -0.004557264503091574, + -0.01726546511054039, + -0.012084506452083588, + -0.024578209966421127, + -0.006101652514189482, + 0.0011681909672915936, + 0.024208612740039825, + -0.019879044964909554, + 7.007289241300896e-05, + -0.011761108413338661, + 0.014995083212852478, + -0.02485540695488453, + -0.03484772890806198, + 0.010520318523049355, + 0.018743854016065598, + -0.03051816299557686, + -0.0286437775939703, + -0.021779831498861313, + 0.03508532792329788, + 0.014691486023366451, + -0.003207575064152479, + -0.00425366684794426, + -0.016249073669314384, + 0.0031976751051843166, + -0.020552240312099457, + 0.015589078888297081, + -0.008309335447847843, + -0.005105060525238514, + -0.011602710001170635, + 0.0026581294368952513, + 0.0380685031414032, + -0.007741739973425865, + -0.004613364115357399, + 0.005930054001510143, + 0.003001326695084572, + 0.011840308085083961, + 0.013859892264008522, + 0.005798054859042168, + 0.008269735611975193, + -0.006392050534486771, + -0.0057023558765649796, + 0.008210335858166218, + -0.014717885293066502, + -0.01544388011097908, + 0.032022953033447266, + -0.025396602228283882, + 0.0145066874101758, + -0.010434518568217754, + 0.00978112407028675, + 0.011424511671066284, + 0.006081852596253157, + -0.0382269024848938, + -0.014519887045025826, + -0.021529031917452812, + 0.015457079745829105, + 0.014150289818644524, + 0.01341769564896822, + -0.016658270731568336, + 0.016249073669314384, + 0.031706154346466064, + 0.008883531205356121, + -0.010672117583453655, + -0.03094056062400341, + -0.010414719581604004, + 0.004715663380920887, + -0.0007474442245438695, + -0.02088223770260811, + -0.6378190517425537, + 0.0027125789783895016, + -0.003422073321416974, + 0.002870977623388171, + 0.006131352391093969, + 0.022189028561115265, + 0.0048014628700912, + -0.018691055476665497, + -0.020499439910054207, + 0.049050819128751755, + -0.01144431158900261, + 0.004933461546897888, + 0.0010254670633003116, + -0.01359589397907257, + -0.009002329781651497, + -0.026505393907427788, + -0.03334294259548187, + 0.00026874165632762015, + 0.03241894766688347, + 0.007979338057339191, + -0.03284134343266487, + 0.01953584887087345, + -0.0006855696556158364, + 0.003758670762181282, + 0.006524049211293459, + 0.03651091828942299, + 0.012058106251060963, + -0.016605470329523087, + 0.022096628323197365, + -0.003639871720224619, + -0.01743706502020359, + 0.011820508167147636, + -0.0385701023042202, + 0.006976145785301924, + 0.04245087131857872, + -0.00337422383017838, + 0.006081852596253157, + 0.026346994563937187, + 0.018123459070920944, + 0.020275043323636055, + -0.008375334553420544, + -0.005870654247701168, + 0.016381071880459785, + 0.002214282751083374, + -0.00533935846760869, + -0.004181067459285259, + 0.029884567484259605, + -0.007504141889512539, + 0.009173928759992123, + -0.0381741039454937, + 0.0023215319961309433, + 0.004633164033293724, + 0.015602278523147106, + 0.011318911798298359, + 0.03302614390850067, + -0.002818178152665496, + 0.03247174620628357, + -0.015179881826043129, + -0.006778147537261248, + 0.005590156652033329, + -0.010375119745731354, + -0.0017555863596498966, + -0.0019832844845950603, + -0.011860108003020287, + -0.014704685658216476, + 0.017978260293602943, + 0.0018677854677662253, + -0.05013320967555046, + 0.0287229772657156, + -0.004735463298857212, + -0.0074315425008535385, + 0.017780261114239693, + -0.007959538139402866, + -0.020644640550017357, + 0.022505825385451317, + 0.014876284636557102, + 0.011813907884061337, + -0.015945475548505783, + 0.010064922273159027, + 0.027429386973381042, + -0.00476186303421855, + -0.0015575878787785769, + -0.026043398305773735, + 0.004062268417328596, + 0.01719946600496769, + -0.017938660457730293, + -0.020050644874572754, + 0.017740663141012192, + 0.008428134955465794, + 0.014176690019667149, + 0.01169510930776596, + 0.033844538033008575, + 0.008857131004333496, + -0.026597794145345688, + -0.008263136260211468, + 0.04181727394461632, + -0.023918215185403824, + 0.024274611845612526, + 0.0013381396420300007, + -0.024604609236121178, + -0.026162195950746536, + -0.019733846187591553, + 0.014084290713071823, + -0.015958676114678383, + 0.02283582277595997, + 0.0006851571961306036, + -0.006982745602726936, + -0.001861185533925891, + 0.02729738876223564, + -0.033501338213682175, + -0.01453308667987585, + -0.0034451731480658054, + 0.009272928349673748, + -0.012962299399077892, + -0.011602710001170635, + -0.029567770659923553, + 0.022030629217624664, + -0.005765055306255817, + -0.010401519015431404, + -0.009035330265760422, + 0.007068545091897249, + -0.008606333285570145, + 0.039573293179273605, + -0.005101760383695364, + -0.01342429593205452, + 0.019786646589636803, + 0.02096143737435341, + -0.004593564197421074, + -0.024248212575912476, + -0.028458978980779648, + 0.026544993743300438, + -0.010342119261622429, + 0.024023814126849174, + -0.0190342515707016, + 0.025871798396110535, + -0.004897161852568388, + 0.03305254504084587, + -0.013675093650817871, + 0.0003551597474142909, + -0.02670339308679104, + -0.04287326708436012, + -0.003943469375371933, + 0.035692524164915085, + -0.041394878178834915, + -0.014189889654517174, + -0.03500612825155258, + -0.020037444308400154, + 0.011893107555806637, + 0.01702786795794964, + 0.0043988656252622604, + -0.004547364544123411, + -0.02510620467364788, + -0.004322966560721397, + 0.020420242100954056, + 0.005596756469458342, + 0.00850733369588852, + -0.003455073107033968, + -0.0145726865157485, + -0.00616435194388032, + -0.02346941828727722, + 0.005121560301631689, + 0.010355319827795029, + -0.031653355807065964, + -0.007339143194258213, + -0.012566301971673965, + -0.01267190184444189, + 0.003946769516915083, + 0.0012737901415675879, + -0.027376586571335793, + -0.0290133748203516, + -0.005956453736871481, + -0.005646256264299154, + -0.001165715977549553, + 0.016763869673013687, + 0.004732163157314062, + 0.00783413928002119, + -0.022703824564814568, + -0.0025063306093215942, + -0.02100103721022606, + -0.030438963323831558, + 0.023944614455103874, + -0.010355319827795029, + -0.02724458836019039, + 0.0005011836183257401, + 0.016407473012804985, + 0.006929946132004261, + 0.01057971827685833, + 0.008989130146801472, + -0.013147098012268543, + 0.007933137938380241, + -0.012051505967974663, + 0.02327141910791397, + -0.014625485986471176, + 0.01544388011097908, + -0.022690623998641968, + -0.011774308979511261, + 0.013754293322563171, + 0.006649448536336422, + -0.009411526843905449, + 0.019681047648191452, + 0.02703339047729969, + -0.006197351962327957, + 0.005662756040692329, + -0.01900785230100155, + 0.02119903452694416, + -0.02139703370630741, + 0.020380642265081406, + -0.009154128842055798, + 0.015800276771187782, + 0.008329135365784168, + 0.009959322400391102, + -0.0016846369253471494, + -0.039573293179273605, + -0.010586317628622055, + 0.010837116278707981, + 0.06420429795980453, + -0.014876284636557102, + 0.008711932227015495, + 0.04654283821582794, + -0.0096755251288414, + -0.0030145265627652407, + 0.0039533693343400955, + 0.03447813168168068, + 0.017041068524122238, + -0.0016664870781823993, + -0.012104306370019913, + 0.0035309726372361183, + 0.01330549642443657, + 0.007576741278171539, + -0.01057971827685833, + -0.013952291570603848, + 0.0143614886328578, + -0.0023908314760774374, + 0.015153482556343079, + 0.01525908149778843, + 0.014770685695111752, + -0.0033643238712102175, + -0.0005548081826418638, + 0.037962906062603, + 0.015536279417574406, + -0.002783528296276927, + 0.012830300256609917, + 0.0016978367930278182, + -0.013127298094332218, + 0.017833061516284943, + -0.026373395696282387, + 0.008381934836506844, + 0.02867017686367035, + -0.006804547272622585, + -0.0056792558170855045, + -0.024327410385012627, + 0.013622294180095196, + -0.008223536424338818, + 0.0029072773177176714, + 0.014480287209153175, + -0.026597794145345688, + 0.023865414783358574, + -0.013714693486690521, + 0.008111337199807167, + 0.022294627502560616, + 0.0050885602831840515, + -0.005256859119981527, + -0.0004739588184747845, + -0.026122597977519035, + 0.003461673157289624, + 0.0016004876233637333, + -0.011899707838892937, + -0.025475801900029182, + -0.02315261960029602, + -0.008962729945778847, + 0.0066362484358251095, + -0.011101113632321358, + -0.00620725192129612, + -0.0020162842702120543, + 0.029488570988178253, + -0.0142822889611125, + 0.003252124646678567, + 0.009543525986373425, + 0.0014445637352764606, + 0.009154128842055798, + -0.012190105393528938, + -0.014599086716771126, + 0.004629863891750574, + 0.026294196024537086, + -0.015958676114678383, + -0.022294627502560616, + -0.007147744297981262, + -0.01064571738243103, + -0.015536279417574406, + -0.0033709239214658737, + -0.02125183492898941, + -0.0024155811406672, + 0.006415150128304958, + -0.02114623598754406, + 0.011074714362621307, + 0.009127729572355747, + 0.02696739137172699, + 0.017965059727430344, + -0.012988699600100517, + 0.026439394801855087, + 0.011959107592701912, + -0.011312312446534634, + -0.029356572777032852, + -0.024023814126849174, + 0.006510849576443434, + 0.011186913587152958, + -0.01916625164449215, + -0.008210335858166218, + -0.00038424076046794653, + -0.01446708757430315, + -0.009378527291119099, + 0.0015592379495501518, + -0.002153233392164111, + -0.006560348905622959, + -0.01908705197274685, + 0.0014957133680582047, + 0.005151260178536177, + 0.0042371670715510845, + 0.029382972046732903, + 0.006134652532637119, + -0.014203089289367199, + -0.008474334143102169, + -0.010817316360771656, + 0.007853939197957516, + 0.015575879253447056, + 0.014110689982771873, + 0.0021218834444880486, + 0.01900785230100155, + -0.025502201169729233, + -0.007167544215917587, + 0.004085368476808071, + -0.03680131584405899, + 0.01693546772003174, + 0.024287810549139977, + 0.007603141013532877, + 0.010870115831494331, + 0.02484220638871193, + -0.005656156223267317, + 0.013153698295354843, + -0.020275043323636055, + -0.0047585628926754, + -0.01330549642443657, + 0.02090863697230816, + 0.014229489490389824, + -0.007537141442298889, + 0.0022060328628867865, + 0.0059432536363601685, + 0.02147623337805271, + 0.0013859892496839166, + -0.025528602302074432, + 0.02890777587890625, + 0.024499010294675827, + 0.007860538549721241, + -0.031125357374548912, + -0.02320542000234127, + 0.039467692375183105, + 0.0073061431758105755, + 0.020776638761162758, + -0.01915305107831955, + 0.0019073851872235537, + -0.00526675907894969, + 0.0036497716791927814, + 0.027693385258316994, + -0.009253128431737423, + 0.0023578316904604435, + 0.016341473907232285, + 0.011609310284256935, + -0.007108144927769899, + 0.0029303771443665028, + -0.001022992073558271, + 0.01902105286717415, + -0.003019476542249322, + 0.0010807416401803493, + -0.005131460260599852, + 0.0008579933200962842, + -0.030412564054131508, + -0.009919722564518452, + -0.016565870493650436, + 0.006448150146752596, + -0.030386164784431458, + 0.018229058012366295, + -0.011074714362621307, + -0.020407041534781456, + -0.018017860129475594, + -0.027534985914826393, + -0.024631008505821228, + 0.009616125375032425, + -0.004052368458360434, + -0.007451341953128576, + -0.024010613560676575, + -0.0007585816201753914, + -0.011912907473742962, + -0.016064275056123734, + 0.0037487708032131195, + 0.010691916570067406, + -0.03701251372694969, + -0.01894185319542885, + 0.0018941853195428848, + 0.022175827994942665, + -0.000724756857380271, + 0.035375725477933884, + -0.0145066874101758, + -0.024485809728503227, + 0.0075899409130215645, + -0.024512208998203278, + -0.0006414325325749815, + -0.01548347994685173, + -0.013516695238649845, + -0.016433872282505035, + 0.0058607542887330055, + -0.011041713878512383, + 0.002666379325091839, + 0.004540764726698399, + 0.009068329818546772, + -0.012269305065274239, + 0.007576741278171539, + -0.008870331570506096, + -0.00865253247320652, + 0.0032438747584819794, + -0.004629863891750574, + 0.018466657027602196, + 0.01360909454524517, + 0.019773446023464203, + -0.017833061516284943, + 0.029990166425704956, + -0.020763438194990158, + -0.015034683048725128, + -0.013298897072672844, + 0.012751100584864616, + 0.00436916621401906, + 0.003108575940132141, + -0.011813907884061337, + 0.025911398231983185, + 0.004969761241227388, + -0.0028099282644689083, + -0.025634201243519783, + 0.021621432155370712, + 0.020697439089417458, + 0.006896946579217911, + -0.003745470894500613, + 0.018796654418110847, + 0.019958244636654854, + 0.02327141910791397, + -0.0017555863596498966, + 0.006830947007983923, + -0.02890777587890625, + 0.04548684507608414, + -0.002309981966391206, + 0.011926107108592987, + 0.027376586571335793, + -0.033659737557172775, + -0.0044186655431985855, + -0.03606212139129639, + 0.007972737774252892, + 0.0387284979224205, + 0.027270987629890442, + -0.006161052267998457, + -0.014044690877199173, + -0.016090674325823784, + -0.0193378496915102, + 0.013622294180095196, + 0.008012337610125542, + -0.016169873997569084, + -0.014519887045025826, + -0.005448257550597191, + -0.006566949188709259, + -5.450113894767128e-05, + -0.0024452810175716877, + 0.015853077173233032, + -0.02321862056851387, + -0.022123027592897415, + 0.011596109718084335, + -0.0005036586080677807, + 0.016763869673013687, + -0.013556295074522495, + -0.022136228159070015, + -0.024485809728503227, + -0.0040556685999035835, + -0.013470495119690895, + -0.03439893200993538, + 0.008025537244975567, + -0.005441657733172178, + 0.009688724763691425, + 0.008949530310928822, + 0.03231335058808327, + -0.0025904797948896885, + -0.008355535566806793, + -0.013807092793285847, + -0.006590048782527447, + -0.004567164462059736, + -0.02323181927204132, + -0.000914917909540236, + -0.030491763725876808, + 0.01548347994685173, + 0.019799847155809402, + 0.013470495119690895, + 0.007913338951766491, + -0.0007750814547762275, + 0.015008283779025078, + 0.03294694423675537, + -0.010559918358922005, + -0.013081097975373268, + -0.0043988656252622604, + -0.03637891635298729, + -0.009239927865564823, + 0.016103874891996384, + 0.008903331123292446, + 0.014599086716771126, + -0.0195754487067461, + -0.009853723458945751, + 0.020063843578100204, + -0.02672979235649109, + -0.0007074319873936474, + -0.0019337850390002131, + 0.016103874891996384, + -0.02729738876223564, + 0.03600931912660599, + 0.011714909225702286, + 0.0003306161961518228, + -0.009952723048627377, + -0.00728634325787425, + -0.014942283742129803, + -0.020288242027163506, + 0.023852214217185974, + 0.002064133994281292, + 0.03307894244790077, + -0.0036860713735222816, + 0.0014800385106354952, + -0.0007292943191714585, + -0.016367873176932335, + -0.004190967418253422, + 0.000609257782343775, + 0.0068375468254089355, + -0.005840954836457968, + -0.03215495124459267, + -0.003156425431370735, + 0.0026977290399372578, + -0.018070660531520844, + 0.025568202137947083, + -0.0011665408965200186, + 0.01729186624288559, + 0.025515401735901833, + -0.021859031170606613, + 0.006857346743345261, + 0.0016994867473840714, + 0.002499730559065938, + 0.041078079491853714, + 0.006487749516963959, + 0.0380949042737484, + 0.02317902073264122, + -0.02138383314013481, + -0.003342874115332961, + -0.05266759172081947, + 0.012005306780338287, + 0.015813477337360382, + 0.007642740849405527, + -0.013925892300903797, + -0.011160513386130333, + -0.012289104983210564, + 0.018902253359556198, + 0.00667584827169776, + -0.0192058514803648, + -0.016249073669314384, + 0.03054456226527691, + 0.021832630038261414, + -0.012256104499101639, + -0.014731085859239101, + -0.0034847729839384556, + -0.02477620728313923, + -0.008395134471356869, + 0.015061083249747753, + -0.005260159261524677, + -0.016341473907232285, + -0.0029584269504994154, + -0.0003553659771569073, + 0.04820602387189865, + 0.01712026633322239, + 0.02336381934583187, + 0.018849452957510948, + -0.005748555529862642, + 0.012005306780338287, + -0.021832630038261414, + -0.02346941828727722, + 0.018268657848238945, + -0.016697870567440987, + 0.048813220113515854, + 0.002031134208664298, + -0.014071091078221798, + 0.011860108003020287, + -0.0008579933200962842, + -0.010830515995621681, + -0.002973276888951659, + -0.018559055402874947, + 0.01446708757430315, + -0.01766146346926689, + 0.012883099727332592, + 0.015179881826043129, + -0.018783453851938248, + 0.007702140137553215, + 0.00537895830348134, + -0.0032785246148705482, + -0.011173713020980358, + 0.005237059202045202, + -0.0145726865157485, + 0.005916853900998831, + 0.025581400841474533, + -0.01960184797644615, + -0.005161160137504339, + -0.008599733002483845, + -0.0195622481405735, + -0.020671039819717407, + -0.017912261188030243, + 0.009721724316477776, + -0.03616771847009659, + -0.0012787401210516691, + -0.014863085001707077, + 0.0046463641338050365, + 0.029462171718478203, + -0.0037520709447562695, + -0.01153670996427536, + -0.004445065278559923, + 0.02713898941874504, + -0.048734020441770554, + 0.010592917911708355, + 0.039731692522764206, + -0.016552671790122986, + -0.009147528558969498, + 0.013873091898858547, + 0.0011030164314433932, + 0.0013381396420300007, + 0.02319221943616867, + -0.02142343297600746, + -0.02106703631579876, + -0.00865253247320652, + -0.015800276771187782, + 0.01923225075006485, + -0.02296782098710537, + -0.003540872596204281, + -0.010368519462645054, + 0.029488570988178253, + 0.010632517747581005, + -0.023839015513658524, + -0.0037883706390857697, + -0.0024749808944761753, + 0.013061298988759518, + 0.006537249311804771, + 0.018189458176493645, + -0.018519455567002296, + 0.017714262008666992, + 0.006491049658507109, + -0.011206712573766708, + 0.0143614886328578, + -0.03437253460288048, + -0.012163705192506313, + 0.001645037205889821, + 0.02282262220978737, + -0.04044448584318161, + 0.013186697848141193, + -0.011833707801997662, + -0.011127513833343983, + -0.007820939645171165, + 0.02896057441830635, + 0.014242689125239849, + 0.0015122132608667016, + 0.022241827100515366, + 0.008428134955465794, + -0.026030197739601135, + 0.03648451715707779, + -0.014995083212852478, + -0.008975930511951447, + 0.026175396516919136, + 0.01540428027510643, + -0.028379779309034348, + 0.012784101068973541, + -0.012619102373719215, + 0.024499010294675827, + 0.020684238523244858, + -0.03978449106216431, + -0.0032455248292535543, + 0.0011690158862620592, + -0.027957383543252945, + -0.01533828116953373, + -0.03212855011224747, + 0.008830731734633446, + 0.002885827561840415, + 0.009794323705136776, + -0.010883315466344357, + 0.02125183492898941, + 0.004478065297007561, + 0.02148943394422531, + -0.01936424896121025, + 0.0029815267771482468, + -0.008177336305379868, + -0.012110905721783638, + 0.014876284636557102, + -0.0038345702923834324, + -0.026109397411346436, + -0.0013859892496839166, + 0.015034683048725128, + -0.0030805261339992285, + 0.027983782812952995, + 0.031811751425266266, + -0.01766146346926689, + -0.009246528148651123, + -0.00783413928002119, + 0.002095483709126711, + 0.007193943951278925, + -0.008065137080848217, + 0.011285912245512009, + -0.020618239417672157, + -0.021713830530643463, + -0.0005894579226151109, + -0.0038345702923834324, + -0.047255631536245346, + -0.010045122355222702, + 0.022162627428770065, + -0.013939091935753822, + -0.0019502848153933883, + 0.022189028561115265, + -0.015575879253447056, + 0.002786828437820077, + -0.002600379753857851, + 0.027561385184526443, + 0.02489500679075718, + -0.007048745173960924, + 0.01730506494641304, + 0.001215215539559722, + -0.00846773386001587, + -0.021779831498861313, + -0.006764947436749935, + -0.03503252938389778, + -0.0003728971059899777, + 0.010427919216454029, + -0.013087698258459568, + 0.02481580711901188, + -0.01166210975497961, + 0.027746183797717094, + 0.004537464585155249, + 0.0006529824458993971, + -0.03656371682882309, + -0.03218134865164757, + -0.04226607084274292, + 0.025634201243519783, + 0.029462171718478203, + -0.024327410385012627, + 0.01723906584084034, + -0.007319343276321888, + -0.011741308495402336, + -0.002164783189073205, + -0.01271150168031454, + 0.000594820361584425, + -0.012460703030228615, + -0.013153698295354843, + 0.013166897930204868, + 0.0018842853605747223, + -0.01245410367846489, + -0.00949072651565075, + -0.020578639581799507, + -0.027270987629890442, + -0.0011690158862620592, + 0.189972922205925, + -0.026122597977519035, + -0.012216505594551563, + -0.00016644246352370828, + -0.02494780719280243, + -0.020380642265081406, + 0.028142182156443596, + -0.008012337610125542, + 0.01554947905242443, + 0.019905446097254753, + 0.007530541624873877, + -0.008124536834657192, + 0.007583341095596552, + 0.013741093687713146, + 0.004045768640935421, + -0.022083427757024765, + -0.02919817343354225, + -0.026214996352791786, + -0.002229132689535618, + 0.013741093687713146, + 0.0380157046020031, + -0.014308689162135124, + -0.01335169654339552, + -0.0290925744920969, + 0.03299974277615547, + 0.0024221811909228563, + 0.01166210975497961, + 0.006764947436749935, + 0.028538178652524948, + 0.006956345867365599, + -0.018836254253983498, + -0.0012234655441716313, + 0.012104306370019913, + -0.009378527291119099, + -0.016249073669314384, + 0.012256104499101639, + 0.0142822889611125, + -0.010111121460795403, + 0.021753430366516113, + 0.0191134512424469, + 0.023799415677785873, + -0.04268847033381462, + 0.002684529172256589, + -0.018031060695648193, + 0.0027769284788519144, + 0.023746615275740623, + 0.0023693814873695374, + 0.01154991053044796, + -0.001961834728717804, + -0.008480934426188469, + -0.020354241132736206, + 0.015945475548505783, + -0.005930054001510143, + 0.041183680295944214, + -0.012308903969824314, + -0.016711071133613586, + 0.0022736822720617056, + -0.005441657733172178, + 0.006883746478706598, + 0.007048745173960924, + -0.03503252938389778, + -0.001601312542334199, + -0.001141791115514934, + 0.02465740777552128, + -0.03128375858068466, + 0.015734277665615082, + -0.01356949470937252, + -0.014453887939453125, + -0.002146633341908455, + -0.031943753361701965, + -0.004606764297932386, + -0.002316582016646862, + -0.006718747783452272, + 0.0074315425008535385, + -0.029646970331668854, + -0.028247781097888947, + 0.01139151118695736, + 0.013411096297204494, + 0.018004659563302994, + 0.013701493851840496, + -0.011827108450233936, + 0.008388535119593143, + -0.0031184758991003036, + -0.03637891635298729, + -0.018572255969047546, + -0.0191134512424469, + -0.004445065278559923, + 0.022017428651452065, + -0.007438142318278551, + -0.02890777587890625, + -0.02283582277595997, + 0.01144431158900261, + -0.006629648618400097, + 0.0017753861611708999, + 0.0015724378172308207, + -0.002562429988756776, + 0.010322320275008678, + 0.010586317628622055, + -0.029646970331668854, + 0.004992861300706863, + -0.027930982410907745, + 0.06610509008169174, + 0.04817962646484375, + -0.018361058086156845, + -0.0007672440260648727, + 0.011747908778488636, + -0.0075107417069375515, + 0.021634632721543312, + 0.009022129699587822, + -0.015166682191193104, + -0.010051721706986427, + -0.03508532792329788, + 0.02674299292266369, + -0.010005522519350052, + 0.0073259430937469006, + 0.00728634325787425, + 0.014229489490389824, + 0.007787939626723528, + -0.0190342515707016, + 0.005504357162863016, + -0.015760676935315132, + -0.006764947436749935, + 0.004616664256900549, + 0.016183074563741684, + 0.006392050534486771, + -0.01139151118695736, + -0.031468555331230164, + 0.019879044964909554, + -0.002534380415454507, + 0.019654646515846252, + 0.03239255025982857, + -0.024314211681485176, + 0.023878615349531174, + 0.008969330228865147, + 0.01719946600496769, + 0.0014726135414093733, + -0.02141023427248001, + -0.024182211607694626, + -0.010790916159749031, + 0.009655725210905075, + 0.00722034415230155, + -0.0007862189086154103, + 0.009503926150500774, + 0.011021913960576057, + 0.008131137117743492, + 0.004920261912047863, + 0.008500734344124794, + 0.00873173214495182, + -0.02719178795814514, + -0.016024675220251083, + -0.015061083249747753, + -0.016539471223950386, + -0.007055344991385937, + -0.018466657027602196, + 0.01147731114178896, + -0.004923561587929726, + -0.03215495124459267, + -0.04432525485754013, + 0.033791735768318176, + 0.015100683085620403, + -0.018809853121638298, + -0.02497420646250248, + 0.009002329781651497, + -0.02504020556807518, + -0.0003780533152166754, + 0.0021944830659776926, + -0.16716350615024567, + 0.0028330280911177397, + 0.0094445263966918, + -0.029541371390223503, + 0.005035760812461376, + -0.00241888128221035, + 0.007233543787151575, + 0.02287542261183262, + -0.026637393981218338, + -0.008494134061038494, + 0.03273574635386467, + -0.0042371670715510845, + -0.020671039819717407, + -0.009820723906159401, + -0.016605470329523087, + -0.01060611754655838, + -0.017912261188030243, + 0.04630523920059204, + 0.028326980769634247, + 0.021687431260943413, + 0.021938228979706764, + -0.027666985988616943, + 0.02312622033059597, + -0.003090426092967391, + -0.0022918321192264557, + 0.014757485128939152, + -0.023957813158631325, + 0.011959107592701912, + -0.013470495119690895, + -0.014123890548944473, + -0.021647831425070763, + 0.0004916961770504713, + 0.01252010278403759, + -0.01923225075006485, + -0.026320595294237137, + -0.010434518568217754, + 0.009992321953177452, + 0.01147071085870266, + 0.00530635891482234, + 0.016341473907232285, + 0.020116643980145454, + 0.022149428725242615, + -0.016249073669314384, + 0.02694099023938179, + -0.01725226640701294, + 0.020789839327335358, + 0.009437927044928074, + -0.011629109270870686, + -0.01240790355950594, + -0.0037883706390857697, + 0.016011476516723633, + -0.01071831677109003, + 0.0144274877384305, + 0.02882857620716095, + -0.003412173595279455, + 0.02498740516602993, + -0.012724701315164566, + 0.025449402630329132, + -0.0015419130213558674, + -0.01333849597722292, + 0.0017555863596498966, + -0.03632611781358719, + 0.01960184797644615, + 0.01139151118695736, + 0.0008753181900829077, + -0.021568631753325462, + -0.005408658180385828, + 0.0095897251740098, + -0.017965059727430344, + -0.0014742634957656264, + -0.005560456775128841, + -0.018229058012366295, + -0.0026977290399372578, + -0.01345729548484087, + 0.0016334872925654054, + 0.027693385258316994, + -0.008183936588466167, + -0.000333091156790033, + 0.004088668152689934, + -0.018770255148410797, + -0.014031491242349148, + 0.04258286952972412, + 0.016117075458168983, + -0.021700631827116013, + -0.02337701804935932, + -0.02148943394422531, + 0.0019832844845950603, + 0.020354241132736206, + -0.02480260655283928, + 0.008672332391142845, + 0.01248050294816494, + -0.011985506862401962, + -0.015047882683575153, + -0.020314643159508705, + 0.016156675294041634, + -0.002083933912217617, + -0.005438357591629028, + -0.0018067359924316406, + 0.010091321542859077, + -0.013833492994308472, + 0.006378850433975458, + -0.010216720402240753, + -0.03490052744746208, + 0.016605470329523087, + 0.010190321132540703, + 0.009213528595864773, + -0.01725226640701294, + 0.014453887939453125, + 0.037593308836221695, + -0.020327841863036156, + -0.01702786795794964, + -0.010988914407789707, + 0.03070296160876751, + -0.0004789087688550353, + -0.013246096670627594, + 0.0145066874101758, + -0.0070223454385995865, + -0.014942283742129803, + 0.029145373031497, + 0.011714909225702286, + 0.04741403087973595, + -0.010342119261622429, + 0.00670884782448411, + 0.015589078888297081, + -0.010513718239963055, + -0.023654216900467873, + -0.08849211037158966, + 0.01240130327641964, + 0.0192586500197649, + 0.007596541196107864, + 0.016711071133613586, + 0.039414893835783005, + -0.013087698258459568, + 0.0037883706390857697, + -0.007530541624873877, + 0.060561127960681915, + -0.0391508974134922, + -0.030042966827750206, + -0.03244534879922867, + 0.00764934066683054, + 0.015285481698811054, + -0.007926538586616516, + 0.003722371067851782, + -0.020063843578100204, + -0.020671039819717407, + 0.03978449106216431, + 0.004491264931857586, + -0.016394272446632385, + -0.006573549006134272, + -0.0190474521368742, + -0.020631439983844757, + 0.0075899409130215645, + -0.033527739346027374, + 0.01346389576792717, + 0.01346389576792717, + -0.014176690019667149, + 0.02119903452694416, + -0.02702018991112709, + 0.005411957856267691, + -0.02306022122502327, + -0.013041499070823193, + -0.02121223509311676, + -0.014929084107279778, + -0.010289319790899754, + 0.02141023427248001, + -0.012157105840742588, + 0.0022588325664401054, + 0.013292296789586544, + 0.013411096297204494, + -0.010005522519350052, + -0.0007792064570821822, + -0.02123863436281681, + -0.028247781097888947, + 0.02713898941874504, + 0.013430895283818245, + 0.0009718424407765269, + -0.016711071133613586, + -0.028115781024098396, + -0.011213312856853008, + 0.006286451127380133, + 0.017740663141012192, + 0.00776153989136219, + -0.014137090183794498, + 0.003992969170212746, + -0.014783885329961777, + -6.450418732129037e-05, + -0.024723408743739128, + 0.018440255895256996, + -0.04487965255975723, + 0.03413493558764458, + -0.0012729651061818004, + 0.02295462228357792, + -0.014599086716771126, + -0.02683539129793644, + 0.0287229772657156, + -0.013556295074522495, + -0.014599086716771126, + 0.013556295074522495, + -0.0023264819756150246, + -0.001500663347542286, + -0.013094298541545868, + 0.014783885329961777, + -0.026452595368027687, + 0.0022423325572162867, + 0.012473903596401215, + -0.0145066874101758, + 0.00877793226391077, + -0.026254596188664436, + 0.01566827856004238, + -0.013965491205453873, + 0.0388604998588562, + 0.02144983410835266, + 0.0015806877054274082, + -0.0008942930726334453, + 0.01939065009355545, + -0.013582694344222546, + -0.005435057915747166, + 0.0038708699867129326, + 0.02719178795814514, + 0.0007470317068509758, + -0.021832630038261414, + -0.004751963075250387, + 0.012605901807546616, + -0.004949961788952351, + 0.013635493814945221, + 0.01693546772003174, + -0.003656371496617794, + -0.012421103194355965, + -0.04105168208479881, + 0.020789839327335358, + 0.024274611845612526, + 0.004920261912047863, + -0.019720647484064102, + -0.010804115794599056, + 0.0013472145656123757, + 0.00858653336763382, + 0.020737038925290108, + 0.008375334553420544, + -0.014044690877199173, + 0.009286127984523773, + -0.012539902701973915, + -0.013859892264008522, + -0.04231887310743332, + -0.043084464967250824, + -0.012777500785887241, + 0.014123890548944473, + 0.020261842757463455, + 0.012797300703823566, + -0.005491157528012991, + 0.0064514498226344585, + -0.008230135776102543, + 0.010249719955027103, + -0.018083859235048294, + -0.006797946989536285, + 0.005121560301631689, + 0.014559486880898476, + -0.00872513186186552, + 0.0012284154072403908, + -0.012916099280118942, + -0.010078121908009052, + 0.00627985130995512, + 0.020420242100954056, + 0.0009264678228646517, + -0.026624193415045738, + 0.020710639655590057, + 0.022030629217624664, + 0.02711259014904499, + 0.05623156204819679, + -0.02477620728313923, + -0.015166682191193104, + 0.0035540724638849497, + -0.010731516405940056, + -0.0075107417069375515, + -0.0028132281731814146, + 0.005550556816160679, + -0.007906738668680191, + 0.019839445129036903, + -9.343052806798369e-05, + 0.024221811443567276, + 0.008157536387443542, + 0.007160944398492575, + -0.007160944398492575, + -0.005068760830909014, + 0.009246528148651123, + 0.010520318523049355, + -0.0035342725459486246, + 0.01739746518433094, + -0.02501380629837513, + 0.04039168730378151, + 0.02290182188153267, + 0.010856915265321732, + 0.003425373462960124, + -0.005042360629886389, + -0.0190474521368742, + -0.0189682524651289, + -0.0071279448457062244, + -0.0044219656847417355, + -0.003304924350231886, + -0.01342429593205452, + -0.003986368887126446, + 0.02114623598754406, + 0.022545425221323967, + -0.013312096707522869, + -0.007972737774252892, + 0.012236304581165314, + -0.005481257569044828, + -0.002417231211438775, + 0.014480287209153175, + 0.01945664919912815, + 0.009266328066587448, + 0.018704254180192947, + -0.0047585628926754, + 0.03318454325199127, + 0.027376586571335793, + -0.004019368905574083, + -0.017687862738966942, + 0.002333081793040037, + 0.004732163157314062, + -0.0018908852944150567, + 0.0383853018283844, + -0.006685748230665922, + 0.0094445263966918, + 0.0193510502576828, + 0.024235012009739876, + 0.010302520357072353, + -0.011087913997471333, + 0.035745322704315186, + 0.04619964212179184, + 0.0013480394845828414, + 0.002565730130299926, + -0.0025541801005601883, + -0.03529652580618858, + 0.013206497766077518, + 0.015971876680850983, + -0.0063524506986141205, + -0.038834098726511, + 0.016249073669314384, + 0.02506660483777523, + -0.005078660789877176, + 0.003458373248577118, + -0.00108321662992239, + 0.0023627816699445248, + -0.013127298094332218, + 0.022400226444005966, + -0.02143663354218006, + -0.016697870567440987, + -0.02092183753848076, + 0.027719784528017044, + 0.03313174098730087, + 0.018136659637093544, + 0.0033148243092000484, + -0.0028792277444154024, + 0.0036299717612564564, + -0.01050051860511303, + 0.015866275876760483, + -0.02500060573220253, + 0.020657839253544807, + -0.020737038925290108, + -0.0012490402441471815, + 4.851993435295299e-05, + -0.009583125822246075, + -0.006530649494379759, + -0.005184259731322527, + -0.0020591840147972107, + 0.016803469508886337, + 0.013701493851840496, + 0.01169510930776596, + 0.12619102001190186, + 0.02303382195532322, + -0.01345069520175457, + 0.019707446917891502, + 0.0004467340186238289, + 0.011417911387979984, + 0.011094514280557632, + 0.006857346743345261, + 0.0022588325664401054, + -0.049262017011642456, + -0.0026779291220009327, + -0.013939091935753822, + 0.021740231662988663, + -0.030174965038895607, + -0.008949530310928822, + 0.037830907851457596, + -0.0015064382459968328, + 0.006995945703238249, + -0.028062982484698296, + 0.004415365867316723, + 0.026386594399809837, + -0.031521353870630264, + 0.010190321132540703, + 0.01166210975497961, + -0.014612286351621151, + -0.00869213230907917, + 0.021502632647752762, + 0.0016516371397301555, + 0.009965922683477402, + -0.006174251902848482, + 0.004999461118131876, + 0.01071831677109003, + -0.05393478274345398, + -0.033633340150117874, + 0.016460271552205086, + -0.03632611781358719, + -0.0029617270920425653, + -0.033738937228918076, + 0.006771547254174948, + 0.0039566694758832455, + -0.005187559872865677, + 0.025911398231983185, + -0.00432956637814641, + -0.029488570988178253, + 0.007952937856316566, + -0.002463430864736438, + 0.010236520320177078, + -0.0008852181490510702, + -0.011820508167147636 + ], + "metadata": { + "source": "Thesis_Verladegeraeusche_in_Speditionen.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 41, + "has_images": true, + "image_count": 51, + "coordinates": "CoordinatesMetadata(points=((204.16666666666666, 189.02777777777797), (204.16666666666666, 642.3611111111111), (936.1666666666666, 642.3611111111111), (936.1666666666666, 189.02777777777797)), system=)", + "links": [], + "last_modified": "2025-05-05T22:59:16", + "_known_field_names": "frozenset({'cc_recipient', 'link_texts', 'url', 'filetype', 'category_depth', 'page_number', 'filename', 'orig_elements', 'detection_origin', 'email_message_id', 'page_name', 'coordinates', 'table_as_cells', 'link_start_indexes', 'sent_to', 'bcc_recipient', 'languages', 'last_modified', 'link_urls', 'file_directory', 'subject', 'data_source', 'detection_class_prob', 'image_base64', 'text_as_html', 'attached_to_filename', 'key_value_pairs', 'signature', 'sent_from', 'header_footer_type', 'parent_id', 'links', 'emphasized_text_contents', 'emphasized_text_tags', 'image_mime_type', 'is_continuation', 'image_path'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "Thesis_Verladegeraeusche_in_Speditionen.pdf", + "detection_class_prob": 0.2568194270133972, + "parent_id": "d45475a34bc527cde6987546fa6dd2f5", + "text_as_html": "
Flurf\u00f6rderger\u00e4t |Anzahl Einzelereignisse ElMax-PegelSchallleistungspegel
LAFmaxLWA,5sLWAmaxLWA,1hKlLWAT,1h
[dB(A)][dB(A)][dB(A)][dB(A)][dB(A)][dB(A)]
Gabelstapler29769,3100,7108,872,15,777,8
STABW [dB]6,54,96,54,92,9-
Gabelhubwagen9968,6100,7108,172,16,279,5
STABW [dB]6,45,16,4512,7-
", + "id": "5ba44de7-0ff3-4c0c-b018-67e92171e1c2", + "processing_timestamp": "2025-05-06T14:18:19.298665", + "chunk_number": 13, + "total_chunks": 49, + "chunking_strategy": "hybrid", + "word_count": 506 + } +} \ No newline at end of file diff --git a/data/processed/85fd305f-83de-70b0-47e8-2dc000000014.json b/data/processed/85fd305f-83de-70b0-47e8-2dc000000014.json new file mode 100644 index 0000000000000000000000000000000000000000..ac5360727e8f326461bfffda79c83372134e92bc --- /dev/null +++ b/data/processed/85fd305f-83de-70b0-47e8-2dc000000014.json @@ -0,0 +1,1570 @@ +{ + "id": "85fd305f-83de-70b0-47e8-2dc000000014", + "content": "Die Messwerterfassung erfolgte mit einem Pegelschreiben \u201eRION LR 04\u201c oder einem Magnetbandger\u00e4t \u201eSony TCD-D 10\u201c. [7] Eine \u00dcbersicht zur Erhebung und Ergebnisse der Schallpegelmessungen sind folgend auf- gezeigt. Hierbei wurde der Schallleistungspegel innerhalb von einer Einwirkzeit von f\u00fcnf Sekunden auf einer Stunde umgerechnet (siehe Tabelle 2). | LWA,1h | bei | der | Be- | und | Entladung | [dB(A)] | Vorgang | Au\u00dfenrampe | Innenrampe | Palettenhubwagen | \u00fcber | \u00dcberladebr\u00fccke | 85,0 | 80,0 | Palettenhubwagen | \u00fcber | fahrzeugeigene | Ladeboardwand | 88,0 | - | Rollcontainer | \u00fcber | \u00dcberladebr\u00fccke | - | 64,0 | Rollcontainer | \u00fcber | fahrzeugeigene | Ladebrordwand | 78,0 | - | Kleinstapler | \u00fcber | \u00dcberladebr\u00fccke | 75,0 | 70,0 | Rollger\u00e4usche, | Wageboden | 75,0 | 75,0 |\n|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|\n\nTabelle 2: \u00dcbersicht \u00fcber den Schallleistungspegel verschiedener Vorg\u00e4nge [7]\nHier: LWAT,1h: st\u00fcndlich mittlerer Schalleistungspegel [dB(A)]\nNach dem Technischen Bericht 1995 k\u00f6nnen Verladeger\u00e4usche eines Gabelstaplers meist aus den Datenbl\u00e4ttern der Firmen entnommen werden. Bei der Messung der Ge- r\u00e4uschemissionen von Gabelstaplern wurden Gabelstapler der Klasse eine Tonne bis drei Tonnen ermittelt. Der mittlere st\u00fcndliche Schallleistungspegel betrug 110 dB(A) mit einer Standardabweichung von 3,1 dB. \u00c4hnlich wie bei der Emissionsansatz Ermittlung von Lkw-Ger\u00e4uschen, wurde der Emissionsansatz der Verladeger\u00e4usche gew\u00e4hlt (siehe Formel 28 und Formel 29). [7, 8]\n25\n3 Aktuelle Prognosegrundlage\n\ud835\udc3f\ud835\udc4a\ud835\udc34\ud835\udc5f = \ud835\udc3f\ud835\udc4a\ud835\udc34\ud835\udc47,1\u210e + 10 \u2217 \ud835\udc59\ud835\udc54(\ud835\udc5b \u2212 ( \ud835\udc47\ud835\udc38 1 \u210e ))\nFormel 28: Schallleistungspegel nach dem Technischen Bericht 1995 [7] [dB(A)]\n\ud835\udc3f\ud835\udc4a\ud835\udc34\ud835\udc47,1\u210e = \ud835\udc3f\ud835\udc4a\ud835\udc34\ud835\udc47 + 10 \u2217 \ud835\udc59\ud835\udc54( \ud835\udc47\ud835\udc38 3600 \ud835\udc60 ) \u221210 \u2217 \ud835\udc59\ud835\udc54( \ud835\udc46 \ud835\udc460\n)\nFormel 29: Schallleistungspegel nach dem Technischen Bericht 2005 [8] [dB(A)] Mit: LWAT,1h: st\u00fcndlich gemittelter Schallleistungspegel [dB(A)], n: Anzahl der Ereignisse in der Beurtei- lungszeit TE, LWAT: Schallleistungspegel inklusive Impulszuschlag KI, S: Gr\u00f6\u00dfe der Fl\u00e4che (S0 = 1 m\u00b2)\nNach R\u00fcckfrage beim T\u00dcV Nord bez\u00fcglich des aktuellen Forschungsstandes teilte Dipl.- Ing. Knut Lenkewitz mit, dass derzeit weitere Untersuchungen durchgef\u00fchrt werden. Er informierte zudem, dass die Untersuchungen von 2019 bis 2021 gezeigt haben, dass im Vergleich zu den Ergebnissen aus dem Jahr 1995 der ermittelte Schallleistungspegel auf- grund des fortschrittlichen Technologiestandes niedriger angesetzt werden kann. Dar- \u00fcber hinaus wurden aktuelle Datenbl\u00e4tter bereitgestellt, die den aktuellen Stand der Technik widerspiegeln. In Tabelle 3 sind die aktuellen Datenbl\u00e4tter zusammengefasst. | LWAT,1h | bei | der | Gesamter | Vorgang | Be- | und | Entladung | [dB(A)] | Paletten | an | einer | Au\u00dfenrampe | \u00fcber | eine | Mini-\u00dcberladebr\u00fccke, | Klappkeil- | \u00dcberladebr\u00fccke | oder | schwenkbare | \u00dcberladebr\u00fccke | mit | Elektro-Flurf\u00f6derfahrzeug | 79,9 | Paletten | an | einer | Au\u00dfenrampe | \u00fcber | die | fahrzeugeigene | Ladebordwand | des | Lkw | mit | Elektro-Flurf\u00f6rderfahrzeug | 82,0 | Rollwagen | an | einer | Au\u00dfenrampe | \u00fcber | eine | Mini-\u00dcberladebr\u00fccke; | Klappkeil- | \u00dcberladebr\u00fccke | oder | schwenkbare | \u00dcberladebr\u00fccke | 73,8 | Rollwagen | an | einer | Au\u00dfenrampe | \u00fcber | die | fahrzeugeigene | Ladebordwand | des | Lkw | 74,5 | Paletten | an | Vorsatzrampen | mit | Planen-Torrrandabdichtung | und | Typ | A: | Br\u00fcckenplateau | und | Klappkeil, | rutschfeste | und | profilierte | Metalloberfl\u00e4che | 75,5 | integrierter | Vorschub- | Typ | B: | Br\u00fcckenplateau | \u2013 | rutschfeste | und | \u00fcberladebr\u00fccke | mit | Elektro- | ger\u00e4uschged\u00e4mmte | und | entdr\u00f6hnte | Korund- | 70,5 | Flurf\u00f6rderfahrzeug | Beschichtung | auf | PU-Basis |\n|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|\n\nTabelle 3: \u00dcbersicht \u00fcber die aktuellen Untersuchungsergebnisse\nHier: LWAT,1h: st\u00fcndlich mittlerer Schalleistungspegel [dB(A)]\n26\n3 Aktuelle Prognosegrundlage\n\n## 3.2 Be- und Entladevorg\u00e4ngen mit Palettenhubwagen und beladener Palette bei Lkw in Logistikzentren\n\nIm Zuge einer Bachelor Thesis an der TH Bingen im Studiengang Umweltschutz, hat sich Martin Heroldt im Jahr 2016 das Ziel gesetzt, einzelne Verladeger\u00e4usche aus dem Tech- nischen Bericht des Hessischen Landesamt f\u00fcr Umwelt und Geologie von 1995 [7] zu \u00fcberpr\u00fcfen und zu best\u00e4tigen beziehungsweise zu aktualisieren. In der Thesis wurde der Schalldruckpegel bei Verladet\u00e4tigkeiten, anhand von drei ver- schiedenen Varianten, jeweils eine Be- und Entladung einer beladenen Normpalette ge- messen. Der erste Typ \u201eTYP 1\u201c bestand aus einer \u00dcberladerampe mit schwenkbarer \u00dcberladebr\u00fccke auf eine Lkw eigene Ladebordwand, welche au\u00dferhalb der Werkshalle lag. Der zweite Typ \u201eTYP 2\u201c und der dritte Typ \u201eTYP 3\u201c bestand aus innen liegenden \u00dcberladebr\u00fccken, welche sich im Wesentlichen durch die L\u00e4nge und das Oberfl\u00e4chen- material charakterisieren lassen. Die Messung erfolgte mit einer standardisierten bela- denen Euro-Palette, welche mit 16 Wasserk\u00e4sten, mit einem Gewicht pro Kasten von 13,2 kg, beladen war. Um eine Vergleichbarkeit mit dem technischen Bericht 1995 [7] zu erzielen, wurde dasselbe Messverfahren (siehe Kapitel Fehler! Verweisquelle konnte nicht gefunden werden.) angewendet, mit dem Unterschied, dass die Vorg\u00e4nge zusam- men gemessen wurden, um praxisn\u00e4here Ergebnisse zu erzielen und nicht nur isolierte Teilschritte. Alle Messungen fanden unter gleichen Rahmenbedingungen statt. Es wurden ortsfeste Emissionsorte in einem Abstand von 3 m und einer Mikrofonh\u00f6he von 1,5 m links und rechts des Lkws angeordnet. Ein Beladevorgang bestand jeweils aus der Einfahrt eines Handhubwagens mit geladener Palette \u00fcber die \u00dcberladebr\u00fccke, das Festsetzen der Pa- lette in den Lkw und die Ausfahrt des leeren Handhubwagens aus dem Lkw \u00fcber die \u00dcberladebr\u00fccke. Ein Entladevorgang bestand jeweils aus der Einfahrt des leeren Hand- hubwagens \u00fcber die \u00dcberladebr\u00fccke, die Aufnahme einer Palette in den Lkw und die Ausfahrt des Handhubwagens mit Palette aus dem Lkw \u00fcber die \u00dcberladebr\u00fccke. In den Ergebnissen wurden deutlich niedrigere Schallleistungspegel gemessen als bei dem technischen Bericht der HLUG aus dem Jahr 1995.", + "embedding": [ + 0.014617474749684334, + 0.010245461016893387, + 0.011502166278660297, + -0.04479164630174637, + -0.0006002424634061754, + 0.006032188422977924, + -0.0066406987607479095, + -0.01677371747791767, + -0.018586019054055214, + -0.03066362626850605, + 0.0070177107118070126, + 0.039791278541088104, + -0.023083703592419624, + 0.0021860068663954735, + 0.010767986066639423, + 0.014366133138537407, + 0.027647530660033226, + 0.012315718457102776, + 0.01464393176138401, + -0.002052068477496505, + -0.01484235841780901, + -0.016138751059770584, + -0.009114425629377365, + 0.012831629253923893, + -0.011264054104685783, + 0.004365399479866028, + 0.0337061770260334, + -0.014762988314032555, + -0.006429043132811785, + 0.01087381411343813, + 0.0062206946313381195, + -0.012302489951252937, + -0.020636435598134995, + 0.021152345463633537, + -0.005589034408330917, + -0.02920849248766899, + -0.004223193507641554, + 0.0027250677812844515, + 0.0362989604473114, + -0.00036006278241984546, + 0.015318584628403187, + 0.018043652176856995, + 0.0014939919346943498, + -0.019313586875796318, + -0.004441463388502598, + 0.012805172242224216, + 0.006012345664203167, + 0.0062206946313381195, + -0.025001835078001022, + 0.010734914802014828, + 0.009610493667423725, + 0.007163223810493946, + -0.016138751059770584, + 0.018268536776304245, + 0.00564194843173027, + -0.008565443567931652, + -0.002761445939540863, + 0.030531341210007668, + -0.0003464209148660302, + -0.018268536776304245, + -0.026681851595640182, + 0.003948702476918697, + -0.020239580422639847, + 0.013400454074144363, + -0.013254940509796143, + -0.017871681600809097, + 0.007070624735206366, + -0.005787461530417204, + -0.016906002536416054, + -0.0033683027140796185, + 0.013942821882665157, + 0.02907620742917061, + 0.001477456302382052, + -0.002870580879971385, + 0.024896007031202316, + -0.014008964411914349, + 0.0030342834070324898, + -1.0812735126819462e-05, + 0.0015948590589687228, + 0.0035948404110968113, + 0.02013375237584114, + -0.01641654781997204, + -0.02074226178228855, + 0.04905121773481369, + 0.009709707461297512, + -0.013473210856318474, + -0.009299623779952526, + 0.0064158146269619465, + -0.018705075606703758, + -0.002104982500895858, + 0.01529212761670351, + 0.022369366139173508, + -0.007738662883639336, + 0.0018089951481670141, + 0.037039753049612045, + -0.01007349044084549, + 0.0026043576654046774, + 0.016734031960368156, + -0.01365179568529129, + -0.027859186753630638, + -0.015847723931074142, + -0.0033534206449985504, + 0.007546850014477968, + 0.0031351507641375065, + -0.028414783999323845, + -0.011720436625182629, + 0.008691113442182541, + 0.01205114834010601, + -0.002991290995851159, + -0.024604979902505875, + -0.018400821834802628, + 0.006743219681084156, + 0.012269418686628342, + 0.0018007273320108652, + 0.010238846763968468, + 0.0030838903039693832, + 0.023678986355662346, + -0.01261997316032648, + 0.002599396975710988, + -0.016390090808272362, + 0.02691996470093727, + 0.01937972940504551, + 0.03669581562280655, + -0.012719186954200268, + 0.02685382217168808, + 0.012037919834256172, + -0.006918496917933226, + -0.0022389208897948265, + 0.0005365803954191506, + -0.014458732679486275, + -0.03127213567495346, + -0.010992869734764099, + 0.018043652176856995, + -0.00768574932590127, + -0.001632064231671393, + 0.019207758828997612, + -0.014128020964562893, + 0.0011963510187342763, + -0.01885058917105198, + -0.029023293405771255, + -0.007368265651166439, + 0.009484822861850262, + -0.01349966786801815, + -0.03143087774515152, + -0.0012285953853279352, + 0.03759535029530525, + 0.0020471077878028154, + 0.019432643428444862, + -0.012070991098880768, + -1.4791615285503212e-05, + -0.03336223587393761, + -0.0269993357360363, + 0.008671270683407784, + -0.0050731236115098, + -0.011700593866407871, + 0.007831262424588203, + 0.017712939530611038, + 0.003209560876712203, + -0.02182699739933014, + -0.009359152056276798, + 0.0009880024008452892, + 0.018652161583304405, + 0.015662524849176407, + 0.005066509358584881, + 0.014022192917764187, + 0.012725801207125187, + -0.008691113442182541, + -0.0224355086684227, + 0.0038627171888947487, + -0.013228483498096466, + 5.4050757171353325e-05, + 0.01155508030205965, + -0.022713307291269302, + 0.015503782778978348, + -0.016879545524716377, + 0.006048724055290222, + 0.011469095014035702, + -0.008486072532832623, + -0.032912466675043106, + -0.034976109862327576, + -0.02602042816579342, + -0.0016841513570398092, + 0.009603879414498806, + 0.005747776012867689, + -0.024538837373256683, + -0.010265303775668144, + 0.012791943736374378, + 0.02662893757224083, + -0.007255823351442814, + -0.014776216819882393, + 0.003249246394261718, + 0.009293009527027607, + 0.00132946262601763, + -0.03267435356974602, + -0.6425868272781372, + -0.019035788252949715, + -0.0003030149673577398, + 0.007963547483086586, + 0.005549348890781403, + 0.03592856228351593, + 0.01632394827902317, + -0.009927976876497269, + -0.010364516638219357, + 0.04669654741883278, + 0.012388475239276886, + 0.0080032330006361, + -0.004613433964550495, + -0.0031434185802936554, + -0.019670754671096802, + -0.0181494802236557, + -0.02357315830886364, + 0.0026275075506418943, + 0.025822000578045845, + 0.007441021967679262, + -0.0353994220495224, + 0.022144481539726257, + -0.002381127094849944, + 0.005264936480671167, + -0.004471227526664734, + -0.004593591205775738, + 0.018718304112553596, + -0.014286762103438377, + 0.008247959427535534, + 0.0006738259107805789, + -0.0218137688934803, + -0.005086352117359638, + -0.036351874470710754, + 0.024776950478553772, + 0.04135224223136902, + -0.005681633949279785, + 0.005410450045019388, + 0.030848823487758636, + 0.011581537313759327, + 0.016072608530521393, + -0.006726684048771858, + -0.014736531302332878, + -0.011746893636882305, + -0.012838243506848812, + -0.0035617693793028593, + 0.005410450045019388, + 0.03328286483883858, + 0.005602262914180756, + 0.018784446641802788, + -0.03571690618991852, + 0.015424411743879318, + 0.0015361576806753874, + 0.013757622800767422, + 0.018890274688601494, + 0.021192030981183052, + -0.001082255388610065, + 0.038018662482500076, + -0.003783346386626363, + -0.01608583703637123, + 0.01186595018953085, + 0.004477841779589653, + 0.009464980103075504, + 0.0009301277459599078, + -0.021377230063080788, + -0.019578155130147934, + 0.01824207976460457, + -0.015622839331626892, + -0.03423531726002693, + 0.018321450799703598, + -0.005026823841035366, + -0.010192546993494034, + 0.012686115689575672, + 0.008168588392436504, + -0.014379361644387245, + 0.03225104510784149, + 0.005040052346885204, + 0.010966412723064423, + -0.006247151643037796, + 0.009008597582578659, + 0.02365252934396267, + -0.01072168629616499, + 0.005268243607133627, + -0.01830822229385376, + -0.005803997162729502, + 0.01930035836994648, + -0.010212389752268791, + -0.005112809129059315, + 0.014829129911959171, + 0.010523258708417416, + 0.006452193018049002, + 0.018652161583304405, + 0.04645843431353569, + -0.012567060068249702, + -0.01625780574977398, + -0.02128463052213192, + 0.02883809432387352, + -0.009802306070923805, + 0.027171306312084198, + -0.008949069306254387, + -0.01969721168279648, + -0.02968471683561802, + -0.001848680665716529, + 0.013889907859265804, + -0.024155210703611374, + 0.03301829472184181, + 0.0016684425063431263, + -0.018414050340652466, + -0.0033997204154729843, + 0.01845373585820198, + -0.012745643965899944, + 0.001221154467202723, + -0.016390090808272362, + -0.01641654781997204, + -0.006872197147458792, + -0.02227676659822464, + -0.022951418533921242, + 0.024062611162662506, + 0.018361136317253113, + 0.004381935112178326, + -0.019273901358246803, + 0.008591900579631329, + -0.006002424750477076, + 0.0419342927634716, + 0.001322848373092711, + -0.03479091078042984, + 0.029922829940915108, + 0.033759091049432755, + 0.006409200374037027, + 0.0021711247973144054, + -0.009438523091375828, + 0.010166089981794357, + 0.005020209588110447, + 0.015001100488007069, + -0.016681117936968803, + 0.016535604372620583, + 0.027859186753630638, + 0.030240314081311226, + -0.011760122142732143, + 0.013360768556594849, + -0.019181301817297935, + -0.02371867187321186, + 0.0023546700831502676, + -0.0008284337818622589, + -0.033679720014333725, + -0.013559196144342422, + -0.04812522232532501, + -0.02121848799288273, + 0.018493419513106346, + 0.0073881084099411964, + 0.007255823351442814, + -0.015517011284828186, + -0.026959650218486786, + 0.0054666707292199135, + 0.005479899235069752, + -0.00549312774091959, + 0.010047033429145813, + -0.02533254586160183, + -0.010238846763968468, + -0.0009722935501486063, + -0.025663258507847786, + 0.0037006684578955173, + 0.0015278898645192385, + -0.042145948857069016, + -0.01717057265341282, + 0.002705225022509694, + -0.023890642449259758, + 0.02791210077702999, + 0.009193796664476395, + -0.018043652176856995, + -0.029049750417470932, + -0.0029482983518391848, + 0.0050003668293356895, + -0.0030028659384697676, + 0.00629014428704977, + -0.009319466538727283, + 0.01212390512228012, + -0.006515028420835733, + -0.012408317998051643, + -0.006346364971250296, + -0.018784446641802788, + 0.018638933077454567, + 0.021192030981183052, + -0.01740868389606476, + -0.0013732819352298975, + 0.022594250738620758, + 0.006134709343314171, + 0.0039553167298436165, + 0.011475709266960621, + -0.013810536824166775, + 0.03860071673989296, + -0.01928712986409664, + 0.026509881019592285, + -0.011270668357610703, + 0.001909862388856709, + -0.041616808623075485, + 0.00942529458552599, + -0.002281913533806801, + -0.008598514832556248, + 0.001299698487855494, + 0.018877046182751656, + 0.018638933077454567, + 0.00800984725356102, + 0.014696845784783363, + -0.005079737864434719, + 0.016059380024671555, + -0.0018354521598666906, + 0.009663407690823078, + -0.023467330262064934, + 0.05878738313913345, + 0.0358491912484169, + 0.029314320534467697, + -0.02395678497850895, + -0.028705809265375137, + -0.010609243996441364, + -0.011680751107633114, + 0.04849562048912048, + -0.012573674321174622, + 0.018281765282154083, + 0.01875798963010311, + -0.015887409448623657, + 0.019022559747099876, + 0.005899903830140829, + 0.03989710658788681, + 0.014471961185336113, + -0.013162340968847275, + -0.012368632480502129, + 0.011006098240613937, + 0.022157710045576096, + -0.004471227526664734, + -0.01391636487096548, + -0.0071830665692687035, + 0.007963547483086586, + 0.013466596603393555, + 0.018877046182751656, + 0.005678326822817326, + 0.0235599298030138, + 0.012950685806572437, + -0.0038064962718635798, + 0.03714558109641075, + 0.03005511499941349, + 0.020014695823192596, + 0.01717057265341282, + 0.01998823881149292, + -0.016813402995467186, + 0.005288086365908384, + -0.02486955001950264, + 0.01740868389606476, + 0.031245678663253784, + -0.017593882977962494, + -0.01185933593660593, + 0.0015179684851318598, + 0.0033071208745241165, + -0.01717057265341282, + -0.014128020964562893, + 0.00834717322140932, + -0.002877195132896304, + 0.02678767964243889, + -0.008109060116112232, + 0.00069614895619452, + 0.018189165741205215, + 0.007712205871939659, + 0.017660025507211685, + 0.021721171215176582, + -0.02623208425939083, + -0.004153743851929903, + 0.0014634010149165988, + -0.016046151518821716, + -0.008453001268208027, + -0.013969278894364834, + -0.01699860207736492, + -0.0013278090627864003, + -0.010688615031540394, + 0.003909016959369183, + -0.0044745346531271935, + 0.027118392288684845, + -0.012328946962952614, + -0.003224442945793271, + 0.014895272441208363, + 0.025054749101400375, + 0.018652161583304405, + 0.001036782399751246, + -0.028467698022723198, + -0.002303409855812788, + 0.008314101956784725, + -0.018810903653502464, + -0.017276400700211525, + -0.019776582717895508, + 0.015675753355026245, + -0.027039021253585815, + -0.000525832234416157, + -0.006098330952227116, + 0.015808038413524628, + -0.004600205458700657, + 0.0021082896273583174, + 0.014247077517211437, + 0.007083853241056204, + 0.017527740448713303, + 0.016985373571515083, + -0.003598147537559271, + 0.017871681600809097, + -0.0022901813499629498, + -0.02631145343184471, + -0.005612184293568134, + -0.02907620742917061, + 0.023374730721116066, + -0.015159842558205128, + -0.027250677347183228, + -0.02472403645515442, + 0.010166089981794357, + -0.005840375553816557, + -0.013704708777368069, + 0.010364516638219357, + 0.005913132335990667, + 0.02631145343184471, + -0.01746159791946411, + -0.005952817853540182, + 0.005162416025996208, + 0.001957815606147051, + 0.03759535029530525, + 0.01837436482310295, + -0.025808772072196007, + -0.022858820855617523, + 0.006825897842645645, + 0.01777908205986023, + 0.007619606796652079, + 0.029658259823918343, + 0.01731608621776104, + 0.009438523091375828, + -0.02242228016257286, + -0.027965014800429344, + -0.0020934075582772493, + -0.0344998873770237, + 0.02173439972102642, + 0.030531341210007668, + 0.006892039906233549, + -0.0015849376795813441, + 0.027515245601534843, + -0.01717057265341282, + 0.004077679943293333, + -0.02135077305138111, + 0.01784522458910942, + -0.020252808928489685, + 0.037648264318704605, + -0.0021860068663954735, + -0.0185463335365057, + 0.0013501321664080024, + 0.0020752183627337217, + 0.05098257586359978, + -0.010245461016893387, + -0.02471080794930458, + 0.021707942709326744, + 0.018863817676901817, + 0.025650030001997948, + -0.019578155130147934, + -0.001237689983099699, + 0.026747994124889374, + 0.013340925797820091, + 0.006898654159158468, + 0.002529947552829981, + -0.01898287422955036, + 0.018784446641802788, + 0.01320202648639679, + 0.012891157530248165, + -0.009101197123527527, + 0.010933341458439827, + 0.023771585896611214, + 0.0021711247973144054, + -0.005939589347690344, + 0.021787313744425774, + 0.014101563952863216, + 0.02791210077702999, + 0.01514661405235529, + 0.0046994187869131565, + -0.007407951168715954, + 0.026179170235991478, + -0.019723668694496155, + 0.006690305657684803, + 0.004064451437443495, + -0.0062140803784132, + -0.016072608530521393, + 0.004649811889976263, + -0.019088702276349068, + -0.014286762103438377, + -0.0005700649926438928, + -0.01162783708423376, + -0.025610344484448433, + 0.017355769872665405, + -0.012368632480502129, + -0.044579990208148956, + -0.015437640249729156, + -0.03256852552294731, + -0.006683691404759884, + -0.013089585117995739, + 0.02287204936146736, + -0.011105312034487724, + -0.003535312367603183, + -0.029922829940915108, + 0.014432275667786598, + 0.01677371747791767, + -0.017382226884365082, + 0.011945321224629879, + 0.0027879029512405396, + -0.023229217156767845, + 0.01807010918855667, + -0.021932825446128845, + 0.006690305657684803, + 3.214108073734678e-05, + -0.012322332710027695, + -0.014326447620987892, + 0.01662820391356945, + -0.017051516100764275, + 0.00900198332965374, + 0.010285146534442902, + -0.007149995304644108, + 0.005407142918556929, + 0.019498785957694054, + 0.009689864702522755, + 0.0016113946912810206, + 0.016271034255623817, + 0.002343095140531659, + 0.005582420155405998, + 0.017739396542310715, + 0.009200410917401314, + -0.013433525338768959, + 0.025954285636544228, + -0.033309321850538254, + -0.008419930003583431, + 0.003574997652322054, + 0.02136400155723095, + 0.004534062929451466, + -0.0050995806232094765, + 0.002273645717650652, + 0.006872197147458792, + 0.02320276014506817, + -0.008228116668760777, + -0.009359152056276798, + -0.0043984707444906235, + 0.006224001757800579, + -0.008611743338406086, + 0.01464393176138401, + 0.0006142976926639676, + 0.003998309373855591, + 0.018321450799703598, + 0.004878003615885973, + -0.01953847147524357, + -0.013307854533195496, + 0.04484456032514572, + -0.0025266404263675213, + -0.01616520807147026, + 0.019803039729595184, + -0.029578890651464462, + -0.003945395350456238, + -0.01936650089919567, + 0.005298007745295763, + 0.018718304112553596, + 0.002769713755697012, + 0.003899095579981804, + 0.005460056476294994, + -0.018400821834802628, + -0.02899683639407158, + 0.011264054104685783, + 0.003846181556582451, + 0.00014985392044764012, + -0.0029053057078272104, + -0.03317703679203987, + 0.007242594845592976, + -0.013135884888470173, + 0.020252808928489685, + 0.009974276646971703, + -0.014829129911959171, + -0.02120525948703289, + 0.02371867187321186, + -0.03793929144740105, + 0.026814136654138565, + -0.006581170484423637, + -0.009187182411551476, + -0.03301829472184181, + 0.0004485282697714865, + -0.018519876524806023, + -0.03600793331861496, + 0.004051223397254944, + -0.012547217309474945, + 0.02051737904548645, + 0.007315351627767086, + 0.026179170235991478, + -7.523700332967564e-05, + -0.005311236251145601, + -0.0024704192765057087, + 6.12850853940472e-05, + -0.0017660026205703616, + -0.022144481539726257, + -0.01731608621776104, + -0.01201807800680399, + 0.018969645723700523, + 0.010265303775668144, + 0.0002459671231918037, + 0.00044894166057929397, + 0.02152274362742901, + 0.0018420664127916098, + 0.038944657891988754, + -0.012448003515601158, + -0.0013865104410797358, + -0.0026738073211163282, + -0.017501283437013626, + 0.005116116255521774, + -0.012805172242224216, + 0.0027118392754346132, + 0.009961048141121864, + -0.01739545539021492, + -0.009762621484696865, + 0.01529212761670351, + -0.02791210077702999, + -0.01220989041030407, + -0.01762033998966217, + 0.015199528075754642, + -0.03037259913980961, + 0.032065846025943756, + 0.005784154403954744, + -0.007004482205957174, + 0.008314101956784725, + -0.019895639270544052, + -0.029393691569566727, + -0.01830822229385376, + 0.009431908838450909, + -0.009835377335548401, + 0.005430292803794146, + -0.006333136465400457, + -0.02234290912747383, + 0.006412507500499487, + -0.013559196144342422, + 0.014114792458713055, + -0.014577789232134819, + -0.022144481539726257, + -0.005589034408330917, + -0.022078339010477066, + -0.01746159791946411, + -0.011905635707080364, + -0.020411550998687744, + 0.019340043887495995, + 0.008175202645361423, + 0.02410229668021202, + 0.024896007031202316, + -0.02058352157473564, + -0.007718820124864578, + 0.0029648339841514826, + -0.005304621998220682, + 0.02325567416846752, + 0.01514661405235529, + 0.042675089091062546, + 0.012375246733427048, + -0.02493569254875183, + -0.01529212761670351, + -0.04087601602077484, + 0.010470344685018063, + -0.019723668694496155, + 0.023533472791314125, + 0.016972145065665245, + -0.038415517657995224, + 0.0056254127994179726, + 0.003952009603381157, + 0.016456233337521553, + 0.010774600319564342, + -0.011316968128085136, + 0.04111412912607193, + 0.023467330262064934, + -0.015040786005556583, + -0.022237081080675125, + 0.0032376714516431093, + -0.010020576417446136, + -0.004200043622404337, + 0.006485264282673597, + -0.00736165139824152, + -0.01106562651693821, + 0.0028838093858212233, + -0.012342175468802452, + 0.04918350279331207, + -0.00310869375243783, + 0.014921729452908039, + 0.007639449555426836, + -0.03907694295048714, + 0.015450868755578995, + -0.028044385835528374, + -0.02952597662806511, + 0.01747482642531395, + -0.034685082733631134, + 0.030451970174908638, + -0.009550965391099453, + -0.010602629743516445, + -0.0063166008330881596, + 0.001176508259959519, + -0.009815534576773643, + -0.018943188712000847, + -0.0006800267728976905, + 0.012481074780225754, + -0.006081795319914818, + 0.0008821745286695659, + 0.012805172242224216, + -0.0020454542245715857, + -0.0025646723806858063, + -0.002682075137272477, + -0.013208640739321709, + -0.005460056476294994, + -0.0015055667608976364, + -0.011581537313759327, + 0.0010582787217572331, + 0.004772175569087267, + -0.019895639270544052, + -0.017197029665112495, + -0.019207758828997612, + -0.021006831899285316, + -0.0012178473407402635, + -0.02325567416846752, + 0.0031698753591626883, + -0.04045270383358002, + -0.002938376972451806, + 0.004153743851929903, + -0.009775849990546703, + 0.03217167407274246, + -0.006584477610886097, + -0.023533472791314125, + -0.007632835302501917, + 0.021072974428534508, + -0.03973836451768875, + 0.014882043935358524, + 0.03106047958135605, + -0.010357902385294437, + -0.004593591205775738, + -0.003317042253911495, + 0.006018959917128086, + -0.01391636487096548, + 0.028017928823828697, + -0.0029664875473827124, + -0.021006831899285316, + 0.0007829609094187617, + -0.0011665868805721402, + 0.023096932098269463, + -0.013314468786120415, + -0.012937457300722599, + 0.018731532618403435, + 0.016495918855071068, + 0.013731165789067745, + -0.007831262424588203, + 0.011799807660281658, + 0.005850296933203936, + 0.015173071064054966, + -0.0057246265932917595, + 0.031457334756851196, + -0.02455206587910652, + 0.023321816697716713, + 0.019088702276349068, + -0.011832878924906254, + 0.002189313992857933, + -0.029711173847317696, + -0.011336810886859894, + 0.026880279183387756, + 0.007890790700912476, + -0.036272503435611725, + -0.002481994219124317, + -0.025147348642349243, + -0.0142603050917387, + -0.004147129599004984, + 0.014895272441208363, + 0.005284779239445925, + 0.009140882641077042, + 0.011991620995104313, + 0.00221081031486392, + -0.007546850014477968, + 0.014577789232134819, + 0.008618357591331005, + -0.005598955787718296, + 0.034896738827228546, + 0.008737413212656975, + -0.03137796372175217, + 0.007956933230161667, + -0.014696845784783363, + 0.033600348979234695, + 0.020781947299838066, + -0.016231348738074303, + -0.006551406811922789, + 0.0015510397497564554, + -0.029552433639764786, + -0.003789960639551282, + -0.011303739622235298, + 0.01861247606575489, + 0.013717937283217907, + 0.0072888946160674095, + -0.021866682916879654, + 0.03106047958135605, + -0.0018817518139258027, + 0.018017195165157318, + -0.02746233157813549, + -0.019961781799793243, + 0.006524949800223112, + -0.011323582381010056, + 0.008340558968484402, + -0.0055724987760186195, + -0.03637833148241043, + -0.0006882945308461785, + 0.020398322492837906, + -0.009398837573826313, + 0.012831629253923893, + 0.028864551335573196, + 0.001345171476714313, + -0.02822958491742611, + 0.0017345849191769958, + 0.0051293447613716125, + 0.019035788252949715, + 0.0010880427435040474, + 0.008247959427535534, + -0.02907620742917061, + 0.012646430172026157, + -0.0035088553559035063, + 0.005612184293568134, + -0.03487028181552887, + -0.01570221036672592, + 0.024896007031202316, + -0.005635334178805351, + -0.003436098573729396, + 0.015054014511406422, + -0.030160943046212196, + 0.01664143241941929, + -0.025292860344052315, + 0.017263172194361687, + 0.017263172194361687, + -0.03209230303764343, + 0.012467846274375916, + 0.010529872961342335, + -0.003889174200594425, + -0.0257029440253973, + 0.015106928534805775, + -0.03510839492082596, + 0.01391636487096548, + 0.003783346386626363, + -0.03426177427172661, + 0.02173439972102642, + -0.003288931678980589, + 0.017527740448713303, + -0.0009987505618482828, + 0.004216579254716635, + -0.030028657987713814, + -0.018956417217850685, + -0.04243697598576546, + 0.03492319583892822, + 0.02320276014506817, + -0.01236201822757721, + 0.006154552102088928, + -0.011522009037435055, + -0.016522375866770744, + 0.0024472693912684917, + -0.028044385835528374, + 0.0054236785508692265, + -0.04217240586876869, + -0.019009331241250038, + 0.018705075606703758, + -0.02273976430296898, + 0.0016097411280497909, + -0.006706841289997101, + 0.0033468063920736313, + -0.024300724267959595, + -0.017117658630013466, + 0.18593956530094147, + -0.030346142128109932, + -0.013149112462997437, + 0.003449327079579234, + -0.02006760984659195, + -0.017871681600809097, + 0.028652895241975784, + 0.008419930003583431, + 0.011674136854708195, + 0.03137796372175217, + 0.005777540151029825, + -0.0014551331987604499, + -0.005142573267221451, + 0.007632835302501917, + 0.010682000778615475, + -0.009524508379399776, + -0.03357389196753502, + -0.000935915217269212, + -0.015477325767278671, + 0.027568159624934196, + 0.010252075269818306, + -0.029155578464269638, + -0.011965163983404636, + -0.009868448600172997, + 0.038944657891988754, + 0.016059380024671555, + 0.0003323656565044075, + 0.006098330952227116, + 0.030451970174908638, + 0.02304401807487011, + -0.031245678663253784, + 0.015027557499706745, + 0.017964281141757965, + -0.01707797311246395, + 0.006409200374037027, + 0.0033137351274490356, + 0.008373630233108997, + -0.008624971844255924, + 0.00884324125945568, + 0.02251487970352173, + 0.013638567179441452, + -0.02624531276524067, + -0.016032923012971878, + -0.016363633796572685, + -0.0014435582561418414, + 0.012653044424951077, + 0.006971410941332579, + 0.00933930929750204, + 0.0009888291824609041, + 0.004193429369479418, + -0.004719261545687914, + 0.013704708777368069, + 0.026271769776940346, + 0.03389137610793114, + 0.0032277500722557306, + -0.02166825719177723, + 0.008823398500680923, + 0.0012112330878153443, + -0.0016610014718025923, + 0.013393839821219444, + -0.038865286856889725, + 0.017818767577409744, + -0.015517011284828186, + 0.022369366139173508, + -0.019564928486943245, + 0.01936650089919567, + -0.009431908838450909, + -0.001670922851189971, + 0.0005655176937580109, + -0.02791210077702999, + 0.008327330462634563, + -0.007976775988936424, + -0.024829864501953125, + 0.005503049120306969, + -0.0370926670730114, + -0.029711173847317696, + 0.012811786495149136, + 0.0038858670741319656, + 0.02632468193769455, + 0.020094066858291626, + 0.01422062050551176, + -0.007441021967679262, + -0.005026823841035366, + -0.00892922654747963, + -0.011574923060834408, + -0.019948553293943405, + 0.0052484008483588696, + 0.013221869245171547, + 0.012441389262676239, + -0.01867861859500408, + -0.014352904632687569, + -0.005036745220422745, + -0.005579113028943539, + -0.004342249594628811, + 0.0014179281424731016, + -0.025993971154093742, + 0.0018205700907856226, + 0.011171454563736916, + -0.016363633796572685, + -0.0037568893749266863, + -0.007024324964731932, + 0.03338869288563728, + 0.031086936593055725, + -0.024684350937604904, + -0.03217167407274246, + 0.007652678061276674, + -0.0030756224878132343, + 0.038627173751592636, + 0.0006204985547810793, + -0.00768574932590127, + -0.0016816710121929646, + -0.0265495665371418, + 0.012004849500954151, + -0.02157565765082836, + 0.02602042816579342, + 0.02304401807487011, + 0.0048515466041862965, + 0.006892039906233549, + -0.007196295075118542, + -0.010099947452545166, + 0.005691555328667164, + -0.00728228036314249, + 0.016826631501317024, + -0.007593149784952402, + -0.0012087527429684997, + -0.03989710658788681, + -0.03561107814311981, + 0.016204893589019775, + -0.007738662883639336, + 0.009789077565073967, + 0.01776585355401039, + -0.0037105896044522524, + 0.01579480990767479, + -0.004739104304462671, + 0.01143602468073368, + -0.007368265651166439, + -0.015186299569904804, + -0.014061878435313702, + -0.01293084304779768, + -0.0023794735316187143, + 0.027806272730231285, + 0.0011533584911376238, + -0.002273645717650652, + 0.011502166278660297, + 0.013836993835866451, + 0.0029185342136770487, + 0.01853310503065586, + 0.004302564542740583, + -0.014366133138537407, + -0.018863817676901817, + -0.022594250738620758, + 0.004973909817636013, + 0.003664290066808462, + -0.009385609067976475, + 0.01633717678487301, + 0.0037998820189386606, + -0.02822958491742611, + -0.030716540291905403, + 0.009451751597225666, + 0.00892261229455471, + -0.02090100385248661, + -0.024287495762109756, + 0.00392555259168148, + -0.01723671518266201, + -0.00524178659543395, + -0.002344748703762889, + -0.1674196869134903, + 0.01892996020615101, + 0.013221869245171547, + -0.0228852778673172, + 0.006650620140135288, + -0.0027879029512405396, + 0.020887775346636772, + 0.01747482642531395, + -0.004788711201399565, + -0.005747776012867689, + 0.01433967612683773, + 0.002190967556089163, + -0.02281913533806801, + -0.011085469275712967, + -0.0082016596570611, + -0.0014667081413790584, + -0.010000733658671379, + 0.0440773069858551, + 0.022461965680122375, + 0.0074608647264540195, + -0.0036444473080337048, + -0.01608583703637123, + 0.017421912401914597, + 0.0010475305607542396, + 0.007632835302501917, + 0.017898138612508774, + -0.027118392288684845, + 0.028494155034422874, + -0.0010806018253788352, + -0.015278899110853672, + -0.026681851595640182, + 0.008902769535779953, + 0.007421179208904505, + 0.0016767103224992752, + -0.007315351627767086, + -0.02013375237584114, + 0.008466229774057865, + -0.007302123121917248, + -0.013717937283217907, + 0.033229950815439224, + 0.007269051857292652, + 0.03219813108444214, + -0.009663407690823078, + 0.014247077517211437, + -0.0016138750361278653, + 0.03828323259949684, + 0.002930109156295657, + -0.013625338673591614, + -0.010807671584188938, + -0.017210258170962334, + -0.012533988803625107, + -0.01822885125875473, + 0.0073881084099411964, + 0.012937457300722599, + -0.011343425139784813, + 0.00539722153916955, + 0.010033804923295975, + 0.01869184710085392, + -0.006508414167910814, + 0.009504665620625019, + -0.013069742359220982, + -0.022223852574825287, + 0.018123023211956024, + -0.001802380895242095, + -0.006729991175234318, + -0.023004332557320595, + -0.009557579644024372, + 0.014194163493812084, + -0.000943356251809746, + -0.0032757034059613943, + -0.007877562195062637, + -0.022170938551425934, + 0.002806092146784067, + -0.02471080794930458, + 0.015239213593304157, + 0.005169030278921127, + -0.0022554565221071243, + -0.003264128463342786, + 0.012996985577046871, + 0.011025940999388695, + -0.010682000778615475, + 0.046643633395433426, + 0.009352537803351879, + -0.020411550998687744, + -0.01891673170030117, + -0.009517894126474857, + -0.008988754823803902, + 0.02822958491742611, + -0.01807010918855667, + 0.009934591129422188, + 0.0036146831698715687, + -0.018096566200256348, + -0.015014328993856907, + -0.04066435992717743, + -0.00116824044380337, + -0.010430659167468548, + -0.01961784064769745, + 0.015278899110853672, + -0.015728667378425598, + -0.013526124879717827, + 1.683272967056837e-05, + -0.012838243506848812, + -0.01723671518266201, + 0.024075839668512344, + 0.007804805412888527, + 0.009121039882302284, + -0.025120891630649567, + 0.005810611415654421, + 0.04547952860593796, + -0.02128463052213192, + -0.006276915781199932, + -0.004934224300086498, + 0.017210258170962334, + 0.007189680822193623, + 0.008730798959732056, + 0.006131402216851711, + -0.017501283437013626, + -0.01747482642531395, + 0.0018304914701730013, + 0.0019280514679849148, + 0.042304690927267075, + -0.016879545524716377, + -0.00047209151671268046, + 0.00884324125945568, + -0.011330196633934975, + -0.022237081080675125, + -0.09439846128225327, + -0.002111596753820777, + 0.019353272393345833, + 0.019392957910895348, + 0.011654294095933437, + 0.02121848799288273, + 0.0044513847678899765, + -0.0007370745879597962, + 0.002892077201977372, + 0.052675820887088776, + -0.017104430124163628, + -0.02883809432387352, + -0.01601969450712204, + -0.007976775988936424, + 0.029737630859017372, + -0.0058205327950417995, + 0.024313952773809433, + -0.02067612111568451, + -0.03830968961119652, + 0.038336146622896194, + -0.011746893636882305, + -0.0022008889354765415, + -0.004653119016438723, + -0.00417358661070466, + -0.016879545524716377, + -0.018665390089154243, + -0.034896738827228546, + 0.015622839331626892, + 0.0285206101834774, + -0.015358270145952702, + 0.01292422879487276, + -0.018890274688601494, + -0.005374071653932333, + 0.0061677806079387665, + -0.011072240769863129, + -0.014829129911959171, + -0.021099431440234184, + -0.0025894755963236094, + 0.023626072332262993, + -0.014035421423614025, + 0.004904460161924362, + 0.02104651741683483, + 0.0001523342652944848, + -0.022594250738620758, + -0.008492686785757542, + -0.029155578464269638, + -0.014855586923658848, + 0.010675386525690556, + 0.012725801207125187, + 0.0004245516611263156, + -0.026179170235991478, + -0.02762107364833355, + -0.01537149865180254, + 0.010807671584188938, + 0.022845592349767685, + -0.002313331002369523, + 0.0068589686416089535, + 0.000507229648064822, + -0.01564929634332657, + -0.009603879414498806, + -0.018797675147652626, + 0.012606744654476643, + -0.02746233157813549, + 0.024234581738710403, + 0.004696111660450697, + -0.006620856001973152, + -0.016284262761473656, + -0.007672520820051432, + 0.01646946184337139, + 0.011469095014035702, + -0.02082163281738758, + -0.0018271843437105417, + -0.00020752183627337217, + 0.015530239790678024, + -0.022078339010477066, + 0.0037238181103020906, + -0.0474638007581234, + -0.031933560967445374, + 0.007639449555426836, + 0.0005101233837194741, + 0.0017362384824082255, + -0.03338869288563728, + 0.018969645723700523, + -0.01407510694116354, + 0.027594616636633873, + 0.02174762822687626, + -0.014247077517211437, + -0.008876312524080276, + 0.02128463052213192, + -0.02005438134074211, + 1.5385863662231714e-05, + 0.026351138949394226, + 0.0311133936047554, + -0.009967662394046783, + -0.027197763323783875, + 0.02387741394340992, + -0.00613801646977663, + 0.008876312524080276, + -0.0021694712340831757, + 0.017514511942863464, + -0.007619606796652079, + -0.019736897200345993, + -0.05555963143706322, + 0.022395823150873184, + 0.03158961981534958, + -0.003312081564217806, + -0.006944953929632902, + -0.0033765705302357674, + -0.0006477822898887098, + 0.009756007231771946, + 0.03463217243552208, + -0.0025481367483735085, + -0.024538837373256683, + 0.012560445815324783, + -0.016906002536416054, + -0.005334386136382818, + -0.02554420195519924, + -0.016892774030566216, + -0.0008247132645919919, + 0.029658259823918343, + 0.005178951192647219, + 0.004980524070560932, + -0.006240537390112877, + 0.006485264282673597, + -0.014511646702885628, + 0.0224355086684227, + -0.026377595961093903, + -0.0031764896120876074, + -0.007513778749853373, + -0.006756448186933994, + -0.007679135072976351, + -0.0034691698383539915, + 0.011607994325459003, + 0.004636583384126425, + -0.013956050388514996, + -0.002744910307228565, + -0.009868448600172997, + -0.02189313992857933, + 0.015675753355026245, + 0.033600348979234695, + 0.018890274688601494, + 0.0392356812953949, + -0.012547217309474945, + -0.03767472133040428, + -0.010159475728869438, + -0.020649664103984833, + -0.006055338308215141, + 0.011389724910259247, + 0.026430509984493256, + 0.005390607286244631, + 0.0068589686416089535, + -0.0010541448136791587, + 0.026827365159988403, + 0.02090100385248661, + 0.009623722173273563, + -0.0037403537426143885, + -0.008307487703859806, + 0.0055724987760186195, + 0.002768060192465782, + -0.0011872564209625125, + 0.034896738827228546, + -0.03545233607292175, + 0.05376055836677551, + 0.004656426142901182, + 0.016363633796572685, + -0.024591751396656036, + 0.00482178246602416, + -0.01976335421204567, + -0.005833761300891638, + -0.025425145402550697, + -0.01365179568529129, + -0.020887775346636772, + -0.008605129085481167, + -0.01342691108584404, + 0.011144997552037239, + 0.03431468829512596, + -0.014829129911959171, + -0.014008964411914349, + -0.005086352117359638, + 0.00941868033260107, + -0.017752625048160553, + 0.0015212756115943193, + 0.002892077201977372, + 0.009623722173273563, + 0.00835378747433424, + -0.007712205871939659, + 0.026033656671643257, + 0.009676636196672916, + -0.01624457724392414, + 0.0024489229544997215, + 0.0012517452705651522, + 0.001461747451685369, + -0.006729991175234318, + 0.020715804770588875, + 0.0027118392754346132, + 0.0032211358193308115, + 0.004811861086636782, + 0.007401336915791035, + 0.0010500109056010842, + -0.005403835792094469, + 0.04021459072828293, + 0.02762107364833355, + 0.011336810886859894, + 0.00539391441270709, + -0.023387959226965904, + -0.028785180300474167, + 0.004464613273739815, + 0.022065110504627228, + -0.012262804433703423, + -0.02746233157813549, + 0.008109060116112232, + 0.015397954732179642, + -0.02144337259232998, + 0.00360476179048419, + -0.012117290869355202, + 0.009696478955447674, + -0.011978392489254475, + -0.008796941488981247, + -0.02586168609559536, + -0.019432643428444862, + -0.0323568731546402, + 0.036351874470710754, + 0.026271769776940346, + 0.013400454074144363, + 0.006505107041448355, + 0.004444770514965057, + 0.025054749101400375, + -0.013625338673591614, + 0.01595355197787285, + 0.002483647782355547, + 0.006399278994649649, + -0.03140442073345184, + 0.015345041640102863, + -0.005155801773071289, + -0.03677518665790558, + -0.014326447620987892, + -0.009894905611872673, + 0.020411550998687744, + 0.011846107430756092, + 0.019207758828997612, + 0.011760122142732143, + 0.12530019879341125, + 0.018956417217850685, + -0.014657160267233849, + 0.032224588096141815, + 0.008300873450934887, + 0.009584036655724049, + 0.02516057714819908, + 0.0030276691541075706, + 0.015080471523106098, + -0.0561416856944561, + -0.00038486620178446174, + -0.014855586923658848, + 0.011350039392709732, + -0.030848823487758636, + 0.0018817518139258027, + 0.014128020964562893, + 0.007811419665813446, + 0.01609906554222107, + -0.017368998378515244, + -0.006511721294373274, + 0.03793929144740105, + -0.013704708777368069, + 0.018347907811403275, + 0.021192030981183052, + -0.010734914802014828, + -0.009167339652776718, + 0.017104430124163628, + 0.006508414167910814, + -0.0011781618231907487, + -0.02722422033548355, + -0.004537370055913925, + 0.004884617868810892, + -0.04973910003900528, + -0.01838759332895279, + 0.03762180730700493, + -0.043680451810359955, + -0.0038957884535193443, + -0.028017928823828697, + 0.009828763082623482, + -0.008671270683407784, + 0.005926360841840506, + 0.030187400057911873, + -0.007844490930438042, + -0.019803039729595184, + 0.013929593376815319, + 0.005794075783342123, + -0.005403835792094469, + -0.0038329532835632563, + -0.018572790548205376 + ], + "metadata": { + "source": "Thesis_Verladegeraeusche_in_Speditionen.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 41, + "has_images": true, + "image_count": 51, + "coordinates": "CoordinatesMetadata(points=((204.16666666666666, 189.02777777777797), (204.16666666666666, 642.3611111111111), (936.1666666666666, 642.3611111111111), (936.1666666666666, 189.02777777777797)), system=)", + "links": [], + "last_modified": "2025-05-05T22:59:16", + "_known_field_names": "frozenset({'cc_recipient', 'link_texts', 'url', 'filetype', 'category_depth', 'page_number', 'filename', 'orig_elements', 'detection_origin', 'email_message_id', 'page_name', 'coordinates', 'table_as_cells', 'link_start_indexes', 'sent_to', 'bcc_recipient', 'languages', 'last_modified', 'link_urls', 'file_directory', 'subject', 'data_source', 'detection_class_prob', 'image_base64', 'text_as_html', 'attached_to_filename', 'key_value_pairs', 'signature', 'sent_from', 'header_footer_type', 'parent_id', 'links', 'emphasized_text_contents', 'emphasized_text_tags', 'image_mime_type', 'is_continuation', 'image_path'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "Thesis_Verladegeraeusche_in_Speditionen.pdf", + "detection_class_prob": 0.2568194270133972, + "parent_id": "d45475a34bc527cde6987546fa6dd2f5", + "text_as_html": "
Flurf\u00f6rderger\u00e4t |Anzahl Einzelereignisse ElMax-PegelSchallleistungspegel
LAFmaxLWA,5sLWAmaxLWA,1hKlLWAT,1h
[dB(A)][dB(A)][dB(A)][dB(A)][dB(A)][dB(A)]
Gabelstapler29769,3100,7108,872,15,777,8
STABW [dB]6,54,96,54,92,9-
Gabelhubwagen9968,6100,7108,172,16,279,5
STABW [dB]6,45,16,4512,7-
", + "id": "5ba44de7-0ff3-4c0c-b018-67e92171e1c2", + "processing_timestamp": "2025-05-06T14:18:19.298665", + "chunk_number": 14, + "total_chunks": 49, + "chunking_strategy": "hybrid", + "word_count": 906 + } +} \ No newline at end of file diff --git a/data/processed/85fd305f-83de-70b0-47e8-2dc000000015.json b/data/processed/85fd305f-83de-70b0-47e8-2dc000000015.json new file mode 100644 index 0000000000000000000000000000000000000000..01356888f629257136f223cd3cf1a6725a9de452 --- /dev/null +++ b/data/processed/85fd305f-83de-70b0-47e8-2dc000000015.json @@ -0,0 +1,1570 @@ +{ + "id": "85fd305f-83de-70b0-47e8-2dc000000015", + "content": "Ein Entladevorgang bestand jeweils aus der Einfahrt des leeren Hand- hubwagens \u00fcber die \u00dcberladebr\u00fccke, die Aufnahme einer Palette in den Lkw und die Ausfahrt des Handhubwagens mit Palette aus dem Lkw \u00fcber die \u00dcberladebr\u00fccke. In den Ergebnissen wurden deutlich niedrigere Schallleistungspegel gemessen als bei dem technischen Bericht der HLUG aus dem Jahr 1995. Die Ergebnisse des Schallleistungspe- gels LWAT,1h weichen bis zu 8 dB(A) voneinander und bei Ger\u00e4uschspitzen bis zu 11 dB(A) voneinander ab (siehe Tabelle 4). [65]\n27\n3 Aktuelle Prognosegrundlage\n\n| LWAT,1h | LWA,max | Lkw-Ausf\u00fchrung | [dB(A)] | [dB(A)] | Beladung | 84,0 | 110,0 | TYP | 1 | Entladung | 82,2 | 108,0 | Beladung | 80,0 | 106,6 | TYP | 2 | Entladung | 79,1 | 105,8 | Beladung | 78,6 | 104,5 | TYP | 3 | Entladung | 75,7 | 101,9 |\n|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|\n\nTabelle 4: \u00dcbersicht \u00fcber die Schallleistungspegel verschiedener Fahrzeugtypen [65]\nHier: LWAT,1h: impulsbehafteter st\u00fcndlicher Schallleistungspegel [dB(A)], LWAmax: Ger\u00e4uschspitzen\n[dB(A)]\nDie Erkenntnis war, dass eine \u00dcberpr\u00fcfung der alten Ergebnisse des HLUG ratsam ist. In der Praxis hat sich gezeigt, dass die Kombination aus einer innenliegenden, in die Werks- halle integrierten Vorschub\u00fcberladebr\u00fccke mit Tr\u00e4nenblech und Teleskoplippe sowie einer Torrandabdichtung die effizienteste Verladevariante darstellt, w\u00e4hrend au\u00dfenlie- gende Laderampen aufgrund hoher Schallpegel vermieden werden sollten. Es wurde auch darauf hingewiesen, dass die Arbeit aufgrund des umfangreichen Umfangs der Messungen und Auswertungen ausschlie\u00dflich auf die Be- und Entladungen mit dem Pa- lettenhubwagen fokussiert war. Zusammenfassend l\u00e4sst sich sagen, dass weitere Unter- suchungen erforderlich sind, um einen umfassenden \u00dcberblick \u00fcber alle in der Praxis stattfindenden Be- und Entladungen zu erhalten. ## 3.3 Ger\u00e4uschemissionen durch Ladevorg\u00e4nge in Ladezonen von\n\n\n## Discountern\n\nIm Zuge einer Diplomarbeit an der Fachhochschule L\u00fcbeck im Studiengang Umweltinge- nieurwesen, hat sich Bianca Berghofer im Jahr 2009 zum Ziel gemacht, Ger\u00e4uschemissi- onen von Ladevorg\u00e4ngen innerhalb von Ladezonen in Discountern zu untersuchen und folglich Ger\u00e4uschemissionsans\u00e4tze f\u00fcr schalltechnische Immissionsprognose zu entwi- ckeln. 28\n3 Aktuelle Prognosegrundlage\nEs wurden an Discountern die Emissionen w\u00e4hrend des Beladens mithilfe von 15 Mes- sungen an drei verschiedenen Standorten erfasst. Die ermittelten Emissionen wurden demgem\u00e4\u00df durch eine Kalibrierungsrechnung f\u00fcr jeden Standort und die unterschiedli- chen Fahrzeugausf\u00fchrungen \u00fcberpr\u00fcft und im Anschluss ein Emissionssatz f\u00fcr die Im- missionsprognose ausgearbeitet. Die Messungen wurden mit einem discountereigenen Lkw der Marke Mercedes-Benz \u2013 Actros, zu dem ein auf dem Lkw liegendes K\u00fchlaggregat geh\u00f6rt, durchgef\u00fchrt. Der Umschlag fand mithilfe eines Handhubwagens statt. Die Last- kraftwagen waren in verschiedenen Ausf\u00fchrungen erh\u00e4ltlich, entweder mit einer L\u00e4nge von 15 oder 18 Metern und optional mit einem Anh\u00e4nger. Aus den ermittelten akusti- schen Gr\u00f6\u00dfen wurde f\u00fcr jeden Standort die Schallleistung, je nach Fahrzeugausf\u00fchrung, ermittelt. Um eine Vergleichbarkeit zu erzielen, wurden die Daten der aktuellen Richtli- nien und Studien, der im Jahr 2007 ver\u00f6ffentlichte \u201eParkplatzl\u00e4rmstudie\u201c [66] und des im Jahr 1995 publizierte Technischen Bericht des Hlug [7] ausgewertet und dargestellt. Hierf\u00fcr wurden feste Emissionsorte ausgew\u00e4hlt und Mikrofone auf einer Seite des Lkw in einer H\u00f6he von 4,2 m platziert. Anhand der Untersuchungsergebnisse k\u00f6nnen fol- gende Schallleistungspegel LWA,1h f\u00fcr die weitere Prognose von Ger\u00e4uschimmissionen von Ladevorg\u00e4ngen in Ladezonen von Discountern mit unterschiedlichen Fahrzeugtypen LWA,1h (siehe Tabelle 5) angesetzt werden. [67]\n\n| LWAeq,1h | KI | Lkw-Ausf\u00fchrung | [dB(A)] | [dB(A)] | Lkw | mit | 15 | m | L\u00e4nge | 84,6 | 9,5 | Lkw | mit | 18 | m | L\u00e4nge | 88,5 | 10,6 |\n|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|\n\nTabelle 5: \u00dcbersicht \u00fcber die Schallleistungspegel verschiedener Fahrzeugtypen [67]\nHier: LWAeq,1h: st\u00fcndlich mittlerer Schalleistungspegel [dB(A)], KI: Impulszuschlag [dB(A)]\nAls Erkenntnis wurde gezogen, dass bei einer Lkw-L\u00e4nge von 15 m ein signifikanter Un- terschied zwischen der Verwendung der Ladebordwand des Lkws und der innenliegen- den \u00dcberladebr\u00fccke besteht. Durch die Verwendung der \u00dcberladebr\u00fccke kann der Lkw n\u00e4her an die Verladestation heranfahren, wodurch die Seitenwand der Einhausung die entstehenden Emissionen abschirmt und somit den Pegel mindert. Zudem erzeugen k\u00fcr- zere \u00dcberladebr\u00fccken weniger Ger\u00e4uschbelastung als l\u00e4ngere. Bei einer Lkw-L\u00e4nge von 18 m ist kein deutlicher Unterschied zwischen der Verwendung der Ladebordwand des Lkws und der innenliegenden \u00dcberladebr\u00fccke erkennbar, obwohl ein h\u00f6herer Schallleis- tungspegel gemessen wurde. [67]\n29\n3 Aktuelle Prognosegrundlage\n\n## 3.4 Fazit\n\nF\u00fcr eine Schallimmissionsprognose werden schalltechnische Eingangsdaten ben\u00f6tigt und sind erforderlich, um eine Simulation durchf\u00fchren zu k\u00f6nnen. F\u00fcr Be- und Entlade- vorg\u00e4nge an einem Umschlagspunkt stehen Ver\u00f6ffentlichungen zur Verf\u00fcgung, die auf messtechnisch ermittelten Schalldruckpegeln basieren. F\u00fcr Verladet\u00e4tigkeiten werden zu derzeitigem Stand beispielgebend der der Technische Bericht [7, 8] von der hessischen Landesanstalt f\u00fcr Umwelt verwendet. Die bisherigen Ver\u00f6ffentlichungen und Untersuchungen in diesem Bereich konzentrieren sich haupt- s\u00e4chlich auf Verbraucherm\u00e4rkte und Verladungen mit Handhubwagen, was nur einen kleinen Teil der tats\u00e4chlich m\u00f6glichen Verladet\u00e4tigkeiten abdeckt.", + "embedding": [ + 0.01348924357444048, + 0.01690651848912239, + 0.014468463137745857, + -0.03189456835389137, + 0.0017103028949350119, + 0.0056188530288636684, + -0.005309099797159433, + -0.014828176237642765, + -0.021769307553768158, + -0.03189456835389137, + 0.015720797702670097, + 0.024140750989317894, + -0.016653386875987053, + 0.007600605953484774, + 0.01962435245513916, + 0.006328287068754435, + 0.02551298961043358, + -0.0019850837998092175, + 0.014868143945932388, + -0.009032797068357468, + -0.012949674390256405, + -0.010458326898515224, + -0.009445801377296448, + 0.004000143613666296, + -0.016720000654459, + 0.009365865029394627, + 0.03253405913710594, + -0.019704287871718407, + -0.014002167619764805, + -0.001567083760164678, + 0.004396494477987289, + -0.008100207895040512, + -0.02194250375032425, + 0.014681626111268997, + -0.0027578009758144617, + -0.02837737277150154, + -0.008586486801505089, + -0.01232350617647171, + 0.03671738877892494, + -0.006691331043839455, + 0.014042136259377003, + 0.011670693755149841, + 0.0099254185333848, + -0.02819085493683815, + -0.0075406539253890514, + 0.011324303224682808, + -0.0068945023231208324, + 0.006961116101592779, + -0.015507634729146957, + 0.01629367470741272, + 0.009332558140158653, + 0.010098613798618317, + -0.019371220842003822, + 0.012949674390256405, + 0.0007077689515426755, + 0.004629641771316528, + -0.007747155614197254, + 0.02252870239317417, + 0.003065888537093997, + -0.012596622109413147, + -0.03442588075995445, + 0.007454056292772293, + -0.024300623685121536, + 0.02508666180074215, + -0.022515378892421722, + -0.017839107662439346, + 0.001560422359034419, + -0.011091155931353569, + 0.0016237052623182535, + -0.0013689084444195032, + 0.01150416024029255, + 0.026672065258026123, + -0.008493227884173393, + -0.0026895219925791025, + 0.03450581803917885, + -0.02069016918540001, + 0.012356813065707684, + -0.0036370998714119196, + -0.0004800338938366622, + 0.0034106136299669743, + 0.013236111961305141, + -0.020223872736096382, + -0.02320815995335579, + 0.05616854503750801, + 0.017612623050808907, + 0.003776988247409463, + -0.008966183289885521, + 0.009519075974822044, + -0.02231553941965103, + -0.005229163449257612, + 0.003940191585570574, + 0.01554760243743658, + -0.003247410524636507, + -0.004136701580137014, + 0.03157482296228409, + -0.009012813679873943, + 0.0034539124462753534, + 0.014095427468419075, + -0.005948590114712715, + -0.030961977317929268, + -0.035811442881822586, + -0.005665482487529516, + -0.008839618414640427, + -0.004842805210500956, + -0.017892399802803993, + -0.00731416791677475, + 0.01481485366821289, + 0.025113308802247047, + 0.003067553974688053, + -0.028697116300463676, + -0.014641658402979374, + 0.015147920697927475, + 0.0017086375737562776, + -0.004239952191710472, + 0.009525737725198269, + -0.015747442841529846, + 0.021982470527291298, + -0.018225466832518578, + 0.008513211272656918, + -0.024700304493308067, + 0.027844464406371117, + 0.009112733416259289, + 0.02447381801903248, + -0.010738104581832886, + 0.0302691962569952, + 0.017639268189668655, + -0.0036237770691514015, + 0.004003474488854408, + -0.0177591722458601, + -0.01858518086373806, + -0.03674403205513954, + -0.014375204220414162, + 0.014588367193937302, + 0.002940988168120384, + -0.00653811963275075, + 0.02298167534172535, + -0.017172973603010178, + 0.005605529993772507, + -0.007320829201489687, + -0.040021419525146484, + -0.0013231115881353617, + 0.01797233521938324, + -0.024593722075223923, + -0.034345947206020355, + -0.00721424724906683, + 0.04034116491675377, + 0.015827380120754242, + 0.019757578149437904, + -0.02320815995335579, + 8.154955867212266e-05, + -0.027498073875904083, + -0.027045100927352905, + 0.01689319685101509, + -0.00846658181399107, + -0.010638183914124966, + 0.009872128255665302, + 0.0135691799223423, + 0.01127101294696331, + -0.01536108460277319, + -0.010191872715950012, + -0.0030692191794514656, + 0.018065594136714935, + 0.01586734689772129, + 0.007021068129688501, + 0.023487936705350876, + 0.014908112585544586, + -0.003730358788743615, + -0.019357897341251373, + 0.007533992640674114, + -0.018758375197649002, + -0.013975522480905056, + 0.004819490481168032, + -0.017839107662439346, + 0.011830566450953484, + -0.019504446536302567, + 0.00047503787209279835, + 0.020343778654932976, + -0.0043265498243272305, + -0.04196653515100479, + -0.035438407212495804, + -0.02363448776304722, + -0.00031766336178407073, + 0.014162040315568447, + 0.007294183596968651, + -0.0314149484038353, + -0.007613928522914648, + 0.011390917003154755, + 0.01733284629881382, + -0.013236111961305141, + -0.005145896691828966, + 0.00021170618128962815, + 0.01585402525961399, + -0.010604877024888992, + -0.03216101974248886, + -0.6322425007820129, + -0.004659617785364389, + -0.0022748527117073536, + -0.002582940272986889, + -0.009492430835962296, + 0.03066887892782688, + 0.01429526787251234, + -0.0125300083309412, + -0.0008867928991094232, + 0.04572353884577751, + -0.010778072290122509, + 0.019784223288297653, + -0.006494821049273014, + -0.0022731872741132975, + 0.0008389143622480333, + -0.020636877045035362, + -0.020090647041797638, + -0.0036304383538663387, + 0.03266728296875954, + 0.013842295855283737, + -0.020197227597236633, + 0.02258199267089367, + -0.007920350879430771, + 0.0016728327609598637, + -0.002586271148175001, + -0.0031191795133054256, + 0.024154072627425194, + -0.016573451459407806, + 0.0070477137342095375, + -0.02276851050555706, + -0.011637386865913868, + 0.012083698064088821, + -0.031228432431817055, + 0.0068945023231208324, + 0.04660283774137497, + -0.004726231098175049, + -0.00506262993440032, + 0.02989616058766842, + 0.00673462962731719, + 0.0019118088530376554, + -0.010391714051365852, + -0.021995794028043747, + -0.0120237460359931, + -0.010937944985926151, + 0.011537467129528522, + 0.010644844733178616, + 0.04953383654356003, + 0.004659617785364389, + 0.012716526165604591, + -0.03466569259762764, + 0.00866642314940691, + 0.007507347036153078, + 0.008832956664264202, + 0.01359582506120205, + 0.02236882969737053, + 0.0012948008952662349, + 0.039381928741931915, + -0.016213737428188324, + -0.01815885305404663, + 0.017066391184926033, + 0.010711458511650562, + 0.022275570780038834, + 0.003730358788743615, + -0.020623555406928062, + -0.00909274909645319, + 0.021409595385193825, + -0.011704000644385815, + -0.04012800380587578, + 0.00347056589089334, + 0.0018218805780634284, + -0.010771410539746284, + 0.018345370888710022, + 0.0018601833144202828, + -0.01107117161154747, + 0.024980081245303154, + 0.008426614105701447, + -0.0030459044501185417, + -0.021422917023301125, + 0.0022965020034462214, + 0.03682396933436394, + 0.0016969802090898156, + 0.005045976489782333, + -0.011390917003154755, + -0.006231697741895914, + 0.03282715752720833, + -0.008886247873306274, + -0.012583299539983273, + 0.010811379179358482, + 0.002223227173089981, + 0.0024730279110372066, + 0.025619570165872574, + 0.03109520487487316, + 0.0009292589966207743, + -0.021636079996824265, + -0.008326693437993526, + 0.03922205790877342, + -0.005149227567017078, + 0.02443384937942028, + -0.011863873340189457, + -0.03594467043876648, + -0.023434646427631378, + -0.013229451142251492, + 0.015014694072306156, + -0.025539634749293327, + 0.03010932356119156, + 0.0034605739638209343, + -0.014468463137745857, + -0.011217721737921238, + 0.008792988955974579, + -0.019730933010578156, + -0.0043232194148004055, + 0.004896095953881741, + -0.0073607973754405975, + -0.02023719623684883, + -0.01421533152461052, + -0.02275518886744976, + 0.027258263900876045, + 0.001572912442497909, + 0.014774885028600693, + -0.025965960696339607, + 0.02383432723581791, + 0.012310183607041836, + 0.032507412135601044, + -0.011051188223063946, + -0.03232089430093765, + 0.028057627379894257, + 0.02278183400630951, + 0.0023348049726337194, + -0.00402345834299922, + -0.0060385181568562984, + 0.024300623685121536, + -0.00033265139791183174, + 0.018025627359747887, + -0.015987250953912735, + 0.025752797722816467, + 0.0250999853014946, + 0.032294247299432755, + -0.0019417849835008383, + 0.008726375177502632, + -0.019504446536302567, + -0.03072216920554638, + -0.004536382853984833, + 0.009752223268151283, + -0.026778647676110268, + -0.014748239889740944, + -0.0500667430460453, + -0.016586773097515106, + 0.02090333215892315, + 0.00501266960054636, + 0.010917960666120052, + -0.016173770651221275, + -0.0261391568928957, + -0.005605529993772507, + 0.009492430835962296, + -0.002837737090885639, + 0.007820431143045425, + -0.02210237644612789, + -0.012270215898752213, + -0.0012115339050069451, + -0.018745053559541702, + -0.0004500577924773097, + 0.01925131492316723, + -0.03842269629240036, + -0.005302438512444496, + 6.614517042180523e-05, + -0.012296861037611961, + 0.013842295855283737, + -0.003440589876845479, + -0.0271783284842968, + -0.044764306396245956, + 0.003796972334384918, + -0.011097817681729794, + 0.006438199430704117, + 0.03301367536187172, + -0.01585402525961399, + -0.005971904844045639, + -0.007873721420764923, + -0.012003761716187, + -0.0019417849835008383, + -0.012430088594555855, + 0.016866549849510193, + 0.015321115963160992, + -0.009652303531765938, + 0.0004042609652969986, + 0.017625944688916206, + 0.010265148244798183, + 0.00909274909645319, + -0.0013830638490617275, + -0.028697116300463676, + 0.03695719689130783, + -0.012463395483791828, + 0.027311556041240692, + -0.019690964370965958, + 0.000970059831161052, + -0.037490107119083405, + 0.016613420099020004, + 0.008892908692359924, + 0.01797233521938324, + 0.006098470650613308, + 0.017026422545313835, + 0.03280051052570343, + 0.0036037929821759462, + 0.01502801664173603, + 4.238807377987541e-05, + 0.0075206696055829525, + -0.006201721262186766, + 0.011157769709825516, + -0.013549195602536201, + 0.04852131009101868, + 0.02091665379703045, + 0.022009117528796196, + -0.014335235580801964, + -0.034132782369852066, + -0.006048510316759348, + -0.01336267776787281, + 0.057554107159376144, + -0.021795952692627907, + 0.004030119627714157, + 0.02065020054578781, + -0.013522550463676453, + 0.009179347194731236, + 0.008513211272656918, + 0.03772991523146629, + 0.011850550770759583, + -0.01733284629881382, + -0.015587570145726204, + 0.02150285430252552, + 0.030455714091658592, + -0.004676271229982376, + -0.013555857352912426, + -0.01179725956171751, + 0.012636590749025345, + 0.006568096112459898, + 0.009305913001298904, + 0.016253706067800522, + 0.01632031984627247, + 0.017186295241117477, + 0.0011765618110075593, + 0.034532465040683746, + 0.01650683768093586, + 0.017039746046066284, + 0.0034072829876095057, + 0.013722390867769718, + -0.00835333950817585, + 0.015627538785338402, + -0.021422917023301125, + 0.014228654094040394, + 0.021969148889183998, + -0.018292080610990524, + -0.02356787398457527, + -0.0003132918500341475, + 0.010664829052984715, + -0.008193466812372208, + -0.02232886105775833, + 0.004872781224548817, + -0.014641658402979374, + 0.023487936705350876, + -0.005345737561583519, + 0.012796462513506413, + 0.017625944688916206, + 0.01232350617647171, + 0.027844464406371117, + 0.019091444090008736, + -0.01492143515497446, + -0.006854534149169922, + 0.0023214821703732014, + -0.02692519687116146, + -0.008826294913887978, + -0.009992032311856747, + -0.013316048309206963, + -0.003650422440841794, + -0.010291793383657932, + 0.007907028310000896, + -0.017053069546818733, + 0.03048235923051834, + -0.00015154582797549665, + -0.0040634265169501305, + 0.027684591710567474, + 0.020743459463119507, + 0.015081307850778103, + -0.0025929324328899384, + -0.022288894280791283, + -0.002727824728935957, + 0.026831937953829765, + -0.02338135614991188, + -0.004842805210500956, + -0.012410104274749756, + 0.018252111971378326, + -0.030135970562696457, + -0.002138294978067279, + -0.009272606112062931, + 0.009985371492803097, + 0.002854390535503626, + 0.01265657413750887, + 0.008919553831219673, + -0.0004816992150153965, + 0.025419730693101883, + 0.017172973603010178, + -0.010718120262026787, + 0.011477514170110226, + -0.009072765707969666, + -0.023687778040766716, + -0.027737881988286972, + -0.019264638423919678, + 0.02399419993162155, + -0.004946055822074413, + -0.0037836495321244, + -0.021436240524053574, + 0.014575044624507427, + -0.0198375154286623, + -0.020810073241591454, + 0.005229163449257612, + 0.004043442662805319, + 0.018212145194411278, + -0.004579681437462568, + -0.0005204183398745954, + 0.018904924392700195, + 0.006974438671022654, + 0.0313883051276207, + 0.019557738676667213, + -0.01818549819290638, + -0.02508666180074215, + 0.004453115630894899, + 0.019091444090008736, + 0.008106868714094162, + 0.01798565872013569, + 0.01605386473238468, + 0.024380559101700783, + -0.011111140251159668, + -0.02612583339214325, + -0.00866642314940691, + -0.03535847365856171, + 0.02046368271112442, + 0.0208766870200634, + 0.00825341884046793, + -0.015227857045829296, + 0.020943300798535347, + -0.018465274944901466, + 0.019757578149437904, + -0.01285641547292471, + 0.008932877331972122, + -0.01773252710700035, + 0.03272057697176933, + -0.008273403160274029, + -0.01918470300734043, + -0.014934757724404335, + -0.015041339211165905, + 0.03679732605814934, + -0.005818693432956934, + -0.0054423268884420395, + 0.022182311862707138, + 0.026019252836704254, + 0.025020049884915352, + -0.020157260820269585, + 0.0060018808580935, + 0.029150089249014854, + 0.01674664579331875, + 0.02025051973760128, + -0.0048994263634085655, + -0.01461501233279705, + -0.0045830123126506805, + 0.005782056134194136, + 0.021249722689390182, + -0.0060684941709041595, + 0.010664829052984715, + 0.022235602140426636, + 0.009845482185482979, + -0.013549195602536201, + 0.013962199911475182, + 0.0024796894285827875, + 0.026245739310979843, + 0.010511618107557297, + -0.003530518151819706, + -0.014934757724404335, + 0.022688575088977814, + -0.023541228845715523, + -0.010604877024888992, + -0.002854390535503626, + 0.0011915498180314898, + -0.016040543094277382, + 0.0015612550778314471, + -0.01233682967722416, + -0.002331474330276251, + -0.013342694379389286, + -0.0013522549998015165, + -0.025153275579214096, + 0.02588602527976036, + -0.008812972344458103, + -0.039355285465717316, + -0.015587570145726204, + -0.03304031863808632, + -0.00950575340539217, + -0.006731299217790365, + 0.011737307533621788, + -0.0024180717300623655, + -0.008240096271038055, + -0.030402423813939095, + 0.015294470824301243, + 0.013962199911475182, + -0.00690116360783577, + 0.014868143945932388, + 0.0004675438394770026, + -0.023701101541519165, + 0.031068559736013412, + -0.021382950246334076, + 0.01605386473238468, + -0.009485769085586071, + -0.017252909019589424, + -0.013369339518249035, + 0.008846279233694077, + -0.022435443475842476, + -0.001000868622213602, + 0.0036370998714119196, + -0.00815349817276001, + 0.0022748527117073536, + 0.011957132257521152, + 0.01241676602512598, + -0.0003234920441173017, + 0.02029048651456833, + 0.008373322896659374, + 0.01023850217461586, + 0.011530805379152298, + 0.015534279868006706, + -0.007647235412150621, + 0.020570263266563416, + -0.03109520487487316, + -0.0014147053007036448, + -0.0013705737655982375, + 0.014721594750881195, + -0.0041133868508040905, + -0.009205992333590984, + -0.0038369405083358288, + 0.0151345981284976, + 0.013722390867769718, + -0.010458326898515224, + -0.017186295241117477, + -0.006441530305892229, + -0.0008201793534681201, + -0.017386136576533318, + 0.013655778020620346, + -0.004373179282993078, + -0.0027261595241725445, + 0.033120255917310715, + 0.006518135778605938, + -0.02091665379703045, + -0.03240083158016205, + 0.036690741777420044, + 0.008659761399030685, + -0.018318725749850273, + 0.02883034385740757, + -0.019344573840498924, + -0.004526390694081783, + -0.02338135614991188, + 0.006384908687323332, + 0.029576415196061134, + 0.01554760243743658, + 0.013789004646241665, + 0.004026789218187332, + -0.013842295855283737, + -0.026245739310979843, + 0.0003661663504317403, + 0.0026795300655066967, + -0.003427267074584961, + -0.004000143613666296, + -0.023088255897164345, + 0.020756781101226807, + -0.014828176237642765, + 0.0028027649968862534, + 0.01608050987124443, + -0.019571060314774513, + -0.02111649513244629, + 0.030002743005752563, + -0.021875889971852303, + 0.02671203389763832, + -0.008599809370934963, + -0.017719203606247902, + -0.03607789799571037, + -0.015267825685441494, + -0.021556144580245018, + -0.04114052653312683, + 0.0016003905329853296, + -0.024740273132920265, + 0.008226773701608181, + 0.013056255877017975, + 0.03391961753368378, + -0.015947284176945686, + 0.011364271864295006, + 0.005812032148241997, + 0.0010283467127010226, + -0.0032091077882796526, + -0.014868143945932388, + -0.009265944361686707, + -0.014761562459170818, + 0.029789580032229424, + 0.01502801664173603, + 0.010997897014021873, + 0.008539857342839241, + 0.030349133536219597, + 0.014162040315568447, + 0.0459899939596653, + -0.023248128592967987, + -0.01835869438946247, + -0.0016295339446514845, + -0.008739697746932507, + 0.006764606107026339, + -0.01694648712873459, + 0.0011457530781626701, + 0.00971225555986166, + -0.027498073875904083, + 0.010471650399267673, + 0.022675251588225365, + -0.037943076342344284, + -0.027524719014763832, + -0.0062250359915196896, + 0.01242342684417963, + -0.031068559736013412, + 0.023141546174883842, + 0.01945115625858307, + -0.011750630103051662, + -0.002837737090885639, + -0.025206567719578743, + -0.037916433066129684, + -0.020983267575502396, + 0.017506040632724762, + -0.0010758087737485766, + -0.001632864587008953, + -0.002627904526889324, + -0.01755933091044426, + 0.010431681759655476, + -0.009825498796999454, + 0.011777275241911411, + -0.007986964657902718, + -0.020929977297782898, + -0.010731442831456661, + -0.02235550805926323, + -0.028270790353417397, + -0.016839904710650444, + -0.0198508370667696, + 0.00595192052423954, + 0.009179347194731236, + 0.029123444110155106, + 0.02529982663691044, + -0.011191076599061489, + -0.007700526155531406, + 0.0120237460359931, + -0.005162550136446953, + 0.01440184935927391, + 0.012190279550850391, + 0.039168767631053925, + 0.014681626111268997, + -0.01777249574661255, + -0.021769307553768158, + -0.04825485497713089, + 0.013842295855283737, + -0.013535873033106327, + 0.016866549849510193, + 0.0017702550394460559, + -0.01570747420191765, + 0.015107952989637852, + 0.008020271547138691, + 0.013629131950438023, + 0.0010325099574401975, + -0.01273651048541069, + 0.04969370737671852, + 0.018252111971378326, + -0.002787776989862323, + -0.008733035996556282, + -0.00022773507225792855, + -0.004579681437462568, + -0.005622183438390493, + 0.004143362864851952, + 0.005788717418909073, + -0.009838821366429329, + -0.009552382864058018, + 0.007607267238199711, + 0.04660283774137497, + 0.008513211272656918, + 0.008526534773409367, + 0.006791251245886087, + -0.023967554792761803, + 0.010911298915743828, + -0.025579603388905525, + -0.01773252710700035, + 0.008379984647035599, + -0.03389297425746918, + 0.0376499779522419, + -0.010425020009279251, + -0.01818549819290638, + 0.0019201355753466487, + 0.0016212072223424911, + -0.01440184935927391, + -0.012430088594555855, + 0.0023947570007294416, + 0.018225466832518578, + -0.007367458660155535, + 0.0099254185333848, + 0.01778581738471985, + 0.0024447173345834017, + -0.006541450507938862, + 0.0009009482455439866, + 0.0011982112191617489, + -0.005295777227729559, + -0.005868653766810894, + -0.01190384104847908, + -0.008133514784276485, + 0.006641370709985495, + -0.012436749413609505, + -0.018238790333271027, + -0.014908112585544586, + -0.018292080610990524, + -0.003137498162686825, + -0.022422119975090027, + 0.03221431374549866, + -0.03280051052570343, + -0.011750630103051662, + 0.01653348281979561, + -0.0038835699670016766, + 0.028883634135127068, + 0.0038402711506932974, + -0.025779442861676216, + -0.014255299232900143, + 0.034106139093637466, + -0.03658416122198105, + 0.014415171928703785, + 0.026192447170615196, + -0.00721424724906683, + 0.0034905499778687954, + -0.0012798127718269825, + -0.0007793785189278424, + -0.01986416056752205, + 0.025792766362428665, + -0.0058786459267139435, + -0.01925131492316723, + 0.005542247090488672, + -0.0004542211536318064, + 0.02131633646786213, + -0.0077804625034332275, + -0.012270215898752213, + 0.015534279868006706, + 0.011983777396380901, + 0.014854821376502514, + -0.011191076599061489, + 0.012450071983039379, + 0.015520957298576832, + 0.009445801377296448, + -0.005945259239524603, + 0.030828749760985374, + -0.02045035921037197, + 0.014881466515362263, + 0.019277961924672127, + -0.007893705740571022, + -0.0019018168095499277, + -0.04559031128883362, + -0.012410104274749756, + 0.006571426521986723, + 0.017172973603010178, + -0.03152153268456459, + 0.007487362716346979, + -0.016546806320548058, + -0.015720797702670097, + -0.010931283235549927, + -0.00013385160127654672, + -0.0005270796827971935, + 0.0034139445051550865, + 0.027737881988286972, + -0.0009492430835962296, + -0.01632031984627247, + 0.014761562459170818, + -0.003766996320337057, + 0.002146621700376272, + 0.033733099699020386, + 0.00919266976416111, + -0.03426600992679596, + 0.012989642098546028, + -0.012350152246654034, + 0.025579603388905525, + 0.01536108460277319, + -0.02671203389763832, + -0.002771123545244336, + 0.0009617331088520586, + -0.040607620030641556, + -0.008786327205598354, + -0.018878279253840446, + 0.007287522312253714, + 0.0031075221486389637, + -0.0012789801694452763, + -0.01735949143767357, + 0.02212902158498764, + 0.005215840879827738, + 0.017705881968140602, + -0.0208900086581707, + -0.014774885028600693, + 0.004463107790797949, + -0.0027128367219120264, + 0.014974725432693958, + -0.001403880538418889, + -0.045830123126506805, + 0.004629641771316528, + 0.018065594136714935, + -0.0012748168082907796, + 0.008406629785895348, + 0.028084272518754005, + -0.006994422525167465, + -0.013935554772615433, + 0.007480701431632042, + 0.013749036937952042, + 0.010951267555356026, + -0.004989354871213436, + 0.004030119627714157, + -0.01965099759399891, + -0.0026662072632461786, + 0.008613131940364838, + 0.0014646654017269611, + -0.028777053579688072, + -0.023474615067243576, + 0.022235602140426636, + -0.0006103466730564833, + -0.01325609628111124, + 0.01565418392419815, + -0.040607620030641556, + 0.010804717428982258, + -0.010818039998412132, + 0.020956622436642647, + 0.023088255897164345, + -0.030615586787462234, + 0.006927809212356806, + 0.009572367183864117, + -0.0042699286714196205, + -0.013502566143870354, + 0.009898773394525051, + -0.026911873370409012, + 0.004246613942086697, + -0.000897617603186518, + -0.028137562796473503, + 0.01338266208767891, + -0.006215044297277927, + 0.020596910268068314, + -0.002496342873200774, + 0.003077545901760459, + -0.02797769010066986, + -0.012077036313712597, + -0.0333867110311985, + 0.03298702836036682, + 0.011017881333827972, + -0.02356787398457527, + 0.012816446833312511, + -0.010078630410134792, + -0.013455936685204506, + 0.0028510598931461573, + -0.01751936413347721, + 0.006658024154603481, + -0.0501200333237648, + 3.880369149555918e-06, + 0.011044526472687721, + -0.02444717288017273, + 0.0022631953470408916, + 0.005798709578812122, + -0.0037270281463861465, + -0.03261399269104004, + -0.009579028002917767, + 0.19664320349693298, + -0.03306696563959122, + -0.02148953080177307, + -0.004313227254897356, + -0.017079714685678482, + -0.036264415830373764, + 0.02757800929248333, + -0.006867856718599796, + 0.009312573820352554, + 0.03320019319653511, + 0.0011457530781626701, + 0.012903044931590557, + 0.00030642232741229236, + 0.008599809370934963, + 0.011410901322960854, + -0.006358263082802296, + -0.0459367036819458, + -0.0018451953073963523, + -0.012097020633518696, + 0.044178105890750885, + 0.01737281307578087, + -0.03173469379544258, + -0.004423139616847038, + -0.020210551097989082, + 0.04201982542872429, + 0.011664032936096191, + -0.0031125179957598448, + 0.0008339183987118304, + 0.026858583092689514, + 0.02342132478952408, + -0.03887566551566124, + 0.007447395008057356, + 0.01674664579331875, + -0.012869738042354584, + 4.478199844015762e-05, + 0.008952860720455647, + -0.00024272312293760478, + -0.024540431797504425, + 0.009245960973203182, + 0.015760766342282295, + 0.00949909258633852, + -0.029762933030724525, + -0.013895586133003235, + -0.017692558467388153, + -0.011124462820589542, + 0.003986821044236422, + 0.018665116280317307, + 0.003856924595311284, + 0.023114901036024094, + -0.0007747988565824926, + -0.0019118088530376554, + 0.027311556041240692, + 0.020743459463119507, + 0.03197450190782547, + -0.006434869021177292, + -0.018118886277079582, + -0.002379768993705511, + -0.008633116260170937, + 0.005735426675528288, + 0.01169067807495594, + -0.03637099638581276, + 0.01648019254207611, + -0.011510821059346199, + 0.01649351418018341, + -0.026618774980306625, + 0.015094630420207977, + -0.00773383304476738, + -0.009825498796999454, + 0.0051792035810649395, + -0.023661132901906967, + 0.005555570125579834, + -0.02507334016263485, + -0.03050900623202324, + -0.0007398267043754458, + -0.02901686169207096, + -0.030322488397359848, + 0.009166024625301361, + 0.008506550453603268, + 0.022222280502319336, + 0.02840401791036129, + 0.014388526789844036, + -0.009618996642529964, + -0.0009184342925436795, + -0.014028813689947128, + -0.00402345834299922, + -0.02482020854949951, + 0.009452462196350098, + 0.012989642098546028, + 0.01380232721567154, + -0.028057627379894257, + -0.027524719014763832, + 0.010158565826714039, + -0.009865466505289078, + -0.004889434669166803, + 0.0058786459267139435, + -0.0188116654753685, + 0.01252334751188755, + -0.002186589641496539, + -0.0053390758112072945, + -0.017013100907206535, + -0.010891315527260303, + 0.054836273193359375, + 0.044604431837797165, + -0.01943783275783062, + -0.016013897955417633, + 0.00971225555986166, + 0.005462311208248138, + 0.029789580032229424, + -0.0009958725422620773, + -0.01734616793692112, + 0.0010441674385219812, + -0.033360064029693604, + 0.006075155921280384, + -0.02443384937942028, + 0.00731416791677475, + 0.014721594750881195, + 0.01390890870243311, + 0.0002941404527518898, + -0.005815363023430109, + -0.00657808780670166, + -0.002108318731188774, + -5.865114871994592e-05, + 0.017879076302051544, + -0.006827889010310173, + 0.009052781388163567, + -0.03306696563959122, + -0.033306773751974106, + 0.025419730693101883, + -0.008892908692359924, + 0.009585689753293991, + 0.023101579397916794, + 0.003763665445148945, + 0.009359203279018402, + -0.003910215571522713, + 0.0017086375737562776, + -0.015041339211165905, + -0.02424733154475689, + -0.027471426874399185, + -0.0027128367219120264, + 0.0060918089002370834, + 0.02675200067460537, + 0.00746071757748723, + 0.004249944351613522, + 0.011177754029631615, + 0.008726375177502632, + -0.0026545498985797167, + 0.026245739310979843, + 0.004799506161361933, + -0.017639268189668655, + -0.027111714705824852, + -0.01695980876684189, + 0.00777380121871829, + 0.0006540617905557156, + -0.007334151770919561, + 0.021409595385193825, + 0.015387729741632938, + -0.015387729741632938, + -0.02127636782824993, + 0.008519873023033142, + 0.007500685751438141, + -0.03266728296875954, + -0.01795901358127594, + 0.000963398430030793, + -0.01837201602756977, + 0.002458039904013276, + -0.004786183591932058, + -0.16882537305355072, + 0.007347474340349436, + 0.00035888049751520157, + -0.018678439781069756, + 0.014015491120517254, + 0.0055455779656767845, + 0.016666710376739502, + 0.012583299539983273, + -0.02130301296710968, + -0.0015637531178072095, + 0.015187889337539673, + 0.004706247244030237, + -0.016786614432930946, + 0.0007335817208513618, + -0.01262992899864912, + -0.011137785390019417, + -0.0051825339905917645, + 0.03173469379544258, + 0.019144734367728233, + 0.003047569887712598, + -0.00036949702189303935, + -0.010638183914124966, + 0.015081307850778103, + 0.00407341867685318, + 0.011677355505526066, + 0.02676532417535782, + -0.026232415810227394, + 0.026791969314217567, + -0.007021068129688501, + -0.009445801377296448, + -0.019104765728116035, + 0.018092239275574684, + 0.014348558150231838, + -0.004593004006892443, + -0.0075739603489637375, + -0.006531458348035812, + 0.00616841483861208, + 0.011330964975059032, + -0.008206789381802082, + 0.03820953145623207, + 0.0031358327250927687, + 0.03735687956213951, + -0.008886247873306274, + 0.009559044614434242, + -0.0023964224383234978, + 0.023128224536776543, + 0.010897976346313953, + -0.01799898035824299, + -0.009552382864058018, + -0.01283643115311861, + -0.0008826295379549265, + -0.019704287871718407, + 0.0023997530806809664, + 0.026831937953829765, + -0.011610741727054119, + 0.021023236215114594, + 0.004086741246283054, + 0.01630699634552002, + -0.005708781071007252, + 0.0078004468232393265, + -0.010937944985926151, + -0.01588067039847374, + 0.0010524940444156528, + 0.009225976653397083, + -0.01695980876684189, + -0.025779442861676216, + 0.003368980251252651, + 0.0074140881188213825, + -0.001975091639906168, + -0.0029476494528353214, + -0.0156808290630579, + -0.023527905344963074, + 0.0026179125998169184, + -0.02002403326332569, + 0.013296063989400864, + 0.006681338883936405, + 0.005165880545973778, + 0.007194263394922018, + 0.019264638423919678, + -0.012276876717805862, + -0.02693851850926876, + 0.03698384389281273, + 0.005745418835431337, + -0.009232637472450733, + -0.025619570165872574, + 0.0007881215424276888, + -0.008040254935622215, + 0.022448766976594925, + -0.010285131633281708, + 0.006688000168651342, + 0.013222789391875267, + -0.020556941628456116, + -0.02210237644612789, + -0.042312927544116974, + 0.001035840716212988, + 0.0005162549787200987, + -0.011330964975059032, + -0.006771267391741276, + -0.013749036937952042, + -0.010831363499164581, + 0.0018635140731930733, + -0.01296299695968628, + -0.02904350683093071, + 0.016973132267594337, + 0.010464988648891449, + 0.021436240524053574, + -0.02552631124854088, + 0.025859380140900612, + 0.04612322151660919, + -0.018425308167934418, + -0.0013630797620862722, + -0.016160447150468826, + 0.024806885048747063, + 0.010305115953087807, + 0.011510821059346199, + 0.01285641547292471, + -0.013122869655489922, + -0.016666710376739502, + 0.008659761399030685, + 0.006947793066501617, + 0.04934731870889664, + -0.024926790967583656, + -0.00362710771150887, + -0.0061917295679450035, + -0.009305913001298904, + -0.023461291566491127, + -0.09304580837488174, + -0.0014313586289063096, + 0.016160447150468826, + 0.0050559681840240955, + 0.0010916294995695353, + 0.02256867103278637, + 0.0009492430835962296, + 0.013948877342045307, + -0.0013339363504201174, + 0.048361435532569885, + -0.0271783284842968, + -0.035811442881822586, + -0.02070349082350731, + -0.014082103967666626, + 0.04428468644618988, + -0.013975522480905056, + 0.017839107662439346, + -0.017466071993112564, + -0.025326471775770187, + 0.03634435310959816, + -0.012403442524373531, + -0.007514008320868015, + 0.000994207221083343, + -0.011930487118661404, + -0.027924399822950363, + -0.013102885335683823, + -0.03317354619503021, + 0.0312817245721817, + 0.024060813710093498, + -0.012743172235786915, + 0.02006400190293789, + -0.020410392433404922, + -0.00746071757748723, + -0.006688000168651342, + -0.0044298009015619755, + -0.0029859524220228195, + -0.016200415790081024, + -0.0033573228865861893, + 0.030402423813939095, + -0.018864957615733147, + -0.00464962562546134, + 0.011750630103051662, + 0.00825341884046793, + -0.01941118761897087, + 0.0021899205166846514, + -0.04058097302913666, + -0.003145824884995818, + 0.008706390857696533, + 0.008526534773409367, + -0.013602486811578274, + -0.032027795910835266, + -0.02671203389763832, + -0.021023236215114594, + 0.01346925925463438, + 0.020183905959129333, + 0.003766996320337057, + -0.007793785072863102, + -0.003493880620226264, + -0.012829769402742386, + -0.001331438310444355, + -0.02147620916366577, + 0.011251028627157211, + -0.03407949209213257, + 0.018651794642210007, + 0.012803124263882637, + -0.005898629780858755, + -0.0146283358335495, + -0.01492143515497446, + 0.01525450311601162, + 0.016546806320548058, + -0.022049084305763245, + -0.0008909562020562589, + -0.005455649457871914, + 0.004459776915609837, + -0.01388226356357336, + -0.01127101294696331, + -0.04071420058608055, + -0.019770901650190353, + 0.007394103799015284, + -0.00401346618309617, + -0.0104383435100317, + -0.01918470300734043, + 0.007087681442499161, + -0.007240892853587866, + 0.037276942282915115, + 0.019517770037055016, + -0.006341610103845596, + -0.018265435472130775, + 0.02588602527976036, + -0.022222280502319336, + -0.004849466495215893, + 0.02776452712714672, + 0.021409595385193825, + -0.01961102895438671, + -0.023647809401154518, + 0.02488682232797146, + -0.00438650231808424, + 0.013535873033106327, + 0.00814683735370636, + 0.010877992957830429, + -0.008073561824858189, + -0.009392510168254375, + -0.051292434334754944, + 0.017199618741869926, + 0.02507334016263485, + 0.00035513349575921893, + -0.011890518479049206, + -0.0004080079961568117, + -0.001716964179649949, + 0.018038948997855186, + 0.02840401791036129, + 0.004629641771316528, + -0.009132717736065388, + 0.01590731553733349, + -0.017239587381482124, + -0.006961116101592779, + -0.018745053559541702, + -0.0250600166618824, + 0.006484828889369965, + 0.008926215581595898, + 0.008133514784276485, + 0.004366517998278141, + -0.00418000016361475, + -0.0006969442474655807, + -0.0036237770691514015, + 0.025646217167377472, + -0.03066887892782688, + -0.015840701758861542, + -0.00631496449932456, + -0.005915283225476742, + 0.010178550146520138, + -0.002121641533449292, + 0.011290996335446835, + -0.012669896706938744, + -0.005009338725358248, + 0.008399968966841698, + -0.019517770037055016, + -0.009599012322723866, + 0.007094343192875385, + 0.027498073875904083, + 0.02673867903649807, + 0.042099762707948685, + -0.023954233154654503, + -0.02693851850926876, + -0.011657371185719967, + -0.026245739310979843, + -0.005712111946195364, + 0.013062916696071625, + 0.03399955481290817, + 0.0011415897170081735, + 0.01524117961525917, + -0.010478311218321323, + 0.03447917476296425, + 0.01711968146264553, + 0.016546806320548058, + -0.013062916696071625, + 0.00752733089029789, + 0.008486566133797169, + 0.012496701441705227, + -0.0019317929400131106, + 0.029363252222537994, + -0.02904350683093071, + 0.041673436760902405, + 0.0018268765415996313, + 0.01773252710700035, + -0.015987250953912735, + 0.0009151036501862109, + -0.014801531098783016, + -0.006961116101592779, + -0.01981087028980255, + -0.002451378619298339, + -0.008966183289885521, + -0.002144956262782216, + -0.008866263553500175, + 0.01525450311601162, + 0.04140698164701462, + -0.015147920697927475, + -0.010085291229188442, + 0.006534789223223925, + 0.00940583273768425, + -0.012510024942457676, + 0.00016819921438582242, + 0.0010658168466761708, + 0.008786327205598354, + -0.0011241036700084805, + -0.00866642314940691, + 0.029176734387874603, + 0.004379841033369303, + -0.01421533152461052, + 0.007140972651541233, + -0.004646295215934515, + -0.0025995937176048756, + 0.0014047132572159171, + 0.020770104601979256, + -0.01586734689772129, + 0.01294301263988018, + -0.006548111792653799, + 0.013789004646241665, + 0.009205992333590984, + -0.020130613818764687, + 0.03719700500369072, + 0.029283316805958748, + 0.005289115943014622, + 0.018225466832518578, + -0.01612047851085663, + -0.029976097866892815, + -0.008213450200855732, + 0.021982470527291298, + -0.014095427468419075, + -0.029123444110155106, + 6.224203389137983e-05, + 0.013789004646241665, + -0.0056521594524383545, + 0.00887958612293005, + -0.006961116101592779, + 0.004453115630894899, + -0.02002403326332569, + 0.014548399485647678, + -0.03522524610161781, + -0.020397068932652473, + -0.03671738877892494, + 0.019770901650190353, + 0.03213437646627426, + 0.00731416791677475, + 0.007973642088472843, + 0.00742074940353632, + 0.025233212858438492, + -0.01127767376601696, + 0.026818614453077316, + -0.007913690060377121, + 0.010698135942220688, + -0.026898551732301712, + 0.011624064296483994, + 0.006201721262186766, + -0.04156685620546341, + -0.0135691799223423, + -0.004642964340746403, + 0.01590731553733349, + 0.026272384449839592, + 0.01158409658819437, + 0.003530518151819706, + 0.12406107783317566, + 0.030455714091658592, + -0.022462088614702225, + 0.02591267041862011, + 0.007713849190622568, + 0.008746358565986156, + 0.02859053574502468, + -0.0007281693397089839, + 0.029523124918341637, + -0.04130040109157562, + -0.002709506079554558, + -0.00908608827739954, + 0.013895586133003235, + -0.035864733159542084, + -0.01244341116398573, + 0.01181724388152361, + 0.004416478332132101, + 0.002223227173089981, + -0.012669896706938744, + -0.011251028627157211, + 0.03802301362156868, + -0.017852431163191795, + 0.014015491120517254, + 0.030135970562696457, + -0.020783428102731705, + -0.002006733091548085, + 0.018491921946406364, + -0.0008534861262887716, + 0.001651183352805674, + -0.019051475450396538, + -0.01605386473238468, + 0.012896383181214333, + -0.05321090295910835, + -0.0292300246655941, + 0.019770901650190353, + -0.030322488397359848, + -0.006717976648360491, + -0.018838312476873398, + 0.007787123788148165, + -0.007454056292772293, + 0.01606718823313713, + 0.02779117226600647, + -0.0031175140757113695, + -0.02837737277150154, + 0.009432478807866573, + -0.006138438358902931, + -0.00046546218800358474, + 0.006221705581992865, + -0.01715965010225773 + ], + "metadata": { + "source": "Thesis_Verladegeraeusche_in_Speditionen.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 41, + "has_images": true, + "image_count": 51, + "coordinates": "CoordinatesMetadata(points=((204.16666666666666, 189.02777777777797), (204.16666666666666, 642.3611111111111), (936.1666666666666, 642.3611111111111), (936.1666666666666, 189.02777777777797)), system=)", + "links": [], + "last_modified": "2025-05-05T22:59:16", + "_known_field_names": "frozenset({'cc_recipient', 'link_texts', 'url', 'filetype', 'category_depth', 'page_number', 'filename', 'orig_elements', 'detection_origin', 'email_message_id', 'page_name', 'coordinates', 'table_as_cells', 'link_start_indexes', 'sent_to', 'bcc_recipient', 'languages', 'last_modified', 'link_urls', 'file_directory', 'subject', 'data_source', 'detection_class_prob', 'image_base64', 'text_as_html', 'attached_to_filename', 'key_value_pairs', 'signature', 'sent_from', 'header_footer_type', 'parent_id', 'links', 'emphasized_text_contents', 'emphasized_text_tags', 'image_mime_type', 'is_continuation', 'image_path'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "Thesis_Verladegeraeusche_in_Speditionen.pdf", + "detection_class_prob": 0.2568194270133972, + "parent_id": "d45475a34bc527cde6987546fa6dd2f5", + "text_as_html": "
Flurf\u00f6rderger\u00e4t |Anzahl Einzelereignisse ElMax-PegelSchallleistungspegel
LAFmaxLWA,5sLWAmaxLWA,1hKlLWAT,1h
[dB(A)][dB(A)][dB(A)][dB(A)][dB(A)][dB(A)]
Gabelstapler29769,3100,7108,872,15,777,8
STABW [dB]6,54,96,54,92,9-
Gabelhubwagen9968,6100,7108,172,16,279,5
STABW [dB]6,45,16,4512,7-
", + "id": "5ba44de7-0ff3-4c0c-b018-67e92171e1c2", + "processing_timestamp": "2025-05-06T14:18:19.298665", + "chunk_number": 15, + "total_chunks": 49, + "chunking_strategy": "hybrid", + "word_count": 759 + } +} \ No newline at end of file diff --git a/data/processed/85fd305f-83de-70b0-47e8-2dc000000016.json b/data/processed/85fd305f-83de-70b0-47e8-2dc000000016.json new file mode 100644 index 0000000000000000000000000000000000000000..0ff71aab6c6be6e325e9c5b9b16149189b71fd9c --- /dev/null +++ b/data/processed/85fd305f-83de-70b0-47e8-2dc000000016.json @@ -0,0 +1,1570 @@ +{ + "id": "85fd305f-83de-70b0-47e8-2dc000000016", + "content": "F\u00fcr Verladet\u00e4tigkeiten werden zu derzeitigem Stand beispielgebend der der Technische Bericht [7, 8] von der hessischen Landesanstalt f\u00fcr Umwelt verwendet. Die bisherigen Ver\u00f6ffentlichungen und Untersuchungen in diesem Bereich konzentrieren sich haupt- s\u00e4chlich auf Verbraucherm\u00e4rkte und Verladungen mit Handhubwagen, was nur einen kleinen Teil der tats\u00e4chlich m\u00f6glichen Verladet\u00e4tigkeiten abdeckt. Daher wurde in dieser Arbeit der Fokus auf die Analyse von Verladeger\u00e4uschen bei in- dustriellen Verladevorg\u00e4ngen gelegt, um eine umfassendere Perspektive zu erhalten. Die gew\u00e4hlte Vorgehensweise erm\u00f6glicht eine genaue Untersuchung der Schallemissio- nen und Richtcharakteristik in einem gr\u00f6\u00dferen Anwendungsbereich, f\u00fcr die Verladung mit einem Gabelstapler und einem Gabelhubwagen. Die gewonnenen Erkenntnisse tra- gen dazu bei, ein umfassenderes Verst\u00e4ndnis der L\u00e4rmbelastung bei verschiedenen Ver- ladet\u00e4tigkeiten zu gewinnen. 30\n4 Beschreibung des Betriebs und Untersuchungsobjekte\n\n## 4 Beschreibung des Betriebs und Untersuchungsobjekte\n\nIn diesem Abschnitt erfolgt eine Beschreibung des Betriebs sowie der Untersuchungs- objekte, die Gegenstand dieser Thesis sind. Eine genaue Beschreibung der Umgebung tr\u00e4gt zu einem vollst\u00e4ndigen Verst\u00e4ndnis bei und hilft die Ergebnisse der Untersuchung zu kontextualisieren. Das Ziel dieses Kapitels ist es, ein Verst\u00e4ndnis des Untersuchungs- kontexts zu vermitteln und somit ein umfassendes Verst\u00e4ndnis der Forschungsfragen zu erlangen. ## 4.1 Beschreibung des Betriebs\n\nIm folgenden Abschnitt wird der Betrieb, in dem die Untersuchungen stattfanden, ge- nauer beschrieben. Dabei werden relevante Informationen \u00fcber den Betrieb, die Ar- beitsabl\u00e4ufe und andere wesentliche Aspekte des Betriebs dargelegt. Um die Ge- r\u00e4uschemissionen der verschiedenen Verladevorg\u00e4nge zu ermitteln, wurde die Messung in der Zweigniederlassung des internationalen Transport- und Logistikunternehmen \u201eGebr\u00fcder Weiss GmbH\u201c in der 90 Zeppelinstra\u00dfe, 73730 Esslingen am Neckar durchge- f\u00fchrt. Die Urspr\u00fcnge des Unternehmens reichen weit zur\u00fcck, denn \u201eGebr\u00fcder Weiss\u201c ist das \u00e4lteste Transport- und Logistikunternehmen in \u00d6sterreich mit Hauptsitz in Lauterach, \u00d6sterreich. [68] Die Anf\u00e4nge (1474 bis 1918) nahmen in Fussach am Bodensee ihren Lauf, wo einst im Jahr 1471 die Familie Spehler und Vis (Weiss) im Auftrag der Stadt, Mail\u00e4nder Bote an einer der wichtigsten Transithafen f\u00fcr den Nord- und S\u00fcdhandel be- trieben haben. Im Jahr 1823 ging die Faktorei \u00fcber in den alleinigen Besitz von Josef Weiss, der mit seinen Halbbr\u00fcdern Leonhard und Johann Alois Karl Weiss das Gesch\u00e4ft unter bis heute bekannten Namen \u201eSpedition Gebr\u00fcder Weiss\u201c weiterf\u00fchrte. Von dort aus wuchs das Unternehmen stetig weiter, bis hin zur globalen Expansion im Jahr 1997 bis 2020. [69] Die Hauptgesch\u00e4ftsbereiche umfasst die Landverkehre, Paketdienste, Luft- und Seefracht, sowie Logistik- und Speziall\u00f6sungen. [70] In dem Unternehmen ar-\n31\n4 Beschreibung des Betriebs und Untersuchungsobjekte\nbeiten Stand 2023 rund um 8400 Besch\u00e4ftige an 191 firmeneigene Niederlassungen, Be- triebsst\u00e4tten und Standorte in 431 L\u00e4ndern. Es wurden bereits 15,5 Millionen Sendungen im Landverkehr in 2022 mit Gebr\u00fcder Weiss bereits verwickelt. [71]\nDer Standort in Esslingen am Neckar geh\u00f6rt zu einer der Zweigniederlassungen und be- sch\u00e4ftigt sich haupts\u00e4chlich mit dem Landverkehr. Am Standort befinden sich vier Um- schlaghallen mit insgesamt 153 Verladestationen. Die Messung fand in der Umschlag- halle drei, dem Exportbereich statt. Hierbei wurden spezifisch die Verladevorg\u00e4nge der 8 Verladestationen an der S\u00fcd-West Fassade untersucht, bei welchen haupts\u00e4chlich Be- ladungsvorg\u00e4nge durchgef\u00fchrt werden. Die genauere Beschreibung und Begr\u00fcndung der Wahl des Messortes ist in Kapitel 5.3 aufgezeigt. Die Verladestationen (siehe Abbil- dung 4) bestehen aus einer vertieften Verladestation, einer innenliegenden hydrauli- schen \u00dcberladebr\u00fccke mit Klapplippe und einer Planen-Torrandabdichtung. [IMAGE: - Au]\n\n\n[IMAGE: a -]\n\nAbbildung 4: Verladezone von innen und au\u00dfen\nDie innenliegende hydraulische \u00dcberladebr\u00fccke ist eine wichtige Komponente in Spedi- tionen, da sie den schnellen und sicheren Transport von G\u00fctern zwischen Anh\u00e4nger und\n- 1 in \u00d6sterreich, Deutschland, der Schweiz, Armenien, Australien, Bosnien-Herzegowina, Bulgarien, China, Georgien, Hongkong, Japan, Kanada, Kasachstan, Kroatien, Malaysia, Mazedonien, Montenegro, Neu- seeland, Polen, Rum\u00e4nien, Russische F\u00f6deration, Serbien, Singapur, Slowakei, Slowenien, S\u00fcdkorea, Tschechien, T\u00fcrkei, Ukraine, Ungarn, Usbekistan, Taiwan, USA und Vietnam [71]\n32\n4 Beschreibung des Betriebs und Untersuchungsobjekte\nLagerhalle erm\u00f6glicht.", + "embedding": [ + 0.0071282112039625645, + 0.004021387081593275, + -0.00160300696734339, + -0.03596384450793266, + -0.013711719773709774, + 0.011310991831123829, + -0.01400088332593441, + -0.010631794109940529, + -0.005188127513974905, + -0.035775549709796906, + -0.010362805798649788, + 0.015224783681333065, + -0.03211729973554611, + -0.007793959230184555, + 0.009118731133639812, + 0.0088362917304039, + 0.03682461008429527, + -0.006206923630088568, + 0.010504025034606457, + -0.005867324769496918, + -0.027974866330623627, + -0.008459707722067833, + 0.003977676387876272, + -0.004693859722465277, + -0.02706030383706093, + 0.010134164243936539, + 0.029373610392212868, + -0.0170001108199358, + -0.003261492820456624, + 0.003394306404516101, + -0.016973212361335754, + -0.022352995350956917, + -0.01803571917116642, + 0.005917760543525219, + 0.00394405284896493, + -0.025123583152890205, + -0.005349521059542894, + -0.015103738754987717, + 0.024128323420882225, + -0.015574469231069088, + 0.010288833640515804, + 0.005211663898080587, + 0.009293573908507824, + -0.030395768582820892, + 0.010705766268074512, + 0.01889648474752903, + -0.003345552133396268, + 0.006200199015438557, + -0.020725611597299576, + 0.024047626182436943, + 0.013442730531096458, + 0.01753808930516243, + -0.030072981491684914, + 0.01934031769633293, + -0.0038969796150922775, + -0.0032329128589481115, + -0.009165803901851177, + 0.00872197188436985, + -0.007498071528971195, + -0.023711388930678368, + -0.035775549709796906, + 0.003668338991701603, + -0.03539896756410599, + 0.017242202535271645, + -0.035506561398506165, + -0.00991897378116846, + -0.00892371404916048, + 0.0028933139983564615, + 0.0009557519224472344, + -0.02872803620994091, + 0.0038129205349832773, + 0.027974866330623627, + -0.0009498677682131529, + 0.014229523949325085, + 0.02913152053952217, + -0.019972441717982292, + -0.006129589397460222, + -0.003809558227658272, + -0.0012264222605153918, + 0.008762320503592491, + 0.022258847951889038, + -0.026455078274011612, + -0.036905307322740555, + 0.04427560791373253, + 0.03510307893157005, + 0.014081579633057117, + 0.0009397806716151536, + 0.008163819089531898, + -0.00808984786272049, + -0.00790828000754118, + 0.0008969105547294021, + 0.02532532438635826, + 0.003421205095946789, + 0.011452211067080498, + 0.012669387273490429, + -0.0098584508523345, + -0.010981480590999126, + 0.02746378816664219, + -0.007108037360012531, + -0.03456509858369827, + -0.023711388930678368, + 0.010066917166113853, + -0.015749312937259674, + 0.00024944538017734885, + -0.023617243394255638, + -0.0048687029629945755, + 0.005591610912233591, + 1.4198106327967253e-05, + -1.7560470951138996e-05, + -0.020564217120409012, + -0.013462904840707779, + 0.01916547305881977, + -0.018466101959347725, + -0.002528497716411948, + 0.013577225618064404, + -0.029803993180394173, + 0.026616472750902176, + -0.011586706154048443, + 0.02496218867599964, + -0.02660302259027958, + 0.011600155383348465, + 0.021048396825790405, + 0.016731122508645058, + -0.0031236361246556044, + 0.039810389280319214, + 0.014740603044629097, + -0.0021754493936896324, + 0.003775934688746929, + 0.0032715799752622843, + -0.03556035831570625, + -0.027840372174978256, + 0.00938099529594183, + 0.015507222153246403, + 0.005117517895996571, + -0.005971558392047882, + -0.0020594478119164705, + -0.021868813782930374, + 0.005571437068283558, + -0.018654394894838333, + -0.052721865475177765, + 0.00474765757098794, + 0.0115530826151371, + -0.024262817576527596, + -0.018506450578570366, + -0.006859222427010536, + 0.024478008970618248, + 0.016300739720463753, + 0.02654922567307949, + -0.021949511021375656, + 0.0012600457994267344, + -0.023899681866168976, + -0.02315996214747429, + 0.013476354070007801, + -0.003809558227658272, + 0.005510914139449596, + 0.005157866049557924, + 0.0027705878019332886, + 0.006166575476527214, + -0.01853334903717041, + -0.020241430029273033, + 0.019636204466223717, + 0.01843920350074768, + 0.011317716911435127, + -0.00377257214859128, + 0.015547570772469044, + 0.015601368620991707, + 0.0025116857141256332, + -0.010786463506519794, + -0.004192867781966925, + -0.018909934908151627, + -0.01757843792438507, + 0.010880609042942524, + -0.030368870124220848, + 0.015184435062110424, + -0.028216958045959473, + -0.000933896575588733, + 0.021398084238171577, + 0.001012912136502564, + -0.049843680113554, + -0.04236578568816185, + 0.0011230295058339834, + 0.013496528379619122, + 0.016636976972222328, + 0.008506780490279198, + -0.017551539465785027, + -0.00461988802999258, + 0.02151912823319435, + 0.007780510000884533, + -0.015466873534023762, + -0.008493331260979176, + 0.013947085477411747, + 0.018331607803702354, + -0.0062035610899329185, + 0.0013146842829883099, + -0.6171686053276062, + 0.0028748211916536093, + -0.002817660802975297, + -0.016233492642641068, + -0.006482637487351894, + 0.026952708140015602, + 0.021034948527812958, + 0.0007678798283450305, + -0.0032934353221207857, + 0.04917120933532715, + -0.014189175330102444, + 0.009340646676719189, + 0.000632124429102987, + -0.0077670603059232235, + -0.017874326556921005, + -0.014525411650538445, + -0.033785030245780945, + -0.004263477399945259, + 0.030879950150847435, + 0.004613163415342569, + -0.01572241261601448, + 0.024451110512018204, + 0.00022990163415670395, + -0.0011238701408728957, + 0.023213759064674377, + 0.005736192688345909, + 0.02710065245628357, + -0.022003309801220894, + 0.010725940577685833, + -0.002518410561606288, + -0.017955023795366287, + 0.004808180499821901, + -0.01786087639629841, + 0.027248596772551537, + 0.024491459131240845, + 0.03144482523202896, + -0.02379208616912365, + 0.03781986981630325, + 0.0283245537430048, + 0.01137151475995779, + -0.009407893754541874, + -0.023953480646014214, + -0.012750083580613136, + -0.008056223392486572, + 0.007424099370837212, + 0.0065431599505245686, + 0.041343625634908676, + 0.007780510000884533, + -0.007000441662967205, + -0.020241430029273033, + 0.009925697930157185, + 0.002590701449662447, + 0.009905523620545864, + 0.0011305948719382286, + 0.03483409062027931, + 0.003789384150877595, + 0.02084665559232235, + -0.017417045310139656, + -0.01318719144910574, + 0.02216470241546631, + 0.007363576907664537, + 0.035452764481306076, + 0.003041258081793785, + -0.03529137000441551, + -0.040267668664455414, + 0.028109362348914146, + -0.027921069413423538, + -0.04050976037979126, + 0.023899681866168976, + -0.002044317312538624, + -0.008795944042503834, + 0.02216470241546631, + -0.02283717505633831, + -0.011102525517344475, + 0.02446455880999565, + 0.012501268647611141, + 0.012850954197347164, + 0.0016786601627245545, + 0.01230625156313181, + 0.035775549709796906, + 0.0012516399146988988, + -0.009851725772023201, + -0.005514276679605246, + -0.005130967125296593, + 0.03211729973554611, + -0.010591446422040462, + -0.023778637871146202, + -0.002479743445292115, + -0.0017854152247309685, + -0.003933965694159269, + 0.022151252254843712, + 0.03991798311471939, + -0.012595415115356445, + -0.005729468073695898, + 0.007007166277617216, + 0.03157931938767433, + -0.0040919966995716095, + 0.029400508850812912, + -0.0007796481368131936, + -0.020093485713005066, + -0.015332379378378391, + -0.007646015379577875, + 0.008614376187324524, + -0.014323670417070389, + 0.021761218085885048, + 0.030207477509975433, + -0.01650248095393181, + 0.012104509398341179, + 0.0183585062623024, + -0.025715358555316925, + 0.013106494210660458, + -0.002689891029149294, + -0.010678867809474468, + 0.00854040402919054, + -0.015318929217755795, + -0.031202737241983414, + 0.03507617861032486, + -0.0015458468114957213, + 0.012064161710441113, + -0.018883034586906433, + 0.015883807092905045, + 0.006368317175656557, + 0.01979759894311428, + -0.009253225289285183, + -0.015507222153246403, + 0.04085944592952728, + 0.011411862447857857, + -0.013684820383787155, + -0.011727925390005112, + -0.0061968364752829075, + 0.016838718205690384, + 0.008695072494447231, + 0.02541946992278099, + -0.020133834332227707, + 0.03098754584789276, + 0.01857369765639305, + 0.04341484233736992, + 0.0006800380651839077, + 0.011438761837780476, + -0.04357623681426048, + -0.03281667083501816, + -0.023038916289806366, + 0.02293132059276104, + -0.022191600874066353, + -0.02488149330019951, + -0.04500187933444977, + -0.006358230020850897, + 0.013631023466587067, + -0.005228475667536259, + 0.005457116290926933, + -0.021989859640598297, + -0.016367986798286438, + -0.004004575312137604, + 0.012373498640954494, + -0.0030631134286522865, + -0.0032379564363509417, + -0.028082462027668953, + -0.0010566228302195668, + -0.004256752785295248, + -0.012413847260177135, + 0.0031606219708919525, + 0.014686805196106434, + -0.044921182096004486, + -0.0012205380480736494, + -0.025069784373044968, + -0.018224012106657028, + 0.021182892844080925, + -0.010087091475725174, + -0.026724068447947502, + -0.04766486957669258, + 0.0012482776073738933, + -0.015103738754987717, + -0.019326867535710335, + 0.01983794756233692, + -0.01685216836631298, + 0.0009372589411213994, + -0.015413075685501099, + -0.012312976643443108, + -0.006284257862716913, + -0.016098998486995697, + 0.010026568546891212, + 0.02718134969472885, + -0.020779408514499664, + -0.015413075685501099, + 0.020187633112072945, + 0.001916547422297299, + 0.010625069960951805, + 0.006021993700414896, + -0.01943446323275566, + 0.02188226394355297, + -0.012333150953054428, + 0.030610959976911545, + -0.0041390699334442616, + 0.009387719444930553, + -0.03784676641225815, + 0.014202624559402466, + 0.00901785958558321, + 0.01549377292394638, + -0.0008843016694299877, + 0.005147778894752264, + 0.032332491129636765, + 0.0036952379159629345, + 0.029427409172058105, + -0.008647999726235867, + 0.009488590992987156, + -0.004734208341687918, + 0.02455870620906353, + -0.00015393321518786252, + 0.06810804456472397, + 0.005433579906821251, + 0.022312646731734276, + -0.008775769732892513, + -0.035452764481306076, + 0.00016790804511401802, + 0.0002824385592248291, + 0.037900567054748535, + -0.005322622135281563, + 0.011438761837780476, + 0.007699813228100538, + -0.005480653140693903, + 0.002372147748246789, + 0.0012877853587269783, + 0.02727549523115158, + 0.014269872568547726, + -0.018546799197793007, + -0.02080630697309971, + 0.006338055711239576, + 0.0170001108199358, + -0.005658858455717564, + -0.010322457179427147, + -0.020456621423363686, + -0.0015592962736263871, + -0.01667732372879982, + 0.013738618232309818, + 0.008305038325488567, + 0.009623085148632526, + 0.019273068755865097, + 0.001186914392746985, + 0.026078494265675545, + 0.018385404720902443, + 0.02346929907798767, + 0.030288172885775566, + 0.018277809023857117, + -0.017336348071694374, + 0.012407122179865837, + -0.00936082098633051, + 0.02178811840713024, + 0.019474811851978302, + -0.015977952629327774, + -0.01051074918359518, + 0.003991126082837582, + -0.0012222192017361522, + -0.00969705730676651, + -0.017322897911071777, + 0.008136920630931854, + -0.021546026691794395, + 0.02926601469516754, + -0.0010204773861914873, + 0.012017088010907173, + 0.004623250104486942, + 0.015856908634305, + 0.020039688795804977, + 0.01784742809832096, + -0.008984236046671867, + 0.010450227186083794, + -0.0020493606571108103, + -0.025002537295222282, + -0.0004308028728701174, + -0.013180466368794441, + -0.0028680963441729546, + 0.001456744153983891, + 0.0039474149234592915, + -0.006250634323805571, + 0.000350736576365307, + 0.022944770753383636, + 0.00833866186439991, + 0.004115533549338579, + 0.008661448955535889, + 0.0134830791503191, + 0.011835521087050438, + -0.006163212936371565, + -0.021626723930239677, + -0.015695514157414436, + 0.024007277563214302, + -0.012467645108699799, + -0.002341886516660452, + -0.01352342776954174, + 0.0367170125246048, + -0.03012678027153015, + -0.001751791569404304, + -0.01085371058434248, + -0.007699813228100538, + -0.02008003741502762, + 0.0006464144680649042, + 0.013866388238966465, + 0.011875868774950504, + 0.042796168476343155, + 0.004935950040817261, + -0.020900454372167587, + 0.0030933746602386236, + -0.005171315744519234, + -0.03453820198774338, + -0.012043987400829792, + -0.020873554050922394, + 0.032144200056791306, + -0.009979495778679848, + -0.0039003421552479267, + -0.0023570170160382986, + 0.015655165538191795, + -0.026993056759238243, + -0.013382208533585072, + 0.016596628352999687, + -0.01712115667760372, + 0.016381436958909035, + -0.007161835208535194, + -0.010752839967608452, + 0.016744572669267654, + 0.00541340559720993, + 0.03779296949505806, + 0.013947085477411747, + -0.004475306253880262, + -0.0262802354991436, + -0.013032522052526474, + 0.021061846986413002, + 0.036232832819223404, + 0.03878822922706604, + -0.010268659330904484, + 0.03381193056702614, + 0.0028126174584031105, + -0.01685216836631298, + 0.0062943450175225735, + -0.03496858477592468, + 0.022326095029711723, + 0.023576894775032997, + -0.007948627695441246, + -0.008029324933886528, + 0.03297806531190872, + -0.0062035610899329185, + 0.0012970318784937263, + -0.007874656468629837, + 0.004660236183553934, + 0.0021754493936896324, + 0.029346711933612823, + -0.00043542610364966094, + -0.0077670603059232235, + -0.01098820473998785, + -0.028970126062631607, + 0.03085304982960224, + 0.02346929907798767, + -0.02415522187948227, + 0.013960534706711769, + 0.02320031076669693, + 0.0003719615051522851, + -0.02465285174548626, + -0.008096572011709213, + 0.017955023795366287, + 0.011707751080393791, + 0.022621983662247658, + -0.02342895045876503, + -0.01595105417072773, + -0.00369860022328794, + 0.007531695067882538, + 0.012407122179865837, + 0.006126226857304573, + 0.015184435062110424, + 0.019044429063796997, + 0.007733436767011881, + -0.015359277836978436, + 0.0022157977800816298, + 0.0052587371319532394, + 0.022554736584424973, + 0.018089517951011658, + -0.002125013852491975, + -0.008708522655069828, + 0.024800796061754227, + -0.030933747068047523, + -0.008298314176499844, + -0.01105545274913311, + 0.012272628024220467, + -0.022218501195311546, + -0.007390475831925869, + 0.005352883134037256, + 0.0031656655482947826, + -0.012353324331343174, + -0.013173741288483143, + -0.022769927978515625, + 0.025661561638116837, + -0.015144086442887783, + -0.02237989380955696, + -0.007693088613450527, + -0.03440370783209801, + -0.006005181930959225, + -0.02805556356906891, + -0.009649984538555145, + -0.010255210101604462, + -0.004273564554750919, + -0.02297166921198368, + -0.0052587371319532394, + 0.027262046933174133, + -0.016973212361335754, + 0.015359277836978436, + -0.016596628352999687, + 0.0063346936367452145, + 0.011317716911435127, + -0.03375813364982605, + -0.010006395168602467, + -0.009468416683375835, + -0.0262802354991436, + -0.010584721341729164, + 0.00575636699795723, + -0.006149763241410255, + -0.006132951471954584, + -0.006375041790306568, + 0.005998457316309214, + 0.0044315955601632595, + 0.002402408979833126, + -0.0027167899534106255, + -0.00445176986977458, + 0.019864846020936966, + 0.01939411461353302, + 0.012830780819058418, + 0.0016576453344896436, + 0.0056554959155619144, + -0.019636204466223717, + 0.007585492916405201, + -0.00856057833880186, + 0.0022477402817457914, + -0.01463300734758377, + 0.013079595752060413, + 0.008910263888537884, + -0.027087202295660973, + -0.0010053467703983188, + 0.0007796481368131936, + 0.03330085054039955, + 0.012319700792431831, + -0.001988838193938136, + -0.007148385513573885, + -0.0009977815207093954, + -0.027947967872023582, + 0.01979759894311428, + -0.010167788714170456, + 0.025930549949407578, + 0.036232832819223404, + -0.012810606509447098, + -0.001410511671565473, + -0.020133834332227707, + 0.026266787201166153, + 0.0003568308602552861, + -0.0069331941194832325, + 0.040536656975746155, + -0.020039688795804977, + 0.00188628607429564, + -0.035775549709796906, + 0.00491577573120594, + 0.010544372722506523, + 0.01698666252195835, + -0.01098820473998785, + -0.014525411650538445, + -0.01934031769633293, + -0.01604519970715046, + 0.012454195879399776, + 0.001277698203921318, + -0.012077610939741135, + -0.02369794063270092, + -0.030557163059711456, + 0.01198346447199583, + -0.01690596528351307, + -0.0037490357644855976, + 0.007242531515657902, + -0.02767897956073284, + -0.014982692897319794, + 0.028647340834140778, + -0.021061846986413002, + 0.0283245537430048, + -0.012104509398341179, + -0.006825598422437906, + -0.005225113593041897, + -0.006553247105330229, + -0.015507222153246403, + -0.037093598395586014, + 0.01515753660351038, + -0.021451881155371666, + 0.020362475886940956, + 0.01065196841955185, + 0.028808733448386192, + -0.007007166277617216, + 0.0181298665702343, + -0.0009750855388119817, + -0.0020409547723829746, + 0.003382537979632616, + -0.01862749643623829, + -0.01849300041794777, + -0.025217728689312935, + 0.02872803620994091, + 0.020496970042586327, + 0.0031354043167084455, + 0.005588248837739229, + 0.019824497401714325, + 0.0033186532091349363, + 0.03486098721623421, + -0.015547570772469044, + -0.003503583138808608, + -0.010288833640515804, + -0.020012790337204933, + -0.0005199055303819478, + -0.00033812772016972303, + 0.010584721341729164, + -0.005463841371238232, + -0.039487600326538086, + 0.0015685426769778132, + 0.02587675303220749, + -0.02065836265683174, + -0.012339875102043152, + -0.013180466368794441, + 0.005823614075779915, + -0.05831683799624443, + 0.013973983936011791, + 0.01948826014995575, + -0.025944000110030174, + 0.007854482159018517, + 0.001006187405437231, + -0.025728808715939522, + -0.025755707174539566, + 0.03800816088914871, + 0.0105376485735178, + -0.011290817521512508, + -0.012817330658435822, + -0.03521067276597023, + -0.008257965557277203, + -0.013604124076664448, + 0.025446370244026184, + -0.005457116290926933, + -0.0027655442245304585, + -0.015265132300555706, + -0.03136413171887398, + -0.02406107634305954, + -0.00949531514197588, + -0.01581656001508236, + 0.03515687584877014, + 0.01268956158310175, + 0.023496199399232864, + 0.022406792268157005, + -0.01264248788356781, + -0.0015996445436030626, + -0.0008099093683995306, + -0.008647999726235867, + 0.013725169003009796, + 0.02446455880999565, + 0.04586264118552208, + 0.013671371154487133, + -0.02329445630311966, + -0.013409106992185116, + -0.04704619571566582, + 0.008143644779920578, + -0.003570830449461937, + 0.02092735283076763, + 0.005110792815685272, + -0.0278672706335783, + -0.012877853587269783, + 0.007780510000884533, + 0.011068901978433132, + 0.0013886563247069716, + -0.013879838399589062, + 0.04562055319547653, + 0.015641717240214348, + -0.002925256500020623, + -0.012239004485309124, + 0.010147614404559135, + -0.006428839638829231, + 0.007484621834009886, + -0.002499917522072792, + -0.0029487931169569492, + -0.00956256315112114, + -0.0064860000275075436, + -0.0024629314430058002, + 0.05194179713726044, + -0.007498071528971195, + 0.027087202295660973, + 0.004650149028748274, + -0.03456509858369827, + -0.006842410191893578, + -0.009959321469068527, + -0.0076123918406665325, + 0.010577996261417866, + -0.030530264601111412, + 0.02324065938591957, + -0.012783707119524479, + -0.015883807092905045, + -0.0005106590106151998, + 0.007289604749530554, + -0.02714100107550621, + -0.01017451286315918, + -0.0009574330761097372, + 0.020765958353877068, + -0.002061129081994295, + -0.011129423975944519, + 0.011855694465339184, + 0.0036347152199596167, + 0.007625841069966555, + -0.009623085148632526, + 0.017417045310139656, + 0.005863962695002556, + 0.005020009353756905, + -0.0064322021789848804, + -0.009623085148632526, + 0.013711719773709774, + -0.015735862776637077, + -0.019811047241091728, + -0.007054239511489868, + -0.018694743514060974, + -0.003984401002526283, + -0.03200970217585564, + -0.00445176986977458, + -0.028163159266114235, + -0.024262817576527596, + 0.0051679532043635845, + -0.004801455419510603, + 0.02029522880911827, + 0.0028748211916536093, + -0.019313417375087738, + -0.010268659330904484, + 0.04527086764574051, + -0.039218612015247345, + 0.008533679880201817, + 0.00999294500797987, + -0.015695514157414436, + -0.01085371058434248, + 0.016798369586467743, + 0.011606879532337189, + -0.016327638179063797, + 0.03136413171887398, + -0.0075653186067938805, + -0.014256422407925129, + -0.007511520758271217, + 0.0009196065366268158, + 0.013415832072496414, + -0.008769044652581215, + 0.00046610768185928464, + 0.012635763734579086, + -0.0019619392696768045, + 0.010867159813642502, + -0.009966046549379826, + -0.0008616057457402349, + 0.013355309143662453, + 0.0013701632851734757, + 0.002056085504591465, + 0.013906736858189106, + -0.030664758756756783, + 0.01866784319281578, + 0.023052366450428963, + -0.012555066496133804, + -0.009461691603064537, + -0.033058762550354004, + -0.0321710966527462, + 0.0005299926269799471, + 0.0003839399141725153, + -0.020147284492850304, + 0.0010969712166115642, + -0.007901554927229881, + -0.028216958045959473, + -0.01465990673750639, + -0.0024427573662251234, + 0.007074413355439901, + -0.004397972021251917, + 0.008197442628443241, + -0.009091831743717194, + 0.005884136538952589, + 0.030288172885775566, + 0.0011793491430580616, + -0.003718774300068617, + 0.02601124718785286, + 0.0014441353268921375, + -0.037174295634031296, + 0.011539632454514503, + -0.02683166414499283, + 0.033462245017290115, + 0.01558791846036911, + -0.02180156670510769, + 0.004169330932199955, + -0.0038768055383116007, + -0.030691657215356827, + 0.011559806764125824, + 0.0013180465903133154, + 0.0005468043964356184, + -0.0031404478941112757, + 0.01595105417072773, + -0.003863356076180935, + 0.02691235952079296, + 0.0032278692815452814, + 0.02958880178630352, + -0.0040919966995716095, + -0.005554625298827887, + 0.010994929820299149, + -0.005537813063710928, + 0.017618786543607712, + -0.004983023274689913, + -0.052264582365751266, + -0.0035607432946562767, + 0.022460591048002243, + 0.01983794756233692, + 0.012043987400829792, + 0.03800816088914871, + 0.011896043084561825, + -0.017228752374649048, + -0.004176056012511253, + 0.010773013345897198, + -0.003907066769897938, + -0.011082351207733154, + 0.015144086442887783, + -0.03155242279171944, + -0.01644868403673172, + 0.022366443648934364, + 0.03209039941430092, + -0.012669387273490429, + -0.005675670225173235, + 0.001405468094162643, + 0.005164590664207935, + 0.004243303090333939, + 0.023765187710523605, + -0.007706537842750549, + 0.004071822389960289, + -0.009058208204805851, + 0.02021453157067299, + 0.019555507227778435, + -0.013382208533585072, + 0.009118731133639812, + 0.010645244270563126, + -0.0054369424469769, + -0.03136413171887398, + 0.00412225816398859, + -0.03408091887831688, + 0.009804653003811836, + 0.004841804038733244, + -0.026925809681415558, + 0.022500939667224884, + -0.018102966248989105, + 0.012884578667581081, + -0.0014878460206091404, + 0.002439395058900118, + -0.013308236375451088, + -0.009609635919332504, + -0.033785030245780945, + 0.034591998904943466, + 0.0013298148987814784, + -0.026562673971056938, + 0.002158637624233961, + 0.0003791065246332437, + 0.002962242579087615, + 0.0002181333547923714, + -0.01713460683822632, + -0.00445176986977458, + -0.03222489356994629, + -0.012447470799088478, + 0.006385128945112228, + -0.01409502886235714, + -0.0025957447942346334, + 0.0006657480262219906, + -0.017753280699253082, + -0.038223352283239365, + -0.018560247495770454, + 0.19722281396389008, + -0.023805536329746246, + -0.002592382486909628, + 0.00032278691651299596, + -0.027921069413423538, + -0.026616472750902176, + 0.02142498269677162, + -0.012736634351313114, + 0.012312976643443108, + 0.02646852843463421, + 0.020402824506163597, + 0.003718774300068617, + -0.00674153957515955, + 0.014377467334270477, + 0.0063414182513952255, + -0.0219764094799757, + -0.03421541303396225, + -0.006469188258051872, + -0.0024309891741722822, + 0.03249388560652733, + 0.025769157335162163, + -0.038411643356084824, + -0.0048283543437719345, + -0.02346929907798767, + 0.030826151371002197, + 0.0005543697625398636, + -0.012817330658435822, + 0.007504796143621206, + 0.028028665110468864, + 0.014269872568547726, + -0.024706648662686348, + 0.02442421019077301, + 0.008849741891026497, + -0.013153566978871822, + 0.00019564754620660096, + 0.005366332828998566, + 0.003152216086164117, + -0.007646015379577875, + 0.020402824506163597, + 0.02151912823319435, + -0.0015702239470556378, + -0.018600596114993095, + -0.0004158823867328465, + -0.010705766268074512, + -0.014471613802015781, + 0.006818873807787895, + 0.0011280730832368135, + 0.01599140278995037, + 0.01137151475995779, + -0.009112006053328514, + -0.026858562603592873, + 0.006193474400788546, + 0.007780510000884533, + 0.03316635638475418, + 0.0030580698512494564, + -0.0024545255582779646, + 0.0023317993618547916, + -0.0008582433802075684, + 0.014269872568547726, + -0.004206317011266947, + -0.03765847533941269, + 0.0075720432214438915, + -0.003377494402229786, + 0.00544702960178256, + -0.017242202535271645, + 0.010880609042942524, + -0.011317716911435127, + -0.015170985832810402, + 0.012131408788263798, + -0.018143314868211746, + 0.007760335691273212, + -0.02570190839469433, + -0.034780289977788925, + 0.0013583949767053127, + -0.02767897956073284, + -0.02905082330107689, + 0.0071752844378352165, + -0.014242973178625107, + 0.029023924842476845, + 0.02228574827313423, + -0.0017349797999486327, + 0.0052654617466032505, + -0.012682836502790451, + -0.01749774068593979, + 0.0025638025254011154, + -0.006035442929714918, + 0.021774668246507645, + 0.017053909599781036, + 0.006348142866045237, + -0.033193256705999374, + -0.029346711933612823, + 0.005319259595125914, + 0.014175726100802422, + -0.006714640650898218, + 0.0021754493936896324, + 0.005803439766168594, + 0.022003309801220894, + -0.00017127041064668447, + -0.007693088613450527, + -0.0181298665702343, + -0.040213871747255325, + 0.05541175603866577, + 0.03238628804683685, + -0.010746114887297153, + -0.003863356076180935, + 0.0018173576099798083, + 0.009004410356283188, + 0.023980379104614258, + -0.009569287300109863, + -0.008163819089531898, + 0.014256422407925129, + -0.033596739172935486, + 0.006344780791550875, + -0.021196341142058372, + 0.01515753660351038, + 0.0006069066585041583, + 0.0006228779093362391, + -0.006563334260135889, + 0.021909162402153015, + -0.0015408032340928912, + -0.010994929820299149, + 0.005423492752015591, + 0.01650248095393181, + -0.007108037360012531, + -0.005961471237242222, + -0.03830404952168465, + -0.02061801590025425, + 0.02886253036558628, + -0.008910263888537884, + -0.005050270352512598, + 0.011761548928916454, + -0.0021519127767533064, + 0.019824497401714325, + -0.008614376187324524, + 0.008822842501103878, + -0.006586870644241571, + -0.029696397483348846, + -0.03139102831482887, + -0.024128323420882225, + 0.013530151918530464, + 0.01847955211997032, + 0.006085878703743219, + 0.0019367216154932976, + -0.005457116290926933, + 0.006005181930959225, + -0.001433207537047565, + 0.01302579790353775, + 0.004028111696243286, + -0.02759828232228756, + -0.03281667083501816, + -0.009582736529409885, + -0.001861068420112133, + 0.00230490043759346, + -0.03566795587539673, + 0.020698711276054382, + 0.01826436072587967, + -0.023711388930678368, + -0.018883034586906433, + 0.025177380070090294, + 0.0071282112039625645, + -0.029938487336039543, + -0.009071657434105873, + 0.010732665657997131, + -0.007356852293014526, + 0.0016710947966203094, + 0.004381160251796246, + -0.17075428366661072, + 0.005863962695002556, + 0.011902768164873123, + -0.02102149836719036, + 0.020456621423363686, + -0.0016895878361538053, + 0.005457116290926933, + 0.022191600874066353, + -0.017148055136203766, + -0.008318488486111164, + 0.026724068447947502, + 0.001396221574395895, + -0.03959519788622856, + -0.011163047514855862, + -0.02415522187948227, + -0.012360049411654472, + -0.0167714711278677, + 0.016246942803263664, + 0.03515687584877014, + -0.0030866500455886126, + 0.012158307246863842, + -0.005379782058298588, + 0.004276926629245281, + 0.007874656468629837, + 0.004108808469027281, + 0.023038916289806366, + -0.023671042174100876, + 0.03469959646463394, + -0.012911477126181126, + -0.019811047241091728, + 0.00049258628860116, + 0.007518245372921228, + 0.01979759894311428, + -0.004798093345016241, + -0.017417045310139656, + 0.0017021966632455587, + -0.0055647119879722595, + 0.01784742809832096, + 0.001365960342809558, + 0.02759828232228756, + 0.015749312937259674, + 0.020187633112072945, + -0.017161505296826363, + 0.0008149529458023608, + 0.0017332985298708081, + 0.020375924184918404, + 0.027652081102132797, + -0.011761548928916454, + -0.003024446312338114, + -0.02551361732184887, + -0.006825598422437906, + -0.01568206585943699, + -0.015977952629327774, + 0.03225179389119148, + -0.005816889461129904, + 0.01627384126186371, + 0.007134936284273863, + 0.017914675176143646, + -0.008769044652581215, + 0.009347371757030487, + -0.009939147159457207, + -0.014686805196106434, + 0.002341886516660452, + -0.0028580091893672943, + -0.021236689761281013, + -0.02071216143667698, + 0.0013399019371718168, + -0.001946808653883636, + -0.0003780557890422642, + -0.002767225494608283, + 0.0017181679140776396, + -0.006529710721224546, + -0.0014517005765810609, + -0.0014895271742716432, + 0.02092735283076763, + 0.019676553085446358, + 0.01065196841955185, + -0.0004951080773025751, + 0.011660677380859852, + -0.009414618834853172, + -0.02360379509627819, + 0.042984459549188614, + -0.004256752785295248, + -0.022218501195311546, + 0.00312699843198061, + 0.0034464229829609394, + -0.007800684310495853, + 0.01617969572544098, + 0.0038667183835059404, + 0.002446119673550129, + 0.022487489506602287, + -0.029830891638994217, + -0.010820087045431137, + -0.02732929401099682, + 0.009737405925989151, + -0.0026243249885737896, + 0.008284864947199821, + 0.0005720221670344472, + -0.0002349451679037884, + -0.009105280973017216, + -0.004693859722465277, + -0.00949531514197588, + -0.02918531745672226, + 0.013274612836539745, + 0.002617600141093135, + 0.013920186087489128, + -0.027894170954823494, + 0.03225179389119148, + 0.057294681668281555, + -0.01712115667760372, + 0.0004003314534202218, + -5.022530967835337e-05, + 0.015964504331350327, + 0.03472649306058884, + 0.019811047241091728, + 0.021129094064235687, + -0.0014903678093105555, + -0.024814244359731674, + 0.019555507227778435, + 0.008641274645924568, + 0.04263477399945259, + -0.011774998158216476, + -0.016879066824913025, + 0.008668174035847187, + -0.007666189689189196, + -0.02352309785783291, + -0.09210187196731567, + 0.0007098790374584496, + 0.02188226394355297, + 0.00592448515817523, + 0.009885349310934544, + 0.018277809023857117, + 0.0006930672680027783, + 0.022998569533228874, + 0.0115530826151371, + 0.028970126062631607, + -0.03416161611676216, + -0.008843016810715199, + -0.010248485021293163, + -0.015964504331350327, + 0.03838474676012993, + -0.001953533384948969, + 0.01151273399591446, + -0.0023385239765048027, + -0.019326867535710335, + 0.02891632914543152, + -0.0016803413163870573, + 0.015170985832810402, + -0.004616525489836931, + -0.01409502886235714, + -0.016556279733777046, + -0.01640833541750908, + -0.04777246713638306, + 0.019770698621869087, + 0.026455078274011612, + -0.012474370189011097, + 0.018963731825351715, + -0.030072981491684914, + 0.004848528653383255, + -0.018694743514060974, + 0.009871900081634521, + 0.010477125644683838, + -0.01463300734758377, + 0.00641202786937356, + 0.040402162820100784, + -0.02306581661105156, + 0.00524528743699193, + 0.002841197419911623, + 0.0079284543171525, + -0.03295116499066353, + 0.005490740295499563, + -0.02597089856863022, + -0.0026058319490402937, + 0.010302282869815826, + 0.0015197884058579803, + 0.000991897308267653, + -0.011310991831123829, + -0.021828465163707733, + -0.013382208533585072, + 0.004360985942184925, + 0.030019184574484825, + 0.0001294510147999972, + 0.005675670225173235, + -0.0007048355182632804, + -0.01345617976039648, + -0.010053467936813831, + -0.022218501195311546, + 0.01916547305881977, + -0.02710065245628357, + 0.02555396594107151, + 0.0010196368675678968, + -0.009885349310934544, + -0.020765958353877068, + -0.015009592287242413, + 0.011216845363378525, + 0.0010070279240608215, + -0.038357846438884735, + 0.0108738848939538, + -0.005379782058298588, + 0.0027705878019332886, + -0.03018057718873024, + -0.014364018104970455, + -0.04564744979143143, + -0.014471613802015781, + 0.012797156348824501, + -0.0004366869980003685, + -0.02337515354156494, + -0.03292426839470863, + 0.013288062065839767, + -0.025903651490807533, + 0.038895826786756516, + 0.019004080444574356, + -0.0038835301529616117, + -0.024585604667663574, + 0.027087202295660973, + -0.014565760269761086, + 0.0010120715014636517, + 0.025298425927758217, + 0.02442421019077301, + -0.026226438581943512, + -0.006556609645485878, + 0.009690332226455212, + -0.006886121351271868, + 0.000845634494908154, + 0.0016811819514259696, + 0.012279353104531765, + -0.017282549291849136, + -0.02002623863518238, + -0.05885481834411621, + 0.01826436072587967, + 0.026670269668102264, + -0.009024584665894508, + -0.014780951663851738, + -0.00870179757475853, + 0.0029303000774234533, + 0.009636534377932549, + 0.019878294318914413, + 0.023092715069651604, + -0.0072492565959692, + 0.018385404720902443, + 0.002397365402430296, + -0.02002623863518238, + -0.00969705730676651, + -0.03798126056790352, + 0.0021367822773754597, + 0.010678867809474468, + 0.012911477126181126, + 0.011479110457003117, + -0.001433207537047565, + 0.0038969796150922775, + 0.015870356932282448, + 0.034457504749298096, + -0.030691657215356827, + -0.002530178753659129, + -0.005292360670864582, + -0.011210121214389801, + -0.0038532689213752747, + -0.009105280973017216, + 0.013240988366305828, + -0.012292802333831787, + -0.0020779408514499664, + 0.008977511897683144, + -0.02021453157067299, + -0.01182879600673914, + 0.008029324933886528, + 0.026266787201166153, + 0.040940143167972565, + 0.053528834134340286, + -0.01393363531678915, + -0.03905721753835678, + 0.01558791846036911, + -0.027974866330623627, + -0.01250799372792244, + 0.007935178466141224, + 0.03905721753835678, + -0.008863191120326519, + 0.01032918132841587, + -0.010349355638027191, + 0.030207477509975433, + 0.024989088997244835, + 0.004629975184798241, + -0.02410142309963703, + 0.009892074391245842, + 0.012588690035045147, + 0.01162705384194851, + 0.01098820473998785, + 0.014054681174457073, + -0.020671812817454338, + 0.039810389280319214, + -0.004740932956337929, + 0.02084665559232235, + -0.006089240778237581, + 0.0167714711278677, + -0.023348255082964897, + -0.021586375311017036, + -0.0188023392111063, + -0.006832323502749205, + -0.012003638781607151, + -0.004414783790707588, + -0.013920186087489128, + 0.021855365484952927, + 0.031875208020210266, + -0.011546357534825802, + -0.018237462267279625, + 0.007484621834009886, + 0.02057766728103161, + -0.01379914116114378, + 0.007424099370837212, + 0.015830008313059807, + 0.008634550496935844, + -0.0012222192017361522, + 0.003691875608637929, + 0.04013317450881004, + -0.0010179555974900723, + -0.0098584508523345, + 0.019999340176582336, + 0.003182477317750454, + 0.003678426146507263, + -0.005194852128624916, + 0.0289970263838768, + -0.0011978420661762357, + 0.012091060169041157, + 0.0008347068214789033, + 0.016556279733777046, + -0.005033458583056927, + -0.019690003246068954, + 0.05971558019518852, + 0.02773277647793293, + -0.0008885046700015664, + 0.021720871329307556, + -0.005880774464458227, + -0.02591709978878498, + -0.02301201783120632, + 0.01681181974709034, + -0.006442289333790541, + -0.018318157643079758, + 0.0026125567965209484, + 0.02840524911880493, + -0.0035641056019812822, + -0.008735421113669872, + -0.011142874136567116, + 0.008163819089531898, + -0.012615589424967766, + 1.673301449045539e-05, + -0.021922612562775612, + -0.01979759894311428, + -0.023186860606074333, + 0.037631575018167496, + 0.01975725032389164, + 0.013671371154487133, + 0.014740603044629097, + 0.0012281034141778946, + 0.010113990865647793, + -0.005517639219760895, + 0.014901996590197086, + -0.012494544498622417, + 0.0024982362519949675, + -0.004946037195622921, + 0.018506450578570366, + -0.009004410356283188, + -0.016287289559841156, + -0.011479110457003117, + -0.006280895788222551, + 0.0002921053674072027, + 0.014888547360897064, + -0.0008405909757129848, + 0.019326867535710335, + 0.12760843336582184, + 0.024276267737150192, + -0.029481206089258194, + 0.019690003246068954, + -0.0022124354727566242, + -0.004414783790707588, + 0.018735092133283615, + 0.0026192814111709595, + -0.010430052876472473, + -0.03695910423994064, + 0.017470842227339745, + -0.010087091475725174, + 0.020416272804141045, + -0.0339733250439167, + -0.007639290764927864, + 0.00940116960555315, + -0.015184435062110424, + 0.017645685002207756, + -0.02025488018989563, + -0.006327968556433916, + 0.02138463407754898, + -0.02346929907798767, + 0.021895714104175568, + 0.02853974513709545, + -0.019232721999287605, + -0.014552311040461063, + 0.02297166921198368, + -0.01843920350074768, + -0.00704751443117857, + -0.017242202535271645, + -0.0022527838591486216, + 0.006607044953852892, + -0.05907000973820686, + -0.032735973596572876, + 0.031068241223692894, + -0.026360932737588882, + 0.004381160251796246, + -0.013146842829883099, + 0.017887774854898453, + 0.00278739957138896, + -0.0026982969138771296, + 0.02243369072675705, + 0.013402381911873817, + -0.026952708140015602, + 7.281619036803022e-05, + 0.0015374408103525639, + -0.0006216170149855316, + -0.002659629797562957, + -0.017148055136203766 + ], + "metadata": { + "source": "Thesis_Verladegeraeusche_in_Speditionen.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 41, + "has_images": true, + "image_count": 51, + "coordinates": "CoordinatesMetadata(points=((204.16666666666666, 189.02777777777797), (204.16666666666666, 642.3611111111111), (936.1666666666666, 642.3611111111111), (936.1666666666666, 189.02777777777797)), system=)", + "links": [], + "last_modified": "2025-05-05T22:59:16", + "_known_field_names": "frozenset({'cc_recipient', 'link_texts', 'url', 'filetype', 'category_depth', 'page_number', 'filename', 'orig_elements', 'detection_origin', 'email_message_id', 'page_name', 'coordinates', 'table_as_cells', 'link_start_indexes', 'sent_to', 'bcc_recipient', 'languages', 'last_modified', 'link_urls', 'file_directory', 'subject', 'data_source', 'detection_class_prob', 'image_base64', 'text_as_html', 'attached_to_filename', 'key_value_pairs', 'signature', 'sent_from', 'header_footer_type', 'parent_id', 'links', 'emphasized_text_contents', 'emphasized_text_tags', 'image_mime_type', 'is_continuation', 'image_path'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "Thesis_Verladegeraeusche_in_Speditionen.pdf", + "detection_class_prob": 0.2568194270133972, + "parent_id": "d45475a34bc527cde6987546fa6dd2f5", + "text_as_html": "
Flurf\u00f6rderger\u00e4t |Anzahl Einzelereignisse ElMax-PegelSchallleistungspegel
LAFmaxLWA,5sLWAmaxLWA,1hKlLWAT,1h
[dB(A)][dB(A)][dB(A)][dB(A)][dB(A)][dB(A)]
Gabelstapler29769,3100,7108,872,15,777,8
STABW [dB]6,54,96,54,92,9-
Gabelhubwagen9968,6100,7108,172,16,279,5
STABW [dB]6,45,16,4512,7-
", + "id": "5ba44de7-0ff3-4c0c-b018-67e92171e1c2", + "processing_timestamp": "2025-05-06T14:18:19.298665", + "chunk_number": 16, + "total_chunks": 49, + "chunking_strategy": "hybrid", + "word_count": 617 + } +} \ No newline at end of file diff --git a/data/processed/85fd305f-83de-70b0-47e8-2dc000000017.json b/data/processed/85fd305f-83de-70b0-47e8-2dc000000017.json new file mode 100644 index 0000000000000000000000000000000000000000..80c11408e913a8ceb3a5f4c5a3780109603b79d6 --- /dev/null +++ b/data/processed/85fd305f-83de-70b0-47e8-2dc000000017.json @@ -0,0 +1,1570 @@ +{ + "id": "85fd305f-83de-70b0-47e8-2dc000000017", + "content": "Die Verladestationen (siehe Abbil- dung 4) bestehen aus einer vertieften Verladestation, einer innenliegenden hydrauli- schen \u00dcberladebr\u00fccke mit Klapplippe und einer Planen-Torrandabdichtung. [IMAGE: - Au]\n\n\n[IMAGE: a -]\n\nAbbildung 4: Verladezone von innen und au\u00dfen\nDie innenliegende hydraulische \u00dcberladebr\u00fccke ist eine wichtige Komponente in Spedi- tionen, da sie den schnellen und sicheren Transport von G\u00fctern zwischen Anh\u00e4nger und\n- 1 in \u00d6sterreich, Deutschland, der Schweiz, Armenien, Australien, Bosnien-Herzegowina, Bulgarien, China, Georgien, Hongkong, Japan, Kanada, Kasachstan, Kroatien, Malaysia, Mazedonien, Montenegro, Neu- seeland, Polen, Rum\u00e4nien, Russische F\u00f6deration, Serbien, Singapur, Slowakei, Slowenien, S\u00fcdkorea, Tschechien, T\u00fcrkei, Ukraine, Ungarn, Usbekistan, Taiwan, USA und Vietnam [71]\n32\n4 Beschreibung des Betriebs und Untersuchungsobjekte\nLagerhalle erm\u00f6glicht. Die vorhandene \u00dcberladebr\u00fccke besteht aus Stahl mit einer ge- riffelten Oberfl\u00e4che, um ein sicheres Begehen und Befahren zu erm\u00f6glichen (siehe Ab- bildung 5). [IMAGE: ]\n\nAbbildung 5: Oberfl\u00e4che der innenliegenden \u00dcberladebr\u00fccke\nW\u00e4hrend der Betriebszeiten ist das Betriebsgrundst\u00fcck gepr\u00e4gt durch ein hohes Ver- kehrsaufkommen, dass von dem pendeln der Zugmaschinen bis hin zum Umschlag der Wechselbr\u00fccken reicht. ## 4.2 Beschreibung der Untersuchungsobjekte\n\nIn diesem Abschnitt werden die untersuchten Untersuchungsobjekte detailliert darge- stellt. Dabei handelt es sich um verschiedene Anh\u00e4ngertypen sowie Flurf\u00f6rderger\u00e4te, die im Rahmen dieser Arbeit genauer betrachtet werden. Die Beschreibung der einzel- nen Objekte liefert einen \u00dcberblick \u00fcber ihre spezifischen Merkmale und Eigenschaften, die f\u00fcr die weiteren Untersuchungen von Bedeutung sind. ## Die Anh\u00e4nger\n\nBei der schalltechnischen Untersuchung fanden die Verladevorg\u00e4nge in verschiedene Anh\u00e4nger statt, zum einen in Aufliegern, auch Sattelauflieger genannt und zum anderen in Wechselbr\u00fccken. Ein Auflieger verf\u00fcgt \u00fcber mehrere Hinterachsen, aber keine Vorderachse, da der Auf- lieger auf der Zugmaschine vorne mit einer Sattelplatte und dem K\u00f6nigszapfen aufliegt. Auflieger gibt es in verschiedensten Ausf\u00fchrungen. [72, 73] In dieser schalltechnischen Untersuchung kamen Ausf\u00fchrungen als Tautliner und als Koffer-Auflieger vor. Ein Tau- tliner ist ein Sattelauflieger, der \u00fcber keine festen Ladeboardw\u00e4nde verf\u00fcgt, sondern Planen als Ladeboardw\u00e4nde hat (siehe Abbildung 6). [74] Ein Koffer-Auflieger verf\u00fcgt im Gegensatz zu einem Tautliner \u00fcber feste Ladeboardw\u00e4nde (siehe Abbildung 7). Des Weiteren fanden Verladungen in sogenannte Wechselbr\u00fccken, oder auch Wechsel- beh\u00e4lter genannt, statt (siehe Abbildung 8). Dies sind austauschbare Ladungstr\u00e4ger die\n33\n4 Beschreibung des Betriebs und Untersuchungsobjekte\neiner Zugmaschine angeh\u00e4ngt werden k\u00f6nnen. Wechelbr\u00fccken sollen den Frachtalltag erleichtern, da diese dabei helfen, Ladegut schnell und effizient umzuschlagen. Wech- selbr\u00fccken gibt es in verschiedenen Ausf\u00fchrungen, zum Beispiel mit Planen, mit Rollto- ren oder mit Fl\u00fcgeltoren. [75] Bei der Analyse der L\u00e4rmemissionen der Beladevorg\u00e4nge ist es wichtig, die unterschiedlichen Merkmale der Anh\u00e4nger zu ber\u00fccksichtigen, um ein umfassendes Verst\u00e4ndnis zu erlangen. [IMAGE: ]\n\nAbbildung 6: Tautliner\n\n[IMAGE: ]\n\nAbbildung 7: Koffer Auflieger - blau\n\n[IMAGE: TIIEERNIIIERIIIIE u I uesl a0 3 | |) I]\n\nAbbildung 8: Wechselbr\u00fccke\n34\n4 Beschreibung des Betriebs und Untersuchungsobjekte\nDie Auflieger, die in der Thesis untersucht worden sind, weisen bestimmte Abmessun- gen auf. Auflieger haben in der Regel eine L\u00e4nge von circa 13,70 m, eine Breite von circa 2,50 m und eine H\u00f6he von circa 2,60 m. Die Abmessungen erm\u00f6glichen die Aufnahme von 34 Paletten, wobei jeder Auflieger eine Kapazit\u00e4t von 24 t, oder 88 m\u00b3, aufweist. Wechselbr\u00fccken haben in der Regel eine L\u00e4nge von circa 7,45 m, eine Breite von circa 2,50 m und eine H\u00f6he von 2,50 m auf. Die Abmessungen bei einer Wechselbr\u00fccke er- m\u00f6glichen eine Aufnahme von 18 Paletten, wobei jede Wechselbr\u00fccke eine Kapazit\u00e4t von circa 46 m\u00b3 besitzt. [76]\n35\n4 Beschreibung des Betriebs und Untersuchungsobjekte\n\n## Die Flurf\u00f6rderger\u00e4te\n\nDas Unternehmen (siehe Kapitel 4.1) setzt f\u00fcr den Umschlag der G\u00fcter in die Anh\u00e4nger Flurf\u00f6rderger\u00e4te ein, zum einem Gabelhubwagen und zum anderen Gabelstapler. Diese Flurf\u00f6rderger\u00e4te erm\u00f6glichen eine schnelle und sichere Verladung der G\u00fcter. Die Gabel- hubwagen werden in der Regel f\u00fcr kleinere Lasten verwendet.", + "embedding": [ + 0.007557435892522335, + 0.002347793895751238, + 0.005575378425419331, + -0.024000421166419983, + -0.006182130891829729, + 0.011481099762022495, + -0.019362136721611023, + -0.015128354541957378, + 0.004833792336285114, + -0.023124000057578087, + 0.010409170761704445, + 0.020346423611044884, + -0.018027281388640404, + -0.004071981646120548, + 0.01005186140537262, + 0.00938443373888731, + 0.03260281682014465, + 0.014305868186056614, + -0.006323706358671188, + -0.036270298063755035, + -0.013678891584277153, + -0.00037605996476486325, + 0.0021590266842395067, + -0.020926209166646004, + -0.02812633477151394, + 0.01522273849695921, + 0.02586112730205059, + -0.012957530096173286, + 0.005983250681310892, + -0.001189908478409052, + -0.01640927605330944, + -0.0017444125842303038, + -0.016840744763612747, + 0.005450657103210688, + 0.0022247580345720053, + -0.025308309122920036, + -0.007287768181413412, + -0.02590157650411129, + 0.018795834854245186, + -0.0019449779065325856, + 0.020710475742816925, + 0.004085464868694544, + -0.0001465264504076913, + -0.02292175032198429, + 0.00866981502622366, + 0.005821450147777796, + -0.010982214473187923, + -0.001717445789836347, + -0.022166680544614792, + 0.015357572585344315, + 0.012249653227627277, + 0.004196702968329191, + -0.02769486792385578, + 4.5137727283872664e-05, + -0.0065697780810296535, + -0.0068900082260370255, + -0.013901366852223873, + 0.008143963292241096, + 0.0031298301182687283, + -0.022679049521684647, + -0.031416282057762146, + 0.005966396536678076, + -0.03022974357008934, + 0.01618005894124508, + -0.017137378454208374, + -0.010335012339055538, + 0.009020382538437843, + -0.007307993248105049, + -0.003664109157398343, + -0.02416222169995308, + 0.0078001366928219795, + 0.03815797343850136, + 0.008042837493121624, + -0.004341648891568184, + 0.02799150161445141, + -0.04134004935622215, + -0.0033354517072439194, + 0.012917079962790012, + -0.023663336411118507, + 0.015276672318577766, + 0.027088114991784096, + -0.048971645534038544, + -0.016786811873316765, + 0.03543432801961899, + 0.01504745427519083, + 0.005561895202845335, + -0.0022062184289097786, + 0.0042843446135520935, + 0.0021135201677680016, + -0.007038325536996126, + -0.013335064984858036, + 0.03724110126495361, + 7.505398389184847e-05, + 0.026400461792945862, + 0.01787896454334259, + -0.01743401400744915, + -0.013968784362077713, + 0.025645393878221512, + 0.004098948091268539, + -0.031551115214824677, + -0.015559823252260685, + 0.00895970780402422, + 0.011049631983041763, + 0.00010597096115816385, + -0.019456520676612854, + -0.0031989323906600475, + 0.002219701884314418, + 0.007105742581188679, + -0.00018307905702386051, + -0.03864337503910065, + -0.005427061580121517, + 0.023906037211418152, + -0.021141942590475082, + -0.01210807729512453, + 0.007854070514440536, + -0.04045014828443527, + 0.020036306232213974, + -0.02671058103442192, + 0.03311518579721451, + -0.017191313207149506, + -0.0010264224838465452, + 0.021034076809883118, + 0.016207026317715645, + -0.00774620333686471, + 0.023434119299054146, + 0.023326251655817032, + 0.011690092273056507, + 0.014076651073992252, + 0.011730542406439781, + -0.017825031653046608, + -0.021101493388414383, + 0.01681377738714218, + 0.01442721951752901, + -0.001275022397749126, + -0.011440649628639221, + -0.003707930212840438, + -0.01917336881160736, + -0.003927035257220268, + -0.027492616325616837, + -0.04120521619915962, + 0.015816006809473038, + -0.0013854175340384245, + -0.025483593344688416, + -0.01190582662820816, + 0.002401727484539151, + 0.01743401400744915, + 0.008710265159606934, + 0.026508329436182976, + -0.019847538322210312, + 0.0032191574573516846, + -0.016827261075377464, + -0.014831720851361752, + 0.009923769161105156, + -0.02509257383644581, + -0.0052787442691624165, + 0.016382308676838875, + -0.012559770606458187, + 0.0149126211181283, + -0.013941816985607147, + -0.028719604015350342, + 0.01609915867447853, + 0.00924960058182478, + 0.012944047339260578, + -0.006138309836387634, + 0.003365789307281375, + 0.0072203511372208595, + -0.022180164232850075, + -0.0005755719030275941, + 0.002797801746055484, + -0.01708344556391239, + -0.003724784357473254, + 0.01712389476597309, + -0.033951155841350555, + 0.02050822414457798, + -0.013732824474573135, + -0.0029124105349183083, + 0.023218384012579918, + -0.002936006523668766, + -0.03869730606675148, + -0.030553344637155533, + 0.0012522691395133734, + -0.0023056583013385534, + 0.023070067167282104, + 0.005760774947702885, + -0.022166680544614792, + -0.02625214494764805, + 0.017932899296283722, + 0.0075102439150214195, + -0.002472515217959881, + -0.009121508337557316, + -0.005592233035713434, + 0.03130841255187988, + -0.0020528449676930904, + -0.005056268535554409, + -0.6178625226020813, + 0.002332625212147832, + 0.002175880828872323, + -0.016153091564774513, + 0.002546673873439431, + 0.036000631749629974, + 0.03236011788249016, + -0.00015885109314695, + -0.009087800048291683, + 0.03632423281669617, + -0.013388998806476593, + 0.023461084812879562, + 0.0032225283794105053, + 0.01662500947713852, + -0.00774620333686471, + -0.015371056273579597, + -0.026117311790585518, + -0.016571076586842537, + 0.03834673762321472, + 0.003910180646926165, + -0.024903807789087296, + 0.022679049521684647, + -0.00028778595151379704, + 0.00716641778126359, + 0.009721518494188786, + -0.004961884580552578, + 0.028153302147984505, + -0.0005848417058587074, + 0.008130479604005814, + 0.0017629521898925304, + -0.021479027345776558, + 0.011117048561573029, + -0.01938910409808159, + 0.00127923593390733, + 0.03225225210189819, + 0.020791376009583473, + -0.013382256962358952, + 0.02733081579208374, + 0.021600378677248955, + 0.014858687296509743, + 0.002598922001197934, + -0.03233315050601959, + -0.004840534180402756, + -0.014224967919290066, + 0.013422707095742226, + -0.006852929014712572, + 0.04187938570976257, + 0.008649589493870735, + 0.006741691380739212, + -0.024863356724381447, + 0.017150862142443657, + -0.003910180646926165, + 0.004105689935386181, + 0.014373285695910454, + 0.024458855390548706, + 0.011696834117174149, + 0.028207235038280487, + -0.014440702274441719, + -0.013928334228694439, + 0.014319351874291897, + 0.01103614829480648, + 0.04007261246442795, + -0.01522273849695921, + -0.025874610990285873, + -0.02433750592172146, + 0.005979880224913359, + -0.022908266633749008, + -0.027937568724155426, + 0.003269720124080777, + 0.0005726224044337869, + -0.011393457651138306, + 0.020090239122509956, + -0.01623399183154106, + -0.0008220649906434119, + 0.013213714584708214, + 0.026063378900289536, + 0.010874347761273384, + 0.002924208529293537, + 0.01671939343214035, + 0.052099790424108505, + 0.005592233035713434, + -0.004854017402976751, + 0.008845099247992039, + 3.4182481613243e-05, + 0.04587046802043915, + 0.003980968613177538, + -0.027047665789723396, + 0.0013129443395882845, + -0.008332730270922184, + -0.013564283028244972, + 0.029771307483315468, + 0.033061254769563675, + -0.021344194188714027, + -0.00849453080445528, + -0.0030624133069068193, + 0.035380396991968155, + -0.015977807343006134, + 0.022328481078147888, + -0.006798995658755302, + -0.01961832121014595, + -0.0026477992068976164, + -0.007570919115096331, + 0.005194473080337048, + -0.016126126050949097, + 0.02812633477151394, + 0.02799150161445141, + -0.023973453789949417, + 0.01698906160891056, + 0.022395897656679153, + -0.03842763975262642, + -0.00895970780402422, + -0.0098293861374259, + -0.0010559173533692956, + -0.0021893642842769623, + -0.024094803258776665, + -0.0232318677008152, + 0.01712389476597309, + 0.0123710036277771, + 0.020144173875451088, + -0.03540736064314842, + 0.016247475519776344, + 0.0034045539796352386, + 0.002111834706738591, + -0.019807089120149612, + -0.01406316738575697, + 0.0377265028655529, + 0.016786811873316765, + -0.030337609350681305, + -0.016530627384781837, + 0.00016569813305977732, + 0.011251882649958134, + 0.007072033826261759, + 0.029501641169190407, + -0.008838357403874397, + 0.017528396099805832, + 0.026724062860012054, + 0.02626562863588333, + 0.009647360071539879, + 0.019537420943379402, + -0.04724577069282532, + -0.018027281388640404, + -0.02278691530227661, + 0.028018468990921974, + -0.011602450162172318, + -0.018620550632476807, + -0.03300732001662254, + -0.020926209166646004, + 0.009081058204174042, + -0.02362288534641266, + 0.0012809212785214186, + -0.02799150161445141, + -0.012815955094993114, + -0.006347302347421646, + 0.008076545782387257, + -0.005218069069087505, + 0.009168700315058231, + -0.043362557888031006, + 0.005875383969396353, + -0.0030303902458399534, + -0.019065503031015396, + 0.010908056050539017, + 0.008925999514758587, + -0.03732200339436531, + -0.0034399479627609253, + -0.027303848415613174, + 0.006434943992644548, + 0.03821190446615219, + 0.0028483644127845764, + -0.018714934587478638, + -0.04147488251328468, + 0.003930405713617802, + -0.016598043963313103, + -0.006637195125222206, + 0.0016500288620591164, + -0.015330606140196323, + -0.00782036129385233, + -0.006805737037211657, + -0.009815902449190617, + -0.001044962089508772, + -0.010348496027290821, + 0.0009202408255077899, + 0.021950947120785713, + -0.02358243614435196, + -0.01308562234044075, + 0.013786758296191692, + 0.012856405228376389, + 0.014278901740908623, + 0.020305974408984184, + -0.030930878594517708, + 0.020804859697818756, + -0.013220456428825855, + 0.035515230149030685, + -0.008588914759457111, + 0.01971270516514778, + -0.035380396991968155, + -0.0037551219575107098, + 0.014899137429893017, + 0.030823012813925743, + -0.004031531512737274, + 0.005167506169527769, + 0.028207235038280487, + -0.00511694373562932, + 0.033276986330747604, + -0.01549240667372942, + 0.022584665566682816, + -0.0055551533587276936, + 0.02153296209871769, + 0.0032107303850352764, + 0.07113832235336304, + 0.014575536362826824, + 0.02711508236825466, + -0.003180392784997821, + -0.031011778861284256, + -0.01005186140537262, + 0.010382204316556454, + 0.04667947068810463, + -0.0024876841343939304, + 0.019874505698680878, + 0.014359802007675171, + 0.0026815077289938927, + -0.0028770167846232653, + 0.016665460541844368, + 0.03419385850429535, + 0.010267595760524273, + -0.011892342939972878, + -0.013571023941040039, + 0.0013045172672718763, + 0.018607066944241524, + -0.01484520360827446, + -0.009067574515938759, + -0.009101282805204391, + 0.007301251403987408, + -0.010361979715526104, + 0.017002545297145844, + 0.017353113740682602, + 0.011353007517755032, + 0.001468003261834383, + 0.006161905825138092, + 0.03492195904254913, + 0.0014578907284885645, + 0.044603027403354645, + 0.03225225210189819, + 0.023528501391410828, + -0.021195877343416214, + 0.01578904129564762, + 0.007638336159288883, + 0.014939587563276291, + 0.011218174360692501, + -0.012404711917042732, + -0.020696992054581642, + 0.02064305916428566, + 0.003893326735123992, + -0.005201214924454689, + -0.01121143251657486, + -0.0035157918464392424, + -0.008137221448123455, + 0.031227514147758484, + 0.004715812858194113, + 0.009552976116538048, + 0.0012893484672531486, + 0.017177829518914223, + 0.015748590230941772, + 0.007611369248479605, + -0.009397917427122593, + 0.02201836369931698, + 0.009512525983154774, + -0.019240787252783775, + -0.02157341130077839, + -0.007752944715321064, + 0.007206867914646864, + -0.004227040335536003, + -0.00447985390201211, + 0.005868642125278711, + 0.002300602151080966, + 0.0160047747194767, + 0.0028298248071223497, + 0.003379272762686014, + 0.014966554008424282, + 0.004513562191277742, + 0.013301356695592403, + -0.0051742480136454105, + -0.020211590453982353, + -0.02286781556904316, + 0.03489499166607857, + -0.0035090502351522446, + -0.009613651782274246, + -0.03403205797076225, + 0.04824354127049446, + -0.027856668457388878, + 0.017555363476276398, + -0.006950683426111937, + -0.01406316738575697, + -0.017514914274215698, + 0.010678838938474655, + 0.013193489983677864, + -0.0012775504728779197, + 0.036539964377880096, + -0.0034433186519891024, + -0.007085517514497042, + -0.017218278720974922, + -0.007948453538119793, + -0.018512682989239693, + -0.007328218314796686, + -0.009593426249921322, + 0.02969040721654892, + -0.022193647921085358, + -0.004237153101712465, + -0.011218174360692501, + 0.0173935629427433, + -0.023258835077285767, + -0.013469899073243141, + -0.00015558558516204357, + -0.018566617742180824, + -0.007941712625324726, + -0.003246124368160963, + -0.0032124158460646868, + 0.00858217291533947, + 0.0034618584904819727, + 0.037025365978479385, + 0.013247422873973846, + -0.028827471658587456, + -0.014292385429143906, + -0.014198001474142075, + 0.008359696716070175, + 0.0247420072555542, + 0.03128144517540932, + -0.016921645030379295, + 0.03227921575307846, + 0.0008136378601193428, + -0.021559927612543106, + 0.017541879788041115, + -0.029636474326252937, + 0.009377692826092243, + 0.021209361031651497, + 0.006047296803444624, + -0.0003261293168179691, + 0.03287248685956001, + -0.014359802007675171, + 0.0053697568364441395, + -0.0034753417130559683, + 0.005642795469611883, + 0.005339419469237328, + 0.02969040721654892, + 0.004055127035826445, + -0.003043873468413949, + -0.02750610001385212, + -0.02568584308028221, + 0.03869730606675148, + 0.015762073919177055, + -0.019955405965447426, + 0.013584507629275322, + 0.027047665789723396, + 0.012148527428507805, + -0.012499094940721989, + 0.007806878536939621, + 0.0123710036277771, + 0.0168002936989069, + 0.013860916718840599, + -0.004837163258343935, + -0.026373496279120445, + 0.002164082834497094, + -0.0015253076562657952, + 0.014117101207375526, + 0.012667637318372726, + 0.0196587722748518, + 0.0149126211181283, + 0.007415860425680876, + -0.017447495833039284, + 0.010179953649640083, + 0.0030017378740012646, + 0.021007109433412552, + 0.008878807537257671, + -0.008912515826523304, + -0.02085879258811474, + 0.022234097123146057, + -0.02675103023648262, + -0.00831250473856926, + -0.015371056273579597, + 0.012121560983359814, + -0.030283676460385323, + -0.021586894989013672, + -0.008265313692390919, + 0.0010306360200047493, + -0.0072945100255310535, + -0.026319561526179314, + -0.032575853168964386, + 0.03451745957136154, + -0.01845875009894371, + -0.016207026317715645, + -0.004179848358035088, + -0.02969040721654892, + 0.002042732434347272, + -0.021654311567544937, + -0.0007778226281516254, + -0.007752944715321064, + -0.008305763825774193, + -0.02394648641347885, + -0.005413577891886234, + 0.02683193050324917, + -0.011285590939223766, + 0.016341859474778175, + -0.004968626424670219, + 0.00030274406890384853, + 0.013705858029425144, + -0.023164451122283936, + -0.0061147138476371765, + -0.009478817693889141, + -0.025025157257914543, + -0.01948348805308342, + 0.00924960058182478, + -0.007105742581188679, + -0.0053495317697525024, + 0.00658663222566247, + 0.012175493873655796, + 0.009748485870659351, + 0.005531557369977236, + -0.003566354513168335, + -0.010085569694638252, + 0.015708141028881073, + 0.009290050715208054, + 0.015627240762114525, + 0.009660843759775162, + -0.008568689227104187, + -0.02509257383644581, + 0.021141942590475082, + -0.01698906160891056, + -0.0024640881456434727, + -0.010152987204492092, + 0.009060832671821117, + 0.013314840383827686, + -0.014359802007675171, + -0.0026848784182220697, + -0.003084323601797223, + 0.012768763117492199, + 0.002593865618109703, + -0.01694861240684986, + -0.022840850055217743, + 0.008717007003724575, + -0.0253757257014513, + 0.009883319027721882, + -0.008770939894020557, + 0.022894782945513725, + 0.014319351874291897, + -0.001793289789929986, + 0.021694762632250786, + -0.022908266633749008, + 0.04012654721736908, + 0.005137168802320957, + -0.01357776578515768, + 0.04832444339990616, + -0.014993521384894848, + -0.016193542629480362, + -0.005400094669312239, + -0.0038663598243147135, + 0.021829595789313316, + 0.014022717252373695, + 0.011966501362621784, + -0.009087800048291683, + -0.018404817208647728, + -0.02126329392194748, + 0.0010609736200422049, + -0.002890500007197261, + -0.0009724889532662928, + -0.01983405463397503, + -0.017811547964811325, + 0.021789146587252617, + -0.008919257670640945, + 0.003458487568423152, + -0.011777734383940697, + -0.022625114768743515, + -0.0007297880947589874, + 0.03535342961549759, + -0.014764303341507912, + 0.012465386651456356, + -0.016031742095947266, + -0.0047394088469445705, + -0.010099053382873535, + 0.0002652434050105512, + -0.015613757073879242, + -0.03063424490392208, + 0.012613704428076744, + -0.022948715835809708, + 0.019105952233076096, + 0.019416069611907005, + 0.026319561526179314, + -0.009485559538006783, + 0.02675103023648262, + 0.01023388747125864, + 0.00033118558349087834, + -0.004280973691493273, + -0.011602450162172318, + -0.020359907299280167, + -0.026360012590885162, + 0.03799617290496826, + 0.029447706416249275, + 0.00987657718360424, + 0.007375410292297602, + 0.019914954900741577, + 0.006367527414113283, + 0.038670338690280914, + -0.01618005894124508, + -0.004692216869443655, + -0.02799150161445141, + -0.02603641152381897, + -0.012148527428507805, + -0.0058248210698366165, + 0.016921645030379295, + -0.012640670873224735, + -0.036000631749629974, + 0.011164240539073944, + 0.012074369005858898, + -0.026063378900289536, + -0.006252918392419815, + -0.012114819139242172, + 0.016018258407711983, + -0.04123218357563019, + 0.016881193965673447, + 0.033061254769563675, + -0.0042337821796536446, + 0.01689467765390873, + 0.004580979235470295, + -0.024620655924081802, + -0.030688177794218063, + 0.03147021308541298, + -0.005521445069462061, + -0.005760774947702885, + -0.010672097094357014, + -0.024768972769379616, + -0.00924960058182478, + -0.02363636903464794, + 0.02153296209871769, + -0.003913551568984985, + 0.0010281079448759556, + -0.011002440005540848, + -0.027034182101488113, + -0.041178248822689056, + 0.005598974414169788, + -0.014319351874291897, + 0.021546445786952972, + 0.017016028985381126, + 0.02460717223584652, + 0.03076907806098461, + -0.017865480855107307, + 0.0017477833898738027, + -0.0009564774227328598, + -0.004398953635245562, + 0.008015871047973633, + 0.02791060134768486, + 0.049376145005226135, + 0.010308045893907547, + -0.006340560503304005, + -0.0072203511372208595, + -0.0493222139775753, + 0.017110412940382957, + 0.007793394848704338, + 0.012532804161310196, + 0.014764303341507912, + -0.012923821806907654, + -0.00849453080445528, + 0.0016719393897801638, + 0.009236116893589497, + 0.018202565610408783, + -0.020265523344278336, + 0.05048178508877754, + 0.020629575476050377, + -0.00044958654325455427, + -0.005160764791071415, + -0.008993416093289852, + 0.00829228013753891, + -0.010463104583323002, + -0.00511694373562932, + -0.008737231604754925, + -0.013099106028676033, + -0.005268631502985954, + 0.007382151670753956, + 0.060028016567230225, + -0.003603433957323432, + 0.01662500947713852, + 0.01190582662820816, + -0.03508375957608223, + 0.002619147067889571, + -0.006478765048086643, + -0.017892448231577873, + 0.004543900024145842, + -0.023420635610818863, + 0.0336005873978138, + -0.0018185712397098541, + -0.007240576203912497, + -0.002448919229209423, + 6.968170055188239e-05, + -0.03473319113254547, + -0.018296949565410614, + 0.0025567864067852497, + 0.019335169345140457, + -0.01181144267320633, + 0.004921434447169304, + 0.0019230673788115382, + 0.0031921907793730497, + 0.01239122822880745, + -0.0074900188483297825, + 0.013206972740590572, + 0.008925999514758587, + 0.0067855119705200195, + -0.01766323111951351, + -0.014467669650912285, + -0.004179848358035088, + -0.028638703748583794, + -0.014171035028994083, + -4.932494994136505e-05, + -0.021816112101078033, + 0.0019550903234630823, + -0.027047665789723396, + -0.005541670136153698, + -0.03540736064314842, + -0.035029828548431396, + 0.0009303533588536084, + -0.0046686213463544846, + 0.01940258778631687, + -0.006650678347796202, + -0.013901366852223873, + -0.015020487830042839, + 0.039398442953825, + -0.040638912469148636, + 0.0006889165379106998, + 0.02844993583858013, + -0.012492354027926922, + -0.012708087451756, + 0.003980968613177538, + 0.004860759247094393, + -0.00012735475320369005, + 0.016395792365074158, + -0.0017629521898925304, + -0.011535033583641052, + 0.00039438894600607455, + -0.0032848890405148268, + 0.011663125827908516, + -0.0034820835571736097, + -0.012236169539391994, + -0.002727014012634754, + -0.01130581647157669, + 0.013395740650594234, + -0.0083799222484231, + -0.006343931425362825, + 0.019416069611907005, + 0.010463104583323002, + 0.008845099247992039, + 0.01983405463397503, + -0.019267752766609192, + -0.009546234272420406, + 0.028342070057988167, + -0.015667689964175224, + -0.0075304689817130566, + -0.03918270766735077, + -0.029258940368890762, + 0.015101388096809387, + -0.001017995411530137, + -0.012229427695274353, + -0.020319456234574318, + -0.023326251655817032, + -0.024148738011717796, + -0.01565420627593994, + 0.000916870019864291, + 0.003751751035451889, + -0.016422759741544724, + 0.011555258184671402, + -0.010159728117287159, + 0.019456520676612854, + 0.029933108016848564, + 0.013415965251624584, + -0.015937358140945435, + 0.03823887184262276, + 0.0026966764125972986, + -0.033951155841350555, + 0.011090082116425037, + -0.019456520676612854, + 0.029043205082416534, + 0.014791270717978477, + -0.013544057495892048, + 0.012377744540572166, + -0.0031551115680485964, + -0.032791584730148315, + 0.014548569917678833, + 0.007206867914646864, + 0.023393668234348297, + -0.008649589493870735, + 0.009910286404192448, + 0.012404711917042732, + 0.02799150161445141, + 0.006546182092279196, + 0.030040975660085678, + 0.005457398947328329, + 0.005669762380421162, + 0.0022770061623305082, + -0.006205726880580187, + 0.016072191298007965, + -0.01297101378440857, + -0.06143029034137726, + -0.00395737262442708, + 0.014791270717978477, + 0.013678891584277153, + 0.018067732453346252, + 0.027074631303548813, + 0.006734949536621571, + -0.01791941560804844, + -9.53317285166122e-05, + 0.0015826120506972075, + 0.01658456027507782, + -0.019564388319849968, + 0.026777997612953186, + -0.032575853168964386, + -0.008211379870772362, + 0.007908003404736519, + 0.028557803481817245, + -0.004112431779503822, + -0.0029545461293309927, + -0.0083799222484231, + 0.004402324091643095, + 0.019807089120149612, + 0.018701450899243355, + 0.00678888289257884, + 0.007928228937089443, + -0.011332782916724682, + 0.021964428946375847, + 0.013254164718091488, + -0.01640927605330944, + 0.007806878536939621, + 0.006178759969770908, + -0.010024894960224628, + -0.011460875160992146, + 0.005207956302911043, + -0.04160971939563751, + 0.015667689964175224, + 0.012067627161741257, + -0.03165898099541664, + 0.023568952456116676, + -0.011272107250988483, + 0.02572629414498806, + -0.00849453080445528, + 0.008663073182106018, + -0.01569465734064579, + -0.017177829518914223, + -0.018890218809247017, + 0.04276929050683975, + 0.004486595280468464, + -0.01636882685124874, + -0.009869836270809174, + 0.004945030435919762, + -0.01654410921037197, + 0.0027404974680393934, + -0.010018153116106987, + -0.0037989430129528046, + -0.022948715835809708, + -0.004395582713186741, + 0.000985129619948566, + -0.02344760112464428, + -0.006660790648311377, + 0.009512525983154774, + 0.004183219280093908, + -0.023771202191710472, + -0.01770368032157421, + 0.172047957777977, + -0.029717374593019485, + -0.0025146508123725653, + -0.0010002984199672937, + -0.02737126685678959, + -0.01618005894124508, + 0.021505994722247124, + -0.001885988051071763, + 0.008534980937838554, + 0.031497180461883545, + 0.014386769384145737, + -0.0026208325289189816, + -0.011265366338193417, + 0.003650625701993704, + 0.008878807537257671, + -0.01764974743127823, + -0.02420267090201378, + -0.007982162758708, + -0.006970908492803574, + 0.03942541033029556, + 0.020319456234574318, + -0.034436557441949844, + 0.0014106988674029708, + -0.023353219032287598, + 0.016638493165373802, + 0.0001323056931141764, + -0.01241819467395544, + 0.009256341494619846, + 0.017555363476276398, + 0.01738007925450802, + -0.019726188853383064, + 0.014818237163126469, + 0.0019887988455593586, + -0.001946663367561996, + -0.007355185225605965, + -0.003664109157398343, + -0.004034901969134808, + -0.0034921960905194283, + 0.012337294407188892, + 0.021330710500478745, + 0.00531582348048687, + -0.01158896740525961, + -0.006465281825512648, + -0.00551807414740324, + -0.03179381415247917, + -0.0010045119561254978, + 0.004092206712812185, + 0.005268631502985954, + -0.0010955247562378645, + -0.011346266604959965, + -0.014359802007675171, + 0.022301513701677322, + 0.00040007723146118224, + 0.03950630873441696, + -0.003707930212840438, + -0.0032663494348526, + -0.0032714055851101875, + -0.002585438545793295, + 0.029528606683015823, + -0.011170982383191586, + -0.038184937089681625, + 0.01925426907837391, + -0.011312557384371758, + 0.018647518008947372, + -0.0027758912183344364, + 0.007833844982087612, + -0.01014624536037445, + -0.009748485870659351, + 0.006212468259036541, + -0.02362288534641266, + -0.010564230382442474, + -0.02251724898815155, + -0.021923979744315147, + 0.0006442528683692217, + -0.026737546548247337, + -0.03508375957608223, + 0.00678888289257884, + -0.0027000473346561193, + 0.02960950694978237, + 0.018377849832177162, + 0.001121648820117116, + -0.007961937226355076, + -0.005052897613495588, + -0.011562000028789043, + 0.013982267118990421, + -0.021465545520186424, + 0.020305974408984184, + 0.022571181878447533, + 0.022261064499616623, + -0.042283885180950165, + -0.024067837744951248, + -0.012060885317623615, + 0.010982214473187923, + -0.009505784139037132, + -0.00571695389226079, + -0.0021977913565933704, + 0.01609915867447853, + 0.004051756579428911, + -0.013220456428825855, + 0.0037584928795695305, + -0.03427475690841675, + 0.050535716116428375, + 0.02812633477151394, + -0.006613599136471748, + -0.011420425027608871, + 0.013449673540890217, + -0.002221387345343828, + 0.032575853168964386, + -0.001689636381343007, + -0.02653529681265354, + 0.01170357596129179, + -0.01911943592131138, + -0.00283151026815176, + -0.022530732676386833, + 0.007193384692072868, + -0.0017764356452971697, + -0.00031896625296212733, + -0.022935234010219574, + 0.006205726880580187, + -0.005781000014394522, + -0.008636106736958027, + -0.008130479604005814, + 0.020750924944877625, + -0.003418037435039878, + -0.009047349914908409, + -0.04093554988503456, + -0.024593688547611237, + 0.03726806864142418, + -0.0002629259543027729, + -0.002858476946130395, + 0.021586894989013672, + 6.515212589874864e-05, + 0.021465545520186424, + -0.007146192714571953, + 0.003603433957323432, + 0.011386716738343239, + -0.024863356724381447, + -0.04244568571448326, + -0.023326251655817032, + 0.01442721951752901, + 0.011899084784090519, + 0.004142769146710634, + -0.006370898336172104, + -0.007085517514497042, + 0.01708344556391239, + -0.006593374069780111, + 0.021330710500478745, + -0.010955248028039932, + -0.0225981492549181, + -0.01853965036571026, + -0.009883319027721882, + 0.002782633062452078, + 0.00016453939315397292, + -0.010678838938474655, + 0.016072191298007965, + 0.0002646113862283528, + -0.02091272547841072, + -0.022894782945513725, + 0.03500286117196083, + 0.004948401357978582, + -0.04462999477982521, + -0.029124105349183083, + 0.0021775662899017334, + -0.017636263743042946, + 0.003229269990697503, + 0.0058450461365282536, + -0.1705378144979477, + 0.011137274093925953, + 0.007240576203912497, + -0.011575483717024326, + 0.03133537992835045, + -0.00014326094242278486, + 0.014346318319439888, + 0.019146403297781944, + -0.01948348805308342, + -0.004270861390978098, + 0.02532179281115532, + -0.0034820835571736097, + -0.03616243228316307, + -0.01853965036571026, + -0.013860916718840599, + -0.002039361512288451, + -0.006610228214412928, + 0.0007938341586850584, + 0.031497180461883545, + 0.002135430695489049, + 0.012788987718522549, + -0.02555100992321968, + 0.009391175583004951, + 0.006583261303603649, + -0.00418996112421155, + 0.018526166677474976, + -0.018121665343642235, + 0.036809634417295456, + -0.007038325536996126, + -0.012290103361010551, + 0.0039944518357515335, + -0.0003080110182054341, + 0.026360012590885162, + -0.014629470184445381, + -0.020589124411344528, + -0.010173211805522442, + -0.0034096103627234697, + 0.011541775427758694, + -0.010119277983903885, + 0.026360012590885162, + 0.006188872270286083, + 0.024013902992010117, + -0.00829228013753891, + -0.00479334220290184, + 0.011130532249808311, + 0.02064305916428566, + 0.02201836369931698, + -0.02340715192258358, + 0.005386611446738243, + -0.013941816985607147, + 0.004567495547235012, + -0.01344293262809515, + -0.016422759741544724, + 0.04414459317922592, + 0.004560754168778658, + 0.007105742581188679, + 0.005777629092335701, + 0.018350882455706596, + -0.006060780491679907, + 0.019335169345140457, + -0.01706996187567711, + -0.006084376480430365, + -0.00013641390250995755, + 0.0038427640683948994, + -0.026413945481181145, + -0.01591039076447487, + 0.005936059169471264, + 0.009499043226242065, + 0.012188977561891079, + -0.0050090765580534935, + 0.008265313692390919, + -0.008541722781956196, + 0.017447495833039284, + -0.027721833437681198, + 0.021856563165783882, + 0.030876945704221725, + 0.015303638763725758, + -0.00028546847170218825, + 0.012654154561460018, + -0.01822953298687935, + -0.019861022010445595, + 0.05576726794242859, + -0.008042837493121624, + -0.02327231876552105, + -0.013544057495892048, + -0.009006899781525135, + -0.017366595566272736, + 0.020346423611044884, + -0.012788987718522549, + -0.0006223423406481743, + 0.011157498694956303, + -0.03459835797548294, + -0.006215839181095362, + -0.03152414783835411, + 0.0002203690237365663, + -0.0044629997573792934, + 0.014373285695910454, + -0.023299284279346466, + 0.01007882785052061, + 0.003241067985072732, + -0.0018691339064389467, + -0.02456672303378582, + -0.029987042769789696, + 0.0068192207254469395, + -0.00531582348048687, + 0.0010525465477257967, + -0.021425094455480576, + 0.03632423281669617, + 0.04449516162276268, + -0.024647623300552368, + 0.015182288363575935, + -0.01286314707249403, + 0.022503765299916267, + 0.03718717023730278, + 0.01573510654270649, + 0.01592387445271015, + -0.009532751515507698, + -0.01406316738575697, + 0.027721833437681198, + 0.00551807414740324, + 0.040288347750902176, + -0.007213609758764505, + -0.008878807537257671, + 0.013719341717660427, + -0.016112642362713814, + -0.017757615074515343, + -0.09389827400445938, + -0.0012539546005427837, + 0.032791584730148315, + 0.016530627384781837, + 0.0033202827908098698, + -0.00013715127715840936, + 0.005986621603369713, + 0.014049684628844261, + -0.0052045853808522224, + 0.013766533695161343, + -0.03254888579249382, + -0.007773169782012701, + -0.0024472340010106564, + -0.017110412940382957, + 0.03721413388848305, + 0.009209150448441505, + -0.0026680242735892534, + 0.007955195382237434, + -0.016422759741544724, + 0.02292175032198429, + -0.008420372381806374, + 0.017150862142443657, + -0.00123457214795053, + -0.0013525517424568534, + -0.013746308162808418, + -0.025712810456752777, + -0.04301198944449425, + 0.013476640917360783, + 0.028153302147984505, + -0.016651976853609085, + 0.02702069841325283, + -0.024364471435546875, + 0.00938443373888731, + -0.01778458058834076, + 0.0019854281563311815, + -0.0024438630789518356, + -0.03058031015098095, + -0.0032916306518018246, + 0.034355659037828445, + -0.032036516815423965, + -0.004510191269218922, + -0.0036000630352646112, + 0.0023511648178100586, + -0.037699535489082336, + -0.01766323111951351, + -0.029879175126552582, + -0.00633044820278883, + 0.0032798326574265957, + -0.013200230896472931, + -7.373724656645209e-05, + -0.003261293051764369, + -0.03152414783835411, + -0.015290155075490475, + -0.00829228013753891, + 0.03554219752550125, + -0.004570866469293833, + -0.0010988956782966852, + -0.007031583692878485, + 0.0017073332564905286, + -0.015371056273579597, + -0.02176217921078205, + -0.0031669093295931816, + -0.024350987747311592, + 0.017110412940382957, + 0.014251935295760632, + 0.001965202856808901, + -0.009633876383304596, + -0.009175441227853298, + 0.012182235717773438, + 0.011744026094675064, + -0.024404922500252724, + 0.0031635386403650045, + -0.005538299214094877, + 0.012748537585139275, + -0.03945237770676613, + -0.01774413138628006, + -0.04595136642456055, + -0.030256709083914757, + -0.007901262491941452, + -0.009087800048291683, + -0.020750924944877625, + -0.026777997612953186, + 0.032575853168964386, + -0.031173579394817352, + 0.038670338690280914, + 0.022759949788451195, + -0.011636159382760525, + -0.03516466170549393, + 0.038670338690280914, + -0.013982267118990421, + 0.0013121016090735793, + 0.006728207692503929, + 0.027964534237980843, + -0.02170824632048607, + -0.006970908492803574, + 0.010072086937725544, + -0.013247422873973846, + 0.003458487568423152, + -0.008393405936658382, + 0.013004722073674202, + -0.02920500561594963, + -0.015842974185943604, + -0.058517880737781525, + 0.022759949788451195, + 0.036378163844347, + 0.004486595280468464, + -0.004961884580552578, + -0.002657911740243435, + 0.012074369005858898, + 0.011939534917473793, + 0.020845308899879456, + 0.027384748682379723, + -0.010766481049358845, + 0.015033971518278122, + 0.010665355250239372, + -0.016975577920675278, + -0.011049631983041763, + -0.03009490855038166, + 0.0011039519449695945, + 0.012458644807338715, + 0.013914850540459156, + 0.020184623077511787, + -0.003286574501544237, + 0.005454028025269508, + 0.016732877120375633, + 0.0225981492549181, + -0.04147488251328468, + 0.006000105291604996, + -0.0035292753018438816, + 0.0006472023669630289, + -0.0008814760949462652, + 0.007355185225605965, + 0.008056321181356907, + -0.017096929252147675, + -0.018526166677474976, + 0.015060937963426113, + -0.02046777494251728, + -0.0105237802490592, + 0.0077596865594387054, + 0.018377849832177162, + 0.027182498946785927, + 0.05304362624883652, + -0.015101388096809387, + -0.04174455255270004, + 0.028369035571813583, + -0.030391544103622437, + -0.006107972003519535, + -0.005720324814319611, + 0.03325001895427704, + 0.001041591283865273, + 0.006478765048086643, + -0.004024789668619633, + 0.02603641152381897, + 0.019375620409846306, + 0.011541775427758694, + -0.030418509617447853, + -5.914780558669008e-05, + 0.012330553494393826, + 0.013132814317941666, + -0.00205115950666368, + 0.01925426907837391, + -0.04185241833329201, + 0.03513769432902336, + -0.013112589716911316, + 0.004779858980327845, + -0.013180006295442581, + 0.02112846076488495, + -0.02340715192258358, + -0.03419385850429535, + -0.011939534917473793, + 0.018108181655406952, + -0.010597938671708107, + -0.0025197069626301527, + -0.00034719708492048085, + 0.00953949335962534, + 0.03384329006075859, + -0.00615179305896163, + 0.0015539597952738404, + 0.005828191991895437, + 0.009532751515507698, + -0.021209361031651497, + 0.008568689227104187, + 0.011568741872906685, + 0.016598043963313103, + -0.001263224403373897, + 0.0029899401124566793, + 0.021964428946375847, + -0.02532179281115532, + -0.008777681738138199, + 0.015856457874178886, + 0.0009640618227422237, + 0.013274390250444412, + -0.011218174360692501, + 0.02634652890264988, + -0.0023494793567806482, + 0.013402481563389301, + -0.0026848784182220697, + 0.021411610767245293, + -0.0035023086238652468, + -0.015276672318577766, + 0.044522128999233246, + 0.030014008283615112, + -0.005828191991895437, + 0.010705805383622646, + -0.002373075345531106, + -0.014683403074741364, + -0.013510349206626415, + 0.01317326445132494, + 0.0008106883615255356, + -0.031092679128050804, + -0.0019129548454657197, + 0.03699840232729912, + -0.006943942047655582, + -0.010806931182742119, + 0.005828191991895437, + 2.7756806957768276e-05, + 0.0022854332346469164, + 0.01129907462745905, + -0.020144173875451088, + -0.022058812901377678, + -0.02211274765431881, + 0.02381165325641632, + 0.009950736537575722, + 0.02251724898815155, + -0.007125967647880316, + 0.0033573622349649668, + 0.009000157937407494, + 0.0020073384512215853, + 0.0027876892127096653, + -0.014831720851361752, + -0.023434119299054146, + -0.010382204316556454, + 0.014103617519140244, + -0.013254164718091488, + -0.007692269515246153, + -0.020656540989875793, + -0.02246331423521042, + -0.010793447494506836, + 0.025888094678521156, + 0.01216875296086073, + 0.0101664699614048, + 0.12318418174982071, + 0.02099362574517727, + -0.018741901963949203, + 0.025928543880581856, + 0.006654049269855022, + 0.0006939728045836091, + 0.002710159868001938, + -0.005036043468862772, + -0.004004564601927996, + -0.034085988998413086, + 0.015357572585344315, + -0.00444614514708519, + 0.005285485647618771, + -0.02176217921078205, + -0.020076755434274673, + 0.003856247290968895, + 0.004018047824501991, + 0.010881089605391026, + -0.03888607397675514, + -0.025335274636745453, + 0.01150132529437542, + -0.028369035571813583, + 0.009950736537575722, + 0.020400358363986015, + -0.013388998806476593, + -0.0028247686568647623, + 0.01824301667511463, + -0.02812633477151394, + -0.004240523558109999, + -0.004365244880318642, + -0.017528396099805832, + 0.0021168910898268223, + -0.05482343211770058, + -0.04414459317922592, + 0.05137168616056442, + -0.020723959431052208, + -0.008278796449303627, + 9.343562851427123e-05, + 0.012249653227627277, + 0.001081198686733842, + 0.001130076008848846, + 0.03311518579721451, + -0.003522533690556884, + -0.031901683658361435, + 0.002445548539981246, + 0.002799487207084894, + -0.004493337124586105, + -0.009627134539186954, + -0.008912515826523304 + ], + "metadata": { + "source": "Thesis_Verladegeraeusche_in_Speditionen.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 41, + "has_images": true, + "image_count": 51, + "coordinates": "CoordinatesMetadata(points=((204.16666666666666, 189.02777777777797), (204.16666666666666, 642.3611111111111), (936.1666666666666, 642.3611111111111), (936.1666666666666, 189.02777777777797)), system=)", + "links": [], + "last_modified": "2025-05-05T22:59:16", + "_known_field_names": "frozenset({'cc_recipient', 'link_texts', 'url', 'filetype', 'category_depth', 'page_number', 'filename', 'orig_elements', 'detection_origin', 'email_message_id', 'page_name', 'coordinates', 'table_as_cells', 'link_start_indexes', 'sent_to', 'bcc_recipient', 'languages', 'last_modified', 'link_urls', 'file_directory', 'subject', 'data_source', 'detection_class_prob', 'image_base64', 'text_as_html', 'attached_to_filename', 'key_value_pairs', 'signature', 'sent_from', 'header_footer_type', 'parent_id', 'links', 'emphasized_text_contents', 'emphasized_text_tags', 'image_mime_type', 'is_continuation', 'image_path'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "Thesis_Verladegeraeusche_in_Speditionen.pdf", + "detection_class_prob": 0.2568194270133972, + "parent_id": "d45475a34bc527cde6987546fa6dd2f5", + "text_as_html": "
Flurf\u00f6rderger\u00e4t |Anzahl Einzelereignisse ElMax-PegelSchallleistungspegel
LAFmaxLWA,5sLWAmaxLWA,1hKlLWAT,1h
[dB(A)][dB(A)][dB(A)][dB(A)][dB(A)][dB(A)]
Gabelstapler29769,3100,7108,872,15,777,8
STABW [dB]6,54,96,54,92,9-
Gabelhubwagen9968,6100,7108,172,16,279,5
STABW [dB]6,45,16,4512,7-
", + "id": "5ba44de7-0ff3-4c0c-b018-67e92171e1c2", + "processing_timestamp": "2025-05-06T14:18:19.298665", + "chunk_number": 17, + "total_chunks": 49, + "chunking_strategy": "hybrid", + "word_count": 604 + } +} \ No newline at end of file diff --git a/data/processed/85fd305f-83de-70b0-47e8-2dc000000018.json b/data/processed/85fd305f-83de-70b0-47e8-2dc000000018.json new file mode 100644 index 0000000000000000000000000000000000000000..d449022443c6f7df25df34ec79e93c2d2d765b0e --- /dev/null +++ b/data/processed/85fd305f-83de-70b0-47e8-2dc000000018.json @@ -0,0 +1,1570 @@ +{ + "id": "85fd305f-83de-70b0-47e8-2dc000000018", + "content": "Diese Flurf\u00f6rderger\u00e4te erm\u00f6glichen eine schnelle und sichere Verladung der G\u00fcter. Die Gabel- hubwagen werden in der Regel f\u00fcr kleinere Lasten verwendet. Die Gabelstapler sind hingegen f\u00fcr den Transport f\u00fcr schweren G\u00fctern, k\u00f6nnen aber auch auf unebenen Ge- l\u00e4nden eingesetzt werden und haben zudem den Vorteil, dass Sie wendiger sind. Die Gabelhubwagen, die das Unternehmen einsetzt, stammen von der Firma Crown und geh\u00f6ren zur Serie WT 3040. Sie sind mit einem Bedienerstand und einem Heckeinstieg ausgestattet, was eine komfortable Bedienung erm\u00f6glicht. In Tabelle 6 sind weitere De- tails aufgef\u00fchrt, um eine detaillierte \u00dcbersicht \u00fcber deren technische Spezifikationen zu geben. [77]\n\n## Hersteller + Typzeichen\n\n\n## Crown Equipment Corporation WT 3040-2.0 (el.) ## Eigengewicht ohne Batterie\n\n724 bis 801 kg\n\n## Gesamtl\u00e4nge (ohne Gabel)/ Gabell\u00e4nge\n\n4200 mm/ 4220 mm\n\n## Fahrgeschwindigkeit mit/ ohne Last\n\n10,0 / 12,5 km/h\n\n[IMAGE: ETRZEIF]\n\n\n[IMAGE: ]\n\nTabelle 6: Gabelhubwagen [77]\nDie Gabelstapler sind in der Regel die bevorzugten Flurf\u00f6rderger\u00e4te f\u00fcr die Verladung, da sie aufgrund ihrer h\u00f6heren Tragkraft und Hubh\u00f6he eine effizientere Arbeitsweise er- m\u00f6glichen. Die Gabelstapler stammen ebenfalls von der Firma Crown und geh\u00f6ren zur Serie SCF 6200. Um eine genaue und pr\u00e4zise Fortbewegung zu erm\u00f6glichen, sind die Gabelstapler mit einem Elektroantrieb ausgestattet. Ein weiterer wichtiger Vorteil ist\n36\n4 Beschreibung des Betriebs und Untersuchungsobjekte\nihre Wendigkeit, die es den Gabelstaplern erm\u00f6glicht, auch in engen Bereichen zu ar- beiten. Weitere Details zu den technischen Spezifikationen sind in Tabelle 7 aufgef\u00fchrt. ## Hersteller + Typzeichen\n\n\n## Crown Equipment Corporation SCF 6200 (el.) ## Eigengewicht ohne Batterie\n\n2570 bis 2767 kg\n\n## Gesamtl\u00e4nge (ohne Gabel) / Gabell\u00e4nge\n\n2413 bis 3663 mm/ 4150 mm\n\n## Fahrgeschwindigkeit mit/ ohne Last\n\n16,0 / 16,0 km/h\n\n[IMAGE: ]\n\n\n[IMAGE: ]\n\nTabelle 7: Elektro-Gegengewichtsstapler [78]\n37\n5 Beschreibung der Untersuchungsmethodik\n\n## 5 Beschreibung der Untersuchungsmethodik\n\nUm das Ziel der Thesis zu erreichen ist eine bestimmende Komponente die Methodik, die in diesem Kapitel beschrieben wird. Die beschriebene Methodik beschreibt die Vor- gehensweise, die bei der Durchf\u00fchrung der Untersuchung angewendet wird, um die er- halten Daten auszuwerten. Dar\u00fcber hinaus werden die Vor- und Nachteile der gew\u00e4hl- ten Methodik diskutiert und Alternativen vorgestellt. Ziel dieses Abschnitts ist es, ein vollst\u00e4ndiges Verst\u00e4ndnis der Methodik zu vermitteln und die Grundlage f\u00fcr die Inter- pretation der Ergebnisse zu schaffen. ## 5.1 Prozessablauf der untersuchten Verladet\u00e4tigkeit\n\nDer Beladevorgang eines Anh\u00e4ngers kann je nach Art und Umfang der zu transportie- renden G\u00fcter sehr unterschiedlich sein. Die allgemeine Beschreibung ist in Kapitel 2.1 dargestellt. Das Ziel dieser Thesis besteht darin, detailliert die Verladet\u00e4tigkeiten in Spe- ditionen mit verschiedenen Flurf\u00f6rderger\u00e4ten und anderen Parametern unter die Lupe zu nehmen und Emissionsans\u00e4tze auszuarbeiten, die als Prognosegrundlage f\u00fcr weiter- f\u00fchrende Schallimmissionsprognosen zur Verf\u00fcgung steht. In der Praxis ist es schwierig alle Aspekte von Verladet\u00e4tigkeiten in Speditionen aufzunehmen, da dies je nach Unter- nehmen unterschiedlich ist. Die Untersuchungen fanden, wie in Kapitel 4.1 beschrieben, im Exportbereich des Unternehmens statt. Hier wurden speziell nur die Beladungen von Anh\u00e4ngern untersucht. Die Gr\u00fcnde f\u00fcr die Wahl der Messpositionen und des Aufbaus sind in 5.3 begr\u00fcndet. Die Verladet\u00e4tigkeiten bestehen in dieser Thesis somit aus der Beladung eines Anh\u00e4- ngers.", + "embedding": [ + 0.009077651426196098, + 0.0029701380990445614, + 0.013579685240983963, + -0.031922295689582825, + -0.005030503962188959, + 0.010214867070317268, + -0.010241624899208546, + -0.00900406762957573, + 0.0009248233982361853, + -0.024189231917262077, + 0.0024299609940499067, + 0.03826393932104111, + -0.04131435230374336, + 0.010074387304484844, + 0.013292036950588226, + 0.025433478876948357, + 0.030397089198231697, + 0.0161083173006773, + -0.01062292605638504, + -0.01162635162472725, + -0.03529380261898041, + 0.001975074876099825, + 0.0022777747362852097, + -0.0128170819953084, + -0.02382799983024597, + 0.04091298207640648, + 0.027119234204292297, + -0.015265439637005329, + -0.004037113394588232, + -0.0038330836687237024, + -0.0108838165178895, + -0.011927378363907337, + -0.004876645747572184, + 0.0018078373977914453, + -0.0161083173006773, + -0.03762174770236015, + 0.004512067884206772, + -0.028818367049098015, + 0.020563524216413498, + -0.002545354887843132, + 0.026637589558959007, + 0.027748046442866325, + -0.00496695376932621, + -0.015840737149119377, + -0.0038230493664741516, + -0.0008621093584224582, + -0.01107112318277359, + -0.0013955970061942935, + 0.00374612002633512, + 0.035026222467422485, + -0.002152346773073077, + 0.01557315606623888, + -0.016603339463472366, + 0.01219495851546526, + 0.004602375905960798, + -0.000982520286925137, + -0.00931178405880928, + 0.0057830726727843285, + 0.00542518449947238, + -0.0205902811139822, + -0.025339826941490173, + 0.022222518920898438, + -0.029032431542873383, + 0.004538825713098049, + -0.02900567278265953, + -0.01786096580326557, + 0.007927057333290577, + -0.018784116953611374, + -0.005692764651030302, + 0.003135703271254897, + 0.013874023221433163, + 0.0292464941740036, + 0.015653429552912712, + 0.0029233116656541824, + 0.038130149245262146, + -0.026477040722966194, + 0.004104008432477713, + 0.0032059429213404655, + -0.026396768167614937, + 0.0074052768759429455, + 0.007472171448171139, + -0.034437548369169235, + -0.023506904020905495, + 0.045756179839372635, + 0.014007813297212124, + -0.0011321979109197855, + -0.011439044959843159, + -0.0031724954023957253, + -0.015118270181119442, + 0.0001135124548454769, + 0.0052980841137468815, + 0.029540833085775375, + -0.00395014975219965, + 0.014101466163992882, + 0.027145991101861, + -0.007184523157775402, + -0.006793187465518713, + 0.02496521547436714, + -0.0067898426204919815, + -0.038130149245262146, + -0.017646901309490204, + 0.01597452722489834, + -0.015131649561226368, + 0.006201166659593582, + -0.02244996279478073, + -7.698151603108272e-05, + 0.0008378598722629249, + 0.006274750921875238, + -0.011097881011664867, + -0.03631060570478439, + -0.017098361626267433, + 0.016054799780249596, + -0.015854114666581154, + 0.0025169244036078453, + -0.0052980841137468815, + -0.020951515063643456, + 0.03435727208852768, + -0.009559296071529388, + 0.02483142539858818, + -0.018877768889069557, + 0.009338541887700558, + 0.023118913173675537, + 0.037300653755664825, + -0.010248314589262009, + 0.01814192533493042, + 0.006512228399515152, + 0.007251418195664883, + 0.01586749404668808, + 0.012603018432855606, + -0.028229691088199615, + -0.01676388829946518, + 0.004374932963401079, + -0.0027159370947629213, + -0.009097720496356487, + -0.0036323985550552607, + 0.021673981100320816, + 0.012201648205518723, + 0.005348255392163992, + -0.025272931903600693, + -0.03398266062140465, + 0.007518998347222805, + 0.0010360362939536572, + -0.024925077334046364, + -0.02659745328128338, + -0.010047629475593567, + 0.014047950506210327, + 0.010750026442110538, + 0.021714117377996445, + -0.010208177380263805, + -0.00027656901511363685, + -0.006930322386324406, + -0.007873541675508022, + 0.035614900290966034, + -0.022369688376784325, + -0.0005150915239937603, + -0.006876806262880564, + -0.006997216958552599, + 0.013700095936655998, + -0.026463663205504417, + -0.017646901309490204, + 0.021165577694773674, + -0.005649283062666655, + 0.01628224365413189, + -0.022476719692349434, + 0.006157685071229935, + 0.016322379931807518, + -0.02572781778872013, + -0.004170903470367193, + 0.00796719454228878, + -0.013084662146866322, + 0.00960612203925848, + -0.016188589856028557, + -0.012910734862089157, + 0.01903831772506237, + -0.013820507563650608, + -0.005435219034552574, + 0.0155062610283494, + -0.009947286918759346, + -0.030022475868463516, + -0.032778549939394, + 0.007258107885718346, + 0.011251739226281643, + 0.009913839399814606, + -0.006615915801376104, + -0.026062292978167534, + -0.03590923547744751, + 0.010823611170053482, + 0.02273092232644558, + -0.004428449086844921, + -0.010596168227493763, + 0.003913357388228178, + 0.017285669222474098, + 0.007144385948777199, + 0.006642673630267382, + -0.627635657787323, + -0.0009231510339304805, + -0.010134592652320862, + -0.01597452722489834, + -0.003212632378563285, + 0.03090549074113369, + 0.002980172401294112, + 0.017299046739935875, + -0.015252060256898403, + 0.037273894995450974, + -0.0071176281198859215, + 0.018155302852392197, + -0.0051810177974402905, + 0.010067697614431381, + -0.016028042882680893, + -0.02465749718248844, + -0.01474365871399641, + -0.015238681808114052, + 0.039815906435251236, + 0.003608985338360071, + -0.0286310613155365, + 0.03604302555322647, + -0.012529433704912663, + -0.00496695376932621, + 0.020670555531978607, + 0.012208337895572186, + 0.02314567007124424, + 0.0021891389042139053, + 0.013064594008028507, + -0.00340161076746881, + -0.025206036865711212, + 0.024363160133361816, + -0.024537086486816406, + 0.009539227001369, + 0.0364176370203495, + 0.026811515912413597, + -0.011887242086231709, + 0.027881836518645287, + 0.018583431839942932, + 0.027988867834210396, + -0.00624464824795723, + -0.02155357040464878, + -0.004866611212491989, + -0.016429413110017776, + 0.009679706767201424, + -0.003108945209532976, + 0.036337364464998245, + 0.008007331751286983, + 0.0005757150938734412, + -0.027199506759643555, + 0.019854435697197914, + 0.010750026442110538, + 0.013044524937868118, + -0.000763439224101603, + 0.021018410101532936, + 0.009846944361925125, + 0.032510969787836075, + -0.023480145260691643, + -0.011633040383458138, + 0.008402012288570404, + 0.015680188313126564, + 0.018101787194609642, + -0.028818367049098015, + -0.02459060214459896, + -0.02769453078508377, + 0.023680830374360085, + -0.04155517369508743, + -0.019707268103957176, + 0.020496629178524017, + 0.008696350269019604, + -0.013673338107764721, + 0.011579524725675583, + -0.012208337895572186, + 0.002985189436003566, + 0.020295944064855576, + 0.03435727208852768, + -0.010964090935885906, + -0.012288611382246017, + 0.025754576548933983, + 0.029674623161554337, + 0.00240153050981462, + 0.01901155896484852, + 0.003209287766367197, + -0.002856416627764702, + 0.028577543795108795, + -0.0008604369359090924, + -0.017847586423158646, + -0.004027079325169325, + -0.008482285775244236, + -0.010529273189604282, + 0.021366262808442116, + 0.018583431839942932, + -0.01986781507730484, + -0.009920529089868069, + -0.0028346756007522345, + 0.03601627051830292, + 0.004910093266516924, + 0.0008111018687486649, + -0.004378277808427811, + -0.036471154540777206, + -0.007284865714609623, + -0.013874023221433163, + 0.01634913869202137, + 0.002545354887843132, + 0.03625709190964699, + 0.02994220331311226, + -0.023306218907237053, + -0.0034785401076078415, + 0.01842288300395012, + -0.03435727208852768, + 0.01362651214003563, + -0.0007784905610606074, + 0.009164615534245968, + 0.004388311877846718, + -0.0241758543998003, + -0.022583752870559692, + 0.026998823508620262, + 0.005676040891557932, + -0.004542170558124781, + -0.02618270367383957, + 0.006990527734160423, + 0.005629214458167553, + 0.018222197890281677, + -0.0037528094835579395, + -0.0173124261200428, + 0.036203574389219284, + 0.012154822237789631, + -0.019185487180948257, + -0.003501953324303031, + -0.003137375460937619, + 0.024028684943914413, + -0.0022510169073939323, + 0.024550465866923332, + -0.003281199838966131, + 0.023266080766916275, + 0.025366583839058876, + 0.028684576973319054, + 0.0074052768759429455, + 0.01897142268717289, + -0.01814192533493042, + -0.017125120386481285, + -0.006870116572827101, + 0.026784759014844894, + -0.025379963219165802, + -0.004395001567900181, + -0.04382960498332977, + -0.015412608161568642, + 0.0016397637082263827, + 0.0013320466969162226, + -0.014529594220221043, + -0.016643475741147995, + -0.018543293699622154, + -0.01700470969080925, + 0.02224927768111229, + 0.007030664477497339, + 0.01143235620111227, + -0.040859468281269073, + -0.014208498410880566, + 0.006308198440819979, + -0.030932249501347542, + 0.0018513192189857364, + 0.018088407814502716, + -0.043615542352199554, + -0.0031156346667557955, + -0.0214866753667593, + -0.0003284126578364521, + 0.026610830798745155, + 0.016496308147907257, + -0.021272610872983932, + -0.045033715665340424, + -0.006358369719237089, + -0.026985444128513336, + 0.0036591566167771816, + 0.01455635204911232, + -0.019573478028178215, + -0.002627301262691617, + -0.015425987541675568, + 0.015787219628691673, + 0.004003665875643492, + -0.011124638840556145, + -0.002856416627764702, + 0.006662742234766483, + -0.020576901733875275, + -0.012536123394966125, + 0.00642526475712657, + 0.009418816305696964, + 0.0028413652908056974, + 0.01497110165655613, + -0.052338648587465286, + 0.01707160472869873, + -0.005348255392163992, + 0.014596489258110523, + -0.00498367752879858, + 0.014476078562438488, + -0.031199829652905464, + 0.00903751514852047, + 0.014007813297212124, + 0.011091191321611404, + -0.017459595575928688, + 0.014128223992884159, + 0.022985123097896576, + -0.00986701250076294, + 0.00855587050318718, + 0.008970620110630989, + 0.015546398237347603, + -0.008756555616855621, + 0.00960612203925848, + -0.004301348701119423, + 0.065557099878788, + 0.0025637508369982243, + 0.004716097842901945, + 0.01019479800015688, + -0.02286471240222454, + 0.009753291495144367, + 0.015559777617454529, + 0.049716364592313766, + -0.02014877460896969, + 0.012629776261746883, + 0.01862356811761856, + -0.00798726361244917, + 0.010141282342374325, + 0.010529273189604282, + 0.02424274943768978, + 0.006756395101547241, + -0.0036323985550552607, + -0.00272931600920856, + -0.000745043100323528, + 0.004304693546146154, + -0.01796799711883068, + -0.018851011991500854, + -0.014904206618666649, + 0.012255163863301277, + 0.00965963862836361, + 0.012067858129739761, + 0.020322700962424278, + 0.008268222212791443, + 0.0048532322980463505, + -0.009418816305696964, + 0.06191801279783249, + -0.0014691815013065934, + 0.02424274943768978, + 0.010602857917547226, + 0.025955259799957275, + -0.02814941667020321, + 0.0026624209713190794, + -0.006043963599950075, + 0.013318794779479504, + 0.009826875291764736, + -0.005495424382388592, + -0.0009114444255828857, + 0.0011196550913155079, + 0.004833163693547249, + 0.005575698334723711, + -0.007612651214003563, + 0.014181740581989288, + -0.017847586423158646, + 0.030959006398916245, + -0.006829979829490185, + 0.0241758543998003, + 0.0066259498707950115, + 0.0018128545489162207, + 0.029835170134902, + 0.01700470969080925, + -0.01814192533493042, + -0.005866691470146179, + -0.0012517727445811033, + -0.01331210508942604, + -0.025861607864499092, + -0.01297094114124775, + -0.01624210551381111, + -0.009238199330866337, + -0.014061328954994678, + 0.00798726361244917, + 0.013258589431643486, + 0.024443432688713074, + -0.0031674783676862717, + 0.003445092588663101, + 0.01396767608821392, + 0.006321577820926905, + 0.02697206474840641, + 0.005107433535158634, + -0.03355453163385391, + -0.0015176803572103381, + 0.025272931903600693, + -0.016469549387693405, + -0.009780049324035645, + -0.031788505613803864, + 0.03414320945739746, + -0.027052339166402817, + 0.016911055892705917, + -0.018396126106381416, + 0.011566145345568657, + -0.018155302852392197, + 0.012395643629133701, + 0.0077263726852834225, + 0.011131328530609608, + 0.03970887139439583, + 0.010362035594880581, + 0.018570052459836006, + -0.008636144921183586, + -0.002690851455554366, + -0.032751791179180145, + -0.02242320403456688, + -0.019426308572292328, + 0.028684576973319054, + -0.010168040171265602, + -0.01562667265534401, + -0.0010795181151479483, + 0.022128866985440254, + -0.024951836094260216, + -0.02465749718248844, + -0.0008031580946408212, + 0.0012684965040534735, + -0.008662902750074863, + -0.017392700538039207, + -0.0006116711883805692, + 0.0012057824060320854, + 0.011499251239001751, + 0.046237826347351074, + 0.0008963930304162204, + -0.026811515912413597, + -0.004334796220064163, + -0.004137455951422453, + 0.017018089070916176, + 0.019653750583529472, + 0.030878731980919838, + -0.002710919827222824, + 0.01593438908457756, + -0.002473442582413554, + -0.026477040722966194, + 0.014502836391329765, + -0.023547040298581123, + 0.011974205262959003, + 0.024884941056370735, + 0.02227603644132614, + -0.01110457070171833, + 0.029433799907565117, + -0.029032431542873383, + 0.00445855176076293, + -0.0020118672400712967, + -0.017847586423158646, + -0.01136546116322279, + 0.03029005602002144, + -0.00975998118519783, + -0.009111098945140839, + -0.013205073773860931, + -0.008729797787964344, + 0.03350101783871651, + -0.00032235030084848404, + 0.004043802618980408, + 0.02048324979841709, + 0.024670876562595367, + -0.010321898385882378, + -0.016161832958459854, + -0.00458899699151516, + 0.0058533125557005405, + 0.014168361201882362, + 0.018717221915721893, + -0.0038330836687237024, + -0.017165256664156914, + -0.0011840414954349399, + 0.003996976185590029, + 0.019412929192185402, + 0.006903564091771841, + 0.02424274943768978, + 0.013051214627921581, + 0.010188108310103416, + -0.019881194457411766, + 0.022811194881796837, + 0.003726051654666662, + 0.019359413534402847, + 0.0073450710624456406, + -0.014181740581989288, + -0.028256447985768318, + 0.032992616295814514, + -0.02679813839495182, + -0.001944972202181816, + -0.0007759820437058806, + 0.020991651341319084, + -0.01593438908457756, + -0.01167317759245634, + -0.010308519937098026, + -0.018061650916934013, + -0.01070989016443491, + -0.00024353961634915322, + -0.020309321582317352, + 0.003856496885418892, + -0.002455046633258462, + -0.009846944361925125, + -0.004388311877846718, + -0.04484640806913376, + -0.00205702125094831, + -0.006595847196877003, + -0.01012121420353651, + -0.012696671299636364, + -0.013225141912698746, + -0.008990688249468803, + -0.005301428958773613, + 0.029781654477119446, + -0.004538825713098049, + 0.01986781507730484, + -0.014395804144442081, + 0.0003520349564496428, + 0.015773842111229897, + -0.01770041696727276, + -0.008074226789176464, + -0.021928181871771812, + -0.03197580948472023, + -0.005669351201504469, + -0.001227523316629231, + -0.016924435272812843, + 0.0012124718632549047, + -0.0028681231196969748, + 0.02780156210064888, + 5.853312541148625e-05, + 0.012221716344356537, + -4.706167965196073e-05, + 0.0037762229330837727, + 0.01131194457411766, + 0.01343251671642065, + 0.018703842535614967, + 0.004264556337147951, + 0.01229530107229948, + -0.02307877503335476, + 0.004190972074866295, + -0.015921009704470634, + -0.0021857942920178175, + -0.0068433587439358234, + 0.026637589558959007, + -0.0073450710624456406, + 0.0036257090978324413, + -0.016884298995137215, + -0.0006877642590552568, + 0.010549341328442097, + -0.007579203695058823, + -0.020055120810866356, + -0.009291715919971466, + 0.012409023009240627, + -0.023814620450139046, + 0.0211789570748806, + -0.005709488410502672, + 0.020844481885433197, + 0.0235871784389019, + 0.00034910827525891364, + -0.007318313233554363, + -0.02725302428007126, + 0.0399496965110302, + 0.0020637107081711292, + -0.019399549812078476, + 0.05121481418609619, + -0.014516215771436691, + -0.012629776261746883, + -0.01724553108215332, + 0.0032427352853119373, + 0.00993390753865242, + 0.017365941777825356, + -0.003092221450060606, + 0.0003758662787731737, + -0.018636947497725487, + -0.0038631863426417112, + -0.0014532939530909061, + 0.024818046018481255, + -0.013753612525761127, + -0.018369367346167564, + -0.028309965506196022, + 0.013532859273254871, + -0.00870972964912653, + 0.012268543243408203, + -0.01234881766140461, + -0.022396447136998177, + 0.0006702042883262038, + 0.03152092546224594, + -0.016536444425582886, + 0.024122336879372597, + -0.013285347260534763, + -0.008876966312527657, + -0.017258910462260246, + -0.02010863833129406, + 0.003018636954948306, + -0.011392218992114067, + 0.01121160201728344, + -0.022757679224014282, + 0.04053837060928345, + 0.017580006271600723, + 0.023613935336470604, + 0.00033614737913012505, + 0.019613614305853844, + 0.007518998347222805, + -0.02489832043647766, + -0.0102951405569911, + -0.02459060214459896, + -0.012783634476363659, + -0.026677725836634636, + 0.01903831772506237, + 0.019265759736299515, + 0.015305575914680958, + -0.001827905885875225, + 0.03309964761137962, + 0.006411885842680931, + 0.025500373914837837, + -0.026236219331622124, + -0.017941240221261978, + -0.006371749099344015, + -0.0316547155380249, + -0.010101145133376122, + 0.0026256288401782513, + 0.01444932073354721, + -0.0014532939530909061, + -0.054960932582616806, + 0.007325002457946539, + 0.0008144466555677354, + -0.01402119267731905, + -0.015880873426795006, + 0.004997056443244219, + -0.003829738823696971, + -0.02511238306760788, + 0.030263299122452736, + 0.02331959828734398, + -0.01019479800015688, + 0.012375575490295887, + -0.015680188313126564, + -0.01514502801001072, + -0.02600877732038498, + 0.015519640408456326, + -0.0070708016864955425, + -0.004849887453019619, + -0.01901155896484852, + -0.029166221618652344, + -0.00514757027849555, + -0.022784437984228134, + 0.014904206618666649, + -0.013753612525761127, + -0.0029350181575864553, + -0.017432836815714836, + -0.029674623161554337, + -0.03529380261898041, + -0.011425666511058807, + -0.017820827662944794, + 0.013740233145654202, + 0.0024700979702174664, + 0.0004791354585904628, + 0.02959434874355793, + -0.005552285350859165, + -0.0089505510404706, + 0.008823450654745102, + -0.015720324590802193, + 0.023266080766916275, + 0.019332654774188995, + 0.045649148523807526, + 0.01786096580326557, + -0.01527881808578968, + -0.017018089070916176, + -0.0584929883480072, + 0.007264797110110521, + 0.0012576259905472398, + -0.005866691470146179, + 0.012549501843750477, + -0.0034618163481354713, + -0.006388472858816385, + 0.0008955568191595376, + -0.010221555829048157, + 0.013981055468320847, + -0.019078454002738, + 0.054131437093019485, + 0.010495825670659542, + 0.0016422723419964314, + -0.011124638840556145, + 0.002557061379775405, + 0.0061409613117575645, + 0.008937172591686249, + 0.002946724882349372, + 0.011612972244620323, + -0.01005431916564703, + -0.0135729955509305, + -0.008636144921183586, + 0.040618643164634705, + 0.00858931802213192, + 0.02946055866777897, + 0.008923793211579323, + -0.03235042095184326, + -0.010816921480000019, + -0.031922295689582825, + -0.03459809347987175, + 0.01835598796606064, + -0.02014877460896969, + 0.019988225772976875, + 0.004167558625340462, + -0.00939874816685915, + 0.02014877460896969, + -0.006117547862231731, + -0.0351867713034153, + -0.021058546379208565, + 0.020777586847543716, + 0.012783634476363659, + -0.008963930420577526, + 0.003903323318809271, + 0.01838274672627449, + 0.006562399677932262, + 0.01307128369808197, + -0.012890666723251343, + 0.008174569346010685, + -0.00832842756062746, + 0.0005569008644670248, + -0.02548699639737606, + -0.007432034704834223, + 0.010763405822217464, + -0.028256447985768318, + -0.01658996008336544, + -0.00015845753659959882, + -0.025152521207928658, + 0.010127902962267399, + -0.02410895936191082, + 0.0310125220566988, + -0.04455207288265228, + -0.028497271239757538, + -0.003028671257197857, + 0.01110457070171833, + 0.02562078647315502, + -0.023052018135786057, + -0.01737932115793228, + -0.0025938537437468767, + 0.043133895844221115, + -0.023680830374360085, + 0.029861928895115852, + 0.029514074325561523, + 0.0070641119964420795, + -0.002229275880381465, + 0.0076728565618395805, + 0.01329872664064169, + -0.016469549387693405, + 0.018302472308278084, + -0.004659236874431372, + -0.022195762023329735, + -0.009552606381475925, + 0.0023062052205204964, + 0.010201487690210342, + -0.010783473961055279, + -0.01779407076537609, + -0.0030587739311158657, + 0.017780691385269165, + 0.01165979914367199, + -0.0199748482555151, + -0.0029149497859179974, + 0.0018312506144866347, + 0.02635663002729416, + 0.008468907326459885, + 0.023399870842695236, + -0.0316547155380249, + 0.01634913869202137, + 0.024777907878160477, + -0.0184897780418396, + -0.004341485444456339, + -0.04880659282207489, + -0.033688321709632874, + -0.00010870437836274505, + 0.01055603101849556, + -0.013559617102146149, + -0.0044150701723992825, + -0.007050733081996441, + -0.03213635832071304, + -0.021259231492877007, + 0.0043214173056185246, + -0.007304934319108725, + 0.005234533920884132, + 0.022476719692349434, + -0.01129856612533331, + 0.011285186745226383, + 0.0256341639906168, + -0.014435941353440285, + -0.01383388601243496, + 0.02683827467262745, + 0.01665685512125492, + -0.032644759863615036, + 0.01835598796606064, + -0.018543293699622154, + 0.024844802916049957, + -0.01005431916564703, + -0.04995718598365784, + 0.0008963930304162204, + 0.001863025827333331, + -0.03342074155807495, + -0.0108838165178895, + 0.01363989058881998, + 0.027480466291308403, + -0.0009540899773128331, + 0.006863427348434925, + -0.016322379931807518, + 0.022944984957575798, + 0.008248154073953629, + 0.020683934912085533, + -0.013566305860877037, + 0.014917585067451, + -0.006779808551073074, + -0.009813496842980385, + -0.010335277765989304, + -0.02155357040464878, + -0.049207963049411774, + 0.0017258910229429603, + 0.01533233467489481, + 0.003973563201725483, + 0.006150995381176472, + 0.005719522479921579, + 0.01949320361018181, + 0.001817871700040996, + -0.00939874816685915, + 0.00544190825894475, + 0.008308359421789646, + -0.0036691909190267324, + 0.027855077758431435, + -0.02756074070930481, + -0.014208498410880566, + 0.006411885842680931, + 0.025995397940278053, + -0.033367227762937546, + -0.011974205262959003, + 0.015091512352228165, + -0.0019031628035008907, + 0.00017298629973083735, + 0.0286310613155365, + -0.024644117802381516, + -0.007104249205440283, + 0.010489135980606079, + 0.03446430340409279, + 0.012730118818581104, + -0.016616718843579292, + 0.003953494597226381, + 0.022637268528342247, + -0.018703842535614967, + -0.013185004703700542, + 0.011960825882852077, + -0.017513111233711243, + 0.0033982661552727222, + 0.011552766896784306, + -0.030637910589575768, + 0.010703200474381447, + -0.012308680452406406, + 0.03665846213698387, + 0.007110938895493746, + -0.0001287728809984401, + -0.012857219204306602, + -0.02441667579114437, + -0.012308680452406406, + 0.03649791330099106, + -0.00900406762957573, + -0.013238520361483097, + -0.008830140344798565, + 0.02314567007124424, + -0.017780691385269165, + -0.006512228399515152, + -0.013700095936655998, + 0.006823290139436722, + -0.016496308147907257, + -0.010341967456042767, + -0.01205447968095541, + -0.01557315606623888, + -0.0028965536039322615, + -0.00010661390842869878, + 0.00855587050318718, + -0.010616236366331577, + -0.014636626467108727, + 0.16975276172161102, + -0.045274537056684494, + 0.006722947582602501, + 0.0071176281198859215, + -0.01133201364427805, + -0.034919191151857376, + 0.038745585829019547, + -0.002108864951878786, + 0.018543293699622154, + 0.0083618750795722, + 0.011893930844962597, + 0.0026691106613725424, + -0.014944342896342278, + 0.008582628332078457, + 0.0036725355312228203, + 0.0023128946777433157, + -0.04088622331619263, + -0.028095901012420654, + -0.011097881011664867, + 0.024951836094260216, + 0.026022154837846756, + -0.015345713123679161, + -0.0014206826454028487, + -0.018917907029390335, + 0.031199829652905464, + 0.0007630211184732616, + -0.01776731200516224, + 0.010823611170053482, + 0.02662421017885208, + 0.013392379507422447, + -0.028336722403764725, + 0.011265118606388569, + 0.0009908821666613221, + -0.005020469892770052, + -0.012475918047130108, + 0.0076059615239501, + 0.0027845045551657677, + 0.007525687571614981, + 0.015720324590802193, + 0.030584394931793213, + 0.002627301262691617, + -0.029300009831786156, + -0.019586855545639992, + -0.020122015848755836, + -0.012074547819793224, + 0.013024456799030304, + -0.010582788847386837, + 0.008863587863743305, + -0.0030972384847700596, + -0.02093813568353653, + -0.009231510572135448, + 0.00493350625038147, + 0.005936931353062391, + 0.03890613466501236, + -0.013412447646260262, + -0.008080916479229927, + 0.006375093478709459, + 0.003428368829190731, + 0.018543293699622154, + -0.0014440958620980382, + -0.026891790330410004, + 0.015907632187008858, + -0.009746601805090904, + 0.014797174371778965, + -0.011318634264171124, + 0.016991330310702324, + -0.027614256367087364, + -0.011352081783115864, + 0.02135288529098034, + -0.02570105902850628, + -0.0241758543998003, + -0.00296679325401783, + -0.019091833382844925, + 0.013927538879215717, + -0.0274537093937397, + -0.027480466291308403, + -0.01127849705517292, + -0.00724472850561142, + 0.01431553065776825, + 0.022048592567443848, + 0.015720324590802193, + -0.0013470981502905488, + -0.013379000127315521, + -0.011010916903614998, + 0.016054799780249596, + -0.014074708335101604, + -0.0017961307894438505, + 0.0179011020809412, + 0.012877288274466991, + -0.046960290521383286, + -0.00691694300621748, + 0.009552606381475925, + -0.003239390440285206, + -0.006676121149212122, + -0.00793374702334404, + -0.0135729955509305, + -0.0009106082143262029, + 0.004331451375037432, + 0.00032757644657976925, + -0.005338221322745085, + -0.0253532063215971, + 0.05678047612309456, + 0.04029754921793938, + -0.021781012415885925, + -0.017472974956035614, + 0.02010863833129406, + 0.01271005067974329, + 0.0322166346013546, + 0.005308118183165789, + -0.01945306733250618, + -0.01097078062593937, + -0.020978271961212158, + 0.008937172591686249, + -0.017098361626267433, + 0.02100503072142601, + -0.0009432195220142603, + -0.008923793211579323, + 0.007706304080784321, + -0.004435138776898384, + -0.0003365654847584665, + 0.0021607086528092623, + -0.013285347260534763, + -0.0017258910229429603, + -0.0038799101021140814, + 0.00393342599272728, + -0.02014877460896969, + -0.02283795364201069, + 0.03020978346467018, + -0.002555388957262039, + 0.002617266960442066, + 0.027507225051522255, + -0.016028042882680893, + 0.02693192847073078, + -0.012930803932249546, + 0.009485711343586445, + -0.007318313233554363, + -0.018851011991500854, + -0.03438403084874153, + -0.026062292978167534, + 0.0013872351264581084, + 0.016951194033026695, + 0.013358931988477707, + 0.004224419128149748, + 0.0034785401076078415, + 0.005033848807215691, + -0.008442149497568607, + 0.013914160430431366, + -0.003940115682780743, + 0.00046910118544474244, + -0.04495343938469887, + -0.0014842328382655978, + -0.009057583287358284, + 0.014288771897554398, + -0.02555389143526554, + 0.018329231068491936, + -0.0029701380990445614, + -0.01527881808578968, + -0.011251739226281643, + 0.041929785162210464, + -0.009980734437704086, + -0.036685217171907425, + -0.03045060485601425, + 0.0036257090978324413, + -0.0006530624814331532, + -0.007712993770837784, + -0.001382217975333333, + -0.16921760141849518, + 0.011131328530609608, + -0.0025035454891622066, + -0.02194156125187874, + 0.025326447561383247, + -0.0012609708355739713, + 0.013552927412092686, + 0.011271807365119457, + -0.018436262384057045, + 0.00855587050318718, + 0.01831585168838501, + -0.0038163599092513323, + -0.02935352735221386, + -0.029835170134902, + -0.008495665155351162, + -0.017018089070916176, + -0.03679225221276283, + 0.014114845544099808, + 0.008890345692634583, + 0.012977629899978638, + 0.022717542946338654, + -0.021098682656884193, + 0.023092154413461685, + 0.009224820882081985, + 0.010134592652320862, + 0.014770416542887688, + -0.011806967668235302, + 0.032163117080926895, + -0.012937493622303009, + -0.007224660366773605, + -0.01313817873597145, + -0.0031173070892691612, + 0.010422240942716599, + -0.02303863875567913, + -0.025687681511044502, + -0.008187947794795036, + -0.020550144836306572, + -0.001356296124868095, + -0.0073517607524991035, + 0.037889327853918076, + 0.0077263726852834225, + 0.024496950209140778, + -0.004535481333732605, + 0.004217729903757572, + 0.01165979914367199, + 0.026410147547721863, + 0.013439205475151539, + -0.007779888808727264, + 0.0092448890209198, + -0.039441291242837906, + 0.01862356811761856, + -0.013807128183543682, + 0.005956999957561493, + 0.03516001254320145, + 0.007826714776456356, + -0.007137696724385023, + 0.010890506207942963, + 0.019573478028178215, + -0.015091512352228165, + 0.004284624941647053, + -0.0036524671595543623, + -0.02141978032886982, + -0.000945728097576648, + -0.025433478876948357, + -0.020991651341319084, + -0.021219095215201378, + -0.021446537226438522, + 0.024951836094260216, + -0.011786899529397488, + -0.007699614856392145, + -0.0028146072290837765, + 0.0028480547480285168, + -0.0006538986344821751, + -0.015024617314338684, + 0.02028256468474865, + 0.02190142311155796, + -0.007003906648606062, + -0.007331692148000002, + 0.020188910886645317, + 0.0005188543582335114, + -0.016469549387693405, + 0.046933531761169434, + -0.013305415399372578, + -0.02279781736433506, + -0.004388311877846718, + -0.020510006695985794, + -0.013887402601540089, + 0.027533981949090958, + -0.009592743590474129, + 0.0102951405569911, + 0.01835598796606064, + -0.019988225772976875, + -0.01438242569565773, + -0.031066039577126503, + 0.017472974956035614, + 0.0003004003665409982, + 0.0007312459638342261, + -0.01766028068959713, + 0.0012300318339839578, + -0.011546077206730843, + 0.004471930675208569, + -0.011679867282509804, + -0.03532056137919426, + 0.018944663926959038, + 0.028443755581974983, + 0.023787861689925194, + 0.0029818445909768343, + 0.02087124064564705, + 0.05929572880268097, + -0.00254869950003922, + 0.005799796432256699, + -0.007920368574559689, + 0.00713100703433156, + 0.0146232470870018, + 0.021031787618994713, + 0.012061168439686298, + -0.01976078376173973, + -0.02307877503335476, + 0.03366156294941902, + 0.0008353513549081981, + 0.035240285098552704, + -0.0155062610283494, + -0.00229449849575758, + 0.007739751599729061, + -0.014542973600327969, + -0.008221395313739777, + -0.08990687876939774, + 0.007197902072221041, + 0.007853473536670208, + 0.010355345904827118, + -0.010964090935885906, + -0.000945728097576648, + -0.005997136700898409, + -0.018770737573504448, + 0.009545916691422462, + 0.029808413237333298, + -0.036230333149433136, + -0.019854435697197914, + -0.02111206203699112, + 0.0028062453493475914, + 0.04928823560476303, + 0.008549180813133717, + 0.012910734862089157, + -0.011612972244620323, + -0.02469763532280922, + 0.0411805622279644, + -0.007947126403450966, + 0.00575296999886632, + -0.0009557623416185379, + -0.011820347048342228, + -0.01855667307972908, + -0.018958043307065964, + -0.03355453163385391, + 0.020122015848755836, + 0.023961789906024933, + -0.023841379210352898, + 0.018396126106381416, + -0.02238306775689125, + 0.010428930632770061, + 0.00039635287248529494, + 0.00921144150197506, + -0.0020068499725311995, + -0.028925398364663124, + -0.011117949150502682, + 0.02790859527885914, + -0.030985765159130096, + 0.006037273909896612, + 0.01157283503562212, + -0.010549341328442097, + -0.020336080342531204, + -0.00798726361244917, + -0.019439687952399254, + 0.012074547819793224, + 0.005104088690131903, + -0.009599432349205017, + -0.0071644545532763, + -0.009579364210367203, + -0.019881194457411766, + -0.041100289672613144, + -0.0025905088987201452, + 0.021326126530766487, + -0.0015193527797237039, + -0.009719843976199627, + 0.0074454136192798615, + 0.0015160079346969724, + -0.008649523369967937, + -0.006699534598737955, + -0.014288771897554398, + -0.04262549430131912, + 0.02069731429219246, + 0.010796853341162205, + 0.0019148694118484855, + -0.007325002457946539, + 0.00107366475276649, + 0.007498929742723703, + -0.006027239840477705, + -0.013981055468320847, + 0.00727817602455616, + -0.013940918259322643, + 0.01824895665049553, + -0.031092796474695206, + -0.0081946374848485, + -0.03352777659893036, + -0.009947286918759346, + 0.017365941777825356, + -0.007980573922395706, + -0.01062292605638504, + -0.015466124750673771, + 0.04048485681414604, + -0.03366156294941902, + 0.03826393932104111, + 0.003212632378563285, + -0.0017242187168449163, + -0.017820827662944794, + 0.03714010491967201, + -0.021406400948762894, + 0.010569410398602486, + 0.03350101783871651, + 0.04535480961203575, + 5.858538861502893e-05, + -0.020295944064855576, + 0.00990046001970768, + -0.0066794659942388535, + 0.02546023763716221, + 0.0035220219288021326, + 0.0059001389890909195, + -0.018168682232499123, + -0.022583752870559692, + -0.059830889105796814, + 0.015907632187008858, + 0.013185004703700542, + 0.018342608585953712, + -0.013994433917105198, + 0.01008776668459177, + 0.0004045056994073093, + 0.009773359633982182, + 0.024724392220377922, + 0.009793427772819996, + -0.013098041526973248, + 0.009218131192028522, + 0.002455046633258462, + 0.003376525128260255, + -0.020162153989076614, + -0.02238306775689125, + 0.0011656454298645258, + 0.007171144243329763, + 0.009492401033639908, + 0.016389274969697, + -0.01539922971278429, + 0.0037059830501675606, + 0.00014685544010717422, + 0.02935352735221386, + -0.04048485681414604, + -0.007993952371180058, + -0.012957561761140823, + 0.0008604369359090924, + -0.0013930883724242449, + -0.00595031026750803, + 0.012603018432855606, + -0.00381970452144742, + -0.02738681435585022, + 0.010188108310103416, + -0.0013496066676452756, + -0.005997136700898409, + 0.020443111658096313, + 0.023613935336470604, + 0.01600128412246704, + 0.049475543200969696, + -0.013425827026367188, + -0.028550786897540092, + 0.019158728420734406, + -0.01455635204911232, + -0.0059135183691978455, + 0.0018429573392495513, + 0.03922722861170769, + -0.000837023719213903, + 0.02562078647315502, + 0.004856577143073082, + 0.01976078376173973, + 0.02307877503335476, + 0.01593438908457756, + -0.011646419763565063, + -0.003226011525839567, + -0.003266148502007127, + 0.019653750583529472, + 0.0018713877070695162, + 0.005207776091992855, + -0.034571338444948196, + 0.035748690366744995, + 0.0089505510404706, + 0.019131969660520554, + -0.012215027585625648, + 9.652739390730858e-05, + -0.01514502801001072, + -0.019292518496513367, + -0.01129856612533331, + 0.004274590406566858, + -0.029407043009996414, + -0.008014021441340446, + 0.01062292605638504, + 0.020857861265540123, + 0.013352242298424244, + 0.0007801629835739732, + 0.001419010222889483, + 0.0026256288401782513, + 0.005512148141860962, + -0.022878089919686317, + 0.00936530064791441, + 0.014395804144442081, + 0.0010903885122388601, + 0.002692523878067732, + -0.0022978433407843113, + 0.029674623161554337, + -0.006258027628064156, + -0.025366583839058876, + 0.0010753371752798557, + -0.006990527734160423, + -0.007592582609504461, + -0.003936770837754011, + 0.022195762023329735, + -0.01824895665049553, + 0.0256341639906168, + 0.010074387304484844, + 0.03232366591691971, + -0.02758749946951866, + -0.0020770898554474115, + 0.03416996821761131, + 0.02817617543041706, + 0.0027661083731800318, + 0.00757251400500536, + 0.0029701380990445614, + 0.004234453663229942, + -0.01689767651259899, + 0.0013964331010356545, + -0.0017610109644010663, + -0.008703039959073067, + -0.003272837959229946, + 0.02452370710670948, + -0.011097881011664867, + -0.009947286918759346, + -0.004140800796449184, + 0.0070708016864955425, + -0.005361634306609631, + 0.0004222746938467026, + -0.015051375143229961, + -0.02659745328128338, + -0.03505298122763634, + 0.012723429128527641, + 0.02465749718248844, + -0.00347519526258111, + -0.0022660682443529367, + -0.003719362197443843, + 0.018101787194609642, + 0.001791113638319075, + -0.00793374702334404, + -0.005003746133297682, + 0.0003309212042950094, + -0.0167237501591444, + 0.016777265816926956, + 0.000972486101090908, + -0.022944984957575798, + -0.016402654349803925, + -0.011164776049554348, + 0.0025068901013582945, + 0.02218238264322281, + 0.007030664477497339, + 0.007846783846616745, + 0.12447822093963623, + 0.03433051332831383, + -0.0033715080935508013, + 0.02548699639737606, + 0.0016389274969696999, + 0.012730118818581104, + 0.02972813881933689, + -0.00401704479008913, + -0.0023246014025062323, + -0.029754897579550743, + -0.00709755951538682, + -0.0040404582396149635, + -0.013185004703700542, + -0.02045649103820324, + -0.01107112318277359, + 0.014114845544099808, + 0.007110938895493746, + 0.017406079918146133, + 0.0027627635281533003, + -0.010870438069105148, + 0.025152521207928658, + -0.015479503199458122, + 0.01303783617913723, + 0.018743978813290596, + -0.017299046739935875, + -0.012730118818581104, + 0.0026941963005810976, + 0.001065302873030305, + -0.001774389878846705, + -0.014128223992884159, + -0.009686396457254887, + 0.00939874816685915, + -0.04439152404665947, + -0.01862356811761856, + 0.04209033399820328, + -0.01172669418156147, + -0.012964251451194286, + -0.0161083173006773, + 0.012669913470745087, + -0.016603339463472366, + 0.004766268655657768, + 0.014596489258110523, + 0.003910013008862734, + -0.01707160472869873, + 0.015720324590802193, + -0.005375013221055269, + 0.005930241663008928, + -0.014516215771436691, + -0.0030303436797112226 + ], + "metadata": { + "source": "Thesis_Verladegeraeusche_in_Speditionen.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 41, + "has_images": true, + "image_count": 51, + "coordinates": "CoordinatesMetadata(points=((204.16666666666666, 189.02777777777797), (204.16666666666666, 642.3611111111111), (936.1666666666666, 642.3611111111111), (936.1666666666666, 189.02777777777797)), system=)", + "links": [], + "last_modified": "2025-05-05T22:59:16", + "_known_field_names": "frozenset({'cc_recipient', 'link_texts', 'url', 'filetype', 'category_depth', 'page_number', 'filename', 'orig_elements', 'detection_origin', 'email_message_id', 'page_name', 'coordinates', 'table_as_cells', 'link_start_indexes', 'sent_to', 'bcc_recipient', 'languages', 'last_modified', 'link_urls', 'file_directory', 'subject', 'data_source', 'detection_class_prob', 'image_base64', 'text_as_html', 'attached_to_filename', 'key_value_pairs', 'signature', 'sent_from', 'header_footer_type', 'parent_id', 'links', 'emphasized_text_contents', 'emphasized_text_tags', 'image_mime_type', 'is_continuation', 'image_path'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "Thesis_Verladegeraeusche_in_Speditionen.pdf", + "detection_class_prob": 0.2568194270133972, + "parent_id": "d45475a34bc527cde6987546fa6dd2f5", + "text_as_html": "
Flurf\u00f6rderger\u00e4t |Anzahl Einzelereignisse ElMax-PegelSchallleistungspegel
LAFmaxLWA,5sLWAmaxLWA,1hKlLWAT,1h
[dB(A)][dB(A)][dB(A)][dB(A)][dB(A)][dB(A)]
Gabelstapler29769,3100,7108,872,15,777,8
STABW [dB]6,54,96,54,92,9-
Gabelhubwagen9968,6100,7108,172,16,279,5
STABW [dB]6,45,16,4512,7-
", + "id": "5ba44de7-0ff3-4c0c-b018-67e92171e1c2", + "processing_timestamp": "2025-05-06T14:18:19.298665", + "chunk_number": 18, + "total_chunks": 49, + "chunking_strategy": "hybrid", + "word_count": 509 + } +} \ No newline at end of file diff --git a/data/processed/85fd305f-83de-70b0-47e8-2dc000000019.json b/data/processed/85fd305f-83de-70b0-47e8-2dc000000019.json new file mode 100644 index 0000000000000000000000000000000000000000..21ede24d5fb982ced9bfb9ceae946cc9b9289e4f --- /dev/null +++ b/data/processed/85fd305f-83de-70b0-47e8-2dc000000019.json @@ -0,0 +1,1570 @@ +{ + "id": "85fd305f-83de-70b0-47e8-2dc000000019", + "content": "Die Gr\u00fcnde f\u00fcr die Wahl der Messpositionen und des Aufbaus sind in 5.3 begr\u00fcndet. Die Verladet\u00e4tigkeiten bestehen in dieser Thesis somit aus der Beladung eines Anh\u00e4- ngers. Der Ablauf beginnt mit dem Einsatz eines geeigneten Flurf\u00f6rderger\u00e4ts, dass die Ladeeinheit mit den Gabeln anhebt und zum jeweiligen Anh\u00e4nger bef\u00f6rdert. Der Bela- devorgang beginnt, wenn das Flurf\u00f6rderger\u00e4t die \u00dcberladebr\u00fccke ber\u00fchrt und in den Anh\u00e4nger eintritt. Anschlie\u00dfend wird die Ladeeinheit l\u00fcckenlos formschl\u00fcssig und/oder kraftschl\u00fcssig beladen, um ein Verrutschen w\u00e4hrend des Transports zu vermeiden. Im letzten Schritt f\u00e4hrt das Flurf\u00f6rderger\u00e4t aus dem Anh\u00e4nger \u00fcber die \u00dcberladebr\u00fccke heraus und der Vorgang ist beendet (siehe Abbildung 9). 38\n5 Beschreibung der Untersuchungsmethodik\n\n[IMAGE: Sachs REINFAHRT RAUSFAHRT Das Flurf\u00f6rderger\u00e4t Das Flurf\u00f6rderger\u00e4t Das Flurf\u00f6rderger\u00e4t transportiert die bef\u00f6rdert die f\u00e4hrt leer aus dem Ladung von der Ladeeinheit im Anh\u00e4nger heraus \u00dcberladebr\u00fccke in Anh\u00e4nger und setzt auf die den Anh\u00e4nger sie dort ab \u00dcberladebr\u00fccke.] Abbildung 9: Prozessablauf des Beladevorgangs\nIn diesem Zusammenhang konzentriert sich die Thesis darauf, detailliert die einzelnen Vorg\u00e4nge eines Beladevorgangs zu beurteilen und insbesondere die L\u00e4rmemissionen die dabei entstehen zu untersucht. Hierbei werden die unterschiedlichen Phasen des Bela- dens, wie beispielsweise die Reinfahrt des Flurf\u00f6rderger\u00e4ts \u00fcber die \u00dcberladebr\u00fccke, genauer betrachtet und die entstehenden Ger\u00e4usche analysiert. Ziel ist es ein besseres Verst\u00e4ndnis f\u00fcr die L\u00e4rmemissionen eines Beladevorgangs zu erlangen und Ma\u00dfnahmen zu identifizieren, die zur Reduktion der L\u00e4rmbelastung beitragen kann. ## 5.2 Messequipment und Messaufbau\n\nUm die L\u00e4rmemissionen eines Beladevorgangs zu beschreiben, ist eine Messung des A- bewerteten Schalldruckpegels unerl\u00e4sslich, um die notwendigen akustischen Gr\u00f6\u00dfen bestimmen zu k\u00f6nnen. Der A-bewertete Schalldruckpegel ber\u00fccksichtigt die nat\u00fcrliche frequenzabh\u00e4ngige Empfindlichkeit des menschlichen Geh\u00f6rs und bietet somit eine ge- nauere Beurteilung der Lautst\u00e4rke. [79] Um eine solch eine Messung durchf\u00fchren zu k\u00f6nnen, sind bestimmte Messsysteme notwendig. Hierzu geh\u00f6ren Schallpegelmesser, die in der Lage sind, den Schalldruckpegel und den A-bewerteten Schalldruckpegel zu messen. In dieser Thesis wurde der Handschallpegelmesser von der Firma Norsonic\n39\n5 Beschreibung der Untersuchungsmethodik\nNor140 verwendet. Der Norsonic Nor140 ist ein zuverl\u00e4ssiges Messger\u00e4t, welches spezi- ell f\u00fcr akustische Messungen entwickelt wurde. Es zeichnet sich durch eine hohe Genau- igkeit und vielseitigen Einstellungsm\u00f6glichkeiten aus, die eine detaillierte Analyse des A- bewerteten Schalldruckpegels erm\u00f6glichen. [80]\nUm eine fehlerfreie Messung zu gew\u00e4hrleisten, ist die Kalibrierung des Handschallpegel- messers notwendig. Hierbei kam, ebenso von der Firma Norsonic, der Akustische Kalib- rator Typ 1251 Klasse 1 zur Verwendung. Hierbei sendet der Kalibrator ein sinusf\u00f6rmiges Schallsignal mit 1000 Hz an das Messmikrofon. Das Messger\u00e4t muss so eingestellt wer- den, dass ein Schalldruckpegel von 114 dB bezogen auf 20 \u03bcPa angezeigt wird. [81]\nUm die Mikrofone in der gew\u00fcnschten H\u00f6he mit einem Mikrofonhalter zu positionieren, wurden Mikrofonst\u00e4nder verwendet und f\u00fcr die variable Positionierung ein langer Stab. Da die Mikrofone in einer gewissen H\u00f6he liegen, wurde jeweils ein 5 m langes Mikrofon- kabel an die Handschallpegelmesser zwischengeschaltet. Damit es zu keinen St\u00f6rger\u00e4u- schen durch Wind kommt, wurde jedes Mikrofon mit einem Windschutz ausger\u00fcstet. Um die Schadensfreiheit der Messger\u00e4te zu gew\u00e4hrleisten und diese auf dem Betriebs- gel\u00e4nde sichtbar zu machen, wurde die ortsfeste Mikrofonposition zus\u00e4tzlich mit Pylo- nen ausgestattet.", + "embedding": [ + 0.008315703831613064, + -0.0014989537885412574, + -0.006298264488577843, + -0.03578876703977585, + -0.006906487513333559, + 0.01586032658815384, + -0.017907677218317986, + -0.0016809221124276519, + -0.009485618211328983, + -0.0004935579490847886, + 0.009565385058522224, + 0.0173227209597826, + -0.030364613980054855, + 0.016591522842645645, + 0.0058828117325901985, + 0.0016244205180555582, + 0.03360847011208534, + 0.011572853662073612, + -0.012476879172027111, + -0.010150343179702759, + -0.02716064266860485, + -0.010768536478281021, + 0.004626482259482145, + -0.009738213382661343, + -0.02019432932138443, + 0.016697879880666733, + 0.03427319601178169, + -0.02113823965191841, + -0.018838291987776756, + 0.012696238234639168, + -0.009911042638123035, + -0.016604818403720856, + -0.003895285539329052, + 0.00400496507063508, + -0.027067581191658974, + -0.023650897666811943, + -0.0025591892190277576, + -0.007278733421117067, + 0.02111165039241314, + -0.015621026046574116, + 0.015235485509037971, + 0.004869106691330671, + 0.0013261253479868174, + -0.01015699002891779, + -1.8825205188477412e-05, + 0.004307414870709181, + 0.0068466621451079845, + 0.004746132995933294, + -0.024342210963368416, + 0.01821345090866089, + 8.86991765582934e-05, + 0.007684214971959591, + -0.027652539312839508, + 0.012928890995681286, + -0.00793016329407692, + -0.004021583124995232, + -0.005251323338598013, + 0.00965179968625307, + -0.010755241848528385, + -0.028237497434020042, + -0.02427573874592781, + 0.018399573862552643, + -0.02887563221156597, + 0.011566205881536007, + -0.00319566298276186, + -0.013234664686024189, + -0.00567009998485446, + -0.021483896300196648, + -0.0161129217594862, + -0.019635962322354317, + 0.013301136903464794, + 0.01785450056195259, + 0.0023132411297410727, + 0.01153961755335331, + 0.03895285353064537, + -0.012436995282769203, + 0.01637881062924862, + 0.003921874333173037, + -0.0032903861720114946, + 0.012410406023263931, + 0.02268039993941784, + -0.03475179523229599, + -0.017881087958812714, + 0.05785762146115303, + 0.024302328005433083, + -0.00600246200338006, + -0.002304932102560997, + 0.005759837571531534, + 0.001684245653450489, + -0.007272086106240749, + 0.010143695399165154, + 0.045733045786619186, + -0.006191908847540617, + 0.004510155878961086, + 0.019649256020784378, + 0.004636453464627266, + -0.005673423409461975, + 0.021989086642861366, + -0.0003282077086623758, + -0.027253704145550728, + -0.017548726871609688, + 0.0018014033557847142, + -0.0041844407096505165, + 0.0030278200283646584, + -0.02087234891951084, + -0.013959214091300964, + -0.0016053096624091268, + -0.003476509125903249, + 0.0016859074821695685, + -0.04185105487704277, + -0.019330188632011414, + 0.03188018500804901, + -0.013148250058293343, + 0.011506381444633007, + 0.0045334212481975555, + -0.013932625763118267, + 0.02204226329922676, + -0.02281334437429905, + 0.017096713185310364, + -0.015301957726478577, + 0.01651175692677498, + 0.024036437273025513, + 0.012417053803801537, + -0.0034366257023066282, + 0.027253704145550728, + 0.006687128450721502, + -0.010708712041378021, + 0.0037656642962247133, + -0.00544077018275857, + -0.01507595181465149, + -0.02452833391726017, + 0.011785564944148064, + 0.02032727561891079, + 0.0083888228982687, + -0.0068400148302316666, + 0.00033713996526785195, + -0.018585696816444397, + 0.00426753144711256, + -0.02346477471292019, + -0.022773461416363716, + 0.002969656605273485, + -0.0018944648327305913, + -0.03453908488154411, + -0.0312686413526535, + 0.0062317922711372375, + 0.029939191415905952, + -0.0008633109391666949, + 0.014318165369331837, + -0.01134684681892395, + 0.0026323089841753244, + -0.020699521526694298, + -0.027067581191658974, + 0.01968913897871971, + -0.012948833405971527, + -0.010230110026896, + 0.0017631817609071732, + -0.016059743240475655, + 0.011971687898039818, + -0.02375725284218788, + -0.016551639884710312, + 0.025379180908203125, + 0.019383367151021957, + 0.015807148069143295, + 0.011200607754290104, + 0.011094251647591591, + 0.011586148291826248, + 0.004633129574358463, + -0.018027327954769135, + -0.005799720995128155, + -0.00767756812274456, + -0.006580772344022989, + -0.0036991918459534645, + -0.007657626178115606, + 0.010655533522367477, + -0.018718641251325607, + 0.0004094287287443876, + 0.019104182720184326, + -0.008741127327084541, + -0.03342234715819359, + -0.027599360793828964, + -0.021842846646904945, + -0.00694637093693018, + 0.008029871620237827, + 0.00554380239918828, + -0.03156111761927605, + 0.007431619800627232, + 0.007970046252012253, + 0.014145337045192719, + -0.008249230682849884, + -0.0036260720808058977, + 0.014703705906867981, + 0.007511386647820473, + 0.006015756633132696, + -0.017362603917717934, + -0.6313287615776062, + -0.009485618211328983, + -0.0033070044592022896, + -0.0020357188768684864, + 0.005091789644211531, + 0.03541652113199234, + 0.01809380017220974, + -0.00011383406672393903, + 0.014185220934450626, + 0.045307621359825134, + -0.005507242400199175, + 0.018333101645112038, + -0.000715825182851404, + 0.004304090980440378, + -0.010183579288423061, + -0.01560773141682148, + -0.010243404656648636, + -0.016192689538002014, + 0.030630504712462425, + -0.00445697782561183, + -0.04193082079291344, + 0.012742768973112106, + -0.0073319110088050365, + 0.010442822240293026, + -0.0040780846029520035, + -0.008089696988463402, + 0.008894014172255993, + -0.012470231391489506, + -0.0028466826770454645, + 0.0018761848332360387, + -0.015979977324604988, + 0.01442452147603035, + -0.029194699600338936, + 0.016977064311504364, + 0.033768005669116974, + 0.011446556076407433, + -0.018678758293390274, + 0.024448566138744354, + 0.003122543217614293, + 0.0066173323430120945, + -0.00714578852057457, + -0.030072135850787163, + -0.0066173323430120945, + -0.024581512436270714, + 0.00439382903277874, + -0.009339379146695137, + 0.0500936396420002, + -0.009485618211328983, + 0.029992369934916496, + -0.017163187265396118, + -0.00032135273795574903, + 0.005021993536502123, + 0.011054368689656258, + 0.004104673862457275, + 0.01462393905967474, + 0.0053842682391405106, + 0.036533258855342865, + -0.015115834772586823, + -0.02244109846651554, + -0.0034798327833414078, + 0.008495179004967213, + 0.02700110897421837, + -0.0195561945438385, + -0.02623002789914608, + -0.027519594877958298, + 0.011905215680599213, + -0.034166838973760605, + -0.031428173184394836, + 0.020765993744134903, + -0.012390464544296265, + -0.0120713971555233, + 0.01628575101494789, + -0.008581593632698059, + -0.001659318571910262, + 0.02716064266860485, + 0.02257404290139675, + -0.0074515617452561855, + -0.011971687898039818, + 0.009226376190781593, + 0.02111165039241314, + -0.00491563742980361, + 0.010097164660692215, + -0.014318165369331837, + -0.0037856060080230236, + 0.018957942724227905, + -0.006248410325497389, + -0.00714578852057457, + 0.004859135951846838, + -0.0024760987143963575, + -0.003506421810016036, + 0.01707012578845024, + 0.03254491090774536, + -0.01808050647377968, + -0.023637602105736732, + -0.0007926839753054082, + 0.03868696466088295, + -0.006926429457962513, + 0.017641788348555565, + 0.0049488740041852, + -0.03384777158498764, + -0.023385006934404373, + 0.002647265326231718, + 0.012044807896018028, + -0.021085061132907867, + 0.03437954932451248, + 0.010462763719260693, + 0.0040780846029520035, + 0.016338927671313286, + 0.005636863876134157, + -0.029699889943003654, + 0.00010386320354882628, + -0.005786426831036806, + -0.008947191759943962, + -0.0009663432138040662, + -0.016458578407764435, + -0.023052645847201347, + 0.017389193177223206, + 0.006614008918404579, + 0.0010585737181827426, + -0.017641788348555565, + 0.013653441332280636, + 0.014078864827752113, + 0.015434903092682362, + -0.006228468380868435, + -0.015368429943919182, + 0.05860210955142975, + 0.022122031077742577, + -0.008874071761965752, + 0.010422879830002785, + 0.0039351689629256725, + 0.007205613423138857, + 0.003566246945410967, + 0.020805876702070236, + -0.018173567950725555, + 0.01187197957187891, + 0.033129867166280746, + 0.027732305228710175, + 0.004782692529261112, + 0.008933897130191326, + -0.010243404656648636, + -0.032092899084091187, + 0.0011499733664095402, + 0.010117107070982456, + -0.011632679030299187, + -0.016751056537032127, + -0.042436011135578156, + -0.01785450056195259, + 0.012297403067350388, + -0.0013784724287688732, + 0.004809281788766384, + -0.015900209546089172, + -0.013301136903464794, + -0.0031175578478723764, + 0.010183579288423061, + -0.018957942724227905, + 0.012064749374985695, + -0.02044692635536194, + -0.011293669231235981, + 0.0013510525459423661, + -0.022135324776172638, + 0.00711255194619298, + 0.019994912669062614, + -0.0516623891890049, + -0.006291617173701525, + -0.015660909935832024, + -0.017615199089050293, + 0.02845020778477192, + -0.0033252842258661985, + -0.009691683575510979, + -0.03648008033633232, + 0.011273727752268314, + 0.004081408493220806, + -0.01707012578845024, + -0.0033269461710006, + -0.016724469140172005, + 0.008235936053097248, + -0.01653834618628025, + -0.008508473634719849, + -0.015182306990027428, + -0.022786755114793777, + 0.017907677218317986, + 0.025379180908203125, + -0.01612621545791626, + 0.0049189613200724125, + 0.009691683575510979, + 0.005254647228866816, + -0.001219769474118948, + -0.0017066801665350795, + -0.024355504661798477, + 0.04655730351805687, + -0.01849263533949852, + 0.012137869372963905, + -0.0037822823505848646, + 0.0010901481145992875, + -0.015089246444404125, + 0.00593931321054697, + 0.016485167667269707, + -0.005985843949019909, + -0.018333101645112038, + 0.009984161704778671, + 0.004982110112905502, + 0.00423429487273097, + 0.024182677268981934, + 0.00026194300153292716, + 0.007664273492991924, + -0.004772721789777279, + 0.01187197957187891, + -0.007890279404819012, + 0.035363342612981796, + 0.027891838923096657, + 0.002218517940491438, + -0.024209266528487206, + -0.03190677613019943, + -0.013294490054249763, + 0.009824628010392189, + 0.051875099539756775, + -0.007119199261069298, + 0.02071281522512436, + 0.012722826562821865, + -0.00747815053910017, + -0.0046896315179765224, + -0.003985023126006126, + 0.039006032049655914, + -0.0012280785012990236, + -0.008814246393740177, + -0.008242583833634853, + 0.011493086814880371, + -0.0033585205674171448, + -0.0035762176848948, + -0.011898568831384182, + -0.0038554021157324314, + 0.009478971362113953, + -0.0087211849167943, + 0.029566945508122444, + 0.022800050675868988, + 0.010668828152120113, + 0.018014034256339073, + 0.0046696895733475685, + 0.03382118046283722, + 0.011127487756311893, + 0.031295228749513626, + 0.021324362605810165, + 0.013786385767161846, + -0.018027327954769135, + 0.018333101645112038, + -0.023265358060598373, + 0.009911042638123035, + 0.022853227332234383, + -0.01298206951469183, + -0.005118378438055515, + -0.01417192630469799, + -0.005035288166254759, + -0.0004744470934383571, + -0.01890476420521736, + 0.00426753144711256, + -0.004270854871720076, + 0.027971606701612473, + -0.02035386487841606, + -0.0027502975426614285, + 0.015833737328648567, + -0.0030610563699156046, + 0.033369168639183044, + 0.00925296451896429, + -0.019596077501773834, + -0.0015587789239361882, + -0.000928952475078404, + -0.011612736620008945, + -0.012756062671542168, + -0.027227114886045456, + -0.016192689538002014, + 0.004107997287064791, + -0.009392556734383106, + -0.0010286611504852772, + 0.004380534403026104, + 0.02781207300722599, + -0.013606910593807697, + 0.008574945852160454, + 0.017495548352599144, + 0.020912231877446175, + -0.004230971448123455, + -0.0030544090550392866, + -0.02648262307047844, + -0.002617352642118931, + 0.023943375796079636, + -0.0010369701776653528, + -0.0031823685858398676, + -0.03270444646477699, + 0.021802963688969612, + -0.0344061404466629, + -0.014411226846277714, + -0.014530877582728863, + -0.004410447087138891, + -0.03257150202989578, + -0.0074449144303798676, + 0.0036028067115694284, + 0.007903574034571648, + 0.035070862621068954, + 0.015474786050617695, + 0.0003174059384036809, + -0.0012845800956711173, + -0.0006622317596338689, + -0.02845020778477192, + -0.01850592903792858, + -0.03320963680744171, + 0.021404128521680832, + -0.011459850706160069, + -0.0220289696007967, + -0.020952116698026657, + 0.022760165855288506, + -0.012995364144444466, + -0.02188272960484028, + 0.005324443336576223, + 0.00200248253531754, + 0.007537975907325745, + -0.01108760479837656, + -0.00022372133389580995, + 0.005530507769435644, + 0.006710393819957972, + 0.037729762494564056, + 0.014570760540664196, + -0.030338026583194733, + -0.02389019913971424, + 0.005832957569509745, + 0.008940543979406357, + 0.028290674090385437, + 0.03568241000175476, + -0.007524681277573109, + 0.02556530386209488, + -0.029832834377884865, + -0.00911337323486805, + 0.01838628016412258, + -0.038075417280197144, + 0.026309795677661896, + 0.03528357669711113, + -0.0041977353394031525, + 0.014770178124308586, + 0.034166838973760605, + -0.021058471873402596, + -0.001039462978951633, + -0.0018130360404029489, + 0.01068212278187275, + -0.0044403597712516785, + 0.0449087880551815, + 0.008900661021471024, + -0.012795946560800076, + -0.00010967953858198598, + -0.007757334969937801, + 0.033103279769420624, + 0.0005326105165295303, + -0.012317344546318054, + 0.021723195910453796, + 0.02084575966000557, + -0.00028728562756441534, + -0.013281195424497128, + 0.001143326167948544, + 0.028264084830880165, + 0.027067581191658974, + 0.010283287614583969, + -0.0066538923420012, + 0.00149064464494586, + -0.017748143523931503, + 0.011067662388086319, + 0.010190226137638092, + 0.0012837491231039166, + 0.0028682861011475325, + 0.018931353464722633, + 0.008116286247968674, + -0.019609373062849045, + 0.006085552740842104, + 0.005999138578772545, + 0.00547068240121007, + 0.01613951101899147, + -0.009153256192803383, + -0.004955521319061518, + 0.036001477390527725, + -0.03634713590145111, + 0.002078925957903266, + 0.0037556933239102364, + 0.0066838045604527, + -0.03235878795385361, + -0.012762710452079773, + -0.015660909935832024, + -0.015714086592197418, + -0.014158631674945354, + -0.016099628061056137, + -0.034831564873456955, + 0.014490993693470955, + -0.015448196791112423, + -0.006058963946998119, + -0.018559107556939125, + -0.03897944465279579, + -0.007710804231464863, + -0.02057987079024315, + 0.01141996681690216, + -0.0046630422584712505, + -0.01462393905967474, + -0.03305010125041008, + -0.012536703608930111, + 0.0183463953435421, + -0.0021055147517472506, + 0.01383956428617239, + -0.005959255155175924, + -0.001975893508642912, + 0.009226376190781593, + -0.017349310219287872, + 0.0021670018322765827, + -0.02020762488245964, + -0.01298871636390686, + -0.014278282411396503, + 0.014078864827752113, + -0.004473595879971981, + -0.009911042638123035, + 0.01667129062116146, + 0.017522137612104416, + -0.007531328592449427, + 0.01769496686756611, + -0.002339830156415701, + -0.004619835410267115, + -0.008295761421322823, + 0.021683312952518463, + -0.006793484557420015, + 0.014211809262633324, + 0.01992844045162201, + -0.019582783803343773, + 0.012928890995681286, + -0.029540356248617172, + -0.005367650184780359, + -0.004889048635959625, + 0.01417192630469799, + 0.012038161046802998, + -0.0031906776130199432, + 0.005467358976602554, + 0.0003325699653942138, + 0.01859899051487446, + 0.006258381064981222, + -0.006152025423943996, + -0.0018778466619551182, + 0.0043340036645531654, + 0.00846858974546194, + 0.021802963688969612, + 0.010582413524389267, + 0.024448566138744354, + 0.025658365339040756, + 0.006820073351264, + -0.0003236377378925681, + -0.034831564873456955, + 0.054108574986457825, + 0.005460711661726236, + -0.009359320625662804, + 0.057379018515348434, + -0.00923967082053423, + -0.0033917566761374474, + -0.03097616136074066, + 0.0045699807815253735, + 0.012948833405971527, + 0.02702769823372364, + 0.018146978691220284, + -0.020925527438521385, + -0.018692051991820335, + -0.028503386303782463, + -5.940975097473711e-05, + 0.011984982527792454, + -0.013932625763118267, + -0.002100529382005334, + -0.021709902212023735, + 0.014743588864803314, + -0.008521768264472485, + 0.003077674424275756, + 0.009851217269897461, + -0.024182677268981934, + -0.008568299002945423, + 0.01978220045566559, + -0.026814986020326614, + 0.03552287817001343, + -0.022627221420407295, + 0.004134586546570063, + -0.03722457215189934, + -0.016711173579096794, + -0.002407964551821351, + -0.013985803350806236, + 0.0161129217594862, + -0.02283993363380432, + 0.04264872521162033, + 0.03655984625220299, + 0.03156111761927605, + -0.000866634538397193, + 0.021723195910453796, + -0.004443683195859194, + -0.014251693151891232, + -0.021404128521680832, + -0.020380452275276184, + -0.0041711460798978806, + -0.016352223232388496, + 0.04025571420788765, + 0.014982890337705612, + 0.002946391236037016, + 0.008475237525999546, + 0.003802224062383175, + 0.004473595879971981, + 0.03905921056866646, + -0.017229659482836723, + -0.007165729999542236, + -0.01599327102303505, + -0.027493005618453026, + -0.006102170795202255, + -0.0011408333666622639, + 0.020938821136951447, + 0.024714456871151924, + -0.018146978691220284, + -0.007046079728752375, + 0.021058471873402596, + -0.020393747836351395, + -0.014185220934450626, + 0.001036139321513474, + 0.020633047446608543, + -0.047035906463861465, + 0.015820443630218506, + 0.015049362555146217, + -0.0012887346092611551, + 0.001046941033564508, + 0.002276681363582611, + -0.024581512436270714, + -0.0167776457965374, + 0.026868164539337158, + -0.0002864547132048756, + -0.001733269076794386, + -0.010210168547928333, + -0.03538993373513222, + -0.0068666040897369385, + -0.023424891754984856, + 0.009525502100586891, + -0.0133077846840024, + -0.018572403118014336, + -0.018293218687176704, + -0.04182446375489235, + -0.031534530222415924, + 0.003729104297235608, + -0.019104182720184326, + 0.02911493368446827, + 0.004061466548591852, + 0.012377169914543629, + 0.016232572495937347, + -0.011453202925622463, + 0.00800328329205513, + -0.0036360430531203747, + -0.007830454967916012, + 0.01174568198621273, + 0.01929030567407608, + 0.032863978296518326, + 0.015328546985983849, + -0.019715728238224983, + -0.015448196791112423, + -0.062377747148275375, + 0.03764999657869339, + -0.014397932216525078, + 0.010602355934679508, + 0.018785113468766212, + -0.018944647163152695, + 0.011991630308330059, + 0.005636863876134157, + 0.019516311585903168, + 0.01200492400676012, + -0.002186943544074893, + 0.03751705214381218, + 0.02664215862751007, + -0.021816257387399673, + -0.007524681277573109, + 0.010775184258818626, + 0.006567478179931641, + -0.01331443153321743, + 0.0011341861682012677, + -0.005151615012437105, + -0.007577859330922365, + -0.0009921012679114938, + -0.00649435818195343, + 0.0424891896545887, + 0.009512207470834255, + 0.009259612299501896, + 0.008800952695310116, + -0.029540356248617172, + -0.0034266547299921513, + -0.022800050675868988, + -0.026017317548394203, + 0.014211809262633324, + -0.012975421734154224, + 0.019051004201173782, + 0.0012679619248956442, + -0.002245106967166066, + 0.015567847527563572, + 0.00931943766772747, + -0.009332732297480106, + -0.019210537895560265, + 0.004174469970166683, + 0.01810709573328495, + -0.0008396301418542862, + 0.02266710437834263, + 0.011187313124537468, + 0.002800151938572526, + 0.024222560226917267, + 0.006886545568704605, + -0.0009829613845795393, + -0.012104633264243603, + -0.004699602257460356, + -0.01212457474321127, + 0.00603569857776165, + -0.00226006330922246, + -0.027466416358947754, + -0.014038980938494205, + -0.009166550822556019, + -0.01784120500087738, + 0.021537072956562042, + -0.018864881247282028, + 0.0016061405185610056, + -0.03156111761927605, + -0.02229486033320427, + -8.111716306302696e-05, + 0.02032727561891079, + 0.015368429943919182, + -0.017482254654169083, + -0.025099996477365494, + -0.014690411277115345, + 0.03081662766635418, + -0.015381724573671818, + 0.017761439085006714, + 0.035469699651002884, + -0.013228017836809158, + 0.006115465424954891, + 0.016046449542045593, + 0.00892060250043869, + 0.00851512048393488, + 0.013141603209078312, + 0.00012432425864972174, + -0.027838662266731262, + -0.011207254603505135, + -0.003486479865387082, + 0.021311067044734955, + -0.012536703608930111, + 0.014145337045192719, + -0.0053909155540168285, + -0.010409585200250149, + 0.00800993014127016, + -0.009219728410243988, + -0.0003304927085991949, + -0.0019077593460679054, + 0.017548726871609688, + -0.012443642131984234, + 0.03786270692944527, + -0.008734479546546936, + 0.0072454968467354774, + 0.019835378974676132, + -0.01835969090461731, + 0.0026356326416134834, + -0.024461861699819565, + -0.022095441818237305, + 0.024860696867108345, + 0.013533790595829487, + -0.0449087880551815, + -0.011579500511288643, + -0.015913505107164383, + -0.014517582952976227, + -0.009405851364135742, + 0.019596077501773834, + -0.016764352098107338, + 0.01023675687611103, + 0.012476879172027111, + -0.004493537358939648, + 0.00413126265630126, + 0.020407041534781456, + 0.002560851164162159, + -0.002368080895394087, + 0.016963768750429153, + 0.005596980452537537, + -0.03852743282914162, + -0.005866193678230047, + -0.03998982533812523, + 0.025272825732827187, + 0.006241763010621071, + -0.02556530386209488, + 0.0038753438275307417, + -0.010336466133594513, + -0.03541652113199234, + -0.008422059006989002, + 0.009259612299501896, + 0.003406713018193841, + -0.004167822655290365, + 0.007265438791364431, + -0.005098436959087849, + 0.023664191365242004, + 0.003506421810016036, + 0.011592795141041279, + -0.0029679948929697275, + -0.003592835972085595, + 0.0057831029407680035, + 0.011965041048824787, + -0.00567009998485446, + -0.015647614374756813, + -0.0453873872756958, + 0.004550039302557707, + 0.03084321692585945, + -0.000630657363217324, + 0.012902302667498589, + 0.010329818353056908, + 0.001778137986548245, + -0.011739034205675125, + 0.0011640987358987331, + 0.005969225894659758, + 0.020925527438521385, + -0.0025974109303206205, + 0.018426163122057915, + -0.012769357301294804, + -0.016830824315547943, + 0.008947191759943962, + 0.014796767383813858, + -0.03515063226222992, + -0.013540438376367092, + 0.010130401700735092, + -0.01717648096382618, + -0.001791432499885559, + 0.011333552189171314, + -0.02177637442946434, + 0.007265438791364431, + -0.025498831644654274, + 0.030922982841730118, + 0.015767265111207962, + -0.03291715681552887, + 0.0051748803816735744, + 0.016977064311504364, + -0.015142424032092094, + -0.008182758465409279, + 0.009924336336553097, + -0.0322258435189724, + 0.008761068806052208, + 0.013274548575282097, + -0.03161429613828659, + 0.009911042638123035, + 0.003802224062383175, + 0.0148765342310071, + 0.000170231782249175, + 0.014211809262633324, + -0.013613557443022728, + -0.026017317548394203, + -0.03517721965909004, + 0.03424660488963127, + 0.016564933583140373, + -0.01042952761054039, + -0.014557466842234135, + 0.00957203283905983, + -0.014982890337705612, + 0.008747774176299572, + -0.021723195910453796, + 0.0073385583236813545, + -0.02190931886434555, + -0.002982951235026121, + 0.002869948046281934, + -0.010269992984831333, + 0.009405851364135742, + 0.004955521319061518, + 0.01705683022737503, + -0.024820812046527863, + -0.014517582952976227, + 0.1913342922925949, + -0.04227647930383682, + -0.02361101470887661, + 0.018692051991820335, + -0.01572738215327263, + -0.01995502971112728, + 0.013434082269668579, + 0.003566246945410967, + 0.010735300369560719, + 0.02714734897017479, + 0.010196873918175697, + -0.0024727750569581985, + -0.012995364144444466, + -0.004363916348665953, + 0.010648886673152447, + -0.007664273492991924, + -0.02229486033320427, + -0.010110459290444851, + 0.0017615199321880937, + 0.028795864433050156, + 0.02649591863155365, + -0.02334512397646904, + -0.00548065360635519, + -0.015979977324604988, + 0.03624077886343002, + 0.012217636220157146, + -0.0024561570025980473, + 0.02543235942721367, + 0.013400846160948277, + 0.01141996681690216, + -0.029992369934916496, + -0.000953048758674413, + 0.017628492787480354, + -0.007225555367767811, + 0.0037856060080230236, + 0.01495630107820034, + 0.00694637093693018, + -0.01665799506008625, + 0.019250420853495598, + 0.034672029316425323, + 0.02402314357459545, + -0.024182677268981934, + -0.014185220934450626, + -0.019117476418614388, + -0.011778918094933033, + 0.0013834577985107899, + -0.000208765035495162, + 0.003439949359744787, + -0.001753210905008018, + -0.005932665895670652, + -0.013168192468583584, + 0.014012392610311508, + 0.01757531613111496, + 0.021603545174002647, + -0.009877805598080158, + -0.01586032658815384, + 0.0031208815053105354, + -0.005796397570520639, + 0.016352223232388496, + -0.0009223052184097469, + -0.04030889272689819, + 0.020407041534781456, + -0.003410036675632, + 0.018333101645112038, + -0.01306183636188507, + 0.009199786931276321, + -0.015660909935832024, + -0.007272086106240749, + -0.006384678650647402, + -0.014132042415440083, + -0.014849944971501827, + -0.0041777933947741985, + -0.00859488733112812, + 0.011586148291826248, + -0.02427573874592781, + -0.04155857488512993, + 0.008501825854182243, + -8.989360503619537e-05, + 0.03201313316822052, + 0.019994912669062614, + -0.001434974023140967, + 0.0006431209621950984, + -0.0002924787695519626, + -0.028290674090385437, + 0.006447827443480492, + -0.009877805598080158, + 0.018984531983733177, + 0.013327726162970066, + 0.024368800222873688, + -0.03711821511387825, + -0.023278651759028435, + -0.0083888228982687, + -0.008674655109643936, + -0.0035463052336126566, + -0.003174059558659792, + -0.010655533522367477, + 0.03499109670519829, + 0.015461491420865059, + -0.005387592129409313, + 0.001278763753362, + -0.028370441868901253, + 0.044536542147397995, + 0.05022658407688141, + -0.014982890337705612, + -0.02113823965191841, + 0.002796828281134367, + -0.006324853748083115, + 0.04331344738602638, + -0.009478971362113953, + -0.012191046960651875, + 0.006893192883580923, + -0.01691059023141861, + 0.010808420367538929, + -0.014610644429922104, + 0.013852858915925026, + 0.012277461588382721, + -0.0028716097585856915, + -0.0014574084198102355, + 0.002113823778927326, + -0.0021636781748384237, + -0.004732838366180658, + -0.006075582001358271, + 0.02109835483133793, + -0.0038753438275307417, + 0.010422879830002785, + -0.0337945930659771, + -0.045041732490062714, + 0.023770548403263092, + -0.00826252531260252, + 0.014158631674945354, + 0.022082148119807243, + -0.01838628016412258, + 0.025937549769878387, + -0.013407493010163307, + 0.008402117528021336, + 0.00787698570638895, + -0.024475155398249626, + -0.04078749567270279, + -0.015368429943919182, + -0.010954659432172775, + 0.015248780138790607, + 0.011154077015817165, + 0.0015479772118851542, + 0.0013244635192677379, + 0.017096713185310364, + 0.0001795794814825058, + 0.025538714602589607, + 0.009665094316005707, + -0.02898198738694191, + -0.03398071601986885, + -0.02612367272377014, + 0.008348939940333366, + 0.01837298460304737, + -0.016312338411808014, + 0.01290894951671362, + 0.0018180215265601873, + -0.00846194289624691, + -0.045174676924943924, + 0.01437134388834238, + 0.006657215766608715, + -0.027705717831850052, + -0.02506011351943016, + -0.0007353514665737748, + -0.02152377925813198, + -0.004799311049282551, + -0.009884453378617764, + -0.16793599724769592, + 0.008887366391718388, + 0.014185220934450626, + -0.01887817494571209, + 0.024754339829087257, + 0.006793484557420015, + 0.024501744657754898, + 0.024887284263968468, + -0.02898198738694191, + 9.794299694476649e-05, + 0.02321217954158783, + -0.00433068023994565, + -0.019861968234181404, + -0.024741046130657196, + -0.011659267358481884, + -0.0049256086349487305, + -0.02100529335439205, + 0.003659308422356844, + 0.030231669545173645, + 0.010243404656648636, + 0.0027669155970215797, + -0.017282836139202118, + -0.004011612385511398, + 0.010329818353056908, + -0.0011358479969203472, + 0.00626502837985754, + -0.026283206418156624, + 0.024289032444357872, + -0.015315252356231213, + -0.009219728410243988, + -0.018173567950725555, + 0.016564933583140373, + 0.016166100278496742, + -0.00800328329205513, + -0.004879077896475792, + -0.009518854320049286, + 0.0010652210330590606, + 0.002158692805096507, + -0.00977145042270422, + 0.009798038750886917, + 0.010981248691678047, + 0.03895285353064537, + -0.006992901675403118, + 0.005277912598103285, + 0.0026406180113554, + 0.03230560943484306, + 0.018200157210230827, + -0.02543235942721367, + 0.01200492400676012, + -0.01757531613111496, + 0.010662181302905083, + -0.016604818403720856, + 0.0009538796730339527, + 0.02452833391726017, + -0.0016609802842140198, + 0.011333552189171314, + 0.004895695950835943, + 0.02124459482729435, + 0.012776005081832409, + 0.00990439485758543, + 0.006547536235302687, + -0.025219647213816643, + 0.0017581962747499347, + -0.012377169914543629, + -0.019489722326397896, + -0.022720282897353172, + -0.0030195110011845827, + 0.029566945508122444, + -0.004593246150761843, + -0.007085963152348995, + 0.0036991918459534645, + -0.03044438175857067, + 0.004779369104653597, + -0.011041074059903622, + 0.015222190879285336, + 0.022853227332234383, + 0.0026572360657155514, + 0.006447827443480492, + 0.010442822240293026, + -0.007471503224223852, + -0.010017397813498974, + 0.045706454664468765, + -0.00573324877768755, + -0.033635061234235764, + -0.009731566533446312, + -0.02492716908454895, + -0.027572771534323692, + 0.015567847527563572, + -0.009365968406200409, + 0.008495179004967213, + 0.01994173415005207, + -0.027253704145550728, + -0.01147314440459013, + -0.03991005942225456, + 0.017668377608060837, + -0.005085142329335213, + 0.011094251647591591, + -0.01980878971517086, + -0.010768536478281021, + -0.005188174545764923, + 0.004353945609182119, + -0.012164458632469177, + -0.03156111761927605, + 0.032465144991874695, + -0.004201058764010668, + 0.007405031006783247, + -0.0010510956635698676, + 0.016166100278496742, + 0.060941942036151886, + -0.018279923126101494, + -0.006261704955250025, + -0.0061453781090676785, + 0.012430348433554173, + 0.017482254654169083, + 0.020393747836351395, + 0.0117988595739007, + 0.0029380822088569403, + -0.01782791130244732, + 0.011891921050846577, + 0.014730295166373253, + 0.04841853305697441, + -0.022494276985526085, + -0.011386730708181858, + 0.018293218687176704, + -0.009432440623641014, + -0.020938821136951447, + -0.10194215178489685, + 0.003385109594091773, + 0.010382996872067451, + 0.004101349972188473, + 0.013480613008141518, + 0.013261253945529461, + 0.008800952695310116, + -0.0005508903996087611, + -0.0030211727134883404, + 0.04126609489321709, + -0.028264084830880165, + -0.03031143732368946, + -0.01560773141682148, + -0.01015699002891779, + 0.023717369884252548, + -0.005307825282216072, + 0.0024628043174743652, + -0.01613951101899147, + -0.012436995282769203, + 0.029992369934916496, + -0.015820443630218506, + 0.0034565674141049385, + -0.005636863876134157, + -0.018652169033885002, + -0.01913077011704445, + -0.009944278746843338, + -0.02898198738694191, + -0.00474945642054081, + 0.031933363527059555, + -0.021829552948474884, + 0.031109105795621872, + -0.012802593410015106, + 0.01141996681690216, + -0.008767715655267239, + 0.0010070576099678874, + -0.010861597955226898, + -0.026575684547424316, + -0.0013701634015887976, + 0.0406811386346817, + -0.017415782436728477, + 0.0018495959229767323, + 0.01245693676173687, + 0.0083888228982687, + -0.015501375310122967, + -0.005537155084311962, + -0.014278282411396503, + -0.011552911251783371, + -0.008083050139248371, + 0.005367650184780359, + -0.003729104297235608, + -0.024980345740914345, + -0.03145476430654526, + -0.037596818059682846, + 0.005164909176528454, + 0.020167741924524307, + -0.02192261442542076, + -0.006833367981016636, + -0.005650158040225506, + -0.009206433780491352, + -0.017947562038898468, + -0.020034795626997948, + 0.01042952761054039, + -0.034299783408641815, + 0.02545894868671894, + 0.012224283069372177, + -0.013759797438979149, + -0.014264987781643867, + -0.009492265991866589, + 0.020619753748178482, + 0.013121661730110645, + -0.01862557977437973, + 0.01199827715754509, + -0.007950104773044586, + 0.006813426036387682, + -0.025658365339040756, + -0.017508843913674355, + -0.03948463499546051, + -0.01982208527624607, + 0.004287472926080227, + -0.011519675143063068, + -0.00813622772693634, + -0.033528704196214676, + 0.037304338067770004, + -0.01812038943171501, + 0.03419342637062073, + 0.02047351375222206, + 0.0023198884446173906, + 0.0037756350357085466, + 0.02214862033724785, + -0.0023996555246412754, + 0.006178614217787981, + 0.03124205209314823, + 0.0173227209597826, + 0.001371825230307877, + -0.04698272794485092, + 0.011852038092911243, + -0.007657626178115606, + 0.01942325010895729, + -0.0015230500139296055, + 0.007837101817131042, + -0.009233023039996624, + -0.021018588915467262, + -0.043472982943058014, + 0.025246236473321915, + 0.021616840735077858, + -0.01245028991252184, + -0.027386648580431938, + -0.010037340223789215, + 0.01068876963108778, + 0.0001838378666434437, + 0.02204226329922676, + 0.009758155792951584, + -0.00878765806555748, + 0.001053588348440826, + -0.0016127878334373236, + -0.010070576332509518, + -0.02847679704427719, + -0.030790038406848907, + 0.006045669317245483, + 0.020247507840394974, + 0.007591153495013714, + 0.014185220934450626, + -0.01298206951469183, + 0.012423700653016567, + -0.004473595879971981, + 0.028689509257674217, + -0.04118632897734642, + -0.005361002869904041, + 0.003908580169081688, + -0.004500184673815966, + -0.0042043826542794704, + -0.004151204600930214, + -0.0018778466619551182, + 0.005430798977613449, + -0.00787698570638895, + 0.014916417188942432, + -0.008741127327084541, + -0.010948012582957745, + 0.018585696816444397, + 0.029699889943003654, + 0.023119118064641953, + 0.05272594839334488, + 0.004008288495242596, + -0.021444011479616165, + 0.005341061390936375, + -0.029673300683498383, + 0.0030095402617007494, + 0.010708712041378021, + 0.014211809262633324, + -0.008023224771022797, + 0.003292048117145896, + -0.0045766280964016914, + 0.025512125343084335, + 0.01760190539062023, + 0.01917065493762493, + -0.014358049258589745, + -0.0013834577985107899, + 0.005414180923253298, + 0.01285577192902565, + 0.01305518951267004, + 0.009505560621619225, + -0.03499109670519829, + 0.04722202941775322, + 0.0008583255112171173, + 0.007484797853976488, + -0.011114193126559258, + 0.007012843620032072, + -0.01745566539466381, + -0.025618482381105423, + -0.005128349643200636, + 0.0019310245988890529, + -0.02060646004974842, + -0.018692051991820335, + -0.002100529382005334, + 0.016684584319591522, + 0.020154446363449097, + -0.0061320834793150425, + -0.005311148706823587, + -0.0006289955344982445, + 0.008169463835656643, + -0.016751056537032127, + 0.02440868318080902, + 0.012802593410015106, + 0.030205080285668373, + 0.012490172870457172, + -0.00046946166548877954, + 0.048737600445747375, + -0.011559559032320976, + -0.029673300683498383, + 0.0025010257959365845, + -0.014690411277115345, + 0.009186492301523685, + -0.02778548374772072, + 0.01679094135761261, + 0.0018928030040115118, + 0.012789299711585045, + 0.007989988662302494, + 0.015222190879285336, + 0.003333593253046274, + 0.0034598910715430975, + 0.041399043053388596, + 0.025392476469278336, + 0.0012546675279736519, + 5.436589276541781e-07, + -0.012510115280747414, + -0.008834188804030418, + 0.0015479772118851542, + 0.02442197874188423, + -0.0083888228982687, + -0.038873087614774704, + 0.013254606164991856, + 0.020300686359405518, + -0.02385031431913376, + 0.008222642354667187, + 0.014397932216525078, + 0.013281195424497128, + -0.019077593460679054, + 0.02057987079024315, + -0.008774363435804844, + -0.022241681814193726, + -0.016485167667269707, + 0.018426163122057915, + 0.0281843189150095, + -0.00011715769505826756, + -0.004928932059556246, + 0.00212878012098372, + 0.016312338411808014, + 0.000368298904504627, + 0.0055039189755916595, + -0.011493086814880371, + -0.007531328592449427, + -0.014145337045192719, + 0.027519594877958298, + 0.015793854370713234, + -0.011147430166602135, + -0.027227114886045456, + -0.01625916175544262, + -0.015807148069143295, + 0.020938821136951447, + 0.0027802102267742157, + 0.005886135622859001, + 0.12050125747919083, + 0.01278265193104744, + -0.0069862543605268, + 0.016724469140172005, + -0.008215994574129581, + 0.01952960528433323, + 0.024209266528487206, + 0.006338147912174463, + 0.004363916348665953, + -0.04363251477479935, + 0.013341020792722702, + 0.00022289043408818543, + -0.003745722584426403, + -0.0179874449968338, + -0.0030244963709264994, + 0.009279553778469563, + -0.0002845851704478264, + 0.016046449542045593, + -0.037065036594867706, + -0.006042345426976681, + 0.02415608800947666, + -0.033369168639183044, + 0.016059743240475655, + 0.040096182376146317, + -0.013759797438979149, + -0.012609823606908321, + 0.016844118013978004, + 0.01068876963108778, + 0.01560773141682148, + -0.009711625054478645, + -0.009585327468812466, + 0.010642238892614841, + -0.05716630816459656, + -0.016724469140172005, + 0.03015190362930298, + -0.012104633264243603, + -0.00669377576559782, + -0.008348939940333366, + 0.010502646677196026, + 0.00012141608021920547, + -0.005846251733601093, + 0.032996922731399536, + -0.0037224572151899338, + -0.02387690357863903, + -0.006879898719489574, + 0.005935989785939455, + -0.002481084084138274, + -0.01624586619436741, + -0.012350580655038357 + ], + "metadata": { + "source": "Thesis_Verladegeraeusche_in_Speditionen.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 41, + "has_images": true, + "image_count": 51, + "coordinates": "CoordinatesMetadata(points=((204.16666666666666, 189.02777777777797), (204.16666666666666, 642.3611111111111), (936.1666666666666, 642.3611111111111), (936.1666666666666, 189.02777777777797)), system=)", + "links": [], + "last_modified": "2025-05-05T22:59:16", + "_known_field_names": "frozenset({'cc_recipient', 'link_texts', 'url', 'filetype', 'category_depth', 'page_number', 'filename', 'orig_elements', 'detection_origin', 'email_message_id', 'page_name', 'coordinates', 'table_as_cells', 'link_start_indexes', 'sent_to', 'bcc_recipient', 'languages', 'last_modified', 'link_urls', 'file_directory', 'subject', 'data_source', 'detection_class_prob', 'image_base64', 'text_as_html', 'attached_to_filename', 'key_value_pairs', 'signature', 'sent_from', 'header_footer_type', 'parent_id', 'links', 'emphasized_text_contents', 'emphasized_text_tags', 'image_mime_type', 'is_continuation', 'image_path'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "Thesis_Verladegeraeusche_in_Speditionen.pdf", + "detection_class_prob": 0.2568194270133972, + "parent_id": "d45475a34bc527cde6987546fa6dd2f5", + "text_as_html": "
Flurf\u00f6rderger\u00e4t |Anzahl Einzelereignisse ElMax-PegelSchallleistungspegel
LAFmaxLWA,5sLWAmaxLWA,1hKlLWAT,1h
[dB(A)][dB(A)][dB(A)][dB(A)][dB(A)][dB(A)]
Gabelstapler29769,3100,7108,872,15,777,8
STABW [dB]6,54,96,54,92,9-
Gabelhubwagen9968,6100,7108,172,16,279,5
STABW [dB]6,45,16,4512,7-
", + "id": "5ba44de7-0ff3-4c0c-b018-67e92171e1c2", + "processing_timestamp": "2025-05-06T14:18:19.298665", + "chunk_number": 19, + "total_chunks": 49, + "chunking_strategy": "hybrid", + "word_count": 500 + } +} \ No newline at end of file diff --git a/data/processed/85fd305f-83de-70b0-47e8-2dc000000020.json b/data/processed/85fd305f-83de-70b0-47e8-2dc000000020.json new file mode 100644 index 0000000000000000000000000000000000000000..403b8948d42c7bb57de2e5339d27ffccf2ecd4a0 --- /dev/null +++ b/data/processed/85fd305f-83de-70b0-47e8-2dc000000020.json @@ -0,0 +1,1570 @@ +{ + "id": "85fd305f-83de-70b0-47e8-2dc000000020", + "content": "Damit es zu keinen St\u00f6rger\u00e4u- schen durch Wind kommt, wurde jedes Mikrofon mit einem Windschutz ausger\u00fcstet. Um die Schadensfreiheit der Messger\u00e4te zu gew\u00e4hrleisten und diese auf dem Betriebs- gel\u00e4nde sichtbar zu machen, wurde die ortsfeste Mikrofonposition zus\u00e4tzlich mit Pylo- nen ausgestattet. Zusammengefasst wurden folgende Ger\u00e4te verwendet (siehe Tabelle\n8):\n\n| Schallpegelmessger\u00e4te | Fa. | Norsonic-Tippkemper | GmbH | Typ | 140, | geeicht | Verwendete | Ger\u00e4teeinstel- | Zeitbewertung | Fast, | A-bewertung | lung | und | Konfiguration | Aufzeichnung | des | Pegel- | (1-Sekunden | Mittelungspegel | LAeq, | LACeq, | Terzspektrum | und | Maximalpe- | Zeit-Verlaufs | gel | LAFmax | mit | den | internen | Speichern | der | Norsonic-Messger\u00e4te | Kalibrator | Fa. | Norsonic-Tippkemper | GmbH | Typ | 1251 | \u00fcberpr\u00fcft, | erf\u00fcllt | Klasse | IEC | Klasse | 1 |\n|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|\n\nWeitere Ger\u00e4te: Mikrofonkabel 5 m, Mikrofonst\u00e4nder mit Mikrofonhalterung, Pylonen, Armbanduhr mit Sekundenanzeige, Klemmbrett f\u00fcr den Aufschrieb, Laser-Entfernungsmesser Fa. Bosch GLM 40 Professional und Meterstab\nTabelle 8: Verwendete Messger\u00e4te und Equipment\nDie folgende Tabelle gibt eine Zusammenfassung \u00fcber die relevanten Daten zur Ei- chung/Kalibrierung (Stand 27.07.2021) f\u00fcr die verwendeten Handschallpegelmesser Norsonic Nor140 mit den jeweiligen Mikrofonen dar (siehe Tabelle 9). 40\n5 Beschreibung der Untersuchungsmethodik\n\n| Bezeichnung | Serien- | Kalibrator | Eichung | intern | nummer | (Eichkette) | Datum | G\u00fcltig | bis | Erweiterte | Messunsi- | cherheit | 140-1 | 1403303 | 33706 | 22.01.2020 | 31.12.2022 | 0,5 | dB | 140-2 | 1405444 | 33706 | 20.02.2019 | 31.12.2021 | 0,5 | dB | 140-3 | 1406583 | 19909 | 22.01.2020 | 31.12.2022 | 0,5 | dB | Kalibrierung | DKD/DAkkS2 | Bezeichnung | Serien- | Kalibrator | Erweiterte | Messunsi- | intern | nummer | (Eichkette) | Datum | G\u00fcltig | bis | cherheit | \u2264 | 2 | kHz | / | > | 2 | kHz | 140-1 | 1403303 | 33706 | 18.08.2020 | 18.08.2022 | 0,35 | dB | / | \u2264 | 0,65 | dB | 140-2 | 1405444 | 33706 | 16.07.2021 | 16.07.2023 | 0,35 | dB | / | \u2264 | 0,65 | dB | 140-3 | 1406583 | 19909 | 21.01.2020 | 21.01.2022 | 0,35 | dB | / | \u2264 | 0,65 | dB |\n|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|\n\nTabelle 9: Handschallpegelmesser Norsonic 140, Stand: 27.07.2021\n(Quelle: Datenbank von Heine+Jud)\n\n## 5.3 Vorgehensweise bei der Messwerterfassung\n\nBevor die eigentliche Messung beginnt, ist eine Planung erforderlich, die den Standort der Messger\u00e4te, die Messzeitpunkte und die M\u00f6glichkeiten auf dem Betriebsgel\u00e4nde festgelegt. Somit wurde am 23.03.2023 die \u00f6rtliche Situation begutachtet und eine Pro- bemessung durchgef\u00fchrt, um alle Abl\u00e4ufe der Messung zu verinnerlichen und eventu- elle Optimierungen vorzunehmen. Am 24.04.2023 fand eine Messung statt die nicht aus- gewertet werden konnte, da ein Messger\u00e4t nicht richtig aufgezeichnet hat. In Tabelle 10 sind die Messungstage aufgef\u00fchrt. Die Tabelle 10 gibt einen \u00dcberblick \u00fcber die verschie- denen Datumsangaben, an denen die Messungen durchgef\u00fchrt wurden. - 2 DKD/DAkkS = Deutscher Kalibrierdienst/ Deutsche Akkreditierungsstelle GmbH, ist eine Deutsche Akkre- ditierungsstelle. Die DAkkS ist f\u00fcr die Akkreditierung von Konformit\u00e4tsbewertungen zust\u00e4ndig, die Pr\u00fc- fungen, Kalibrierungen, Inspektionen und Zertifizierungen durchf\u00fchren. [82]\n41\n5 Beschreibung der Untersuchungsmethodik\n\n| Datum | Zweck | 23.03.2023 | \u00d6rtliche | Begutachtung | und | Probemessung | 17.04.2023 | Messung | der | Verladevorg\u00e4nge | an | 8 | Verladezonen | 24.04.2023 | Messung | (Defekt) | 26.04.2023 | Messung | der | Verladevorg\u00e4nge | an | 8 | Verladezonen | 27.04.2023 | Messung | der | Verladevorg\u00e4nge | an | 8 | Verladezonen | 03.05.2023 | Messung | der | Verladevorg\u00e4nge | an | 8 | Verladezonen |\n|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|\n\nTabelle 10: \u00dcberblick \u00fcber die verschiedenen Messungstage\nAm Tag der Probemessung wurde ein geeigneter Ort gesucht, der eine nahezu st\u00f6rungs- freie Messung erm\u00f6glichte und den Betriebsablauf nicht beeintr\u00e4chtigte. Zun\u00e4chst wurde die gro\u00dfe Umschlaghalle als erstes Messort in Betracht gezogen. Allerdings traten bei der Positionierung der Mikrofone erste Schwierigkeiten auf, da im normalen Be- triebsablauf nahezu alle Verladestationen besetzt waren, wodurch es schwierig war, ein Mikrofon im Nahfeld zu platzieren. Im Fernfeld wiederum waren die Zugmaschinen in Bewegung. Diese Umst\u00e4nde erschwerten die Aufstellung der Mikrofone sowohl im Nah- als auch im Fernfeld. Durch den reichlichen Betrieb war zudem der Einfluss von Fremd- ger\u00e4uschen enorm gro\u00df und konnte nicht ausgeschlossen werden. Nach Absprache mit dem Lagerpersonal wurde die Probemessung im Exportbereich des Unternehmens fort- gef\u00fchrt, wo auf der einen Seite die Beladung und auf der anderen Seite die Entladung stattfanden (siehe Abbildung 10). Da die Entladestationen zu der Seite der gro\u00dfen Um- schlaghalle ausgerichtet sind, war die Positionierung der Mikrofone wie oben beschrie- ben aufgrund des hohen Betriebs nicht m\u00f6glich. Daher beschr\u00e4nkte sich der Bereich der Messung auf die Beladestationen des Exportbereichs. [IMAGE: ]\n\nAbbildung 10: Exportbereich von au\u00dfen\n42\n5 Beschreibung der Untersuchungsmethodik\n\n## Im Folgenden wird nun das eigentliche Messvorgehen detailliert beschrieben. Vor Be-\n\nginn der Messung m\u00fcssen die Messger\u00e4te auf ihre Funktionsf\u00e4higkeit gepr\u00fcft werden, um eine fehlerfreie Messung zu gew\u00e4hrleisten. Hierbei werden die Einstellungen der Schallpegelmesser kontrolliert, die Uhrzeit mit der Uhr des Protokollierers abgeglichen und die Mikrofone kalibriert.", + "embedding": [ + 0.012145699001848698, + -0.001116404659114778, + -0.0030690920539200306, + -0.0381031297147274, + -0.0023798123002052307, + 0.02648664079606533, + 0.0007684980519115925, + -0.013053849339485168, + -0.004870693199336529, + -0.020763330161571503, + 0.009244843386113644, + 0.015824036672711372, + -0.02921762503683567, + 0.009375512599945068, + -0.0012062396854162216, + 0.00848696194589138, + 0.028407476842403412, + -0.0033875980880111456, + 0.016490448266267776, + -0.016085375100374222, + -0.014229872263967991, + 0.011655689217150211, + -0.012145699001848698, + 0.009349378757178783, + 0.005435837432742119, + 0.004197746980935335, + 0.013066916726529598, + -0.020593460649251938, + -0.01658191718161106, + 0.015458161942660809, + -0.0008771167485974729, + -0.00296945683658123, + -0.00982632115483284, + 0.010897808708250523, + -0.023729519918560982, + -0.017352866008877754, + -0.003684870433062315, + -0.009205643087625504, + 0.02430446445941925, + -0.0049262274987995625, + -0.003144226735457778, + 0.000304826651699841, + 0.005912779830396175, + -0.01954810693860054, + -0.020136117935180664, + 0.014308273792266846, + 0.008950837887823582, + 0.01801927760243416, + -0.019874779507517815, + 0.008304025046527386, + 0.01121794804930687, + -0.012616108171641827, + -0.005667774938046932, + 0.01645124889910221, + 0.0028812550008296967, + -0.009427780285477638, + 0.012818644754588604, + 0.018385151401162148, + -0.01666031777858734, + -0.028302941471338272, + -0.041631195694208145, + -0.002920455764979124, + -0.023337513208389282, + 0.00468448968604207, + -0.00848696194589138, + -0.02945283055305481, + -0.025924762710928917, + -0.010616869665682316, + -0.027545060962438583, + -0.016359779983758926, + 0.016856322064995766, + 0.0344182588160038, + 0.0014349108096212149, + 0.004570154007524252, + 0.023285245522856712, + -0.02433059923350811, + 0.017875541001558304, + -0.025428220629692078, + 0.0036914038937538862, + 0.021664947271347046, + 0.02958349883556366, + -0.02963576652109623, + -0.03465346246957779, + 0.04278108477592468, + 0.014608812518417835, + -0.005811511073261499, + -0.010950076393783092, + 0.015288292430341244, + -0.013236786238849163, + -0.015614964999258518, + 0.02976643666625023, + 0.047354504466056824, + -0.006076116114854813, + -0.008787501603364944, + 0.02669571153819561, + 0.012518106028437614, + 0.01004845928400755, + 0.032040078192949295, + -0.0041160788387060165, + -0.013563459739089012, + -0.00614798441529274, + -0.013171452097594738, + 0.008715633302927017, + 0.001373659586533904, + -0.015432028099894524, + -0.006938532926142216, + 0.015445095486938953, + -0.017039259895682335, + -0.0019845380447804928, + -0.014504277147352695, + -0.01618991047143936, + 0.03828606382012367, + -0.004615888465195894, + -0.004005009774118662, + 0.03899167850613594, + -0.007121469359844923, + 0.03873034194111824, + -0.020697996020317078, + 0.01311265118420124, + 0.00782708264887333, + 0.019613441079854965, + 0.0177318062633276, + 0.01899929717183113, + -0.011146079748868942, + 0.025754893198609352, + -0.008049220778048038, + -0.01736593246459961, + -0.003374531166628003, + -0.017431266605854034, + -0.020867865532636642, + -0.01973104476928711, + 0.003134426660835743, + 0.02974030189216137, + 0.0013703928561881185, + -4.0834114770404994e-05, + -0.0028142870869487524, + -0.020776396617293358, + 0.002894321922212839, + -0.014060001820325851, + -0.02960963360965252, + 0.009480047971010208, + 0.0017803673399612308, + -0.021717214956879616, + -0.02646050602197647, + 0.012635708786547184, + 0.031151529401540756, + -0.01500082015991211, + 0.013445856980979443, + -0.009048840031027794, + 0.006847064476460218, + -0.010675670579075813, + -0.022736435756087303, + 0.007990419864654541, + -0.004805358592420816, + -0.00850002933293581, + 0.005710242781788111, + -0.0005565689643844962, + 0.015222958289086819, + -0.02903468906879425, + -0.021403608843684196, + 0.008055754005908966, + 0.01496161986142397, + 0.007428542245179415, + 0.005524038802832365, + 0.010460066609084606, + 0.00839549396187067, + 0.006298253778368235, + -0.002825720701366663, + -0.006327654235064983, + 0.005801710765808821, + -0.01894702948629856, + -0.009120707400143147, + -0.018646489828824997, + 0.026943981647491455, + -0.006513857748359442, + 0.008375893346965313, + -0.0013173085171729326, + 0.0058801122941076756, + -0.02503621205687523, + -0.03522840887308121, + -0.030785655602812767, + -0.006755596026778221, + -0.005501172039657831, + 0.006905865389853716, + -0.030994726344943047, + 0.003884140867739916, + -0.0075592114590108395, + 0.02913922443985939, + -0.005461971275508404, + -0.010714871808886528, + 0.016464315354824066, + 0.013733329251408577, + 0.0021821751724928617, + -0.004521152935922146, + -0.6359929442405701, + -0.006657593883574009, + 0.0074220085516572, + 0.01136168371886015, + -0.004488485865294933, + 0.027231454849243164, + 0.026447439566254616, + 0.005448904354125261, + 0.00018916402768809348, + 0.045681942254304886, + -5.045565194450319e-05, + -0.0015018787235021591, + -0.014608812518417835, + -0.003013557754456997, + -0.01970490999519825, + -0.023820988833904266, + -0.010597269050776958, + 0.009434313513338566, + 0.015549630858004093, + -0.004544020164757967, + -0.04824305698275566, + 0.015680300071835518, + 0.006899332161992788, + 0.01510535553097725, + -0.009702185168862343, + -0.01069527119398117, + -0.0002809386933222413, + -0.012106497772037983, + -0.0007403225172311068, + 0.01010072696954012, + -0.02950509823858738, + 0.013811730779707432, + -0.018228348344564438, + 0.015876304358243942, + 0.028041603043675423, + -0.0011703057680279016, + -0.016216043382883072, + 0.014465076848864555, + -0.004579954314976931, + 0.0003836365067400038, + -0.01090434193611145, + -0.010401265695691109, + 0.0028306208550930023, + -0.01196929533034563, + 0.0032585624139755964, + 0.001692165737040341, + 0.03290249779820442, + -0.016098441556096077, + 0.011368217878043652, + -0.011923561803996563, + 0.005965047515928745, + -0.0200969185680151, + 0.015575764700770378, + 0.011139546521008015, + 0.0223313607275486, + 0.0006721295067109168, + 0.026813313364982605, + -0.012113031931221485, + -0.0195742417126894, + 0.0016464315121993423, + -0.00036628200905397534, + 0.020397456362843513, + -0.0038090061862021685, + -0.020214520394802094, + -0.018163014203310013, + 0.017588069662451744, + -0.03358197584748268, + -0.03820766508579254, + 0.024552736431360245, + -0.0296880342066288, + -0.003100126050412655, + 0.0328502282500267, + -0.007487343158572912, + -0.017143795266747475, + 0.014517344534397125, + 0.014465076848864555, + 0.01663418486714363, + -0.009074973873794079, + 0.025206081569194794, + 0.02007078379392624, + -0.005314968526363373, + 0.004583220928907394, + -0.015353626571595669, + 0.013380522839725018, + 0.01897316239774227, + -0.012629174627363682, + -0.0038351400289684534, + 0.008219090290367603, + 0.018241414800286293, + -0.0044362181797623634, + 0.013733329251408577, + 0.04398323968052864, + -0.0031915942672640085, + -0.014674147590994835, + -0.008545763790607452, + 0.027623461559414864, + -0.011453152634203434, + 0.01791474223136902, + 0.0031213597394526005, + -0.03339903801679611, + -0.031517401337623596, + 0.010819407179951668, + 0.018724892288446426, + -0.02459193766117096, + 0.015275225043296814, + -0.015667233616113663, + -0.007722547743469477, + 0.006768662948161364, + 0.018254483118653297, + -0.023507382720708847, + 0.0008550663478672504, + -0.01443894300609827, + -0.011890893802046776, + -0.0029563899151980877, + -0.007500410079956055, + -0.0296880342066288, + 0.025232216343283653, + 0.023533517494797707, + -0.006945066154003143, + 0.0004973594914190471, + 0.008042687550187111, + -0.013589593581855297, + 0.046335287392139435, + -0.0030543918255716562, + -0.028433609753847122, + 0.026447439566254616, + 0.019874779507517815, + -0.0003468857903499156, + 0.007735614664852619, + -0.01120488066226244, + -0.0076506794430315495, + 0.001598247210495174, + 0.025415152311325073, + -0.013132250867784023, + 0.023128442466259003, + 0.035881754010915756, + 0.025702625513076782, + -0.008075354620814323, + 0.008062287233769894, + -0.02170414850115776, + -0.024892475455999374, + -0.0033875980880111456, + 0.003929875325411558, + -0.014073069207370281, + -0.004527686629444361, + -0.04999402165412903, + -0.0189208947122097, + 0.0054162368178367615, + 0.005896446295082569, + 0.0111656803637743, + -0.0008003486436791718, + -0.010414332151412964, + 0.01332172192633152, + 0.026682643219828606, + -0.0024402467533946037, + 0.010649536736309528, + -0.026290636509656906, + -0.02170414850115776, + -0.017561936751008034, + -0.01980944536626339, + 0.011727557517588139, + 0.023468181490898132, + -0.05995101481676102, + -0.0254804864525795, + -0.0007341973832808435, + -0.02606849931180477, + 0.025911696255207062, + -0.005631841253489256, + -0.0216780137270689, + -0.026159966364502907, + 0.0036652700509876013, + 0.019325969740748405, + -0.008506562560796738, + 0.00869603268802166, + 0.004406817723065615, + 0.009401646442711353, + -0.025428220629692078, + -0.006409322377294302, + -0.004795558284968138, + -0.018267549574375153, + 0.00829095859080553, + -0.010270596481859684, + -0.02498394437134266, + 0.0027865199372172356, + 0.03444439172744751, + -0.0007652313215658069, + 0.006595526356250048, + -0.0016790988156571984, + -0.02414766140282154, + 0.04398323968052864, + -0.014974686317145824, + 0.008578430861234665, + -0.011988895945250988, + 0.0088005680590868, + -0.020632661879062653, + -0.008859369903802872, + 0.025336751714348793, + -0.01510535553097725, + -0.011387817561626434, + 0.018372084945440292, + 0.008134155534207821, + 0.01723526231944561, + 0.035986289381980896, + -0.015928572043776512, + 0.01473948173224926, + -0.018907828256487846, + 0.005922580137848854, + -0.017718739807605743, + 0.03264115750789642, + 0.02919149212539196, + 0.011289816349744797, + -0.02051505818963051, + -0.02386019006371498, + -0.012367836199700832, + 0.003541134297847748, + 0.046884097158908844, + 0.0034333323128521442, + 0.00994392391294241, + 0.004063811153173447, + 0.011753691360354424, + 0.013589593581855297, + -0.010682204738259315, + 0.047014765441417694, + -0.0032683624885976315, + -0.012890513055026531, + -0.007820549421012402, + 0.00450481940060854, + 0.0038776074070483446, + 0.0026427838020026684, + -0.012681442312896252, + -0.018306750804185867, + -0.00724560534581542, + 0.008584964089095592, + 0.023285245522856712, + 0.021403608843684196, + 0.031099261716008186, + 0.009251376613974571, + 0.005063430406153202, + 0.02438286691904068, + 0.015366693958640099, + 0.025624223053455353, + 0.026787178590893745, + 0.013445856980979443, + -0.009310178458690643, + 0.004354550037533045, + -0.01778407394886017, + 0.023115376010537148, + 0.02480100840330124, + 0.004570154007524252, + 4.361593892099336e-05, + -0.00038690323708578944, + -0.01458267867565155, + -0.020920133218169212, + -0.00026338003226555884, + 0.025781026110053062, + -0.01453041099011898, + 0.031229929998517036, + -0.02251429669559002, + -0.011623022146522999, + 0.01973104476928711, + -0.012322102673351765, + 0.010675670579075813, + 0.01146621908992529, + -0.02004465088248253, + 0.015366693958640099, + 0.01099580992013216, + -0.0027783531695604324, + -0.018607288599014282, + -0.023520449176430702, + -0.01639898121356964, + -0.0021576746366918087, + 0.0023389779962599277, + -0.01069527119398117, + 0.017888609319925308, + 0.03833833336830139, + -0.031621936708688736, + 0.006530191749334335, + 0.020240653306245804, + 0.03271955996751785, + 0.015222958289086819, + -0.01618991047143936, + -0.027571193873882294, + -0.01055153552442789, + 0.025075413286685944, + 0.0029678235296159983, + -0.00752654392272234, + -0.03444439172744751, + 0.007885884493589401, + -0.0357249490916729, + -0.0023847122211009264, + 0.004828225821256638, + -0.003495400305837393, + -0.02412152849137783, + -0.020136117935180664, + 0.016255244612693787, + -0.002910655690357089, + 0.015327492728829384, + -0.003459466155618429, + 0.006017315201461315, + 0.015405894257128239, + -0.011335549876093864, + -0.014935486018657684, + -0.01470028143376112, + -0.030498184263706207, + 0.013785596936941147, + -0.0001514945615781471, + -0.01666031777858734, + -0.022239891812205315, + 0.006357055157423019, + -0.006958133075386286, + -0.01115261297672987, + 0.005997714586555958, + -0.0024941477458924055, + -0.0028028537053614855, + -0.0034365991596132517, + -0.0005994447856210172, + -0.018176080659031868, + -0.006886265240609646, + 0.030759520828723907, + -0.002139707561582327, + -0.0292960274964571, + -0.022906305268406868, + -0.0039658090099692345, + 0.008173356764018536, + 0.025389019399881363, + 0.02482714131474495, + 0.014661080203950405, + 0.02251429669559002, + -0.02903468906879425, + -0.004919694270938635, + -0.006089183036237955, + -0.041343722492456436, + 0.02866881527006626, + 0.02947896346449852, + -0.001038819900713861, + 0.020789464935660362, + 0.030968591570854187, + -0.011975829489529133, + 0.0009906355990096927, + -0.02033212222158909, + 0.015131489373743534, + -0.004831492435187101, + 0.018986230716109276, + 0.028041603043675423, + -0.005448904354125261, + 0.002499047899618745, + 0.006141450721770525, + 0.03454892709851265, + -0.01479174941778183, + -0.02375565469264984, + 0.007154136896133423, + 0.011845160275697708, + 0.0025023145135492086, + -0.020907066762447357, + -0.020188385620713234, + 0.032118480652570724, + 0.01010072696954012, + 0.004929494112730026, + -0.015288292430341244, + -0.007709480822086334, + 0.008493496105074883, + 0.015144556760787964, + 0.010264063253998756, + -0.01697392389178276, + 0.013498124666512012, + 0.02154734544456005, + 0.007539610844105482, + -0.010571135208010674, + 0.00360646890476346, + -0.0014716614969074726, + 0.015432028099894524, + 0.01320411916822195, + 0.0023406115360558033, + 0.0030788921285420656, + 0.02027985453605652, + -0.01647738181054592, + 0.006118583492934704, + -0.01233516912907362, + -0.005458704195916653, + -0.023585785180330276, + 0.008114554919302464, + -0.014987753704190254, + -0.012289434671401978, + -0.001502695376984775, + -0.03130833059549332, + -0.010741005651652813, + 0.008826701901853085, + -0.00013424214557744563, + -0.032405953854322433, + -0.000988185522146523, + -0.02380792237818241, + 0.017888609319925308, + -0.02900855429470539, + 0.010146460495889187, + 0.004393750801682472, + -0.006245986092835665, + -0.019874779507517815, + -0.009591116569936275, + 0.04312082380056381, + -0.00021968752844259143, + 0.015549630858004093, + 0.0030070242937654257, + -0.007304406259208918, + 0.017666472122073174, + -0.0070626684464514256, + 0.002858388004824519, + -0.004772691056132317, + -0.02879948355257511, + -0.0130081158131361, + 0.02480100840330124, + -0.006004248280078173, + 0.003515000455081463, + 0.012838245369493961, + 0.011394351720809937, + -0.0016366313211619854, + 0.03339903801679611, + 0.016908589750528336, + -0.011668756604194641, + -0.012465838342905045, + 0.003795939264819026, + -0.008794034831225872, + 0.013981601223349571, + 0.0031295265071094036, + -0.008996572345495224, + 0.012524639256298542, + -0.031987812370061874, + -0.012341702356934547, + 0.0015614965232089162, + 0.017875541001558304, + 0.011231014505028725, + -0.011335549876093864, + 0.01136168371886015, + 0.007304406259208918, + 0.020815597847104073, + -0.00042794152977876365, + -0.004932761192321777, + 0.008323625661432743, + -0.0012895413674414158, + 0.004491752479225397, + 0.01479174941778183, + 0.007095335517078638, + 0.032196883112192154, + 0.020985467359423637, + 0.017248330637812614, + 0.0008591497899033129, + -0.0338955819606781, + 0.0528164766728878, + -0.008669898845255375, + -0.011289816349744797, + 0.03948822245001793, + -0.01775793917477131, + 0.015026954002678394, + -0.03815539553761482, + -0.000738689152058214, + 0.009042305871844292, + 0.009702185168862343, + 0.004096478223800659, + -0.011244081892073154, + -0.028590412810444832, + -0.025402085855603218, + 0.012354769743978977, + 0.021220672875642776, + -0.01907769776880741, + 0.004357816651463509, + -0.023285245522856712, + 0.011884360574185848, + -0.004609354771673679, + 0.023768721148371696, + 0.009035772643983364, + -0.023820988833904266, + -0.036299895495176315, + 0.012433171272277832, + -0.012204499915242195, + 0.014870150946080685, + -0.022658033296465874, + 0.007938152179121971, + -0.031177662312984467, + -0.014256006106734276, + -0.015758700668811798, + -0.02359885163605213, + -0.0033026630990207195, + -0.00747427623718977, + 0.009676051326096058, + 0.02267109975218773, + 0.02976643666625023, + 0.021717214956879616, + -0.011093812063336372, + 0.009166441857814789, + -0.00942124705761671, + -0.0030070242937654257, + -0.03402625024318695, + -0.0068405307829380035, + -0.013210652396082878, + 0.01999238319694996, + -0.008506562560796738, + -0.005710242781788111, + -0.004080144688487053, + 0.006984266918152571, + -0.013589593581855297, + 0.022475097328424454, + 0.0002305085799889639, + -0.007030000910162926, + -0.011198347434401512, + -0.015706432983279228, + -0.001639081398025155, + -0.007996953092515469, + 0.017352866008877754, + 0.02409539371728897, + -0.01311265118420124, + -0.015066155232489109, + 0.0017640336882323027, + -0.008892036974430084, + 0.0006578376051038504, + -0.00966951809823513, + 0.01873795874416828, + -0.02659117616713047, + 0.03554201498627663, + 0.005844178609549999, + 0.0029416896868497133, + 0.005334568675607443, + 0.0021250073332339525, + -0.02443513460457325, + -0.036796435713768005, + 0.01868569105863571, + 0.009741386398673058, + 0.0005467687733471394, + -0.022056955844163895, + -0.0007623729179613292, + -0.015118422918021679, + -0.0111656803637743, + 0.018332883715629578, + -0.02438286691904068, + -0.01694779098033905, + -0.016072306782007217, + -0.03909621387720108, + -0.018581155687570572, + -0.005412970203906298, + 0.000712555309291929, + 0.026891713961958885, + 0.0106430035084486, + 0.01676485314965248, + 0.008526163175702095, + -0.006027115508913994, + -0.010675670579075813, + 0.004805358592420816, + -0.019744111225008965, + 0.03606468811631203, + 0.016111508011817932, + 0.0346795953810215, + 0.02430446445941925, + -0.028407476842403412, + -0.028355209156870842, + -0.056971754878759384, + 0.01962650939822197, + -0.02267109975218773, + 0.023729519918560982, + 0.02274950221180916, + -0.02913922443985939, + 0.0014626779593527317, + 0.017509669065475464, + 0.007095335517078638, + -0.0023732788395136595, + -0.005514238961040974, + 0.035986289381980896, + 0.017940877005457878, + -0.010812873020768166, + -0.021129203960299492, + 0.00993085652589798, + -0.010525401681661606, + -0.003400665009394288, + 0.009094573557376862, + 0.003515000455081463, + -0.012668375857174397, + -0.00018242640362586826, + -0.013615727424621582, + 0.05467198044061661, + -0.001383459777571261, + 0.021455876529216766, + 0.025336751714348793, + -0.02133827470242977, + 0.013132250867784023, + -0.028276806697249413, + -0.020632661879062653, + 0.01650351658463478, + -0.012322102673351765, + 0.022579632699489594, + 0.0014659446896985173, + -0.010466599836945534, + 0.0088005680590868, + -0.018568089231848717, + -0.0052431002259254456, + -0.01902543008327484, + 0.011525020003318787, + 0.01060380320996046, + -0.0006978550227358937, + 5.860333658347372e-06, + 0.009584583342075348, + -0.016882456839084625, + 0.027257587760686874, + 0.00747427623718977, + -0.012576906941831112, + -0.01897316239774227, + 0.018711823970079422, + -0.007794415578246117, + 0.01238743681460619, + 0.016163775697350502, + -0.01801927760243416, + -0.026604242622852325, + -0.012269834987819195, + -0.013230253010988235, + 0.013850932009518147, + -0.009101107716560364, + -0.012929714284837246, + -0.023298311978578568, + -0.011459685862064362, + 0.00839549396187067, + 0.0047334907576441765, + 0.006781729869544506, + -0.022684168070554733, + -0.017640337347984314, + -0.006977733690291643, + 0.0030968592036515474, + -0.008617631159722805, + 0.011570754460990429, + 0.030890190973877907, + -0.003237328492105007, + 0.0008738500764593482, + -0.007095335517078638, + 0.008617631159722805, + -0.001150705385953188, + 0.027205320075154305, + 0.012498505413532257, + -0.02869494818150997, + -0.012955848127603531, + 0.0018146680667996407, + 0.010264063253998756, + -0.020789464935660362, + -0.0006259869551286101, + -0.00021764583652839065, + 0.0007341973832808435, + 0.014399741776287556, + -0.007343607023358345, + -0.0029482231475412846, + -0.015719501301646233, + 0.006017315201461315, + -0.02139054238796234, + 0.014412809163331985, + -0.023232977837324142, + 0.013955467380583286, + 0.019535040482878685, + -0.026761045679450035, + 0.0025888828095048666, + -0.02222682535648346, + -0.012981981970369816, + 0.0073109399527311325, + 0.02183481678366661, + -0.036508966237306595, + -0.012113031931221485, + -0.023951658979058266, + -0.01702619157731533, + -0.017196062952280045, + 0.002044972497969866, + -0.007389341481029987, + 0.031831007450819016, + -0.013027715496718884, + -0.006807863712310791, + -0.006441989913582802, + 0.012132631614804268, + 0.0001919203350553289, + 0.0032863295637071133, + 0.011603421531617641, + 0.007637612521648407, + -0.032562755048274994, + -0.005161432083696127, + -0.02222682535648346, + 0.04042904078960419, + 0.01658191718161106, + -0.010571135208010674, + -0.012256767600774765, + -0.006314587313681841, + -0.03891327604651451, + -0.019090764224529266, + -0.010068058967590332, + 0.007996953092515469, + -0.006419122684746981, + 0.011655689217150211, + -0.0009073340333998203, + 0.03541134297847748, + 0.007324006874114275, + 0.017666472122073174, + -0.018293682485818863, + -0.026525840163230896, + 0.008637231774628162, + 0.006134917493909597, + 0.012968914583325386, + -0.025689557194709778, + -0.031543537974357605, + 0.00895737111568451, + 0.021847885102033615, + -0.0166864525526762, + 0.015732567757368088, + 0.014203738421201706, + -0.0028975887689739466, + -0.027937067672610283, + 0.010159527882933617, + 0.012570373713970184, + 0.031752608716487885, + -0.002913922304287553, + 0.009937389753758907, + -0.020449724048376083, + 0.009728319011628628, + 0.013086517341434956, + 0.011694890446960926, + -0.04743290692567825, + -0.006046715658158064, + 0.02911308966577053, + -0.00721293780952692, + -0.0012519739102572203, + 0.01894702948629856, + -0.027545060962438583, + 0.013694128952920437, + -0.037632718682289124, + 0.027153052389621735, + 0.0097871208563447, + -0.03802472725510597, + 0.004687756299972534, + 0.020711062476038933, + -0.027989335358142853, + -0.03818152844905853, + 0.020737197250127792, + -0.03015844337642193, + 0.017378998920321465, + 0.005674308631569147, + -0.04317309334874153, + 0.01624217815697193, + -0.0037110042758286, + 0.025362884625792503, + -0.010989276692271233, + 0.00016384688206017017, + -0.013707195408642292, + -0.02984483726322651, + -0.030576584860682487, + 0.027754131704568863, + 0.01931290328502655, + -0.010322864167392254, + 0.0019616708159446716, + 0.0052953679114580154, + -0.0042630815878510475, + 0.012975447811186314, + -0.03277182579040527, + 0.00853922963142395, + -0.027963202446699142, + -0.004514619708061218, + 0.01679098792374134, + -0.004419884644448757, + -0.000971035216934979, + -0.00666086096316576, + -0.009231776930391788, + -0.004103011917322874, + -0.012433171272277832, + 0.18711824715137482, + -0.025937829166650772, + -0.025323685258626938, + 0.021978553384542465, + -0.02503621205687523, + -0.00942124705761671, + 0.013811730779707432, + 0.02115533873438835, + 0.02222682535648346, + 0.012269834987819195, + 0.008885503746569157, + -0.015850169584155083, + 0.004919694270938635, + 0.004700823221355677, + 0.01132248342037201, + -0.018084611743688583, + -0.02246202901005745, + -0.015993906185030937, + -0.011159147135913372, + 0.025493554770946503, + 0.01931290328502655, + -0.030132310464978218, + 0.009447380900382996, + -0.0007145970012061298, + 0.046570491045713425, + 0.01684325560927391, + 0.000257663254160434, + 0.025493554770946503, + 0.02246202901005745, + 0.0254804864525795, + -0.02617303468286991, + 0.001141721848398447, + 0.021717214956879616, + 0.00012066480849171057, + -0.011936628259718418, + 0.005693908780813217, + 0.0073109399527311325, + 0.0032111946493387222, + 0.01986171305179596, + 0.02144281007349491, + -0.0013450757833197713, + -0.0331115648150444, + 0.0057853772304952145, + -0.032223016023635864, + 0.006912399083375931, + 0.013419723138213158, + -0.00276528624817729, + 0.002860021311789751, + -0.011747158132493496, + -0.0017542334971949458, + -0.0002466380537953228, + 0.005971580743789673, + 0.002139707561582327, + 0.01565416529774666, + -0.007755214814096689, + -0.027074651792645454, + 0.0028665547724813223, + -0.004024610389024019, + -0.008833236061036587, + 0.005664508324116468, + -0.03428759053349495, + 0.014974686317145824, + -0.001400610082782805, + 0.027179187163710594, + -0.0454467348754406, + 0.0013940766220912337, + -0.011420485563576221, + -0.003547667758539319, + -0.0018653023289516568, + -0.013171452097594738, + 0.009956990368664265, + -0.003263462334871292, + -0.011642622761428356, + 0.02201775461435318, + -0.01055153552442789, + -0.03298089653253555, + 0.030341381207108498, + 0.017169928178191185, + 0.03535907715559006, + 0.012354769743978977, + -0.0031458602752536535, + 0.006553058512508869, + -0.015837103128433228, + -0.013628793880343437, + 0.0020580394193530083, + -0.012015029788017273, + 0.0011115046218037605, + -0.014517344534397125, + 0.009793654084205627, + -0.031439002603292465, + -0.018163014203310013, + 0.003580335061997175, + 0.0016545982798561454, + -0.009172975085675716, + 0.0034627330023795366, + -0.0056383744813501835, + 0.026865581050515175, + -0.0025627489667385817, + 0.002312844153493643, + -0.012942780740559101, + -0.02467033825814724, + 0.03321610018610954, + 0.028302941471338272, + -0.02519301511347294, + -0.030811788514256477, + 0.008944304659962654, + -0.006755596026778221, + 0.040507443249225616, + -0.010466599836945534, + 0.006455056834965944, + 0.001226656837388873, + -0.04280721768736839, + 0.01454347837716341, + -0.02940056286752224, + 0.012374370358884335, + 0.04437524825334549, + 0.005804977845400572, + 0.004939294420182705, + -0.0011784725356847048, + 0.008042687550187111, + 0.010420866310596466, + -0.0017215663101524115, + 0.017980076372623444, + -0.0004765341291204095, + 0.013040782883763313, + -0.030759520828723907, + -0.02971416898071766, + 0.031883276998996735, + 0.004292482044547796, + -0.0027244521770626307, + 0.010172594338655472, + 0.0034071984700858593, + 0.03439212590456009, + -0.00735014071688056, + 0.013916266150772572, + 0.0007341973832808435, + 0.004579954314976931, + -0.0433560274541378, + -0.013373988680541515, + -0.013641861267387867, + 0.04040290787816048, + -0.002757119480520487, + -0.004642022307962179, + 0.004279415123164654, + 0.02529755048453808, + 0.0019796378910541534, + 0.036561232060194016, + 0.002327544614672661, + -0.004981761798262596, + -0.02193935215473175, + -0.00660859327763319, + -0.003831873182207346, + 0.006971199996769428, + -0.031674206256866455, + 0.012302502058446407, + 0.008245224133133888, + -0.010290197096765041, + -0.0378417894244194, + 0.01485708449035883, + 0.0019878046587109566, + -0.007219471503049135, + -0.027937067672610283, + 0.018411286175251007, + -0.02869494818150997, + -0.015484295785427094, + 0.010237929411232471, + -0.16412046551704407, + 0.009166441857814789, + 0.0214166771620512, + -0.030341381207108498, + 0.016098441556096077, + 0.013968533836305141, + 0.031726472079753876, + 0.02666957676410675, + -0.03130833059549332, + 0.006183918099850416, + 0.021037735044956207, + -0.005749443080276251, + -0.018332883715629578, + -0.022239891812205315, + -0.0012201233766973019, + -0.0023504116106778383, + -0.037110041826963425, + 0.022840971127152443, + 0.018398217856884003, + 0.007964286021888256, + -0.0023912456817924976, + -0.021377475932240486, + 0.015549630858004093, + -0.0037240711972117424, + -0.013106117025017738, + 0.006174118258059025, + -0.025558888912200928, + 0.017823273316025734, + -0.006781729869544506, + -0.02472260594367981, + -0.016098441556096077, + -0.010571135208010674, + 0.013125717639923096, + 0.004818425513803959, + 0.007043067831546068, + -0.013929333537817001, + 0.008232157677412033, + -0.007487343158572912, + -0.004958895035088062, + 0.014020801521837711, + -0.0018473353702574968, + 0.03418305516242981, + -0.0056187743321061134, + 0.005965047515928745, + -0.002286710310727358, + 0.03920074924826622, + 0.02856427989900112, + -0.030994726344943047, + 0.0019339036662131548, + -0.012727176770567894, + 0.012197966687381268, + -0.02493167668581009, + -0.014151470735669136, + 0.02919149212539196, + -0.0015329126035794616, + 0.0005177765851840377, + -0.01692165620625019, + 0.022448962554335594, + 0.010270596481859684, + 0.00961725041270256, + -0.0037894058041274548, + -0.03384331241250038, + 0.003982143010944128, + -0.013132250867784023, + -0.020501991733908653, + -0.010433932766318321, + -0.001477378304116428, + 0.02903468906879425, + -0.01196929533034563, + 0.0016015139408409595, + 0.0037730722688138485, + -0.017405133694410324, + 0.00977405346930027, + -0.016438180580735207, + 0.01907769776880741, + 0.0020123051945120096, + 0.002848587930202484, + -0.009375512599945068, + 0.017666472122073174, + -0.002815920626744628, + -0.0020368057303130627, + 0.036116957664489746, + -0.007885884493589401, + -0.030628852546215057, + -0.017431266605854034, + -0.009571515955030918, + -0.01203463040292263, + 0.023285245522856712, + 0.004086678382009268, + 0.020292920991778374, + 0.01801927760243416, + -0.01079980656504631, + -0.008493496105074883, + -0.015236024744808674, + 0.03582948446273804, + 0.0028110204730182886, + -0.019169166684150696, + 0.0026052165776491165, + -0.01494855247437954, + -0.0072848061099648476, + 0.002971090143546462, + -0.0053705028258264065, + -0.012844778597354889, + 0.035881754010915756, + -0.005857245530933142, + -0.002566015813499689, + 0.002585616195574403, + 0.02020145393908024, + 0.03899167850613594, + -0.014360541477799416, + -0.02524528279900551, + -0.010505801066756248, + 0.021717214956879616, + 0.011949695646762848, + -0.0001258711563423276, + 0.018345950171351433, + -0.00736974086612463, + -0.017405133694410324, + -0.005997714586555958, + 0.008480428718030453, + 0.030654985457658768, + -0.006484457291662693, + -0.006441989913582802, + 0.015418961644172668, + -0.01713072694838047, + -0.02898242138326168, + -0.08807101845741272, + -0.002771819708868861, + 0.024552736431360245, + 0.010832473635673523, + 0.014033867977559566, + 0.025715691968798637, + 0.02274950221180916, + 0.002822454087436199, + 0.013641861267387867, + 0.04267654940485954, + -0.03865193948149681, + -0.03548974543809891, + -0.01485708449035883, + -0.014046935364603996, + -0.0006737628718838096, + -0.017901675775647163, + 0.00014496110088657588, + -0.025545822456479073, + -0.011975829489529133, + 0.023389780893921852, + -0.018489686772227287, + 0.0018685690592974424, + -0.019143031910061836, + -0.006481190677732229, + -0.028433609753847122, + -0.011871294118463993, + -0.041788000613451004, + 0.01309958379715681, + 0.018541954457759857, + 0.0014136770041659474, + 0.009676051326096058, + -0.013746396638453007, + -0.001357325934804976, + -0.010629937052726746, + -0.010597269050776958, + -0.0010339197469875216, + -0.013681061565876007, + -0.004429684951901436, + 0.03316383436322212, + -0.02659117616713047, + -0.0003987451200373471, + 0.02606849931180477, + 0.005791910924017429, + -0.023442048579454422, + 0.005285567604005337, + -0.005484838038682938, + -0.025715691968798637, + 0.012080364860594273, + -0.005955247208476067, + 0.0007035717717371881, + -0.018724892288446426, + -0.027362123131752014, + -0.02269723452627659, + 0.004080144688487053, + 0.03590788692235947, + -0.002319377614185214, + -0.005158165469765663, + 0.005409703589975834, + -0.017117660492658615, + -0.020684929564595222, + -0.036273758858442307, + 0.01749660074710846, + -0.030262978747487068, + 0.02401699312031269, + -0.00885283574461937, + -0.00484129274263978, + -0.011740624904632568, + -0.012975447811186314, + 0.014922418631613255, + -0.0016039640177041292, + -0.02144281007349491, + 0.001545979524962604, + -0.01085207425057888, + 0.0073370737954974174, + -0.030994726344943047, + -0.003988676238805056, + -0.030419781804084778, + -0.0006039365543983877, + -0.001039636554196477, + 0.0044362181797623634, + 0.004001743160188198, + -0.027388257905840874, + 0.030393648892641068, + -0.010649536736309528, + 0.02359885163605213, + 0.015667233616113663, + 0.00041446625255048275, + 0.012015029788017273, + 0.015262158587574959, + -0.013955467380583286, + 0.004501552786678076, + 0.027858667075634003, + 0.030759520828723907, + 0.013458924368023872, + -0.02958349883556366, + 0.015288292430341244, + -0.0023259110748767853, + 0.0020221052691340446, + -0.0007223555003292859, + 0.008219090290367603, + -0.003160560503602028, + -0.03410465270280838, + -0.05472424626350403, + 0.02051505818963051, + 0.02619916759431362, + 0.0013099584029987454, + -0.018803292885422707, + -0.02149507775902748, + 0.01458267867565155, + 0.009297111071646214, + 0.026551974937319756, + 0.002757119480520487, + -0.020776396617293358, + 0.001572113367728889, + -0.01146621908992529, + -0.005651441402733326, + -0.03922688215970993, + -0.007944685406982899, + 0.0017395332688465714, + 0.025937829166650772, + 0.008493496105074883, + -0.011636089533567429, + -0.017483534291386604, + 0.022344427183270454, + 0.007676813285797834, + 0.013249853625893593, + -0.009963523596525192, + -0.011041544377803802, + -0.00606304919347167, + -0.0020564061123877764, + 0.0016774653922766447, + -0.020946267992258072, + 0.018163014203310013, + 0.010636470280587673, + -0.010211795568466187, + 0.014399741776287556, + -0.0033875980880111456, + -0.009970057755708694, + 0.01731366477906704, + 0.04536833614110947, + 0.019352102652192116, + 0.02963576652109623, + -0.014060001820325851, + -0.011087278835475445, + 0.007670280057936907, + -0.01652964949607849, + 0.0009653184679336846, + 0.006262319628149271, + 0.017405133694410324, + -0.014164537191390991, + 0.007252138573676348, + -0.030393648892641068, + 0.032066214829683304, + 0.01801927760243416, + -0.0050274962559342384, + -0.006729462184011936, + -0.004367616958916187, + 0.002566015813499689, + 0.006023848429322243, + 0.01437360793352127, + 0.021325208246707916, + -0.05059510096907616, + 0.04299015551805496, + 0.010963142849504948, + -0.0012756576761603355, + -0.02017531916499138, + 0.005471771117299795, + -0.018228348344564438, + -0.013315187767148018, + -0.005922580137848854, + -0.004815158899873495, + -0.02183481678366661, + -0.024134594947099686, + -0.009244843386113644, + 0.025519687682390213, + 0.02947896346449852, + -0.00666086096316576, + -0.012799045071005821, + -0.014308273792266846, + 0.013191052712500095, + -0.0011449885787442327, + 0.00885283574461937, + 0.016111508011817932, + 0.025101546198129654, + -0.003364731092005968, + 0.002414112910628319, + 0.0331115648150444, + 0.012433171272277832, + -0.014987753704190254, + -0.0012511572567746043, + -0.0012062396854162216, + 0.004517886321991682, + -0.021847885102033615, + 0.01428213994950056, + -0.005043829791247845, + 0.00450481940060854, + 0.020214520394802094, + 0.02274950221180916, + 0.012818644754588604, + -0.0012813744833692908, + 0.03358197584748268, + 0.022056955844163895, + 0.0014038768131285906, + 0.0021446077153086662, + -0.0066183931194245815, + -0.013158384710550308, + 0.006827463861554861, + 0.03321610018610954, + -0.004070344381034374, + -0.03528067469596863, + 0.005396636668592691, + 0.01765340380370617, + -0.013053849339485168, + 0.0007880984339863062, + 0.027309855446219444, + 0.015314426273107529, + -0.006144717335700989, + 0.03449666127562523, + -0.012988515198230743, + -0.013093050569295883, + -0.02898242138326168, + 0.0218086838722229, + 0.013230253010988235, + 0.001143355155363679, + 0.007879350334405899, + -0.008480428718030453, + 0.017143795266747475, + -0.012152232229709625, + 0.002877988386899233, + -0.01443894300609827, + 0.013994667679071426, + -0.02004465088248253, + 0.02519301511347294, + 0.001572113367728889, + -0.0026084831915795803, + -0.01912996545433998, + -0.016751786693930626, + -0.006931999232620001, + 0.013628793880343437, + -0.005831111688166857, + -0.0034725330770015717, + 0.12732402980327606, + 0.020606527104973793, + -0.008682966232299805, + 0.016333645209670067, + -0.0030184576753526926, + 0.023533517494797707, + 0.00506996363401413, + -0.0009375512599945068, + -0.008206023834645748, + -0.056396812200546265, + 0.00616758456453681, + -0.0027179187163710594, + 0.0029857903718948364, + -0.019979314878582954, + -0.010538468137383461, + 0.01496161986142397, + 0.0020319055765867233, + 0.01443894300609827, + -0.03261502459645271, + -0.004985028877854347, + 0.04461045190691948, + -0.03778952360153198, + 0.013236786238849163, + 0.03303316608071327, + -0.0002307127433596179, + -0.007925084792077541, + 0.019012363627552986, + 0.01501388754695654, + -8.769125997787341e-05, + -0.030289113521575928, + 0.005945446901023388, + 0.00417161313816905, + -0.05791257321834564, + -0.008304025046527386, + 0.017888609319925308, + -0.01454347837716341, + -0.0019273702055215836, + -0.01443894300609827, + 0.02004465088248253, + 0.00034647746360860765, + 0.010819407179951668, + 0.030942458659410477, + -0.010002724826335907, + -0.020658794790506363, + 0.010061525739729404, + -0.010897808708250523, + 0.00013465048687066883, + -0.010930475778877735, + -0.006301520392298698 + ], + "metadata": { + "source": "Thesis_Verladegeraeusche_in_Speditionen.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 41, + "has_images": true, + "image_count": 51, + "coordinates": "CoordinatesMetadata(points=((204.16666666666666, 189.02777777777797), (204.16666666666666, 642.3611111111111), (936.1666666666666, 642.3611111111111), (936.1666666666666, 189.02777777777797)), system=)", + "links": [], + "last_modified": "2025-05-05T22:59:16", + "_known_field_names": "frozenset({'cc_recipient', 'link_texts', 'url', 'filetype', 'category_depth', 'page_number', 'filename', 'orig_elements', 'detection_origin', 'email_message_id', 'page_name', 'coordinates', 'table_as_cells', 'link_start_indexes', 'sent_to', 'bcc_recipient', 'languages', 'last_modified', 'link_urls', 'file_directory', 'subject', 'data_source', 'detection_class_prob', 'image_base64', 'text_as_html', 'attached_to_filename', 'key_value_pairs', 'signature', 'sent_from', 'header_footer_type', 'parent_id', 'links', 'emphasized_text_contents', 'emphasized_text_tags', 'image_mime_type', 'is_continuation', 'image_path'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "Thesis_Verladegeraeusche_in_Speditionen.pdf", + "detection_class_prob": 0.2568194270133972, + "parent_id": "d45475a34bc527cde6987546fa6dd2f5", + "text_as_html": "
Flurf\u00f6rderger\u00e4t |Anzahl Einzelereignisse ElMax-PegelSchallleistungspegel
LAFmaxLWA,5sLWAmaxLWA,1hKlLWAT,1h
[dB(A)][dB(A)][dB(A)][dB(A)][dB(A)][dB(A)]
Gabelstapler29769,3100,7108,872,15,777,8
STABW [dB]6,54,96,54,92,9-
Gabelhubwagen9968,6100,7108,172,16,279,5
STABW [dB]6,45,16,4512,7-
", + "id": "5ba44de7-0ff3-4c0c-b018-67e92171e1c2", + "processing_timestamp": "2025-05-06T14:18:19.298665", + "chunk_number": 20, + "total_chunks": 49, + "chunking_strategy": "hybrid", + "word_count": 848 + } +} \ No newline at end of file diff --git a/data/processed/85fd305f-83de-70b0-47e8-2dc000000021.json b/data/processed/85fd305f-83de-70b0-47e8-2dc000000021.json new file mode 100644 index 0000000000000000000000000000000000000000..14dcf9cb96b63fd81fb7cba8485ddf8ab0a296ac --- /dev/null +++ b/data/processed/85fd305f-83de-70b0-47e8-2dc000000021.json @@ -0,0 +1,1570 @@ +{ + "id": "85fd305f-83de-70b0-47e8-2dc000000021", + "content": "Vor Be-\n\nginn der Messung m\u00fcssen die Messger\u00e4te auf ihre Funktionsf\u00e4higkeit gepr\u00fcft werden, um eine fehlerfreie Messung zu gew\u00e4hrleisten. Hierbei werden die Einstellungen der Schallpegelmesser kontrolliert, die Uhrzeit mit der Uhr des Protokollierers abgeglichen und die Mikrofone kalibriert. W\u00e4hrend der Messung sollten alle relevanten Einflussfak- toren wie Witterung, Windrichtung und Verkehr ber\u00fccksichtigt werden. Das Ziel der Schallpegelmessung ist es, an jeder Mikrofonposition den A-bewerteten Schalldruckpe- gel der Verladevorg\u00e4nge \u00fcber eine gew\u00e4hlte Messdauer aufzunehmen. Um alle Vor- g\u00e4nge vollst\u00e4ndig ohne manuelle Unterbrechung aufzunehmen, wurde eine Dauermes- sung durchgef\u00fchrt. Hierbei wurden die Mikrofone parallel betrieben. Nach Start der Messung begab sich der jeweilige Messgehilfe auf die vorab abgesprochene Position und die Messung begann. Um sp\u00e4ter die Richtcharakteristik der Verladevorg\u00e4nge zu be- stimmen, wurden Schalldruckpegel von Messpositionen entlang einer vorher gew\u00e4hlten Kreisbahn um einen Anh\u00e4nger gemessen. An jeder Messposition der Kreisbahn wurden nach Ermessen des Messgehilfen mehrere Verladevorg\u00e4nge aufgenommen. \u00dcber die mitaufgezeichnete Tonaufzeichnung, Marker und Sprach- und Textnotizen lassen sich Messungen aussagekr\u00e4ftig dokumentieren. Ein Dauermarker wird vom Messgehilfen ge- setzt, wenn ein Fremdger\u00e4uschereignis, beispielsweise eine vorbeifahrende Zugma- schine, aufritt. Um einen Positionswechsel der variablen Messposition anzuk\u00fcndigen und die Abmessungen zu dokumentieren, wird zudem ein Marker und eine Sprachnotiz gesetzt. In der Umschlaghalle des Exportbereichs wurde jeder Zeitpunkt eines einzelnen Arbeitsschrittes einer Beladung protokolliert. Hierbei wurden K\u00fcrzel den Verladezonen\n\n## und Flurf\u00f6rderger\u00e4te zugeordnet, umso die Protokollierung zu vereinfachen. W\u00e4hrend der Messung wurden somit folgende Kenngr\u00f6\u00dfen aufgenommen: der A-be- wertete Schalldruckpegel LAeq, Der maximale Schalldruckpegel LAFmax, der Taktmaximal- pegel LAFTeq, und die Abst\u00e4nde der Messpositionen. Um die Genauigkeit der Schalldruck- pegelmessung bei der Beladung mit einem Flurf\u00f6rderzeug zu erh\u00f6hen, ist es wichtig, dass die Messungen mehrmals wiederholt wird. Durch die Wiederholungen k\u00f6nnen zu- f\u00e4llige Messfehler reduziert werden. Des Weiteren sollten die Messungen an verschie- denen Tagen durchgef\u00fchrt werden, um die Ergebnisse zu vergleichen und sicherzustel- len, dass die Messung repr\u00e4sentativ f\u00fcr die gesamte Beladungsaktivit\u00e4t ist. Die Ergeb- nisse der wiederholten Messungen sollten dann gemittelt werden, um einen Durch- schnittswert zu erhalten, der repr\u00e4sentativ f\u00fcr die Messungen ist und die Messgenauig- keit erh\u00f6ht. 43\n5 Beschreibung der Untersuchungsmethodik\n\n## 5.4 Messpositionen\n\nDie Beschreibung der Messpositionen ist von entscheidender Bedeutung, um genaue und repr\u00e4sentative Messergebnisse zu erzielen. Im Folgenden werden die verschiede- nen Messpositionen erl\u00e4utert, um einen umfassenden \u00dcberblick \u00fcber die Platzierung des Messequipments und die Erfassung der Schallwerte zu geben. Wie im vorherigen Kapitel erl\u00e4utert, liegt der Fokus der Messungen auf dem Exportbe- reich des Unternehmens. Um den Betriebsablauf m\u00f6glichst wenig zu st\u00f6ren, wurden ge- eignete Messzeiten anhand der t\u00e4glichen Betriebs- und Sto\u00dfzeiten festgelegt. Um pr\u00e4- zise Ergebnisse zu erzielen, wurde eine feste Messposition im Fernfeld auf einer Gr\u00fcn- fl\u00e4che des Betriebsgel\u00e4ndes gew\u00e4hlt (Abbildung 11). Diese Position erm\u00f6glicht eine zu- verl\u00e4ssige Erfassung der Schallwerte, ohne den normalen Betriebsablauf zu beeintr\u00e4ch- tigen.", + "embedding": [ + -0.004119900055229664, + 0.019691279157996178, + -0.0075750877149403095, + -0.039356231689453125, + -0.008213474415242672, + 0.016400624066591263, + -0.008786048740148544, + -0.013504847884178162, + -0.013254757970571518, + -0.015097524970769882, + 0.014702646061778069, + 0.008345101028680801, + -0.020770613104104996, + 0.016650713980197906, + -0.00510380556806922, + -0.003346596146002412, + 0.028483908623456955, + -0.0029286828357726336, + -0.004866878502070904, + 0.002140571130439639, + -0.011254039593040943, + 0.0024976071435958147, + -0.010701209306716919, + 0.008733398281037807, + -0.010332656092941761, + 0.008456982672214508, + 0.017322007566690445, + -0.010938136838376522, + -0.011833194643259048, + 0.01014837995171547, + -0.016400624066591263, + 0.004870169330388308, + -0.014610507525503635, + 0.003402537200599909, + -0.021415581926703453, + -0.023245185613632202, + 0.0008588609052821994, + -0.029879147186875343, + 0.0180064644664526, + -0.013965539634227753, + -0.005442743189632893, + 0.018572457134723663, + -0.001095788087695837, + -0.006739261094480753, + 0.002323202323168516, + 0.013662799261510372, + 0.02235012874007225, + 0.010602490045130253, + -0.020191458985209465, + 0.013057318516075611, + -0.000200421447516419, + 0.004731961991637945, + -0.03701328486204147, + 0.01533445157110691, + 0.0030504371970891953, + -0.018519805744290352, + 0.007324997801333666, + 0.007950222119688988, + -0.021718323230743408, + -0.029852820560336113, + -0.037329189479351044, + 0.005297954194247723, + -0.032801248133182526, + 0.01111583225429058, + -0.006759005133062601, + -0.02133660577237606, + -0.025114277377724648, + -0.0040705399587750435, + -0.02005983144044876, + -0.010023334994912148, + 0.026957044377923012, + 0.03230106830596924, + -0.0024860897101461887, + 0.018072277307510376, + 0.022179014980793, + -0.012056959792971611, + 0.016334811225533485, + -0.010503770783543587, + -0.0005635246634483337, + 0.024798374623060226, + 0.0220078993588686, + -0.034749314188957214, + -0.022455429658293724, + 0.04227833449840546, + 0.008299031294882298, + -0.01029316894710064, + 0.01114873867481947, + -0.0012405768502503633, + -0.006245662923902273, + -0.008812373504042625, + 0.02078377641737461, + 0.030774204060435295, + 0.0007749492069706321, + -0.015400265343487263, + 0.01447888184338808, + 0.00270656356588006, + 0.014676321297883987, + 0.02223166450858116, + 0.0033120440784841776, + -0.02719397284090519, + 0.0017243031179532409, + -0.0012529168743640184, + 0.006337801460176706, + 0.0015161692863330245, + -0.013320570811629295, + -0.009904871694743633, + -0.004376571159809828, + -0.014900085516273975, + 0.00916118361055851, + -0.02519325353205204, + -0.027904754504561424, + 0.03119540773332119, + -0.007851502858102322, + 0.004939272999763489, + 0.017203543335199356, + -0.010280005633831024, + 0.019691279157996178, + -0.016084721311926842, + -0.0028727417811751366, + 0.0023659809958189726, + 0.03061625361442566, + 0.007607994135469198, + 0.015215988270938396, + -0.010681466199457645, + 0.027694150805473328, + -0.016677038744091988, + -0.011550198309123516, + -0.013103388249874115, + -0.008101592771708965, + -0.01742730848491192, + -0.01546607818454504, + 0.021402418613433838, + 0.022534403949975967, + 0.013847075402736664, + 0.0015630610287189484, + -0.005478940438479185, + -0.01765107363462448, + 0.0013146166456863284, + -0.02521958015859127, + -0.020244108512997627, + 0.0004960662336088717, + 0.010043079033493996, + -0.04259423539042473, + -0.03435443714261055, + 0.011207970790565014, + 0.0392509326338768, + 0.005426289979368448, + 0.015939932316541672, + -0.005024829879403114, + 0.005752064753323793, + -0.0130902249366045, + -0.02116549201309681, + 0.016084721311926842, + -0.010253680869936943, + -0.024916838854551315, + -0.01651908829808235, + -0.0007469786796718836, + 0.020533686503767967, + -0.02829963155090809, + -0.018453992903232574, + 0.01239260658621788, + 0.026272589340806007, + 0.01462367083877325, + 0.019928205758333206, + 0.017558934167027473, + 0.006597762927412987, + 0.015953095629811287, + -0.02502213977277279, + -0.011517291888594627, + 0.006502334028482437, + -0.008108173497021198, + -0.00514658447355032, + -0.010247099213302135, + 0.02357425168156624, + 0.00018838999676518142, + 0.010220774449408054, + 0.006153524853289127, + -0.0035045475233346224, + -0.02693071961402893, + -0.033117152750492096, + -0.027720477432012558, + -0.0023972420021891594, + 0.0032544576097279787, + 0.008095011115074158, + -0.022863470017910004, + 0.012715090997517109, + 0.014965898357331753, + 0.030195049941539764, + -0.007621156983077526, + -0.009200670756399632, + 0.020402060821652412, + -0.000611650466453284, + 0.010484026744961739, + -0.019678115844726562, + -0.636860191822052, + -0.01829604059457779, + -0.0036559177096933126, + 0.011510711163282394, + 0.00027518102433532476, + 0.029984448105096817, + 0.018690919503569603, + -0.000742454023566097, + 0.016598062589764595, + 0.05807347968220711, + 0.002892485586926341, + 0.0009329006425105035, + -0.02177097275853157, + 0.002894131001085043, + -0.007364485878497362, + -0.017966976389288902, + -0.008838699199259281, + -0.005561206955462694, + 0.020968053489923477, + -0.0016461501363664865, + -0.04227833449840546, + 0.017256194725632668, + -0.0011969757033511996, + 0.0063575454987585545, + -0.010391888208687305, + 0.0047484152019023895, + 0.0033795025665313005, + -0.018045950680971146, + -0.0004586350405588746, + 0.011214551515877247, + -0.020336247980594635, + 0.011813451535999775, + -0.03148498758673668, + 0.014715808443725109, + 0.036776360124349594, + 0.010839417576789856, + -0.009569224901497364, + 0.010280005633831024, + 0.006864306051284075, + 0.0032709110528230667, + 0.007417136337608099, + -0.021981574594974518, + -0.01293227355927229, + -0.02690439485013485, + 0.01029316894710064, + -0.011635756120085716, + 0.040804121643304825, + -0.0014923119451850653, + 0.020954890176653862, + -0.01646643690764904, + 0.010878904722630978, + -0.009108533151447773, + 0.0203494094312191, + 0.007272347342222929, + 0.018098602071404457, + -0.004235072992742062, + 0.02504846453666687, + -0.02444298379123211, + -0.0190726350992918, + 0.005047864746302366, + -0.006554984487593174, + 0.02386382967233658, + 0.00028896064031869173, + -0.019836068153381348, + -0.019901880994439125, + 0.021902598440647125, + -0.019243750721216202, + -0.03556539863348007, + 0.018598781898617744, + -0.03127438575029373, + -0.021731484681367874, + 0.03719756379723549, + -0.013202107511460781, + -0.010530095547437668, + 0.037092261016368866, + 0.021955249831080437, + 0.009733757004141808, + -0.02386382967233658, + 0.008068685419857502, + 0.018217066302895546, + 0.00018664183153305203, + 0.0015959676820784807, + -0.02246859110891819, + -0.0018378307577222586, + 0.0008942354470491409, + -0.009180927649140358, + -0.0037612186279147863, + 0.004185712896287441, + 0.016834991052746773, + 0.0003710213350132108, + 0.014597345143556595, + 0.032537996768951416, + -0.007403973489999771, + -0.02600933611392975, + -0.011662080883979797, + 0.03006342239677906, + -0.013182363472878933, + 0.01757209748029709, + 0.011885845102369785, + -0.026075148954987526, + -0.03211679309606552, + 0.006331220269203186, + 0.012859879061579704, + -0.011056600138545036, + 0.016137370839715004, + 0.012879623100161552, + 0.001804924220778048, + 0.015900444239377975, + 0.013202107511460781, + -0.02070480026304722, + -0.000904930115211755, + -0.01387340109795332, + -0.017256194725632668, + -0.019375376403331757, + -0.016571737825870514, + -0.02782577835023403, + 0.020915402099490166, + 0.013024412095546722, + 0.005534881725907326, + -0.011188226751983166, + 0.0036493362858891487, + 0.0062522441148757935, + 0.0392509326338768, + -0.005511846859008074, + -0.031379684805870056, + 0.027615176513791084, + 0.030458301305770874, + 0.009069045074284077, + 0.0060284798964858055, + -0.012688765302300453, + 0.008121335878968239, + -0.011214551515877247, + 0.015189663507044315, + -0.009246740490198135, + 0.018480317667126656, + 0.016045233234763145, + 0.030010772868990898, + -0.011971402913331985, + 0.0008370603318326175, + -0.015545053407549858, + -0.030142398551106453, + -0.0005894385394640267, + 0.01576881855726242, + -0.026219937950372696, + -0.01562402956187725, + -0.04554266482591629, + -0.01815125159919262, + 0.0018987079383805394, + 0.009069045074284077, + 7.21887408872135e-05, + 0.0029286828357726336, + -0.011484385468065739, + -0.0038336128927767277, + 0.031906191259622574, + -0.01817757822573185, + 0.016677038744091988, + -0.021415581926703453, + -0.013952377252280712, + -0.00758825009688735, + -0.021297117695212364, + 0.005738902371376753, + 0.016677038744091988, + -0.05162379518151283, + -0.022244827821850777, + 0.005327570252120495, + -0.02389015443623066, + 0.022837145254015923, + -0.00950999278575182, + -0.010214192792773247, + -0.03896135464310646, + 0.0027526328340172768, + 0.023153048008680344, + -0.021994737908244133, + 0.008048942312598228, + -0.00141498155426234, + 0.004202166106551886, + -0.03643413260579109, + -0.0038369037210941315, + -0.011616012081503868, + -0.02136293239891529, + 0.01817757822573185, + 0.014228791929781437, + -0.02374536544084549, + 0.0025930360425263643, + 0.01950700208544731, + -0.011234295554459095, + -0.012195167131721973, + -7.604497659485787e-05, + -0.024245545268058777, + 0.04685892537236214, + -0.005093934014439583, + 0.0008107351022772491, + -0.015281801111996174, + 0.008812373504042625, + -0.011813451535999775, + 0.0022030933760106564, + 0.0010135216871276498, + -0.014294604770839214, + -0.01974392868578434, + 0.022508079186081886, + 0.005186072085052729, + -0.00026489770971238613, + 0.012149098329246044, + -0.020573174580931664, + 0.016624389216303825, + -0.01224781759083271, + 0.0036394642665982246, + -0.024693073704838753, + 0.03527582064270973, + 0.03482829034328461, + 0.003219905775040388, + -0.02504846453666687, + -0.02304774709045887, + -0.008206893689930439, + 0.008720235899090767, + 0.04354194551706314, + 0.0029879147186875343, + 0.010141798295080662, + 0.012543976306915283, + 0.00901639461517334, + -0.0008424076368100941, + -0.00833193864673376, + 0.03580232709646225, + 0.01111583225429058, + -0.023008259013295174, + -0.010062823072075844, + 0.011616012081503868, + 0.006025189068168402, + -0.0013680898118764162, + -0.013504847884178162, + -0.008575446903705597, + -0.006614216137677431, + 0.01223465520888567, + 0.02475888840854168, + 0.021033866330981255, + 0.01945435255765915, + 0.023784853518009186, + 0.0010875614825636148, + 0.03667105734348297, + 0.013261339627206326, + 0.027878427878022194, + 0.025732921436429024, + 0.014755296520888805, + -0.0066635762341320515, + 0.006137071177363396, + -0.02516692876815796, + 0.008996650576591492, + 0.02299509570002556, + -0.004669439513236284, + -0.011043437756597996, + -0.015663517639040947, + -0.010082567110657692, + -0.013702287338674068, + -0.007384229451417923, + 0.008614934980869293, + -0.013254757970571518, + 0.029642218723893166, + -0.023087235167622566, + -0.0034486062359064817, + 0.01704559288918972, + -0.004995214287191629, + 0.01921742409467697, + 0.004817518871277571, + -0.017519446089863777, + 0.0071867904625833035, + 0.009891708381474018, + -0.004350245930254459, + -0.010010172612965107, + -0.01974392868578434, + -0.017006104812026024, + 0.007515855599194765, + 0.010036497376859188, + 0.004511487670242786, + 0.015650354325771332, + 0.021099679172039032, + -0.020046669989824295, + -0.00309815164655447, + 0.008121335878968239, + 0.024482471868395805, + -0.007956803776323795, + -0.005821168422698975, + -0.021389257162809372, + 0.008470145985484123, + 0.030800530686974525, + -0.010089147835969925, + -0.0015268638962879777, + -0.012056959792971611, + 0.00937836617231369, + -0.028747161850333214, + -0.0060284798964858055, + -0.013570660725235939, + -0.011602848768234253, + -0.022968770936131477, + -0.020836427807807922, + 0.014492044225335121, + 0.005340733099728823, + 0.015202825888991356, + 0.008529377169907093, + 0.0028085738886147738, + 0.013439035043120384, + -0.007561924867331982, + -0.01765107363462448, + -0.012511069886386395, + -0.029431616887450218, + 0.014952735975384712, + 0.01175421942025423, + -0.026983371004462242, + -0.032537996768951416, + -0.003981692250818014, + 0.005163037683814764, + -0.023824341595172882, + 0.005959376227110624, + 0.004455546848475933, + 0.014084002934396267, + 0.002176768146455288, + 0.004241654183715582, + -0.004587172996252775, + 0.004504906479269266, + 0.046543024480342865, + -0.0005590000073425472, + -0.03372263163328171, + -0.02945794351398945, + 0.0029961413238197565, + 0.011109250597655773, + 0.0245219599455595, + 0.02070480026304722, + 0.013478522188961506, + 0.02394280582666397, + -0.024245545268058777, + -0.01658490113914013, + -0.00461020739749074, + -0.030563602223992348, + 0.033643655478954315, + 0.03293287381529808, + -0.01658490113914013, + 0.01684815250337124, + 0.024745725095272064, + -0.011128994636237621, + 0.0005318521289154887, + -0.01666387729346752, + 0.017374657094478607, + -0.014255116693675518, + 0.040514543652534485, + 0.020744288340210915, + -0.01255055796355009, + 0.011938495561480522, + -0.00027127336943522096, + 0.028562884777784348, + -0.0042975954711437225, + -0.01979658007621765, + 0.008141079917550087, + 0.014084002934396267, + -0.00416596932336688, + -0.016598062589764595, + -0.01605839654803276, + 0.032801248133182526, + 0.0026210066862404346, + 0.010530095547437668, + -0.010201030410826206, + -0.004791193641722202, + -0.0071538835763931274, + 0.010931555181741714, + 0.01878305897116661, + -0.015150175429880619, + 0.004498325288295746, + 0.025996174663305283, + 0.00723944092169404, + -0.011701568961143494, + 0.0003167255490552634, + 0.0029846238903701305, + 0.021705159917473793, + 0.014926410280168056, + -0.004784612450748682, + -0.003741474589332938, + 0.01561086717993021, + -0.029063064604997635, + 0.013649636879563332, + 0.005218978505581617, + 4.419246761244722e-05, + -0.028273306787014008, + 0.0018082148162648082, + -0.0075026932172477245, + -0.015821468085050583, + -0.013715449720621109, + -0.02829963155090809, + -0.01779586263000965, + 0.009727176278829575, + -0.0035045475233346224, + -0.017295682802796364, + -0.014702646061778069, + -0.02666746824979782, + -0.002247517229989171, + -0.010405050590634346, + 0.02377169020473957, + -0.006281860172748566, + 0.0023593995720148087, + -0.03266962245106697, + -0.00842407625168562, + 0.021152330562472343, + -0.002528868382796645, + 0.009595549665391445, + -0.0038895541802048683, + -0.022429103031754494, + 0.002968170680105686, + -0.011076344177126884, + -0.004570719785988331, + -0.011490967124700546, + -0.01928323693573475, + -0.016979780048131943, + 0.02266603149473667, + -0.007561924867331982, + -0.002211320213973522, + 0.018361855298280716, + 0.007805433589965105, + -0.006482589989900589, + 0.02058633789420128, + 0.01339296530932188, + -0.0015976129798218608, + -0.013847075402736664, + 0.008897931315004826, + -0.01678233966231346, + 0.017085080966353416, + 0.014676321297883987, + -0.00916118361055851, + 0.009648200124502182, + -0.028720835223793983, + 0.004063958767801523, + 0.003991564270108938, + 0.020770613104104996, + 0.0196254663169384, + -0.008726816624403, + 0.0026539131067693233, + 0.003853356931358576, + 0.02165250852704048, + 0.006377289071679115, + -0.009207252413034439, + 0.011576524004340172, + 0.008516214787960052, + 0.017466796562075615, + 0.017414145171642303, + 0.009312553331255913, + 0.03319612517952919, + 0.024693073704838753, + 0.024456147104501724, + -0.013182363472878933, + -0.037118587642908096, + 0.05272945389151573, + 0.0065516941249370575, + -0.00014777097385376692, + 0.032774921506643295, + -0.0100035909563303, + -0.0001546607818454504, + -0.02861553430557251, + 0.008674166165292263, + 0.013820750638842583, + 0.02806270495057106, + 0.007285510189831257, + -0.013228432275354862, + -0.02316621132194996, + -0.012780903838574886, + 0.017756374552845955, + 0.015215988270938396, + -0.023784853518009186, + 0.01245183777064085, + -0.02333732508122921, + 0.0035111287143081427, + -0.017756374552845955, + 0.00679191155359149, + 0.018664594739675522, + -0.02574608474969864, + -0.02408759482204914, + 0.00808842945843935, + -0.03177456557750702, + 0.037065938115119934, + -0.022047387436032295, + 0.009628456085920334, + -0.037408165633678436, + 0.004794484004378319, + -0.01129352767020464, + -0.01532128918915987, + 0.002127408515661955, + -0.01878305897116661, + 0.011813451535999775, + 0.027562525123357773, + 0.01178712584078312, + 0.013123131357133389, + -0.001218364923261106, + 0.0012529168743640184, + -0.010089147835969925, + -0.010905230417847633, + -0.0312480591237545, + -0.006660285405814648, + -0.020454710349440575, + 0.016966616734862328, + -0.00022499852639157325, + -0.003297236282378435, + -0.0019760383293032646, + -0.00818714965134859, + 0.006255534943193197, + 0.03627618029713631, + -0.017453633248806, + -0.00015784859715495259, + -0.012912529520690441, + -0.02307407185435295, + 0.00205830461345613, + -0.00193325977306813, + 0.018414504826068878, + 0.021968411281704903, + -0.016571737825870514, + -0.014228791929781437, + 0.007120977155864239, + -0.012122772634029388, + -0.014952735975384712, + -0.0011064826976507902, + 0.017901163548231125, + -0.042541585862636566, + 0.01387340109795332, + -0.0028628697618842125, + 0.020309921354055405, + 0.0058738188818097115, + -0.0037776718381792307, + -0.03638147935271263, + -0.010964462533593178, + 0.02186311036348343, + -0.01159626804292202, + 0.003675661515444517, + -0.02377169020473957, + -0.009753501042723656, + -0.012122772634029388, + -0.01337980292737484, + 0.006327929440885782, + -0.02316621132194996, + -0.0016963325906544924, + -0.016308486461639404, + -0.032537996768951416, + -0.011576524004340172, + -0.013149457052350044, + -0.004340373910963535, + 0.022823981940746307, + 0.005850784480571747, + 0.017703723162412643, + 0.017927488312125206, + -0.01591360755264759, + 0.005353895481675863, + 0.0006161751225590706, + -0.00997068453580141, + 0.021902598440647125, + 0.020309921354055405, + 0.024600936099886894, + 0.0031343488954007626, + -0.03664473444223404, + -0.017111405730247498, + -0.06349647790193558, + 0.014807946979999542, + -0.00808842945843935, + 0.02658849209547043, + 0.00902955699712038, + -0.028747161850333214, + 0.002319911727681756, + 0.015703005716204643, + 0.020770613104104996, + 0.0029961413238197565, + -0.009325715713202953, + 0.022165851667523384, + 0.023376813158392906, + -0.031406011432409286, + -0.018769895657896996, + 0.020388897508382797, + -0.010286587290465832, + -0.0019562942907214165, + 0.005337442271411419, + -0.009542899206280708, + -0.011793707497417927, + -0.008345101028680801, + -0.016426948830485344, + 0.04317339137196541, + -0.005775099154561758, + 0.006499043665826321, + 0.018546130508184433, + -0.021784136071801186, + -0.014452556148171425, + -0.021389257162809372, + -0.018019625917077065, + 0.02005983144044876, + -0.006452974397689104, + 0.010378725826740265, + -0.013570660725235939, + -0.009055882692337036, + 0.006183140445500612, + -0.0019743929151445627, + -0.005988991819322109, + -0.015229150652885437, + -0.00208298466168344, + 0.01678233966231346, + -0.016913965344429016, + -0.0008284223731607199, + 0.014294604770839214, + -0.01661122590303421, + 0.020533686503767967, + 0.013702287338674068, + -0.0033992466051131487, + -0.023613739758729935, + 0.014452556148171425, + -0.003402537200599909, + 0.007607994135469198, + 0.012708509340882301, + -0.01988871768116951, + -0.014123491011559963, + -0.008312194608151913, + -0.002043496584519744, + 0.009977265261113644, + -0.011826613917946815, + -0.006617506965994835, + -0.02357425168156624, + 0.002068176632747054, + -0.0017555643571540713, + 0.020796939730644226, + 0.019928205758333206, + -0.005459196399897337, + -0.021178655326366425, + -0.010720953345298767, + 0.010595908388495445, + -0.016861315816640854, + 0.005926469340920448, + 0.0190726350992918, + -0.014702646061778069, + -0.0015531891258433461, + -0.005765227600932121, + 0.009727176278829575, + 0.004452256020158529, + 0.02890511229634285, + 0.002254098653793335, + -0.015953095629811287, + -0.008707072585821152, + 0.0009477086132392287, + 0.012168841436505318, + -0.01815125159919262, + 0.004281142260879278, + 0.006765586324036121, + -0.0006412663497030735, + 0.007305253762751818, + -0.010385306552052498, + 0.002961589489132166, + -0.010484026744961739, + 0.014610507525503635, + -0.017966976389288902, + 0.030695229768753052, + -0.02342946268618107, + 0.011490967124700546, + 0.013952377252280712, + -0.020968053489923477, + 0.020454710349440575, + -0.023995455354452133, + -0.017124569043517113, + 0.02550915628671646, + 0.017980137839913368, + -0.04414742812514305, + -0.003272556234151125, + -0.019704442471265793, + -0.015729330480098724, + -0.00023260817397385836, + 0.01110266987234354, + -0.007127558346837759, + 0.014386743307113647, + -0.009134857915341854, + 0.011109250597655773, + -0.004843844100832939, + 0.02116549201309681, + 0.005959376227110624, + -0.0019102251389995217, + 0.0187304075807333, + -0.0023577541578561068, + -0.03316980227828026, + 0.0047056362964212894, + -0.04235731065273285, + 0.034486062824726105, + 0.02333732508122921, + -0.027088671922683716, + -0.016361135989427567, + -0.006660285405814648, + -0.0461481437087059, + -0.019059473648667336, + 0.006765586324036121, + 0.014070840552449226, + -0.0069301193580031395, + 0.006025189068168402, + -0.006851143669337034, + 0.030537277460098267, + 0.0007864665240049362, + 0.01258346438407898, + -0.011866101995110512, + -0.01002991572022438, + -0.0013738484121859074, + -0.0027361796237528324, + 0.011227714829146862, + -0.01140541024506092, + -0.04114634916186333, + -0.004416058771312237, + 0.02858920954167843, + -0.007285510189831257, + 0.009042719379067421, + 0.0225212424993515, + -0.0034848034847527742, + -0.02690439485013485, + -0.00128664611838758, + 0.010470864363014698, + 0.038250572979450226, + -0.012287305667996407, + 0.014136653393507004, + -0.016545413061976433, + 0.006699773482978344, + 0.009036138653755188, + 0.01149754785001278, + -0.041909780353307724, + -0.0015219278866425157, + 0.016742851585149765, + -0.006680029444396496, + 0.010122054256498814, + 0.01124745886772871, + -0.02493000216782093, + 0.022481754422187805, + -0.02774680219590664, + 0.0366973839700222, + 0.01193191483616829, + -0.048359464854002, + 0.006344382651150227, + 0.0209022406488657, + -0.012813810259103775, + -0.023837504908442497, + 0.00693670054897666, + -0.04014598950743675, + 0.014821109361946583, + -0.007055164314806461, + -0.01759842224419117, + 0.010734116658568382, + 0.0005503620486706495, + 0.010595908388495445, + 0.007621156983077526, + 0.007232859265059233, + -0.01416297908872366, + -0.02150772139430046, + -0.04006701335310936, + 0.025430181995034218, + 0.02808902971446514, + -0.015755655243992805, + -0.0016831699758768082, + -0.012004309333860874, + -0.0036921147257089615, + -0.0031787727493792772, + -0.014557857066392899, + 0.00426797941327095, + -0.018217066302895546, + -0.0005840912344865501, + 0.014571020379662514, + -0.01324817631393671, + 0.0033120440784841776, + 0.0008958808030001819, + 0.009134857915341854, + -0.00579155283048749, + -0.01131985243409872, + 0.18596148490905762, + -0.02586454711854458, + -0.021257631480693817, + 0.01433409284800291, + -0.029721194878220558, + -0.04011966288089752, + 0.012905948795378208, + 0.021033866330981255, + 0.01759842224419117, + 0.021955249831080437, + 0.018717244267463684, + -0.010444538667798042, + -0.010122054256498814, + 0.0035078381188213825, + 0.011431735008955002, + -0.021257631480693817, + -0.026812255382537842, + -0.007844921201467514, + 0.008463564328849316, + 0.03211679309606552, + 0.023705877363681793, + -0.02887878753244877, + 0.007443461567163467, + -0.007318416610360146, + 0.045411039143800735, + 0.01959914155304432, + 0.010747279040515423, + 0.02519325353205204, + 0.031379684805870056, + 0.0303530003875494, + -0.024219220504164696, + 0.00968110654503107, + 0.018124926835298538, + -0.01164233684539795, + -0.0020040087401866913, + 0.004935982171446085, + 0.009707432240247726, + -0.005541462916880846, + 0.018690919503569603, + 0.02658849209547043, + 0.010563001967966557, + -0.028168005868792534, + 0.0024268580600619316, + -0.03372263163328171, + 0.015281801111996174, + 0.017690561711788177, + -0.008634678088128567, + 0.01533445157110691, + 0.004794484004378319, + 0.014742134138941765, + -0.005538172088563442, + 0.01287304237484932, + 0.010997368954122066, + 0.029378967359662056, + -0.013912889175117016, + -0.02495632693171501, + 0.014979060739278793, + 0.0014240308664739132, + 0.005775099154561758, + -0.006772167980670929, + -0.03811894729733467, + 0.01716405525803566, + -0.003613139037042856, + 0.01418930385261774, + -0.022113200277090073, + 0.006206175312399864, + -0.00885844323784113, + -0.01487375982105732, + -0.010247099213302135, + -0.00833193864673376, + 0.010951299220323563, + -0.010727535001933575, + -0.0020517234224826097, + 0.013195525854825974, + -0.01615053415298462, + -0.03037932701408863, + 0.024969490244984627, + 0.014294604770839214, + 0.03409118577837944, + 0.019401701167225838, + 0.014834272675216198, + 0.009720594622194767, + -0.017756374552845955, + -0.022679192945361137, + 0.004040924366563559, + -0.004119900055229664, + 0.02435084618628025, + -0.005896853748708963, + 0.013004668056964874, + -0.0249036755412817, + -0.028720835223793983, + -0.002512414939701557, + -0.003405827796086669, + -0.01403135247528553, + 0.00505773676559329, + -0.004919528961181641, + 0.011365922167897224, + 0.017085080966353416, + -0.014505206607282162, + -0.018164414912462234, + -0.027641501277685165, + 0.04033026844263077, + 0.04235731065273285, + -0.01719038188457489, + 0.00041277153650298715, + 0.007706713862717152, + -0.0026769477408379316, + 0.029958121478557587, + -0.007265766151249409, + 0.011708150617778301, + -0.0009477086132392287, + -0.037960994988679886, + 0.017730047926306725, + -0.027272947132587433, + 0.010043079033493996, + 0.01858561858534813, + 0.014268280006945133, + 0.001862510689534247, + 0.004646404646337032, + -0.004376571159809828, + -0.014742134138941765, + -0.0041429344564676285, + 0.015110687352716923, + 0.004590463824570179, + 0.01742730848491192, + -0.03540744632482529, + -0.04264688864350319, + 0.03627618029713631, + -0.00950999278575182, + 0.0031754819210618734, + 0.02145507000386715, + -0.013017830438911915, + 0.024311358109116554, + -0.01029316894710064, + 0.013228432275354862, + -0.007937059737741947, + -0.008990068919956684, + -0.02550915628671646, + -0.022837145254015923, + -0.007311835419386625, + 0.025377530604600906, + -0.0062621161341667175, + -0.0023643355816602707, + 0.016190022230148315, + 0.022415941581130028, + 0.010938136838376522, + 0.019901880994439125, + 0.005854075308889151, + -0.014571020379662514, + -0.027351923286914825, + -0.013458778150379658, + -0.010056241415441036, + 0.003794125048443675, + -0.020402060821652412, + 0.017953813076019287, + 0.00425481703132391, + -0.015808306634426117, + -0.03888237848877907, + 0.019204262644052505, + 0.009299390949308872, + -0.03203781694173813, + -0.012201748788356781, + -0.0026769477408379316, + -0.031300708651542664, + 0.0035835232120007277, + 0.0026489770971238613, + -0.16563840210437775, + 0.01272825337946415, + 0.023534763604402542, + -0.015650354325771332, + 0.008674166165292263, + 0.009180927649140358, + 0.022415941581130028, + 0.022047387436032295, + -0.030274026095867157, + 0.014268280006945133, + 0.034907266497612, + -0.0028069287072867155, + -0.005337442271411419, + -0.02750987559556961, + -0.0075026932172477245, + 0.0023413009475916624, + -0.025956686586141586, + 0.014557857066392899, + 0.024140244349837303, + 0.012471581809222698, + -0.0026966917794197798, + -0.019664954394102097, + 0.009595549665391445, + 0.0001094142789952457, + -0.008259544149041176, + 0.005910016130656004, + -0.017256194725632668, + 0.020981214940547943, + -0.02029675990343094, + -0.015531891025602818, + -0.010095729492604733, + 0.010845998302102089, + 0.027062345296144485, + 0.011616012081503868, + -0.0010826254729181528, + -0.006209465675055981, + -0.003537453943863511, + -0.004376571159809828, + -0.002640750491991639, + 0.005992282647639513, + 0.013011249713599682, + 0.047385431826114655, + -0.009918034076690674, + 0.007278928533196449, + 0.01079992949962616, + 0.028168005868792534, + 0.022389616817235947, + -0.022692356258630753, + 0.0027542782481759787, + -0.01974392868578434, + 0.0037019867449998856, + -0.020099319517612457, + 0.0028052832931280136, + 0.021060191094875336, + 0.004475290887057781, + 0.00842407625168562, + -0.017901163548231125, + 0.020309921354055405, + 0.017519446089863777, + -0.008911093696951866, + -0.011629174463450909, + -0.022797657176852226, + 0.0002589334035292268, + -0.007877827621996403, + -0.021283956244587898, + -0.009707432240247726, + 0.003803997067734599, + 0.02750987559556961, + 0.00048043561400845647, + -0.002528868382796645, + 0.008878187276422977, + -0.0360129289329052, + 0.0064463927410542965, + -0.024706237018108368, + 0.012675602920353413, + 0.021981574594974518, + 0.0029731066897511482, + 0.012807228602468967, + 0.00020268377556931227, + 0.010556421242654324, + -0.01586095616221428, + 0.03388058394193649, + -0.0037842532619833946, + -0.02974751964211464, + -0.008305612951517105, + -0.02811535634100437, + -0.02386382967233658, + 0.021665671840310097, + -0.02044154889881611, + 0.0011081279953941703, + 0.013794424943625927, + 0.0001715253893053159, + -0.025732921436429024, + -0.022179014980793, + 0.014728971756994724, + -0.008911093696951866, + -0.009490248747169971, + -0.002448247279971838, + -0.021665671840310097, + -0.010793347842991352, + 0.005541462916880846, + -0.011194808408617973, + -0.030168723315000534, + 0.025877710431814194, + -0.011820032261312008, + -0.0026144252624362707, + 0.003461768850684166, + 0.0020040087401866913, + 0.04551633819937706, + -0.012715090997517109, + -0.020744288340210915, + -0.0016445048386231065, + 0.014136653393507004, + 0.00679191155359149, + -0.001293227425776422, + 0.01129352767020464, + 0.007515855599194765, + -0.019901880994439125, + 0.008838699199259281, + 0.004083702806383371, + 0.05733637139201164, + -0.02858920954167843, + -0.019085798412561417, + 0.02394280582666397, + -0.007851502858102322, + -0.01388656347990036, + -0.09877229481935501, + -0.00475499639287591, + 0.018822545185685158, + 0.009924614802002907, + 0.013557498343288898, + 0.0220078993588686, + 0.022745007649064064, + -0.008450401946902275, + 0.02208687551319599, + 0.02919469028711319, + -0.021060191094875336, + -0.02774680219590664, + -0.029142040759325027, + -0.021902598440647125, + -0.0010579455411061645, + -0.013912889175117016, + 0.006890631280839443, + -0.015202825888991356, + -0.019112123176455498, + 0.030589928850531578, + -0.030116073787212372, + -0.004965598229318857, + -0.01733517087996006, + -0.016137370839715004, + -0.016137370839715004, + -0.00135328178294003, + -0.029589569196105003, + -0.006235790904611349, + 0.02600933611392975, + -0.017966976389288902, + 0.001548253116197884, + -0.015518728643655777, + 0.003665789496153593, + -0.0038500663358718157, + 0.004231782164424658, + -0.00570270512253046, + -0.02058633789420128, + -0.00873997900635004, + 0.03643413260579109, + -0.01571616716682911, + -0.00450161611661315, + 0.03264329582452774, + 0.011372503824532032, + -0.019691279157996178, + 0.0019743929151445627, + -0.02435084618628025, + -0.02145507000386715, + 0.01174105703830719, + 0.004590463824570179, + 0.007515855599194765, + -0.031090106815099716, + -0.034749314188957214, + -0.037908345460891724, + 0.0058836909011006355, + 0.025785570964217186, + -0.005580950528383255, + -0.019783416762948036, + 0.006976188626140356, + -0.011984565295279026, + -0.008838699199259281, + -0.03227474167943001, + 0.020481036975979805, + -0.027957404032349586, + 0.023679552599787712, + -0.004577300976961851, + -0.005620438605546951, + -0.03274859860539436, + -0.012807228602468967, + 0.016045233234763145, + 0.022850308567285538, + -0.031011132523417473, + 0.01269534695893526, + 0.008891349658370018, + 0.013254757970571518, + -0.027562525123357773, + -0.009009812958538532, + -0.02629891410470009, + -0.01719038188457489, + 0.018717244267463684, + -0.010490607470273972, + 0.008865023963153362, + -0.027878427878022194, + 0.026456864550709724, + -0.024140244349837303, + 0.03453871235251427, + 0.03609190136194229, + 0.0026868197601288557, + 0.0008531023049727082, + 0.024535123258829117, + -0.014386743307113647, + -0.005051155108958483, + 0.0190726350992918, + 0.013952377252280712, + -0.0038994259666651487, + -0.04514778405427933, + 0.00708148954436183, + 0.00013913300062995404, + -0.00530453585088253, + 0.007035420276224613, + 0.00570270512253046, + -0.0029977867379784584, + -0.018375016748905182, + -0.03885605186223984, + 0.022705519571900368, + 0.013320570811629295, + 0.008575446903705597, + -0.01418930385261774, + -0.017953813076019287, + 0.006268697790801525, + 0.0071143959648907185, + 0.03498624265193939, + -0.000838294334243983, + -0.015229150652885437, + -0.0038171596825122833, + -0.007983128540217876, + -0.0007593186455778778, + -0.031300708651542664, + -0.022823981940746307, + 0.005686251912266016, + 0.021415581926703453, + -0.0039586578495800495, + 0.0005980765563435853, + -0.009746919386088848, + 0.0257987342774868, + -0.00044135909411124885, + 0.021757809445261955, + -0.0151765001937747, + 0.005064317956566811, + -0.010852579958736897, + 0.0005668153171427548, + -0.01002991572022438, + -0.008917674422264099, + 0.001669184654019773, + 0.021784136071801186, + 0.0022047387901693583, + 0.01971760392189026, + -0.01588728278875351, + 0.0006338623934425414, + 0.025206416845321655, + 0.05188704654574394, + 0.021126003935933113, + 0.0418044812977314, + -0.008042360655963421, + -0.011063181795179844, + 0.013346896506845951, + -0.020665312185883522, + 0.004373280331492424, + 0.012767741456627846, + 0.01145147904753685, + -0.008944000117480755, + 0.0070420014671981335, + -0.022192176431417465, + 0.025969848036766052, + 0.008048942312598228, + 0.01901998557150364, + -0.0005882045370526612, + -0.001734175137244165, + 0.0021570243407040834, + 0.002130699111148715, + 0.016834991052746773, + 0.017453633248806, + -0.038777075707912445, + 0.04714850336313248, + 0.02116549201309681, + -0.002838189946487546, + -0.02864186093211174, + 0.007048582658171654, + -0.020665312185883522, + -0.012517651543021202, + -0.02415340766310692, + -0.0001230910565936938, + -0.02666746824979782, + -0.026312077417969704, + -0.006416777148842812, + 0.021428745239973068, + 0.024258708581328392, + -0.010418213903903961, + -0.007976547814905643, + 0.0033729213755577803, + 0.00040495622670277953, + -0.005633600987493992, + 0.008865023963153362, + 0.018388180062174797, + 0.026746442541480064, + 0.0018279588548466563, + -0.003813869087025523, + 0.04954409971833229, + -0.004692473914474249, + -0.018941009417176247, + -0.005781680811196566, + -0.013978702016174793, + -0.005386801902204752, + -0.035091545432806015, + 0.021099679172039032, + 0.0077988519333302975, + 0.01374177448451519, + 0.01562402956187725, + 0.016940291970968246, + 0.01704559288918972, + 0.0015252185985445976, + 0.036460455507040024, + 0.029563244432210922, + 0.0012504488695412874, + -0.006554984487593174, + -0.0064496835693717, + -0.02235012874007225, + 0.0019069345435127616, + 0.01875673234462738, + -0.013063900172710419, + -0.04148857668042183, + 0.0014429521979764104, + 0.025851385667920113, + -0.01890152134001255, + 0.021665671840310097, + 0.02159985899925232, + 0.001729239127598703, + -0.011806869879364967, + 0.009786407463252544, + -0.017229869961738586, + -0.0015498984139412642, + -0.0232846736907959, + 0.013202107511460781, + 0.026219937950372696, + -0.005666507873684168, + -0.0006338623934425414, + 0.0017917616060003638, + 0.014834272675216198, + -0.015926769003272057, + 0.005317698232829571, + -0.015847794711589813, + 0.007107814773917198, + 0.0025354495737701654, + 0.021876273676753044, + 0.005972538609057665, + -0.006462846416980028, + -0.015874119475483894, + -0.019691279157996178, + 0.0046661486849188805, + 0.029142040759325027, + -0.000896703451871872, + -0.007331578992307186, + 0.12878307700157166, + 0.02017829567193985, + -0.01240576896816492, + 0.019401701167225838, + -0.002520641777664423, + 0.028431259095668793, + 0.01844082958996296, + 0.008259544149041176, + 0.0016025489894673228, + -0.04806988686323166, + 0.019414864480495453, + -0.0074302987195551395, + 0.01259662676602602, + -0.018954172730445862, + 0.0022820690646767616, + 0.01030633132904768, + 0.0030701810028403997, + 0.016953453421592712, + -0.032485343515872955, + 0.0024762179236859083, + 0.05178174749016762, + -0.04356827214360237, + 0.016861315816640854, + 0.03722388669848442, + -0.003488094313070178, + -0.017940649762749672, + 0.012201748788356781, + 0.01663755066692829, + 0.002254098653793335, + -0.006525368895381689, + 0.0028661603573709726, + 0.00011856640776386485, + -0.05078138783574104, + -0.014649995602667332, + 0.012813810259103775, + -0.02357425168156624, + -0.0023083945270627737, + -0.013570660725235939, + 0.016190022230148315, + 0.008970324881374836, + 0.010859161615371704, + 0.0267332810908556, + -0.005274919793009758, + -0.02342946268618107, + 0.0016428594244644046, + 0.004498325288295746, + 0.012399187311530113, + -0.014900085516273975, + -0.006485880818217993 + ], + "metadata": { + "source": "Thesis_Verladegeraeusche_in_Speditionen.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 41, + "has_images": true, + "image_count": 51, + "coordinates": "CoordinatesMetadata(points=((204.16666666666666, 189.02777777777797), (204.16666666666666, 642.3611111111111), (936.1666666666666, 642.3611111111111), (936.1666666666666, 189.02777777777797)), system=)", + "links": [], + "last_modified": "2025-05-05T22:59:16", + "_known_field_names": "frozenset({'cc_recipient', 'link_texts', 'url', 'filetype', 'category_depth', 'page_number', 'filename', 'orig_elements', 'detection_origin', 'email_message_id', 'page_name', 'coordinates', 'table_as_cells', 'link_start_indexes', 'sent_to', 'bcc_recipient', 'languages', 'last_modified', 'link_urls', 'file_directory', 'subject', 'data_source', 'detection_class_prob', 'image_base64', 'text_as_html', 'attached_to_filename', 'key_value_pairs', 'signature', 'sent_from', 'header_footer_type', 'parent_id', 'links', 'emphasized_text_contents', 'emphasized_text_tags', 'image_mime_type', 'is_continuation', 'image_path'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "Thesis_Verladegeraeusche_in_Speditionen.pdf", + "detection_class_prob": 0.2568194270133972, + "parent_id": "d45475a34bc527cde6987546fa6dd2f5", + "text_as_html": "
Flurf\u00f6rderger\u00e4t |Anzahl Einzelereignisse ElMax-PegelSchallleistungspegel
LAFmaxLWA,5sLWAmaxLWA,1hKlLWAT,1h
[dB(A)][dB(A)][dB(A)][dB(A)][dB(A)][dB(A)]
Gabelstapler29769,3100,7108,872,15,777,8
STABW [dB]6,54,96,54,92,9-
Gabelhubwagen9968,6100,7108,172,16,279,5
STABW [dB]6,45,16,4512,7-
", + "id": "5ba44de7-0ff3-4c0c-b018-67e92171e1c2", + "processing_timestamp": "2025-05-06T14:18:19.298665", + "chunk_number": 21, + "total_chunks": 49, + "chunking_strategy": "hybrid", + "word_count": 455 + } +} \ No newline at end of file diff --git a/data/processed/85fd305f-83de-70b0-47e8-2dc000000022.json b/data/processed/85fd305f-83de-70b0-47e8-2dc000000022.json new file mode 100644 index 0000000000000000000000000000000000000000..4742f3e11f6204a5feeaab2955284febeff203ad --- /dev/null +++ b/data/processed/85fd305f-83de-70b0-47e8-2dc000000022.json @@ -0,0 +1,1570 @@ +{ + "id": "85fd305f-83de-70b0-47e8-2dc000000022", + "content": "Um pr\u00e4- zise Ergebnisse zu erzielen, wurde eine feste Messposition im Fernfeld auf einer Gr\u00fcn- fl\u00e4che des Betriebsgel\u00e4ndes gew\u00e4hlt (Abbildung 11). Diese Position erm\u00f6glicht eine zu- verl\u00e4ssige Erfassung der Schallwerte, ohne den normalen Betriebsablauf zu beeintr\u00e4ch- tigen. Des Weiteren erm\u00f6glicht die Fernfeld-Platzierung die Erfassung des Schalls in gr\u00f6- \u00dferer Entfernung von der Schallquelle, was eine genauere und repr\u00e4sentativere Mes- sung der Schallausbreitung erm\u00f6glicht. Durch den gr\u00f6\u00dferen Abstand zur Schallquelle werden m\u00f6gliche St\u00f6rungen und Reflexionen reduziert, die in unmittelbarer N\u00e4he auf- treten k\u00f6nnten. [IMAGE: ]\n\nAbbildung 11: Ortsfeste Mikrofonposition\nDa zur genauen Beschreibung der Richtcharakteristik eines Beladevorgangs mehrere Messpositionen erforderlich sind, wurde auf ortsfeste Messpunkte im Nahfeld verzich- tet, da die Belegung der Verladestationen st\u00e4ndig wechselte, wodurch eine feste Positi- onierung der Mikrofone nicht durchf\u00fchrbar und praktisch war. Um dennoch Messungen\n44\n5 Beschreibung der Untersuchungsmethodik\ndurchf\u00fchren zu k\u00f6nnen, wurde ein variables Mikrofon verwendet. Das Mikrofon wurde auf einem langen Stab befestigt, um eine flexible Platzierung zu erm\u00f6glichen. In Abspra- che mit dem Messgehilfen wurden geeignete Messpositionen ausgew\u00e4hlt. Durch diese Vorgehensweise konnte eine m\u00f6glichst realit\u00e4tsnahe Abbildung der Schallausbreitung w\u00e4hrend der Beladevorg\u00e4nge erreicht werden. Die variablen Messpositionen bieten den Vorteil, dass der Messbereich an die tats\u00e4chlichen Gegebenheiten angepasst werden kann. Je nach Belegung der Verladestationen und der spezifischen Beladesituation konnte das Mikrofon an verschiedenen Stellen platziert werden, um die Schallpegel in unterschiedlichen Richtungen und Entfernungen zur Schallquelle zu erfassen (siehe Ab- bildung 12). [IMAGE: ]\n\n\n[IMAGE: T ll Ill IM \u0131)] zbr\u00e4der WENS$ ort und Logistik]\n\nBefestigung am langen Stab\nAlternativer Aufbau vom 24.05.2023\nAbbildung 12: Variabler Mikrofonaufbau\nIn der Regel wurden die Mikrofone auf einer einheitlichen H\u00f6he von 3,5 m H\u00f6he positi- oniert, da dies ungef\u00e4hr der mittleren H\u00f6he der G\u00fcter auf dem Anh\u00e4nger entspricht. Bei der Messung am 24.05.2023 waren nur kleine Mikrofonst\u00e4nder zur Verf\u00fcgung, die auf einer H\u00f6he von 2,5 m gestellt worden sind. Die genauen Mikrofonpositionen sind in den Abbildungen im Anhang 2: Lagepl\u00e4ne dargestellt. 45\n6 Messauswertung und Statistik\n\n## 6 Messauswertung und Statistik\n\nIn diesem Kapitel geht es um die Vorgehensweise bei der Messauswertung und die Sta- tistik der untersuchten Verladeger\u00e4usche. Die Messauswertung und Statistik sind ein wichtiger Schritt in der Analyse von L\u00e4rmemissionen. Die Auswertung der Messdaten erm\u00f6glicht es geeignete Emissionsans\u00e4tze f\u00fcr die weitere Schallimmissionsprognose zu erarbeiten, um potenzielle L\u00e4rmprobleme zu erkennen und gezielte Ma\u00dfnahmen zur L\u00e4rmminderung zu ergreifen. In diesem Kontext werden beifolgend statistische Metho- den aufgezeigt, um Aussagen \u00fcber die Verteilung und Charakteristik der L\u00e4rmemissio- nen treffen zu k\u00f6nnen. ## 6.1 Verladeger\u00e4usche\n\nDie Auswertung der Verladeger\u00e4usche ist ein wesentlicher Schritt zur Gewinnung von Kennwerten. In diesem Kontext wurden in Kapitel 2.2 die Rechengrundlagen zur Ermitt- lung der Verladeger\u00e4usche beschrieben. Jedoch handelt es sich bei dem Verladevorgang eines Flurf\u00f6rderger\u00e4tes um einen nicht station\u00e4ren Ablauf, bei dem sich Ort der Quelle stetig \u00e4ndert. Aus diesem Grund wird in der Auswertung der zeitbezogene Schallleis- tungspegel berechnet, um den Einfluss der sich \u00e4ndernden Positionen zu ber\u00fccksichti- gen. Zudem werden die Abst\u00e4nde der Mikrofone auf den Mittelpunkt der Verladezone bezogen, um einen einheitlichen Bezugspunkt f\u00fcr die Entfernungen zu haben. Zur \u00dcber- pr\u00fcfung der gemessenen Werten wurde im Anschluss eine Validierungsrechnung mit- hilfe des Programms SoundPlan 9.0 durchgef\u00fchrt, welche in Kapitel 6.3, beschrieben wird. Nach erfolgreicher Durchf\u00fchrung der Messungen erfolgt nun die Auswertung der Mess- daten. F\u00fcr die \u00dcbertragung der Messdaten wurde die Software NorXfer 6.1 verwendet, die speziell f\u00fcr die \u00dcbertragung von Messdateien entwickelt wurde.", + "embedding": [ + 0.005075111985206604, + 0.008113566786050797, + -0.009786535054445267, + -0.019969822838902473, + 0.0018614254659041762, + 0.01711321249604225, + -0.016557760536670685, + -0.010467625223100185, + -0.00672493688762188, + -0.011624816805124283, + 0.026582345366477966, + 0.011452890932559967, + -0.021239425987005234, + 0.016015533357858658, + -0.007267163600772619, + -0.0003754673816729337, + 0.03406772390007973, + -0.004549416247755289, + 0.002876447979360819, + -0.01487817894667387, + -0.017099985852837563, + 0.011909155175089836, + -0.008430968038737774, + 0.0020531886257231236, + -0.007577952463179827, + 0.012603470124304295, + 0.023567035794258118, + -0.008318554610013962, + -0.006192628759890795, + 0.006877024658024311, + -0.018726667389273643, + -0.002440021373331547, + -0.016438733786344528, + -0.003281465033069253, + -0.03298326954245567, + -0.010150223970413208, + -0.006989437621086836, + -0.026093019172549248, + 0.015803931280970573, + -0.018118316307663918, + 0.003755913581699133, + 0.007882128469645977, + -0.0015010428614914417, + -0.021913904696702957, + 0.004559335298836231, + 0.016108108684420586, + 0.005881839897483587, + -0.0006405882304534316, + -0.01715288683772087, + 0.012048018164932728, + 0.01344987377524376, + 0.018250565975904465, + -0.01711321249604225, + 0.023752186447381973, + 0.001506002270616591, + -0.011604979634284973, + 0.013139084912836552, + 0.00944929663091898, + -0.014296276494860649, + -0.033776771277189255, + -0.05086353421211243, + -0.0012034793617203832, + -0.02597399428486824, + -0.006410841830074787, + -0.015605556778609753, + -0.01883246749639511, + -0.01888536848127842, + 0.00037960021290928125, + -0.015565881505608559, + -0.012517508119344711, + 0.02470438927412033, + 0.02721714787185192, + 0.006129809655249119, + 0.020736875012516975, + 0.03406772390007973, + -0.011155327782034874, + 0.025762392207980156, + -0.0032979962415993214, + 0.0016713154036551714, + 0.016888385638594627, + 0.009369946084916592, + -0.02846030332148075, + -0.02089557610452175, + 0.054698798805475235, + 0.017721563577651978, + -0.009515421465039253, + 0.010348599404096603, + 0.008576443418860435, + -0.015169129706919193, + -0.008278880268335342, + 0.01879279315471649, + 0.036739181727170944, + -0.0034980252385139465, + -0.0026417032349854708, + 0.017946390435099602, + -0.0015506368363276124, + -0.00596449663862586, + 0.026317844167351723, + 0.006447210907936096, + -0.01464012823998928, + -0.007161363493651152, + -0.0027111347299069166, + -0.0004089432768523693, + 0.002292892662808299, + -0.01444175187498331, + 0.0014489692403003573, + -0.005885146092623472, + -0.011611592024564743, + 0.009277370758354664, + -0.021503927186131477, + -0.026608796790242195, + 0.021517151966691017, + -0.011783517897129059, + -0.0011803355300799012, + 0.024598589166998863, + -0.019189544022083282, + 0.024003461003303528, + -0.037532687187194824, + -0.009978298097848892, + -0.0035707629285752773, + 0.01966564543545246, + -0.0044072470627725124, + 0.02133200131356716, + -0.0017721564508974552, + 0.032136864960193634, + -0.008503705263137817, + -0.014997203834354877, + -0.00018184439977630973, + -0.015764256939291954, + -0.022138729691505432, + -0.014864953234791756, + 0.004572560079395771, + 0.02600044384598732, + 0.01797283999621868, + -0.0021920516155660152, + 0.004959392827004194, + -0.01549975574016571, + 0.005432188510894775, + -0.02265450730919838, + -0.034199971705675125, + 0.00966751016676426, + 0.008278880268335342, + -0.028592552989721298, + -0.03591923043131828, + 0.0024350618477910757, + 0.036289531737565994, + 0.0020912105683237314, + 0.005481782369315624, + -0.008688855916261673, + -0.006701793055981398, + -0.005005680490285158, + -0.03851133957505226, + 0.01711321249604225, + -0.001070402329787612, + -0.027375848963856697, + -0.016570985317230225, + -0.010910664685070515, + 0.019506946206092834, + -0.01970532163977623, + -0.005485088564455509, + 0.02340833470225334, + 0.019414370879530907, + 0.01672968454658985, + 0.03634243085980415, + 0.019520170986652374, + 0.0020019416697323322, + 0.010546975769102573, + -0.018131541088223457, + -0.01598908193409443, + 0.002755769295617938, + -0.02052527479827404, + 0.0005736364400945604, + -0.01798606477677822, + 0.030840812250971794, + 0.01066600065678358, + -0.007055562920868397, + -0.006027315277606249, + 0.016266807913780212, + -0.03822038695216179, + -0.03475542366504669, + -0.03136981278657913, + 0.004747792147099972, + -0.0013687924947589636, + 0.008523543365299702, + -0.017007410526275635, + 0.007822616025805473, + 0.02011529728770256, + 0.034967027604579926, + -0.010990014299750328, + -0.003739382140338421, + 0.006784449331462383, + 0.002947532571852207, + 0.009482359513640404, + -0.01798606477677822, + -0.6233758330345154, + 0.013529223389923573, + 0.005273487884551287, + 0.0006587727111764252, + 0.010791638866066933, + 0.028592552989721298, + 0.01674291118979454, + -0.0057892645709216595, + 0.00679767457768321, + 0.05208023637533188, + 0.0004546110285446048, + 0.0081730792298913, + -0.010540363378822803, + -0.0022135423496365547, + -0.011631429195404053, + -0.015737807378172874, + -0.020207872614264488, + -0.009634447284042835, + 0.04245240241289139, + -0.00898641999810934, + -0.04083894565701485, + 0.014507877640426159, + -0.0024896152317523956, + 0.014164025895297527, + -0.0071745882742106915, + 0.003418674925342202, + 0.0023672834504395723, + -0.011294190771877766, + 0.00324674928560853, + 0.002973982598632574, + -0.013139084912836552, + 0.017033861950039864, + -0.024016685783863068, + 0.028195802122354507, + 0.04472711309790611, + 0.0035310876555740833, + -0.0015431977808475494, + 0.020855899900197983, + 0.0027623819187283516, + -0.006701793055981398, + 0.0008844250696711242, + -0.0293596051633358, + -0.015632007271051407, + -0.015063329599797726, + -0.006658811587840319, + -0.011538853868842125, + 0.031211113557219505, + -0.012828296050429344, + 0.001630813698284328, + -0.03573407977819443, + 0.0025706186424940825, + -0.003331058891490102, + 0.0108974389731884, + 0.006850574631243944, + 0.02351413480937481, + -0.0017060311511158943, + 0.025894643738865852, + -0.0027160942554473877, + -0.007624240126460791, + 0.0037030132953077555, + -0.014402076601982117, + 0.0015233601443469524, + 0.0009993176208809018, + -0.033406469970941544, + -0.030787911266088486, + 0.021980028599500656, + -0.027111347764730453, + -0.029835708439350128, + 0.027560999616980553, + -0.014719477854669094, + -0.0100311990827322, + 0.028433851897716522, + -0.009746859781444073, + -0.004172502551227808, + 0.040018994361162186, + 0.02598721906542778, + 0.00028867798391729593, + -0.02184777893126011, + 0.006741467863321304, + 0.026516221463680267, + 0.008259042166173458, + -0.009898948483169079, + -0.029677007347345352, + 0.005908289924263954, + 0.007855677977204323, + -0.00026594745577313006, + -0.007624240126460791, + 0.005567745305597782, + 0.024201838299632072, + 0.0034120623022317886, + 0.022429680451750755, + 0.04314010590314865, + -0.003468268783763051, + -0.02645009569823742, + -0.012702658772468567, + 0.03983384370803833, + -0.008087116293609142, + 0.03012665919959545, + -0.0026797254104167223, + -0.019916921854019165, + -0.03483477607369423, + -0.0006645586690865457, + 0.02555079199373722, + -0.02432086318731308, + 0.017893489450216293, + 0.009951848536729813, + 0.009958460927009583, + 0.006645586341619492, + 0.008702081628143787, + -0.019149869680404663, + -0.013059734366834164, + -0.010765189304947853, + -0.007042338140308857, + -0.020379798486828804, + -0.003904695389792323, + -0.0281429011374712, + 0.014719477854669094, + 0.012841521762311459, + -0.0005943005671724677, + -0.006344716530293226, + 0.0100311990827322, + 0.00502882432192564, + 0.04491226375102997, + 0.0004269210621714592, + -0.020432699471712112, + 0.023395109921693802, + 0.03517862781882286, + 0.01323827262967825, + -0.0029045511037111282, + -0.019506946206092834, + 0.0060736034065485, + 0.007121688220649958, + 0.014798828400671482, + -0.006890249904245138, + 0.012894421815872192, + 0.019559845328330994, + 0.02941250614821911, + -0.006169484928250313, + 0.0014076409861445427, + -0.029650557786226273, + -0.028619002550840378, + -0.0005116440588608384, + 0.014957528561353683, + -0.03695078194141388, + -0.018303466960787773, + -0.040891848504543304, + -0.00793502852320671, + 0.006318266503512859, + -0.0010439521865919232, + 0.003471574978902936, + -0.0022366861812770367, + -0.018184440210461617, + -0.0024152244441211224, + 0.019969822838902473, + -0.015843607485294342, + 0.008311942219734192, + -0.013344072736799717, + -0.01716611161828041, + -0.006543092429637909, + -0.01510300487279892, + 0.01135370321571827, + 0.018554741516709328, + -0.03787653520703316, + -0.012041405774652958, + -0.004096458666026592, + -0.024479564279317856, + 0.011056140065193176, + 0.0013828440569341183, + -0.01678258553147316, + -0.03570763021707535, + 0.008430968038737774, + 0.002646662760525942, + -0.02262805588543415, + 0.002942573046311736, + -0.015420406125485897, + 0.000945590902119875, + -0.038326188921928406, + 0.0020879043731838465, + -0.022733857855200768, + -0.024572139605879784, + 0.014375627040863037, + 0.009528647176921368, + -0.030708560720086098, + -0.004628766793757677, + 0.024056361988186836, + -0.0006786102894693613, + -0.014957528561353683, + 0.0036170505918562412, + -0.016147783026099205, + 0.03314197063446045, + -0.008007766678929329, + 0.002899591811001301, + -0.019916921854019165, + 0.014111125841736794, + -0.017748015001416206, + 0.007835840806365013, + 0.008893844671547413, + -0.003640194423496723, + -0.016703234985470772, + 0.010394887067377567, + 0.001238195109181106, + 0.012041405774652958, + 0.025048241019248962, + -0.019176319241523743, + 0.019864020869135857, + -0.01339036040008068, + 0.009151733480393887, + -0.026198819279670715, + 0.03811458870768547, + 0.019202768802642822, + 0.010434562340378761, + -0.016531309112906456, + -0.016914835199713707, + -0.01321182306855917, + 0.010004748590290546, + 0.0587192103266716, + 0.0007215916411951184, + 0.007987928576767445, + 0.02426796220242977, + 0.021080726757645607, + 0.012034793384373188, + -0.0015630353009328246, + 0.04528256505727768, + 0.011274353601038456, + -0.018237341195344925, + -0.024519238620996475, + 0.0075713396072387695, + 0.007399414200335741, + 1.8455657482263632e-05, + -0.008120179176330566, + -0.0028665291611105204, + -0.00483375508338213, + 0.01004442386329174, + 0.017853815108537674, + 0.018554741516709328, + 0.0025441686157137156, + 0.020842675119638443, + 0.003471574978902936, + 0.04369555786252022, + 0.009059158153831959, + 0.02055172435939312, + 0.022773532196879387, + 0.013873075135052204, + -0.015261705033481121, + 0.015235254541039467, + -0.012477832846343517, + 0.0072539388202130795, + 0.03107886202633381, + -0.0020928638987243176, + -0.011234678328037262, + -0.013912750408053398, + -0.013899525627493858, + 0.00025768179330043495, + -0.012021568603813648, + 0.013139084912836552, + -0.015645232051610947, + 0.023633159697055817, + -0.023157058283686638, + 0.012504282407462597, + 0.015023654326796532, + -0.00946913380175829, + 0.0011026383144780993, + -0.0058686151169240475, + -0.021477477625012398, + 0.0011836417252197862, + 0.003172358265146613, + -0.01884569227695465, + -0.012616695836186409, + -0.01444175187498331, + -0.008596280589699745, + 0.013568898662924767, + 0.0033641215413808823, + -0.011677716858685017, + 0.015314605087041855, + 0.018197664991021156, + -0.012854746542870998, + 0.0029442261438816786, + 0.021702302619814873, + 0.02634429559111595, + -0.005676851607859135, + -0.0032665866892784834, + -0.020221097394824028, + 0.007822616025805473, + 0.027746150270104408, + -0.004351040814071894, + -0.006443904712796211, + -0.019017618149518967, + 0.015195580199360847, + -0.025048241019248962, + -0.016597434878349304, + -0.010593263432383537, + -0.01277539599686861, + -0.014719477854669094, + -0.03390902280807495, + 0.0087814312428236, + 0.0013101062504574656, + 0.0403892956674099, + -0.0057462831027805805, + 0.0054090446792542934, + 0.01633293367922306, + -0.0016622231341898441, + -0.016108108684420586, + -0.01300683431327343, + -0.02270740643143654, + 0.019625971093773842, + -0.012662983499467373, + -0.01881924271583557, + -0.025299515575170517, + 0.0012117449659854174, + 0.008060666732490063, + -0.015777481719851494, + 0.0015696478076279163, + -0.0012200106866657734, + 0.010375049896538258, + 0.0011241290485486388, + 0.0008298717439174652, + -0.009422846138477325, + 0.003223605453968048, + 0.055069100111722946, + -0.0007191119948402047, + -0.022958682850003242, + -0.0281429011374712, + 0.0038154262583702803, + 0.001015848945826292, + 0.027931300923228264, + 0.006447210907936096, + 0.0072341011837124825, + 0.024876315146684647, + -0.027071673423051834, + -0.009687347337603569, + 0.00010461219062563032, + -0.025762392207980156, + 0.016861936077475548, + 0.0326923169195652, + -0.01323166023939848, + 0.006238916423171759, + 0.03314197063446045, + -0.013793724589049816, + -0.0066687301732599735, + -0.01635938324034214, + 0.0062852040864527225, + -0.007882128469645977, + 0.03271876648068428, + 0.019824346527457237, + -0.0030334952753037214, + 0.006857187487185001, + 0.0003802201244980097, + 0.024162162095308304, + 0.0006451343651860952, + -0.01671645976603031, + 0.024241512641310692, + 0.022429680451750755, + -0.012067856267094612, + -0.02395056188106537, + -0.004327896982431412, + 0.03062921017408371, + 0.011889318004250526, + 0.013106022030115128, + -0.011003240011632442, + 0.003997270483523607, + -0.006586073897778988, + 0.0037922824267297983, + 0.012325744144618511, + -0.01404500100761652, + 0.003580681746825576, + 0.018964719027280807, + 0.014521102420985699, + -0.019123418256640434, + 0.008543380536139011, + 0.007048950530588627, + 0.009812985546886921, + 0.019454045221209526, + -0.014256601221859455, + 0.00732006411999464, + 0.015380730852484703, + -0.026754271239042282, + 0.0009943583281710744, + -0.0031426020432263613, + -0.003212033538147807, + -0.026542671024799347, + 0.006103359628468752, + -0.016147783026099205, + -0.009568322449922562, + -0.012431545183062553, + -0.028169352561235428, + -0.024968890473246574, + 0.00942945946007967, + -0.001790340873412788, + -0.02430763840675354, + -0.026066569611430168, + -0.03454382345080376, + -0.010328762233257294, + -0.00860950630158186, + 0.012669595889747143, + 0.0014142534928396344, + -0.0053230817429721355, + -0.027111347764730453, + -0.018277015537023544, + 0.03991319239139557, + -0.0071745882742106915, + 0.006883637513965368, + 0.0010406459914520383, + -0.011413216590881348, + 0.009323658421635628, + -0.022495806217193604, + -0.005197443533688784, + -0.016835486516356468, + -0.022006480023264885, + -0.01548653095960617, + 0.019070519134402275, + 0.0043807970359921455, + 0.004556029103696346, + 0.0071944259107112885, + 0.003448431147262454, + -0.006929925177246332, + 0.014111125841736794, + 0.00763746490702033, + -0.009846048429608345, + -0.02395056188106537, + 0.004334509372711182, + -0.014772377908229828, + 0.008364842273294926, + 0.026079794391989708, + -0.018263790756464005, + 0.02473083883523941, + -0.03054985962808132, + -0.006744774524122477, + -0.0028086695820093155, + 0.022019704803824425, + 0.0014729397371411324, + -0.0027772600296884775, + 0.008854169398546219, + 0.010097323916852474, + 0.015737807378172874, + 0.011062752455472946, + -0.01879279315471649, + 0.011829805560410023, + 0.022747082635760307, + 0.026516221463680267, + 0.026225268840789795, + 0.006896862294524908, + 0.0334593690931797, + 0.022548707202076912, + 0.015671681612730026, + 0.006427373271435499, + -0.03409417346119881, + 0.040442194789648056, + 0.01635938324034214, + -0.004060089588165283, + 0.037083033472299576, + -0.020406248047947884, + 0.02135845273733139, + -0.04208210110664368, + -0.0029574513901025057, + -0.00023577779938932508, + 0.037135932594537735, + -0.004549416247755289, + -0.016068432480096817, + -0.025418542325496674, + -0.01298038475215435, + 0.023977011442184448, + 0.01071890164166689, + -0.02301158383488655, + 0.012087693437933922, + -0.024982115253806114, + 0.003537700278684497, + -0.008788044564425945, + 0.004893267527222633, + 0.018224116414785385, + -0.027058446779847145, + -0.02475729025900364, + 0.014785603620111942, + -0.014798828400671482, + 0.02688652276992798, + -0.019837571308016777, + 0.007095238193869591, + -0.02650299482047558, + -0.011023077182471752, + -0.01133386604487896, + -0.010256024077534676, + 0.01671645976603031, + -0.016570985317230225, + 0.009760085493326187, + 0.015182354487478733, + 0.023765411227941513, + 0.015195580199360847, + 0.007161363493651152, + -0.0038517951034009457, + -0.015314605087041855, + -0.005961190443485975, + -0.02512759156525135, + -0.011228065937757492, + -0.011201615445315838, + 0.02477051503956318, + 0.007802778389304876, + 0.022125504910945892, + -0.0017390938010066748, + -0.009283983148634434, + 0.006414148025214672, + 0.05104868486523628, + -0.01006426103413105, + 0.006410841830074787, + -0.0071679758839309216, + -0.01933502033352852, + 0.0015572493430227041, + -0.0022862800396978855, + 0.02347446046769619, + 0.018660541623830795, + -0.023977011442184448, + -0.006149647291749716, + 0.005590889137238264, + -0.01924244500696659, + -0.002775606932118535, + 0.0003682349342852831, + 0.01932179555296898, + -0.03491412475705147, + 0.019930146634578705, + 0.004979230463504791, + 0.0013919363263994455, + -0.0021821327973157167, + 0.00014289250248111784, + -0.032110415399074554, + -0.00863595586270094, + 0.026278169825673103, + -0.010189899243414402, + 0.013271335512399673, + -0.005954577587544918, + 0.0010951992589980364, + 0.007921803742647171, + -0.015803931280970573, + 0.015222029760479927, + -0.0163461584597826, + -0.005495007149875164, + -0.007849065586924553, + -0.026926197111606598, + -0.012801846489310265, + -0.0026136001106351614, + -0.005733058322221041, + 0.024876315146684647, + 0.0053825946524739265, + 0.02265450730919838, + 0.02469116449356079, + -0.015460080467164516, + 0.01005764864385128, + 0.0029905138071626425, + -0.012424932792782784, + 0.002810322679579258, + 0.017774464562535286, + 0.029703456908464432, + 0.014798828400671482, + -0.04052154719829559, + -0.016451958566904068, + -0.059724316000938416, + 0.020882349461317062, + -0.0032202990259975195, + 0.026926197111606598, + 0.017364487051963806, + -0.02303803339600563, + -0.0005223893676884472, + 0.029597656801342964, + 0.0260268934071064, + -0.006619136314839125, + -0.021160077303647995, + 0.024162162095308304, + 0.03274521976709366, + -0.021133625879883766, + -0.02188745327293873, + 0.016676785424351692, + -0.02396378666162491, + -0.00011582249135244638, + 0.0023606710601598024, + -0.02048559859395027, + -0.0020531886257231236, + 0.017946390435099602, + -0.011267740279436111, + 0.04197630286216736, + 0.007531664799898863, + 0.013555673882365227, + 0.012616695836186409, + -0.019956596195697784, + -0.018277015537023544, + -0.033697422593832016, + -0.0007864770595915616, + 0.016465185210108757, + -0.004165890160948038, + 0.03158141300082207, + 0.008093729615211487, + -0.01761576347053051, + 0.006381085608154535, + 0.004096458666026592, + -0.016875160858035088, + -0.006923312321305275, + -0.0036071317736059427, + 0.01382017508149147, + -0.01489140372723341, + -0.005534682422876358, + 0.01715288683772087, + -0.017285136505961418, + 0.011598367244005203, + 0.011419828981161118, + -0.007134913466870785, + -0.017734788358211517, + 0.003048373619094491, + -0.005997559055685997, + 0.00897980760782957, + 0.029095105826854706, + -0.013701149262487888, + -0.026965871453285217, + -0.005657013971358538, + 0.0013382094912230968, + 0.015195580199360847, + -0.019533395767211914, + 0.00407331483438611, + -0.022773532196879387, + -0.017906714230775833, + 0.011538853868842125, + 0.020049171522259712, + 0.013582124374806881, + -0.016438733786344528, + -0.014216925948858261, + -0.02048559859395027, + 0.03062921017408371, + -0.01932179555296898, + 0.02093525044620037, + 0.031237563118338585, + -0.00732667651027441, + 0.0008083810680545866, + 0.011168552562594414, + 0.01597585715353489, + 0.0058091022074222565, + 0.03425287455320358, + -0.005164381116628647, + -0.013992100954055786, + -0.002993820235133171, + -0.0026334377471357584, + 0.006324878893792629, + -0.017496738582849503, + -0.00016180019883904606, + 0.014944303780794144, + 0.0031459082383662462, + 0.007538277190178633, + -0.01548653095960617, + 0.002005247864872217, + -0.0030384548008441925, + 0.007703590206801891, + -0.015182354487478733, + 0.0217287540435791, + -0.013859850354492664, + 0.022138729691505432, + 0.005190831143409014, + -0.01844894140958786, + 0.023355433717370033, + -0.01716611161828041, + -0.013106022030115128, + 0.017840590327978134, + 0.005075111985206604, + -0.04351040720939636, + -0.0071679758839309216, + -0.020803000777959824, + -0.021543603390455246, + -0.006119891069829464, + 0.011770292185246944, + -0.009356721304357052, + 0.009019482880830765, + 0.005197443533688784, + -0.0016845404170453548, + -0.005600807722657919, + 0.014745928347110748, + 0.005276794079691172, + -0.004526272416114807, + 0.02216517925262451, + 0.0048271422274410725, + -0.03324776887893677, + 0.0019440819742158055, + -0.0328245684504509, + 0.03364451974630356, + 0.01155207958072424, + -0.020326897501945496, + -0.00860950630158186, + -0.0021705608814954758, + -0.042135003954172134, + -0.007849065586924553, + 0.00029797686147503555, + -0.0017870345618575811, + -0.010209736414253712, + 0.008430968038737774, + -0.01384662464261055, + 0.0281429011374712, + -0.0019225913565605879, + 0.021980028599500656, + -0.010652775876224041, + 0.0006711711757816374, + 0.00288801989518106, + 0.0037856698036193848, + 0.015433630906045437, + -0.013092797249555588, + -0.03975449502468109, + 0.0014737662859261036, + 0.029068654403090477, + 0.009026095271110535, + 0.030020859092473984, + 0.022932233288884163, + -0.010328762233257294, + -0.020697198808193207, + -0.0018250566208735108, + 0.009839435108006, + 0.024929214268922806, + 0.0006104186177253723, + 0.016557760536670685, + -0.016584210097789764, + 0.0067712245509028435, + 0.007399414200335741, + 0.014481427147984505, + -0.03893454000353813, + -0.0011034648632630706, + 0.011214840225875378, + 0.007677140180021524, + 0.01806541532278061, + 0.014494651928544044, + -0.027349399402737617, + 0.013079572468996048, + -0.028433851897716522, + 0.019427595660090446, + 0.02469116449356079, + -0.035416677594184875, + 0.015632007271051407, + 0.021054275333881378, + -0.00733328890055418, + -0.022046154364943504, + 0.0035079438239336014, + -0.03864359110593796, + 0.012874583713710308, + -0.0019639194943010807, + -0.03134336322546005, + 0.01382017508149147, + -0.016041982918977737, + 0.019877247512340546, + 0.000860454689245671, + 0.004585785325616598, + -0.022032929584383965, + -0.011261127889156342, + -0.03274521976709366, + 0.019414370879530907, + 0.019877247512340546, + -0.015684906393289566, + 0.0013671392807736993, + 0.001471286523155868, + -0.00897980760782957, + -0.007115075830370188, + -0.024400213733315468, + -0.0011109040351584554, + -0.022509030997753143, + 0.0031558270566165447, + 0.009012870490550995, + -0.011148715391755104, + 0.002370589878410101, + -0.001171243260614574, + -0.0022482580970972776, + -0.007267163600772619, + -0.01596263237297535, + 0.19953952729701996, + -0.027534550055861473, + -0.028169352561235428, + 0.007908578962087631, + -0.024995340034365654, + -0.023593485355377197, + 0.02393733710050583, + 0.007862291298806667, + 0.008549992926418781, + 0.030735010281205177, + 0.0146798025816679, + 0.006192628759890795, + 0.016121333464980125, + 0.0023028114810585976, + 0.008503705263137817, + 0.0014745928347110748, + -0.019916921854019165, + -0.009330270811915398, + -0.008080503903329372, + 0.03639532998204231, + 0.027137797325849533, + -0.03515217825770378, + -0.0020812919829040766, + -0.011274353601038456, + 0.04774242267012596, + 0.003669950645416975, + 0.004975924268364906, + 0.010837926529347897, + 0.02597399428486824, + 0.017364487051963806, + -0.022046154364943504, + 0.006357941776514053, + 0.02142457664012909, + -0.009693959727883339, + -0.00566693302243948, + 0.015684906393289566, + 0.008470643311738968, + 0.01339036040008068, + 0.03597212955355644, + 0.022125504910945892, + 0.01631970889866352, + -0.04488581046462059, + -0.00029797686147503555, + -0.02090880088508129, + 0.005042049568146467, + 0.0108974389731884, + -0.0001942428934853524, + 0.002560699824243784, + -0.008523543365299702, + 0.0072142635472118855, + -0.008199529722332954, + 0.00838468037545681, + 0.008239204995334148, + 0.018369590863585472, + -0.020260773599147797, + -0.023725735023617744, + 0.012696045450866222, + -0.012259619310498238, + 0.015684906393289566, + 0.0036038255784660578, + -0.053825944662094116, + 0.012934097088873386, + -0.009039320051670074, + 0.006824124604463577, + -0.0343586727976799, + 0.009998136200010777, + -0.0002996299881488085, + -0.0006736508803442121, + -0.006463741883635521, + 0.0006757173105143011, + 0.010427949950098991, + -0.004889961332082748, + -0.007796165533363819, + -0.0017308280803263187, + -0.02055172435939312, + -0.03927839174866676, + 0.013674699701368809, + 0.015843607485294342, + 0.04147375002503395, + 0.027508098632097244, + -0.010414725169539452, + 0.012061243876814842, + -0.008807881735265255, + -0.015618781559169292, + -0.00862934347242117, + -0.014957528561353683, + 0.005614032968878746, + -0.0035972129553556442, + 0.0029888607095927, + -0.026767496019601822, + -0.02893640473484993, + 0.01277539599686861, + -0.0044072470627725124, + -0.02634429559111595, + -0.002468124497681856, + -0.005055274348706007, + 0.017787689343094826, + 0.007849065586924553, + -0.020300447940826416, + -0.0033558558207005262, + -0.016213908791542053, + 0.033406469970941544, + 0.04985842853784561, + -0.022998357191681862, + -0.005518150981515646, + 0.006870412267744541, + -0.013317623175680637, + 0.03591923043131828, + -0.009164958260953426, + 0.004066701978445053, + 0.0015481571899726987, + -0.02890995517373085, + 0.016967736184597015, + -0.025392090901732445, + 0.020683974027633667, + 0.021133625879883766, + 0.006665423978120089, + -0.011644654907286167, + 0.010778414085507393, + 0.0006252967868931592, + -0.011472729034721851, + -0.0022019704338163137, + 0.022363556548953056, + -0.005432188510894775, + 0.016570985317230225, + -0.04266400262713432, + -0.031660765409469604, + 0.03988674283027649, + -0.00899303238838911, + 0.0030219233594834805, + 0.02225775457918644, + -0.006586073897778988, + 0.021675853058695793, + 0.006063684355467558, + 0.014177251607179642, + 0.0011514057405292988, + -0.014693028293550014, + -0.037135932594537735, + -0.026608796790242195, + -0.0009017829434014857, + 0.02975635789334774, + -0.007617627270519733, + 0.012133981101214886, + -0.0002888846502173692, + 0.017721563577651978, + 0.0031525208614766598, + 0.01682225987315178, + 0.007465539500117302, + -0.02355380915105343, + -0.033803220838308334, + -0.012193494476377964, + -0.002545821713283658, + 0.011452890932559967, + -0.021160077303647995, + 0.013145697303116322, + 0.0045064352452754974, + -0.0201285220682621, + -0.041685350239276886, + 0.011175164952874184, + 0.007908578962087631, + -0.038299739360809326, + -0.012967159040272236, + 0.007802778389304876, + -0.02975635789334774, + -0.008206142112612724, + 0.007696977816522121, + -0.1664240062236786, + 0.02139812707901001, + 0.021689077839255333, + -0.021054275333881378, + 0.01511622965335846, + 0.009118670597672462, + 0.023725735023617744, + 0.012682820670306683, + -0.02972990646958351, + 0.006126503460109234, + 0.027508098632097244, + -0.002077985554933548, + -0.015195580199360847, + -0.017721563577651978, + -0.007624240126460791, + 0.005280100274831057, + -0.029650557786226273, + 0.02732294797897339, + 0.017814138904213905, + 0.011624816805124283, + 0.004817223642021418, + -0.019996272400021553, + 0.014785603620111942, + -0.009118670597672462, + -0.008847557008266449, + 0.005567745305597782, + -0.0217287540435791, + 0.03639532998204231, + -0.01593618281185627, + -0.03221621736884117, + -0.012094305828213692, + -0.01049407571554184, + 0.021517151966691017, + -3.9055219531292096e-05, + 0.006824124604463577, + -0.007346514146775007, + 0.005217281170189381, + 0.004919717554003, + -0.009746859781444073, + 0.010322149842977524, + 0.01510300487279892, + 0.04414520785212517, + -0.005465250927954912, + -0.0028549572452902794, + -0.01216043159365654, + 0.024003461003303528, + 0.024453112855553627, + -0.029518306255340576, + -0.0009621222270652652, + -0.020657524466514587, + -0.0002452832995913923, + -0.015526206232607365, + 0.003468268783763051, + 0.023712510243058205, + -0.011895930394530296, + 0.022509030997753143, + -0.01712643727660179, + 0.016901610419154167, + -0.003106233198195696, + 0.007974703796207905, + -0.004172502551227808, + -0.0334593690931797, + -0.0024466337636113167, + 0.005108174867928028, + -0.01975822076201439, + -0.02048559859395027, + -0.0037889762315899134, + 0.01932179555296898, + -0.005954577587544918, + -0.005068499594926834, + 0.0029607575852423906, + -0.023606710135936737, + 0.005418963264673948, + -0.014137576334178448, + 0.014137576334178448, + 0.01848861761391163, + -0.0006529867532663047, + 0.0016746217152103782, + 0.009568322449922562, + 0.003712932113558054, + -0.01881924271583557, + 0.043404605239629745, + -0.0007091931765899062, + -0.027772599831223488, + -0.002444980666041374, + -0.019070519134402275, + -0.0022251142654567957, + 0.01974499598145485, + -0.0008083810680545866, + 0.020829450339078903, + 0.022733857855200768, + -0.025907868519425392, + -0.01215381920337677, + -0.02938605658710003, + 0.015790706500411034, + -0.0030880486592650414, + -0.010857764631509781, + 0.010857764631509781, + -0.00679767457768321, + -0.020419472828507423, + 0.0059777214191854, + -0.024863090366125107, + -0.04105054959654808, + 0.01527492981404066, + 0.0008009419543668628, + 1.6143857362038716e-09, + 0.005779345985502005, + 0.009092220105230808, + 0.03740043565630913, + -0.019123418256640434, + -0.023302534595131874, + -0.00944929663091898, + 0.014031775295734406, + 0.022879332304000854, + -0.016875160858035088, + 0.014547552913427353, + 0.012286069802939892, + -0.022006480023264885, + 0.012067856267094612, + 0.0026879908982664347, + 0.051339633762836456, + -0.02975635789334774, + -0.014864953234791756, + 0.014203701168298721, + 0.003884857753291726, + -0.023725735023617744, + -0.0932101383805275, + -0.006166178733110428, + 0.013555673882365227, + 0.010983401909470558, + 0.010361825115978718, + 0.009098832495510578, + 0.004546110052615404, + -0.0033178338780999184, + 0.010573425330221653, + 0.043801359832286835, + -0.02933315560221672, + -0.031713664531707764, + -0.012041405774652958, + -0.010712288320064545, + 0.004837061278522015, + -0.012907646596431732, + 0.0001305973419221118, + -0.014693028293550014, + -0.013344072736799717, + 0.03636888042092323, + -0.0029690233059227467, + -0.018224116414785385, + -0.007756490726023912, + -0.011988505721092224, + -0.0239108856767416, + 0.008827718906104565, + -0.029438955709338188, + -0.006100053433328867, + 0.018766343593597412, + -0.0005232159746810794, + 0.035469576716423035, + -0.018660541623830795, + 0.02183455415070057, + -0.024426663294434547, + -0.004301446955651045, + 0.0027160942554473877, + -0.013952425681054592, + -0.004139440134167671, + 0.03933129087090492, + -0.022971907630562782, + -0.0028665291611105204, + 0.023659611120820045, + 0.0060736034065485, + -0.011763679794967175, + 0.000706300197634846, + -0.025048241019248962, + -0.018964719027280807, + -0.006658811587840319, + 0.003218645928427577, + -0.0086227310821414, + -0.02634429559111595, + -0.04097119718790054, + -0.02684684656560421, + 0.011591753922402859, + 0.029624106362462044, + -0.005094949621707201, + -0.0013084531528875232, + -0.018303466960787773, + -0.021160077303647995, + -0.02890995517373085, + -0.03703013435006142, + 0.013112634420394897, + -0.04247885197401047, + 0.03348582237958908, + -0.006824124604463577, + -0.01238525751978159, + -0.02516726590692997, + -0.016597434878349304, + 0.022694181650877, + 0.007452314253896475, + -0.04364265874028206, + 0.00883433222770691, + -0.0017308280803263187, + 0.014177251607179642, + -0.027005547657608986, + -0.0034980252385139465, + -0.044674210250377655, + -0.02007562294602394, + 0.0076506901532411575, + -0.013912750408053398, + -0.0053892070427536964, + -0.030047308653593063, + 0.027560999616980553, + -0.020855899900197983, + 0.039357740432024, + 0.030100207775831223, + -0.00011757893662434071, + -0.009151733480393887, + 0.022442905232310295, + -0.01087760180234909, + -0.010341987013816833, + 0.02732294797897339, + 0.010632938705384731, + -0.007577952463179827, + -0.04681666940450668, + 0.000867893744725734, + 0.015539431013166904, + 0.007525051943957806, + 0.0004612235352396965, + -0.004099764861166477, + 0.001930856960825622, + -0.008073891513049603, + -0.03943709284067154, + 0.0183960422873497, + 0.030020859092473984, + 0.000692661851644516, + -0.024836638942360878, + -0.013582124374806881, + 0.0019887166563421488, + 0.007776327896863222, + 0.024069586768746376, + -0.003005392150953412, + -0.016465185210108757, + -0.002112701302394271, + -0.0018696910701692104, + -0.01924244500696659, + -0.030047308653593063, + -0.04581156373023987, + 0.0012324091512709856, + 0.019811121746897697, + 0.012286069802939892, + 0.010341987013816833, + -0.0035906005650758743, + 0.02853965386748314, + 0.007134913466870785, + 0.007908578962087631, + -0.017483513802289963, + -0.0008786391117610037, + -0.01171739213168621, + -0.0033690808340907097, + -0.012841521762311459, + -0.014322726987302303, + -0.009839435108006, + 0.019215993583202362, + -0.009958460927009583, + 0.024069586768746376, + -0.011889318004250526, + -0.012226556427776814, + 0.0205781739205122, + 0.044700659811496735, + 0.012901034206151962, + 0.04578511416912079, + -0.022085830569267273, + -0.007525051943957806, + -0.005458638537675142, + -0.01805219054222107, + 0.006050459574908018, + 0.0066720363683998585, + 0.013529223389923573, + -0.006460435688495636, + 0.0043874094262719154, + -0.01217365637421608, + 0.03229556605219841, + 0.005485088564455509, + 0.010930501855909824, + -0.0016795810079202056, + -0.00609344057738781, + 0.005871921312063932, + 0.009032707661390305, + 0.01805219054222107, + 0.0035740691237151623, + -0.031158212572336197, + 0.03562827780842781, + 0.0071679758839309216, + -0.01383339986205101, + -0.0016456919256597757, + 0.008430968038737774, + -0.029888607561588287, + -0.012616695836186409, + 0.0049031865783035755, + -0.0011266088113188744, + -0.028380952775478363, + -0.026529446244239807, + -0.005941352806985378, + 0.026251720264554024, + 0.014521102420985699, + -0.000203851712285541, + -0.00586200226098299, + 0.0021821327973157167, + 0.0066720363683998585, + 0.008232592605054379, + 0.018726667389273643, + 0.010024585761129856, + 0.020842675119638443, + 0.00042258159373886883, + -8.973401418188587e-05, + 0.04284915328025818, + 0.011743842624127865, + -0.025008564814925194, + -0.005911596119403839, + -0.01196205522865057, + 0.0030731705483049154, + -0.01965242065489292, + 0.0140714505687356, + -0.008113566786050797, + 0.019215993583202362, + 0.005108174867928028, + 0.023699285462498665, + 0.011314027942717075, + 0.003020270261913538, + 0.030814360827207565, + 0.02302480861544609, + -0.002226767363026738, + -0.0012745639542117715, + -0.002977288793772459, + -0.024863090366125107, + -0.011393378488719463, + 0.02342155948281288, + -0.010242799296975136, + -0.035813428461551666, + -0.0004889135016128421, + 0.03131691366434097, + -0.005339613184332848, + 0.019943371415138245, + 0.0036335818003863096, + 0.005832246039062738, + -0.008840944617986679, + 0.018951494246721268, + -0.016703234985470772, + -0.006483579520136118, + -0.021689077839255333, + 0.008067279122769833, + 0.035390228033065796, + -0.0008926907321438193, + 0.011280965991318226, + -0.0026813785079866648, + 0.012034793384373188, + -0.016518084332346916, + 0.020829450339078903, + -0.019956596195697784, + -0.007743265479803085, + -0.007736653089523315, + 0.015446855686604977, + 0.011247903108596802, + -0.010586651042103767, + -0.009746859781444073, + -0.013859850354492664, + -0.0003136816085316241, + 0.024558912962675095, + -0.0050155995413661, + 0.0006748907035216689, + 0.11648622155189514, + 0.029174454510211945, + -0.007769715506583452, + 0.015592331066727638, + -0.005008986685425043, + 0.017457062378525734, + 0.02344800904393196, + 0.009885722771286964, + -0.0009075689013116062, + -0.06638973951339722, + 0.006969599984586239, + -0.008847557008266449, + 0.021570052951574326, + -0.017761239781975746, + -0.006936537567526102, + 0.004314671736210585, + -0.0017539719119668007, + 0.020313672721385956, + -0.03594567999243736, + -0.001448142691515386, + 0.0335916206240654, + -0.034199971705675125, + 0.025074690580368042, + 0.0434575080871582, + -0.01464012823998928, + -0.006850574631243944, + 0.006519948597997427, + 0.011479341425001621, + 0.005574357695877552, + -0.002554087433964014, + 0.004850286059081554, + 0.0076705277897417545, + -0.0629512295126915, + -0.01322504784911871, + 0.01765543781220913, + -0.029677007347345352, + -0.0067712245509028435, + -0.019877247512340546, + 0.011849642731249332, + 0.0163461584597826, + 0.01487817894667387, + 0.03806168586015701, + -0.017708338797092438, + -0.03351227194070816, + 0.00250779977068305, + 0.0020002885721623898, + 0.0021540296729654074, + -0.013059734366834164, + -0.023778636008501053 + ], + "metadata": { + "source": "Thesis_Verladegeraeusche_in_Speditionen.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 41, + "has_images": true, + "image_count": 51, + "coordinates": "CoordinatesMetadata(points=((204.16666666666666, 189.02777777777797), (204.16666666666666, 642.3611111111111), (936.1666666666666, 642.3611111111111), (936.1666666666666, 189.02777777777797)), system=)", + "links": [], + "last_modified": "2025-05-05T22:59:16", + "_known_field_names": "frozenset({'cc_recipient', 'link_texts', 'url', 'filetype', 'category_depth', 'page_number', 'filename', 'orig_elements', 'detection_origin', 'email_message_id', 'page_name', 'coordinates', 'table_as_cells', 'link_start_indexes', 'sent_to', 'bcc_recipient', 'languages', 'last_modified', 'link_urls', 'file_directory', 'subject', 'data_source', 'detection_class_prob', 'image_base64', 'text_as_html', 'attached_to_filename', 'key_value_pairs', 'signature', 'sent_from', 'header_footer_type', 'parent_id', 'links', 'emphasized_text_contents', 'emphasized_text_tags', 'image_mime_type', 'is_continuation', 'image_path'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "Thesis_Verladegeraeusche_in_Speditionen.pdf", + "detection_class_prob": 0.2568194270133972, + "parent_id": "d45475a34bc527cde6987546fa6dd2f5", + "text_as_html": "
Flurf\u00f6rderger\u00e4t |Anzahl Einzelereignisse ElMax-PegelSchallleistungspegel
LAFmaxLWA,5sLWAmaxLWA,1hKlLWAT,1h
[dB(A)][dB(A)][dB(A)][dB(A)][dB(A)][dB(A)]
Gabelstapler29769,3100,7108,872,15,777,8
STABW [dB]6,54,96,54,92,9-
Gabelhubwagen9968,6100,7108,172,16,279,5
STABW [dB]6,45,16,4512,7-
", + "id": "5ba44de7-0ff3-4c0c-b018-67e92171e1c2", + "processing_timestamp": "2025-05-06T14:18:19.298665", + "chunk_number": 22, + "total_chunks": 49, + "chunking_strategy": "hybrid", + "word_count": 557 + } +} \ No newline at end of file diff --git a/data/processed/85fd305f-83de-70b0-47e8-2dc000000023.json b/data/processed/85fd305f-83de-70b0-47e8-2dc000000023.json new file mode 100644 index 0000000000000000000000000000000000000000..a5d48296a67a9e147299b02491e5b2e718714896 --- /dev/null +++ b/data/processed/85fd305f-83de-70b0-47e8-2dc000000023.json @@ -0,0 +1,1570 @@ +{ + "id": "85fd305f-83de-70b0-47e8-2dc000000023", + "content": "Nach erfolgreicher Durchf\u00fchrung der Messungen erfolgt nun die Auswertung der Mess- daten. F\u00fcr die \u00dcbertragung der Messdaten wurde die Software NorXfer 6.1 verwendet, die speziell f\u00fcr die \u00dcbertragung von Messdateien entwickelt wurde. Zur Auswertung der Daten kam die Software NorReview 6.2 zum Einsatz. Es handelt es sich hierbei um eine Analyse- und Berichtssoftware speziell f\u00fcr Schallmessungen. Mit der Software k\u00f6nnen L\u00e4rm- und Vibrationsmessungen dargestellt und nachbearbeitet werden. Nach der Firma Norsonic \u201elassen sich die Messdaten, die nachbearbeiteten Daten sowie Wetter- daten, Audioaufzeichnungen, Sprachnotizen, Word- und Excel-Berichte sowie andere\n46\n6 Messauswertung und Statistik\nDateien erfassen.\u201c [83] Auf diese Weise wird eine umfassende und effektive Auswer- tung der Messdaten erm\u00f6glicht. Um den Schallleistungspegel zu bestimmen, werden die Messwerte der ortsfesten Mikrofonposition im Fernfeld verwenden. Das Fernfeld ist der Bereich, in dem der Schalldruck und die Schallschnelle phasengleich sind und sich ann\u00e4- hernd als Kugelwelle ausbreiten. [84] In diesem Bereich ist die Messung weniger von reflektierenden Fl\u00e4chen oder anderen Schallquellen beeinflusst. Die Mikrofonpositio- nen, die sich im Nahfeld befinden befinden sich in unmittelbarer N\u00e4he des Anh\u00e4ngers oder in der N\u00e4he anderer Anh\u00e4nger. Dies kann dazu f\u00fchren, dass es zu St\u00f6rungen oder Interferenzen auftreten, die die Messergebnisse verf\u00e4lschen k\u00f6nnen. Daher werden diese Messwerte im Nahfeld nicht f\u00fcr die Bestimmung des Schallleistungspegels ver- wendet. Jede Messung wurde nach einem einheitlichen Verfahren ausgewertet. Hierbei wurden\nzun\u00e4chst die Messdaten mittels der Software NorXfer 6.1 auf den Computer \u00fcbertragen und in die Auswertesoftware NorReview 6.2 eingef\u00fcgt. Anschlie\u00dfend wurden alle Mess- daten in ein L(t) + L(f)-Diagramm, welches den Schalldruckpegel \u00fcber der Zeit und Fre- quenz abbildet, dargestellt. Dabei wurden f\u00fcr jeden Pegelverlauf eigene Farben zuge- wiesen (Laeq = blau, LAFmax = rot und LAF(TM5) = gr\u00fcn). Zur besseren \u00dcbersicht wurden alle Pegelgr\u00f6\u00dfen bis auf den LAeq-Pegelverlauf ausgeblendet. Mittels der protokollierten Ver- ladet\u00e4tigkeiten, bei denen die durchschnittliche Einwirkzeit 5 Sekunden betrug, wurden die einzelnen Prozessschritte als Marker mit zugeordneter Farbe in das Diagramm ein- gef\u00fcgt. Mithilfe der Funktion \"Marker Berechnung\" konnten anschlie\u00dfend der A-bewer- tete Schalldruckpegel LAeq, der maximale Schalldruckpegel LAFmax und der Taktmaximal- pegel LAFTeq f\u00fcr die einzelnen Marker berechnet werden. Die Ergebnisse wurden in einem Excel-Sheet zur weiteren Verarbeitung transferiert. Um Einfl\u00fcsse aus dem Umfeld zu be- r\u00fccksichtigen, sind Korrekturen an den gemessenen Schalldruckpegeln erforderlich. Zum einen wird eine Fremdger\u00e4uschkorrektur K1 (siehe Formel 15) nach den Verfahren der Normreihe DIN EN ISO 3746 ff [30] und eine Umgebungskorrektur K2 im Freien (siehe Formel 16) nach den Verfahren der Normreihe DIN EN ISO 3744 ff [29] vorgenommen. Da die Messungen im Freien stattfanden, kann die Umgebungskorrektur K2 vernachl\u00e4s- sigt werden. Die aufgetretenen Fremdger\u00e4usche, beispielsweise von vorbeifahrenden Zugmaschinen, wurden im Programm NorReview 6.2 ausgeblendet. Da die protokollier- ten Verladet\u00e4tigkeiten in einzelne 5 Sekunden lange Arbeitsschritte unterteilt waren, konnten eventuelle Fremdger\u00e4usche gezielt in diesem Zeitraum anhand des Geh\u00f6rein- drucks analysiert werden.", + "embedding": [ + 0.001009186147712171, + 0.008080042898654938, + 0.010779943317174911, + -0.03952864184975624, + 0.0119529590010643, + 0.013342227786779404, + -0.013401206582784653, + -0.026592710986733437, + -0.005167164374142885, + -0.028257213532924652, + 0.0018397988751530647, + 0.02157299406826496, + -0.013322568498551846, + 0.0041252123191952705, + -0.0071822600439190865, + -0.00590111780911684, + 0.02504616603255272, + -0.0004271839279681444, + 0.025924289599061012, + -0.008224212564527988, + -0.009796969592571259, + 0.03163864091038704, + -0.013086655177175999, + 0.014036862179636955, + -0.010812709107995033, + 0.006297584157437086, + 0.010039436630904675, + -0.01602902263402939, + -0.01458732783794403, + -0.0009092505206353962, + -0.0014531626366078854, + 0.00494108023121953, + -0.0031258559320122004, + 0.011743257753551006, + -0.03499385714530945, + -0.03200561925768852, + -0.01764109916985035, + 0.002172371605411172, + 0.03737920895218849, + 0.005209759809076786, + 0.010262244381010532, + 0.000516470696311444, + -0.01469217799603939, + -0.008800890296697617, + -0.0002340705832466483, + 0.0032733019907027483, + 0.014049968682229519, + 0.00016567199782002717, + -0.003120941109955311, + 0.006061670370399952, + 0.006723538972437382, + -0.00577988475561142, + 0.0007695863605476916, + 0.01322427112609148, + 0.009770757518708706, + -0.024089405313134193, + 0.0233292393386364, + 0.008132467977702618, + -0.016841614618897438, + -0.01904347538948059, + -0.03195319324731827, + 0.01663191244006157, + -0.03546568751335144, + 0.0036697678733617067, + -0.004400445148348808, + -0.02167784422636032, + -0.014128606766462326, + 0.010104968212544918, + -0.023434089496731758, + -0.002370604546740651, + 0.033919140696525574, + 0.025780120864510536, + -0.006854602135717869, + 0.02643543668091297, + 0.020013341680169106, + -0.010412966832518578, + 0.006782517768442631, + -0.0029243463650345802, + 0.03051150031387806, + 0.009928032755851746, + 0.01996091566979885, + -0.02444327622652054, + -0.03868984058499336, + 0.033001698553562164, + 0.025072379037737846, + -0.0004423381178639829, + -0.006464689504355192, + 0.017090633511543274, + -0.034102629870176315, + -0.01905658096075058, + 0.01640910468995571, + 0.05009233206510544, + 0.006861155387014151, + -0.011074835434556007, + 0.033394888043403625, + 0.003886022139340639, + 0.007890000939369202, + 0.021939970552921295, + -0.009108887985348701, + -0.017916331067681313, + -0.002155988710001111, + -0.020249255001544952, + 0.006035457830876112, + -0.001076356042176485, + -0.022831199690699577, + 0.0029718568548560143, + 0.014364520087838173, + -0.004187467508018017, + 0.007326429709792137, + -0.01701199635863304, + -0.026815518736839294, + 0.02707764506340027, + 9.292172035202384e-05, + 0.004315253812819719, + 0.015832427889108658, + -0.012418232858181, + 0.056095026433467865, + -0.02846691384911537, + -0.008990931324660778, + -0.014181031845510006, + 0.018479902297258377, + 0.011186239309608936, + 0.004488912411034107, + -0.02412872388958931, + 0.027130071073770523, + 0.01702510192990303, + -0.010819262824952602, + -0.0065990290604531765, + -0.019279388710856438, + -0.0068152835592627525, + -0.028729040175676346, + -0.013866480439901352, + 0.030328011140227318, + 0.0023181792348623276, + -0.007811363320797682, + -0.00410882942378521, + -0.009600374847650528, + 0.0060747768729925156, + -0.018060501664876938, + -0.018086712807416916, + 0.014351414516568184, + 0.01089134719222784, + -0.02697279490530491, + -0.04123246297240257, + -0.01444315817207098, + 0.033892929553985596, + -0.0035223220475018024, + 0.017378972843289375, + 0.008813995867967606, + -0.008492891676723957, + -0.009456206113100052, + -0.04167807847261429, + 0.011782576330006123, + -0.006268094759434462, + -0.021625418215990067, + -0.0018479903228580952, + -0.005455503240227699, + 0.01702510192990303, + -0.021061846986413002, + -0.003964660223573446, + -0.01043917890638113, + 0.02917465567588806, + 0.008945059031248093, + 0.014364520087838173, + 0.007962086237967014, + 0.016985783353447914, + 0.007332982961088419, + -0.0290698055177927, + -0.017811480909585953, + -0.005432567093521357, + -0.02330302633345127, + 0.014836347661912441, + -0.010596455074846745, + 0.035229772329330444, + 0.011277982965111732, + -0.0052556321024894714, + 0.007293663918972015, + 0.0009903458412736654, + -0.009692119434475899, + -0.029725121334195137, + -0.01078649703413248, + 0.017759054899215698, + 0.00938412081450224, + 0.01104862242937088, + -0.025609737262129784, + 0.013433972373604774, + 0.013204611837863922, + 0.0025229654274880886, + -1.901951509353239e-05, + -0.0067563047632575035, + 0.013460184447467327, + -0.0034895562566816807, + 0.0031504302751272917, + -0.024810252711176872, + -0.6303613185882568, + -0.00850599817931652, + 0.009364461526274681, + 0.017824586480855942, + -0.015281962230801582, + 0.028414489701390266, + 0.008735358715057373, + 0.0025737525429576635, + -0.005383418407291174, + 0.047392431646585464, + -0.00789655465632677, + -0.0013466738164424896, + -0.008119361475110054, + 0.0017087357118725777, + -0.006402434315532446, + -0.021323973312973976, + -0.019109006971120834, + 0.004233339335769415, + 0.03357837721705437, + 0.0023886258713901043, + -0.05253010615706444, + 0.03182213008403778, + 0.007640981115400791, + 0.014377626590430737, + 0.002591773634776473, + 0.005684863775968552, + 0.0007331344531849027, + -0.019030367955565453, + 0.0052392492070794106, + -0.003296238137409091, + -0.03336867690086365, + -0.0008535486995242536, + -0.017994970083236694, + 0.014980517327785492, + 0.04125867784023285, + -0.017090633511543274, + 0.00330606778152287, + 0.01986917294561863, + 0.0221103522926569, + -0.0017251186072826385, + -0.006874261889606714, + -0.014652859419584274, + 0.0020806274842470884, + 0.008374935016036034, + 0.012804868631064892, + -0.011317302472889423, + 0.023145750164985657, + -0.013184952549636364, + 0.014023756608366966, + -0.025400036945939064, + -0.012038149870932102, + -0.00866327341645956, + 0.0192662812769413, + 0.0028211341705173254, + 0.010367094539105892, + 0.00522286631166935, + 0.03903060406446457, + -0.004505295306444168, + -0.016461530700325966, + 0.008394594304263592, + -0.0009051548549905419, + 0.01631736196577549, + 0.0011492599733173847, + -0.011422152630984783, + -0.011900532990694046, + 0.004043297842144966, + -0.029227079823613167, + -0.0417829304933548, + 0.029017379507422447, + -0.014613539911806583, + -0.00927271693944931, + 0.01414171326905489, + -0.006422094069421291, + -0.012077468447387218, + 0.01681540161371231, + 0.03378807753324509, + 0.01458732783794403, + -0.025714589282870293, + 0.023565152660012245, + 0.004443040583282709, + -0.009652800858020782, + -0.005032824818044901, + -0.01693335734307766, + 0.0023787959944456816, + 0.030065884813666344, + -0.015937278047204018, + -0.016867825761437416, + 0.006782517768442631, + 0.012372360564768314, + -0.011762917041778564, + 0.0029390910640358925, + 0.04222854599356651, + -0.017916331067681313, + -0.02167784422636032, + -0.014010650105774403, + 0.026487860828638077, + -0.022962262853980064, + 0.010196712799370289, + -0.0020839038770645857, + -0.026212628930807114, + -0.026514073833823204, + -0.006215669680386782, + 0.028912529349327087, + -0.03001345880329609, + 0.02250354178249836, + -0.011461472138762474, + -0.012693465687334538, + 0.010111520998179913, + 0.028833892196416855, + -0.018610965460538864, + 0.0010050904238596559, + -0.02664513699710369, + -0.010118074715137482, + -0.0208914652466774, + -0.00785723514854908, + -0.025806332007050514, + 0.02066865749657154, + 0.0019593939650803804, + 0.015281962230801582, + -0.016789188608527184, + 0.006808730307966471, + -0.01013773400336504, + 0.04222854599356651, + -0.010622668080031872, + -0.025596631690859795, + 0.033499740064144135, + 0.03221531957387924, + 0.008977824822068214, + -0.01216265931725502, + -0.012031596153974533, + 0.0022477328311651945, + 0.0029292611870914698, + 0.017182378098368645, + -0.010399860329926014, + 0.009606928564608097, + 0.020013341680169106, + 0.029961034655570984, + -0.0006319700623862445, + 0.008329062722623348, + -0.03135030344128609, + -0.027103858068585396, + 0.013735417276620865, + -0.0025098591577261686, + -0.01885998621582985, + -0.004370955750346184, + -0.044744957238435745, + -0.01792943850159645, + 0.010367094539105892, + 0.008125915192067623, + -0.00443321093916893, + -0.0075295777060091496, + -0.014783922582864761, + 0.0030783454421907663, + 0.022372478619217873, + -0.009954245761036873, + 0.006395881529897451, + -0.008440466597676277, + -0.008925399743020535, + -0.03378807753324509, + -0.01545234490185976, + 0.020694870501756668, + 0.019397344440221786, + -0.046973031014204025, + -0.013211164623498917, + -0.007018431089818478, + -0.02796887420117855, + 0.01333567500114441, + 0.006775964517146349, + -0.012346147559583187, + -0.030223160982131958, + 0.0059437137097120285, + 0.02015751041471958, + -0.016789188608527184, + 0.009174419566988945, + -0.0020396702457219362, + -0.004541337955743074, + -0.029777545481920242, + -0.016802294179797173, + -0.011867767199873924, + -0.02532139979302883, + 0.02402387373149395, + 0.0027375814970582724, + -0.021717162802815437, + -0.0012557486770674586, + 0.026789305731654167, + 0.0003792639763560146, + 0.0032814934384077787, + -0.011887427419424057, + -0.02718249522149563, + 0.03790346160531044, + -0.005557077005505562, + 0.008178340271115303, + -0.020721083506941795, + 0.016186298802495003, + -0.0336570143699646, + 0.0027506877668201923, + 0.0090236971154809, + -0.015150899067521095, + 0.00816523376852274, + 0.022162776440382004, + 0.02391902357339859, + 0.011618747375905514, + 0.024574339389801025, + -0.00871569849550724, + 0.022857412695884705, + -0.012051256373524666, + 0.010858581401407719, + -0.028833892196416855, + 0.03756269812583923, + 0.02322438918054104, + 0.013814055360853672, + -0.016186298802495003, + -0.024757826700806618, + -0.017365867272019386, + 0.0023149028420448303, + 0.03884711489081383, + 0.009443099610507488, + 0.013060442171990871, + 0.017759054899215698, + -0.005173717625439167, + -0.010026330128312111, + -0.01600280962884426, + 0.04443040490150452, + 0.009862501174211502, + -5.693055209121667e-05, + 0.0016341935843229294, + -0.0022936048917472363, + 0.01792943850159645, + 0.013040782883763313, + -0.024705402553081512, + -0.008892633952200413, + -0.006966006010770798, + 0.007850682362914085, + 0.018728923052549362, + 0.02098320983350277, + 0.023761747404932976, + 0.020721083506941795, + 0.003846703330054879, + 0.02563595026731491, + 0.01058990228921175, + 0.009390674531459808, + 0.029462995007634163, + 0.013263589702546597, + -0.01663191244006157, + 0.020223041996359825, + -0.03402399271726608, + 0.014993623830378056, + 0.023538939654827118, + -0.009659353643655777, + -0.01352571602910757, + -0.010045989416539669, + 0.0027277516201138496, + -0.014613539911806583, + -0.011219005100429058, + 0.02068176306784153, + -0.02209724485874176, + 0.029358142986893654, + -0.013682992197573185, + 0.013656779192388058, + 0.03478415682911873, + -0.0013827161164954305, + 0.017274122685194016, + 0.005426014307886362, + -0.012437892146408558, + -0.005065590608865023, + 0.006848049350082874, + -0.011415599845349789, + 0.0020265637431293726, + -0.0116646196693182, + -0.020340999588370323, + 0.006310690194368362, + -0.019226962700486183, + 0.006913580931723118, + 0.019541515037417412, + 0.02494131587445736, + -0.01643531769514084, + 0.005861799232661724, + 0.005573459900915623, + 0.038060735911130905, + -0.003997426014393568, + -0.011494237929582596, + -0.00927927065640688, + 0.008571529760956764, + 0.01541302539408207, + -0.012949038296937943, + -0.007988298311829567, + -0.003456790465861559, + -0.0011926746228709817, + -0.027234921231865883, + -0.000559885345865041, + 0.0012754081981256604, + 0.008348722010850906, + -0.0013859927421435714, + -0.02271324209868908, + 0.020236149430274963, + 0.019030367955565453, + 0.00850599817931652, + 0.010249137878417969, + -0.007509917952120304, + 0.017706630751490593, + -0.007929320447146893, + -0.016356680542230606, + -0.0035059391520917416, + -0.04458767920732498, + 0.022529754787683487, + -0.008401147089898586, + -0.015347493812441826, + -0.030118310824036598, + -0.005829033441841602, + -0.0085584232583642, + -0.0006061670137569308, + 0.007044644095003605, + 0.005799544043838978, + 0.008322509936988354, + -0.011835001409053802, + -0.0040891701355576515, + -0.014928092248737812, + -0.004619975574314594, + 0.033211398869752884, + -0.0024656252935528755, + -0.024561231955885887, + -0.036750104278326035, + -0.005334269721060991, + -0.004557720851153135, + 0.02340787649154663, + 0.0029112400952726603, + 0.01935802586376667, + 0.032975487411022186, + -0.026710668578743935, + -0.016042128205299377, + -0.022883623838424683, + -0.029567845165729523, + 0.023683110252022743, + 0.01733965426683426, + -0.008433912880718708, + -0.0027244749944657087, + 0.03439096733927727, + -0.001310631399974227, + -0.0003606284153647721, + -0.016251830384135246, + 0.012208531610667706, + -0.00488865515217185, + 0.0109961973503232, + 0.014115500263869762, + -0.006703879684209824, + 0.009436545893549919, + 0.016487743705511093, + 0.02807372435927391, + -0.006448306608945131, + -0.011179685592651367, + 0.021153591573238373, + 0.016998888924717903, + 0.004302147775888443, + -0.015137792564928532, + -0.010288456454873085, + 0.04833608865737915, + 0.008538763970136642, + 0.017575567588210106, + -0.028964955359697342, + 0.0070249843411147594, + 0.014233456924557686, + 0.006241882219910622, + 0.009292377158999443, + -0.014416946098208427, + -0.0013302909210324287, + 0.0290698055177927, + 0.0013319292338564992, + 0.0032470894511789083, + 0.003463343484327197, + 0.005799544043838978, + -0.004354572854936123, + 0.010544029995799065, + -0.01591106504201889, + -0.010039436630904675, + 0.017483823001384735, + -0.011487684212625027, + 0.0035157687962055206, + -0.00577988475561142, + -0.022280734032392502, + -0.03719571977853775, + 0.004013808909803629, + -0.021140484139323235, + -0.01313252653926611, + -0.001582587487064302, + -0.01924007013440132, + 0.004308701027184725, + 0.010858581401407719, + -0.01135662104934454, + -0.026120884343981743, + -0.00800140481442213, + -0.012319935485720634, + -0.013211164623498917, + -0.007523024454712868, + 0.023473408073186874, + 0.0022313499357551336, + -0.022333160042762756, + -0.019213857129216194, + 0.006615411955863237, + 0.013735417276620865, + -0.007444386370480061, + 0.013551929034292698, + -0.005160611122846603, + -0.014862560667097569, + 0.01130419597029686, + -0.018689604476094246, + -0.0032143236603587866, + 0.0003596044844016433, + -0.02190065197646618, + -0.01643531769514084, + 0.0005897841183468699, + -0.018899304792284966, + 0.011887427419424057, + 0.01752314157783985, + 0.003614066168665886, + 0.0034338543191552162, + 0.011880873702466488, + 0.010399860329926014, + 0.004757591988891363, + -0.010976538062095642, + 0.012634486891329288, + -0.001662863651290536, + 0.015491663478314877, + 0.0158979594707489, + -0.010255690664052963, + 0.029961034655570984, + -0.04823123663663864, + 0.0021903926972299814, + -0.006330349948257208, + 0.02707764506340027, + 0.01286384742707014, + -0.000771224673371762, + 0.018427478149533272, + 0.011795682832598686, + 0.0038270438089966774, + 0.012870400212705135, + -0.002578667365014553, + 0.010727518238127232, + 0.010583348572254181, + 0.01976432092487812, + 0.008741911500692368, + -0.007647534366697073, + 0.019698791205883026, + 0.02555731311440468, + 0.013289802707731724, + 0.0020576913375407457, + -0.03517734631896019, + 0.04133731499314308, + 0.0042104036547243595, + -0.0006790708866901696, + 0.02534761093556881, + -0.008656720630824566, + 0.008977824822068214, + -0.028807679191231728, + 0.0007237142999656498, + 0.007123281713575125, + 0.0069725592620670795, + -0.0018856709357351065, + -0.02119291014969349, + -0.02027546800673008, + -0.020734189078211784, + -0.0072871106676757336, + 0.022542860358953476, + -0.02038031816482544, + 0.000837984960526228, + -0.019122112542390823, + -0.001505587832070887, + 0.0009829736081883311, + 0.016946464776992798, + 0.02220209687948227, + -0.02249043434858322, + -0.03596372529864311, + 0.016500849276781082, + -0.04000047221779823, + 0.03205804526805878, + -0.03790346160531044, + 0.003912234678864479, + -0.023761747404932976, + -0.005645544733852148, + -0.007876894436776638, + -0.018178457394242287, + -0.00041162018897011876, + -0.011428706347942352, + 0.017392078414559364, + 0.016553275287151337, + 0.03598994016647339, + 0.01235925406217575, + -0.011625301092863083, + 0.013997543603181839, + -0.004911591298878193, + 0.0038532563485205173, + -0.03255608305335045, + -0.012418232858181, + -0.01975121535360813, + 0.01884688064455986, + 0.007319876458495855, + 0.010583348572254181, + 0.010760284028947353, + 0.002200222574174404, + -0.002685156185179949, + 0.04144216701388359, + -0.006241882219910622, + -0.014508689753711224, + -0.0035190454218536615, + -0.014914985746145248, + 0.015976596623659134, + 0.001592417131178081, + 0.005304780788719654, + 0.017667312175035477, + -0.005186823662370443, + -0.014600434340536594, + 0.017890118062496185, + -0.009298929944634438, + -0.0011975894449278712, + 0.002270668977871537, + 0.011219005100429058, + -0.026173310354351997, + 0.028126150369644165, + 0.008990931324660778, + 0.013348780572414398, + -0.002357498276978731, + -0.004292318131774664, + -0.03475794568657875, + -0.02251664735376835, + 0.01352571602910757, + -0.02260839194059372, + 0.016749870032072067, + -0.0013384823687374592, + 0.0029964311979711056, + 0.007634427864104509, + -0.011795682832598686, + 0.027444621548056602, + -0.021245336160063744, + -0.0032601957209408283, + -0.007870341651141644, + -0.026002926751971245, + -0.011572875082492828, + 0.0003741443215403706, + -0.014783922582864761, + 0.01541302539408207, + 0.0016145340632647276, + 0.013066994957625866, + 0.02452191337943077, + -0.019384238868951797, + 0.0026261776220053434, + 0.011179685592651367, + -0.004964016377925873, + 0.03407641872763634, + -0.0025000295136123896, + 0.04044608399271965, + 0.012457551434636116, + -0.03698601946234703, + -0.026736881583929062, + -0.0652170181274414, + 0.018702710047364235, + -0.026291266083717346, + 0.025491781532764435, + 0.023683110252022743, + -0.03397156670689583, + 0.004295594524592161, + 0.01895173080265522, + 0.030537711456418037, + -0.018283307552337646, + -0.016251830384135246, + 0.021166697144508362, + 0.028021300211548805, + -0.000764261931180954, + -0.024495700374245644, + 0.008093149401247501, + -0.020642444491386414, + -0.0030160904861986637, + -0.009659353643655777, + -0.013932012021541595, + -0.02097010239958763, + 0.007228132337331772, + -0.013289802707731724, + 0.04416827857494354, + -0.004937803838402033, + 0.013709204271435738, + 0.023656897246837616, + -0.03344731405377388, + -0.002477093366906047, + -0.03373565152287483, + -0.02200550213456154, + 0.020747294649481773, + -0.018794454634189606, + 0.040603362023830414, + -0.0008961442508734763, + -0.012713124975562096, + -0.00011959511903114617, + -0.006687496788799763, + -0.0023050729651004076, + 0.005924053955823183, + 0.0018856709357351065, + 0.021035633981227875, + -0.016382893547415733, + 0.009764203801751137, + 0.0044037215411663055, + -0.0016112575540319085, + 0.002473816741257906, + -0.0058126505464315414, + -0.017182378098368645, + -0.02279188111424446, + 0.006775964517146349, + -0.005953543353825808, + 0.011736704036593437, + 0.005088526289910078, + -0.017300335690379143, + -0.005756948608905077, + -0.01272623147815466, + -0.024679189547896385, + 0.010924112983047962, + -0.007483705412596464, + 0.0022198818624019623, + -0.026579605415463448, + 0.0014982155989855528, + -0.0004861623456235975, + 0.008427360095083714, + 0.024168044328689575, + -0.001857820083387196, + -0.020196830853819847, + -0.003587853629142046, + 0.024063192307949066, + -0.004315253812819719, + 0.008211106061935425, + 0.026278160512447357, + -0.009698672220110893, + -0.023132644593715668, + 0.013879586942493916, + 0.0020069044549018145, + -0.012732784263789654, + 0.03903060406446457, + -0.008014511317014694, + -0.0192662812769413, + -0.00567831052467227, + -0.0029046868439763784, + 0.022739455103874207, + -0.018506115302443504, + -0.003276578616350889, + 0.0075820027850568295, + 0.017182378098368645, + 0.004262828733772039, + -0.01286384742707014, + -0.002799836453050375, + -0.013198058120906353, + 0.02684173174202442, + -0.015006729401648045, + 0.024967528879642487, + -0.03499385714530945, + 0.022922944277524948, + 0.018899304792284966, + -0.01545234490185976, + 0.008152127265930176, + -0.02563595026731491, + -0.01297525130212307, + 0.019384238868951797, + -0.003623895812779665, + -0.025924289599061012, + -0.0038696392439305782, + -0.027523260563611984, + -0.02411561831831932, + -0.012876953929662704, + 0.026002926751971245, + -0.0061730737797915936, + 0.026697561144828796, + -0.007588556036353111, + 0.007516471203416586, + -0.016094554215669632, + 0.005268738139420748, + 0.00395483011379838, + -0.008958165533840656, + 0.007110175676643848, + 0.0038434267044067383, + -0.027523260563611984, + 0.00047919960343278944, + -0.011402493342757225, + 0.0360947884619236, + 0.03305412456393242, + -0.018610965460538864, + -0.017916331067681313, + -0.0019331813091412187, + -0.039581067860126495, + -0.03111439011991024, + -0.021428823471069336, + 0.015963491052389145, + 0.0022379031870514154, + 0.005288397893309593, + -0.010406413115561008, + 0.023879704996943474, + 0.0017447781283408403, + 0.019921597093343735, + -0.042307183146476746, + -0.03326382488012314, + 0.0041252123191952705, + 0.01985606551170349, + 0.02888631634414196, + -0.021507462486624718, + -0.04314598813652992, + 0.010353988036513329, + 0.01536060031503439, + -0.015098473988473415, + 0.02159920521080494, + 0.012450998649001122, + -0.018624072894454002, + -0.04013153538107872, + 0.009928032755851746, + 0.027628110721707344, + 0.02846691384911537, + -0.001243461505509913, + 0.011494237929582596, + -0.009161313995718956, + 0.010295010171830654, + 0.01078649703413248, + 0.00716915400698781, + -0.03719571977853775, + -0.008080042898654938, + 0.032398808747529984, + -0.007437833119183779, + -0.01937113329768181, + 0.0129686975851655, + -0.023774854838848114, + 0.014718391001224518, + -0.031088177114725113, + 0.026304373517632484, + -0.0005770873976871371, + -0.03635691478848457, + 0.013257036916911602, + 0.016055235639214516, + -0.024600552394986153, + -0.02047206275165081, + 0.0097773103043437, + -0.022018607705831528, + 0.005340822972357273, + -0.001377801294438541, + -0.025373823940753937, + -0.0018463520100340247, + -0.014259669929742813, + 0.015386813320219517, + -0.012568955309689045, + 0.007208473049104214, + -0.023801065981388092, + -0.02352583408355713, + -0.04390615224838257, + 0.026278160512447357, + 0.036959804594516754, + -0.011441811919212341, + -0.008342169225215912, + -0.007719619199633598, + -0.0009862501174211502, + -0.0025114973541349173, + -0.03174349293112755, + 0.007346088998019695, + -0.03412884101271629, + -0.0009182611247524619, + 0.02686794474720955, + -0.007922766730189323, + -0.006130478344857693, + 0.0006757943192496896, + -0.011284536682069302, + -0.014797029085457325, + 0.0055439709685742855, + 0.19061823189258575, + -0.01795564964413643, + -0.013932012021541595, + 0.01944977045059204, + -0.02423357591032982, + -0.00866982713341713, + 0.010308115743100643, + -0.003630449064075947, + 0.011972618289291859, + 0.031140603125095367, + -0.003466620109975338, + -0.002601603278890252, + 0.013879586942493916, + 0.00806038361042738, + 0.029227079823613167, + -0.005815926939249039, + -0.03302791342139244, + -0.007228132337331772, + 0.014128606766462326, + 0.02017061784863472, + 0.015334387309849262, + -0.021835120394825935, + -0.014154819771647453, + -0.014181031845510006, + 0.0385325625538826, + 0.015032942406833172, + 0.0048296768218278885, + 0.01063577365130186, + 0.024770934134721756, + 0.015164005570113659, + -0.018466796725988388, + -0.018191564828157425, + 0.013669885694980621, + -0.008263531140983105, + -0.01600280962884426, + 0.009692119434475899, + 0.03111439011991024, + 0.005871628876775503, + 0.021520568057894707, + 0.006697326432913542, + -0.006313967052847147, + -0.04222854599356651, + -0.01019015908241272, + -0.029882395640015602, + 0.020314786583185196, + 0.02340787649154663, + -0.009298929944634438, + 0.0002830144658219069, + -0.012739337049424648, + 0.001136153587140143, + -0.01946287602186203, + -0.004754315596073866, + -0.003571470733731985, + 0.038873329758644104, + -0.011133814230561256, + -0.027418408542871475, + 0.0022788604255765676, + -0.0038368734531104565, + -0.0025000295136123896, + 0.009842841885983944, + -0.04102276265621185, + 0.018414370715618134, + -0.023054007440805435, + 0.010707858949899673, + -0.03580645099282265, + -0.0019184367265552282, + -0.004469253122806549, + 0.0016169914742931724, + -0.0034207480493932962, + -0.01094377227127552, + -0.0102425841614604, + -0.00722157908603549, + -0.023774854838848114, + 0.006523667834699154, + -0.02259528636932373, + -0.03224153444170952, + 0.020432744175195694, + 0.03184834495186806, + 0.023801065981388092, + 0.028545552864670753, + 7.715318497503176e-05, + -0.002069159410893917, + -0.02846691384911537, + -0.0025704759173095226, + -0.02208413928747177, + -0.02828342653810978, + -0.00048001875984482467, + -0.007627875078469515, + 0.012025043368339539, + -0.025662163272500038, + -0.011821895837783813, + 0.013211164623498917, + 0.00387619249522686, + -0.0244301687926054, + -0.0002809666038956493, + -0.009312036447227001, + 0.0066842203959822655, + 0.0024525190237909555, + -0.017614886164665222, + 0.00999356433749199, + -0.03688116744160652, + 0.041311103850603104, + 0.04367024078965187, + -0.005743842106312513, + -0.019803641363978386, + -0.003908958286046982, + -0.00032827220275066793, + 0.03861120343208313, + 0.008597741834819317, + 0.007319876458495855, + -0.0019200750393792987, + -0.016055235639214516, + 0.00927271693944931, + -0.04280522093176842, + 0.009980457834899426, + 0.02857176586985588, + 0.0008895910577848554, + -0.0009076122660189867, + 0.00422678655013442, + 0.013309461995959282, + 0.008578082546591759, + 0.023040900006890297, + 0.0031700897961854935, + -0.012228190898895264, + 0.009659353643655777, + -0.03216289356350899, + -0.029672695323824883, + 0.018414370715618134, + -0.013709204271435738, + -0.013696098700165749, + 0.021114272996783257, + -0.01530817523598671, + 0.03072120063006878, + -0.00861740205436945, + 0.009200632572174072, + -0.007070856634527445, + -0.0025065825320780277, + -0.025819439440965652, + -0.015622726641595364, + 0.005098356399685144, + 0.026920368894934654, + -0.0005582470912486315, + 0.01545234490185976, + 0.015268855728209019, + 0.012175765819847584, + 0.008597741834819317, + 0.01419413834810257, + 0.01408928819000721, + -0.03153379261493683, + -0.011821895837783813, + -0.01714305952191353, + -0.002829325618222356, + 0.006199286784976721, + -0.021127378568053246, + 0.019109006971120834, + 0.0061632441356778145, + -0.025871863588690758, + -0.021337078884243965, + 0.014508689753711224, + -0.018060501664876938, + -0.027313558384776115, + -0.020144404843449593, + 0.018676497042179108, + -0.019082793965935707, + -0.008335615508258343, + 0.004017085302621126, + -0.1650347113609314, + 0.009849395602941513, + 0.012372360564768314, + -0.0014326840173453093, + 0.004400445148348808, + -0.009082675911486149, + 0.025583526119589806, + 0.03732678294181824, + -0.006392604671418667, + 0.007942426018416882, + 0.007385408040136099, + 0.007215025834739208, + -0.006110819056630135, + -0.021350186318159103, + -0.006091159302741289, + 0.005039377603679895, + -0.02391902357339859, + 0.030563924461603165, + 0.010806156322360039, + 0.017968757078051567, + 0.003945000469684601, + -0.02644854225218296, + 0.013414312154054642, + -0.0046461885794997215, + 0.010511264204978943, + 0.011087941937148571, + -0.01247065793722868, + 0.012385467067360878, + -0.013361887075006962, + -0.029751332476735115, + -0.003951553720980883, + -0.0027916450053453445, + -0.004541337955743074, + -0.0014744603540748358, + 0.014731497503817081, + -0.0041153826750814915, + 0.007306769955903292, + -0.010773390531539917, + 0.0028080279007554054, + 0.028624190017580986, + 0.006192733533680439, + 0.031481366604566574, + -0.010118074715137482, + 0.026894155889749527, + 0.004351296462118626, + 0.021612312644720078, + 0.011939852498471737, + -0.02057691290974617, + 0.0004669124318752438, + -0.0030259203631430864, + 0.012529636733233929, + -0.022739455103874207, + 0.0036435553338378668, + 0.004098999779671431, + -0.011684278957545757, + 0.021520568057894707, + -0.016972677782177925, + 0.030747413635253906, + 0.019122112542390823, + 0.01055058278143406, + -0.01976432092487812, + -0.019410451874136925, + 0.0008830379229038954, + -0.0031160262878984213, + -0.01357814110815525, + -0.023866597563028336, + -0.004800187423825264, + 0.019816746935248375, + -0.018270201981067657, + 0.0009223568486049771, + 0.006225499324500561, + -0.024403957650065422, + 0.0016268212348222733, + -0.01038675382733345, + 0.026212628930807114, + 0.008591189049184322, + -0.016382893547415733, + 0.0046461885794997215, + 0.011035516858100891, + 0.014010650105774403, + -0.02028857357800007, + 0.056095026433467865, + 0.0020298403687775135, + -0.02119291014969349, + -0.015347493812441826, + -0.009338248521089554, + -0.002296881517395377, + 0.014023756608366966, + -0.012018490582704544, + 0.0065990290604531765, + 0.00845357310026884, + -0.011848107911646366, + -0.002503305906429887, + -0.01640910468995571, + 0.01783769391477108, + -0.006268094759434462, + -0.005888011772185564, + 0.006291030906140804, + -0.009017144329845905, + -0.012385467067360878, + 0.020694870501756668, + -0.015111580491065979, + -0.0075820027850568295, + 0.008741911500692368, + 0.0075557902455329895, + -0.013591247610747814, + -0.016278041526675224, + 0.003912234678864479, + 0.04296249896287918, + -0.02351272851228714, + -0.03009209781885147, + -0.00048165704356506467, + 0.023473408073186874, + 0.01661880686879158, + -0.006366392131894827, + 0.006546603981405497, + 0.013840267434716225, + -0.010203265585005283, + 0.0033945352770388126, + 0.020039554685354233, + 0.054260142147541046, + -0.011926745995879173, + -0.00952829048037529, + 0.006087882909923792, + -0.011258323676884174, + -0.026094671338796616, + -0.09321210533380508, + 0.00036738638300448656, + 0.012188872322440147, + 0.010537476278841496, + 0.010524370707571507, + 0.026173310354351997, + 0.015006729401648045, + -0.0005578374839387834, + 0.01622561737895012, + 0.046291500329971313, + -0.006710432935506105, + -0.029672695323824883, + -0.02108805999159813, + -0.000740916351787746, + -0.0002754373708739877, + -0.0019495642045512795, + 0.002621262799948454, + -0.01089134719222784, + -0.017287228256464005, + 0.03824422508478165, + -0.011369727551937103, + -0.006327073089778423, + -0.005711076315492392, + -0.003984319511801004, + -0.019187644124031067, + -0.0036599382292479277, + -0.03627827763557434, + 0.013879586942493916, + 0.020091978833079338, + -0.014626646414399147, + 0.030039671808481216, + -0.027208708226680756, + 0.009764203801751137, + -0.014115500263869762, + -0.028309639543294907, + -0.007883448153734207, + -0.028650403022766113, + -0.016160085797309875, + 0.0352821983397007, + -0.030983326956629753, + 0.0006483529577963054, + 0.023145750164985657, + 0.015884852036833763, + -0.016841614618897438, + 0.0016546722035855055, + -0.02119291014969349, + -0.021717162802815437, + 0.01985606551170349, + 0.009030250832438469, + -0.0044397637248039246, + -0.03129787743091583, + -0.03153379261493683, + -0.02807372435927391, + 0.008872974663972855, + 0.040079109370708466, + -0.003604236524552107, + -0.011336961761116982, + -0.001156632206402719, + -0.035124920308589935, + -0.006019074935466051, + -0.014403839595615864, + 0.0184536911547184, + -0.03722193092107773, + 0.030170734971761703, + -0.01591106504201889, + -0.011703938245773315, + -0.018191564828157425, + -0.005924053955823183, + 0.012529636733233929, + -0.0023230942897498608, + -0.020550699904561043, + 0.005206483416259289, + -0.00021584461501333863, + 0.008578082546591759, + -0.01825709640979767, + 0.023054007440805435, + -0.049725357443094254, + -0.008093149401247501, + 0.01196606457233429, + 0.009148207493126392, + -2.1617739548673853e-05, + -0.021035633981227875, + 0.02563595026731491, + -0.021625418215990067, + 0.02056380733847618, + 0.02606845833361149, + -0.01550476998090744, + -0.007876894436776638, + 0.0074247270822525024, + -0.01252308301627636, + -0.009934586472809315, + 0.015832427889108658, + 0.01302767638117075, + 0.018991049379110336, + -0.023250602185726166, + -0.0033584930934011936, + -0.0051081860437989235, + 0.007083962671458721, + 0.003219238482415676, + -0.012247850187122822, + -0.006677667144685984, + -0.01043917890638113, + -0.054679542779922485, + 0.01580621488392353, + 0.028650403022766113, + -0.010203265585005283, + -0.013309461995959282, + 0.0034273010678589344, + 0.0016710550989955664, + 0.017588673159480095, + 0.024194255471229553, + -0.0038237671833485365, + -0.03863741457462311, + 0.0017742672935128212, + -0.024482594802975655, + -0.004157978110015392, + -0.04047229886054993, + -0.013204611837863922, + 0.00643192371353507, + 0.017051314935088158, + 0.02545246295630932, + 0.002169094979763031, + 0.01702510192990303, + 0.01449558325111866, + 0.0075557902455329895, + 0.026409223675727844, + -0.0071560475043952465, + -0.005851969122886658, + 0.002578667365014553, + -0.002246094634756446, + -0.007260898128151894, + -0.02765432372689247, + -0.0048034642823040485, + 0.014377626590430737, + -0.004895208403468132, + 0.015032942406833172, + -0.005435843952000141, + -0.028362063691020012, + 0.012431339360773563, + 0.024705402553081512, + 0.013853373937308788, + 0.04002668336033821, + -0.01985606551170349, + -0.023381665349006653, + -0.012883506715297699, + -0.01825709640979767, + 0.01211023423820734, + -0.005540694110095501, + 0.026120884343981743, + -0.00958071555942297, + 0.0030193671118468046, + -0.009593822062015533, + 0.03606857731938362, + -0.0016268212348222733, + 0.00041817332385107875, + 0.002578667365014553, + -0.004256275482475758, + 0.0028178575448691845, + 0.01692025177180767, + 0.001720203785225749, + 0.030878476798534393, + -0.028938742354512215, + 0.04246445745229721, + 0.011841555126011372, + -0.009161313995718956, + -0.016474636271595955, + 0.0018660115310922265, + -0.01693335734307766, + -0.022228308022022247, + -0.020917678251862526, + 0.0015481833834201097, + -0.015268855728209019, + -0.014574221335351467, + -0.007332982961088419, + 0.024089405313134193, + 0.032189108431339264, + 0.005711076315492392, + 0.0036566616035997868, + -0.014626646414399147, + 0.0001681294379523024, + -0.010557136498391628, + -0.003938447218388319, + 0.014561114832758904, + 0.010177052579820156, + 0.0012475572293624282, + 0.008794336579740047, + 0.042097482830286026, + 0.021651631221175194, + -0.017392078414559364, + -0.006893921177834272, + -0.009508631192147732, + -0.0002836288185790181, + -0.015347493812441826, + 0.01342086587101221, + -0.0010878241155296564, + 0.010603007860481739, + 0.015766896307468414, + 0.0184536911547184, + 0.010308115743100643, + -0.003899128409102559, + 0.03457445651292801, + 0.03638312965631485, + 0.01139594055712223, + 0.006723538972437382, + -0.0030423032585531473, + -0.029856184497475624, + -0.003466620109975338, + 0.028414489701390266, + -0.010144286789000034, + -0.02564905770123005, + 0.006710432935506105, + 0.0035583642311394215, + -0.01100275106728077, + 0.006428647320717573, + -0.014063075184822083, + 0.011264877393841743, + -0.017261015251278877, + 0.007962086237967014, + -0.03009209781885147, + -0.018099820241332054, + -0.02059002034366131, + 0.018178457394242287, + 0.035439472645521164, + 0.011166580021381378, + 0.006716986186802387, + 0.00430542416870594, + 0.00866327341645956, + -0.007588556036353111, + 0.019541515037417412, + -0.009488971903920174, + 0.005629161838442087, + -0.023499621078372, + 0.014613539911806583, + 0.015190218575298786, + -0.010006670840084553, + -0.012621380388736725, + -0.0069725592620670795, + 0.002708092099055648, + 0.017313441261649132, + -0.012608273886144161, + 0.002503305906429887, + 0.12424785643815994, + 0.02289673127233982, + -0.011271430179476738, + 0.01774594932794571, + -0.002752325963228941, + 0.01947598345577717, + 0.004819847177714109, + 0.0008830379229038954, + -0.0031537069007754326, + -0.05693382769823074, + 0.02938435599207878, + -0.0023787959944456816, + 0.01732654683291912, + -0.017378972843289375, + 0.000888771959580481, + 0.023460302501916885, + -0.0052392492070794106, + 0.018099820241332054, + -0.031061964109539986, + 0.019711896777153015, + 0.038558777421712875, + -0.021559886634349823, + 0.0032880466897040606, + 0.03344731405377388, + -0.009043356403708458, + -0.005029547959566116, + 0.022175883874297142, + 0.012274063192307949, + 0.012260956689715385, + -0.011330408975481987, + 0.007431280333548784, + 0.007680300157517195, + -0.03499385714530945, + -0.008859868161380291, + 0.008768124505877495, + -0.03357837721705437, + 0.005252355244010687, + -0.02410251274704933, + -0.002454157453030348, + 0.011625301092863083, + 0.005409631412476301, + 0.027418408542871475, + -0.005878182128071785, + -0.0013253759825602174, + 0.017287228256464005, + 0.0010591540485620499, + -0.01454800833016634, + -0.004266105126589537, + -0.020537594333291054 + ], + "metadata": { + "source": "Thesis_Verladegeraeusche_in_Speditionen.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 41, + "has_images": true, + "image_count": 51, + "coordinates": "CoordinatesMetadata(points=((204.16666666666666, 189.02777777777797), (204.16666666666666, 642.3611111111111), (936.1666666666666, 642.3611111111111), (936.1666666666666, 189.02777777777797)), system=)", + "links": [], + "last_modified": "2025-05-05T22:59:16", + "_known_field_names": "frozenset({'cc_recipient', 'link_texts', 'url', 'filetype', 'category_depth', 'page_number', 'filename', 'orig_elements', 'detection_origin', 'email_message_id', 'page_name', 'coordinates', 'table_as_cells', 'link_start_indexes', 'sent_to', 'bcc_recipient', 'languages', 'last_modified', 'link_urls', 'file_directory', 'subject', 'data_source', 'detection_class_prob', 'image_base64', 'text_as_html', 'attached_to_filename', 'key_value_pairs', 'signature', 'sent_from', 'header_footer_type', 'parent_id', 'links', 'emphasized_text_contents', 'emphasized_text_tags', 'image_mime_type', 'is_continuation', 'image_path'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "Thesis_Verladegeraeusche_in_Speditionen.pdf", + "detection_class_prob": 0.2568194270133972, + "parent_id": "d45475a34bc527cde6987546fa6dd2f5", + "text_as_html": "
Flurf\u00f6rderger\u00e4t |Anzahl Einzelereignisse ElMax-PegelSchallleistungspegel
LAFmaxLWA,5sLWAmaxLWA,1hKlLWAT,1h
[dB(A)][dB(A)][dB(A)][dB(A)][dB(A)][dB(A)]
Gabelstapler29769,3100,7108,872,15,777,8
STABW [dB]6,54,96,54,92,9-
Gabelhubwagen9968,6100,7108,172,16,279,5
STABW [dB]6,45,16,4512,7-
", + "id": "5ba44de7-0ff3-4c0c-b018-67e92171e1c2", + "processing_timestamp": "2025-05-06T14:18:19.298665", + "chunk_number": 23, + "total_chunks": 49, + "chunking_strategy": "hybrid", + "word_count": 462 + } +} \ No newline at end of file diff --git a/data/processed/85fd305f-83de-70b0-47e8-2dc000000024.json b/data/processed/85fd305f-83de-70b0-47e8-2dc000000024.json new file mode 100644 index 0000000000000000000000000000000000000000..3006a9f2a5251dc649e74330cb25feb6837505a9 --- /dev/null +++ b/data/processed/85fd305f-83de-70b0-47e8-2dc000000024.json @@ -0,0 +1,1570 @@ +{ + "id": "85fd305f-83de-70b0-47e8-2dc000000024", + "content": "Die aufgetretenen Fremdger\u00e4usche, beispielsweise von vorbeifahrenden Zugmaschinen, wurden im Programm NorReview 6.2 ausgeblendet. Da die protokollier- ten Verladet\u00e4tigkeiten in einzelne 5 Sekunden lange Arbeitsschritte unterteilt waren, konnten eventuelle Fremdger\u00e4usche gezielt in diesem Zeitraum anhand des Geh\u00f6rein- drucks analysiert werden. Falls ein bestimmter Arbeitsschritt aufgrund vorherrschender\n47\n6 Messauswertung und Statistik\nDominanz von Fremdger\u00e4uschen nicht eindeutig identifizierbar war, wurde er bei der weiteren Betrachtung nicht ber\u00fccksichtigt. Nun k\u00f6nnen mithilfe der berechneten Daten die gew\u00fcnschten akustischen Gr\u00f6\u00dfen f\u00fcr jeden Datensatz berechnet werden (siehe Ab- bildung 13). [IMAGE: Formel 13 Formel 14 Formel 12 Formel 11 Formel 12 Formel 2 ]\n\n\n## Formel 13\n\n\n## Formel 14\n\n\n## Formel 12\n\n\n## Formel 11\n\n\n## Formel 12\n\n\n## Formel 2\n\nAbbildung 13: Arbeitsschritte f\u00fcr die Berechnung der gew\u00fcnschten akustischen Kenngr\u00f6\u00dfen\nDie Messergebnisse, einschlie\u00dflich aller relevanten Daten und Diagramme, sind im An- hang 4: Messergebnisse der Beladevorg\u00e4nge \u00fcbersichtlich aufgef\u00fchrt. Dort ist eine um- fassende Darstellung der erfassten Werte und deren grafische Visualisierung zu finden. Dar\u00fcber hinaus werden in Kapitel 7, die berechneten akustischen Gr\u00f6\u00dfen dargestellt und interpretiert. Hierbei werden relevante Aspekte beleuchtet und Handlungsempfeh- lungen abgeleitet, um konkrete Ma\u00dfnahmen zur Reduzierung der L\u00e4rmbelastung zu ent- wickeln. ## 6.2 Statistik\n\nDie Statistik f\u00fcr Messwerte dient dazu, die gesammelten Informationen systematisch zu analysieren und zu interpretieren. Durch statistische Methoden k\u00f6nnen Muster, Trends, Zusammenh\u00e4nge und Unsicherheiten in den Messwerten identifiziert werden. Dies er- m\u00f6glicht eine zuverl\u00e4ssige und fundierte Aussage \u00fcber die gemessenen Verladet\u00e4tigkei- ten. [59] In Kapitel 2.3 wurden verschiedene statistische Analysemethoden vorgestellt, die in der Auswertung von Verladeger\u00e4uschen eingesetzt werden k\u00f6nnen. 48\n6 Messauswertung und Statistik\nNach der Auswertung der Verladeger\u00e4usche, welche im vorherigen Kapitel 6.1: Verlade- ger\u00e4usche beschrieben werden die statistischen Kennwerte berechnet. F\u00fcr jeden akus- tischen Kennwert wurde mithilfe des Programms Excel die Standardabweichung gem\u00e4\u00df Formel 26 und der entsprechende energetische Mittelwert gem\u00e4\u00df Formel 24 berechnet. Sobald diese Werte bekannt sind, kann zur visuellen Darstellung eine Normalverteilung Formel 27 erstellt werden. Die Standardabweichung kann in einem Intervall angegeben werden, um den Bereich zu verdeutlichen. In Abbildung 14 ist eine visuelle Darstellung des Vorgehens zur Bestimmung der akustischen Kenngr\u00f6\u00dfen zu sehen. [IMAGE: T H LAeq ! lAFmax ! IWASs | LWAmax | LWA\u201aIh [6] [esta : [ABA] Vorgang KufaB(ay] : [dBfA)] IaBla) ; TaBla)] Rausfahrt]\n\nAbbildung 14: Vorgehensweise statistische Kennwerte\nDie Ergebnisse, einschlie\u00dflich aller relevanten Daten und Diagramme, sind Kapitel 7.2 \u00fcbersichtlich aufgef\u00fchrt. Dort ist eine umfassende Darstellung der erfassten Werte und deren grafische Visualisierung zu finden und interpretiert. 49\n6 Messauswertung und Statistik\n\n## 6.3 Modellierung der Messsituation\n\nUm die Messung virtuell darstellen zu k\u00f6nnen, wird das gesamte Gel\u00e4nde virtualisiert. Um in SoundPlan 9.0 modellieren zu k\u00f6nnen, wird zuerst ein Projekt erstellt. Im n\u00e4chsten Schritt erfolgt die Gel\u00e4ndemodellierung, bei der die gesamte Messumge- bung virtuell nachgebildet wird. Dazu wird ein Gel\u00e4ndemodell erstellt, welche die Ge- l\u00e4ndebedingungen repr\u00e4sentiert.", + "embedding": [ + 0.004663142375648022, + 0.00576055096462369, + -0.001983777154237032, + -0.04535505548119545, + -0.0013059162301942706, + 0.019652055576443672, + -0.009731481783092022, + -0.009501870721578598, + -0.021380897611379623, + -0.031713422387838364, + 0.013749686069786549, + 0.023609479889273643, + -0.023879611864686012, + -0.013722673058509827, + -0.013594360090792179, + 0.007739263121038675, + 0.04197841137647629, + -0.004403140861541033, + 0.030146658420562744, + 0.02019231952726841, + -0.012162663973867893, + 0.0388178750872612, + 0.004004697315394878, + 0.0010560447117313743, + -0.006567568518221378, + 0.03252381458878517, + 0.01156162191182375, + -0.021867133677005768, + -0.015329954214394093, + 0.0092722587287426, + -0.006584451999515295, + -0.01627541333436966, + -0.008205239661037922, + 0.012932538986206055, + -0.026391834020614624, + 0.013526828028261662, + 0.006131981965154409, + -0.011136164888739586, + 0.04389634355902672, + 0.004943403881043196, + 0.010751227848231792, + 0.008664463646709919, + -0.012257209978997707, + -0.016721131280064583, + 0.0013472801074385643, + 0.011865519918501377, + 0.0007584781851619482, + 0.0014933198690414429, + -0.006098215468227863, + 0.0070436750538647175, + 0.01858503744006157, + 0.0070706880651414394, + -0.022407395765185356, + 0.007158481050282717, + 0.0065878285095095634, + -0.014235922135412693, + -0.0020867646671831608, + 0.015870217233896255, + -0.013425528071820736, + -0.019868161529302597, + -0.021272843703627586, + 0.002854950726032257, + -0.024001169949769974, + 0.012351755984127522, + -0.03390148654580116, + -0.014506054110825062, + -0.02031387761235237, + -0.014789692126214504, + -0.017990747466683388, + -0.0030778092332184315, + 0.03368537873029709, + 0.01769360341131687, + -0.003916904795914888, + 0.012122144922614098, + 0.04300491139292717, + -0.022961165755987167, + 0.015194889158010483, + -0.002532481448724866, + 0.017274899408221245, + 0.012277469970285892, + 0.007637964095920324, + -0.032226670533418655, + -0.034765906631946564, + 0.031605370342731476, + 0.022920645773410797, + 0.008731995709240437, + 0.002672612201422453, + 0.0033648237586021423, + -0.02285311184823513, + -0.00503794988617301, + -0.0019516990287229419, + 0.02844483219087124, + -0.0008948101312853396, + 0.007550171576440334, + 0.021259337663650513, + 0.005206781905144453, + -0.004848857875913382, + 0.007523158099502325, + -0.000899875070899725, + -0.011824999935925007, + -0.020043745636940002, + -0.007475885096937418, + -0.008583423681557178, + -0.0012957863509654999, + -0.017585551366209984, + 0.009251998737454414, + 0.00427482882514596, + -0.0021576741710305214, + 0.009711221791803837, + -0.01682918332517147, + -0.004352491348981857, + 0.013182410039007664, + 0.00643587950617075, + -0.0016807235078886151, + 0.021340377628803253, + -0.027337292209267616, + 0.046543631702661514, + -0.02606767602264881, + -0.006503412500023842, + -0.020651541650295258, + 0.014668132178485394, + 0.012723186984658241, + 0.026310794055461884, + -0.008367318660020828, + 0.019868161529302597, + 0.011608894914388657, + 0.022866619750857353, + -0.01127123087644577, + -0.02054348960518837, + -0.020948685705661774, + -0.012662407010793686, + -0.013121630996465683, + 0.023528441786766052, + 0.0222318097949028, + -0.010636421851813793, + 0.005953019950538874, + -0.018139321357011795, + 0.01886867545545101, + -0.024703511968255043, + -0.016775157302618027, + -9.987473458750173e-05, + 0.006010422483086586, + -0.025878584012389183, + -0.03195653855800629, + -0.010096159763634205, + 0.032658882439136505, + 0.008245759643614292, + 0.016423987224698067, + -0.010231224820017815, + -0.02128635160624981, + -0.008320045657455921, + -0.024325327947735786, + 0.011804739944636822, + -0.007827055640518665, + -0.007361079566180706, + -0.004956910386681557, + 0.004119503311812878, + 0.008779268711805344, + -0.018085293471813202, + -0.0048150913789868355, + 0.0017913085175678134, + 0.01623489521443844, + 0.02340688183903694, + 0.014154883101582527, + 0.02215077169239521, + 0.011021358892321587, + -0.0010509798303246498, + -0.019044261425733566, + -0.013452541083097458, + -0.00898186769336462, + -0.027877556160092354, + -0.009461350739002228, + -0.012723186984658241, + 0.021542975679039955, + -0.00022328045452013612, + 0.005510679446160793, + 0.009576156735420227, + 0.007313806563615799, + -0.027458852156996727, + -0.03071393445134163, + -0.027958596125245094, + 0.003415473271161318, + 0.0024041689466685057, + 0.0069693890400230885, + -0.01800425536930561, + 0.02914717234671116, + 0.01953049749135971, + 0.020124785602092743, + -0.009826027788221836, + -0.000392745656426996, + 0.008387578651309013, + 0.0070031555369496346, + 0.0034053432755172253, + -0.01616736128926277, + -0.6254081130027771, + 0.007509651593863964, + 0.004896130878478289, + 0.00728679308667779, + 0.003141965251415968, + 0.04297789931297302, + 0.0064156195148825645, + -0.011021358892321587, + -0.0007331533706746995, + 0.0449228435754776, + -0.008387578651309013, + -0.0002697092713788152, + 0.012885265983641148, + -0.012824486009776592, + -0.009792261756956577, + -0.020516475662589073, + -0.0034745645243674517, + -0.005544445943087339, + 0.044274527579545975, + 0.006645231507718563, + -0.031362250447273254, + 0.016680611297488213, + -0.001433384488336742, + 0.013979298062622547, + -0.0002608455833978951, + 0.003223004750907421, + 6.405067688319832e-05, + -0.022596487775444984, + 0.00490963738411665, + -0.01225045695900917, + -0.046192463487386703, + -0.0070706880651414394, + -0.04049269109964371, + 0.02613520808517933, + 0.05040651187300682, + -0.0032888492569327354, + 0.008786022663116455, + 0.02645936608314514, + 0.0198411475867033, + 0.00813770666718483, + -0.008191733621060848, + -0.011325256898999214, + 0.0018537763971835375, + 0.009981353767216206, + 0.018085293471813202, + 0.005419510416686535, + 0.03028172440826893, + -0.0111159048974514, + 0.015005797147750854, + -0.041573215276002884, + 0.006874843034893274, + -0.0030524842441082, + 0.007009908556938171, + 0.013965791091322899, + 0.01909828744828701, + 0.012662407010793686, + 0.028741976246237755, + -0.02293415181338787, + -0.015748657286167145, + 0.008043160662055016, + 0.003467811271548271, + 0.0012746823485940695, + 0.0014409819850698113, + 0.0002783619274850935, + -0.0244198739528656, + 0.017072301357984543, + -0.027188720181584358, + -0.05248652398586273, + 0.023352855816483498, + -0.020016733556985855, + -0.01994919963181019, + 0.027688464149832726, + -0.004095866810530424, + -0.001693385886028409, + 0.025919103994965553, + 0.0163564532995224, + 0.012709680013358593, + -0.023663505911827087, + 0.010825513862073421, + 0.020921673625707626, + 0.007570431102067232, + -0.0025476764421910048, + -0.025284294039011, + 0.0007956212502904236, + 0.031443290412425995, + -0.011919545941054821, + -0.024433381855487823, + -0.0011421490926295519, + 0.007347573060542345, + 0.014154883101582527, + 0.002963003236800432, + 0.042788807302713394, + -0.008704982697963715, + -0.013688906095921993, + -0.00024290717556141317, + 0.031119132414460182, + -0.003054172731935978, + 0.04022255912423134, + 0.0027232617139816284, + -0.03687293082475662, + -0.018517503514885902, + -0.009454597719013691, + 0.027796516194939613, + -0.015167875215411186, + 0.00637847650796175, + -0.005625485442578793, + 0.0005204249173402786, + 0.020502969622612, + 0.0220292117446661, + -0.019611535593867302, + -0.00423430884256959, + -0.0039506712928414345, + 0.006489905994385481, + -0.018612049520015717, + -0.006334580481052399, + -0.026580926030874252, + 0.02081362158060074, + -0.0011109152110293508, + 0.0034880710300058126, + -0.00966394878923893, + 0.007205754052847624, + 0.0010349407093599439, + 0.03430668264627457, + -0.029417304322123528, + -0.013094617053866386, + 0.02677001804113388, + 0.026824044063687325, + 0.004629375878721476, + 0.0017440355150029063, + -0.008171473629772663, + 0.013452541083097458, + -0.004045216832309961, + 0.009481610730290413, + -0.014303455129265785, + 0.019692575559020042, + 0.011595387943089008, + 0.02664845809340477, + -0.007502898573875427, + 0.00387976155616343, + -0.02233986370265484, + -0.03290199860930443, + 0.011960065923631191, + 0.0112307108938694, + -0.01422241609543562, + -0.009690962731838226, + -0.02656741812825203, + -0.020057253539562225, + 0.01160214189440012, + 0.00839433167129755, + 0.01800425536930561, + 0.0016233206260949373, + -0.017518017441034317, + -0.008671216666698456, + 0.007192247547209263, + -0.006783673539757729, + 0.009582909755408764, + -0.006304190494120121, + -0.02406870387494564, + -0.016194375231862068, + -0.014884237200021744, + 0.014276442117989063, + 0.016802169382572174, + -0.03365836665034294, + -0.002458195434883237, + -0.00039232359267771244, + -0.014330468140542507, + 0.0001446679962100461, + 0.003741319291293621, + -0.04305893927812576, + -0.030740948393940926, + -0.002974821487441659, + 0.007293546572327614, + -0.00854965765029192, + 0.012567861005663872, + -0.003923657815903425, + 0.004295088350772858, + -0.023258309811353683, + -0.011082138866186142, + -0.03060588240623474, + -0.012682667002081871, + 0.01843646541237831, + -0.007773029617965221, + -0.012068117968738079, + -0.007941861636936665, + 0.041005939245224, + 0.005993539467453957, + 0.029444318264722824, + -0.011440062895417213, + -0.024662991985678673, + 0.0268105361610651, + 0.003933787811547518, + -0.00047737275599502027, + -0.019746601581573486, + 0.0170182753354311, + -0.02198869176208973, + 0.016815677285194397, + 0.021894145756959915, + -0.004335608333349228, + -0.003835865296423435, + 0.03436070680618286, + 0.03155134245753288, + 0.018693089485168457, + 0.025919103994965553, + -0.0123247429728508, + 0.02089465968310833, + -0.008948100730776787, + 0.012675913982093334, + -0.027607424184679985, + 0.030146658420562744, + 0.003987814299762249, + 0.014951770193874836, + -0.0009665637626312673, + -0.03698098286986351, + -0.0055782124400138855, + 0.0131891630589962, + 0.03698098286986351, + -0.010217718780040741, + 0.019868161529302597, + 0.016383467242121696, + 0.0009842910803854465, + 0.006246787495911121, + -0.012155910953879356, + 0.036413706839084625, + 0.013445788063108921, + -0.005855096969753504, + -0.004605739377439022, + 0.009218232706189156, + 0.025135722011327744, + 0.01547852624207735, + -0.025959623977541924, + -0.005882110446691513, + 0.0011987078469246626, + 0.0022775449324399233, + 0.009062906727194786, + 0.013283709064126015, + 0.016532039269804955, + 0.004754311870783567, + 0.0007732509984634817, + 0.03122718445956707, + 0.013108124025166035, + 0.003818982047960162, + 0.012892019003629684, + 0.013979298062622547, + -0.0021272844169288874, + 0.005240548402070999, + -0.029498344287276268, + 0.0172208733856678, + 0.03338823467493057, + -0.004116126336157322, + -0.005439769942313433, + -0.001988842152059078, + -0.005669381935149431, + -0.012851499021053314, + -0.009907067753374577, + 0.0038291120436042547, + -0.01156162191182375, + 0.02895808033645153, + -0.009123686701059341, + 0.021907653659582138, + 0.03322615846991539, + -0.005500549916177988, + 0.021110765635967255, + 0.012351755984127522, + -0.027053656056523323, + -0.005453276913613081, + 0.0034222265239804983, + -0.0313892625272274, + 0.0008488033781759441, + -0.0063683465123176575, + -0.007259780075401068, + 0.0024142989423125982, + -0.017423473298549652, + -0.01761256344616413, + 0.009191219694912434, + 0.02301519177854061, + -0.0060475654900074005, + 0.0010214342037215829, + 0.014465534128248692, + 0.03395551070570946, + -0.004987299907952547, + -0.019435951486229897, + -0.024284807965159416, + -0.009441090747714043, + 0.015100343152880669, + -0.01334448903799057, + -0.0039000215474516153, + 0.0014578651171177626, + 0.002383909188210964, + -0.040546715259552, + -0.0070166620425879955, + -0.02633780799806118, + 0.012770459987223148, + -0.0011624089675024152, + -0.03068692237138748, + 0.003094692248851061, + 0.017423473298549652, + 0.022137263789772987, + 0.011338763870298862, + -0.031173158437013626, + 0.009792261756956577, + -0.004615869373083115, + -0.018206853419542313, + -0.015356967225670815, + -0.03603552281856537, + 0.02120531164109707, + -0.0092722587287426, + -0.02074608765542507, + -0.025365334004163742, + -0.006216397974640131, + -0.019706081598997116, + -0.004940027371048927, + 0.01730191335082054, + 0.015167875215411186, + 0.0047880783677101135, + -0.009940833784639835, + -0.008049914613366127, + -0.0031470302492380142, + -0.010170445777475834, + 0.044787779450416565, + 0.011872272938489914, + -0.008569917641580105, + -0.04308595135807991, + -0.0026118324603885412, + 0.00992057379335165, + 0.016302427276968956, + 0.013796959072351456, + 0.020016733556985855, + 0.01718035340309143, + -0.018598543480038643, + -0.006685751024633646, + -0.02414974384009838, + -0.04097892716526985, + 0.020611021667718887, + 0.00865095667541027, + -0.019314391538500786, + 0.001860529650002718, + 0.0388178750872612, + -0.0056727584451437, + 0.005149378906935453, + -0.017126327380537987, + 0.008704982697963715, + -0.004791454877704382, + 0.0017457238864153624, + 0.01796373538672924, + -0.010521615855395794, + -0.007428612094372511, + 0.0010577330831438303, + 0.024662991985678673, + 0.00044487256673164666, + -0.016342947259545326, + 0.02629728801548481, + 0.03338823467493057, + -0.005568082444369793, + -0.03203757852315903, + -0.0014232546091079712, + 0.028390806168317795, + 0.01305409800261259, + 0.014181896112859249, + -0.025932610034942627, + -0.0004334764089435339, + 0.014343975111842155, + 0.012851499021053314, + -0.00728679308667779, + -0.009657195769250393, + 0.018328411504626274, + 0.04019554704427719, + 0.0032601477578282356, + -0.00548704294487834, + -0.0025915727019309998, + 0.013938778080046177, + 0.0065878285095095634, + 0.01491125114262104, + -6.626659887842834e-05, + -0.008286279626190662, + 0.006841076537966728, + -0.010832266882061958, + -0.0055039264261722565, + -0.008441604673862457, + 0.006243410985916853, + -0.03217264264822006, + -0.0020816996693611145, + -0.014181896112859249, + -0.01596476323902607, + -0.005331717431545258, + -0.032145630568265915, + -0.0017744253855198622, + 0.012547601014375687, + -0.013911765068769455, + -0.029282238334417343, + -0.028147686272859573, + -0.011061878874897957, + -0.013283709064126015, + -0.01705879531800747, + 0.007901342585682869, + 0.004382881335914135, + -0.013270203024148941, + -0.030335750430822372, + -0.015370474196970463, + 0.01465462613850832, + 0.00339014851488173, + 0.0178826954215765, + -0.012385522946715355, + -0.007246273569762707, + -0.0004334764089435339, + -0.035468246787786484, + -0.019381925463676453, + -0.01553255319595337, + -0.01395228412002325, + -0.009177712723612785, + 0.018733609467744827, + -0.017680097371339798, + 0.00966394878923893, + 0.003192614996805787, + 0.020921673625707626, + 0.0026894952170550823, + 0.0024835201911628246, + 0.013209423050284386, + 0.004990676883608103, + 0.0029393667355179787, + -0.0016511778812855482, + -0.0007500365609303117, + 0.014857224188745022, + 0.022880125790834427, + -0.019314391538500786, + 0.02699962817132473, + -0.027404826134443283, + 0.000419547752244398, + -0.008144460618495941, + 0.004396387841552496, + -0.006142111495137215, + -0.0196385495364666, + -0.009508623741567135, + 0.008704982697963715, + -0.002593260956928134, + 0.00835381168872118, + -0.006101591978222132, + -0.010960579849779606, + 0.014384495094418526, + 0.01058239582926035, + 0.011838506907224655, + 0.005203405395150185, + 0.017518017441034317, + 0.036575786769390106, + -0.002625339198857546, + 0.021313363686203957, + -0.029984580352902412, + 0.03644071891903877, + 0.0122099369764328, + 0.006108345463871956, + 0.039223071187734604, + -0.00525405490770936, + -0.0031993682496249676, + -0.030524842441082, + 0.008738749660551548, + 0.004663142375648022, + 0.021137777715921402, + 0.006631724536418915, + -0.006817440036684275, + -0.04389634355902672, + -0.006787050515413284, + 0.012439548969268799, + 0.027850542217493057, + -0.020948685705661774, + 0.010852526873350143, + -0.004646259360015392, + -0.003072744235396385, + -0.011453569866716862, + 0.018341919407248497, + 0.015167875215411186, + -0.02947133034467697, + -0.03471187874674797, + 0.008860308676958084, + -0.02198869176208973, + 0.029714448377490044, + -0.0030794974882155657, + 0.005287821404635906, + -0.03017367236316204, + -0.01461410615593195, + -0.01796373538672924, + -0.03495499864220619, + 0.006307567004114389, + -0.004967040382325649, + -0.0005107171018607914, + 0.018179839476943016, + 0.03125419840216637, + 0.007246273569762707, + 0.009306024760007858, + 0.007077441550791264, + -0.003538720775395632, + 0.005561329424381256, + -0.018301399424672127, + -0.014114363119006157, + -0.02947133034467697, + 0.022988177835941315, + 0.01512735616415739, + 0.008144460618495941, + 0.017774643376469612, + 0.008374071680009365, + 0.007246273569762707, + 0.04311296343803406, + -0.0064156195148825645, + 0.0002678099262993783, + 0.0032905375119298697, + -0.017828669399023056, + 0.010859280824661255, + 0.004460543859750032, + 0.00745562557131052, + 0.02578403800725937, + -0.013682153075933456, + 0.004062100313603878, + 0.016072815284132957, + -0.0036096302792429924, + -0.007854069583117962, + -0.004761065356433392, + 0.0250816959887743, + -0.03522512689232826, + 0.012952798046171665, + -0.010460836812853813, + 0.006976142060011625, + -0.01116993185132742, + -0.003437421517446637, + -0.02656741812825203, + -0.0081782266497612, + 0.02809366025030613, + -0.0111159048974514, + 0.029687436297535896, + 0.017207367345690727, + -0.006152241490781307, + -0.0034526162780821323, + -0.013628127053380013, + 0.03236173465847969, + -0.017207367345690727, + -0.0051358724012970924, + -0.005865226965397596, + -0.03279394656419754, + -0.014600600115954876, + -0.0060475654900074005, + -0.010947072878479958, + 0.023704025894403458, + 0.005689641460776329, + 0.014073843136429787, + 0.032307710498571396, + -0.00396080082282424, + 0.004109373316168785, + 0.01734243333339691, + -0.010555382817983627, + 0.044787779450416565, + 0.009400570765137672, + 0.02817470021545887, + 0.0021779341623187065, + -0.02974146232008934, + -0.0008230564999394119, + -0.07266533374786377, + 0.014816705137491226, + 0.005709901452064514, + 0.020651541650295258, + 0.015316448174417019, + -0.0200707595795393, + -0.0019652056507766247, + 0.023136749863624573, + 0.008873814716935158, + -0.03430668264627457, + -0.021002713590860367, + 0.03595448285341263, + 0.026148715987801552, + 0.008502384647727013, + -0.006483152508735657, + 0.011629154905676842, + -0.014127870090305805, + 0.0015819567488506436, + 0.0016064373776316643, + -0.020489463582634926, + 0.0029241719748824835, + -0.004268075339496136, + -0.009495116770267487, + 0.04297789931297302, + -0.009062906727194786, + 0.0287960022687912, + 0.0012459808494895697, + -0.017855683341622353, + -0.0076312106102705, + -0.0070706880651414394, + -0.000595133169554174, + 0.014479040168225765, + -0.023109737783670425, + 0.04684077575802803, + 0.007144974544644356, + -0.01858503744006157, + 0.011514348909258842, + -0.010042132809758186, + -0.0004790610691998154, + -0.004524700343608856, + 0.005662628449499607, + 0.02469000592827797, + -0.0021593624260276556, + -0.001008771825581789, + 0.007347573060542345, + -0.0030305362306535244, + 0.014127870090305805, + 0.008860308676958084, + -0.01921984553337097, + -0.01769360341131687, + -0.005693018436431885, + -0.006331203505396843, + -0.0028144309762865305, + -0.0024379354435950518, + -0.016842689365148544, + -0.010494602844119072, + 0.0055647059343755245, + -0.028039634227752686, + 0.007340819574892521, + -0.004278205335140228, + 0.014033324085175991, + -0.02720222808420658, + -0.005821330472826958, + -0.006689127534627914, + 0.00843485165387392, + 0.029282238334417343, + -0.014749172143638134, + -0.01308786403387785, + -0.002181310672312975, + 0.02578403800725937, + -0.023879611864686012, + 0.015019303187727928, + 0.0161268413066864, + -0.026675472036004066, + -0.010953826829791069, + 0.026351314038038254, + -0.0009657195769250393, + -0.02304220385849476, + 0.037386178970336914, + -0.022866619750857353, + -0.03017367236316204, + -0.0036839162930846214, + -0.003283784259110689, + 0.01776113733649254, + -0.030146658420562744, + 0.0020496216602623463, + 0.0026641704607754946, + 0.025068189948797226, + -0.014560080133378506, + 0.008718489669263363, + 0.008184979669749737, + 0.002721573458984494, + 0.031119132414460182, + -0.00396080082282424, + 0.031119132414460182, + -0.022366875782608986, + 0.028985094279050827, + 0.0061623714864254, + -0.014978783205151558, + 0.013493061065673828, + -0.03646773472428322, + -0.003172355005517602, + 0.015194889158010483, + 0.005537692923098803, + -0.03125419840216637, + -0.001708580763079226, + -0.029444318264722824, + -0.015640605241060257, + -0.019354911521077156, + 0.02363649383187294, + 0.007023415062576532, + -0.0018537763971835375, + -0.008428098633885384, + -0.012020844966173172, + -0.014316962100565434, + 0.012709680013358593, + -0.011966818943619728, + -0.010440576821565628, + 0.01815282739698887, + 0.007752770092338324, + -0.0427347794175148, + 0.022083237767219543, + -0.0159242432564497, + 0.04551713168621063, + 0.023812079802155495, + -0.010859280824661255, + -0.0007576340576633811, + -0.0006546464283019304, + -0.026715990155935287, + -0.0370890349149704, + -0.017072301357984543, + 0.006300813984125853, + -0.008306539617478848, + 0.010663434863090515, + -0.01967906951904297, + 0.03819657489657402, + -0.010224471800029278, + 0.011838506907224655, + -0.026661964133381844, + -0.005237171426415443, + -0.005000806879252195, + -0.003954047802835703, + 0.02120531164109707, + -0.011257723905146122, + -0.031443290412425995, + 0.005081845913082361, + 0.015910737216472626, + -0.006371723487973213, + 0.012831239029765129, + 0.005071716383099556, + -0.007604197598993778, + -0.025405853986740112, + 0.0028346909675747156, + 0.008090433664619923, + 0.025135722011327744, + 0.007651470601558685, + 0.021569987758994102, + -0.020367903634905815, + -0.010197458788752556, + -0.01457358617335558, + 0.019976213574409485, + -0.04192438721656799, + -0.015451513230800629, + 0.031119132414460182, + 0.007827055640518665, + -0.004602362867444754, + 0.010278497822582722, + -0.015383980236947536, + 0.006800557021051645, + -0.029876528307795525, + 0.03260485455393791, + 0.015140862204134464, + -0.02359597384929657, + 0.014884237200021744, + 0.011399542912840843, + -0.005267561413347721, + -0.0340365506708622, + -0.0008652645046822727, + -0.031362250447273254, + -0.0077190035954117775, + -0.0010425382060930133, + -0.0231232438236475, + -0.0011058502132073045, + -0.018490491434931755, + 0.021583495661616325, + -0.007908095605671406, + -0.0020445566624403, + -0.015681125223636627, + 0.003314174013212323, + -0.03854774311184883, + 0.018801141530275345, + 0.006287307478487492, + -0.021110765635967255, + 0.018260879442095757, + -0.0062535409815609455, + -0.010636421851813793, + 0.0025578062050044537, + -0.03417161479592323, + -0.005996915977448225, + -0.034576814621686935, + -0.007577184587717056, + 0.024865591898560524, + -0.012088377960026264, + 0.007516405079513788, + 0.004322101827710867, + -0.017909709364175797, + -0.029606396332383156, + -0.016545545309782028, + 0.20162604749202728, + -0.040168531239032745, + -0.018922701478004456, + 0.00992057379335165, + -0.006770167034119368, + -0.023582467809319496, + 0.027458852156996727, + -0.013540334068238735, + 0.0034441747702658176, + 0.03646773472428322, + 0.0025983259547501802, + 0.012480068951845169, + -0.0004870806005783379, + 0.0133039690554142, + 0.0215970017015934, + -0.021569987758994102, + -0.03581941872835159, + -0.002184687415137887, + -0.011392789892852306, + 0.013006825000047684, + 0.028390806168317795, + -0.016734637320041656, + -0.009873300790786743, + -0.019152313470840454, + 0.03365836665034294, + 0.003957424312829971, + -0.00412963330745697, + 0.01199383195489645, + 0.029363278299570084, + 0.018639063462615013, + -0.016288921236991882, + -0.000724711746443063, + 0.014276442117989063, + 0.002134037669748068, + -0.01878763549029827, + 0.006773543544113636, + 0.007529911585152149, + -0.006483152508735657, + 0.022920645773410797, + 0.005368860904127359, + -0.0033833952620625496, + -0.037710338830947876, + -0.008711736649274826, + -0.026891576126217842, + 0.011318503879010677, + 0.007151727564632893, + -0.005622108932584524, + -0.008441604673862457, + -0.014060337096452713, + -0.012189676985144615, + -0.014951770193874836, + -2.1631612980854698e-05, + 0.0010146809509024024, + 0.03279394656419754, + -0.006425749510526657, + -0.02402818389236927, + 0.004116126336157322, + -0.007583937607705593, + 0.002399104181677103, + 0.026972616091370583, + -0.04816441982984543, + 0.01279747299849987, + -0.020502969622612, + 0.01815282739698887, + -0.0440584234893322, + 0.014897744171321392, + -0.01340526808053255, + -0.005844966974109411, + 0.0039641777984797955, + -0.01784217543900013, + -0.011129411868751049, + -0.011811493895947933, + -0.027094174176454544, + -0.003158848499879241, + -0.018341919407248497, + -0.03330719470977783, + 0.012257209978997707, + 0.016842689365148544, + 0.012122144922614098, + 0.029417304322123528, + -0.017274899408221245, + -0.008198486641049385, + -0.024055197834968567, + -0.0044943103566765785, + -0.006577698513865471, + -0.015802685171365738, + 0.022434409707784653, + 0.0066351015120744705, + -0.004197165835648775, + -0.025878584012389183, + -0.018693089485168457, + 0.0017659837612882257, + -0.003710929537191987, + -0.022177783772349358, + 0.014789692126214504, + -0.011041618883609772, + 0.009042646735906601, + 0.017545031383633614, + -0.012952798046171665, + 0.001571826869621873, + -0.027499372139573097, + 0.054647572338581085, + 0.03287498652935028, + -0.019125299528241158, + -0.012790719978511333, + 0.0016807235078886151, + -0.018882181495428085, + 0.027769504114985466, + -0.005129118915647268, + 0.010913306847214699, + -0.012885265983641148, + -0.025257281959056854, + 0.0106836948543787, + -0.0272697601467371, + -0.005669381935149431, + 0.010055639781057835, + -0.009967846795916557, + 0.008975114673376083, + 0.008657709695398808, + 0.0006293216138146818, + -0.01530294120311737, + 0.020084265619516373, + 0.011440062895417213, + 0.000915069947950542, + 0.012142403982579708, + -0.0344417467713356, + -0.01819334737956524, + 0.017436979338526726, + -0.0004604895366355777, + -0.01776113733649254, + 0.01971958950161934, + -0.019733095541596413, + 0.03681890293955803, + 0.012000584974884987, + 0.015613592229783535, + -0.00430521834641695, + -0.005139248911291361, + -0.02469000592827797, + -0.02233986370265484, + 0.014762678183615208, + 0.02547338604927063, + 0.009366804733872414, + 0.015140862204134464, + 0.005267561413347721, + 0.013060851022601128, + -0.00800264161080122, + 0.017166847363114357, + 0.011237463913857937, + -0.0244198739528656, + -0.02238038182258606, + 0.0025409229565411806, + -0.009866547770798206, + -0.0012181235942989588, + -0.020570503547787666, + 0.031875498592853546, + -0.00046344409929588437, + -0.020597515627741814, + -0.024919617921113968, + 0.0010408498346805573, + -0.007009908556938171, + -0.03287498652935028, + -0.040600743144750595, + 0.00868472270667553, + -0.005358730908483267, + -0.014276442117989063, + 0.0058112009428441525, + -0.1718035489320755, + 0.018814649432897568, + 0.006503412500023842, + -0.027148202061653137, + 0.02582455798983574, + 0.01465462613850832, + 0.012750199995934963, + 0.012662407010793686, + -0.02722924016416073, + 0.0004710415378212929, + 0.029903540387749672, + -0.004804961383342743, + -0.01647801324725151, + -0.02328532189130783, + -0.006847830023616552, + -0.010413563810288906, + -0.030038606375455856, + 0.01948997750878334, + 0.03211861848831177, + 0.025527413934469223, + 0.015789177268743515, + -0.01761256344616413, + 0.014006311073899269, + 0.012675913982093334, + -0.002257285173982382, + 0.010676941834390163, + -0.02171856164932251, + 0.03714306280016899, + 0.0007567898719571531, + -0.029552370309829712, + -0.012061364948749542, + -0.019773615524172783, + -0.0007272442453540862, + -0.01083902083337307, + -0.016464505344629288, + -0.0014553326182067394, + -0.0032770310062915087, + -0.0019516990287229419, + 0.006165747996419668, + 0.003248329507187009, + 0.018760623410344124, + 0.030578868463635445, + 4.4081003579776734e-05, + 0.010359537787735462, + -0.007833809591829777, + -0.0011455257190391421, + 0.029795488342642784, + -0.017599057406187057, + -0.0001834993890952319, + -0.011082138866186142, + 0.0007090948056429625, + -0.02277207374572754, + 0.0015372162451967597, + 0.009184465743601322, + -0.015627099201083183, + 0.029984580352902412, + -0.0014443586114794016, + 0.016883209347724915, + -0.006624971516430378, + -0.003283784259110689, + -0.0018183216452598572, + -0.012946045026183128, + 0.02809366025030613, + 0.017585551366209984, + -0.029633410274982452, + -0.0143980011343956, + -0.0035927470307797194, + 0.013722673058509827, + -0.017247887328267097, + -0.010784993879497051, + -0.0008044849382713437, + -0.022745059803128242, + -0.0005347756668925285, + -0.005510679446160793, + 0.01185876689851284, + 0.016842689365148544, + -0.017855683341622353, + 0.0006326982984319329, + -0.0020715699065476656, + 0.005054832901805639, + -0.02035439759492874, + 0.050028327852487564, + -0.0031858617439866066, + -0.022569473832845688, + -0.0070909480564296246, + -0.005996915977448225, + -0.001663840259425342, + 0.02167804166674614, + -0.006044188980013132, + 0.008056667633354664, + 0.018639063462615013, + -0.011845259927213192, + -0.024798057973384857, + -0.02524377591907978, + 0.02687807008624077, + 0.004531453363597393, + -0.00937355775386095, + -0.0009640312637202442, + -0.0045685963705182076, + -0.0030879389960318804, + 0.0014840341173112392, + -0.0117777269333601, + -0.01980062760412693, + 0.00813770666718483, + 0.0014722158666700125, + -0.009873300790786743, + -0.00941407773643732, + 0.005851720459759235, + 0.03473889082670212, + -0.027769504114985466, + -0.02493312396109104, + -0.01033252477645874, + 0.006057695485651493, + 0.029606396332383156, + -0.008360565640032291, + 0.018017761409282684, + 0.002716508461162448, + -0.01242604199796915, + 0.021083751693367958, + 0.030551856383681297, + 0.04589531570672989, + -0.00843485165387392, + 0.001082213711924851, + 0.006874843034893274, + -0.020556995645165443, + -0.04000645503401756, + -0.09962444007396698, + -0.00882654171437025, + 0.004251192323863506, + 0.004771194886416197, + 0.011750713922083378, + 0.031605370342731476, + -0.00833355262875557, + -0.00745562557131052, + 0.0002711865527089685, + 0.052891720086336136, + -0.025027669966220856, + -0.0163564532995224, + -0.0008125044405460358, + -0.0003444174653850496, + 0.011980325914919376, + -0.019165819510817528, + 0.0002870145544875413, + -0.014803198166191578, + -0.02751287817955017, + 0.04119503125548363, + -0.004278205335140228, + -0.004166776314377785, + -0.0038831382989883423, + -0.016815677285194397, + -0.010379796847701073, + 0.0038392418064177036, + -0.015937749296426773, + 0.010048886761069298, + 0.008036407642066479, + -0.0013472801074385643, + 0.03768332302570343, + -0.0296604223549366, + 0.006746530532836914, + -0.01959802955389023, + -0.013040591031312943, + -0.007968874648213387, + -0.019787121564149857, + -0.009569402784109116, + 0.040600743144750595, + -0.011716947890818119, + -0.00022454668942373246, + 0.007469132076948881, + 0.002625339198857546, + -0.017815163359045982, + 0.0059867859818041325, + -0.008779268711805344, + -0.011568374931812286, + 0.028471844270825386, + 0.00022539084602613002, + -0.007766276597976685, + -0.032307710498571396, + -0.03228069841861725, + -0.008968360722064972, + 0.01504631619900465, + 0.034927982836961746, + 0.013938778080046177, + -0.001601372379809618, + 0.00017653506074566394, + -0.0092722587287426, + 0.006658738013356924, + -0.015451513230800629, + 0.010089405812323093, + -0.018841661512851715, + 0.0418703593313694, + -0.006911986041814089, + -0.0047272988595068455, + -0.020448943600058556, + -0.012790719978511333, + 0.01363488007336855, + -0.005723407957702875, + -0.02993055433034897, + 0.004798208363354206, + 0.0013422152260318398, + 0.005024443380534649, + -0.028147686272859573, + -0.0003826157480943948, + -0.03611656278371811, + -0.024676499888300896, + 0.010913306847214699, + 0.0002445954887662083, + -0.013756439089775085, + -0.03879086300730705, + 0.02712118811905384, + -0.017774643376469612, + 0.023150257766246796, + 0.023190775886178017, + -0.013702413067221642, + -0.02019231952726841, + 0.005031196400523186, + -0.02198869176208973, + -0.014411508105695248, + 0.019246859475970268, + 0.0207055676728487, + -0.015262421220541, + -0.01976010948419571, + 0.0071044545620679855, + 0.01242604199796915, + -0.01577567122876644, + -0.0009564338251948357, + -0.0047745718620717525, + -0.006226527504622936, + -0.01627541333436966, + -0.04362621530890465, + 0.018017761409282684, + 0.03698098286986351, + -0.008961607702076435, + -0.007334066089242697, + 0.012669160962104797, + 0.011142918840050697, + 0.028228726238012314, + 0.012419288977980614, + 0.0014874107437208295, + -0.037818390876054764, + -0.0076312106102705, + -0.012736693024635315, + -0.012486821971833706, + -0.044085435569286346, + -0.03290199860930443, + -0.0014848782448098063, + 0.01682918332517147, + 0.011635907925665379, + -0.014465534128248692, + -0.006496659014374018, + 0.021353883668780327, + 0.0018352048937231302, + 0.025054683908820152, + -0.0086104366928339, + -0.004136386327445507, + -0.005747044458985329, + 0.0031520952470600605, + -0.016721131280064583, + -0.010062392801046371, + 0.0112307108938694, + 0.008772515691816807, + 0.015356967225670815, + 0.011102398857474327, + -0.02254246175289154, + -0.010156938806176186, + 0.019476471468806267, + 0.018990233540534973, + 0.01882815547287464, + 0.06396710127592087, + -0.02000322751700878, + -0.02539234794676304, + 0.0007133156177587807, + -0.028579898178577423, + 0.006243410985916853, + -0.006466269493103027, + 0.013351242057979107, + -0.0008188356878235936, + -0.0004980546655133367, + -0.016896715387701988, + 0.0058112009428441525, + -0.002866768976673484, + -0.007867575623095036, + 0.0030119644943624735, + -0.001543125370517373, + 0.006054318975657225, + 0.011649414896965027, + 0.006547308526933193, + 0.021029725670814514, + -0.025648972019553185, + 0.044517647475004196, + 0.005510679446160793, + 0.0187471155077219, + -0.017666591331362724, + -0.0016207881271839142, + -0.011122658848762512, + -0.02454143390059471, + -0.007442118600010872, + 0.015100343152880669, + -0.004960286896675825, + -0.016802169382572174, + -0.0178826954215765, + 0.012317989952862263, + 0.023852597922086716, + -0.0112307108938694, + -0.007266533561050892, + 0.005753797944635153, + 0.015248915180563927, + -0.010264991782605648, + 0.008529397659003735, + 0.025027669966220856, + 0.020435437560081482, + 0.00016872657579369843, + 0.008407838642597198, + 0.03935813903808594, + 0.013925271108746529, + -0.02140790969133377, + 0.0001377036824123934, + -0.010373043827712536, + 0.003298979252576828, + -0.0018250750144943595, + 0.0248520839959383, + 0.0005288665415719151, + 0.012399028986692429, + 0.01508683618158102, + 0.026783524081110954, + -0.001814945018850267, + -0.0087252426892519, + 0.05043352395296097, + 0.036332666873931885, + 0.008961607702076435, + 0.015356967225670815, + -0.015208395197987556, + -0.016896715387701988, + -0.01843646541237831, + 0.02215077169239521, + -0.011136164888739586, + -0.014492547139525414, + 0.007063935045152903, + 0.013574101030826569, + -0.001664684503339231, + 0.019652055576443672, + 0.00436262134462595, + 0.00583146046847105, + -0.022434409707784653, + 0.020097773522138596, + -0.027647944167256355, + -0.012885265983641148, + -0.026972616091370583, + 0.024662991985678673, + 0.020327383652329445, + 0.016329441219568253, + 0.0017389706335961819, + -0.0034120967611670494, + 0.02458195388317108, + -0.028579898178577423, + 0.028823016211390495, + -0.020367903634905815, + 0.004561843350529671, + -0.014262935146689415, + -0.003206121502444148, + 0.0026776769664138556, + -0.01780165545642376, + -0.01469514612108469, + -0.006733024027198553, + 0.009265505708754063, + 0.006624971516430378, + -0.00016935970052145422, + 0.007124714553356171, + 0.11993832141160965, + 0.031713422387838364, + -0.005919253453612328, + 0.015113849192857742, + 0.0011531232157722116, + 0.018571531400084496, + 0.0185445174574852, + 0.007610951084643602, + -0.011467075906693935, + -0.06007721275091171, + 0.021259337663650513, + -0.01823386736214161, + 0.015289434231817722, + -0.016694117337465286, + 0.0033648237586021423, + 0.02382558584213257, + -0.0017474122578278184, + 0.012831239029765129, + -0.014479040168225765, + -0.00531145790591836, + 0.02367701381444931, + -0.004197165835648775, + 0.029093146324157715, + 0.03282095864415169, + -0.012128897942602634, + -0.017815163359045982, + 0.014735665172338486, + -0.0015355278737843037, + -0.003997943829745054, + 0.002652352210134268, + 0.0015465019969269633, + 0.0080634206533432, + -0.05013637989759445, + -0.021232323721051216, + 0.008752255700528622, + -0.029984580352902412, + 0.009170959703624249, + -0.0217995997518301, + 0.01000161375850439, + 0.0007610106840729713, + 0.002885340480133891, + 0.0141683891415596, + -0.006608088035136461, + -0.022326355800032616, + 0.011419802904129028, + -0.004352491348981857, + -0.012432795949280262, + -0.004355868324637413, + -0.020300371572375298 + ], + "metadata": { + "source": "Thesis_Verladegeraeusche_in_Speditionen.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 41, + "has_images": true, + "image_count": 51, + "coordinates": "CoordinatesMetadata(points=((204.16666666666666, 189.02777777777797), (204.16666666666666, 642.3611111111111), (936.1666666666666, 642.3611111111111), (936.1666666666666, 189.02777777777797)), system=)", + "links": [], + "last_modified": "2025-05-05T22:59:16", + "_known_field_names": "frozenset({'cc_recipient', 'link_texts', 'url', 'filetype', 'category_depth', 'page_number', 'filename', 'orig_elements', 'detection_origin', 'email_message_id', 'page_name', 'coordinates', 'table_as_cells', 'link_start_indexes', 'sent_to', 'bcc_recipient', 'languages', 'last_modified', 'link_urls', 'file_directory', 'subject', 'data_source', 'detection_class_prob', 'image_base64', 'text_as_html', 'attached_to_filename', 'key_value_pairs', 'signature', 'sent_from', 'header_footer_type', 'parent_id', 'links', 'emphasized_text_contents', 'emphasized_text_tags', 'image_mime_type', 'is_continuation', 'image_path'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "Thesis_Verladegeraeusche_in_Speditionen.pdf", + "detection_class_prob": 0.2568194270133972, + "parent_id": "d45475a34bc527cde6987546fa6dd2f5", + "text_as_html": "
Flurf\u00f6rderger\u00e4t |Anzahl Einzelereignisse ElMax-PegelSchallleistungspegel
LAFmaxLWA,5sLWAmaxLWA,1hKlLWAT,1h
[dB(A)][dB(A)][dB(A)][dB(A)][dB(A)][dB(A)]
Gabelstapler29769,3100,7108,872,15,777,8
STABW [dB]6,54,96,54,92,9-
Gabelhubwagen9968,6100,7108,172,16,279,5
STABW [dB]6,45,16,4512,7-
", + "id": "5ba44de7-0ff3-4c0c-b018-67e92171e1c2", + "processing_timestamp": "2025-05-06T14:18:19.298665", + "chunk_number": 24, + "total_chunks": 49, + "chunking_strategy": "hybrid", + "word_count": 462 + } +} \ No newline at end of file diff --git a/data/processed/85fd305f-83de-70b0-47e8-2dc000000025.json b/data/processed/85fd305f-83de-70b0-47e8-2dc000000025.json new file mode 100644 index 0000000000000000000000000000000000000000..282847225a7615c9c7c08aadab5a5890470ba494 --- /dev/null +++ b/data/processed/85fd305f-83de-70b0-47e8-2dc000000025.json @@ -0,0 +1,1570 @@ +{ + "id": "85fd305f-83de-70b0-47e8-2dc000000025", + "content": "Im n\u00e4chsten Schritt erfolgt die Gel\u00e4ndemodellierung, bei der die gesamte Messumge- bung virtuell nachgebildet wird. Dazu wird ein Gel\u00e4ndemodell erstellt, welche die Ge- l\u00e4ndebedingungen repr\u00e4sentiert. Dies kann durch Import von H\u00f6hendaten oder manu- elles Erstellen eines Gel\u00e4ndemodells erfolgen. Da bereits ein Gel\u00e4ndemodell eines alten Projektes f\u00fcr die Firma bestand, wurde das vorhandene Gel\u00e4ndemodell in das Projekt importiert. Als n\u00e4chstes erfolgt die Objekterstellung, bei der alle relevanten Objekte hinzugef\u00fcgt\nwerden, wie zum Beispiel die Anh\u00e4nger, Schallquellen oder Messpunkte. Die Anh\u00e4nger und die Halle wurden als Objekttyp \"Geb\u00e4ude\" modelliert, um ihre Abschirmwirkung zu ber\u00fccksichtigen. Da die Verladevorg\u00e4nge nicht station\u00e4r sind, wurden sie als Fl\u00e4chen- schallquelle modelliert, entsprechend der H\u00f6he und L\u00e4nge des jeweiligen Anh\u00e4ngers. Wenn der genaue Anh\u00e4ngertyp nicht bekannt ist, empfiehlt es sich, eine durchschnittli- che L\u00e4nge und H\u00f6he zu w\u00e4hlen. Dadurch kann eine allgemeine Darstellung des Belade- vorgangs erzielt werden. Die berechneten Kennwerte aus dem Emissionsdatenblatt wurden entsprechend eingetragen. Zus\u00e4tzlich wurde bei der Modellierung der Fl\u00e4chen- schallquelle die Option f\u00fcr den maximalen Pegel \"Gesamte Schallleistung in einem Punkt\" ausgew\u00e4hlt um die maximale Schallleistung an einem bestimmten Punkt zu er- fassen. Um die Beladevorg\u00e4nge m\u00f6glichst realit\u00e4tsgetreu nachzustellen, werden die Ta- gesabl\u00e4ufe in Ereignisse pro Stunde umgewandelt. Dabei wird der Tagesablauf anhand der gesamten Beladevorg\u00e4nge an der jeweiligen Verladezone definiert. Der Ton- und Informationszuschlag nach der DIN 415681 [19] entf\u00e4llt, da keine Einzelt\u00f6ne, bezie- hungsweise informationshaltige Ger\u00e4usche hervorkommen. Wenn alles korrekt modelliert wurde wird im Rechenkern die Berechnungseinstellungen festgelegt und im Anschluss die Berechnung auf Grundlage der TA L\u00e4rm [6] durchge- f\u00fchrt. Die Bodend\u00e4mpfung wurde nach dem Verfahren, welche in der DIN ISO 9613-2 [85] aufgezeigt ist, berechnet. 50\n6 Messauswertung und Statistik\nDas Modell ber\u00fccksichtigt somit zusammengefasst:\n- die Anteile aus Reflexionen der Schallquellen an St\u00fctzmauern, Fassaden oder an- deren Fl\u00e4chen, wurde bis zur 3. Reflexion gerechnet\n- Pegel\u00e4nderungen aufgrund des Abstandes und der Luftabsorption\n- Pegel\u00e4nderungen aufgrund der Boden- und Meteorologied\u00e4mpfung: es wird f\u00fcr die Messumgebung ein Bodenfaktor von 0,2 (0,0 = schallhart; 1,0 = schallweich) ber\u00fccksichtigt\n- Pegel\u00e4nderungen durch topographische und bauliche Gegebenheiten (Mehr- fachreflexionen und Abschirmungen)\n- einen leichten Wind, etwa 3 m/s, zum Immissionsort hin und Temperaturinver- sion, die beide die Schallausbreitung f\u00f6rdern\n- Die Minderung durch die meteorologische Korrektur Cmet wurde mit 0 dB(A) an- gesetzt\nDie Lage der L\u00e4rmquellen und der Messpunkt sind aus dem Anhang 2: Lagepl\u00e4ne zu ent- nehmen. Die Berechnung erfolgt unter Ber\u00fccksichtigung einer beg\u00fcnstigten Wettersitu- ation, der Mitwindausbreitungssituation. Bei der Berechnung eines Beurteilungspegels ist normalerweise eine meteorologische Korrektur gem\u00e4\u00df der TA L\u00e4rm [6] erforderlich. In diesem Fall entf\u00e4llt die meteorologische Korrektur, da der Abstand zwischen der Schallquelle und den Mikrofonen weniger als 200 m betr\u00e4gt. Daher ist keine Anwendung der Formel 4 der DIN 9613-2 [85] f\u00fcr die meteorologische Korrektur erforderlich. Nachdem das Programm die Parameter generiert hat, wie beispielsweise den Schall- druckpegel an den angegebenen Messpunkten, k\u00f6nnen diese Ergebnisse weiter analy- siert werden. Die Ergebnisse und dessen Erl\u00e4uterung ist in Kapitel 7.4 aufzufinden. ## 6.4 Richtcharakteristik\n\nIn Bezug auf die ermittelten Kennwerte der Verladeemissionen, kann nun die Richtcha- rakteristik der Schallquelle mithilfe des im Kapitel 2.2, beschriebene Verfahren ermittelt werden.", + "embedding": [ + 0.018149426206946373, + 0.025830594822764397, + -0.014415525831282139, + -0.02845766209065914, + -0.0009726479183882475, + 0.02468375489115715, + -0.01990969479084015, + -0.022736791521310806, + -0.015669049695134163, + -0.029791196808218956, + 0.017322635278105736, + 0.02232339419424534, + -0.021923333406448364, + 0.012548575177788734, + 0.004507352132350206, + -0.010021524503827095, + 0.033391743898391724, + -0.01068162452429533, + 0.015682384371757507, + 0.0022920153569430113, + 0.0019586312118917704, + 0.019923029467463493, + 0.004337326157838106, + -0.005617520771920681, + -0.015869081020355225, + 0.03560541570186615, + 0.02591060660779476, + -0.025430534034967422, + -0.021563278511166573, + 0.011541754938662052, + -0.01074830163270235, + -0.005297472234815359, + -0.016735877841711044, + 0.0009509779629297554, + -0.019629651680588722, + -0.002075315685942769, + -0.0069210524670779705, + -0.01232187356799841, + 0.014148818328976631, + -0.010508264414966106, + 0.0017819376662373543, + -0.005024097394198179, + 0.002595394616946578, + -0.025057144463062286, + 0.014882263727486134, + 0.006117597222328186, + 0.015522360801696777, + -0.006707686930894852, + -0.02784423530101776, + 0.0017786038806661963, + 0.011235041543841362, + 0.016202464699745178, + -0.005884228274226189, + 0.008901353925466537, + -0.005004094447940588, + -0.0062942905351519585, + -0.005984243471175432, + -0.0006175939342938364, + -0.013355364091694355, + -0.020829834043979645, + -0.03205820918083191, + -0.008147905580699444, + -0.029951222240924835, + 0.000725527002941817, + -0.03016458824276924, + -0.012668593786656857, + -0.015175641514360905, + 0.001855282112956047, + -0.022443413734436035, + -0.0014318844769150019, + 0.028697697445750237, + 0.02880438044667244, + 0.011275048367679119, + 0.01524231769144535, + 0.01840279810130596, + -0.002173663815483451, + 0.025577222928404808, + -0.008868015371263027, + 0.002685408340767026, + 0.002993788570165634, + 0.017122603952884674, + -0.03392516076564789, + -0.034431904554367065, + 0.05691532418131828, + 0.023576918989419937, + -0.009368091821670532, + 0.005884228274226189, + 0.0118884751573205, + -0.011341724544763565, + 0.004117292817682028, + 0.014655562117695808, + 0.04352661967277527, + 0.012268532067537308, + 0.012755272909998894, + 0.013722087256610394, + -0.007921204902231693, + 0.005370816681534052, + 0.025603894144296646, + 0.01351538859307766, + -0.014308842830359936, + -0.0194562915712595, + -0.005064103286713362, + -0.01037491112947464, + 0.004667376633733511, + -0.023403558880090714, + -0.001028489787131548, + 0.020416438579559326, + 0.01274193823337555, + 0.010221554897725582, + -0.012041831389069557, + -0.024670418351888657, + 0.026857417076826096, + -0.0092147346585989, + -0.005634190049022436, + 0.026737399399280548, + -0.008521296083927155, + 0.03493864834308624, + -0.013428708538413048, + -0.012041831389069557, + -0.010154877789318562, + 0.009221401996910572, + 0.015575702302157879, + 0.012801947072148323, + -0.0067343576811254025, + 0.035071998834609985, + 0.0027387498412281275, + 0.0013093658490106463, + -0.021829986944794655, + -0.02259010262787342, + -0.02409699745476246, + -0.03125808760523796, + -0.004090622067451477, + 0.018856201320886612, + 0.012535239569842815, + -0.012188520282506943, + 0.02000304125249386, + -0.03827248886227608, + 0.00862131081521511, + -0.022483419626951218, + -0.042779840528964996, + 0.012788611464202404, + 0.018549486994743347, + -0.035045329481363297, + -0.022376736626029015, + -0.003470527706667781, + 0.023190192878246307, + 0.013055318966507912, + 0.010488261468708515, + -0.0003006707411259413, + -0.008241252973675728, + -0.007567817810922861, + -0.02113654837012291, + 0.00788119900971651, + -0.006120930891484022, + -0.019216256216168404, + 0.006914385128766298, + -0.0025053811259567738, + 0.01601576991379261, + -0.009321417659521103, + -0.008754665032029152, + 0.009081381373107433, + 0.027657540515065193, + 0.014748909510672092, + 0.007994549348950386, + 0.027604198083281517, + 0.005344145931303501, + 0.004587364383041859, + -0.01072829868644476, + -0.010481594130396843, + -0.0062009431421756744, + -0.012568578124046326, + 0.019149579107761383, + -0.012961971573531628, + 0.01624247059226036, + -0.014442196115851402, + 0.01464222650974989, + 0.0021769977174699306, + -0.007594488561153412, + -0.030537977814674377, + -0.04598032683134079, + -0.034778621047735214, + -0.009674804285168648, + 0.004807397723197937, + 0.005020763725042343, + -0.019669657573103905, + 0.004210640210658312, + 0.005977575667202473, + 0.006794366519898176, + -0.01704259216785431, + -0.001114336191676557, + 0.0008709657704457641, + 0.009088048711419106, + 0.021336577832698822, + -0.026243992149829865, + -0.6268686652183533, + -0.0031588138081133366, + -0.0036372197791934013, + 0.0022220045793801546, + -0.0095547866076231, + 0.017802707850933075, + 0.01881619542837143, + -0.011288383044302464, + -0.0014818920753896236, + 0.04750055819749832, + 0.001589408377185464, + 0.013368699699640274, + -0.0009668137063272297, + 0.004960754420608282, + -0.012908630073070526, + -0.028297636657953262, + -0.013288687914609909, + -0.012381883338093758, + 0.02026974968612194, + 0.0068743787705898285, + -0.025017138570547104, + 0.006881046574562788, + 0.009714811109006405, + 0.0054841674864292145, + -0.0005855057388544083, + 0.006067589391022921, + 0.008981365710496902, + -0.009114719927310944, + 0.016695871949195862, + -0.0014868928119540215, + -0.017682690173387527, + 0.0015285657718777657, + -0.02928445301949978, + 0.016549183055758476, + 0.036938950419425964, + -0.009941511787474155, + -0.003647221252322197, + 0.01913624443113804, + 0.010221554897725582, + 0.007041070610284805, + -0.0030754676554352045, + -0.006801034323871136, + -0.008194579742848873, + 0.008074561133980751, + 0.007101079914718866, + -0.005834220442920923, + 0.034911975264549255, + -0.008421280421316624, + 0.002882105065509677, + -0.026537369936704636, + 0.0073144459165632725, + 0.002768754493445158, + 0.0196829941123724, + 0.01322867814451456, + 0.03203153982758522, + -0.005934235639870167, + 0.03160480782389641, + -0.014668897725641727, + -0.02158994972705841, + 0.015669049695134163, + 0.0016877566231414676, + 0.006127598695456982, + -0.0005404988769441843, + -0.027657540515065193, + -0.019763005897402763, + 0.004514019936323166, + -0.014762245118618011, + -0.03064466081559658, + 0.020029712468385696, + -0.0300312340259552, + -0.02816428244113922, + 0.036458879709243774, + -0.009721478447318077, + -0.015055622905492783, + 0.022763462737202644, + 0.02928445301949978, + 0.01649584248661995, + -0.02074982225894928, + 0.004077286925166845, + 0.024056991562247276, + 0.0010985004482790828, + -0.01034157257527113, + -0.012808614410459995, + 0.00030546312336809933, + 0.010975002311170101, + -0.022603437304496765, + -0.02042977325618267, + 0.0023320212494581938, + 0.008081229403614998, + 0.012888627126812935, + 0.01269526407122612, + 0.028564345091581345, + -0.019389616325497627, + -0.018669506534934044, + -0.02072315104305744, + 0.03128475695848465, + -0.01897621899843216, + 0.02503047324717045, + -0.017642682418227196, + -0.03328506276011467, + -0.022670114412903786, + -0.004667376633733511, + 0.01833612285554409, + -0.01243522483855486, + 0.02477710135281086, + 0.0016494175652042031, + -0.031498122960329056, + 0.015829073265194893, + 0.025403862819075584, + -0.019989706575870514, + -0.00010751635272754356, + -0.017149275168776512, + -0.017682690173387527, + -0.006881046574562788, + -0.015295659191906452, + -0.02580392360687256, + 0.036005474627017975, + 0.00023961978149600327, + 0.02577725425362587, + -0.0055175055749714375, + 0.0179760679602623, + 0.003167148446664214, + 0.0329916849732399, + -0.015429013408720493, + -0.02568390592932701, + 0.030724672600626945, + 0.019056230783462524, + 0.014322178438305855, + 0.005934235639870167, + -0.01576239801943302, + 0.008674652315676212, + 0.01100167352706194, + 0.01594909280538559, + -0.0191095732152462, + 0.0106349503621459, + 0.018349457532167435, + 0.023150186985731125, + -0.014308842830359936, + 0.01129505131393671, + -0.02487044967710972, + -0.02049645036458969, + -0.0035472060553729534, + 0.009461439214646816, + -0.02625732682645321, + -0.009468106552958488, + -0.03080468438565731, + -0.013121996074914932, + 0.018576158210635185, + -0.004554025828838348, + -0.0023803620133548975, + -0.0007130251033231616, + -0.02623065561056137, + -0.003667224431410432, + 0.03096470981836319, + 0.0016060775378718972, + 0.014042135328054428, + -0.0007313612150028348, + -0.01232187356799841, + 0.0006117597222328186, + -0.011828465387225151, + 0.013682080432772636, + 0.00840794574469328, + -0.05616854131221771, + -0.016055775806307793, + -0.0018019407289102674, + -0.029791196808218956, + 0.001584407640621066, + -0.002612063894048333, + -0.03144478052854538, + -0.03219156339764595, + 0.010288231074810028, + 0.006514323875308037, + -0.008274591527879238, + 0.018002737313508987, + -0.011901809833943844, + 0.0003667224373202771, + -0.023350218310952187, + -0.020576462149620056, + -0.018389463424682617, + -0.015415677800774574, + 0.006160936783999205, + -0.013408705592155457, + -0.014268836937844753, + -0.007807854097336531, + 0.010161545127630234, + 0.007581152953207493, + 0.02042977325618267, + -0.00254205334931612, + -0.01749599352478981, + 0.04643372818827629, + -0.004217308014631271, + 0.03421853855252266, + -0.018602829426527023, + 0.014615556225180626, + -0.02181665040552616, + -0.004434007685631514, + 0.005917566828429699, + -0.004150631371885538, + 0.0009351422195322812, + 0.016695871949195862, + 0.02464374713599682, + 0.013375367969274521, + 0.031151404604315758, + -0.00889468565583229, + 0.019056230783462524, + -0.01470890361815691, + 0.014322178438305855, + -0.009941511787474155, + 0.040779534727334976, + 0.02677740529179573, + 0.009154725819826126, + -0.007294442504644394, + -0.037072304636240005, + -0.0023786951787769794, + 0.014695568010210991, + 0.03688560798764229, + -0.008594640530645847, + 0.004960754420608282, + 0.007614491507411003, + 0.012868624180555344, + 0.0014843924436718225, + 0.003133809892460704, + 0.04336659610271454, + 0.0150156170129776, + -0.0013693749206140637, + 0.0003102555056102574, + -0.014668897725641727, + 0.006254284642636776, + 0.0023570251651108265, + -0.005680863745510578, + -0.0047673918306827545, + -0.0039439331740140915, + 0.007487805560231209, + 0.004567361436784267, + 0.014268836937844753, + 0.006410975009202957, + 0.01322867814451456, + 0.007294442504644394, + 0.033205050975084305, + 0.006257618311792612, + 0.008007884956896305, + 0.017989402636885643, + -0.0007342783501371741, + -0.000502993178088218, + 0.01585574448108673, + -0.020629804581403732, + 0.01190847810357809, + 0.030537977814674377, + -0.005824218969792128, + -0.010301566682755947, + -0.01190847810357809, + -0.0065376609563827515, + -0.011188368313014507, + -0.017055926844477654, + 0.009434767998754978, + -0.013842104934155941, + 0.025897271931171417, + -0.007801186293363571, + 0.0092147346585989, + 0.020536456257104874, + 0.0027220805641263723, + 0.002882105065509677, + 0.006774363573640585, + -0.026857417076826096, + 0.016802554950118065, + 0.014255501329898834, + -0.036778926849365234, + -0.019416285678744316, + -0.01758934184908867, + -0.001048492849804461, + 0.0015077292919158936, + 0.011181700974702835, + -0.007647829595953226, + 0.015455683693289757, + 0.013422041200101376, + -0.01153508760035038, + -0.017349304631352425, + 0.03019125759601593, + 0.03192485496401787, + -0.009121387265622616, + -0.010948332026600838, + -0.010661621578037739, + -0.015669049695134163, + 0.022883480414748192, + -0.014055470936000347, + -0.006367634981870651, + -0.014802251011133194, + 0.004630704410374165, + -0.017002586275339127, + -0.007921204902231693, + -0.017776036635041237, + -0.00402727909386158, + 0.0014585551107302308, + -0.019869688898324966, + 0.00423064362257719, + 0.008854679763317108, + 0.014588885009288788, + 0.013041983358561993, + -0.015135635621845722, + 0.038032449781894684, + 0.006094260141253471, + -0.008948027156293392, + -0.0007984547410160303, + -0.03883257135748863, + 0.02010972425341606, + 0.004847404081374407, + -0.006570999510586262, + -0.017736030742526054, + -0.00692772027105093, + -0.0343518927693367, + -0.03192485496401787, + 0.008814673870801926, + -0.003883924102410674, + -0.004560693632811308, + -0.014148818328976631, + -0.011288383044302464, + 0.01592242158949375, + -0.012781944125890732, + 0.048087313771247864, + 0.0027120790909975767, + 0.006467650178819895, + -0.017189281061291695, + -0.006234281696379185, + 0.01592242158949375, + -0.002282013650983572, + 0.015469019301235676, + 0.010668288916349411, + 0.021856658160686493, + -0.021376583725214005, + -0.020483115687966347, + -0.004637371748685837, + -0.03168481960892677, + 0.004133962094783783, + 0.013435376808047295, + -0.006744359154254198, + 0.008841345086693764, + 0.021669961512088776, + -0.003950600977987051, + 0.0005442494293674827, + -0.013935452327132225, + 0.021403254941105843, + -0.012275200337171555, + 0.019229590892791748, + 0.0039005931466817856, + -0.015682384371757507, + -0.00958812516182661, + 0.008301262743771076, + 0.039712704718112946, + 0.00042131406371481717, + -0.013762093149125576, + 0.01030823402106762, + 0.01016821339726448, + 0.013148666359484196, + -0.026817411184310913, + 0.0017952730413526297, + 0.02529717981815338, + -0.008347935974597931, + 0.017616013064980507, + -0.007934540510177612, + -0.005144115537405014, + 0.007694503758102655, + -0.018002737313508987, + 0.01717594638466835, + -0.020216407254338264, + -0.003463860135525465, + 0.014908934012055397, + 0.014762245118618011, + 0.004040614701807499, + 0.008067893795669079, + 0.006070923060178757, + 0.013415373861789703, + 0.00696105882525444, + 0.0012126844376325607, + -0.00832793302834034, + -0.003503866260871291, + -0.026564039289951324, + -0.004910747054964304, + -0.005607519298791885, + -0.005750874523073435, + -0.023563584312796593, + 0.011255045421421528, + -0.03195152431726456, + -0.005790880881249905, + -0.0026737400330603123, + -0.049767568707466125, + -0.014855592511594296, + 0.01665586605668068, + 4.956483098794706e-05, + -0.034885305911302567, + 0.007007732521742582, + -0.01000152062624693, + -0.0011026676511391997, + -0.02200334705412388, + 0.006464316509664059, + 0.014828922227025032, + -0.018216103315353394, + -0.03619217127561569, + -0.00924807321280241, + 0.015148970298469067, + 0.0011818463681265712, + 0.008901353925466537, + 0.0073944577015936375, + -0.00488074216991663, + -0.0068277050741016865, + -0.027950918301939964, + -0.006154269445687532, + -0.011368395760655403, + -0.018709512427449226, + -0.024016985669732094, + 0.02845766209065914, + -0.01929626800119877, + 0.002820428926497698, + -0.005537508986890316, + 0.017255958169698715, + -0.02368360199034214, + 0.027950918301939964, + 0.0007588653825223446, + 0.0021319908555597067, + -0.00344719085842371, + 0.01524231769144535, + -0.005377484485507011, + 0.01408214122056961, + 0.010468258522450924, + -0.016989249736070633, + 0.009154725819826126, + -0.029924551025032997, + -0.006287622731178999, + -0.006681016180664301, + 0.021416589617729187, + -0.005554178263992071, + -0.0106349503621459, + 0.002748751314356923, + 0.002483711112290621, + 0.008507960475981236, + 0.004247312434017658, + -0.017309298738837242, + 0.01440219022333622, + -0.00045298555050976574, + -0.012201855890452862, + -0.00018554905545897782, + 0.003082135459408164, + 0.012581913731992245, + 0.01656251959502697, + 0.008928024210035801, + 0.008587973192334175, + -0.03851252421736717, + 0.044353410601615906, + 0.021389920264482498, + -0.019642988219857216, + 0.046220362186431885, + -0.01949629932641983, + 0.02300349809229374, + -0.02893773466348648, + -0.00501742959022522, + 0.0027137461584061384, + 0.013735421933233738, + 0.006454315036535263, + -0.01090832520276308, + -0.01378876343369484, + -0.009921508841216564, + 0.01868284121155739, + 0.013602068647742271, + -0.01006819773465395, + 0.0018952882383018732, + -0.011388398706912994, + 0.017829379066824913, + -0.01100167352706194, + 0.015695720911026, + 0.00010949582065222785, + -0.026377344503998756, + -0.02771088108420372, + 0.03331173211336136, + -0.005567513406276703, + 0.04024612158536911, + -0.03099137917160988, + -0.0020686478819698095, + -0.019803011789917946, + -0.01804274320602417, + -0.0052874707616865635, + -0.031204745173454285, + 0.007354451809078455, + -0.012668593786656857, + -0.002300349762663245, + 0.007567817810922861, + 0.03099137917160988, + -0.0017335970187559724, + 0.01594909280538559, + 0.0005855057388544083, + -0.015602372586727142, + 0.006777697242796421, + -0.027284149080514908, + -0.01464222650974989, + -0.03328506276011467, + 0.02955116145312786, + 0.01190847810357809, + 0.008047890849411488, + 0.0001587741426192224, + -0.003760571824386716, + 0.00488074216991663, + 0.05107443407177925, + -0.000804289011284709, + -0.010201551951467991, + -0.005020763725042343, + -0.01881619542837143, + -0.007414461113512516, + 0.006534327287226915, + 0.011648437939584255, + 0.013935452327132225, + -0.014068806543946266, + 0.0023603590670973063, + 0.001966965850442648, + -0.01204849872738123, + -0.0015827406896278262, + -0.014668897725641727, + 0.012521903961896896, + -0.03933931514620781, + 0.03331173211336136, + -0.00047507224371656775, + 0.015455683693289757, + -0.004944085143506527, + -0.0011335057206451893, + -0.015442348085343838, + -0.023350218310952187, + 0.013315358199179173, + -0.005434159655123949, + 0.006104261614382267, + -0.006357633508741856, + -0.011941815726459026, + -0.000838044099509716, + -0.008948027156293392, + 0.02100319415330887, + -0.029044417664408684, + -0.0017502661794424057, + -0.02459040656685829, + -0.03664557263255119, + -0.025723911821842194, + 0.004394001793116331, + -0.012401886284351349, + 0.025123821571469307, + 0.010921660810709, + 0.015829073265194893, + 0.029951222240924835, + -0.014935605227947235, + 0.007061074022203684, + 0.023776950314641, + -0.02026974968612194, + 0.03979272022843361, + 0.0015827406896278262, + 0.02912442944943905, + 0.014855592511594296, + -0.0133086908608675, + -0.023416895419359207, + -0.04726051911711693, + 0.014668897725641727, + -0.0031621474772691727, + 0.019096236675977707, + 0.00032650798675604165, + 0.0021586616057902575, + -0.0045240214094519615, + 0.0286710262298584, + 0.019082901999354362, + -0.01061494741588831, + -0.012268532067537308, + 0.042966533452272415, + 0.01153508760035038, + 0.003130475990474224, + -0.015295659191906452, + -0.00013022814528085291, + -0.018469475209712982, + -0.011555090546607971, + -0.004153965041041374, + -0.0029821202624589205, + -0.0019302935106679797, + -0.0052274614572525024, + -0.012055166997015476, + 0.05702200531959534, + 0.003957268316298723, + 0.008527963422238827, + 0.018056079745292664, + -0.026604045182466507, + 0.010814977809786797, + -0.027310820296406746, + -0.01562904380261898, + 0.017215952277183533, + -0.02177664451301098, + 0.02564390003681183, + -0.0013227011077106, + -0.017522664740681648, + 0.011475078761577606, + 0.0098414970561862, + -0.007274439558386803, + -0.004130628425627947, + 0.004390667658299208, + 0.024857113137841225, + -0.013708751648664474, + 0.008047890849411488, + 0.007374454755336046, + 0.006604337599128485, + 0.015055622905492783, + 0.023376887664198875, + -0.003560541430488229, + -0.00043631636071950197, + -0.00024253688752651215, + -0.00890802126377821, + -0.0014368852134793997, + 0.009581456892192364, + -0.015042287297546864, + -0.01585574448108673, + -0.006390972062945366, + -0.013195340521633625, + 0.003713898127898574, + -0.012521903961896896, + 0.00048173993127420545, + -0.031391441822052, + -0.009628131054341793, + -0.0003685977135319263, + -0.008994701318442822, + 0.021963341161608696, + -0.0077878511510789394, + -0.029444478452205658, + 0.0002504547592252493, + 0.03195152431726456, + -0.039552681148052216, + 0.011528420262038708, + 0.026043960824608803, + -0.008654649369418621, + -0.009321417659521103, + 0.005137448199093342, + 0.009534783661365509, + -0.018896207213401794, + 0.023670267313718796, + -0.006941055413335562, + -0.0255905594676733, + -0.01327535230666399, + 0.015055622905492783, + 0.005787546746432781, + -0.02236340194940567, + -0.014788915403187275, + 0.01293530035763979, + 0.011915145441889763, + 0.002635400742292404, + -0.012588581070303917, + 0.005697533022612333, + 0.0032971680629998446, + 0.036912281066179276, + -0.0027404166758060455, + 0.01301531307399273, + -0.007854527793824673, + 0.026857417076826096, + 0.010554938577115536, + -0.01581573858857155, + 0.001541067729704082, + -0.03331173211336136, + -0.019482962787151337, + 0.024670418351888657, + 0.009948180057108402, + -0.0195629745721817, + 0.008721326477825642, + -0.022883480414748192, + -0.023563584312796593, + -0.007487805560231209, + 0.004170634318143129, + -0.005660860799252987, + 0.021056536585092545, + 0.018762852996587753, + 0.015802403911948204, + -0.00860130786895752, + 0.031498122960329056, + -0.0032905004918575287, + -0.01392211765050888, + 0.01781604252755642, + 0.012635255232453346, + -0.04184636473655701, + 0.005204124841839075, + -0.026764070615172386, + 0.04488682746887207, + 0.028991075232625008, + -0.022083358839154243, + -0.013248682022094727, + 0.008447951637208462, + -0.032564952969551086, + -0.019629651680588722, + -0.012875291518867016, + 0.0035238692071288824, + -0.00926140882074833, + 0.0133086908608675, + -0.02771088108420372, + 0.04021944850683212, + -0.009608128108084202, + 0.022870145738124847, + -0.022496754303574562, + -0.01174178533256054, + -0.00532414298504591, + -0.0019036228768527508, + 0.0208164993673563, + 0.0038805902004241943, + -0.032298244535923004, + 0.0026454022154212, + 0.023216864094138145, + -0.007861195132136345, + 0.03152479603886604, + 0.02010972425341606, + -0.0021103208418935537, + -0.03301835432648659, + 0.007921204902231693, + 0.007667833007872105, + 0.021216560155153275, + 0.005310807842761278, + -0.0023153522051870823, + -0.017029255628585815, + 0.0037272335030138493, + 0.013668745756149292, + 0.014722239226102829, + -0.019442956894636154, + -0.012228526175022125, + 0.021709969267249107, + -0.00836127158254385, + -0.016362488269805908, + 0.03077801503241062, + -0.01884286478161812, + -0.0033205049112439156, + -0.028564345091581345, + 0.04611368104815483, + 0.01177512388676405, + -0.023496907204389572, + 0.007387790363281965, + 0.005417490378022194, + -0.014522208832204342, + -0.03077801503241062, + 0.00962146371603012, + -0.014668897725641727, + 0.0027770891319960356, + -1.3016302546020597e-05, + -0.018376128748059273, + 0.02912442944943905, + -0.011441740207374096, + -0.0003133809950668365, + -0.017322635278105736, + -0.0006788532482460141, + -0.017282627522945404, + -0.007687835954129696, + -0.029604502022266388, + 0.028137613087892532, + 0.03752570599317551, + -0.021376583725214005, + 0.009741481393575668, + -0.01074830163270235, + 0.002257009968161583, + -0.011728450655937195, + -0.022496754303574562, + -0.012581913731992245, + -0.039872732013463974, + -0.008954695425927639, + 0.013975459150969982, + -0.020536456257104874, + 0.007041070610284805, + 0.004253980237990618, + -0.014242165721952915, + -0.017509330064058304, + 0.001117669977247715, + 0.200670525431633, + -0.02973785623908043, + -0.013868776150047779, + -0.0005842554965056479, + -0.01884286478161812, + -0.029497819021344185, + 0.019803011789917946, + 0.014602220617234707, + 0.020509785041213036, + 0.03416519612073898, + 0.014895598404109478, + 0.005237463396042585, + 0.025883937254548073, + 0.006671014707535505, + 0.014788915403187275, + -0.01681589148938656, + -0.027630869299173355, + -0.0047207181341946125, + 0.0052874707616865635, + 0.028377648442983627, + 0.03808579221367836, + -0.02220337651669979, + -0.0014893931802362204, + -0.027284149080514908, + 0.05384818837046623, + 0.0007059407071210444, + 0.0015977430157363415, + 0.009601459838449955, + 0.03805912286043167, + 0.019602980464696884, + -0.021696632727980614, + 0.010848316363990307, + 0.02555055171251297, + -0.01601576991379261, + -0.015162305906414986, + 0.002096985699608922, + 0.0045240214094519615, + -0.01649584248661995, + 0.030617989599704742, + 0.03485863655805588, + 0.014855592511594296, + -0.019162913784384727, + -0.02161662094295025, + -0.02129657194018364, + 0.013215343467891216, + 0.014922269620001316, + -0.010014856234192848, + 0.007227765861898661, + 0.011668440885841846, + -0.004360663238912821, + -0.009321417659521103, + 0.0013110326835885644, + 0.015002281405031681, + 0.0325382836163044, + 0.004990758839994669, + -0.025563888251781464, + -0.0026003955863416195, + -0.015895750373601913, + 0.014842256903648376, + 0.008707990869879723, + -0.05670195817947388, + 0.02368360199034214, + -0.017736030742526054, + 0.02029642090201378, + -0.023336881771683693, + -0.016522513702511787, + -0.019349608570337296, + 0.006290956865996122, + 0.00045048518222756684, + -0.023510241881012917, + -0.004190637264400721, + -0.006227613892406225, + -0.022963492199778557, + 0.011788459494709969, + -0.03035128302872181, + -0.03293834254145622, + 0.0022936821915209293, + 0.01238855067640543, + 0.04091288894414902, + 0.029044417664408684, + -0.007261104416102171, + 0.011901809833943844, + -0.0005821718950755894, + -0.02519049681723118, + -0.0005309140542522073, + -0.021443260833621025, + 0.031018050387501717, + -0.009301414713263512, + -0.004153965041041374, + -0.014868928119540215, + -0.021016528829932213, + 0.0013985460391268134, + 0.007607823703438044, + -0.00165525171905756, + 0.00692772027105093, + 0.006357633508741856, + 0.0015235650353133678, + -0.002015306381508708, + -0.005977575667202473, + 0.0027620866894721985, + -0.02516382746398449, + 0.05622188374400139, + 0.05339478701353073, + -0.02006971836090088, + 0.0022886814549565315, + 0.012788611464202404, + 0.003770573530346155, + 0.017922725528478622, + 0.0019569643773138523, + -0.006057587917894125, + -0.008928024210035801, + -0.0316314771771431, + 0.02094985358417034, + -0.020403103902935982, + 0.007841192185878754, + 0.015148970298469067, + 0.012101840227842331, + -0.0040839542634785175, + 0.005034098867326975, + -0.0059575727209448814, + -0.010761636309325695, + 0.010628283023834229, + 0.011781792156398296, + 0.004147297237068415, + 0.0212699007242918, + -0.034618597477674484, + -0.01952296867966652, + 0.0177493654191494, + -0.002325353678315878, + 0.0026737400330603123, + 0.017349304631352425, + -0.014015465043485165, + 0.01594909280538559, + 0.007107747718691826, + 0.01749599352478981, + -0.003333840286359191, + -0.011641770601272583, + -0.040512826293706894, + -0.007034403271973133, + 0.02033642679452896, + 0.02129657194018364, + -0.001921958988532424, + 0.011848468333482742, + 0.0064009735360741615, + 0.010161545127630234, + 0.0066910176537930965, + 0.018322786316275597, + -0.002567057032138109, + -0.03608548641204834, + -0.03635219484567642, + -0.0229768268764019, + -0.007447799202054739, + 0.00862131081521511, + -0.03035128302872181, + 0.019162913784384727, + -0.0011793459998443723, + -0.017762701958417892, + -0.0318448431789875, + 0.005900897551327944, + 0.0002817095082718879, + -0.018922878429293633, + -0.02284347452223301, + -0.007714506704360247, + -0.005410823039710522, + 0.006784365046769381, + -0.003600547555834055, + -0.16887901723384857, + 0.01232187356799841, + 0.029204441234469414, + -0.0398193895816803, + 0.016255805268883705, + -0.003983939066529274, + 0.01576239801943302, + 0.027737552300095558, + -0.021016528829932213, + -0.012848620302975178, + 0.026630716398358345, + 0.004987425170838833, + -0.030004562810063362, + -0.019576311111450195, + -0.007821189239621162, + 0.007147753611207008, + -0.016869232058525085, + 0.018282780423760414, + 0.025057144463062286, + 0.01997637189924717, + -0.0010801642201840878, + -0.0359521359205246, + 0.004357329569756985, + 0.012821950018405914, + -0.007967878133058548, + 0.011681776493787766, + -0.0038339165039360523, + 0.03579210862517357, + -0.02864435687661171, + -0.020216407254338264, + -0.009994853287935257, + -0.00603425083681941, + 0.0025970616843551397, + 0.0020169734489172697, + -0.0003604714875109494, + -0.010094868950545788, + 0.001831945264711976, + -0.015589037910103798, + -0.0017135939560830593, + 0.013895446434617043, + 0.004727385472506285, + 0.015455683693289757, + -0.02190999872982502, + 0.030084574595093727, + -0.009661469608545303, + 0.022563431411981583, + 0.027217471972107887, + -0.011028343811631203, + -0.002440371084958315, + -0.012035164050757885, + 0.00515411701053381, + -0.01617579348385334, + -0.011528420262038708, + 0.00986150000244379, + -0.002327020512893796, + 0.027310820296406746, + -0.008814673870801926, + 0.015362336300313473, + 0.0027604198548942804, + 0.001143507193773985, + -0.016002433374524117, + -0.01890954189002514, + 0.015535696409642696, + -0.001612745225429535, + -0.01720261573791504, + -0.02029642090201378, + 0.00897469837218523, + 0.0235502477735281, + -0.021549943834543228, + -0.01116169709712267, + 0.004487349186092615, + -0.025790588930249214, + 0.003817247226834297, + 0.007954543456435204, + 0.010894990526139736, + 0.010248225182294846, + -0.0020019712392240763, + 0.0008542966097593307, + 0.0011493414640426636, + -0.015349000692367554, + -0.013095324859023094, + 0.05110110342502594, + -0.011461743153631687, + -0.022350065410137177, + -0.009768152609467506, + -0.005420824512839317, + -0.016135787591338158, + 0.023056840524077415, + -0.0068277050741016865, + 0.00447067990899086, + 0.0031371437944471836, + -0.030457966029644012, + -0.004960754420608282, + -0.027470843866467476, + 0.004107291344553232, + -0.004404003266245127, + 0.0030271271243691444, + 0.004177302122116089, + -0.02407032810151577, + 0.004747388884425163, + 0.015108964405953884, + -0.011575093492865562, + -0.02413700334727764, + 0.011735117994248867, + -0.0021119879093021154, + 0.003017125418409705, + -0.016669202595949173, + 0.010208219289779663, + 0.04067285358905792, + -0.010928329080343246, + -0.013722087256610394, + -0.013735421933233738, + 0.024950461462140083, + -0.0018852867651730776, + -0.0003042129392269999, + 0.011508417315781116, + -0.0017702692421153188, + -0.014682233333587646, + 0.004557359963655472, + 0.01576239801943302, + 0.04317989945411682, + -0.0208164993673563, + 0.005787546746432781, + 0.005177454091608524, + -0.008607976138591766, + -0.03805912286043167, + -0.09084048122167587, + -0.00019805095507763326, + 0.015429013408720493, + 0.008127902634441853, + 0.0051507833413779736, + 0.022283388301730156, + 0.014962275512516499, + -0.015402342192828655, + 0.004347327630966902, + 0.032591622322797775, + -0.02893773466348648, + -0.034885305911302567, + -0.018736183643341064, + -0.016935909166932106, + 0.01742931827902794, + -0.0235502477735281, + -0.0025337187107652426, + -0.011268380098044872, + -0.012501901015639305, + 0.03512534126639366, + -0.0012910296209156513, + -0.014962275512516499, + 0.006174272391945124, + -0.009721478447318077, + 0.001074330066330731, + 0.010501597076654434, + -0.04107291251420975, + 0.004243978764861822, + 0.01597576215863228, + 0.0015569034731015563, + 0.016989249736070633, + -0.029791196808218956, + 0.0010684957960620522, + -0.014802251011133194, + -0.01940295100212097, + -0.005610853433609009, + -0.0088746827095747, + -0.0039439331740140915, + 0.026990771293640137, + -0.014588885009288788, + 0.011575093492865562, + 0.011781792156398296, + -0.0007276106625795364, + -0.01829611510038376, + 0.0003575543814804405, + -0.0252571739256382, + -0.02464374713599682, + 0.03627218306064606, + -0.0055908504873514175, + -0.0020619803108274937, + -0.026724064722657204, + -0.030858026817440987, + -0.022803468629717827, + 0.02042977325618267, + 0.018389463424682617, + -0.005474166013300419, + -0.004730719607323408, + 0.0032971680629998446, + -0.01872284710407257, + 0.011008340865373611, + -0.03808579221367836, + 0.02227005362510681, + -0.029311124235391617, + 0.01890954189002514, + -0.008487957529723644, + -0.006907717324793339, + -0.015402342192828655, + 0.004263981711119413, + 0.019602980464696884, + 0.004854071419686079, + -0.025737248361110687, + 0.011355060152709484, + 0.0026520700193941593, + -0.011655106209218502, + -0.014975611120462418, + -0.005884228274226189, + -0.03533870726823807, + -0.0026504031848162413, + 0.009914841502904892, + -0.0068143694661557674, + 0.0068743787705898285, + -0.0354987308382988, + 0.03099137917160988, + -0.021549943834543228, + 0.03760571777820587, + 0.015509025193750858, + 0.009821494109928608, + -0.02397697977721691, + 0.01826944574713707, + -0.018669506534934044, + -0.015375671908259392, + 0.027950918301939964, + 0.018056079745292664, + -0.004677378106862307, + -0.014122148044407368, + 0.009274743497371674, + 0.007354451809078455, + 0.01640249416232109, + -0.00689438171684742, + 0.014268836937844753, + -0.013055318966507912, + -0.010554938577115536, + -0.04040614515542984, + 0.017709359526634216, + 0.035845451056957245, + -0.0008026220602914691, + -0.009001368656754494, + -0.011768456548452377, + -0.0011276714503765106, + 0.014522208832204342, + 0.016709208488464355, + 0.004937417339533567, + -0.014522208832204342, + 0.01130838692188263, + -0.009628131054341793, + -0.010201551951467991, + -0.03496531769633293, + -0.027737552300095558, + -0.005360815208405256, + 0.015188977122306824, + -0.0017902723047882318, + -0.01266192551702261, + -0.01532233040779829, + 0.004217308014631271, + -0.0011768456315621734, + 0.027817564085125923, + -0.028297636657953262, + -0.0060975938104093075, + -0.016282476484775543, + 0.008607976138591766, + -0.017962731420993805, + -0.014015465043485165, + 0.008074561133980751, + 0.004987425170838833, + -0.007227765861898661, + 0.023923639208078384, + -0.005954239051789045, + -0.016215799376368523, + 0.013141999021172523, + 0.03547206148505211, + 0.023083509877324104, + 0.047927290201187134, + -0.006570999510586262, + -0.025283845141530037, + -0.0033171712420880795, + -0.0212699007242918, + 0.0052274614572525024, + 0.007667833007872105, + 0.01259524840861559, + -0.0019186250865459442, + -0.0020736486185342073, + -0.020349761471152306, + 0.05294138565659523, + 0.01408214122056961, + 0.013748757541179657, + -0.010628283023834229, + -0.0023520244285464287, + 0.0026937429793179035, + 0.01597576215863228, + 0.0026420685462653637, + 0.0013460380723699927, + -0.027217471972107887, + 0.043606631457805634, + 0.010088200680911541, + -0.0002960866841021925, + -0.014322178438305855, + -0.009441436268389225, + -0.01032823696732521, + -0.03312503919005394, + 0.002081983257085085, + 0.000312130810925737, + -0.01924292743206024, + -0.028084270656108856, + -0.0029854539316147566, + 0.02158994972705841, + 0.03736568242311478, + -0.01470890361815691, + -0.016055775806307793, + -0.003600547555834055, + 0.012775275856256485, + 0.0030487969052046537, + 0.02500380203127861, + 0.03277831897139549, + 0.02529717981815338, + 0.0003390098863746971, + 0.012461895123124123, + 0.033338405191898346, + 0.0008101232233457267, + -0.002638734644278884, + -0.010234889574348927, + -0.010268228128552437, + -0.003550539957359433, + 0.00013908365508541465, + 0.027950918301939964, + 0.017989402636885643, + 0.00962146371603012, + 0.01446886733174324, + 0.0053941537626087666, + 0.013168669305741787, + -0.010028191842138767, + 0.04691380262374878, + 0.04269982874393463, + 0.004010609816759825, + 0.009061378426849842, + 0.005224127788096666, + -0.04766058176755905, + -0.011915145441889763, + 0.017936060205101967, + -0.030377954244613647, + -0.03395183011889458, + 0.006947723217308521, + 0.027470843866467476, + -0.01884286478161812, + 0.003058798611164093, + 0.014868928119540215, + 0.007447799202054739, + -0.0088746827095747, + 0.014935605227947235, + -0.025110485032200813, + -0.01981634646654129, + -0.022243382409214973, + 0.03221823275089264, + 0.02616397850215435, + -0.0028754372615367174, + 0.003953934647142887, + -0.00022003345657140017, + 0.02097652293741703, + -0.0018936212873086333, + 0.012015161104500294, + -0.009101384319365025, + 0.006811035796999931, + -0.0135954013094306, + 0.00926140882074833, + 0.008574637584388256, + -0.00406061764806509, + -0.01332202646881342, + -0.017909390851855278, + -0.005110777448862791, + 0.015469019301235676, + 0.0055775148794054985, + 0.0038705887272953987, + 0.12545907497406006, + 0.03235158696770668, + -0.00019825932395178825, + 0.01849614642560482, + -0.005414156708866358, + 0.038192473351955414, + 0.01965632289648056, + 0.0033171712420880795, + 0.003643887583166361, + -0.05283470079302788, + 0.02407032810151577, + -0.008381274528801441, + 0.005650859326124191, + -0.02848433144390583, + -0.011715115047991276, + 0.021896664053201675, + -0.0055775148794054985, + 0.01470890361815691, + -0.020403103902935982, + 0.0058075496926903725, + 0.023670267313718796, + -0.023150186985731125, + 0.018936213105916977, + 0.03632552549242973, + -0.021576615050435066, + -0.011241709813475609, + 0.02200334705412388, + 0.010194883681833744, + -0.0038772562984377146, + -0.012708599679172039, + -0.0004563193942885846, + 0.014828922227025032, + -0.05462164059281349, + -0.024056991562247276, + 0.0030337946955114603, + -0.03221823275089264, + -0.003917262423783541, + -0.03312503919005394, + 0.0174026470631361, + 0.012608584016561508, + 0.018549486994743347, + 0.00962146371603012, + -0.014802251011133194, + -0.032271575182676315, + -0.001386877615004778, + 0.01717594638466835, + 0.004424006212502718, + -0.008181244134902954, + -0.021083205938339233 + ], + "metadata": { + "source": "Thesis_Verladegeraeusche_in_Speditionen.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 41, + "has_images": true, + "image_count": 51, + "coordinates": "CoordinatesMetadata(points=((204.16666666666666, 189.02777777777797), (204.16666666666666, 642.3611111111111), (936.1666666666666, 642.3611111111111), (936.1666666666666, 189.02777777777797)), system=)", + "links": [], + "last_modified": "2025-05-05T22:59:16", + "_known_field_names": "frozenset({'cc_recipient', 'link_texts', 'url', 'filetype', 'category_depth', 'page_number', 'filename', 'orig_elements', 'detection_origin', 'email_message_id', 'page_name', 'coordinates', 'table_as_cells', 'link_start_indexes', 'sent_to', 'bcc_recipient', 'languages', 'last_modified', 'link_urls', 'file_directory', 'subject', 'data_source', 'detection_class_prob', 'image_base64', 'text_as_html', 'attached_to_filename', 'key_value_pairs', 'signature', 'sent_from', 'header_footer_type', 'parent_id', 'links', 'emphasized_text_contents', 'emphasized_text_tags', 'image_mime_type', 'is_continuation', 'image_path'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "Thesis_Verladegeraeusche_in_Speditionen.pdf", + "detection_class_prob": 0.2568194270133972, + "parent_id": "d45475a34bc527cde6987546fa6dd2f5", + "text_as_html": "
Flurf\u00f6rderger\u00e4t |Anzahl Einzelereignisse ElMax-PegelSchallleistungspegel
LAFmaxLWA,5sLWAmaxLWA,1hKlLWAT,1h
[dB(A)][dB(A)][dB(A)][dB(A)][dB(A)][dB(A)]
Gabelstapler29769,3100,7108,872,15,777,8
STABW [dB]6,54,96,54,92,9-
Gabelhubwagen9968,6100,7108,172,16,279,5
STABW [dB]6,45,16,4512,7-
", + "id": "5ba44de7-0ff3-4c0c-b018-67e92171e1c2", + "processing_timestamp": "2025-05-06T14:18:19.298665", + "chunk_number": 25, + "total_chunks": 49, + "chunking_strategy": "hybrid", + "word_count": 510 + } +} \ No newline at end of file diff --git a/data/processed/85fd305f-83de-70b0-47e8-2dc000000026.json b/data/processed/85fd305f-83de-70b0-47e8-2dc000000026.json new file mode 100644 index 0000000000000000000000000000000000000000..69b5e5f67873c659c22c41b3748d673897f0651c --- /dev/null +++ b/data/processed/85fd305f-83de-70b0-47e8-2dc000000026.json @@ -0,0 +1,1570 @@ +{ + "id": "85fd305f-83de-70b0-47e8-2dc000000026", + "content": "Die Ergebnisse und dessen Erl\u00e4uterung ist in Kapitel 7.4 aufzufinden. ## 6.4 Richtcharakteristik\n\nIn Bezug auf die ermittelten Kennwerte der Verladeemissionen, kann nun die Richtcha- rakteristik der Schallquelle mithilfe des im Kapitel 2.2, beschriebene Verfahren ermittelt werden. Das Verfahren erm\u00f6glicht die Beschreibung der Schallquelle bez\u00fcglich ihrer Schallabstrahlung in verschiedene Richtungen. Hierbei werden die Messdaten von mehreren Mikrofonpositionen, die um die Schall- quelle in einer kreisf\u00f6rmigen Anordnung platziert sind, verwendet, um Richtwerte f\u00fcr verschiedene Winkel zu berechnen. Dabei werden die Messdaten von den einzelnen\n51\n6 Messauswertung und Statistik\nMikrofonen mit einem Referenzpunkt miteinander verkn\u00fcpft (siehe Abbildung 15). Die gesammelten Messwerte werden im Anschluss analysiert, um die Richtcharakteristik zu bestimmen. Dazu werden statistische Verfahren oder mathematische Modelle verwen- det, um die Beziehung zwischen den Schallpegeln und den Winkeln zu bestimmen. [IMAGE: \u00ae Referenzpunkt Anh\u00e4nger | Messpunkte entlang des Anh\u00e4nger]\n\n\n[IMAGE: ]\n\nAbbildung 15: Vorgang f\u00fcr die Berechnung der Richtcharakteristik vom 03.05.2023\nDie Messpunkte MP, werden durch die Angabe von zwei Koordinaten im kartesischen Koordinatensystem [x; y] beschrieben(siehe Abbildung 16 und Abbildung 17). Von der Schallquelle Q, die sich am Mittelpunkt der kurzen Seite des Anh\u00e4ngers befindet, strahlt ein Schallvektor mit einem Abstand r zum Messpunkt und einem Winkel \ud835\udf11 aus, wobei der Winkel \ud835\udf11 im Bereich von 0\u00b0 bis 360\u00b0 liegt mit 0\u00b0 \u2264 \ud835\udf11 \u2264 360\u00b0. 52\n6 Messauswertung und Statistik\n\n[IMAGE: 18m MP4 ? 16m 14m 12m j 10m 1 2? 8m ! / 6m j / 4m 1 7 ! 2mt ty #. y 7 Q 4m 6m 2m 6m 4m 2m Om]\n\nAbbildung 16: Messpunkte im Polarkoordinatensystem vom 03.05.2023\n53\n6 Messauswertung und Statistik\n\n[IMAGE: * MP2 MPA \\ 18m ! ? \\ I 1 \\ n I \\ N ! \\ 15m 1 ! x f} ! y N u \\ N ! ! \\ 14m fl \\ I \\ ' { \\ ! 4 \\ . \u0131 I \\ 12m 1 N \\ I 4 \\ I I \\ l ! \\ 10m 1 I [ r rd 3 \\ r \u201c* \\ 1] 1 \\ 8m 1 !", + "embedding": [ + 0.00489234272390604, + 0.025338299572467804, + 0.0006822486175224185, + -0.03800083324313164, + -0.00911649502813816, + 0.017862508073449135, + -0.00909664761275053, + -0.013747516088187695, + -0.020072167739272118, + -0.018881333991885185, + 0.02629096619784832, + 0.03186142444610596, + -0.03254945948719978, + 0.014475247822701931, + -0.004042219836264849, + 0.016790758818387985, + 0.025907253846526146, + -0.011776024475693703, + 0.005375292152166367, + 0.0015199672197923064, + -0.002735610119998455, + 0.00599386403337121, + -0.014303239062428474, + 0.007489022333174944, + -0.013006553053855896, + 0.01900041662156582, + 0.028262458741664886, + -0.014223849400877953, + -0.01890779659152031, + -0.006496660877019167, + -0.011921570636332035, + -0.007396401837468147, + -0.013105789199471474, + -0.01992662064731121, + -0.014911887235939503, + 0.009725144132971764, + -0.004287002142518759, + -0.02122330665588379, + 0.014700183644890785, + -0.004210921004414558, + 0.005428217817097902, + 0.001041152747347951, + 0.005897935945540667, + -0.030194256454706192, + 0.013271182775497437, + 0.016076257452368736, + 0.008693087846040726, + -0.010664579458534718, + -0.009447282180190086, + 0.01935766637325287, + 0.004214229062199593, + 0.0073170131072402, + -0.009222347289323807, + 0.008646777831017971, + 0.012847774662077427, + -0.006635591387748718, + -0.013330724090337753, + 0.006519815884530544, + -0.022850779816508293, + -0.019741380587220192, + -0.010710889473557472, + -0.013866599649190903, + -0.025100132450461388, + -0.017108313739299774, + -0.03450772166252136, + -0.01921212114393711, + -0.026224808767437935, + 0.013291030190885067, + -0.018801944330334663, + 0.021646713837981224, + 0.019251815974712372, + 0.0334492027759552, + 0.004376314580440521, + 0.012133274227380753, + 0.04114992916584015, + -0.0029737770091742277, + 0.0028199609369039536, + -0.005623382516205311, + -0.009202499873936176, + -0.005027965642511845, + 0.03591025993227959, + -0.004875803366303444, + -0.015454377979040146, + 0.04678654298186302, + -0.0031226312275975943, + -0.02282431721687317, + 0.002560292836278677, + 0.018603472039103508, + -0.019939852878451347, + 0.004078606143593788, + 0.016526129096746445, + 0.03800083324313164, + 0.010181630030274391, + -0.0029737770091742277, + 0.013085941784083843, + -0.007978587411344051, + 0.0037908214144408703, + 0.03135862573981285, + 0.009639139287173748, + -0.021593788638710976, + -0.023896068334579468, + -0.009592829272150993, + 0.0029853545129299164, + 0.0012693959288299084, + -0.023499123752117157, + -0.0009493592660874128, + -0.0031970583368092775, + 0.011134297586977482, + 0.015282368287444115, + -0.02169964089989662, + -0.01508389599621296, + 0.012490524910390377, + -0.001981415320187807, + -0.004273770842701197, + 0.03220544382929802, + -0.0037048165686428547, + 0.03291994333267212, + -0.025960179045796394, + -0.011121065355837345, + -0.01872255653142929, + 0.016446739435195923, + 0.004015756770968437, + 0.018577009439468384, + -0.011372463777661324, + 0.04154687374830246, + 0.005497683305293322, + -0.008051360957324505, + -0.024306243285536766, + -0.017902202904224396, + -0.02255968749523163, + -0.023552048951387405, + -0.012133274227380753, + 0.03397846221923828, + 0.01877548173069954, + 0.008507846854627132, + 0.01554699894040823, + -0.03403138741850853, + -0.0016787450294941664, + -0.0234065018594265, + -0.041255779564380646, + 0.014779572375118732, + 0.009109879843890667, + -0.005074275657534599, + -0.0438491515815258, + 0.009123111143708229, + 0.005719310604035854, + 0.01092259306460619, + 0.03546038642525673, + 0.003106091869994998, + -0.002494135405868292, + -0.00520659051835537, + -0.03786851838231087, + 0.029559144750237465, + 0.009864074178040028, + -0.02499428018927574, + 0.0023188183549791574, + -0.014673720113933086, + 0.012179585173726082, + -0.003365759737789631, + -0.0195296760648489, + 0.002940698293969035, + 0.0026529133319854736, + 0.0016464933287352324, + 0.022639075294137, + 0.03657183423638344, + 0.015374989248812199, + 0.0014281737385317683, + 0.0013992298627272248, + -0.003046550089493394, + 0.0036022725980728865, + -0.02322126179933548, + 0.0065363552421331406, + -0.008554156869649887, + 0.01659228652715683, + -0.008904791437089443, + 0.0033194494899362326, + 0.00670505641028285, + -0.0037048165686428547, + -0.03958861157298088, + -0.030485348775982857, + -0.030935218557715416, + 0.0037610505241900682, + 0.012629454955458641, + -0.007442711852490902, + -0.00520659051835537, + 0.011782640591263771, + 0.008865096606314182, + 0.01120707020163536, + -0.01476634107530117, + -0.009189268574118614, + 0.011213686317205429, + 0.025153059512376785, + 0.01290070079267025, + -0.026899615302681923, + -0.6164814829826355, + -0.005494375247508287, + -0.006377577316015959, + 0.0072442395612597466, + 0.012669149786233902, + 0.007773499470204115, + 0.0237108264118433, + -0.004121608566492796, + 0.0019169118022546172, + 0.0424201525747776, + -2.4308337742695585e-06, + -0.0009973234264180064, + 0.012027422897517681, + -0.008931254036724567, + -0.01645997166633606, + -0.026304198428988457, + -0.022123048081994057, + -0.008203522302210331, + 0.03638659045100212, + 0.0030614356510341167, + -0.02794490195810795, + 0.0051999748684465885, + 0.00978468544781208, + 0.0153485257178545, + -0.011299691163003445, + 0.007489022333174944, + 0.02107776142656803, + -0.01212004292756319, + 0.014514942653477192, + -0.008110902272164822, + -0.027336254715919495, + 0.011193838901817799, + -0.0069531467743217945, + 0.012040654197335243, + 0.028632940724492073, + -0.00869970303028822, + -0.00030205005896277726, + 0.008951101452112198, + 0.012861005961894989, + -0.00476002786308527, + -0.005947554018348455, + -0.018113907426595688, + -0.009004027582705021, + 0.004320080857723951, + -0.011240148916840553, + 0.004005833063274622, + 0.03633366525173187, + 0.0014471940230578184, + -0.003926443867385387, + -0.0327347032725811, + -0.004753412213176489, + 0.0059012435376644135, + 0.01904011145234108, + 0.004578094929456711, + 0.030141329392790794, + -0.015150053426623344, + 0.021249769255518913, + -0.03442833200097084, + -0.01877548173069954, + 0.01368135865777731, + -0.0188151765614748, + -0.0003324411518406123, + 0.010955671779811382, + -0.03911227732896805, + -0.010909361764788628, + 0.028235996142029762, + -0.01939736120402813, + -0.024517947807908058, + 0.02873879298567772, + -0.013985683210194111, + -0.017981592565774918, + 0.027865514159202576, + -0.019873695448040962, + -0.010770431719720364, + 0.02723040245473385, + 0.02361820638179779, + 0.005285979714244604, + -0.01761111058294773, + 0.02095867693424225, + 0.011279843747615814, + -0.009579597041010857, + -0.01294039562344551, + -0.026965772733092308, + 0.014184155501425266, + 0.0106050381436944, + -0.03336981311440468, + -0.014065071940422058, + 0.021765798330307007, + 0.024848734959959984, + 0.02171287126839161, + 0.014739877544343472, + 0.027786124497652054, + -0.02109099179506302, + -0.02629096619784832, + -0.026079263538122177, + 0.04220844805240631, + -0.02553677186369896, + 0.022308288142085075, + -0.019807538017630577, + -0.0268202256411314, + -0.021051296964287758, + 0.008461536839604378, + 0.017015693709254265, + -0.01655259169638157, + 0.023247724398970604, + -0.0034666499122977257, + -0.015864554792642593, + -0.012239126488566399, + 0.024742882698774338, + -0.03421662747859955, + -0.0024064769968390465, + -0.01227882131934166, + -0.006807600613683462, + -0.004707101732492447, + 0.007654415909200907, + -0.02953268215060234, + 0.050597209483385086, + 0.020932214334607124, + 0.012735307216644287, + -0.0135887386277318, + 0.0146340262144804, + 0.008765860460698605, + 0.03908581659197807, + -0.022652307525277138, + -0.027733199298381805, + 0.03215251490473747, + 0.017161240801215172, + 0.00987730547785759, + -0.0015307178255170584, + -0.024716420099139214, + 0.022096585482358932, + -0.008349069394171238, + 0.00898418016731739, + -0.00875924527645111, + 0.010128703899681568, + 0.01145185250788927, + 0.018087444826960564, + -0.021871650591492653, + 0.001900372444652021, + -0.035777945071458817, + -0.01593071222305298, + -0.007879351265728474, + -9.820245031733066e-05, + -0.032893478870391846, + -0.01459433138370514, + -0.02736271731555462, + -0.013502733781933784, + -0.005782160442322493, + 0.001915257889777422, + -0.0002861309330910444, + 0.0006318035302683711, + -0.0031606717966496944, + 0.0001580542593728751, + 0.043875616043806076, + 0.013079325668513775, + 0.003155709942802787, + -0.02308894693851471, + -0.013211640529334545, + -0.014184155501425266, + -0.0206014271825552, + 0.0020856133196502924, + 0.018841639161109924, + -0.03675707429647446, + -0.006959762889891863, + -0.004769951570779085, + -0.022295057773590088, + -0.005626690108329058, + 0.003810668596997857, + -0.04043542593717575, + -0.03379322215914726, + -0.011213686317205429, + 0.014051840640604496, + -0.0053785997442901134, + -0.013668127357959747, + -0.013787210918962955, + 0.022586150094866753, + -0.008746013976633549, + -0.007899198681116104, + -0.02513982728123665, + -0.033211033791303635, + 0.01329764537513256, + -0.0029555836226791143, + -0.029426829889416695, + -0.01105490792542696, + 0.016115952283143997, + 0.019159194082021713, + 0.011359232477843761, + 0.002960545476526022, + -0.020495574921369553, + 0.03464003652334213, + -0.025814633816480637, + 0.02770673669874668, + -0.01792866550385952, + 0.013529196381568909, + -0.014197386801242828, + 0.020852824673056602, + 0.015322063118219376, + -0.004842724651098251, + -0.0029489679727703333, + 0.016830453649163246, + 0.025774938985705376, + 0.005931014660745859, + 0.03535453602671623, + -0.02642328105866909, + 0.0327347032725811, + -0.013330724090337753, + 0.016962768509984016, + -0.012450830079615116, + 0.028500625863671303, + 0.02468995749950409, + 0.014316470362246037, + -0.020918982103466988, + -0.021051296964287758, + -0.011524626053869724, + -0.0005408370634540915, + 0.03474588692188263, + -0.014819266274571419, + 0.007257471326738596, + 0.014382627792656422, + 0.0008658355218358338, + 0.003309526015073061, + 0.009923616424202919, + 0.0271774772554636, + 0.02201719582080841, + 0.0025801402516663074, + 0.0017763272626325488, + 0.01147831603884697, + -0.001058519002981484, + -0.003946291282773018, + -0.0077536520548164845, + -0.02095867693424225, + -0.02135562151670456, + 0.017822815105319023, + -0.00016146550478879362, + 0.020495574921369553, + 0.014250312931835651, + 0.010280866175889969, + 0.0028613093309104443, + 0.03728633373975754, + 0.00293077458627522, + 0.001857370138168335, + 0.017412638291716576, + -0.0038801338523626328, + -0.006814216263592243, + -0.0051470487378537655, + -0.017955129966139793, + 0.015361757948994637, + 0.02744210697710514, + 0.003694893093779683, + -0.01267576590180397, + -0.011921570636332035, + -0.005474528297781944, + 0.008574004285037518, + -0.0005548955523408949, + 0.01043302845209837, + -0.017372943460941315, + 0.026899615302681923, + 0.00487249530851841, + -0.003440186847001314, + 0.012682381086051464, + 0.014091534540057182, + -0.0035592704080045223, + -0.0008286219672299922, + -0.012708844617009163, + 0.008574004285037518, + 0.0036221197806298733, + -0.01907980628311634, + -0.011981112882494926, + -0.019251815974712372, + -0.0008327568066306412, + 0.02109099179506302, + 0.004382930230349302, + -0.009705296717584133, + 0.017624342814087868, + 0.010618269443511963, + -0.008640161715447903, + -0.007627952843904495, + 0.02255968749523163, + 0.0250869020819664, + 0.008527694270014763, + -0.013152099214494228, + -0.022639075294137, + 0.006351114250719547, + 0.040673594921827316, + -0.015891017392277718, + -0.02344619669020176, + 0.0005284325452521443, + 0.012596376240253448, + -0.028315383940935135, + -0.007575026713311672, + 0.002444517333060503, + -0.005914475303143263, + -0.0064238873310387135, + -0.025060437619686127, + -0.014303239062428474, + 0.0015778549714013934, + 0.020006010308861732, + -0.024398863315582275, + 0.0012057193089276552, + 0.028924033045768738, + 0.020495574921369553, + -0.016393814235925674, + -0.008798939175903797, + -0.017650805413722992, + 0.015573461540043354, + 0.006189028732478619, + -0.0016249921172857285, + -0.02486196532845497, + -0.00967221800237894, + -0.014845729805529118, + -0.02783905155956745, + -0.004518553148955107, + -0.013423345051705837, + 0.011822334490716457, + 0.00047716053086332977, + 0.0032251751981675625, + 0.012490524910390377, + 0.00431346520781517, + 0.03514283150434494, + -0.0053091347217559814, + -0.0016183763509616256, + -0.020654352381825447, + 0.0008286219672299922, + 0.00967221800237894, + -0.009850842878222466, + 0.0025851018726825714, + 0.004994886927306652, + 0.02450471557676792, + -0.016340887174010277, + -0.009718528017401695, + 0.013575506396591663, + -0.03522222116589546, + 0.009215731173753738, + 0.012947010807693005, + -0.0025751783978194, + 0.002851385623216629, + 0.03363444283604622, + 0.015494072809815407, + -0.004280386492609978, + -0.012966858223080635, + 0.0022956631146371365, + 0.0009228963172063231, + 0.030141329392790794, + 0.025417689234018326, + -0.006900221109390259, + -0.00042299414053559303, + 0.0032053280156105757, + 0.035433925688266754, + -0.013244719244539738, + -0.014845729805529118, + 0.02308894693851471, + 0.002366782398894429, + 0.01032056100666523, + -0.04845371097326279, + -0.014263544231653214, + 0.025602929294109344, + -0.0094075882807374, + 0.008977564983069897, + -0.020217712968587875, + -0.004419317003339529, + 0.013476270250976086, + -0.014263544231653214, + 0.022030428051948547, + -0.037921443581581116, + -0.013125636614859104, + 0.0031011300161480904, + 0.016155647113919258, + -0.011776024475693703, + 0.0026082571130245924, + -0.0065925889648497105, + 0.014184155501425266, + -0.002214620355516672, + -0.003086244687438011, + -0.002735610119998455, + -0.0030812828335911036, + -0.017002461478114128, + -0.007588258478790522, + 0.0018821791745722294, + -0.011008597910404205, + -0.003605580423027277, + 0.004832800943404436, + -0.025033975020051003, + 0.0030663972720503807, + -0.005914475303143263, + -0.024001918733119965, + -0.02548384666442871, + 0.01145185250788927, + 0.0030432422645390034, + -0.01434293296188116, + -0.0025751783978194, + -0.019503213465213776, + -0.014329701662063599, + -0.009890537708997726, + 0.012980089522898197, + 0.007065614685416222, + -0.007945508696138859, + -0.038186073303222656, + -0.009837611578404903, + 0.021183611825108528, + -0.0014728300739079714, + 0.009731759317219257, + -0.003086244687438011, + -0.011650324799120426, + -0.0077602677047252655, + -0.016076257452368736, + -0.008388763293623924, + 0.003317795693874359, + -0.032814089208841324, + -0.022519992664456367, + 0.023552048951387405, + 0.011934801936149597, + 0.007978587411344051, + -0.004660791717469692, + 0.0019433748675510287, + -0.025655854493379593, + 0.011326153762638569, + 0.01845792680978775, + -0.004409393295645714, + -0.004753412213176489, + 0.011637093499302864, + -0.003966138698160648, + 0.01948998123407364, + 0.011471699923276901, + -0.022480297833681107, + 0.01176279317587614, + -0.027256865054368973, + 0.007211160846054554, + 0.010929209180176258, + 0.014700183644890785, + -0.0018557162256911397, + 0.005067660007625818, + 0.0031160153448581696, + -0.0031739030964672565, + 0.016473202034831047, + 0.020402954891324043, + -0.03199373930692673, + 0.014104765839874744, + 0.0027306482661515474, + -7.370352250291035e-05, + 0.011200455017387867, + -0.0008517770329490304, + 0.0013694589724764228, + 0.039694465696811676, + 0.0036386591382324696, + 0.003936367575079203, + -0.028235996142029762, + 0.02352558635175228, + 0.01845792680978775, + -0.013641663827002048, + 0.04337281733751297, + -0.030723515897989273, + 0.01187526062130928, + -0.03770974278450012, + -0.024385632947087288, + 0.006162565667182207, + 0.022480297833681107, + -0.010426412336528301, + -0.011974496766924858, + -0.01574547030031681, + -0.0027256866451352835, + -0.001171813695691526, + 0.007065614685416222, + -0.0254970770329237, + 0.007422864902764559, + -0.026343893259763718, + 0.018246222287416458, + -0.01898718625307083, + 0.021064529195427895, + 0.0058383941650390625, + -0.0292680524289608, + -0.02860647812485695, + 0.025722011923789978, + 0.0015265829861164093, + 0.008282911963760853, + -0.026039568707346916, + 0.0020442649256438017, + -0.018484389409422874, + -0.019145963713526726, + -0.017425870522856712, + -0.020588194951415062, + 0.000264629750745371, + -0.025377994403243065, + -0.012311900034546852, + -0.00809767097234726, + 0.041705649346113205, + 0.006496660877019167, + 0.0013785556657239795, + 0.007852887734770775, + -0.005696155596524477, + 0.0027769585140049458, + -0.02744210697710514, + 0.001323975739069283, + -0.035433925688266754, + 0.032046664506196976, + 0.01288085337728262, + -0.008951101452112198, + 0.009943462908267975, + -0.010069162584841251, + 0.0065925889648497105, + 0.046468984335660934, + 0.0047931065782904625, + 0.008613699115812778, + -0.013787210918962955, + -0.03453418239951134, + -0.016340887174010277, + 0.005054428242146969, + 0.01725386083126068, + 0.01717447116971016, + 0.0008823748794384301, + -0.0029440061189234257, + 0.016658443957567215, + -0.03162325546145439, + -0.011008597910404205, + 0.0028331924695521593, + 0.005070967599749565, + -0.03016779199242592, + 0.025100132450461388, + -0.006698440760374069, + 0.011352616362273693, + -0.0069928416050970554, + 0.013800442218780518, + -0.011557704769074917, + -0.02450471557676792, + 0.022877242416143417, + -0.004865879658609629, + 0.023776983842253685, + 0.007383170537650585, + -0.011021829210221767, + 0.011736329644918442, + -0.01597040705382824, + 0.025642624124884605, + -0.036809999495744705, + 0.0033574900589883327, + -0.01163047831505537, + -0.02544415183365345, + -0.02068081498146057, + -0.015771932899951935, + -0.013039631769061089, + 0.013515965081751347, + 0.012305283918976784, + 0.003433571197092533, + 0.022811084985733032, + -0.01614241488277912, + -0.006860526744276285, + 0.019013648852705956, + -0.01907980628311634, + 0.024345938116312027, + -0.01092259306460619, + 0.035248685628175735, + 0.016936304047703743, + -0.026833457872271538, + -0.013105789199471474, + -0.04623081907629967, + -0.004095145501196384, + -0.0031093996949493885, + 0.04096468538045883, + 0.02318156696856022, + -0.007052382919937372, + -0.002737264148890972, + 0.01779635064303875, + 0.017584647983312607, + -0.026092493906617165, + -0.024888429790735245, + 0.026979004964232445, + 0.018219759687781334, + 0.0010833280393853784, + -0.013257951475679874, + 0.024584105238318443, + -0.034587111324071884, + 0.00023361845524050295, + 0.0066455150954425335, + -0.006728211883455515, + -0.015401451848447323, + 0.0053091347217559814, + -0.02148793637752533, + 0.06218799576163292, + 0.02273169718682766, + 0.017425870522856712, + 0.022519992664456367, + -0.02286401204764843, + -0.0023039327934384346, + -0.02024417743086815, + -0.010763815604150295, + -0.0005263651255518198, + -0.01823299005627632, + 0.035963185131549835, + -0.009228963404893875, + -0.0035824254155158997, + 0.012179585173726082, + 0.01067781075835228, + -0.012457446195185184, + 0.0020359952468425035, + 0.011180607602000237, + 0.022175973281264305, + -0.012841159477829933, + -0.0035460388753563166, + 0.00869970303028822, + -0.009923616424202919, + -0.0006934126722626388, + 0.014435553923249245, + -0.01934443600475788, + -0.0069531467743217945, + -0.01717447116971016, + 0.003512960160151124, + 0.02143501117825508, + 0.027733199298381805, + -0.003076320979744196, + -0.03450772166252136, + -0.0034004924818873405, + 0.004114992916584015, + -0.011577552184462547, + -0.015904247760772705, + 0.0039032890927046537, + -0.035830870270729065, + -0.013641663827002048, + -0.005292595364153385, + 0.007912429980933666, + 0.01898718625307083, + -0.010102241300046444, + -0.01815360225737095, + -0.017505258321762085, + 0.04064713045954704, + -0.037471573799848557, + 0.01578516513109207, + 0.023274186998605728, + -0.001754826051183045, + -0.015044202096760273, + -0.009361278265714645, + 0.015520535409450531, + -0.022850779816508293, + 0.028950495645403862, + -0.0050246575847268105, + -0.027336254715919495, + -0.017425870522856712, + 0.008613699115812778, + 0.01868286170065403, + -0.022639075294137, + -0.006000479683279991, + 0.0005726753151975572, + 0.01668490655720234, + 0.004819569643586874, + -0.003185480833053589, + 0.002350243041291833, + 0.009606060571968555, + 0.02322126179933548, + -0.012801464647054672, + 0.02001924067735672, + -0.012913932092487812, + 0.02815660648047924, + 0.006017019040882587, + -0.025589697062969208, + 0.006506584119051695, + -0.00638419296592474, + -0.029903162270784378, + 0.025205984711647034, + 0.002910927403718233, + -0.025417689234018326, + 0.0020773436408489943, + -0.011551088653504848, + -0.0216202512383461, + 0.0016928034601733088, + 0.006920068059116602, + 0.004869187716394663, + 0.013205025345087051, + 0.026899615302681923, + -0.00018927230848930776, + -0.002958891447633505, + 0.026859920471906662, + 0.0011288112727925181, + -0.01917242631316185, + 0.03643951937556267, + 0.032364219427108765, + -0.025920486077666283, + 0.025060437619686127, + -0.020204482600092888, + 0.03456064686179161, + 0.0240151509642601, + -0.029241587966680527, + -0.005686231888830662, + 0.007336860056966543, + -0.029162200167775154, + -0.014104765839874744, + -0.033607978373765945, + 0.00442593265324831, + -0.014488479122519493, + 0.020006010308861732, + -0.01368135865777731, + 0.040408965200185776, + -0.004938652738928795, + 0.030353033915162086, + -0.023022789508104324, + -0.01403860840946436, + 0.022123048081994057, + 0.005044505000114441, + 0.02504720725119114, + -0.0018193295691162348, + -0.030009014531970024, + -0.006116255186498165, + 0.03643951937556267, + 0.0072442395612597466, + 0.014660488814115524, + 0.04167918860912323, + 0.0007926488178782165, + -0.031967274844646454, + -0.0005222302861511707, + 0.020707279443740845, + 0.02570878155529499, + 0.014554636552929878, + 0.0009741683024913073, + -0.025192752480506897, + -0.0026247964706271887, + -0.0023684364277869463, + 0.02068081498146057, + -0.027547957375645638, + 0.009685449302196503, + 0.025722011923789978, + -0.0028960418421775103, + -0.0024428635369986296, + 0.009692065417766571, + -0.025814633816480637, + -0.005980632733553648, + -0.009830995462834835, + 0.03225836902856827, + 0.020389722660183907, + -0.016076257452368736, + 0.012695612385869026, + 0.015798397362232208, + -0.010710889473557472, + -0.017955129966139793, + 0.007555179763585329, + -0.015480841509997845, + -0.009950079023838043, + -0.005239669233560562, + -0.0008439208613708615, + 0.014581100083887577, + -0.012014191597700119, + 0.016182109713554382, + -0.011028445325791836, + 0.0028927340172231197, + -0.025999873876571655, + -0.01890779659152031, + -0.013271182775497437, + 0.029559144750237465, + 0.023763753473758698, + -0.009513439610600471, + 0.006351114250719547, + -0.019291508942842484, + -0.011200455017387867, + -0.014872192405164242, + -0.020495574921369553, + -0.00980453286319971, + -0.016803989186882973, + -7.199789979495108e-05, + -0.0005139606073498726, + -0.009824380278587341, + 0.007912429980933666, + 0.005656461231410503, + -0.02201719582080841, + -0.039032891392707825, + -0.004637636709958315, + 0.18756957352161407, + -0.00807120744138956, + -0.002418054500594735, + 0.008580620400607586, + -0.03270823881030083, + -0.025960179045796394, + 0.015904247760772705, + -0.00015402279677800834, + 0.019278278574347496, + 0.033475663512945175, + 0.014488479122519493, + 0.02352558635175228, + 0.02828892134130001, + 0.007164850831031799, + 0.01161063089966774, + -0.006612436380237341, + -0.02918866276741028, + -0.02322126179933548, + 0.0032400607597082853, + 0.024875197559595108, + 0.019913390278816223, + -0.02122330665588379, + -0.0014984660083428025, + -0.016208572313189507, + 0.025245679542422295, + 0.012430982664227486, + -0.013092557899653912, + 0.00199630088172853, + 0.029612069949507713, + 0.00976483803242445, + -0.020574964582920074, + 0.015044202096760273, + 0.008547541685402393, + -0.007879351265728474, + -0.0051503567956388, + 0.008726166561245918, + 0.007813193835318089, + 0.007191313896328211, + 0.031596794724464417, + 0.027203939855098724, + 0.004108377266675234, + -0.024848734959959984, + 0.012794848531484604, + -0.023816678673028946, + 0.02723040245473385, + 0.02642328105866909, + -0.014356164261698723, + -0.005864857230335474, + -0.0002648365043569356, + 0.014170924201607704, + -0.0012156430166214705, + 0.002879502484574914, + 0.014091534540057182, + 0.020720509812235832, + -0.015401451848447323, + -0.025774938985705376, + 0.012153121642768383, + -0.020032472908496857, + 0.005570456385612488, + 0.01082997303456068, + -0.048109691590070724, + 0.016737831756472588, + -0.01960906572639942, + 0.004875803366303444, + -0.02024417743086815, + 0.026701143011450768, + -0.01472664624452591, + -0.009288504719734192, + 0.00040914243436418474, + -0.010492569766938686, + 0.004194381646811962, + -0.006893605459481478, + -0.01436939649283886, + 0.014144460670650005, + -0.01655259169638157, + -0.04403439164161682, + 0.006311419885605574, + 0.01002946775406599, + 0.0426318533718586, + 0.04623081907629967, + -0.0007347610662691295, + 0.019913390278816223, + 0.0009634177549742162, + -0.020720509812235832, + -0.004306849557906389, + -0.026224808767437935, + 0.01655259169638157, + -0.0015671043656766415, + 0.01000962033867836, + 0.002409784821793437, + -0.020985139533877373, + 0.012457446195185184, + -0.0022609306033700705, + -0.015057433396577835, + 0.0234065018594265, + -0.011716483160853386, + 0.005001502577215433, + 0.003403800306841731, + -0.017955129966139793, + -0.0019218736561015248, + -0.02416069805622101, + 0.0572129562497139, + 0.05258193239569664, + -0.023644668981432915, + -0.005051120650023222, + -0.006060021463781595, + -0.010340407490730286, + 0.02169964089989662, + 0.00048377629718743265, + -0.001741594634950161, + -0.0018904488533735275, + -0.017597878351807594, + 0.018127137795090675, + -0.019648760557174683, + 0.003112707519903779, + 0.018762249499559402, + 0.0032450223807245493, + -0.011544473469257355, + 0.0017763272626325488, + 0.015136822126805782, + -0.010261018760502338, + -0.013800442218780518, + 0.0014463670086115599, + 0.018166832625865936, + 0.010730736888945103, + -0.02971792221069336, + -0.03395199775695801, + 0.020270640030503273, + 0.009665601886808872, + 0.022493530064821243, + 0.02540445700287819, + -0.01828591711819172, + 0.030538273975253105, + 0.020482342690229416, + 0.012272205203771591, + -0.0004486301331780851, + 0.0007885139784775674, + -0.03342273831367493, + 0.008130749687552452, + -0.001008900930173695, + 0.03633366525173187, + -0.0094075882807374, + 0.018272684887051582, + 0.0035361151676625013, + 0.007773499470204115, + 0.01071750558912754, + 0.008534309454262257, + 0.000486257195007056, + -0.0474216528236866, + -0.03945629671216011, + -0.017240628600120544, + -0.0050775837153196335, + 0.02082636207342148, + -0.02540445700287819, + 0.012854390777647495, + 0.012378057464957237, + -0.03003547713160515, + -0.021779028698801994, + -0.0006425541359931231, + 0.010512417182326317, + -0.010201477445662022, + -0.002431286033242941, + -0.0008331702556461096, + -0.014356164261698723, + 0.004485474433749914, + -0.0008091881754808128, + -0.16661089658737183, + 0.019556138664484024, + 0.023909298703074455, + -0.04355805739760399, + 0.010347023606300354, + 0.007250855676829815, + 0.027600884437561035, + 0.010505801998078823, + -0.010691042058169842, + -0.009202499873936176, + 0.028659403324127197, + 0.007885966449975967, + -0.01423708163201809, + -0.01836530491709709, + -0.002996932016685605, + 0.005256208591163158, + -0.020350027829408646, + 0.026304198428988457, + 0.023724058642983437, + 0.010267634876072407, + 0.009493593126535416, + -0.03143801540136337, + 0.0340578518807888, + 0.006625667680054903, + -0.016923073679208755, + 0.016711369156837463, + -0.013085941784083843, + 0.030802903696894646, + -0.017558185383677483, + -0.02224213071167469, + -0.005295902956277132, + -0.01538822054862976, + 0.014462016522884369, + -0.004650868009775877, + 0.013257951475679874, + 0.0026942617259919643, + -0.013800442218780518, + 0.002323780208826065, + -0.011961265467107296, + 0.021937808021903038, + 0.005256208591163158, + 0.01930474117398262, + -0.013079325668513775, + 0.012550066225230694, + -0.01766403578221798, + 0.0226920023560524, + 0.011432006023824215, + -0.015044202096760273, + -0.019582603126764297, + -0.01787574030458927, + 0.003787513356655836, + -0.015573461540043354, + 0.010294097475707531, + 0.010466107167303562, + 0.0007124329567886889, + 0.018444694578647614, + -0.020006010308861732, + 0.028924033045768738, + 0.0021583863999694586, + 0.0031358627602458, + -0.018616704270243645, + -0.03051181137561798, + 0.002120346063748002, + -0.006427195388823748, + 0.014739877544343472, + -0.02655559591948986, + 0.003549346700310707, + 0.034322481602430344, + -0.03154386579990387, + -0.011570936068892479, + -0.0010982134845107794, + -0.02144824154675007, + 0.00012962723849341273, + 0.0009923615725710988, + -0.0014248659135773778, + 0.004472243133932352, + 0.002360166748985648, + -0.01459433138370514, + 0.0003768906753975898, + -0.0046707154251635075, + -0.007535332348197699, + 0.04832139611244202, + -0.003853671019896865, + -0.03175557032227516, + 0.005173511803150177, + -0.014978044666349888, + -0.014938349835574627, + 0.016433509066700935, + 0.004376314580440521, + 0.0032235211692750454, + 0.004889034666121006, + -0.02775966189801693, + -0.016221804544329643, + -0.015295600518584251, + 0.013251335360109806, + -0.007422864902764559, + -0.018577009439468384, + 0.01841823197901249, + -0.025153059512376785, + -0.01960906572639942, + 0.013429960235953331, + -0.01770373061299324, + -0.035248685628175735, + 0.018616704270243645, + -0.0001550565066281706, + -0.004399469587951899, + -0.013932757079601288, + -0.0014422321692109108, + 0.03625427559018135, + -0.00032127706799656153, + -0.02749503217637539, + -0.01082997303456068, + 0.02064112201333046, + -0.005643229465931654, + -0.023962225764989853, + 0.01423708163201809, + -0.006159257609397173, + 0.0017167855985462666, + 0.004167918581515551, + -0.01734648086130619, + 0.04403439164161682, + -0.013291030190885067, + 0.005292595364153385, + 0.009123111143708229, + -0.008150597102940083, + -0.032178979367017746, + -0.06621036678552628, + -0.0034798814449459314, + 0.015361757948994637, + 0.027521494776010513, + 0.004713717848062515, + 0.02348589152097702, + 0.003532807342708111, + -0.005874780938029289, + 0.013998914510011673, + 0.04776567220687866, + -0.023552048951387405, + -0.03037949651479721, + -0.01292054820805788, + 0.002748841652646661, + 0.0012950318632647395, + -0.018259452655911446, + -0.004769951570779085, + -0.026926077902317047, + -0.01753172092139721, + 0.019503213465213776, + -0.008666624315083027, + -0.020918982103466988, + -0.016579054296016693, + -0.001640704576857388, + -0.015599924139678478, + 0.010538880713284016, + -0.03514283150434494, + 0.012437598779797554, + 0.01499127596616745, + 0.006688517052680254, + 0.020178020000457764, + -0.024716420099139214, + 0.009566365741193295, + -0.03397846221923828, + 0.0031292468775063753, + -0.012073732912540436, + -0.018259452655911446, + -0.01187526062130928, + 0.03278762847185135, + -0.022096585482358932, + 0.0031292468775063753, + 0.012536834925413132, + 0.003555962350219488, + 0.001154447323642671, + 0.0035824254155158997, + -0.00834245327860117, + -0.020522037521004677, + -0.006966378539800644, + 0.0069928416050970554, + -0.0029506217688322067, + -0.0327347032725811, + -0.01907980628311634, + -0.02945329248905182, + 0.016830453649163246, + 0.029056347906589508, + -0.003526191459968686, + -0.011253380216658115, + -0.002416400471702218, + -0.015454377979040146, + 0.004511937499046326, + -0.0377362035214901, + 0.013694589957594872, + -0.030220719054341316, + 0.0424201525747776, + -0.01554699894040823, + -0.013998914510011673, + -0.013615201227366924, + 0.0033624519128352404, + 0.004267154727131128, + -0.0095597505569458, + -0.015308831818401814, + 0.014686951413750648, + 0.0062386468052864075, + 0.004204305354505777, + -0.017161240801215172, + -0.0023403195664286613, + -0.06044143810868263, + 0.0026462976820766926, + 0.007409633137285709, + -0.022678770124912262, + 0.007389786187559366, + -0.029082810506224632, + 0.023075714707374573, + -0.012550066225230694, + 0.035777945071458817, + 0.021051296964287758, + 0.00384705513715744, + -0.01067781075835228, + 0.018921028822660446, + -0.009844226762652397, + -0.0134101128205657, + 0.02900342270731926, + 0.018008055165410042, + -0.0033905687741935253, + -0.016658443957567215, + 0.006781137548387051, + 0.0024428635369986296, + -0.004819569643586874, + -0.005133817438036203, + 0.0038073607720434666, + -0.021765798330307007, + -0.006284956820309162, + -0.037921443581581116, + 0.03167618066072464, + 0.032761164009571075, + -0.006291572470217943, + -0.021051296964287758, + -0.011087986640632153, + 0.0247296504676342, + 0.014025377109646797, + 0.01677752658724785, + -0.010816741734743118, + 0.0020740358158946037, + 0.010155167430639267, + -0.026343893259763718, + -0.006582665257155895, + -0.02807721681892872, + -0.023208029568195343, + -0.018047749996185303, + 0.018881333991885185, + -0.00873939786106348, + -0.007727188989520073, + -0.013787210918962955, + 0.0046839467249810696, + 0.018047749996185303, + 0.005398447159677744, + -0.02775966189801693, + 0.0018557162256911397, + -0.008276295848190784, + 0.013343955390155315, + -0.01689661107957363, + 0.01223251037299633, + 0.005520838312804699, + 0.005239669233560562, + -8.827883721096441e-05, + 0.026899615302681923, + 0.008130749687552452, + -0.024676725268363953, + -0.0002309308183612302, + 0.038053758442401886, + 0.011134297586977482, + 0.051444023847579956, + -0.02184518612921238, + -0.01200757548213005, + 0.00040790197090245783, + -0.018113907426595688, + 0.0135887386277318, + 0.01663198135793209, + -0.0006615744205191731, + 0.01472664624452591, + -0.0030415882356464863, + -0.022453835234045982, + 0.037392184138298035, + -0.0010791931999847293, + 0.007793346419930458, + -0.016115952283143997, + 0.006886989343911409, + -0.002320472151041031, + 0.003890057560056448, + -0.0058383941650390625, + 0.03149094060063362, + -0.0347723513841629, + 0.03688938915729523, + 0.010227940045297146, + 0.004700486082583666, + -0.00967221800237894, + 0.0014885424170643091, + -0.03305225819349289, + -0.02424008585512638, + -0.00898418016731739, + 0.007852887734770775, + -0.04832139611244202, + -0.029770847409963608, + 0.0040389117784798145, + 0.027203939855098724, + 0.04694531857967377, + -0.013562275096774101, + 0.005795391742140055, + -0.002075689611956477, + 0.036995239555835724, + 0.003114361548796296, + -0.0024213623255491257, + 0.019331203773617744, + 0.03225836902856827, + 0.002431286033242941, + -0.007839656434953213, + 0.03469296172261238, + 0.019317973405122757, + -0.015692545101046562, + -0.011570936068892479, + -0.003860286669805646, + -0.008276295848190784, + 0.004088529851287603, + 0.036492444574832916, + 0.007866119965910912, + 0.010684426873922348, + 0.0036320434883236885, + -0.0030961681623011827, + -0.004925421439111233, + -0.007952123880386353, + 0.03368736803531647, + 0.03858301788568497, + -0.005123893730342388, + 0.015957174822688103, + -0.00016622057592030615, + -0.0363072045147419, + -0.00822998583316803, + 0.023102177307009697, + -0.012351593933999538, + -0.018669629469513893, + -0.003542731050401926, + 0.009830995462834835, + 0.007773499470204115, + 0.001973145641386509, + -0.01301316823810339, + -0.0025950255803763866, + -0.007912429980933666, + 0.003969446290284395, + -0.02770673669874668, + -0.01676429621875286, + -0.016380582004785538, + 0.031173385679721832, + 0.02482227236032486, + 0.005461296532303095, + -0.002082305494695902, + -0.0005478662787936628, + 0.025020744651556015, + -0.015943942591547966, + 0.040144335478544235, + -0.021805493161082268, + 0.008937870152294636, + 0.004009141121059656, + 0.011604014784097672, + -0.004548323806375265, + -0.024981049820780754, + -0.010148551315069199, + -0.019635528326034546, + 0.019860463216900826, + 0.020892519503831863, + -0.008772476576268673, + -0.010644732043147087, + 0.12458769232034683, + 0.026767300441861153, + -0.01058519072830677, + 0.02246706746518612, + -0.016129184514284134, + 0.026886383071541786, + 0.020879287272691727, + -0.013932757079601288, + 0.00862693041563034, + -0.050729524344205856, + 0.006701748818159103, + -0.0153485257178545, + 0.038635946810245514, + -0.03514283150434494, + -6.0782149375882e-05, + 0.011888491921126842, + -0.0033690675627440214, + 0.023419734090566635, + -0.006079868879169226, + -0.0164202768355608, + 0.031041070818901062, + -0.011220301501452923, + 0.013370418921113014, + 0.06308773159980774, + -0.00593763031065464, + -0.014951581135392189, + 0.01189510803669691, + -0.0006516507710330188, + 0.009367893449962139, + -0.023141872137784958, + 0.0035824254155158997, + 0.012563297525048256, + -0.07727189362049103, + -0.0327347032725811, + 0.003966138698160648, + -0.03381968289613724, + -0.00782642513513565, + -0.02855355106294155, + 0.017822815105319023, + 0.003837131429463625, + 0.017690500244498253, + 0.024756114929914474, + -0.005811931099742651, + -0.019317973405122757, + 0.0032830629497766495, + -0.012695612385869026, + 0.0057920836843550205, + -0.005074275657534599, + -0.03741864860057831 + ], + "metadata": { + "source": "Thesis_Verladegeraeusche_in_Speditionen.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 41, + "has_images": true, + "image_count": 51, + "coordinates": "CoordinatesMetadata(points=((204.16666666666666, 189.02777777777797), (204.16666666666666, 642.3611111111111), (936.1666666666666, 642.3611111111111), (936.1666666666666, 189.02777777777797)), system=)", + "links": [], + "last_modified": "2025-05-05T22:59:16", + "_known_field_names": "frozenset({'cc_recipient', 'link_texts', 'url', 'filetype', 'category_depth', 'page_number', 'filename', 'orig_elements', 'detection_origin', 'email_message_id', 'page_name', 'coordinates', 'table_as_cells', 'link_start_indexes', 'sent_to', 'bcc_recipient', 'languages', 'last_modified', 'link_urls', 'file_directory', 'subject', 'data_source', 'detection_class_prob', 'image_base64', 'text_as_html', 'attached_to_filename', 'key_value_pairs', 'signature', 'sent_from', 'header_footer_type', 'parent_id', 'links', 'emphasized_text_contents', 'emphasized_text_tags', 'image_mime_type', 'is_continuation', 'image_path'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "Thesis_Verladegeraeusche_in_Speditionen.pdf", + "detection_class_prob": 0.2568194270133972, + "parent_id": "d45475a34bc527cde6987546fa6dd2f5", + "text_as_html": "
Flurf\u00f6rderger\u00e4t |Anzahl Einzelereignisse ElMax-PegelSchallleistungspegel
LAFmaxLWA,5sLWAmaxLWA,1hKlLWAT,1h
[dB(A)][dB(A)][dB(A)][dB(A)][dB(A)][dB(A)]
Gabelstapler29769,3100,7108,872,15,777,8
STABW [dB]6,54,96,54,92,9-
Gabelhubwagen9968,6100,7108,172,16,279,5
STABW [dB]6,45,16,4512,7-
", + "id": "5ba44de7-0ff3-4c0c-b018-67e92171e1c2", + "processing_timestamp": "2025-05-06T14:18:19.298665", + "chunk_number": 26, + "total_chunks": 49, + "chunking_strategy": "hybrid", + "word_count": 344 + } +} \ No newline at end of file diff --git a/data/processed/85fd305f-83de-70b0-47e8-2dc000000027.json b/data/processed/85fd305f-83de-70b0-47e8-2dc000000027.json new file mode 100644 index 0000000000000000000000000000000000000000..62a73d5b4db71a484c2f5a3780960f2f4f6cb9b4 --- /dev/null +++ b/data/processed/85fd305f-83de-70b0-47e8-2dc000000027.json @@ -0,0 +1,1570 @@ +{ + "id": "85fd305f-83de-70b0-47e8-2dc000000027", + "content": "\u0131 I \\ 12m 1 N \\ I 4 \\ I I \\ l ! \\ 10m 1 I [ r rd 3 \\ r \u201c* \\ 1] 1 \\ 8m 1 ! \\ I Fi x I ! \\, f \\ 6 I \\ om r I \\ N \\ MP1 \\ \\ 15 f \\ 4m [ 1 Y \\ u \\ Ir /e \\ Ir, \\2m-11 7 ! y |177% \u2019 \\ ]l7, IQ Sm 6m 4m Zr \u00ae 2m 4m 6m 8m]\n\nAbbildung 17: Messpunkte im Polarkoordinatensystem vom 27.04.2023\nMithilfe des Programms SoundPlan 9.0 erstellten virtualisierten Messumgebung die in Kapitel 6.3 beschrieben ist, wurden die Koordinaten der Messpunkte ausgemessen und anschlie\u00dfend der Azimutwinkel \ud835\udf11 berechnet. Im Anschluss wurde das Richtma\u00df DI nach Formel 21 f\u00fcr jeden Messwert des jeweiligen Messpunktes mit dem dazugeh\u00f6rigen Wert des Referenzpunktes ausgerechnet. Um ein Polardiagramm zu erstellen wurde im Programm Excel ein Netzdiagramm erstellt. 54\n6 Messauswertung und Statistik\nDie Ergebnisse, einschlie\u00dflich aller relevanten Daten, sind im Anhang 4: Messergebnisse der Beladevorg\u00e4nge dargestellt. Dort ist eine umfassende Darstellung der erfassten Werte und deren grafische Visualisierung zu finden. Dar\u00fcber hinaus werden, die Ergeb- nisse der Richtcharakteristik dargestellt und interpretiert. ## 6.5 Validierung\n\nZur Validierung der berechneten akustischen Kenngr\u00f6\u00dfen wird eine Simulation der Mes- sung mithilfe der Software SoundPlan 9.0 auf Grundlage der TA L\u00e4rm [6] durchgef\u00fchrt. Diese Simulation erm\u00f6glicht es, die Messsituation nachzustellen und die erwarteten Er- gebnisse mit den messtechnisch ermittelten Ergebnissen zu vergleichen. Durch den Ver- gleich der simulierten Messergebnisse mit den tats\u00e4chlichen Messungen kann die Ge- nauigkeit der berechneten Kenngr\u00f6\u00dfen \u00fcberpr\u00fcft werden. Hierbei werden die generierten Beurteilungspegel mit dem gemessenen Beurteilungs-\npegel verglichen. Die Beurteilungspegel werden nach Formel 1 nach der DIN 45645-1 [16] berechnet. Im Rahmen der digitalisierten Messumgebung, die in 6.3 beschrieben ist und mit Hilfe des Programms SoundPlan 9.0 erstellt wurde, wurden die Messsituationen virtuell nachgestellt und Fl\u00e4chenschallquellen entsprechend den Verladezonen platziert. Um den jeweiligen Messtag pr\u00e4zise zu simulieren, wurden die Anzahl der Einzelereig- nisse pro Stunde an den Verladezonen berechnet, an denen Verladungen stattfanden. Dabei wurden die spezifischen Emissionsdaten f\u00fcr die einzelnen Anh\u00e4nger verwendet, um genauere Ergebnisse zu erzielen. Im Anschluss werden die Unterschiede analysiert und m\u00f6gliche Abweichungen interpretiert, die auf unterschiedliche Berechnungsmetho- den, Annahmen oder Randbedingungen zur\u00fcckzuf\u00fchren sein k\u00f6nnten. Es erfolgt eine \u00dcberpr\u00fcfung der Plausibilit\u00e4t der Ergebnisse, und gegebenenfalls werden R\u00fcckschl\u00fcsse auf die Genauigkeit der Messung und Berechnung gezogen. Dies erm\u00f6glicht eine umfas- sende Bewertung der \u00dcbereinstimmung zwischen den berechneten und gemessenen Werten und liefert wertvolle Erkenntnisse zur Validierung der Berechnungsergebnisse. Die Ergebnisse, einschlie\u00dflich aller relevanten Daten, sind im Anhang 5: Rechenmodell SoundPlan 9.0 \u2013 Gabelhubwagen 27.04.23 und Anhang 6: Rechenmodell SoundPlan 9.0 \u2013 Gabelstapler 03.05.2023 \u00fcbersichtlich aufgef\u00fchrt. Die simulierten Ergebnisse werden nun im Anschluss mit den berechneten Ergebnissen aus der Messung verglichen. Die Vergleichsergebnisse sind in 7.4 dargestellt und erl\u00e4utert. 55\n7 Ergebnisse und Interpretation\n\n## 7 Ergebnisse und Interpretation\n\nIn diesem Kapitel werden die Ergebnisse der Auswertung und Validierung der Verlade- ger\u00e4usche pr\u00e4sentiert und interpretiert.", + "embedding": [ + 0.0018247177358716726, + 0.007884377613663673, + -0.018257157877087593, + -0.03260206803679466, + -0.007019424811005592, + 0.027838172391057014, + -0.008855786174535751, + -0.020146746188402176, + -0.0186164453625679, + -0.025190087035298347, + 0.01270149927586317, + 0.01756519451737404, + -0.03411906212568283, + 0.003045631805434823, + -0.024498125538229942, + -0.0026630565989762545, + 0.020639104768633842, + 0.0005501598934642971, + 0.005292845889925957, + 0.005688727833330631, + -0.011809932067990303, + 0.014464671723544598, + -0.00018141137843485922, + -0.0036095145624130964, + -0.00982719473540783, + 0.022595228627324104, + 0.0340392179787159, + -0.013998928479850292, + -0.0009855472017079592, + -0.003689356381073594, + 0.00360618787817657, + -0.017325669527053833, + -0.004550982266664505, + -0.007112573366612196, + -0.007658158894628286, + 0.003952168859541416, + -0.005435895640403032, + -0.025323156267404556, + 0.017059531062841415, + -0.009155192412436008, + 0.01088509801775217, + 0.0017831334844231606, + 0.0017847968265414238, + -0.03486425057053566, + -0.0038324061315506697, + 0.012787993997335434, + 0.007425287272781134, + -0.0039089214988052845, + -0.009780620224773884, + 0.028157539665699005, + 0.009734045714139938, + 0.007019424811005592, + -0.02512355148792267, + -0.014012235216796398, + 0.012222448363900185, + -0.015768755227327347, + 0.013692867942154408, + -0.0008487349259667099, + -0.020306430757045746, + -0.0030007208697497845, + -0.017605116590857506, + -0.010818563401699066, + -0.017511967569589615, + 0.015063486061990261, + -0.019122110679745674, + -0.023939231410622597, + -0.0012999242171645164, + 0.004414585884660482, + -0.004807141609489918, + -0.0030256714671850204, + 0.03691352531313896, + 0.03406583145260811, + 0.00775796128436923, + -0.0028543442022055387, + 0.059189386665821075, + -0.0061943926848471165, + 0.010858484543859959, + -0.00586171867325902, + -0.0019062228966504335, + 0.016647014766931534, + 0.03284159302711487, + -0.019281793385744095, + -0.019281793385744095, + 0.042209696024656296, + 0.00348975183442235, + -0.019281793385744095, + -0.010472582653164864, + 0.02308758534491062, + -0.01046592928469181, + 0.0010753691894933581, + -0.007571663707494736, + 0.0317770354449749, + -0.0014870534650981426, + -0.005286192521452904, + 0.014517899602651596, + -0.008210398256778717, + -0.008928974159061909, + 0.008356775157153606, + -0.0010396067518740892, + -0.0137327890843153, + -0.01241539977490902, + -0.013293659314513206, + 0.005452529527246952, + 0.0030323248356580734, + -0.03023342788219452, + -0.01260835025459528, + -0.004501081071794033, + 0.004444526508450508, + -0.0004819616733584553, + -0.014171918854117393, + -0.025296542793512344, + 0.017964404076337814, + -0.0033300681971013546, + -0.002559927524998784, + 0.02447151020169258, + -0.014265067875385284, + 0.03499732166528702, + -0.005618866533041, + -0.02322065643966198, + -0.015582457184791565, + 0.032495610415935516, + 0.022302474826574326, + 0.01797771081328392, + -0.005000092554837465, + 0.017791414633393288, + 0.005582272075116634, + 0.009055390022695065, + -0.01534293219447136, + -0.01968100294470787, + -0.023074278607964516, + -0.01611473597586155, + -0.007491821888834238, + 0.021637126803398132, + 0.012575083412230015, + 0.001386419520713389, + 0.0322294719517231, + -0.013972314074635506, + 0.012388785369694233, + -0.027997856959700584, + -0.03252222388982773, + 0.01811078004539013, + 0.023273883387446404, + -0.017059531062841415, + -0.03576912358403206, + 0.010213096626102924, + 0.014917109161615372, + 0.018004324287176132, + 0.01784464158117771, + -0.004783854354172945, + -0.03888295590877533, + 0.005139815621078014, + -0.03052617982029915, + 0.02319404110312462, + 0.0061444914899766445, + -0.024591272696852684, + 0.007997486740350723, + 0.007179108448326588, + 0.026773616671562195, + -0.006107897497713566, + -0.014025541953742504, + -0.00021748572180513293, + 0.019627774134278297, + 0.006217679940164089, + 0.0021291144657880068, + 0.01988060772418976, + 0.008017446845769882, + 0.007964218966662884, + -0.037259504199028015, + -0.0132803525775671, + -0.017405511811375618, + -0.0048370822332799435, + 0.014677583239972591, + -0.008576340042054653, + 0.01775149255990982, + -0.01077198889106512, + -0.005119855049997568, + 0.017791414633393288, + 0.0014022215036675334, + -0.03411906212568283, + -0.025522761046886444, + -0.022848060354590416, + 0.011004861444234848, + 0.004208328202366829, + 0.005296172574162483, + -0.009933650493621826, + -0.008403348736464977, + 0.016354260966181755, + 0.017378898337483406, + -0.0015868557384237647, + -0.017232520505785942, + 0.018403533846139908, + 0.018509989604353905, + 0.00460753683000803, + -0.03212301805615425, + -0.6131849884986877, + -0.005728648975491524, + 0.004883656743913889, + 0.0020609162747859955, + 0.011650248430669308, + 0.040666088461875916, + 0.0219032671302557, + -0.00029420870123431087, + -0.004704012535512447, + 0.05296172574162483, + 0.0006973681738600135, + 0.003968802746385336, + -0.0016167963622137904, + -0.013260391540825367, + -0.015502615831792355, + -0.017219213768839836, + 0.0008167150663211942, + -0.021756889298558235, + 0.03087216056883335, + 0.020559262484312057, + -0.04939545691013336, + 0.01159702055156231, + 0.013839244842529297, + -0.00021332729374989867, + 0.004684051964432001, + -0.0018979060696437955, + 0.021038314327597618, + -0.015103406272828579, + -0.013200510293245316, + -0.006450552027672529, + -0.026840150356292725, + -0.006563661154359579, + -0.017259135842323303, + 0.02537638507783413, + 0.03576912358403206, + -0.008755983784794807, + -0.009062044322490692, + 0.021983107551932335, + -0.0036560888402163982, + -0.001984401373192668, + 0.004504408221691847, + -0.0012458646669983864, + 0.005432568956166506, + -0.008689449168741703, + 0.005099894944578409, + -0.003755891229957342, + 0.027039755135774612, + -0.002288798103109002, + 0.007026078179478645, + -0.044525109231472015, + 7.698287663515657e-05, + -0.002495056251063943, + 0.002907572081312537, + 0.007771268021315336, + 0.02521670050919056, + -0.005901639349758625, + 0.0313245989382267, + -0.005226310808211565, + -0.012455319985747337, + 0.013493264093995094, + -0.014477979391813278, + -0.0005979817942716181, + 0.009787273593246937, + -0.026893379166722298, + -0.003399929963052273, + 0.024750957265496254, + -0.006886355113238096, + -0.01858983188867569, + 0.009015469811856747, + -0.011117970570921898, + -0.02505701780319214, + 0.019694309681653976, + -0.025961890816688538, + -0.01922856643795967, + 0.022595228627324104, + 0.02505701780319214, + 0.019920527935028076, + -0.017645036801695824, + 0.018243851140141487, + 0.015875210985541344, + 0.007445247378200293, + -0.006154472008347511, + -0.00945459958165884, + 0.0026048386935144663, + 0.03529007360339165, + -0.008143863640725613, + -0.012295636348426342, + 0.019082188606262207, + 0.0016592122847214341, + 0.02721274644136429, + 0.026667160913348198, + 0.024950562044978142, + -0.0030156911816447973, + -0.02898257225751877, + -0.00767146609723568, + 0.02154397778213024, + -0.021144770085811615, + 0.020253201946616173, + -0.0062376405112445354, + -0.02546953409910202, + -0.023593250662088394, + 0.004704012535512447, + 0.021144770085811615, + -0.010605651885271072, + 0.010991553775966167, + -0.0013356867711991072, + -0.011437337845563889, + 0.01330031268298626, + 0.020852016285061836, + -0.02083870954811573, + -0.021916573867201805, + -0.026347793638706207, + -0.01095163356512785, + -0.01450459286570549, + -0.007165801245719194, + -0.02991406060755253, + 0.024870719760656357, + 0.008097289130091667, + -0.00030231763957999647, + 0.0019062228966504335, + 0.022408930584788322, + 0.005692054983228445, + 0.03811115026473999, + -0.011390763334929943, + -0.022794833406805992, + 0.014025541953742504, + 0.02505701780319214, + 0.01234886422753334, + 0.000831685378216207, + -0.019627774134278297, + 0.01206276472657919, + -0.004697359167039394, + 0.018989041447639465, + -0.02483079954981804, + 0.011004861444234848, + 0.018563218414783478, + 0.02260853536427021, + -0.012561775743961334, + 0.001803093939088285, + -0.015143327414989471, + -0.04029349237680435, + -0.006986157037317753, + 0.008855786174535751, + -0.02717282436788082, + -0.008270279504358768, + -0.040666088461875916, + -0.007997486740350723, + 0.009068697690963745, + 0.021011698991060257, + 0.024098915979266167, + 0.007385366130620241, + -0.014584435150027275, + -0.022595228627324104, + 0.016647014766931534, + -0.006287541706115007, + 0.005346073769032955, + -0.012541815638542175, + -0.004600883461534977, + 0.00045617943396791816, + -0.02544291876256466, + 0.005053320433944464, + 0.040320105850696564, + -0.03443842753767967, + -0.019441477954387665, + 0.00038673370727337897, + -0.012595043517649174, + 0.005984807852655649, + 0.002470105653628707, + -0.038643430918455124, + -0.03720627725124359, + 0.002263847505673766, + 0.006756612099707127, + -0.02019997499883175, + -0.0003409910132177174, + -0.021850038319826126, + 0.013420075178146362, + -0.023593250662088394, + -0.013120668940246105, + -0.019401555880904198, + -0.012328904122114182, + 0.013133975677192211, + 0.014863881282508373, + -0.030020516365766525, + -0.0018180642509832978, + 0.01865636743605137, + 0.009121925570070744, + 0.011277654208242893, + 0.007924298755824566, + -0.0274655781686306, + 0.028476906940340996, + -0.0219032671302557, + 0.018150702118873596, + -0.005755262915045023, + 0.008769290521740913, + -0.02682684361934662, + 0.017086144536733627, + -0.002900918712839484, + -0.011763358488678932, + -0.006859741173684597, + 0.02165043354034424, + 0.017937790602445602, + 0.012142607010900974, + 0.03906925395131111, + -0.0035762472543865442, + 0.012488587759435177, + -0.006723344791680574, + 0.013652946799993515, + -0.016647014766931534, + 0.04024026542901993, + 0.014797346666455269, + 0.023180734366178513, + -0.016780083999037743, + -0.026707081124186516, + 0.0007418633904308081, + 0.009521134197711945, + 0.028210768476128578, + -0.01125769317150116, + 0.004863696172833443, + 0.006081283558160067, + 0.017458738759160042, + 0.0022904614452272654, + 0.011437337845563889, + 0.03856358677148819, + 0.009348143823444843, + -0.008829171769320965, + 0.003386622993275523, + 0.013207163661718369, + 0.016287727281451225, + 0.000523130118381232, + -0.004141793120652437, + -0.012375478632748127, + -0.015901824459433556, + 0.01137080229818821, + 0.02331380546092987, + 0.013080747798085213, + 0.0008616260602138937, + 0.01419853325933218, + -0.000979725387878716, + 0.03135121241211891, + 0.014770732261240482, + 0.0077845752239227295, + 0.009481213055551052, + 0.0010928346309810877, + -0.003326741512864828, + 0.010306245647370815, + -0.01604820042848587, + 0.0180442463606596, + 0.03284159302711487, + 0.005113201681524515, + -0.0007896852912381291, + -0.015702219679951668, + -0.01643410325050354, + -0.008150517009198666, + -0.008602953515946865, + 0.005685401149094105, + -0.018935812637209892, + 0.03100523166358471, + -0.010905059054493904, + 0.0110647426918149, + 0.028822889551520348, + 0.0059482138603925705, + 0.037685327231884, + -0.009481213055551052, + 0.0011768348049372435, + -0.012222448363900185, + 0.00934149045497179, + -0.04609533026814461, + -0.011151237413287163, + -0.009780620224773884, + -0.019853994250297546, + 0.013094054535031319, + -0.009208420291543007, + -0.004630824085325003, + 0.01627441868185997, + 0.01252850890159607, + -0.014371523633599281, + -0.0064771659672260284, + 0.013839244842529297, + 0.023792855441570282, + 0.013692867942154408, + 0.008809211663901806, + -0.030446339398622513, + 0.005485796835273504, + 0.027651876211166382, + -0.009707432240247726, + -0.015223169699311256, + -0.0075517031364142895, + 0.0175918098539114, + -0.03135121241211891, + -0.012315597385168076, + -0.020466113463044167, + 0.003965476062148809, + -0.002766185672953725, + -0.019561240449547768, + -0.0018330345628783107, + 0.007451901212334633, + 0.014690890908241272, + -0.008769290521740913, + -0.0077845752239227295, + 0.01620788499712944, + 0.0003775851509999484, + -0.023819468915462494, + -0.023406952619552612, + -0.02775833196938038, + 0.023619864135980606, + -0.014331602491438389, + -0.010798603296279907, + -0.0270131416618824, + -0.0028676511719822884, + -0.006739978212863207, + -0.01252850890159607, + 0.024817490950226784, + -0.00258487812243402, + 0.013799323700368404, + -0.006264254450798035, + 0.0012125972425565124, + -0.004521041642874479, + -0.0186164453625679, + 0.04617517068982124, + -0.0090221231803298, + -0.0365409292280674, + -0.035582829266786575, + -0.002332045929506421, + 0.0035363263450562954, + -0.004723973106592894, + 0.025868741795420647, + 0.015409466810524464, + 0.00921507366001606, + -0.015489308163523674, + -0.005399301648139954, + -0.010865137912333012, + -0.0374458022415638, + 0.009181806817650795, + 0.026680467650294304, + -0.00956770870834589, + -0.00640730420127511, + 0.027359122410416603, + -0.004637477919459343, + 0.014784038998186588, + -0.02415214292705059, + 0.004531022161245346, + -0.009075351059436798, + 0.024458203464746475, + 0.020718947052955627, + -0.016420796513557434, + 0.005608886014670134, + -0.006803186610341072, + 0.032016560435295105, + 0.005768569651991129, + -0.02694660611450672, + 0.0274655781686306, + 0.025575987994670868, + 0.009321529418230057, + -0.05211007967591286, + -0.006111224181950092, + 0.03946845978498459, + 0.011184505186975002, + 0.017538581043481827, + -0.030818933621048927, + -0.006221006624400616, + 0.015063486061990261, + 0.008290239609777927, + 0.021211303770542145, + -0.011237733066082, + 0.0018330345628783107, + 0.025882048532366753, + 0.00709926662966609, + -0.0001267280604224652, + 0.004451180342584848, + 0.002453471766784787, + 0.007392019499093294, + 0.018004324287176132, + -0.003386622993275523, + -0.007871070876717567, + 0.0010703790467232466, + -0.03198994696140289, + 0.009321529418230057, + -0.020958472043275833, + -0.006886355113238096, + -0.013067441061139107, + -0.013233778066933155, + -0.01965438947081566, + -0.005835104733705521, + -0.01181658636778593, + -0.024418283253908157, + -0.01650063879787922, + 0.01575544849038124, + -0.007165801245719194, + -0.026507476344704628, + -0.027026448398828506, + -0.015595763921737671, + -0.02688007242977619, + -0.019574547186493874, + 0.01720590703189373, + 0.0005256251897662878, + -0.0029957308433949947, + -0.019414864480495453, + -0.012142607010900974, + 0.010625612922012806, + 0.0035596133675426245, + 0.025096938014030457, + -0.0029092354234308004, + -0.011563753709197044, + 0.015875210985541344, + -0.022728297859430313, + -0.016221191734075546, + -0.008110595867037773, + -0.03167057782411575, + -0.013060787692666054, + 0.028450293466448784, + -0.0032884839456528425, + 0.008736023679375648, + 0.012448666617274284, + -0.001911213039420545, + -0.004467813763767481, + 0.009700777940452099, + 0.012741420418024063, + -0.012355517596006393, + 0.012628311291337013, + 0.01890919916331768, + -0.01315393578261137, + 0.014624355360865593, + 0.016859926283359528, + -0.020279817283153534, + 0.012408745475113392, + -0.0390426404774189, + 0.0009847155306488276, + -0.011058089323341846, + 0.008582993410527706, + -0.0006474670954048634, + -0.005329439882189035, + 0.02412552945315838, + -0.006004768423736095, + -0.001090339501388371, + -0.0015036871191114187, + -0.019162030890583992, + -0.011776665225625038, + 0.00741198007017374, + -0.010492542758584023, + 0.021237917244434357, + -0.005735302343964577, + 0.020120132714509964, + 0.023979153484106064, + 0.009986878372728825, + -0.010099987499415874, + -0.03760548681020737, + 0.029275326058268547, + -0.00394884217530489, + 0.010026798583567142, + 0.05030033364892006, + -0.02299443818628788, + 0.003955495543777943, + -0.02964792028069496, + 0.01249524112790823, + 0.022821446880698204, + 0.011058089323341846, + -0.004101872444152832, + -0.01534293219447136, + -0.012082724831998348, + 0.011091356165707111, + 0.004717319272458553, + 0.013852551579475403, + -0.009734045714139938, + 0.0028110966086387634, + -0.0043081301264464855, + 0.006586948409676552, + -0.012288982979953289, + -0.0003127137024421245, + -0.005139815621078014, + -0.026281258091330528, + -0.032655294984579086, + 0.016447409987449646, + -0.016221191734075546, + 0.018323691561818123, + 0.0005642985343001783, + -0.001054577063769102, + -0.027438964694738388, + -0.0116901695728302, + -0.011284307576715946, + -0.024271905422210693, + 0.005099894944578409, + -0.006374036893248558, + -0.0004765557241626084, + 0.014943722635507584, + 0.03946845978498459, + -0.0011626961641013622, + 0.0036361285019665956, + 0.0012616667663678527, + -0.015462694689631462, + 0.0035795739386230707, + -0.028583362698554993, + 0.005984807852655649, + -0.03837728872895241, + 0.036940138787031174, + 0.008749330416321754, + 0.01258839014917612, + -0.008456576615571976, + 0.001991054741665721, + 0.00960097648203373, + 0.04247583448886871, + -0.024431589990854263, + -0.004248248878866434, + -0.0059482138603925705, + -0.024591272696852684, + -0.0007505960529670119, + -0.0006595265003852546, + 0.010352819226682186, + 0.01528970431536436, + -0.02324726991355419, + 0.006430591456592083, + 0.01788456179201603, + 0.007651505526155233, + -0.0005572292138822377, + 0.0046408046036958694, + 0.017671650275588036, + -0.0481179878115654, + 0.0265607051551342, + 0.008170477114617825, + 0.028184155002236366, + -0.011623634956777096, + -0.005206350702792406, + -0.010925019159913063, + -0.0023686399217694998, + 0.02884950302541256, + -0.01341342180967331, + 0.01813739538192749, + 0.004091891925781965, + -0.0076914262026548386, + 0.0038756539579480886, + -0.014784038998186588, + 0.018696287646889687, + -0.01688653975725174, + -0.0013448352692648768, + -0.02392592467367649, + -0.01519655529409647, + -0.015875210985541344, + -0.014105384238064289, + 0.001680004526861012, + 0.019947141408920288, + -0.0059548672288656235, + 0.008083981461822987, + 0.009740699082612991, + -0.010752028785645962, + 0.001778143341653049, + 0.016673628240823746, + -0.014917109161615372, + 0.022475466132164, + 0.01528970431536436, + 0.02839706651866436, + 0.030153585597872734, + -0.031085072085261345, + -0.005558985285460949, + -0.04694697633385658, + -0.0005788530106656253, + -0.0022023029159754515, + 0.025043711066246033, + 0.028663204982876778, + -0.020306430757045746, + 0.0027046408504247665, + 0.009800580330193043, + -0.006290868390351534, + -0.012980945408344269, + -0.02004029043018818, + 0.028450293466448784, + 0.019760845229029655, + 0.011663556098937988, + -0.014850574545562267, + 0.013173896819353104, + -0.040506403893232346, + 0.00213410472497344, + -0.00528951920568943, + -0.02174358256161213, + -0.0036926830653101206, + -0.004577596206218004, + -0.013573105446994305, + 0.040639474987983704, + 0.007704733405262232, + 0.0331343449652195, + 0.012768033891916275, + -0.03159073740243912, + 0.011324227787554264, + -0.016261111944913864, + -0.020532649010419846, + 0.024591272696852684, + -0.016873233020305634, + 0.04431219771504402, + -0.006806513294577599, + -0.009747352451086044, + 0.008383388631045818, + -0.00653704721480608, + 0.0016184597043320537, + -0.0018995694117620587, + 0.006171105429530144, + 0.02322065643966198, + -0.006853087339550257, + 0.009195113554596901, + 0.023074278607964516, + -0.007425287272781134, + 0.0061444914899766445, + 0.020146746188402176, + -0.012621656991541386, + -0.0141852255910635, + -0.03052617982029915, + -0.009587668813765049, + 0.0020642431918531656, + 1.6542742741876282e-05, + -0.012854529544711113, + -0.007924298755824566, + -0.005183063447475433, + 0.006467185448855162, + -0.007578317075967789, + -0.016513945534825325, + 0.012076071463525295, + -0.030659249052405357, + -0.010006838478147984, + 0.009434638544917107, + -0.008396695367991924, + 0.035077162086963654, + 0.003226939355954528, + -0.01419853325933218, + -0.011523832567036152, + 0.012774687260389328, + -0.034331973642110825, + 0.014757425524294376, + 0.027545420452952385, + -0.0066301957704126835, + -0.010426008142530918, + 0.004570942837744951, + -0.000698199903126806, + -0.004660764709115028, + 0.034944094717502594, + -0.002322065643966198, + -0.030126972123980522, + -0.002388600492849946, + 0.005003419239073992, + 0.022861367091536522, + -0.033719852566719055, + -0.00014606474724132568, + 0.00956770870834589, + 0.02042619325220585, + -0.010292937979102135, + -0.004424566403031349, + 0.003466464579105377, + 0.0014238454168662429, + 0.010745375417172909, + 0.004244922194629908, + 0.0027778290677815676, + -0.016354260966181755, + 0.026520783081650734, + 0.008316854014992714, + -0.008017446845769882, + 0.0037492376286536455, + -0.021690355613827705, + -0.025163473561406136, + 0.02855674922466278, + 0.013000905513763428, + -0.03406583145260811, + -0.007718040142208338, + -0.03241576999425888, + -0.017738185822963715, + -0.013593065552413464, + 0.01666032150387764, + 0.01088509801775217, + 0.015476001426577568, + 0.014983643777668476, + 0.011823239736258984, + 0.0066301957704126835, + 0.01534293219447136, + 0.003473118180409074, + -0.0279180146753788, + 0.031111687421798706, + 0.0021474116947501898, + -0.029435008764266968, + -0.0021307780407369137, + -0.006154472008347511, + 0.02778494544327259, + 0.036966752260923386, + -0.04106529802083969, + -0.011796625331044197, + 0.0015910140937194228, + -0.019388249143958092, + -0.04138466343283653, + -0.02322065643966198, + -0.01656717248260975, + 0.0141852255910635, + 0.016553865745663643, + -0.014517899602651596, + 0.045882418751716614, + -0.005565638653934002, + 0.021889958530664444, + -0.02051934227347374, + -0.01813739538192749, + 0.0020209953654557467, + -0.010166522115468979, + 0.004647457972168922, + -0.013626333326101303, + -0.034970708191394806, + -0.0025200066156685352, + 0.02512355148792267, + 0.010359473526477814, + 0.025935277342796326, + 0.01965438947081566, + -0.016420796513557434, + -0.03425212949514389, + -5.738629261031747e-05, + 0.013293659314513206, + 0.03206978738307953, + -0.0023403626400977373, + 0.011051435023546219, + -0.028636591508984566, + 0.0018080839654430747, + -0.007085959427058697, + 0.009507827460765839, + -0.023460181429982185, + -0.007365405559539795, + 0.02065241150557995, + -0.012648271396756172, + -0.01045262161642313, + -0.0017964404541999102, + -0.023074278607964516, + -0.008676141500473022, + -0.014890494756400585, + 0.034465041011571884, + 0.016314340755343437, + -0.011656902730464935, + 0.007026078179478645, + 0.02154397778213024, + -0.002782819326967001, + -0.027971243485808372, + 0.015529229305684566, + -0.024884026497602463, + -0.01258839014917612, + 0.0137327890843153, + -0.013786016963422298, + 0.0009980225004255772, + -0.0026796902529895306, + 0.013719482347369194, + -0.0005351895233616233, + -0.0025249968748539686, + -0.0073121776804327965, + -0.011091356165707111, + -0.04894302040338516, + 0.027705103158950806, + 0.02435174770653248, + -0.010891751386225224, + 0.008968895301222801, + -0.004580922890454531, + -0.007664812263101339, + -0.0033483654260635376, + -0.02871643379330635, + -0.011783318594098091, + -0.007238989695906639, + -0.019241873174905777, + 0.00936145056039095, + -0.02408560924232006, + 0.0037825051695108414, + 0.014291681349277496, + -0.01183654647320509, + -0.02962130680680275, + -0.01273476704955101, + 0.19513335824012756, + -0.02090524323284626, + -0.018084166571497917, + 0.012195834890007973, + -0.007425287272781134, + -0.013985621742904186, + 0.019641082733869553, + 0.004224961623549461, + 0.03579573705792427, + 0.031085072085261345, + 0.011018168181180954, + 0.012601696886122227, + 0.01534293219447136, + 0.0020542629063129425, + 0.003739257575944066, + -0.008709409274160862, + -0.031404439359903336, + -0.011523832567036152, + -0.008283586241304874, + 0.0031404439359903336, + 0.016513945534825325, + -0.011969615705311298, + -0.021557284519076347, + -0.012794648297131062, + 0.030126972123980522, + 0.010871791280806065, + -0.016008280217647552, + -0.0015660636126995087, + 0.030499566346406937, + 0.014105384238064289, + -0.028663204982876778, + -0.0031138299964368343, + 0.015023564919829369, + -0.013513224199414253, + 0.0024068974889814854, + 0.010086680762469769, + 0.011716783978044987, + -0.008449923247098923, + 0.04535014182329178, + 0.019175337627530098, + 0.004677398595958948, + -0.03962814435362816, + -0.00922838132828474, + -0.03590219467878342, + 0.0016899846959859133, + 0.021850038319826126, + 0.013799323700368404, + 0.002330382354557514, + -0.010652226395905018, + -0.0003214463940821588, + -0.011397416703402996, + 0.005129835568368435, + 0.008463230915367603, + 0.0333738699555397, + -0.009374757297337055, + -0.028130926191806793, + 0.02868981845676899, + -0.016061509028077126, + 0.014012235216796398, + -0.001398894819431007, + -0.04029349237680435, + 0.019987063482403755, + -0.008256972767412663, + 0.015329624526202679, + -0.032176245003938675, + 0.004647457972168922, + -0.013865858316421509, + 0.002225590171292424, + -0.01358641218394041, + -0.028210768476128578, + 0.012442013248801231, + -0.022714991122484207, + -0.018376920372247696, + -0.00418171426281333, + -0.0263344869017601, + -0.04295488819479942, + 0.003080562688410282, + 0.010352819226682186, + 0.03483763709664345, + 0.0313245989382267, + 0.003968802746385336, + 0.01852329634130001, + -0.014318295754492283, + -0.02451143227517605, + -0.024644501507282257, + -0.025429612025618553, + 0.019800765439867973, + 0.013593065552413464, + 0.01033951248973608, + -0.009474559687077999, + -0.032176245003938675, + -0.012408745475113392, + 0.005738629028201103, + -0.012807955034077168, + 0.005831778049468994, + 0.0011643595062196255, + 0.0057020350359380245, + -0.0041051991283893585, + -0.009474559687077999, + -0.008582993410527706, + -0.014704197645187378, + 0.047931693494319916, + 0.040479790419340134, + -0.021051621064543724, + -0.0039089214988052845, + -0.029062414541840553, + 0.005914946552366018, + 0.02319404110312462, + -0.009833848103880882, + -0.007046038750559092, + 0.0032219490967690945, + -0.03348032757639885, + 0.01659378595650196, + -0.000623348169028759, + 0.012129299342632294, + 0.014544514007866383, + 0.0018430148484185338, + 0.0059049660339951515, + 0.006786552723497152, + 0.0032918108627200127, + -0.000539763830602169, + -0.01695307530462742, + 0.01505017839372158, + -0.0028360472060739994, + 0.01307409442961216, + -0.032309312373399734, + -0.0458558052778244, + 0.018337000161409378, + 0.0022921250201761723, + -0.009900382719933987, + 0.027066368609666824, + 0.0010271314531564713, + 0.04183709993958473, + 0.001394736347720027, + 0.0023603232111781836, + -0.00968081783503294, + -0.014131997711956501, + -0.020239895209670067, + -0.018416840583086014, + 0.011297614313662052, + 0.035715896636247635, + 0.018536603078246117, + -0.004906943533569574, + 0.00709261279553175, + 0.015542536042630672, + 0.0036494354717433453, + 0.022369010373950005, + 0.0029691169038414955, + -0.0222492478787899, + -0.029568077996373177, + -0.002526660216972232, + -0.0034032566472887993, + 0.013386808335781097, + -0.010346165858209133, + 0.03143105283379555, + 0.018177315592765808, + -0.03198994696140289, + -0.039867669343948364, + -0.0036427818704396486, + 0.0034198903013020754, + -0.024431589990854263, + -0.014664276503026485, + 0.008157170377671719, + -0.03135121241211891, + 0.0031254736240953207, + 0.008410003036260605, + -0.16830651462078094, + 0.013453342951834202, + 0.010026798583567142, + -0.029594693332910538, + 0.016167962923645973, + 0.006314155645668507, + 0.030286654829978943, + 0.011251039803028107, + -0.009035429917275906, + -0.0034564845263957977, + 0.028290610760450363, + -0.0029607999604195356, + -0.011889774352312088, + -0.012049457989633083, + -0.011270999908447266, + 0.0022488771937787533, + -0.03055279515683651, + 0.024644501507282257, + 0.02006690576672554, + 0.039255548268556595, + 0.008496497757732868, + -0.022914595901966095, + 0.01659378595650196, + 0.006267581135034561, + -0.014464671723544598, + 0.019281793385744095, + -0.027864787727594376, + 0.03289481997489929, + -0.0048304288648068905, + -0.01292771752923727, + -0.01618127152323723, + 0.007465207949280739, + 0.0279180146753788, + 0.0037093167193233967, + -0.011670209467411041, + -0.005712015088647604, + -0.0012575082946568727, + -0.0014122017892077565, + -0.011410723440349102, + 0.01791117712855339, + 0.018443455919623375, + 0.020093519240617752, + 0.008716062642633915, + 0.006240967195481062, + -0.01352653093636036, + 0.03257545456290245, + 0.023500101640820503, + -0.02469772845506668, + -0.009813887067139149, + -0.01627441868185997, + -0.006859741173684597, + -0.014025541953742504, + 0.020173361524939537, + 0.0027046408504247665, + -0.014477979391813278, + 0.018030939623713493, + -0.014637663029134274, + 0.020798787474632263, + -0.004963498562574387, + -0.012402092106640339, + -0.0007464376394636929, + -0.008975548669695854, + 0.01958785392343998, + -0.01707283779978752, + -0.005439222324639559, + -0.02778494544327259, + -0.019188644364476204, + 0.03379969298839569, + -0.01572883315384388, + -0.01238213200122118, + 0.01427837461233139, + -0.025815514847636223, + -0.00913523230701685, + -0.0069795036688447, + 0.011903081089258194, + 0.0055057574063539505, + -0.0075383963994681835, + 0.0023569962941110134, + -0.0014845584519207478, + -0.014092077501118183, + -0.0227016843855381, + 0.058390967547893524, + 0.009002162143588066, + -0.022581921890378, + -0.0013764393515884876, + -0.022848060354590416, + -0.017738185822963715, + 0.02644094079732895, + -0.0020143419969826937, + 0.005608886014670134, + 0.010618958622217178, + -0.02131775952875614, + -0.009288262575864792, + -0.023779548704624176, + 0.011923041194677353, + -0.0071591478772461414, + -0.006523740012198687, + 0.006946236360818148, + -0.01260835025459528, + -0.004407932516187429, + 0.008596300147473812, + -0.002157391980290413, + -0.03457149863243103, + 0.008210398256778717, + -0.008197091519832611, + -6.767839659005404e-05, + -0.012076071463525295, + 0.02431182749569416, + 0.03409244865179062, + 0.009168500080704689, + -0.01988060772418976, + 0.002674700226634741, + 0.012249062769114971, + 0.03438520058989525, + -0.011796625331044197, + 0.01341342180967331, + -0.012488587759435177, + 0.0003212384763173759, + 0.0015386180020868778, + 0.013759402558207512, + 0.04827767238020897, + 0.0007202395354397595, + -0.004674071911722422, + 0.01347330305725336, + -0.010399393737316132, + -0.028290610760450363, + -0.08250319212675095, + 0.009960263967514038, + 0.018962426111102104, + 0.016766777262091637, + -0.0011211119126528502, + 0.02142421528697014, + 0.002503372961655259, + 0.0032918108627200127, + 0.020878629758954048, + 0.05998780205845833, + -0.023713013157248497, + -0.026068346574902534, + -0.014371523633599281, + -0.0022039662580937147, + -0.0022754911333322525, + -0.014344909228384495, + 0.00026613930822350085, + -0.0403999499976635, + -0.024484816938638687, + 0.028290610760450363, + -0.004860369488596916, + -0.012867836281657219, + -0.009527787566184998, + 0.009561055339872837, + -0.023726319894194603, + -0.008962241932749748, + -0.03824422135949135, + 0.01450459286570549, + 0.014105384238064289, + 0.013466649688780308, + 0.012754727154970169, + -0.02440497651696205, + 0.00979392696171999, + -0.012388785369694233, + -0.022182712331414223, + -0.021504057571291924, + -0.017059531062841415, + -0.003361672395840287, + 0.021756889298558235, + -0.013539837673306465, + -0.0011602011509239674, + 0.0014546177117154002, + -0.01022640336304903, + -0.013233778066933155, + 0.0038490400183945894, + -0.009487866424024105, + 0.0021607186645269394, + 0.011796625331044197, + -0.0019810746889561415, + -0.001398894819431007, + -0.017578503116965294, + -0.017126064747571945, + -0.010851831175386906, + 0.02868981845676899, + 0.01138410996645689, + 0.01125769317150116, + 0.010539117269217968, + 0.0011161217698827386, + -0.009434638544917107, + 0.0005634668632410467, + -0.027678489685058594, + 0.024138836190104485, + -0.02165043354034424, + 0.03188348934054375, + -0.01634095422923565, + 0.0025549374986439943, + -0.020319737493991852, + -0.01099820714443922, + 0.02367309294641018, + -0.011563753709197044, + -0.02653408981859684, + 0.008549725636839867, + 0.0020442826207727194, + -0.0006125362706370652, + -0.02601511962711811, + 0.002834383863955736, + -0.0558360293507576, + -0.013366847299039364, + 0.014025541953742504, + 0.006793206091970205, + -0.008230358362197876, + -0.036514315754175186, + 0.031723808497190475, + -0.010685494169592857, + 0.0351836197078228, + 0.031111687421798706, + -0.011251039803028107, + -0.02887611649930477, + 0.017245827242732048, + -0.011430683545768261, + -0.006344096269458532, + 0.020506035536527634, + 0.02778494544327259, + -0.004870349541306496, + -0.03175042197108269, + 0.00641728425398469, + 0.02004029043018818, + -0.008024100214242935, + -0.026228031143546104, + 0.0008574676467105746, + -0.026720387861132622, + 0.0008899033418856561, + -0.05336093530058861, + 0.02688007242977619, + 0.026800230145454407, + -0.008303547278046608, + -0.017605116590857506, + -0.0013847561785951257, + 0.011776665225625038, + 0.021796811372041702, + 0.024790877476334572, + -0.007678119465708733, + -0.023526716977357864, + 0.0002168619685107842, + -0.03198994696140289, + 0.00047073393943719566, + -0.02081209421157837, + -0.03350694105029106, + -0.00046241708332672715, + 0.02483079954981804, + 0.005885005928575993, + -0.01656717248260975, + -0.012209141626954079, + 0.019281793385744095, + 0.007857763208448887, + 0.01807085983455181, + -0.019853994250297546, + -0.000664932478684932, + -0.007252296432852745, + 0.002065906533971429, + 0.0028460274916142225, + -0.004906943533569574, + 0.004434546455740929, + 0.015941744670271873, + 0.006560334470123053, + 0.0419967845082283, + -0.0052163307555019855, + -0.012887796387076378, + 0.018736207857728004, + 0.03938861936330795, + 0.01598166674375534, + 0.049581754952669144, + -0.009254994802176952, + -0.019933834671974182, + 0.0016118062194436789, + -0.023726319894194603, + 0.007771268021315336, + -0.004041990730911493, + 0.03686029464006424, + -0.0017881236271932721, + -0.003399929963052273, + -0.027971243485808372, + 0.02948823757469654, + 0.008190437220036983, + 0.0012408746406435966, + -0.01258839014917612, + -0.005096568260341883, + -0.004504408221691847, + 0.01945478469133377, + 0.012694845907390118, + 0.038031309843063354, + -0.01890919916331768, + 0.04228954017162323, + -0.009607629850506783, + 0.01961446739733219, + -0.02000037021934986, + -0.0011535476660355926, + -0.022714991122484207, + -0.028583362698554993, + -0.005166429560631514, + -0.004817121662199497, + -0.0182704646140337, + -0.028902729973196983, + -0.0021124808117747307, + 0.018217235803604126, + 0.024298520758748055, + 0.0017565195448696613, + -0.02058587595820427, + -0.002184005919843912, + 0.036487702280282974, + -0.014611048623919487, + 0.01330031268298626, + 0.03041972406208515, + 0.021011698991060257, + 0.0009198440238833427, + 0.006354076322168112, + 0.020253201946616173, + 0.001744875917211175, + -0.024724343791604042, + 0.00574195571243763, + 0.0032801672350615263, + -0.004950191359966993, + -0.0019611141178756952, + 0.022262554615736008, + -0.010499196127057076, + -0.004441199824213982, + 0.0037525645457208157, + 0.008802558295428753, + 0.010984900407493114, + -0.01022640336304903, + 0.02660062536597252, + 0.04779862239956856, + 0.01352653093636036, + -0.0031088399700820446, + -0.015369545668363571, + -0.0365409292280674, + 0.000239733315538615, + 0.02090524323284626, + -0.012282329611480236, + -0.035077162086963654, + 0.011843199841678143, + 0.016061509028077126, + -0.002373630180954933, + 0.012262369506061077, + 0.011982923373579979, + 0.017006302252411842, + 0.0005896649090573192, + -0.0011285970686003566, + -0.009933650493621826, + -0.0022172732278704643, + -0.024418283253908157, + 0.03475779667496681, + 0.016647014766931534, + 0.016806697472929955, + 0.012481934390962124, + 0.006048016250133514, + 0.012016190215945244, + -0.02022658847272396, + 0.021530671045184135, + -0.008775943890213966, + -0.0003969218523707241, + -0.015702219679951668, + 0.008895707316696644, + -0.0006221006624400616, + -0.008024100214242935, + -0.01977415196597576, + -0.023846082389354706, + 0.01614134944975376, + 0.02106492780148983, + -0.005196370184421539, + 0.0005597242852672935, + 0.14201194047927856, + 0.024431589990854263, + -0.004028683993965387, + 0.016647014766931534, + -0.014637663029134274, + 0.021051621064543724, + 0.0071591478772461414, + -0.012135952711105347, + 0.0034132366999983788, + -0.060253944247961044, + 0.00864952802658081, + -0.022568615153431892, + 0.02290128916501999, + -0.021331066265702248, + -0.00027882252470590174, + 0.01823054440319538, + 0.0028011163230985403, + 0.0223557036370039, + -0.047772008925676346, + -0.014331602491438389, + 0.030792320147156715, + -0.01888258568942547, + 0.012501894496381283, + 0.05737963691353798, + -0.0030007208697497845, + -0.017711572349071503, + 0.016008280217647552, + 0.009926997125148773, + -0.0019478071480989456, + -0.02145082876086235, + -0.001911213039420545, + 0.004580922890454531, + -0.06387344002723694, + -0.022462159395217896, + 0.012555122375488281, + -0.042502451688051224, + 0.002132441382855177, + -0.02415214292705059, + 0.03443842753767967, + 0.006972850300371647, + 0.004850388970226049, + 0.02980760484933853, + -0.020253201946616173, + -0.008143863640725613, + 0.012262369506061077, + -0.0036461087875068188, + 0.001321548130363226, + -0.014025541953742504, + -0.050087422132492065 + ], + "metadata": { + "source": "Thesis_Verladegeraeusche_in_Speditionen.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 41, + "has_images": true, + "image_count": 51, + "coordinates": "CoordinatesMetadata(points=((204.16666666666666, 189.02777777777797), (204.16666666666666, 642.3611111111111), (936.1666666666666, 642.3611111111111), (936.1666666666666, 189.02777777777797)), system=)", + "links": [], + "last_modified": "2025-05-05T22:59:16", + "_known_field_names": "frozenset({'cc_recipient', 'link_texts', 'url', 'filetype', 'category_depth', 'page_number', 'filename', 'orig_elements', 'detection_origin', 'email_message_id', 'page_name', 'coordinates', 'table_as_cells', 'link_start_indexes', 'sent_to', 'bcc_recipient', 'languages', 'last_modified', 'link_urls', 'file_directory', 'subject', 'data_source', 'detection_class_prob', 'image_base64', 'text_as_html', 'attached_to_filename', 'key_value_pairs', 'signature', 'sent_from', 'header_footer_type', 'parent_id', 'links', 'emphasized_text_contents', 'emphasized_text_tags', 'image_mime_type', 'is_continuation', 'image_path'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "Thesis_Verladegeraeusche_in_Speditionen.pdf", + "detection_class_prob": 0.2568194270133972, + "parent_id": "d45475a34bc527cde6987546fa6dd2f5", + "text_as_html": "
Flurf\u00f6rderger\u00e4t |Anzahl Einzelereignisse ElMax-PegelSchallleistungspegel
LAFmaxLWA,5sLWAmaxLWA,1hKlLWAT,1h
[dB(A)][dB(A)][dB(A)][dB(A)][dB(A)][dB(A)]
Gabelstapler29769,3100,7108,872,15,777,8
STABW [dB]6,54,96,54,92,9-
Gabelhubwagen9968,6100,7108,172,16,279,5
STABW [dB]6,45,16,4512,7-
", + "id": "5ba44de7-0ff3-4c0c-b018-67e92171e1c2", + "processing_timestamp": "2025-05-06T14:18:19.298665", + "chunk_number": 27, + "total_chunks": 49, + "chunking_strategy": "hybrid", + "word_count": 493 + } +} \ No newline at end of file diff --git a/data/processed/85fd305f-83de-70b0-47e8-2dc000000028.json b/data/processed/85fd305f-83de-70b0-47e8-2dc000000028.json new file mode 100644 index 0000000000000000000000000000000000000000..614a3fbabec15f2bd27cd50483f455c699522467 --- /dev/null +++ b/data/processed/85fd305f-83de-70b0-47e8-2dc000000028.json @@ -0,0 +1,1570 @@ +{ + "id": "85fd305f-83de-70b0-47e8-2dc000000028", + "content": "Die Vergleichsergebnisse sind in 7.4 dargestellt und erl\u00e4utert. 55\n7 Ergebnisse und Interpretation\n\n## 7 Ergebnisse und Interpretation\n\nIn diesem Kapitel werden die Ergebnisse der Auswertung und Validierung der Verlade- ger\u00e4usche pr\u00e4sentiert und interpretiert. Die vorgestellten Ergebnisse dienen als Grund- lage f\u00fcr eine Schallimmissionsprognose und dient zur Entwicklung geeigneter L\u00f6sungs- ans\u00e4tze und Ma\u00dfnahmen, um den L\u00e4rmpegel effektiv in Speditionen zu verringern. Die Auswertung ist ein wesentlicher Schritt zur Gewinnung von Kennwerten. In diesem Kon- text wurden in Kapitel 7, die Vorgehensweise zur Auswertung beschrieben. ## 7.1 Verladeger\u00e4usche\n\nNachdem die Auswertung der Verladeger\u00e4usche abgeschlossen ist, k\u00f6nnen nun die Er- gebnisse dargestellt und interpretiert werden. Dabei werden die gemessenen Schallpe- gel und andere relevante Kenngr\u00f6\u00dfen der Verladeger\u00e4usche zusammenfassend darge- stellt. Die detaillierten Ergebnisse, einschlie\u00dflich aller relevanten Daten, sind im Anhang 4: Messergebnisse der Beladevorg\u00e4nge \u00fcbersichtlich aufgef\u00fchrt. Da die Verladevorg\u00e4nge nicht station\u00e4r sind, wurden sie als Fl\u00e4chenschallquelle model- liert, entsprechend der H\u00f6he und L\u00e4nge des jeweiligen Anh\u00e4ngers. Wenn der genaue Anh\u00e4ngertyp nicht bekannt ist, empfiehlt es sich, eine durchschnittliche L\u00e4nge und H\u00f6he zu w\u00e4hlen. Die Ergebnisse des allgemeinen Beladevorgangs f\u00fcr die verschiedenen Flur- f\u00f6rderger\u00e4te sind in Tabelle 11 dargestellt. Analog k\u00f6nnen die Kennwerte eines Belade- vorgangs f\u00fcr einen Entladevorgang verwendet werden. | Anzahl Max-Pegel Schallleistungspegel Flurf\u00f6rderger\u00e4t | Einzelereignisse LAFmax LWA,5s LWAmax LWA,1h Kl LWAT,1h E [dB(A)] [dB(A)] [dB(A)] [dB(A)] [dB(A)] [dB(A)] Gabelstapler 297 69,3 100,7 108,8 72,1 5,7 77,8 STABW [dB] 6,5 4,9 6,5 4,9 2,9 - Gabelhubwagen 99 68,6 100,7 108,1 72,1 6,2 79,5 STABW [dB] 6,4 5,1 6,4 5,1 2,7 - |\n\nTabelle 11: Emissionsans\u00e4tze f\u00fcr die verschiedenen Flurf\u00f6rderger\u00e4te Mit: LAFmax: Maximal-Pegel [dB(A)], LWA,5s: Schallleistungspegel bezogen auf 5 Sekunden [dB(A)], LWAmax: maximale Schallleistungspegel bezogen auf 5 Sekunden [dB(A)], LWA,1h: st\u00fcndliche Schall- leistungspegel [dB(A)], KI: Impulszuschlag [dB(A)], LWAT,1h: impulsbehaftete st\u00fcndliche Schallleis- tungspegel [dB(A)], STABW: Standardabweichung [dB]\nTabelle 11: Emissionsans\u00e4tze f\u00fcr die verschiedenen Flurf\u00f6rderger\u00e4te\n56\n7 Ergebnisse und Interpretation\nDas Ziel war es, einen Kennwert des Schallleistungspegels zu ermitteln, der die L\u00e4rmbe- lastung der Flurf\u00f6rderger\u00e4te repr\u00e4sentiert, welche f\u00fcr eine Schallimmissionsprognose verwendet werden kann. Durch das Zusammenf\u00fchren der Messergebnisse konnte ein durchschnittlicher Kennwert f\u00fcr die Emissionen der Flurf\u00f6rderger\u00e4te ermittelt werden, wenn der genaue Anh\u00e4ngertyp nicht bekannt ist. Es ist anzumerken, dass m\u00f6glicher- weise nicht alle spezifischen Unterschiede zwischen den Flurf\u00f6rderger\u00e4ten erfasst wer- den k\u00f6nnen. Die Verwendung dieser Kennwerte erm\u00f6glicht eine vereinfachte Bewer- tung und Vergleichbarkeit der L\u00e4rmbelastung verschiedener Flurf\u00f6rderger\u00e4te. Auf diese Weise k\u00f6nnen zudem Ma\u00dfnahmen zur L\u00e4rmminderung gezielt entwickelt und umge- setzt werden, um die Gesamtemissionen zu reduzieren. Es sollte bei Bedarf noch zus\u00e4tz- liche spezifische Untersuchungen und Messungen f\u00fcr bestimmte Situationen der Flur- f\u00f6rderger\u00e4te durchgef\u00fchrt werden, um eine detailliertere und pr\u00e4zisere Bewertung vor- zunehmen. Nachdem nun die Ergebnisse der Verladeger\u00e4usche vorliegen, gilt es, diese zu interpretieren und daraus Schlussfolgerungen zu ziehen. Im Allgemeinen l\u00e4sst sich aus den Ergebnissen schlie\u00dfen, dass die Verladung mit einem Gabelhubwagen lauter vonstatten ist, als mit einem Gabelstapler. Dies deutet darauf hin, dass der Gabelhubwagen eine etwas h\u00f6here Ger\u00e4uschentwicklung aufweist und so- mit eine h\u00f6here L\u00e4rmbelastung verursacht. Die Kennwerte des Schallleistungspegels der Flurf\u00f6rderger\u00e4te sind identisch, dennoch zeigt sich ein Unterschied in der Impulshaf- tigkeit der Ger\u00e4uschentwicklung. Es Unterscheidet sich im impulsbehafteten Schallleis- tungspegel, der beim Gabelhubwagen um 1,7 dB(A) h\u00f6her ist als bei einem Gabelstapler. Dies bedeutet, dass es zu kurzzeitigen hohen Schallsignalen kommt und somit den im- pulsbehafteten Schallleistungspegel erh\u00f6hen. Dies hat M\u00f6glicherweise die Begr\u00fcndung, dass der Gabelhubwagen durch bestimmte Vorg\u00e4nge, wie beispielsweise das \u00dcberfah- ren der \u00dcberladebr\u00fccke in den Anh\u00e4nger, impulsbehaftete Schallereignisse hervorruft.", + "embedding": [ + -0.0007852065027691424, + 0.02467363514006138, + 0.005425668321549892, + -0.03029581345617771, + -0.0025712805800139904, + 0.0051592146046459675, + -0.012903032824397087, + -0.017612606287002563, + -0.032081056386232376, + -0.031734663993120193, + -0.002562953857704997, + 0.03074878640472889, + -0.023274753242731094, + 0.004982688929885626, + 0.010451655834913254, + 0.003966832999140024, + 0.03144156560301781, + 0.00019109743880108, + 0.01117108203470707, + -0.009832150302827358, + -0.01770586520433426, + -0.00506262481212616, + -0.013269406743347645, + -0.006714639253914356, + -0.02211567759513855, + 0.016799921169877052, + 0.04044770821928978, + -0.015480974689126015, + -0.01412205956876278, + 0.012243558652698994, + -0.007394096814095974, + -0.0057154372334480286, + -0.014455126598477364, + -0.0014555046800523996, + -0.011397567577660084, + -0.028510572388768196, + -0.00809353869408369, + -0.01749270223081112, + 0.020889990031719208, + -0.0057154372334480286, + 0.01326274499297142, + -0.005189190618693829, + 0.0013455924345180392, + -0.03703709691762924, + -0.006361587904393673, + 0.025819387286901474, + 0.006424870807677507, + -0.0049460516311228275, + -0.024527085945010185, + 0.020383726805448532, + 0.012323495000600815, + 0.002203240990638733, + -0.01107116136699915, + 0.010671480558812618, + 0.005025987513363361, + 0.004279916640371084, + 0.004319884814321995, + 0.004010132048279047, + -0.0063482653349637985, + -0.014241963624954224, + -0.0305356215685606, + -6.264529929467244e-06, + -0.027271561324596405, + 0.010904627852141857, + -0.01422864105552435, + -0.01853187195956707, + 0.006887834519147873, + 0.0059286002069711685, + -0.0038336061406880617, + 0.0006969436071813107, + 0.024580376222729683, + 0.036317672580480576, + -0.007474033161997795, + 0.00798695720732212, + 0.03237415477633476, + -0.012350140139460564, + 0.010897966101765633, + 0.0009250948205590248, + -0.004523055627942085, + 0.01999736949801445, + 0.028537217527627945, + -0.017772478982806206, + -0.02696513943374157, + 0.0421796590089798, + 0.01598723605275154, + -0.00914603192359209, + -0.013642442412674427, + 0.005329078994691372, + -0.03810291364789009, + -0.0019700939301401377, + 0.002597925951704383, + 0.038635823875665665, + 0.006947786547243595, + -0.008613123558461666, + 0.030029360204935074, + -0.017599282786250114, + -0.0037603313103318214, + 0.023754369467496872, + 0.0016819905722513795, + -0.03280048072338104, + -0.017732510343194008, + -0.016107141971588135, + -0.007980295456945896, + 0.009032788686454296, + -0.030615558847784996, + 0.0015787396114319563, + -0.00011626134801190346, + 0.004153350833803415, + 0.001833536196500063, + -0.03224092721939087, + -0.02968296967446804, + 0.016999762505292892, + -0.009692261926829815, + 0.005185859743505716, + 0.004766195081174374, + -0.007340806070715189, + 0.029816197231411934, + -0.006804567761719227, + -0.00021732649474870414, + -0.029629679396748543, + 0.021103153005242348, + 0.003810291411355138, + 0.04098061844706535, + -0.014774871058762074, + 0.023101557046175003, + 0.01982417330145836, + 0.005019326228648424, + 0.005302433390170336, + -0.007767132483422756, + -0.019424492493271828, + -0.03661077097058296, + -0.007074352353811264, + 0.01644020900130272, + -0.011124452576041222, + -0.009452453814446926, + 0.0358380563557148, + -0.004952712915837765, + 0.00415002042427659, + -0.005202513188123703, + -0.028377344831824303, + -0.010877982713282108, + 0.0062983050011098385, + -0.02779114618897438, + -0.05222497507929802, + -0.009185999631881714, + 0.04654950648546219, + 0.024500440806150436, + 0.027311529964208603, + -0.02571280673146248, + -0.004619645420461893, + -0.01767922006547451, + -0.03637096285820007, + 0.023954210802912712, + 0.005615517031401396, + -0.009325888007879257, + -0.0028427306097000837, + 0.0026578782126307487, + 0.01199708878993988, + -0.024913443252444267, + 0.0011932140914723277, + 0.011877184733748436, + 0.01325608417391777, + 0.01601388305425644, + 0.012043718248605728, + 0.024913443252444267, + 0.009638971649110317, + 0.01771918684244156, + -0.024300599470734596, + -0.0022115677129477262, + -0.028377344831824303, + -0.019224653020501137, + 0.006934463977813721, + -0.018998166546225548, + 0.025126608088612556, + -0.01829206384718418, + -0.009312565438449383, + 0.014654967002570629, + -0.002771120984107256, + -0.042046431452035904, + -0.039515119045972824, + -0.0241940189152956, + -0.003523853374645114, + 0.022581972181797028, + -0.016267012804746628, + -0.010258477181196213, + -0.009099402464926243, + 0.011510810814797878, + 0.010804707184433937, + -0.01851854845881462, + -0.005508935544639826, + 0.005299102980643511, + 0.026165777817368507, + 0.0055222581140697, + -0.026019228622317314, + -0.6241417527198792, + -0.0055822101421654224, + 0.002597925951704383, + 0.008213442750275135, + -0.0019934086594730616, + 0.029736259952187538, + 0.0069278026930987835, + 0.00611511804163456, + 0.0034339253325015306, + 0.04098061844706535, + 0.011057838797569275, + 0.010917950421571732, + 0.0024830177426338196, + 0.002336468081921339, + -0.0024047468323260546, + -0.01105117704719305, + -0.01642688550055027, + -0.005322417709976435, + 0.032320864498615265, + 0.01855851709842682, + -0.033786360174417496, + 0.02423398569226265, + 0.0012947996146976948, + 0.005845333449542522, + 0.004669605288654566, + 0.008772996254265308, + 0.019517751410603523, + -0.02148951031267643, + 0.0018002295400947332, + -0.020063981413841248, + -0.017132988199591637, + 0.007007739041000605, + -0.017346151173114777, + 0.028057601302862167, + 0.0378364622592926, + 0.009365856647491455, + -0.0002308573602931574, + 0.01159740798175335, + 0.015028002671897411, + 0.01620040088891983, + -0.005692122504115105, + -0.008906222879886627, + -0.014215318486094475, + -0.004959374200552702, + -0.010105266235768795, + 0.009838812053203583, + 0.04782848432660103, + 0.00820012018084526, + 0.0042133028618991375, + -0.030162587761878967, + -0.001661173882894218, + 0.005125907715409994, + 0.009299242869019508, + 0.0168132446706295, + 0.029629679396748543, + -0.011497488245368004, + 0.03751671686768532, + -0.02378101460635662, + -0.024567054584622383, + 0.025819387286901474, + 0.019011490046977997, + 0.007047706749290228, + -0.001331437029875815, + -0.020676827058196068, + -0.034878820180892944, + 0.02379433810710907, + -0.008759673684835434, + -0.03554495796561241, + 0.01665337197482586, + -0.008000279776751995, + -0.012789789587259293, + 0.010031990706920624, + -0.015627523884177208, + -0.007374112959951162, + 0.04332541301846504, + 0.02148951031267643, + -0.0019850819371640682, + -0.009932070970535278, + 0.0040001398883759975, + 0.0231948159635067, + 0.00769385788589716, + 0.00041487711132504046, + -0.018824972212314606, + 0.0034805547911673784, + 0.024380536749958992, + -0.024993380531668663, + -0.008679737336933613, + 0.015081293880939484, + 0.007700519170612097, + 0.003110849764198065, + 0.022182291373610497, + 0.03847594931721687, + -0.010498285293579102, + -0.025153253227472305, + -0.013462585397064686, + 0.027631273493170738, + -0.012183606624603271, + 0.02591264620423317, + -0.017372798174619675, + -0.014988034963607788, + -0.030269168317317963, + -0.011823893524706364, + 0.008373315446078777, + -0.020317113026976585, + 0.030642203986644745, + 0.0010674811201170087, + -0.013189470395445824, + -0.0029742922633886337, + 0.009605664759874344, + -0.009545712731778622, + 0.004006801173090935, + -0.0008917880477383733, + 0.0004742047458421439, + -0.021183088421821594, + -0.008886239491403103, + -0.02632565051317215, + 0.03551831096410751, + -0.007494017481803894, + 0.012663223780691624, + -0.007820423692464828, + 0.013815636746585369, + 0.0034439172595739365, + 0.031095175072550774, + -0.01914471574127674, + -0.02294168435037136, + 0.029309934005141258, + 0.02403414621949196, + -0.0024347228463739157, + -0.005199182778596878, + -0.013948864303529263, + 0.013762346468865871, + 0.013022936880588531, + 0.01642688550055027, + -0.007287515327334404, + 0.013622458092868328, + 0.013329358771443367, + 0.03415939584374428, + -0.005272457376122475, + 0.008186797611415386, + -0.037143681198358536, + -0.011157759465277195, + 0.0055289193987846375, + 0.0036937177646905184, + -0.02588600106537342, + -0.0179323498159647, + -0.03669070824980736, + -0.012923016212880611, + 0.01685321144759655, + 0.003793637966737151, + 0.011750618927180767, + -0.009225968271493912, + -0.029576387256383896, + -0.010771401226520538, + 0.01702640764415264, + 0.006754607427865267, + 0.01725289225578308, + -0.016746630892157555, + -0.007220902014523745, + 0.0016520144417881966, + -0.02376769296824932, + 0.012283527292311192, + 0.016879858449101448, + -0.04068751633167267, + 0.0027261569630354643, + -0.019291264936327934, + -0.0178790595382452, + 0.003590466920286417, + 0.012749820947647095, + -0.03186789155006409, + -0.02755133807659149, + 0.0020217192359268665, + -0.011104468256235123, + -0.011404229328036308, + 0.01979752816259861, + -0.019890787079930305, + 0.012356801889836788, + -0.013908895663917065, + -0.009106063283979893, + -0.006531452294439077, + -0.018585162237286568, + 0.016973117366433144, + 0.01914471574127674, + -0.010451655834913254, + 0.005535580683499575, + 0.023208139464259148, + 0.01729286089539528, + 0.010318429209291935, + 0.008839610032737255, + -0.02170267328619957, + 0.03530514985322952, + -0.01401547808200121, + 0.01602720469236374, + -0.012696530669927597, + 0.002354786731302738, + -0.05243813619017601, + 0.010591544210910797, + 0.007407419849187136, + -0.002126635517925024, + -0.00253131240606308, + 0.017319506034255028, + 0.027005108073353767, + -0.0005054298089817166, + 0.005022657103836536, + -0.007500678766518831, + 0.013762346468865871, + -0.006334942765533924, + 0.013609135523438454, + -0.015840686857700348, + 0.0400480292737484, + 0.024487117305397987, + 0.03458572179079056, + -0.016080494970083237, + -0.024487117305397987, + 0.009559035301208496, + -0.013629119843244553, + 0.03471894934773445, + -0.01127766352146864, + 0.012463383376598358, + 0.014974711462855339, + -0.022208936512470245, + -0.006441524252295494, + 0.000980050885118544, + 0.04239282384514809, + 0.016120463609695435, + -0.024087436497211456, + -0.005765397101640701, + -0.012929677963256836, + 0.012589949183166027, + -0.0037303552962839603, + -0.006381572224199772, + -0.0064748311415314674, + 0.019051456823945045, + 0.021782610565423965, + 0.01462832186371088, + 0.004589669406414032, + 0.006135102361440659, + 0.023274753242731094, + -0.0025696151424199343, + 0.029523096978664398, + 0.0011507479939609766, + 0.010844675824046135, + 0.013216115534305573, + 0.020943280309438705, + -0.013842282816767693, + 0.009732230566442013, + -0.01336932647973299, + 0.006777922157198191, + 0.027311529964208603, + -0.016386916860938072, + -0.005605524871498346, + 0.0008110192138701677, + 0.007913682609796524, + 0.01075807772576809, + -0.01702640764415264, + 0.010591544210910797, + -0.0274181105196476, + 0.030402395874261856, + -0.002198245143517852, + 0.014321899972856045, + 0.011970443651080132, + 0.014654967002570629, + 0.03144156560301781, + 0.010218508541584015, + -0.008026924915611744, + -0.00874635111540556, + 0.00979884434491396, + -0.031894538551568985, + -0.017319506034255028, + -0.009652294218540192, + -0.014175349846482277, + 0.0042133028618991375, + -0.004453111439943314, + 0.005428999196738005, + 0.0008031088509596884, + 0.013169486075639725, + -0.0041600121185183525, + -0.007360790390521288, + 0.02715165726840496, + 0.03972828388214111, + 0.014868129976093769, + 0.0018268749117851257, + -0.019744237884879112, + 0.009725568816065788, + 0.02695181593298912, + -0.012423415668308735, + -0.017199601978063583, + -0.006311628036201, + 0.010638173669576645, + -0.03455907851457596, + -0.0017252892721444368, + -0.01662672683596611, + 0.015614201314747334, + -0.00048586211050860584, + -0.009792182594537735, + 0.01210367027670145, + 0.02442050352692604, + 0.02190251462161541, + 0.0242073405534029, + -0.005658815614879131, + 0.012390108779072762, + -0.005955245811492205, + -0.024180695414543152, + -0.020117273554205894, + -0.03133498504757881, + 0.020503630861639977, + -0.0023664440959692, + -0.024487117305397987, + -0.026592103764414787, + 0.013988832011818886, + -0.005775389261543751, + -0.027444757521152496, + 0.021422896534204483, + -0.005538911558687687, + 0.002484682947397232, + -0.008819625712931156, + 0.0010533257154747844, + 0.0028777027036994696, + 0.009858796373009682, + 0.03114846721291542, + 0.005305764265358448, + -0.015520942397415638, + -0.028537217527627945, + 0.002299830550327897, + 0.011111130006611347, + 0.0007498180493712425, + 0.027871083468198776, + -0.0014538393588736653, + 0.023967532441020012, + -0.011797248385846615, + -0.023234784603118896, + -0.012923016212880611, + -0.03096194937825203, + 0.019451137632131577, + 0.028324054554104805, + 0.004483087453991175, + -0.01769254170358181, + 0.03261396288871765, + -0.02045034058392048, + 0.008233427070081234, + -0.015427683480083942, + 0.01422864105552435, + -0.010671480558812618, + 0.03351990506052971, + -0.003963502589613199, + -0.0189315527677536, + 0.000776879780460149, + -0.011930475942790508, + 0.02402082271873951, + -0.020463664084672928, + -0.014068768359720707, + 0.03725026175379753, + 0.024953411892056465, + -0.0032057741191238165, + -0.02672533132135868, + -0.00990542583167553, + 0.03772987797856331, + 0.01871838979423046, + 0.02587267756462097, + -0.0210765078663826, + -0.0026545473374426365, + 0.009086079895496368, + -0.010691464878618717, + 0.01618707738816738, + -0.0043698446825146675, + -0.004566354677081108, + 0.022875070571899414, + 0.01873171329498291, + -0.001911807106807828, + 0.016706662252545357, + 0.010478301905095577, + 0.012423415668308735, + 0.027098366990685463, + -0.0039501795545220375, + -0.021729320287704468, + 0.015121261589229107, + -0.0305622685700655, + 0.005019326228648424, + -0.0027111689560115337, + 0.0034539091866463423, + -0.02611248753964901, + 0.0037170324940234423, + -0.026285681873559952, + -0.002844395814463496, + -0.010444995015859604, + -0.01180391013622284, + -0.016946470364928246, + 0.01202373392879963, + -0.010351736098527908, + -0.033573199063539505, + -0.030162587761878967, + -0.039035502821207047, + -0.012250220403075218, + -0.017732510343194008, + 0.01915803924202919, + -0.0028210810851305723, + -0.022262226790189743, + -0.02276849001646042, + -0.014868129976093769, + 0.017625927925109863, + -0.00010824691707966849, + 0.0242073405534029, + -0.014508417807519436, + -0.01170398946851492, + 0.012643239460885525, + -0.030882012099027634, + -0.0043698446825146675, + -0.003843598300591111, + -0.013582490384578705, + -0.0078004393726587296, + 0.0041267056949436665, + -0.01978420652449131, + 0.0034672319889068604, + 0.006751277018338442, + -0.0051625450141727924, + -0.002346460008993745, + -0.0003332755877636373, + -0.001260660239495337, + 0.012816434726119041, + 0.02146286517381668, + 0.024806862697005272, + -0.0005512266070581973, + -0.004063422791659832, + 0.020290467888116837, + -0.029576387256383896, + 0.01789238303899765, + -0.041620105504989624, + 0.01296298485249281, + 0.006408217363059521, + 0.02167602814733982, + 0.006225030403584242, + -0.018705066293478012, + -0.0027894398663192987, + 0.007007739041000605, + 0.025233188644051552, + 0.008906222879886627, + -0.015867331996560097, + -0.0036770645529031754, + 0.010931272991001606, + -0.004619645420461893, + 0.01729286089539528, + -0.004906083457171917, + 0.01726621575653553, + 0.03413274884223938, + -0.0010833018459379673, + -0.018811648711562157, + -0.02696513943374157, + 0.03618444502353668, + -0.0029643001034855843, + -0.005305764265358448, + 0.037783168256282806, + -0.023048266768455505, + 0.00030683836666867137, + -0.02278181165456772, + -0.0004821151087526232, + 0.007467371877282858, + 0.01939784735441208, + -0.013749023899435997, + 0.004289908334612846, + -0.01750602386891842, + -0.010498285293579102, + -0.004516394343227148, + 0.00664136465638876, + -0.027684565633535385, + -0.025592900812625885, + -0.03032245859503746, + 0.004729557782411575, + -0.017093021422624588, + 0.008786318823695183, + 0.0089595140889287, + -0.0231814943253994, + -0.027071721851825714, + 0.023274753242731094, + -0.02065018005669117, + 0.01410873606801033, + -0.00864643044769764, + -0.0014113732613623142, + -0.029629679396748543, + -0.011717312037944794, + -0.01138424500823021, + -0.014694935642182827, + 0.014495094306766987, + -0.013289391063153744, + 0.014894776046276093, + 0.0033856304362416267, + 0.031308338046073914, + -0.013429278507828712, + 0.0002512577339075506, + 0.006448185537010431, + -0.005865317303687334, + 0.0019517751643434167, + -0.017212925478816032, + -0.012809773907065392, + -0.02992277778685093, + 0.03471894934773445, + 0.021649383008480072, + 0.004919406026601791, + 0.006624711211770773, + 0.013449262827634811, + 0.024700280278921127, + 0.050013404339551926, + -0.010444995015859604, + -0.0053690471686422825, + -0.00809353869408369, + -0.010145233944058418, + 0.01178392581641674, + -0.007620582822710276, + 0.015640847384929657, + 0.016986439004540443, + -0.023940887302160263, + 0.002759463619440794, + 0.026165777817368507, + -0.022262226790189743, + -0.014814839698374271, + -0.00927259773015976, + -0.0016861539334058762, + -0.03815620392560959, + 0.03522521257400513, + 0.020130595192313194, + -0.0073474678210914135, + -0.00798695720732212, + -0.011723973788321018, + -0.034212686121463776, + -0.02376769296824932, + 0.0077471486292779446, + -0.011797248385846615, + 0.014668289572000504, + -0.0055588954128324986, + -0.005485620815306902, + 0.008426605723798275, + -0.020157240331172943, + 0.015854010358452797, + -0.01430857740342617, + -0.007374112959951162, + -0.013349343091249466, + -0.031708020716905594, + -0.02339465729892254, + -0.010178540833294392, + -0.0252598337829113, + 0.014428481459617615, + 0.004249940626323223, + 0.009119386784732342, + 0.02949645183980465, + -0.013502554036676884, + 0.004303231369704008, + -0.0010683138389140368, + -0.002276515820994973, + 0.006941125262528658, + 0.004023454617708921, + 0.047109056264162064, + 0.00812018383294344, + -0.01999736949801445, + -0.01765257492661476, + -0.048787716776132584, + 0.025166574865579605, + -0.016320304945111275, + 0.017439410090446472, + 0.013122856616973877, + -0.02928328886628151, + 0.0016112136654555798, + 0.0005453979247249663, + 0.013249422423541546, + -0.020716793835163116, + -0.01578739657998085, + 0.033999525010585785, + 0.022475389763712883, + -0.003650419181212783, + -0.017732510343194008, + 0.0079070208594203, + -0.007447388023138046, + -0.0038702436722815037, + 0.0056854612194001675, + 0.002975957468152046, + -0.0023414641618728638, + -0.00567879993468523, + 0.0030026028398424387, + 0.039968091994524, + 0.010371719487011433, + 0.03288041800260544, + 0.011510810814797878, + -0.04063422605395317, + 0.0003220345824956894, + -0.022608617320656776, + -0.0231814943253994, + 0.010498285293579102, + -0.018705066293478012, + 0.03666406497359276, + 0.00205502612516284, + -0.011444197036325932, + 0.008053570985794067, + 0.0023697747383266687, + -0.0021249703131616116, + -0.008772996254265308, + 0.00752732390537858, + 0.021143121644854546, + -0.00579537358134985, + 0.008366653695702553, + 0.01400215458124876, + 0.00425660191103816, + 0.00023002469970379025, + -0.004749541636556387, + -0.0035638215485960245, + 3.7990503187756985e-05, + -0.007067691069096327, + 0.0035704828333109617, + 0.0007964475080370903, + 0.029309934005141258, + -0.025006702169775963, + -0.01685321144759655, + -0.009845473803579807, + -0.012396769598126411, + 0.00978552084416151, + -0.040714163333177567, + 0.028777025640010834, + -0.016866534948349, + -0.011430874466896057, + 0.00874635111540556, + 0.016493499279022217, + 0.03754336014389992, + -0.009652294218540192, + -0.022275550290942192, + -0.009432469494640827, + 0.02611248753964901, + -0.026498844847083092, + 0.023048266768455505, + 0.02041037194430828, + -0.005845333449542522, + -0.01180391013622284, + 0.0034339253325015306, + 0.0015021341387182474, + -0.005089270416647196, + 0.02275516651570797, + -0.01117774285376072, + -0.027244916185736656, + -0.005562226288020611, + -0.01105117704719305, + 0.01473490335047245, + -0.028270764276385307, + -0.017172956839203835, + 0.016280336305499077, + 0.007900359109044075, + 0.006571420468389988, + -0.00720757944509387, + 0.01020518597215414, + 0.003405614523217082, + 0.01433522254228592, + -0.01033175177872181, + 0.033999525010585785, + -0.024953411892056465, + 0.03258731961250305, + 0.009026127867400646, + -0.004872776567935944, + 0.00457634637132287, + -0.03647754713892937, + -0.03218763694167137, + 0.027045074850320816, + 0.006135102361440659, + -0.030056005343794823, + -0.007980295456945896, + -0.021156443282961845, + -0.046176470816135406, + -0.003010929562151432, + -0.0038935584016144276, + 0.012083686888217926, + 0.01433522254228592, + 0.022648585960268974, + -0.014095413498580456, + 0.00082392554031685, + 0.016147108748555183, + 0.007667212281376123, + -0.009365856647491455, + 0.034878820180892944, + 0.0062416838482022285, + -0.02591264620423317, + 0.005945253651589155, + -0.021982450038194656, + 0.027951018884778023, + 0.018425291404128075, + -0.019970722496509552, + -0.013276067562401295, + -0.003906880971044302, + -0.028803672641515732, + -0.01441515889018774, + -0.01829206384718418, + 0.008912884630262852, + 0.0060485047288239, + 0.017799124121665955, + -0.01557423360645771, + 0.04375173896551132, + 0.003334005130454898, + 0.022288871929049492, + -0.02061021327972412, + -0.021023215726017952, + 0.00595857622101903, + 7.077682676026598e-05, + 0.029603034257888794, + -0.008886239491403103, + -0.03719697147607803, + -0.007360790390521288, + 0.02800430916249752, + 0.008952852338552475, + 0.01874503493309021, + 0.027471402660012245, + -0.01135759986937046, + -0.003853590227663517, + -0.002694515511393547, + 0.017226247116923332, + 0.030162587761878967, + -0.004286577925086021, + 0.009612326510250568, + -0.008872915990650654, + -0.012789789587259293, + 0.0014530066400766373, + 0.009405824355781078, + -0.026045873761177063, + -0.009445792064070702, + 0.021356284618377686, + -0.013422617688775063, + -0.017772478982806206, + 0.02190251462161541, + -0.01917136088013649, + -0.008206781931221485, + -0.007287515327334404, + 0.018398644402623177, + 0.015893977135419846, + -0.035065338015556335, + 0.011424212716519833, + 0.01915803924202919, + -0.005379038862884045, + -0.023234784603118896, + 0.01729286089539528, + -0.013855605386197567, + 0.002597925951704383, + 0.006118448916822672, + -0.020743438974022865, + -0.0062450142577290535, + -0.0004284079768694937, + 0.027045074850320816, + -0.004393159411847591, + -0.01221025176346302, + -0.019237974658608437, + -0.015707459300756454, + -0.020570244640111923, + 0.029949422925710678, + 0.019531074911355972, + -0.014481771737337112, + 0.01644020900130272, + 0.007767132483422756, + -0.011710651218891144, + -0.008759673684835434, + -0.0200240146368742, + 0.004090067930519581, + -0.03679728880524635, + -0.015187875367701054, + 0.0015387715538963675, + -0.019531074911355972, + 0.006811229046434164, + -0.0054756286554038525, + -0.02063685841858387, + -0.04447116330265999, + -0.02023717761039734, + 0.18150842189788818, + -0.03749006986618042, + -0.01296964567154646, + -0.0002535475941840559, + -0.020343758165836334, + -0.03405281528830528, + 0.004376505967229605, + -0.01031176745891571, + -0.0003093363775406033, + 0.027737855911254883, + 0.01296298485249281, + 0.017319506034255028, + 0.01790570467710495, + 0.00851986464112997, + 0.011104468256235123, + -0.005465636495500803, + -0.046629440039396286, + -0.007753809913992882, + -0.00416667340323329, + 0.028297409415245056, + 0.024980057030916214, + -0.028777025640010834, + -0.015640847384929657, + -0.01855851709842682, + 0.04460439085960388, + 0.014255286194384098, + -0.008479896932840347, + 0.009952055290341377, + 0.02928328886628151, + 0.013016275130212307, + -0.02717830240726471, + -0.005399023182690144, + 0.01125767920166254, + -0.009645632468163967, + 0.00479950150474906, + 0.009006143547594547, + 0.014215318486094475, + -0.0231948159635067, + 0.01094459556043148, + 0.032773833721876144, + 0.01286306418478489, + -0.02507331594824791, + -0.02168935164809227, + -0.02821747213602066, + 0.00916601624339819, + 0.005668807774782181, + 0.0022248905152082443, + -0.004130036104470491, + 0.022035742178559303, + -0.01244339905679226, + -0.014188672415912151, + 0.018678421154618263, + 0.0034022838808596134, + 0.03682393580675125, + -0.012170284055173397, + -0.016533467918634415, + 0.006684663239866495, + -0.012683208100497723, + 0.021369606256484985, + 0.00799361802637577, + -0.031494855880737305, + 0.016799921169877052, + -0.012290188111364841, + 0.011510810814797878, + -0.020690148696303368, + 0.01252333540469408, + -0.015867331996560097, + 0.004709573462605476, + 0.00447975704446435, + -0.022621940821409225, + -0.005195851903408766, + -0.009185999631881714, + -0.027098366990685463, + 0.004786178935319185, + -0.02082337625324726, + -0.034186042845249176, + 0.0018551856046542525, + -0.002086667576804757, + 0.0378897525370121, + 0.02611248753964901, + 0.013975509442389011, + 0.006421539932489395, + -0.02021053247153759, + -0.023021621629595757, + 2.6749477910925634e-05, + -0.03410610556602478, + 0.01660008169710636, + 0.01191715244203806, + 0.018371999263763428, + -0.014401836320757866, + -0.02696513943374157, + 0.0015004688175395131, + 0.0009076087735593319, + -0.0168265663087368, + 0.023008298128843307, + -0.00914603192359209, + 0.018611807376146317, + 0.002962634898722172, + -0.011630714870989323, + -0.013722378760576248, + -0.024980057030916214, + 0.06341604143381119, + 0.030429041013121605, + -0.00567879993468523, + -0.023860951885581017, + 0.0029293280094861984, + 0.013442602008581161, + 0.042046431452035904, + -0.01473490335047245, + -0.004466434475034475, + 0.0021782610565423965, + -0.024740248918533325, + 0.01001866813749075, + -0.022661907598376274, + 0.00822676531970501, + 0.006721301004290581, + 0.015680814161896706, + 0.007054368034005165, + 0.004306561779230833, + -0.0032524035777896643, + -0.016560113057494164, + 0.006068488582968712, + 0.028563862666487694, + -0.010798046365380287, + 0.007227563299238682, + -0.034639012068510056, + -0.03077543154358864, + 0.023261429741978645, + -0.004816154949367046, + 0.008193458430469036, + 0.017332829535007477, + -0.014468449167907238, + 0.03288041800260544, + -0.010658157989382744, + 0.014881452545523643, + -0.0011499152751639485, + -0.025646192952990532, + -0.0378897525370121, + -0.019757559522986412, + 0.004659613594412804, + 0.025446351617574692, + 0.013762346468865871, + 0.005925269797444344, + 0.010957918129861355, + 0.0007735491381026804, + 0.02061021327972412, + 0.028963543474674225, + 0.0065747513435781, + -0.02715165726840496, + -0.03176131099462509, + -0.011957121081650257, + 0.004536378663033247, + 0.00731416093185544, + -0.023661110550165176, + 0.043272122740745544, + -0.00017787882825359702, + -0.025153253227472305, + -0.013988832011818886, + 0.014495094306766987, + 0.005812026560306549, + -0.03272054344415665, + -0.002334802644327283, + 0.0002133713278453797, + -0.020130595192313194, + 0.0025895992293953896, + -0.015547587536275387, + -0.16797256469726562, + 0.012070363387465477, + 0.004056761506944895, + -0.011777264066040516, + 0.026498844847083092, + 0.0015645843232050538, + 0.017132988199591637, + 0.01075141690671444, + -0.012676546350121498, + -0.00036762317176908255, + 0.013749023899435997, + 0.005409015342593193, + -0.014681612141430378, + -0.016253691166639328, + -0.022888394072651863, + 0.0030159256421029568, + -0.01810554601252079, + 0.034639012068510056, + 0.02150283381342888, + 0.02803095616400242, + 0.006727962289005518, + -0.02444715052843094, + 0.017812445759773254, + 0.0050026727840304375, + -0.008186797611415386, + 0.016533467918634415, + -0.021169766783714294, + 0.02507331594824791, + -0.009032788686454296, + -0.017172956839203835, + -0.031494855880737305, + 0.01462832186371088, + 0.0058952937833964825, + -0.01454838551580906, + -0.014148704707622528, + -0.009092740714550018, + -0.00021399582328740507, + -0.0018185481894761324, + -0.0051092542707920074, + 0.032320864498615265, + 0.0094857607036829, + 0.032134346663951874, + -0.014095413498580456, + 0.013589151203632355, + 0.008506542071700096, + 0.019078101962804794, + 0.01315616350620985, + -0.022248905152082443, + 0.00308253918774426, + -0.010591544210910797, + -0.00024813524214550853, + -0.0073474678210914135, + 0.008133506402373314, + 0.011211049742996693, + -0.00510259298607707, + 0.027684565633535385, + 0.007041045464575291, + 0.004279916640371084, + -0.0007414913852699101, + -0.007893698289990425, + 0.0012864730088040233, + -0.027524692937731743, + 0.011217711493372917, + 0.00295097753405571, + 0.001690317178145051, + -0.03237415477633476, + -0.026205746456980705, + 0.02592596970498562, + -0.010085281915962696, + -0.00861978530883789, + 0.0006078480510041118, + -0.02608584240078926, + 0.0031458218581974506, + -0.004836139269173145, + 0.008713044226169586, + 0.018864938989281654, + -0.007307499647140503, + -0.011350938118994236, + -0.0018735043704509735, + -0.009325888007879257, + -0.012776467017829418, + 0.04460439085960388, + -0.004183326847851276, + -0.013329358771443367, + -0.017146311700344086, + -0.009432469494640827, + -0.003035909729078412, + 0.032134346663951874, + -0.015121261589229107, + 0.007827084511518478, + 0.028057601302862167, + -0.02588600106537342, + -0.01621372252702713, + -0.0315215028822422, + 0.01580071821808815, + -0.005845333449542522, + -0.01304958201944828, + -0.0005220831953920424, + -0.015134584158658981, + -0.006075149867683649, + 0.003823614213615656, + -0.004303231369704008, + -0.035091985017061234, + 0.018864938989281654, + 0.005229158792644739, + 0.006065158173441887, + -0.036530837416648865, + 0.014508417807519436, + 0.0483880378305912, + -0.016080494970083237, + -0.01895819790661335, + -0.012929677963256836, + 0.016759952530264854, + 0.00822676531970501, + -0.012643239460885525, + 0.005565556697547436, + -0.012057040818035603, + -0.009026127867400646, + 0.020130595192313194, + 0.002216563792899251, + 0.04066087305545807, + -0.024287277832627296, + -0.002294834703207016, + 0.007660550996661186, + -0.012350140139460564, + -0.01961101032793522, + -0.09629645943641663, + -0.005595532711595297, + 0.018571840599179268, + 0.014988034963607788, + 0.009545712731778622, + 0.012170284055173397, + 0.0037536700256168842, + 0.012476705946028233, + 0.028803672641515732, + 0.04721564054489136, + -0.027631273493170738, + -0.018425291404128075, + -0.022222260013222694, + -0.0015346081927418709, + 0.01294300053268671, + -0.0168265663087368, + 0.009339210577309132, + -0.011337615549564362, + -0.022195613011717796, + 0.03394623473286629, + -0.004882768727838993, + 0.005379038862884045, + 0.003840267425402999, + 0.01210367027670145, + -0.018691744655370712, + -0.0013997158966958523, + -0.030242523178458214, + 0.022368809208273888, + 0.019078101962804794, + -0.003956841304898262, + 0.04279250279068947, + -0.024993380531668663, + 0.009285920299589634, + -0.0009375848458148539, + -0.018571840599179268, + -0.009345872327685356, + -0.0231814943253994, + -0.011111130006611347, + 0.040127962827682495, + -0.017359474673867226, + -0.0021183087956160307, + 1.4262701597544947e-06, + -0.006687994115054607, + -0.018651776015758514, + -0.00616507837548852, + -0.031281694769859314, + -0.004076745361089706, + 0.000397391093429178, + -0.002151615684852004, + -0.003740347223356366, + -0.028084246441721916, + -0.02151615545153618, + -0.017998963594436646, + 0.026632072404026985, + 0.03096194937825203, + 0.0003640843497123569, + -0.0055788797326385975, + -0.009925409220159054, + -0.02423398569226265, + 0.003930195700377226, + -0.021329637616872787, + 0.00925261341035366, + -0.03141491860151291, + 0.023421302437782288, + -0.004602991975843906, + -0.013082888908684254, + -0.01766589656472206, + -0.014801517128944397, + 0.009245951659977436, + 0.011863862164318562, + -0.027071721851825714, + 0.005518927238881588, + 0.001833536196500063, + 0.01306956633925438, + -0.028910253196954727, + 0.0021582769695669413, + -0.03605121746659279, + -0.014614999294281006, + 0.011790587566792965, + 0.0002641641185618937, + -0.004439788870513439, + -0.03405281528830528, + 0.018371999263763428, + -0.004326546099036932, + 0.03320016339421272, + 0.01937120221555233, + -0.0010783057659864426, + -0.025406382977962494, + 0.027071721851825714, + 0.0018968189833685756, + -0.01348923146724701, + 0.018785003572702408, + 0.02278181165456772, + -0.0071409656666219234, + -0.03895556554198265, + 0.019730914384126663, + 0.0027144995983690023, + -0.011224372312426567, + 0.005742082372307777, + 0.005565556697547436, + -0.0105382539331913, + -0.0014663293259218335, + -0.04441787302494049, + 0.012510012835264206, + 0.017119666561484337, + 0.006448185537010431, + -0.013415955938398838, + 0.003423933172598481, + -0.0027228263206779957, + 0.02252868190407753, + 0.011164420284330845, + -0.004343199543654919, + -0.002729487605392933, + 0.018052255734801292, + -0.018012287095189095, + 0.0007281686994247139, + -0.013948864303529263, + -0.028084246441721916, + -0.0051092542707920074, + 0.023727724328637123, + 0.007533985190093517, + -0.009652294218540192, + -0.0011615726398304105, + 0.01683988980948925, + 0.001715297345072031, + 0.031308338046073914, + -0.03767658770084381, + -0.017532669007778168, + -0.018691744655370712, + -0.0012956323334947228, + -0.004056761506944895, + -0.007953650318086147, + -0.002169934334233403, + -0.01085799839347601, + -0.009765537455677986, + 0.007114320527762175, + -0.00978552084416151, + -0.015041325241327286, + 0.020063981413841248, + 0.03898221254348755, + 0.036104511469602585, + 0.0525980107486248, + -0.02379433810710907, + -0.026698686182498932, + 0.0016886518569663167, + -0.037356842309236526, + -0.005865317303687334, + 0.0047395494766533375, + 0.019211329519748688, + -0.0015162895433604717, + 0.012030395679175854, + -0.00143385527189821, + 0.03229421749711037, + 0.008026924915611744, + 0.022435422986745834, + -0.021116474643349648, + 0.007933665998280048, + -0.0027111689560115337, + 0.015960590913891792, + -0.004120043944567442, + 0.02612580917775631, + -0.019251298159360886, + 0.040074672549963, + -0.0023947549052536488, + 0.0003236999036744237, + -0.0006698818760924041, + 0.008533187210559845, + -0.019451137632131577, + -0.02693849429488182, + -0.015041325241327286, + -0.00020993656653445214, + -0.010025329887866974, + -0.0051392302848398685, + -0.006578081753104925, + 0.012583287432789803, + 0.027258239686489105, + -0.003620442934334278, + -0.003560490906238556, + 0.011184404604136944, + 0.012350140139460564, + -0.015227843075990677, + -0.0027911050710827112, + 0.020143918693065643, + 0.0010400030296295881, + 0.011877184733748436, + -0.0033606505021452904, + 0.02127634733915329, + 0.010238492861390114, + -0.02359449677169323, + 0.0023514560889452696, + 0.003373973071575165, + -0.0030275830067694187, + -0.007081013638526201, + 0.018385322764515877, + -0.014348545111715794, + 0.022262226790189743, + 0.01199708878993988, + 0.02482018433511257, + -0.004219964612275362, + -0.012290188111364841, + 0.0378364622592926, + 0.033360034227371216, + 0.01188384648412466, + 0.02504667080938816, + -0.007367451675236225, + -0.023234784603118896, + -0.021236378699541092, + 0.015334424562752247, + -0.001619540387764573, + -0.03615780174732208, + 0.022195613011717796, + 0.026658717542886734, + -0.014201994985342026, + 0.008952852338552475, + -0.01850522682070732, + 0.005961907096207142, + -0.011743958108127117, + -0.007893698289990425, + -0.01136426068842411, + -0.010151895694434643, + -0.029576387256383896, + 0.027951018884778023, + 0.028750380501151085, + 0.003362315706908703, + -0.005861986894160509, + 0.011664021760225296, + 0.024353891611099243, + -0.010584883391857147, + 0.02464699000120163, + -0.016133787110447884, + 0.004226625896990299, + -0.016373595222830772, + 0.003643757663667202, + -0.0011207718634977937, + -0.029150061309337616, + -0.013395972549915314, + -0.007573953364044428, + 0.0020700141321867704, + 0.030802076682448387, + 0.006994416005909443, + 0.006901157088577747, + 0.1136159598827362, + 0.015933945775032043, + -0.015441006049513817, + 0.020716793835163116, + 0.00579537358134985, + 0.024273954331874847, + 0.02589932456612587, + 0.016719985753297806, + 0.008186797611415386, + -0.052118390798568726, + -0.002539639128372073, + -0.017985641956329346, + 0.01597391441464424, + -0.03943518549203873, + -0.01189050730317831, + 0.0221023540943861, + 0.0009159354376606643, + 0.01296298485249281, + -0.022168967872858047, + -0.014348545111715794, + 0.037143681198358536, + -0.03008265048265457, + 0.020357081666588783, + 0.03439920395612717, + -0.014654967002570629, + -0.009445792064070702, + 0.013842282816767693, + 0.008466574363410473, + 0.006238352973014116, + -0.012696530669927597, + -0.0014563373988494277, + 0.019744237884879112, + -0.04593665897846222, + -0.023647787049412727, + 0.004656282719224691, + -0.017306184396147728, + 0.0004046769463457167, + -0.03216098994016647, + 0.007893698289990425, + -0.006274990271776915, + 0.00548228994011879, + 0.025992583483457565, + -0.008373315446078777, + -0.0077471486292779446, + 0.009106063283979893, + -0.006161747500300407, + -0.0013356003910303116, + -0.003207439323887229, + -0.020117273554205894 + ], + "metadata": { + "source": "Thesis_Verladegeraeusche_in_Speditionen.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 41, + "has_images": true, + "image_count": 51, + "coordinates": "CoordinatesMetadata(points=((204.16666666666666, 189.02777777777797), (204.16666666666666, 642.3611111111111), (936.1666666666666, 642.3611111111111), (936.1666666666666, 189.02777777777797)), system=)", + "links": [], + "last_modified": "2025-05-05T22:59:16", + "_known_field_names": "frozenset({'cc_recipient', 'link_texts', 'url', 'filetype', 'category_depth', 'page_number', 'filename', 'orig_elements', 'detection_origin', 'email_message_id', 'page_name', 'coordinates', 'table_as_cells', 'link_start_indexes', 'sent_to', 'bcc_recipient', 'languages', 'last_modified', 'link_urls', 'file_directory', 'subject', 'data_source', 'detection_class_prob', 'image_base64', 'text_as_html', 'attached_to_filename', 'key_value_pairs', 'signature', 'sent_from', 'header_footer_type', 'parent_id', 'links', 'emphasized_text_contents', 'emphasized_text_tags', 'image_mime_type', 'is_continuation', 'image_path'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "Thesis_Verladegeraeusche_in_Speditionen.pdf", + "detection_class_prob": 0.2568194270133972, + "parent_id": "d45475a34bc527cde6987546fa6dd2f5", + "text_as_html": "
Flurf\u00f6rderger\u00e4t |Anzahl Einzelereignisse ElMax-PegelSchallleistungspegel
LAFmaxLWA,5sLWAmaxLWA,1hKlLWAT,1h
[dB(A)][dB(A)][dB(A)][dB(A)][dB(A)][dB(A)]
Gabelstapler29769,3100,7108,872,15,777,8
STABW [dB]6,54,96,54,92,9-
Gabelhubwagen9968,6100,7108,172,16,279,5
STABW [dB]6,45,16,4512,7-
", + "id": "5ba44de7-0ff3-4c0c-b018-67e92171e1c2", + "processing_timestamp": "2025-05-06T14:18:19.298665", + "chunk_number": 28, + "total_chunks": 49, + "chunking_strategy": "hybrid", + "word_count": 566 + } +} \ No newline at end of file diff --git a/data/processed/85fd305f-83de-70b0-47e8-2dc000000029.json b/data/processed/85fd305f-83de-70b0-47e8-2dc000000029.json new file mode 100644 index 0000000000000000000000000000000000000000..29df9b47fb5d4a719c1b2b36eaa684728856b59d --- /dev/null +++ b/data/processed/85fd305f-83de-70b0-47e8-2dc000000029.json @@ -0,0 +1,1570 @@ +{ + "id": "85fd305f-83de-70b0-47e8-2dc000000029", + "content": "Dies bedeutet, dass es zu kurzzeitigen hohen Schallsignalen kommt und somit den im- pulsbehafteten Schallleistungspegel erh\u00f6hen. Dies hat M\u00f6glicherweise die Begr\u00fcndung, dass der Gabelhubwagen durch bestimmte Vorg\u00e4nge, wie beispielsweise das \u00dcberfah- ren der \u00dcberladebr\u00fccke in den Anh\u00e4nger, impulsbehaftete Schallereignisse hervorruft. Durch subjektives Empfinden konnte festgestellt werden, dass die l\u00e4ngeren Gabeln des Gabelhubwagens m\u00f6glicherweise kurzzeitige hohe Schallsignale verursachen im Ver- gleich zu den Gabeln des Gabelstaplers. Dar\u00fcber hinaus weisen die R\u00e4der des Gabelhub- wagens eine deutlich h\u00e4rtere und kleinere Beschaffenheit auf im Vergleich zu den Reifen des Gabelstaplers. Aufgrund der h\u00e4rteren Reifen werden die Schallsignale nicht so gut ged\u00e4mpft wie bei den weicheren Reifen, was zu einer verst\u00e4rkten Schallabstrahlung f\u00fch- ren kann. Zusammenfassend l\u00e4sst sich sagen, dass der Pegelunterschied jedoch nicht signifikant ist, was darauf schlie\u00dfen l\u00e4sst, dass die beiden Beladevorg\u00e4nge der Flurf\u00f6r-\n\n## derger\u00e4te \u00e4hnlich sind. 57\n7 Ergebnisse und Interpretation\nVergleicht man nun die Ergebnisse mit den in Kapitel 3 beschriebenen st\u00fcndlichen Schallleistungspegel LWA,1h , l\u00e4sst sich erkennen, dass die in der Studie gemessenen Be- ladevorg\u00e4nge mit einem Handhubwagen mit (75 \u2013 80 dB(A) laut Martin Heroldt [65] und mit 94 \u2013 99 dB(A) laut Bianca Berghofer [67]), nicht g\u00e4nzlich in derselben Gr\u00f6\u00dfenord- nung liegen, aber m\u00f6glicherweise nach Umrechnung auf eine Einwirkzeit von einer Stunde \u00e4hnliche Schallleistungen aufweisen. Dennoch ist zu beachten, dass die vorlie- genden Messungen andere Grundlagenvoraussetzungen haben als die in dieser Thesis. In der Untersuchung der Hlug [8] wurde auch ein Kleinstapler, oder auch Gabelstapler genannt, untersucht, der einen st\u00fcndlichen Schallleistungspegel LWA,1h von 70 dB(A) auf- weist, was im Vergleich zu den hier ermittelten Werten von 72,1 dB(A) leiser ist. Die Ergebnisse des impulsbehafteten st\u00fcndlichen Schalleistungspegels f\u00fcr den Gabelstapler von 77,8 dB(A)) und des Gabelhubwagens von 79,5 dB(A) k\u00f6nnen zudem mit den aktu- ellen Untersuchungsergebnissen des T\u00dcV Nord verglichen werden. Gem\u00e4\u00df den vorlie- genden Daten zeigt sich, dass die impulsbehafteten Schallleistungspegel f\u00fcr verschie- dene Be- und Entladungsvorg\u00e4nge variieren, aber dennoch in der gleichen Gr\u00f6\u00dfenord-\n\n## nung liegen. Aus dem Vergleich mit den anderen Studien l\u00e4sst sich schlie\u00dfen, dass die ermittelten Gr\u00f6\u00dfen realistisch sind. Die \u00e4hnlichen Gr\u00f6\u00dfenordnungen der Schallleistungspegel bei den verschiedenen Flurf\u00f6rderger\u00e4ten weisen darauf hin, dass die Messungen und Aus- wertungen in dieser Untersuchung zuverl\u00e4ssige Ergebnisse liefern. Es ist jedoch wichtig zu beachten, dass die vorliegenden Messungen unter m\u00f6glicherweise unterschiedlichen Bedingungen und Voraussetzungen durchgef\u00fchrt wurden, was zu gewissen Abweichun- gen f\u00fchren kann. 58\n7 Ergebnisse und Interpretation\nIm n\u00e4chsten Schritt erfolgte eine genauere Untersuchung der verschiedenen Anh\u00e4nger- typen. Die Ergebnisse des Beladevorgangs f\u00fcr die verschiedenen Flurf\u00f6rderger\u00e4te in Ab- h\u00e4ngigkeit des Anh\u00e4ngertyp wurden ausgewertet und sind in Tabelle 12 dargestellt. | Anzahl Max-Pegel Schallleistungspegel Flurf\u00f6rderger\u00e4t | Anh\u00e4nger-Typ Enmelersienise LAFmax LWA,5s LWAmax LWA,1h Kl LWAT,1h [dB(A)] [dB(A)] [dB(A)] [dB(A] [dB(A)] [dB(A)] an 73,1 De 1 112,5 er 100, 1 107,9 STABW [dB] , 4,8 6,1 Wechselbr\u00fccke R 102,0 111,0 STABW [dB] , 4 4,9 Koffer 101,5 108,9 STABW [dB] 6 4,9 Gabelhub abenuDwagen Tyechselbr\u00fccke 64,4 2 103,8 STABW [dB] 5,6 3,6 Gabelstapler |\n\nTabelle 12: Vergleich verschiedene Flurf\u00f6rderger\u00e4te mit unterschiedlichen Anh\u00e4ngertypen\nMit: LAFmax: Maximal-Pegel [dB(A)], LWA,5s: Schallleistungspegel bezogen auf 5 Sekunden [dB(A)], LWAmax: maximale Schallleistungspegel bezogen auf 5 Sekunden [dB(A)], LWA,1h: st\u00fcndliche Schall- leistungspegel [dB(A)], KI: Impulszuschlag [dB(A)], LWAT,1h: maximale st\u00fcndliche Schallleistungspegel\n\n## [dB(A)], STABW: Standardabweichung [dB]\n\nAngesichts der unterschiedlichen Anzahl von Messwerten, beziehungsweise der Einze- lereignisse, f\u00fcr die verschiedenen Anh\u00e4ngertypen ist es erforderlich, die Ergebnisse f\u00fcr den Fall \u201eWechselbr\u00fccke\u201c, ist mit Bedacht zu interpretieren, da der Fall eine geringe An- zahl an Einzelereignissen aufweist. Eine direkte Vergleichbarkeit ist aufgrund der unglei- chen Gewichtung der Messdaten deswegen nicht g\u00e4nzlich gegeben. Dennoch liefern die Ergebnisse einen Einblick in die Verladeger\u00e4usche in unterschiedliche Anh\u00e4ngertypen und k\u00f6nnen als Ausgangspunkt f\u00fcr weitere Untersuchungen dienen. Nachdem nun die Ergebnisse der Verladeger\u00e4usche f\u00fcr die verschiedenen Anh\u00e4ngertypen vorliegen, gilt es, diese zu interpretieren und daraus Schlussfolgerungen zu ziehen. Im Allgemeinen l\u00e4sst sich aus den Ergebnissen schlie\u00dfen, dass die Verladung in einen Tautliner im Vergleich zu einem Kofferaufbau oder einer Wechselbr\u00fccke am lautesten ist. Dies deutet darauf hin, dass die Beladung in einem Tautliner eine h\u00f6here Ger\u00e4usch- entwicklung aufweist und somit eine h\u00f6here L\u00e4rmbelastung verursacht. Im Gegensatz dazu sind die Kofferaufbauten und Wechselbr\u00fccken deutlich leiser. Dies kann darauf zu- r\u00fcckgef\u00fchrt werden, dass die Ladeboardw\u00e4nde die entstehenden Schallwellen besser d\u00e4mpfen und aufgrund ihres steiferen Materials, den Schall als K\u00f6rperschall besser ab- leiten k\u00f6nnen, wodurch die Schallausbreitung reduziert wird und somit die gesamte L\u00e4rmemission verringert. 59\n7 Ergebnisse und Interpretation\nZusammenfassend l\u00e4sst sich sagen, dass die Schallleistungspegel je nach Flurf\u00f6rderger\u00e4t und Anh\u00e4nger-Typ variieren.", + "embedding": [ + 0.008792814798653126, + 0.00285351718775928, + 0.016776027157902718, + -0.03219829127192497, + -0.004718257579952478, + 0.005415046587586403, + -0.012469206936657429, + -0.009363518096506596, + -0.02282813750207424, + -0.03596758842468262, + 0.014294130727648735, + 0.03381749987602234, + -0.024739330634474754, + 0.0009721866808831692, + 0.01864740438759327, + 0.003097393549978733, + 0.03368477523326874, + 0.013066454790532589, + 0.008879084140062332, + -0.006934710778295994, + -0.011891867034137249, + -0.008958716876804829, + -0.01579388603568077, + -0.0034540831111371517, + -0.024964958429336548, + 0.025986915454268456, + 0.03397676348686218, + -0.013842877000570297, + -0.018435049802064896, + 0.008573824539780617, + 0.015395721420645714, + 0.006101881619542837, + -0.018342142924666405, + 0.01629822887480259, + -0.008918900974094868, + -0.038117680698633194, + -0.0057534873485565186, + -0.024380981922149658, + 0.015289544127881527, + 0.0011231576791033149, + 0.02274850569665432, + 0.0017253825208172202, + 0.009622326120734215, + -0.016696393489837646, + -0.01309299934655428, + 0.021753093227744102, + 0.008872447535395622, + 0.01402868703007698, + -0.016656577587127686, + 0.024062450975179672, + 0.014161408878862858, + -0.002549916272982955, + -0.01621859520673752, + 0.017081286758184433, + -0.0053320955485105515, + -1.1490021279314533e-05, + -0.004933930467814207, + -0.0013247288297861814, + -0.006579679902642965, + -0.017864344641566277, + -0.020837312564253807, + 0.010577922686934471, + -0.014214497990906239, + 0.012575384229421616, + -0.012668289244174957, + -0.02159382589161396, + 0.006320872809737921, + -0.003437492996454239, + -0.006138380151242018, + -0.0026113002095371485, + 0.015422265976667404, + 0.037560250610113144, + 0.002997852163389325, + -0.006032202858477831, + 0.023624468594789505, + -0.016072602942585945, + -0.006178196985274553, + 0.010047035291790962, + -0.009237432852387428, + 0.007233334705233574, + 0.03262300416827202, + -0.028190096840262413, + -0.02106293849647045, + 0.046452607959508896, + 0.019019024446606636, + -0.0032848629634827375, + -0.011135353706777096, + 0.003842294216156006, + -0.02617272548377514, + 0.0003125182120129466, + 0.005743532907217741, + 0.0326760895550251, + 0.006526591256260872, + 0.004011514596641064, + 0.06131744012236595, + -0.00523919053375721, + 0.0008415387710556388, + 0.0077642216347157955, + -0.008242019452154636, + -0.02516404166817665, + -0.01624513976275921, + -0.005010245367884636, + 0.00990767776966095, + 0.004890795797109604, + -0.020027710124850273, + -0.0011380888754501939, + 0.0004865080991294235, + 0.017346730455756187, + -0.005610811524093151, + -0.03833003714680672, + -0.01931101270020008, + 0.020094070583581924, + -0.006874985992908478, + 0.0010916362516582012, + 0.009224160574376583, + -0.0038290219381451607, + 0.022867955267429352, + -0.010597830638289452, + 0.016059329733252525, + -0.025933826342225075, + 0.023677557706832886, + 0.024327894672751427, + 0.029623491689562798, + -0.008454374969005585, + 0.014718840830028057, + 0.02747339941561222, + -0.013949054293334484, + 0.007080704439431429, + -0.009781591594219208, + -0.018554499372839928, + -0.017651990056037903, + -0.01428085844963789, + 0.006901530083268881, + -0.009542692452669144, + -0.0056307194754481316, + 0.023067036643624306, + 0.004854297265410423, + -0.018992479890584946, + -0.012071041390299797, + -0.03461382910609245, + -0.005497998092323542, + -0.009721866808831692, + -0.03716208413243294, + -0.03187976032495499, + -0.012721378356218338, + 0.03453419730067253, + 0.008626912720501423, + 0.025827649980783463, + -0.009748411364853382, + 0.007618227507919073, + -0.024898597970604897, + -0.02570820041000843, + 0.010312478989362717, + -0.0054216827265918255, + -0.008281836286187172, + 0.01283419132232666, + 0.01579388603568077, + 0.010113395750522614, + -0.02565511129796505, + -0.0076713161543011665, + 0.00958250928670168, + 0.013497800566256046, + 0.018421776592731476, + -0.012349757365882397, + 0.023690829053521156, + 0.005388502497226, + -0.0067721265368163586, + -0.004051330965012312, + -0.006841805297881365, + -0.020571868866682053, + -0.013046546839177608, + -0.00023703272745478898, + -0.015966424718499184, + 0.012767830863595009, + -0.0071802460588514805, + -0.010856637731194496, + 0.013106271624565125, + 0.002244656439870596, + -0.03283535689115524, + -0.042842574417591095, + -0.012601928785443306, + -0.010903090238571167, + 0.008680001832544804, + -0.002709182444959879, + -0.02967658080160618, + -0.024221716448664665, + 0.013590705581009388, + 0.017373275011777878, + -0.007870398461818695, + -0.003692982252687216, + 0.0026660477742552757, + 0.03164086118340492, + -0.001266663079150021, + -0.02327939309179783, + -0.6374890208244324, + 0.002040596678853035, + -0.007034251932054758, + 0.00407123938202858, + 0.0006544840289279819, + 0.029888935387134552, + 0.0027473398949950933, + 0.011838778853416443, + -0.0060388389974832535, + 0.034640371799468994, + -0.004499266855418682, + 0.01928446814417839, + 0.0035138078965246677, + 0.002266223542392254, + -0.008719817735254765, + -0.02053205296397209, + -0.007830582559108734, + -0.0030044883023947477, + 0.02734067663550377, + 0.008474282920360565, + -0.012396209873259068, + 0.009808136150240898, + -0.007379328366369009, + 0.0025731425266712904, + 0.011560062877833843, + -0.002953058574348688, + 0.02864135056734085, + -0.010060307569801807, + 0.007877035066485405, + -0.009151163510978222, + -0.02853517234325409, + 0.0029729667585343122, + -0.022655600681900978, + 0.013378350995481014, + 0.03848930448293686, + 0.012575384229421616, + 0.009887768886983395, + 0.03150814026594162, + 0.011082264594733715, + 0.014453397132456303, + -0.0025217130314558744, + -0.01161978766322136, + -0.007658043876290321, + -0.013039910234510899, + 0.0090383505448699, + -0.003168731462210417, + 0.04026777297258377, + -0.0007598319207318127, + 0.014612662605941296, + -0.042391322553157806, + 0.005381866358220577, + 0.022403428331017494, + 0.012104222550988197, + 0.026517802849411964, + 0.019417189061641693, + -0.0085140997543931, + 0.03485272824764252, + -0.027022145688533783, + -0.025217128917574883, + 0.029437681660056114, + 0.012475843541324139, + 0.01819615066051483, + -0.016749482601881027, + -0.021819453686475754, + -0.019457006826996803, + 0.014506485313177109, + -0.010358931496739388, + -0.03915291279554367, + 0.013803060166537762, + 0.0019476914312690496, + -0.011732601560652256, + 0.015143550001084805, + -0.006848441436886787, + -0.0028667894657701254, + 0.026597436517477036, + 0.02858826145529747, + 0.011725964955985546, + -0.015422265976667404, + -0.0027772022876888514, + 0.02739376574754715, + -0.006251193583011627, + 0.009210888296365738, + -0.01259529311209917, + 0.002684297040104866, + 0.023120125755667686, + -0.011560062877833843, + -0.0022612465545535088, + 0.009230796247720718, + -0.0007813991978764534, + -0.011500338092446327, + 0.021474376320838928, + 0.02747339941561222, + -0.012469206936657429, + -0.031269241124391556, + -0.002140138065442443, + 0.03798495978116989, + -0.0145330298691988, + 0.027659209445118904, + -0.006211377214640379, + -0.028800616040825844, + -0.028216641396284103, + 0.004250413738191128, + 0.0010460132034495473, + -0.01806342788040638, + 0.027115050703287125, + 0.0035303982440382242, + -0.013829604722559452, + -0.002131842775270343, + 0.014705568552017212, + -0.032463736832141876, + 0.016138963401317596, + 0.006251193583011627, + 0.0051993741653859615, + -0.01229666918516159, + -0.006208059377968311, + -0.02626563049852848, + 0.04247095435857773, + 0.016099145635962486, + 0.02104966714978218, + -0.019642816856503487, + 0.020877128466963768, + 0.002609641058370471, + 0.02744685485959053, + -0.009124618954956532, + -0.019111929461359978, + 0.04180734604597092, + 0.027659209445118904, + -0.00356357847340405, + -0.0032715906854718924, + -0.013603977859020233, + 0.0012243579840287566, + -0.0017419727519154549, + 0.027008872479200363, + -0.004396407399326563, + 0.02635853737592697, + 0.02866789512336254, + 0.03445456176996231, + 0.0127943754196167, + 0.029278414323925972, + -0.0255887508392334, + -0.021447831764817238, + 0.006609542295336723, + 0.003623303258791566, + -0.025774560868740082, + -0.015223182737827301, + -0.036923184990882874, + -0.03140196204185486, + 0.007677952293306589, + 0.0032997941598296165, + -0.008653457276523113, + 0.004456132184714079, + -0.028296273201704025, + -0.0170281995087862, + 0.003306430298835039, + -0.011254803277552128, + 0.017864344641566277, + -0.01050492562353611, + -0.00935688242316246, + 0.006204741075634956, + -0.019695905968546867, + 0.008354833349585533, + 0.013949054293334484, + -0.039444901049137115, + 0.0009307111613452435, + -0.018926119431853294, + -0.00992758572101593, + 0.020213520154356956, + -0.001705474336631596, + -0.013909237459301949, + -0.020518779754638672, + -0.0009373472421430051, + -0.014984283596277237, + 0.020213520154356956, + 0.026013460010290146, + -0.014864834025502205, + 0.0018647403921931982, + -0.012535568326711655, + 0.0028103827498853207, + -0.014546302147209644, + -0.013816332444548607, + 0.015594803728163242, + 0.0019742357544600964, + -0.018381960690021515, + -0.002934809308499098, + 0.017214009538292885, + -0.0005524542066268623, + 0.014692296274006367, + 0.011765781790018082, + -0.035941045731306076, + 0.033498965203762054, + -0.014891378581523895, + 0.018262511119246483, + -0.023159943521022797, + 0.013749971985816956, + -0.05133676528930664, + -0.006012294441461563, + 0.004588854033499956, + -0.003082462353631854, + 0.001946032396517694, + 0.026690341532230377, + 0.017346730455756187, + -0.021739820018410683, + 0.025469301268458366, + -0.009721866808831692, + 0.017904162406921387, + -0.010193029418587685, + 0.019443733617663383, + -0.021315110847353935, + 0.044647593051195145, + 0.02220434695482254, + 0.020611684769392014, + -0.006324190646409988, + -0.011334436014294624, + -0.009144527837634087, + -0.00153625407256186, + 0.044647593051195145, + -0.019629545509815216, + 0.012900552712380886, + 0.02386336773633957, + -0.009516148827970028, + -0.0019543275702744722, + 0.019072113558650017, + 0.0316939502954483, + 0.014745384454727173, + -0.027141595259308815, + -0.015117005445063114, + 0.015329360030591488, + 0.017399819567799568, + -0.02400936186313629, + -0.007100612856447697, + -0.0017320186598226428, + 0.01568770967423916, + 0.01054474152624607, + 0.01341153122484684, + -0.003117301734164357, + 0.01928446814417839, + 0.003948471508920193, + -0.007870398461818695, + 0.040559761226177216, + 0.0002532081853132695, + 0.01874030940234661, + 0.021262021735310555, + 0.007020979654043913, + -0.011221623048186302, + 0.01458611898124218, + -0.005746851209551096, + 0.008825995028018951, + 0.024102266877889633, + -0.01396232657134533, + 0.0011687807273119688, + 0.0022015217691659927, + 0.01136761624366045, + 0.003566896542906761, + -0.019098658114671707, + 0.024314621463418007, + -0.009801500476896763, + 0.04008196294307709, + -0.01759890280663967, + 0.0066228145733475685, + 0.017904162406921387, + 0.0012633450096473098, + 0.03320697695016861, + 0.030180921778082848, + -0.01808997243642807, + -0.00217663636431098, + 0.01137425284832716, + -0.014745384454727173, + -0.022921044379472733, + -0.009774955920875072, + -0.00935024581849575, + -0.00745232542976737, + -0.016523856669664383, + 0.0187004916369915, + -0.009104711003601551, + 0.022602511569857597, + -0.009847952984273434, + 0.0029298323206603527, + 0.037002820521593094, + 0.02512422390282154, + 0.021885814145207405, + 0.0022015217691659927, + -0.026026731356978416, + 0.00041164475260302424, + 0.0025233719497919083, + -0.025349851697683334, + -0.02626563049852848, + -0.016616761684417725, + 0.022084897384047508, + -0.01570098102092743, + -0.008553915657103062, + -0.017147649079561234, + 0.022509606555104256, + -0.008348196744918823, + 0.011314528062939644, + 0.02167345955967903, + 0.008567187935113907, + 0.014917923137545586, + 0.020757678896188736, + 0.0038688385393470526, + -0.0025316670071333647, + -0.015900064259767532, + -0.023093581199645996, + -0.018209422007203102, + -0.02156728133559227, + 0.01976226642727852, + -0.0038588843308389187, + -0.02264232747256756, + -0.023677557706832886, + 0.019032297655940056, + -0.004134282004088163, + -0.015408993698656559, + 0.0057236249558627605, + -0.010431928560137749, + 0.0048974319361150265, + -0.018381960690021515, + 0.003756025107577443, + 0.007969940081238747, + 0.0066825393587350845, + 0.036471933126449585, + 0.0050766062922775745, + -0.00841455813497305, + -0.020810768008232117, + 0.002191567560657859, + 0.0014234406407922506, + 0.003500535851344466, + 0.0297562126070261, + 0.00277388421818614, + 0.021222205832600594, + -0.0015992969274520874, + -0.017306914553046227, + -0.001497267046943307, + -0.036976274102926254, + 0.017784712836146355, + 0.015329360030591488, + 0.00011550938506843522, + -0.020651502534747124, + 0.027115050703287125, + -0.018182877451181412, + 0.0057236249558627605, + -0.00685507757589221, + 0.006513318978250027, + -0.021182388067245483, + 0.03384404256939888, + -0.007638135924935341, + -0.03219829127192497, + 0.0032997941598296165, + -0.009469695389270782, + 0.048231080174446106, + -0.017147649079561234, + -0.013252264820039272, + 0.021142572164535522, + 0.025894010439515114, + 0.02049223519861698, + -0.018912848085165024, + -0.004572263918817043, + 0.015939880162477493, + 0.015488626435399055, + 0.01750599592924118, + 0.0026312083937227726, + -0.03973688930273056, + 0.0036199854221194983, + -0.008640184998512268, + 0.010166484862565994, + 0.0033744501415640116, + 0.005617447663098574, + 0.010876546613872051, + 0.015462081879377365, + -0.004821117036044598, + 0.018912848085165024, + 0.0044926307164132595, + 0.009967402555048466, + 0.026451442390680313, + -0.016019513830542564, + -0.01194495614618063, + 0.0316939502954483, + -0.02986239083111286, + 0.0009356882073916495, + 0.004280276130884886, + 0.004250413738191128, + -0.0312957838177681, + 0.005464817397296429, + -0.01641767844557762, + -0.010332386940717697, + -0.018474865704774857, + -0.006576362065970898, + -0.016656577587127686, + 0.01308636274188757, + -0.005587585270404816, + -0.024739330634474754, + -0.015316087752580643, + -0.03795841708779335, + -0.010710643604397774, + -0.0005271541303955019, + 0.01584697514772415, + -0.0035436702892184258, + -0.023478474467992783, + -0.029331503435969353, + 0.000541255809366703, + 0.010876546613872051, + 0.009071530774235725, + 0.019443733617663383, + -0.0005491361953318119, + -0.027738843113183975, + 0.017970522865653038, + -0.02272196114063263, + -0.01571425423026085, + -0.011978136375546455, + -0.01636458933353424, + -0.007485505659133196, + 0.010279298759996891, + -0.009642234072089195, + 0.005262416787445545, + 0.011586607433855534, + 0.006227967329323292, + -0.008547279983758926, + 0.019151747226715088, + 0.005043426062911749, + 0.0016988381976261735, + 0.0221114419400692, + 0.006901530083268881, + 0.012621836736798286, + 0.01810324378311634, + 0.012694833800196648, + -0.014347219839692116, + 0.012409482151269913, + -0.03166740760207176, + -0.006861713714897633, + 0.0090051693841815, + 0.03448110818862915, + -0.006725674029439688, + -0.0016258412506431341, + -0.011951591819524765, + 0.0013562502572312951, + 0.01819615066051483, + -0.006453594192862511, + -0.015342632308602333, + -0.010047035291790962, + 0.006440322380512953, + -0.014957739971578121, + 0.010670827701687813, + 0.005116422660648823, + 0.008620277047157288, + 0.02622581459581852, + -0.003795841708779335, + -0.014187953434884548, + -0.03150814026594162, + 0.032384105026721954, + 0.0034739915281534195, + -0.010564650408923626, + 0.0290660597383976, + -0.007326239719986916, + -0.004104419611394405, + -0.024659698829054832, + 0.0013380009913817048, + 0.014347219839692116, + 0.005922707263380289, + -0.0036133492831140757, + 0.009210888296365738, + -0.025376396253705025, + -0.018182877451181412, + 0.0005528689944185317, + 0.011307891458272934, + -0.018846485763788223, + -0.017864344641566277, + -0.02339884266257286, + 0.00992758572101593, + -0.010657555423676968, + 0.006649359129369259, + 0.01428085844963789, + -0.01931101270020008, + -0.02396954596042633, + 0.022310523316264153, + -0.008003120310604572, + 0.023053765296936035, + -0.008640184998512268, + 0.016125690191984177, + -0.030764898285269737, + -0.018859758973121643, + -0.005444908980280161, + -0.024646425619721413, + 0.016444223001599312, + -0.008958716876804829, + 0.01343807578086853, + 0.01311290729790926, + 0.03694973140954971, + -0.006629450712352991, + -0.004870887845754623, + 0.01990826055407524, + -0.004286912269890308, + -0.01518336683511734, + -0.020863857120275497, + -0.013842877000570297, + -0.0192579235881567, + 0.028800616040825844, + 0.021952174603939056, + 0.0027008873876184225, + 0.014214497990906239, + 0.027314133942127228, + 0.014599391259253025, + 0.048151444643735886, + -0.019748995080590248, + 0.0001279520511161536, + -0.007598319556564093, + -0.02264232747256756, + 0.01256874855607748, + -0.007989848032593727, + 0.0029414454475045204, + 0.010843365453183651, + -0.021461104974150658, + 0.003253341419622302, + 0.01640440709888935, + -0.028137007728219032, + -0.026504529640078545, + -0.002778861438855529, + 0.002055527875199914, + -0.03668428584933281, + 0.03610031306743622, + 0.024911869317293167, + -0.004831071011722088, + 0.004157508257776499, + -0.01929773949086666, + -0.010856637731194496, + -0.026504529640078545, + 0.0008577142143622041, + -0.002639503451064229, + 0.0013363419566303492, + -0.017718352377414703, + -0.020731134340167046, + 0.0051695117726922035, + -0.019417189061641693, + 0.008666729554533958, + -0.020067526027560234, + -0.0037692973855882883, + -0.015355904586613178, + -0.029888935387134552, + -0.03952453285455704, + -0.023106854408979416, + -0.01753254048526287, + 0.006483456585556269, + 0.0011895186034962535, + 0.005501315928995609, + 0.020598413422703743, + -0.01640440709888935, + -0.0012475843541324139, + 0.0021633643191307783, + 0.0045822178944945335, + 0.012953640893101692, + -0.003087439341470599, + 0.031136518344283104, + 0.013882693834602833, + -0.01982862688601017, + -0.018793398514389992, + -0.049903374165296555, + 0.024248261004686356, + -0.01866067573428154, + 0.008825995028018951, + 0.0003438322455622256, + -0.02221761830151081, + 0.012137402780354023, + 0.009761683642864227, + 0.011473793536424637, + 0.0052292365580797195, + -0.016192052513360977, + 0.041196826845407486, + 0.0025913917925208807, + -0.002206498757004738, + -0.008540643379092216, + 0.00049148517427966, + 0.0029066060669720173, + -0.00903171394020319, + 0.0021119345910847187, + 0.013225721195340157, + -0.007638135924935341, + -0.009741775691509247, + 0.00038178235990926623, + 0.04326728731393814, + -0.0004016906314063817, + 0.025482572615146637, + 0.010186392813920975, + -0.031747039407491684, + -0.01368361059576273, + -0.023823551833629608, + -0.035303980112075806, + 0.001626670709811151, + -0.03546324744820595, + 0.044488325715065, + -0.01749272458255291, + -0.005799939855933189, + 0.008945444598793983, + 0.001312286127358675, + -0.0077044968493282795, + -0.008096026256680489, + 0.01698838174343109, + 0.01547535415738821, + -0.015395721420645714, + 0.004393089562654495, + 0.021461104974150658, + 0.005295597016811371, + -0.003948471508920193, + -0.011779054068028927, + 0.003975016064941883, + -0.011135353706777096, + 0.008540643379092216, + -0.0037162085063755512, + -0.006300964392721653, + 0.014679023995995522, + -0.01859431527554989, + -0.008553915657103062, + -0.018873030319809914, + -0.017240554094314575, + -0.004330046474933624, + -0.02508440800011158, + 0.03103034198284149, + -0.027022145688533783, + -0.017970522865653038, + 0.0029115830548107624, + 0.005833120085299015, + 0.033578600734472275, + -0.01924465224146843, + -0.021341655403375626, + -0.005770077463239431, + 0.03193284943699837, + -0.036525022238492966, + 0.006350735202431679, + 0.014572846703231335, + -0.0028369270730763674, + -0.005116422660648823, + 0.015488626435399055, + 0.013238993473351002, + -0.011301255784928799, + 0.02106293849647045, + -0.00025175654445774853, + -0.01258865650743246, + 0.0022977450862526894, + 0.0008967012399807572, + 0.021275294944643974, + -0.013869421556591988, + -0.009283885359764099, + 0.013935782015323639, + 0.013975598849356174, + 0.0071205212734639645, + -0.009761683642864227, + -0.0009962425101548433, + 0.0011613151291385293, + 0.0070873405784368515, + -0.004386453423649073, + 0.036365754902362823, + -0.019642816856503487, + 0.012071041390299797, + 0.005799939855933189, + 0.0018182877684012055, + -0.002883379580453038, + -0.044488325715065, + -0.032304469496011734, + 0.025894010439515114, + 0.0013686928432434797, + -0.0383831262588501, + -0.007273151073604822, + -0.0326760895550251, + -0.03318043425679207, + -0.015276271849870682, + 0.0043134563602507114, + 0.0034905816428363323, + 0.01858104206621647, + 0.024951687082648277, + -0.008573824539780617, + -0.00699443556368351, + 0.017267098650336266, + -0.0012741286773234606, + -0.01493119541555643, + 0.03320697695016861, + 0.01689547672867775, + -0.02282813750207424, + 0.015608076006174088, + -0.008374741300940514, + 0.02692924067378044, + 0.011035812087357044, + -0.032994624227285385, + -0.0024321258533746004, + 0.01624513976275921, + -0.030579088255763054, + -0.003477309364825487, + -0.006377279292792082, + 0.021991992369294167, + 0.0018099927110597491, + -0.010060307569801807, + -0.011765781790018082, + 0.031056886538863182, + 0.011002631857991219, + 0.03087107464671135, + -0.018408505246043205, + -0.01017975714057684, + -0.016537128016352654, + -0.006762172561138868, + -0.007790765725076199, + -0.008169022388756275, + -0.036923184990882874, + -0.007412509061396122, + 0.033525511622428894, + -0.0033893813379108906, + 0.017227280884981155, + 0.030525999143719673, + -0.00810929760336876, + -0.008202203549444675, + 0.0003664364048745483, + 0.01142070535570383, + 0.021792909130454063, + -0.006632768549025059, + 0.007034251932054758, + -0.015355904586613178, + -0.0025665066204965115, + 0.005418364889919758, + 0.011427341029047966, + -0.03331315517425537, + -0.006516637280583382, + 0.0062777381390333176, + -0.001990826101973653, + -0.0068816221319139, + 0.029888935387134552, + -0.018368687480688095, + 0.002793792635202408, + 0.003875474678352475, + 0.0396307110786438, + 0.01633804477751255, + -0.023651013150811195, + 0.0038987009320408106, + 0.01978881098330021, + -0.015024100430309772, + -0.01917828992009163, + 0.02090367302298546, + -0.02922532521188259, + 0.00791021529585123, + 0.0102527542039752, + -0.02688942290842533, + 0.0005180294974707067, + -0.00788367073982954, + 0.02675670199096203, + -0.004111055750399828, + 0.0015735820634290576, + -0.03148159384727478, + -0.020585140213370323, + -0.027898108586668968, + 0.04140917956829071, + 0.003397676395252347, + -0.01990826055407524, + -0.006665949244052172, + -0.008016392588615417, + -0.016497312113642693, + -0.007757585495710373, + -0.01564789190888405, + 0.007989848032593727, + -0.029915479943156242, + -0.00820883922278881, + -0.0010335705010220408, + -0.023491747677326202, + -0.005766759160906076, + -0.00990104116499424, + 0.00715370150282979, + -0.028827160596847534, + -0.01936410181224346, + 0.1810324490070343, + -0.03272917866706848, + -0.01052483357489109, + 0.0007523663225583732, + -0.017957251518964767, + -0.03153468295931816, + 0.014771929010748863, + -0.006344099063426256, + -0.003978333901613951, + 0.014095048420131207, + 0.010617738589644432, + 0.00992758572101593, + -0.004077875521034002, + 0.0056041753850877285, + 0.022629056125879288, + -0.013020002283155918, + -0.038807835429906845, + -0.008062845095992088, + -0.017214009538292885, + 0.021328382194042206, + 0.026623979210853577, + -0.029278414323925972, + -0.007399236783385277, + -0.015355904586613178, + 0.027765387669205666, + 0.011360980570316315, + -0.012197127565741539, + 0.005033471621572971, + 0.043108019977808, + 0.021208932623267174, + -0.03206557035446167, + -0.0023027220740914345, + -0.0011256461730226874, + -1.861214877862949e-05, + 0.004253731574863195, + 0.007326239719986916, + -0.0018332189647480845, + -0.020704589784145355, + 0.008965353481471539, + 0.037666428834199905, + 0.010491653345525265, + -0.015316087752580643, + -0.021845998242497444, + -0.01874030940234661, + 0.004728212021291256, + 0.0033545419573783875, + -0.0003689249570015818, + 0.0010111737065017223, + 0.007804038003087044, + -0.007259878795593977, + -0.00810929760336876, + 0.013829604722559452, + 0.015554986894130707, + 0.0432407408952713, + -0.003653165651485324, + -0.018368687480688095, + -0.002443738980218768, + -0.0032450463622808456, + 0.011447249911725521, + 0.0013653748901560903, + -0.028110463172197342, + 0.015422265976667404, + -0.01132116373628378, + 0.018926119431853294, + -0.0175192691385746, + 0.025854194536805153, + -0.012210399843752384, + 0.011427341029047966, + -0.010889817960560322, + -0.01933755725622177, + -0.005206009838730097, + -0.0021268657874315977, + -0.03599413484334946, + 0.008746362291276455, + -0.03259645774960518, + -0.03448110818862915, + 0.0026511165779083967, + -0.012966913171112537, + 0.031242696568369865, + 0.02100985124707222, + 0.0222441628575325, + -0.012555476278066635, + -0.015992969274520874, + -0.005478089675307274, + 0.004280276130884886, + -0.020664773881435394, + 0.02159382589161396, + 0.01487810630351305, + 0.024155355989933014, + -0.027632664889097214, + -0.008288471959531307, + -0.005617447663098574, + -0.00495052058249712, + -0.00933697447180748, + -0.006231285631656647, + -0.021474376320838928, + 0.0008096025558188558, + 0.006778762675821781, + -0.01136761624366045, + -0.004734847694635391, + -0.013643794693052769, + 0.05120404437184334, + 0.02742031030356884, + -0.014944467693567276, + -0.03026055544614792, + 0.0053918203338980675, + 0.01571425423026085, + 0.03426875174045563, + 0.0023674238473176956, + -0.007790765725076199, + -0.01455957442522049, + -0.03217174857854843, + 0.0004043865483254194, + -0.022018535062670708, + 0.024858780205249786, + 0.007498777937144041, + 0.012455934658646584, + 0.004728212021291256, + -0.0002167097118217498, + 0.002637844532728195, + -0.003911972977221012, + -0.002964671701192856, + 0.02396954596042633, + -0.0005138819687999785, + 0.005730261094868183, + -0.039975784718990326, + -0.01867394894361496, + 0.042391322553157806, + -0.016590217128396034, + 0.01694856584072113, + 0.027008872479200363, + -0.021394744515419006, + 0.025376396253705025, + -0.008626912720501423, + 0.01428085844963789, + -0.005743532907217741, + -0.017054742202162743, + -0.04762055724859238, + -0.00598575035110116, + 0.00844110269099474, + 0.0175192691385746, + -0.009516148827970028, + 0.009715231135487556, + 0.003362837014719844, + 0.00583643838763237, + 0.002083731349557638, + 0.022549422457814217, + -0.003298135008662939, + -0.02635853737592697, + -0.02803082950413227, + -0.014758656732738018, + -0.011181806214153767, + 0.0021268657874315977, + -0.014347219839692116, + 0.024274805560708046, + 0.027685754001140594, + -0.02679651789367199, + -0.028800616040825844, + 0.024234989657998085, + 0.0104982890188694, + -0.02566838264465332, + -0.031189607456326485, + -0.0039086551405489445, + -0.008660092949867249, + -0.0007656384841538966, + -0.013358443044126034, + -0.1679726243019104, + 0.011254803277552128, + 0.008620277047157288, + -0.0142543138936162, + 0.023000676184892654, + -0.007273151073604822, + 0.01749272458255291, + 0.005726942792534828, + -0.022443246096372604, + -0.00042885710718110204, + 0.01928446814417839, + -0.0008967012399807572, + -0.015661165118217468, + -0.0014582800213247538, + -0.007531958632171154, + -0.0041475542820990086, + -0.019536638632416725, + 0.01976226642727852, + 0.024327894672751427, + 0.016510583460330963, + -0.0018000385025516152, + -0.030658720061182976, + 0.02736722119152546, + 0.012309940531849861, + -0.0029713078401982784, + 0.006987799424678087, + -0.025230402126908302, + 0.04143572598695755, + -0.0003309748135507107, + -0.006612860597670078, + -0.021885814145207405, + 0.016006240621209145, + 0.00656640762463212, + -0.012528931722044945, + -0.006018930580466986, + -0.008686637505888939, + -0.00908480305224657, + -0.007810674142092466, + -0.000305467372527346, + 0.036525022238492966, + 0.011380888521671295, + 0.019948076456785202, + -0.010292570106685162, + 0.015063917264342308, + 0.009137891232967377, + 0.027659209445118904, + 0.011002631857991219, + -0.006901530083268881, + -0.0021816135849803686, + -0.013212448917329311, + -0.005859664641320705, + -0.006659313105046749, + 0.0066526769660413265, + 0.03371132165193558, + 0.0030111244414001703, + 0.003616667352616787, + 0.0062180133536458015, + 0.006921438500285149, + 0.0004325899062678218, + 0.006828533485531807, + 0.010717280209064484, + -0.02395627275109291, + 0.005202692002058029, + -0.0053320955485105515, + -0.006347416900098324, + -0.02046569064259529, + -0.006231285631656647, + 0.024858780205249786, + -0.008660092949867249, + -0.00994749367237091, + -0.008839267306029797, + -0.015900064259767532, + 0.009197616018354893, + -0.022323796525597572, + 0.011566699482500553, + 0.01973572187125683, + -0.004937248770147562, + -0.016683122143149376, + -0.004615398123860359, + 0.00772440480068326, + -0.010319114662706852, + 0.04953175038099289, + -0.006589634343981743, + -0.02513749711215496, + -0.03318043425679207, + -0.01169278472661972, + -0.0030310326255857944, + 0.030791442841291428, + -0.010239481925964355, + -0.003503853688016534, + 0.021965447813272476, + -0.017678534612059593, + -0.022934315726161003, + -0.037002820521593094, + 0.008965353481471539, + -0.006519955117255449, + -0.006821897346526384, + 0.006689175497740507, + -0.011281347833573818, + -0.017306914553046227, + 0.003802477614954114, + -0.010259389877319336, + -0.03434838354587555, + 0.01639113388955593, + -0.0006395528325811028, + 0.012502387166023254, + -0.022323796525597572, + 0.009642234072089195, + 0.0501953586935997, + -0.014413580298423767, + -0.006078655365854502, + 0.0017270415555685759, + 0.012721378356218338, + 0.004406361375004053, + -0.013152724131941795, + 0.01430740300565958, + -0.009502876549959183, + -0.012150675058364868, + 0.02459333837032318, + 0.0034507650416344404, + 0.05972478166222572, + -0.018368687480688095, + 0.003303112229332328, + -0.0025167358107864857, + -0.009098075330257416, + -0.02856171689927578, + -0.09115328639745712, + -0.0038821108173578978, + 0.01583370380103588, + 0.007332875858992338, + 0.0001229749759659171, + 0.0033445877488702536, + 0.0119914086535573, + -0.001975894905626774, + 0.003546988358721137, + 0.03363168612122536, + -0.016550401225686073, + -0.031720492988824844, + -0.03211865946650505, + -0.01283419132232666, + 0.02162037044763565, + -0.012203763239085674, + 0.015342632308602333, + -0.016006240621209145, + -0.03633921220898628, + 0.033021166920661926, + -0.01874030940234661, + 0.01572752557694912, + -0.008952081203460693, + 0.006821897346526384, + -0.01799706742167473, + -0.016669850796461105, + -0.02911914885044098, + 0.0104982890188694, + 0.02909260429441929, + -0.010558013804256916, + 0.024872053414583206, + -0.017930706962943077, + 0.0037759332917630672, + -0.001675611943937838, + -0.010883182287216187, + -0.007186881732195616, + -0.013424803502857685, + -0.0020024392288178205, + 0.0349058173596859, + -0.01812978833913803, + 0.0032666136976331472, + 0.018926119431853294, + 0.0018879666458815336, + -0.003586804959923029, + -0.016722938045859337, + -0.02460660971701145, + 0.004180734511464834, + 0.009449787437915802, + 0.003213525051251054, + -0.006586316041648388, + -0.03249027952551842, + -0.03384404256939888, + -0.0316939502954483, + 0.01810324378311634, + 0.03721517324447632, + 0.001995803089812398, + -0.00583643838763237, + 0.01341816782951355, + -0.007598319556564093, + 0.0029663308523595333, + -0.018992479890584946, + 0.0009257341152988374, + -0.03487927094101906, + 0.016762755811214447, + 0.012077677994966507, + -0.013285445980727673, + -0.008918900974094868, + -0.009496239945292473, + 0.011798962019383907, + 0.009814772754907608, + -0.020173704251646996, + 0.010232845321297646, + -0.004890795797109604, + 0.020200248807668686, + -0.02805737406015396, + -0.00021204371296335012, + -0.030764898285269737, + -0.02156728133559227, + 0.0017685170751065016, + -0.006208059377968311, + -0.011891867034137249, + -0.017054742202162743, + 0.021394744515419006, + -0.022469790652394295, + 0.02447388879954815, + 0.012256852351129055, + -0.003303112229332328, + -0.015860246494412422, + 0.030632175505161285, + -0.012880644761025906, + -0.008872447535395622, + 0.021195661276578903, + 0.023067036643624306, + -0.009091438725590706, + -0.023770462721586227, + 0.028906794264912605, + -0.005468135699629784, + 0.010040399618446827, + 0.003616667352616787, + 0.014546302147209644, + -0.0037593431770801544, + -0.013550888746976852, + -0.03395022079348564, + 0.022005263715982437, + 0.014864834025502205, + 0.007857127115130424, + -0.004157508257776499, + -0.0010161508107557893, + 0.004466086160391569, + 0.019695905968546867, + 0.01430740300565958, + 0.001796720433048904, + 0.005806575994938612, + 0.00964886974543333, + -0.011493702419102192, + -0.008248656056821346, + -0.024221716448664665, + -0.026637252420186996, + 0.00012453031376935542, + 0.012150675058364868, + 0.002065482083708048, + 0.005879573058336973, + -0.013723427429795265, + 0.010345659218728542, + -0.00990104116499424, + 0.030074745416641235, + -0.03498544916510582, + -0.0069081662222743034, + -0.011659604497253895, + -0.0016092510195448995, + -0.009164435788989067, + -0.00699443556368351, + 0.00937679037451744, + -0.0043731811456382275, + -0.014612662605941296, + -0.003503853688016534, + -0.016484038904309273, + -0.010412019677460194, + 0.012933732941746712, + 0.03793187066912651, + 0.030764898285269737, + 0.04361236095428467, + -0.02736722119152546, + -0.0361534021794796, + -0.003742752829566598, + -0.028800616040825844, + -0.002130183856934309, + -0.00024408356694038957, + 0.027553033083677292, + 0.0036730740685015917, + 0.010431928560137749, + 0.010405384004116058, + 0.033047713339328766, + 0.028190096840262413, + 0.018514681607484818, + -0.02688942290842533, + 0.0025217130314558744, + -0.004479358438402414, + 0.007445689290761948, + -0.007571775000542402, + 0.019961349666118622, + -0.027818474918603897, + 0.030738353729248047, + 0.001073386985808611, + 0.0035204440355300903, + -0.013066454790532589, + 0.013842877000570297, + -0.011613151989877224, + -0.01746618002653122, + -0.01917828992009163, + -0.0017038153018802404, + -0.01741309091448784, + -0.010717280209064484, + -0.0038787927478551865, + 0.010611102916300297, + 0.03429529815912247, + -0.0030409868340939283, + 0.0036996183916926384, + 0.01932428404688835, + 0.0014010438462719321, + -0.025416212156414986, + 0.007737677078694105, + 0.007677952293306589, + 0.0018249239074066281, + 0.0033313154708594084, + -0.010976087301969528, + 0.03318043425679207, + 0.0011497020022943616, + -0.016112418845295906, + -0.002607982140034437, + -0.0025233719497919083, + -0.0016855660360306501, + -0.01169942133128643, + 0.024633154273033142, + -0.004781300667673349, + 0.012402846477925777, + 0.013657066971063614, + 0.01973572187125683, + -0.01859431527554989, + -0.009111346676945686, + 0.03564905747771263, + 0.03214520588517189, + 0.022031808272004128, + 0.0071205212734639645, + -0.01875358074903488, + -0.012801011092960835, + 0.003666437929496169, + 0.018408505246043205, + -0.0019294421654194593, + -0.03150814026594162, + 0.01977553777396679, + 0.012495751492679119, + -0.010942907072603703, + -0.013398258946835995, + -0.008149114437401295, + 0.005448227282613516, + -0.021394744515419006, + 0.016152234748005867, + -0.0238500963896513, + -0.014493213035166264, + -0.03363168612122536, + 0.01977553777396679, + 0.030658720061182976, + -0.006914802361279726, + -0.016802571713924408, + 0.006334144622087479, + 0.0285086277872324, + -0.016776027157902718, + 0.015634620562195778, + -0.008792814798653126, + 0.002933150390163064, + -0.011360980570316315, + 0.022429972887039185, + 0.004207279067486525, + -0.03426875174045563, + -0.019377373158931732, + -0.006632768549025059, + -0.0019443733617663383, + 0.037586797028779984, + 0.032384105026721954, + 0.005803257692605257, + 0.12889935076236725, + 0.013895966112613678, + -0.011141989380121231, + 0.023106854408979416, + 0.009974038228392601, + 0.018912848085165024, + 0.021845998242497444, + 0.007346148137003183, + 0.012966913171112537, + -0.04499266669154167, + 0.005013563670217991, + -0.0232926644384861, + 0.01750599592924118, + -0.023027220740914345, + -0.009675414301455021, + 0.021208932623267174, + 0.00479125464335084, + 0.006181514821946621, + -0.009151163510978222, + -0.013504436239600182, + 0.035887956619262695, + -0.018819941207766533, + 0.017333459109067917, + 0.01875358074903488, + -0.021806180477142334, + -0.0205055084079504, + 0.011201714165508747, + 0.00040728983003646135, + -0.004482676740735769, + -0.018381960690021515, + -0.01396232657134533, + 0.019045569002628326, + -0.048682332038879395, + -0.02212471328675747, + 0.0180767010897398, + -0.031720492988824844, + -0.0162716843187809, + -0.016138963401317596, + 0.011513610370457172, + -0.008653457276523113, + 0.0034806274343281984, + 0.027314133942127228, + -0.007001071702688932, + -0.022589240223169327, + 0.024779148399829865, + -0.014957739971578121, + -0.004804526921361685, + -0.00024387618759647012, + -0.005657264031469822 + ], + "metadata": { + "source": "Thesis_Verladegeraeusche_in_Speditionen.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 41, + "has_images": true, + "image_count": 51, + "coordinates": "CoordinatesMetadata(points=((204.16666666666666, 189.02777777777797), (204.16666666666666, 642.3611111111111), (936.1666666666666, 642.3611111111111), (936.1666666666666, 189.02777777777797)), system=)", + "links": [], + "last_modified": "2025-05-05T22:59:16", + "_known_field_names": "frozenset({'cc_recipient', 'link_texts', 'url', 'filetype', 'category_depth', 'page_number', 'filename', 'orig_elements', 'detection_origin', 'email_message_id', 'page_name', 'coordinates', 'table_as_cells', 'link_start_indexes', 'sent_to', 'bcc_recipient', 'languages', 'last_modified', 'link_urls', 'file_directory', 'subject', 'data_source', 'detection_class_prob', 'image_base64', 'text_as_html', 'attached_to_filename', 'key_value_pairs', 'signature', 'sent_from', 'header_footer_type', 'parent_id', 'links', 'emphasized_text_contents', 'emphasized_text_tags', 'image_mime_type', 'is_continuation', 'image_path'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "Thesis_Verladegeraeusche_in_Speditionen.pdf", + "detection_class_prob": 0.2568194270133972, + "parent_id": "d45475a34bc527cde6987546fa6dd2f5", + "text_as_html": "
Flurf\u00f6rderger\u00e4t |Anzahl Einzelereignisse ElMax-PegelSchallleistungspegel
LAFmaxLWA,5sLWAmaxLWA,1hKlLWAT,1h
[dB(A)][dB(A)][dB(A)][dB(A)][dB(A)][dB(A)]
Gabelstapler29769,3100,7108,872,15,777,8
STABW [dB]6,54,96,54,92,9-
Gabelhubwagen9968,6100,7108,172,16,279,5
STABW [dB]6,45,16,4512,7-
", + "id": "5ba44de7-0ff3-4c0c-b018-67e92171e1c2", + "processing_timestamp": "2025-05-06T14:18:19.298665", + "chunk_number": 29, + "total_chunks": 49, + "chunking_strategy": "hybrid", + "word_count": 735 + } +} \ No newline at end of file diff --git a/data/processed/85fd305f-83de-70b0-47e8-2dc000000030.json b/data/processed/85fd305f-83de-70b0-47e8-2dc000000030.json new file mode 100644 index 0000000000000000000000000000000000000000..a2830bd711c5ac7ae1d07bea5e44201ed8d85c84 --- /dev/null +++ b/data/processed/85fd305f-83de-70b0-47e8-2dc000000030.json @@ -0,0 +1,1570 @@ +{ + "id": "85fd305f-83de-70b0-47e8-2dc000000030", + "content": "Dies kann darauf zu- r\u00fcckgef\u00fchrt werden, dass die Ladeboardw\u00e4nde die entstehenden Schallwellen besser d\u00e4mpfen und aufgrund ihres steiferen Materials, den Schall als K\u00f6rperschall besser ab- leiten k\u00f6nnen, wodurch die Schallausbreitung reduziert wird und somit die gesamte L\u00e4rmemission verringert. 59\n7 Ergebnisse und Interpretation\nZusammenfassend l\u00e4sst sich sagen, dass die Schallleistungspegel je nach Flurf\u00f6rderger\u00e4t und Anh\u00e4nger-Typ variieren. Allerdings zeigt sich kein signifikanter Unterschied zwi- schen den Beladevorg\u00e4ngen der Flurf\u00f6rderger\u00e4te, was auf eine gewisse \u00c4hnlichkeit hin- weist. Die maximalen Pegel liegen in einem \u00e4hnlichen Bereich, wobei der h\u00f6chste Wert bei 112,5 dB(A) f\u00fcr den Gabelstapler mit Tautliner-Anh\u00e4nger und der niedrigste Wert bei 103,8 dB(A) f\u00fcr den Gabelhubwagen mit Wechselbr\u00fccken-Anh\u00e4nger liegt. Es ist an- zumerken, dass ein Vorgang betrachtet, der aus drei einzelnen Prozessschritten besteht. Da diese einzelnen Schritte unterschiedlich laut sein k\u00f6nnen, erkl\u00e4rt dies die Variation und Standardabweichung der Ergebnisse. ## 7.2 Statistik\n\nNachdem die Auswertung der Verladeger\u00e4usche abgeschlossen ist, k\u00f6nnen nun die ge- sammelten Informationen systematisch zu analysieren und interpretiert werden. Dabei werden die statistischen Kenngr\u00f6\u00dfen zusammenfassend dargestellt. In der oben aufge- zeigten Tabelle 11, wurden bereits die Standardabweichung mitaufgef\u00fchrt. Die Stan- dardabweichung gibt wie in Kapitel 2.3 beschrieben an, wie stark die durchschnittliche Abweichung vom Mittelwert der akustischen Kenngr\u00f6\u00dfe ist. Eine gro\u00dfe Standardabweichung deutet auf eine gr\u00f6\u00dfere Streuung um den Mittelwert hin. Folglich deutet eine kleine Standardabweichung eine geringe Streuung um den Mit- telwert hin. Die durchschnittliche Standardabweichung der akustischen Kenngr\u00f6\u00dfen liegt bei 5,1 dB, sprich die Messwerte variieren im Durchschnitt um etwa 5,1 dB um den Mittelwert herum. Die Standardabweichung ist bezogen auf eine Freifeldmessung ak- zeptabel, da die Messung in einer offenen Umgebung stattfand, in der starke Reflektio- nen, Schallabsorption, Wind, Umgebungsger\u00e4usche oder andere St\u00f6reinfl\u00fcsse auftreten k\u00f6nnen. Zudem wird ein Vorgang betrachtet, der aus drei einzelnen Prozessschritten besteht. Da diese einzelnen Schritte unterschiedlich laut sein k\u00f6nnen, erkl\u00e4rt dies die Variation und Standardabweichung der Ergebnisse. Zudem k\u00f6nnte die Beladung der La- deeinheiten und der F\u00fcllungsgrad des Anh\u00e4ngers zu gr\u00f6\u00dferen Abweichungen f\u00fchren. Basierend auf der Standardabweichung k\u00f6nnen die Ergebnisse in einem Diagramm visu- alisiert werden. Des Weiteren wurden bei der Messung die Anh\u00e4nger immer von unter-\n60\n7 Ergebnisse und Interpretation\nschiedlichen Personen beladen, welches ebenfalls zu Messungenauigkeiten und Unsi- cherheiten f\u00fchrt, da jedes Lagerpersonal seine eigene Vorgehensweise und Technik hat, was zu Variationen in der L\u00e4rmemission f\u00fchren kann. Die nachfolgenden Diagramme zeigen die Normalverteilung der Beladevorg\u00e4nge in den verschiedenen Anh\u00e4ngertypen. Um die \u00dcbereinstimmung der Verteilung mit der Gau\u00df- schen Glockenkurve zu \u00fcberpr\u00fcfen, wurde ein Fitting durchgef\u00fchrt. Durch das Fitting der Gau\u00dfschen Glockenkurve wird untersucht, wie gut die gemessenen Daten mit einer Normalverteilung \u00fcbereinstimmen. Dabei wird die Glockenkurve an die Daten ange- passt, um zu sehen, ob sie eine gute N\u00e4herung f\u00fcr die Verteilung der Daten darstellt. Eine gute \u00dcbereinstimmung zwischen den Daten und der Gau\u00dfschen Glockenkurve deu- tet darauf hin, dass die Daten eine Normalverteilung aufweisen. Dies ist ein wichtiges Ergebnis, da die Normalverteilung in vielen statistischen Analysen und Modellierungen verwendet wird.", + "embedding": [ + 0.012087151408195496, + 0.014813526533544064, + 0.019421299919486046, + -0.0387105718255043, + -0.001302124815993011, + -0.003092752769589424, + -0.01656949706375599, + -0.014219401404261589, + -0.025270134210586548, + -0.03158106654882431, + 0.004162178374826908, + 0.026577210053801537, + -0.006357141770422459, + 0.010185949504375458, + 0.009406985715031624, + 0.01490594632923603, + 0.029917513951659203, + 0.007373756263405085, + 0.00991529319435358, + -0.005502261221408844, + -0.015500071458518505, + -0.000721614807844162, + -0.009888887405395508, + -0.0005978386616334319, + -0.026920482516288757, + 0.021877016872167587, + 0.03393116220831871, + -0.012054144404828548, + -0.011631655506789684, + 0.005376834888011217, + 0.008991098031401634, + 0.005862037185579538, + -0.023184092715382576, + 0.006607994902879, + -0.01618661731481552, + -0.025151308625936508, + -0.011413808912038803, + -0.013110367581248283, + 0.027673041447997093, + -0.01091870479285717, + 0.017110811546444893, + -0.010555627755820751, + 0.007670818828046322, + -0.031897932291030884, + 0.005756414961069822, + 0.021230081096291542, + 0.011466620489954948, + 0.01180989295244217, + -0.01338102389127016, + 0.014932352118194103, + 0.020688766613602638, + 0.004739800468087196, + -0.009611628949642181, + 0.023184092715382576, + 0.003650570521131158, + 0.007129504811018705, + -0.007479378487914801, + -0.0031208086293190718, + -0.0062944283708930016, + -0.016727929934859276, + -0.029283780604600906, + 0.007155910134315491, + -0.01262186374515295, + 0.012159766629338264, + -0.0217449888586998, + -0.01654309220612049, + -0.001828585984185338, + -0.0010306425392627716, + 0.0018648935947567225, + 0.015222813002765179, + 0.028623640537261963, + 0.0311321709305048, + -0.006736721843481064, + 0.007532189600169659, + 0.017995398491621017, + -0.008192328736186028, + 0.01097151543945074, + 0.00463417824357748, + -0.006766428239643574, + 0.001279019983485341, + 0.02558699995279312, + -0.0328485332429409, + -0.014179793186485767, + 0.0399252250790596, + 0.00909672025591135, + 0.0030432422645390034, + -0.009235349483788013, + 0.006446260493248701, + -0.029415808618068695, + 0.004142374265938997, + -0.00012367297313176095, + 0.02960064820945263, + 0.0022972847800701857, + -0.006301030050963163, + 0.03884259983897209, + -0.006839043460786343, + 0.001419299514964223, + 0.023157687857747078, + -0.0014415793120861053, + -0.035647522658109665, + -0.007624609395861626, + -0.01555288303643465, + 0.0085223987698555, + 0.004297506995499134, + -0.018127426505088806, + -0.005934652406722307, + 0.00048066396266222, + 0.009763460606336594, + 0.004314010497182608, + -0.03366710618138313, + -0.02241833135485649, + 0.016041385009884834, + -0.007037085480988026, + 0.007010679692029953, + 0.013783709146082401, + -0.005921449977904558, + 0.017414474859833717, + -0.020635955035686493, + -0.00025374104734510183, + -0.02067556418478489, + 0.022405128926038742, + 0.014509862288832664, + 0.029732676222920418, + -0.015909356996417046, + 0.021639367565512657, + 0.03562111780047417, + -0.01713721640408039, + 0.009004300460219383, + -0.015302029438316822, + -0.010483012534677982, + -0.029785485938191414, + 0.001731215394102037, + 0.010694256983697414, + 0.004399828612804413, + -0.008317755535244942, + 0.014206198044121265, + 0.00023269910889212042, + 0.0029227668419480324, + -0.01203433983027935, + -0.027092117816209793, + -0.001490264548920095, + -0.0005966009339317679, + -0.029864704236388206, + -0.03950273618102074, + -0.0034558293409645557, + 0.04259219020605087, + 0.02148093469440937, + 0.022801212966442108, + -0.017440881580114365, + 0.006317533552646637, + -0.02466280572116375, + -0.03089452162384987, + 0.02405547723174095, + -0.00098443275783211, + -0.011294984258711338, + 0.006198708433657885, + 0.0018615928711369634, + 0.022959645837545395, + -0.031897932291030884, + -0.007419966161251068, + 0.0066277990117669106, + 0.011704270727932453, + 0.009010901674628258, + -0.0009547265362925828, + 0.018114224076271057, + 0.010496214963495731, + -0.00017988796753343195, + -0.003353507723659277, + 0.00029891933081671596, + -0.024477966129779816, + -0.011499627493321896, + 0.022286303341388702, + -0.019104432314634323, + 0.0258246511220932, + -0.0075916023924946785, + -0.005462653003633022, + 0.010846089571714401, + 0.0014589079655706882, + -0.026260342448949814, + -0.034591302275657654, + -0.019315676763653755, + -0.011948522180318832, + 0.013849723152816296, + 0.0023864037357270718, + -0.02299925498664379, + -0.00979646760970354, + 0.020134249702095985, + 0.025692623108625412, + -0.007347350940108299, + -0.008793056011199951, + -0.014681498520076275, + 0.012166367843747139, + -0.0020249774679541588, + -0.03453848883509636, + -0.6299313306808472, + 0.0017790754791349173, + -0.005281114485114813, + 0.001198978046886623, + 0.004472443833947182, + 0.026735642924904823, + 0.009968103840947151, + 0.016582699492573738, + 0.004795912187546492, + 0.029627053067088127, + -0.002739578252658248, + 0.0047199963591992855, + 0.004033451434224844, + -0.001590110594406724, + -0.0025266832672059536, + -0.02383103035390377, + -0.017784154042601585, + 0.0012798451352864504, + 0.037390291690826416, + 0.008654426783323288, + -0.023804623633623123, + 0.007037085480988026, + -0.0031851723324507475, + 0.005898344796150923, + 0.001828585984185338, + 0.007380357943475246, + 0.02124328352510929, + -0.010311376303434372, + 0.015275624580681324, + -0.021863814443349838, + -0.020688766613602638, + 0.005531967617571354, + -0.02453077770769596, + 0.029072536155581474, + 0.040083661675453186, + 0.003709983080625534, + 0.003838710254058242, + 0.014060967601835728, + 0.010370789095759392, + 0.013757303357124329, + -0.003469032235443592, + -0.014668296091258526, + -0.008403574116528034, + -0.005574876442551613, + -0.012120158411562443, + 0.0028468507807701826, + 0.04885030910372734, + -0.003898122813552618, + 0.005353730171918869, + -0.033772729337215424, + 0.0031208086293190718, + 0.005730009637773037, + 0.020239872857928276, + 0.011671263724565506, + 0.02278801053762436, + -0.006165701430290937, + 0.04660583660006523, + -0.01914404146373272, + -0.02053033374249935, + 0.0140873733907938, + 0.01808781735599041, + -0.00015461700968444347, + -0.007954678498208523, + -0.026379168033599854, + -0.018167033791542053, + 0.009763460606336594, + -0.010714061558246613, + -0.04454620182514191, + 0.01985699124634266, + -0.009539013728499413, + -0.012186172418296337, + 0.01297173835337162, + -0.005498960614204407, + -0.006459463387727737, + 0.03335024043917656, + 0.0375487245619297, + 0.0011420410592108965, + -0.01818023808300495, + -0.000452608015621081, + 0.022127870470285416, + -0.008007490076124668, + 0.008859070017933846, + -0.009010901674628258, + 0.0010025865631178021, + 0.014945554547011852, + -0.00926835648715496, + -0.0028617039788514376, + 0.01795578934252262, + 0.011407207697629929, + 0.0001167621448985301, + 0.015288827009499073, + 0.027805069461464882, + -0.007320945151150227, + -0.020041830837726593, + -0.006726820021867752, + 0.03614922985434532, + -0.01520961057394743, + 0.007598203606903553, + -0.024742022156715393, + -0.019923005253076553, + -0.03158106654882431, + -0.0005400764639489353, + 0.012595458887517452, + -0.01935528591275215, + 0.02796350233256817, + 0.0013334813993424177, + -0.01045660674571991, + -0.002209816360846162, + 0.011776885949075222, + -0.026484789326786995, + 0.008588412776589394, + 0.003676976077258587, + -0.0026273545809090137, + -0.0235009603202343, + 0.005007156636565924, + -0.01818023808300495, + 0.021692179143428802, + -0.0024342637043446302, + 0.0019292571814730763, + -0.008826063014566898, + 0.007677420508116484, + -0.0019127536797896028, + 0.03968757763504982, + -0.016014980152249336, + -0.020728375762701035, + 0.03749591484665871, + 0.026828061789274216, + 0.008859070017933846, + 0.0017741244519129395, + -0.013315009884536266, + 0.012701081112027168, + 0.001269943080842495, + 0.02546817623078823, + -0.014509862288832664, + 0.013486646115779877, + 0.02488725259900093, + 0.03261088207364082, + -0.006624498404562473, + 0.015526477247476578, + -0.034036785364151, + -0.019051620736718178, + 0.006660806015133858, + 0.00903730746358633, + -0.023870637640357018, + -0.013473443686962128, + -0.032346826046705246, + -0.026946887373924255, + 0.01832546852529049, + -0.0045747654512524605, + -0.02042471058666706, + 0.006155799143016338, + -0.026960089802742004, + -0.012945332564413548, + 0.017797356471419334, + 0.003013536101207137, + 0.02311807870864868, + -0.0027478300034999847, + -0.01585654728114605, + 0.004073059652000666, + -0.015011568553745747, + 0.006007268093526363, + 0.007314343936741352, + -0.04277702793478966, + 0.0016222924459725618, + -0.012476633302867413, + -0.01461548451334238, + 0.015618897043168545, + 0.0020414809696376324, + -0.020635955035686493, + -0.027805069461464882, + 0.009888887405395508, + -0.00040742973214946687, + 0.002531634410843253, + 0.00962483137845993, + -0.013024548999965191, + 0.005650792736560106, + -0.01274068932980299, + -0.004835520405322313, + -0.014404240064322948, + -0.026946887373924255, + 0.013493248261511326, + 0.010740467347204685, + -0.023672595620155334, + -0.001025691512040794, + 0.024874050170183182, + 0.01832546852529049, + 0.017414474859833717, + 0.01079987920820713, + -0.021639367565512657, + 0.029415808618068695, + -0.01503797434270382, + 0.015988575294613838, + -0.019685354083776474, + 0.009829474613070488, + -0.03591157868504524, + -0.001087579526938498, + 0.01256905309855938, + -0.0015001666033640504, + 0.009195741266012192, + 0.023870637640357018, + 0.02126968838274479, + -0.004858625587075949, + 0.013301807455718517, + -0.016595901921391487, + 0.018972404301166534, + -0.012186172418296337, + 0.009829474613070488, + -0.016965581104159355, + 0.04858625307679176, + 0.024570386856794357, + 0.02241833135485649, + -0.010298173874616623, + -0.02711852453649044, + -0.004964247811585665, + 0.0020711871329694986, + 0.045840077102184296, + -0.013849723152816296, + -0.0023319420870393515, + 0.03195074200630188, + -0.00495764659717679, + -0.011301585473120213, + -0.0042810034938156605, + 0.028676452115178108, + 0.01960613764822483, + -0.0062185125425457954, + -0.006109589710831642, + -0.01010013185441494, + 0.0217449888586998, + 0.0022659283131361008, + 0.0006535379216074944, + 0.002142152050510049, + 0.010661249980330467, + 0.009472999721765518, + 0.00687205046415329, + 0.012166367843747139, + 0.024491168558597565, + 0.011050732806324959, + 0.0033931161742657423, + 0.03208277001976967, + 0.013050954788923264, + 0.017916182056069374, + 0.017124013975262642, + -0.0023682499304413795, + -0.00543624721467495, + 0.01608099415898323, + -0.01631864346563816, + 0.0018170335097238421, + 0.028702858835458755, + -0.012139962054789066, + -0.002384753432124853, + -0.00577951967716217, + 0.011710871942341328, + -0.013189584016799927, + -0.011360998265445232, + 0.013770506717264652, + -0.017057999968528748, + 0.03794480860233307, + -0.009103321470320225, + 0.008779853582382202, + 0.01597537100315094, + 0.02008143812417984, + 0.02664322406053543, + 0.02688087336719036, + -0.02373860962688923, + -0.015315232798457146, + 0.009189139120280743, + -0.021546948701143265, + -0.027197740972042084, + -0.003620864124968648, + -0.0023500961251556873, + 0.0006201184005476534, + -0.005786121357232332, + 0.014192995615303516, + 0.0012806702870875597, + 0.02150733955204487, + -0.010997921228408813, + -0.007585000712424517, + 0.03276931494474411, + 0.018127426505088806, + 0.028438802808523178, + -0.011757081374526024, + -0.018457496538758278, + 0.006360442377626896, + 0.019764572381973267, + -0.01678074151277542, + -0.011935318820178509, + -0.011479822918772697, + 0.012483234517276287, + -0.03242604434490204, + -0.002264278009533882, + -0.02265598252415657, + 0.010555627755820751, + -0.0018566418439149857, + -0.010067124851047993, + 0.01737486757338047, + 0.009631432592868805, + 0.0082187345251441, + 0.011895710602402687, + 0.008192328736186028, + 0.007063490804284811, + -0.0012534395791590214, + -0.02606230042874813, + -0.014826728962361813, + -0.021533744409680367, + 0.018510306254029274, + 0.005862037185579538, + -0.019685354083776474, + -0.02335572987794876, + 0.009690845385193825, + -0.008707237429916859, + -0.022589968517422676, + 0.006743323057889938, + -0.008502594195306301, + 0.008066902868449688, + -0.015882952138781548, + 0.007327546365559101, + 0.0024326134007424116, + 0.00384531170129776, + 0.04745081439614296, + 0.011882508173584938, + -0.022735198959708214, + -0.018972404301166534, + 0.007928273640573025, + -0.0006910833762958646, + 0.007611406501382589, + 0.012232381850481033, + 0.01214656326919794, + 0.018299061805009842, + -0.0010364187182858586, + -0.01585654728114605, + 0.002622403437271714, + -0.017163623124361038, + 0.01843108981847763, + 0.027805069461464882, + 0.005284415557980537, + -0.009875684045255184, + 0.03158106654882431, + -0.023699002340435982, + -1.0733710951171815e-05, + -0.004782709293067455, + 0.0018896488472819328, + -0.01474751252681017, + 0.019923005253076553, + -0.0011659710435196757, + -0.02220708690583706, + -0.010364187881350517, + -0.006409952882677317, + 0.043622005730867386, + -0.004287605173885822, + -0.014853134751319885, + 0.027224145829677582, + 0.024649603292346, + 0.007809448521584272, + -0.020596347749233246, + -0.0027148230001330376, + 0.028385991230607033, + 0.019421299919486046, + 0.03675655648112297, + -0.017440881580114365, + -0.0037925003562122583, + -0.0017180126160383224, + -0.008641223423182964, + 0.014958756975829601, + -0.013163178227841854, + -0.0002362061059102416, + 0.009882286190986633, + 0.01274068932980299, + -0.008476189337670803, + 0.030920926481485367, + 0.007030483800917864, + -0.005274513270705938, + 0.014641890302300453, + -0.010278369300067425, + -0.014457051642239094, + 0.025903867557644844, + -0.02266918495297432, + -0.00833095796406269, + 0.009083516895771027, + 0.009367377497255802, + -0.0328485332429409, + 0.00275773205794394, + -0.014021359384059906, + -0.0024359142407774925, + -0.012892520986497402, + -0.02359337918460369, + -0.013994953595101833, + 0.01736166514456272, + -0.012945332564413548, + -0.03451208397746086, + -0.02735617384314537, + -0.02735617384314537, + -0.012186172418296337, + -0.006046876311302185, + 0.025441769510507584, + 0.00293431943282485, + -0.03144903853535652, + -0.033772729337215424, + -0.012701081112027168, + 0.01680714823305607, + 0.005944554693996906, + 0.021573353558778763, + -0.002848501317203045, + -0.02299925498664379, + 0.0032643890008330345, + -0.0108724944293499, + -0.013968548737466335, + -0.015354841016232967, + -0.01357246469706297, + -0.010080327279865742, + 0.00809330865740776, + -0.02100563421845436, + 0.004918037913739681, + 0.00293431943282485, + 0.006766428239643574, + -0.005677198059856892, + 0.015830140560865402, + 0.007796245627105236, + -0.0020876906346529722, + 0.00499065313488245, + 0.009373978711664677, + 0.015170001424849033, + 0.016833553090691566, + 0.023210499435663223, + -0.02596988156437874, + 0.01738807000219822, + -0.02033229172229767, + -0.006792833562940359, + -0.009367377497255802, + 0.01169106736779213, + 0.00043115351581946015, + -0.01209375262260437, + 0.012674675323069096, + 0.009935096837580204, + 0.01961934007704258, + -0.0025382356252521276, + -0.017810558900237083, + -0.008403574116528034, + 0.009552216157317162, + -0.0017279146704822779, + 0.0029821794014424086, + 0.013849723152816296, + 0.018985606729984283, + 0.021903423592448235, + 0.010436803102493286, + -0.007743434514850378, + -0.028016313910484314, + 0.04143034294247627, + -0.00651887571439147, + -0.006268023047596216, + 0.03707342594861984, + -0.012833108194172382, + -0.0016602504765614867, + -0.029679864645004272, + -0.004452639725059271, + 0.013374422676861286, + 0.008271546103060246, + -0.0010917054023593664, + -0.00827814731746912, + -0.01543405745178461, + -0.01808781735599041, + 0.010879096575081348, + 0.00522170215845108, + -0.022378724068403244, + -0.00833095796406269, + -0.025692623108625412, + 0.02009464055299759, + -0.005393338389694691, + -0.009195741266012192, + 0.006502372212707996, + -0.02301245741546154, + -0.029046131297945976, + 0.01285291276872158, + -0.017757747322320938, + 0.025217322632670403, + -0.008601615205407143, + -0.00287985778413713, + -0.027567418292164803, + -0.016595901921391487, + -0.00537353428080678, + -0.016727929934859276, + 0.01948731392621994, + -0.006924861576408148, + 0.025560595095157623, + 0.019447704777121544, + 0.03496097773313522, + -0.00030552074895240366, + -0.007116301916539669, + 0.0012806702870875597, + -0.007565196603536606, + -0.015460463240742683, + -0.028702858835458755, + -0.01133459247648716, + -0.024808036163449287, + 0.02912534773349762, + 0.019936207681894302, + 0.0016833553090691566, + 0.005558373406529427, + 0.01737486757338047, + 0.017005188390612602, + 0.04871828109025955, + -0.02076798304915428, + -0.006221813149750233, + -0.01585654728114605, + -0.02290683425962925, + 0.003077899571508169, + -0.0037165845278650522, + 0.006149197928607464, + 0.012918926775455475, + -0.020041830837726593, + -0.006360442377626896, + 0.019408095628023148, + -0.035753145813941956, + -0.020239872857928276, + -0.014602282084524632, + 0.003574654459953308, + -0.03723185881972313, + 0.029283780604600906, + 0.025890665128827095, + -0.005198597442358732, + 0.0025811446830630302, + -0.019817382097244263, + -0.02033229172229767, + -0.0282011516392231, + -0.002691718051210046, + 0.0008837615605443716, + 0.020160654559731483, + -0.008377168327569962, + -0.0015306980349123478, + 0.008344161324203014, + -0.01410057581961155, + 0.006251519545912743, + -0.015605693683028221, + -0.006571686826646328, + -0.015156798996031284, + -0.027197740972042084, + -0.0317394994199276, + -0.007254931144416332, + -0.017044797539711, + 0.006845644675195217, + 0.003871717257425189, + 0.01728244684636593, + 0.024913659319281578, + -0.015077582560479641, + -0.0044394368305802345, + 0.008007490076124668, + -0.0027940396685153246, + 0.01773134246468544, + -0.0015554532874375582, + 0.033297426998615265, + 0.01973816566169262, + -0.02067556418478489, + -0.011545836925506592, + -0.05566294863820076, + 0.025864258408546448, + -0.01279349997639656, + 0.022814415395259857, + 0.006472666282206774, + -0.021190471947193146, + -0.0013244044966995716, + 0.0024144595954567194, + 0.010060523636639118, + 0.003142263274639845, + -0.008799657225608826, + 0.03908024728298187, + 0.016635511070489883, + -0.008793056011199951, + -0.014153387397527695, + 1.4466334505414125e-05, + -0.004347017500549555, + -0.006353841163218021, + 0.010080327279865742, + 0.002652109833434224, + -0.0025332847144454718, + 0.0005520415143109858, + -0.004703492857515812, + 0.04018928110599518, + 0.007565196603536606, + 0.03229401633143425, + 0.014126981608569622, + -0.019817382097244263, + -0.009156132116913795, + -0.021111255511641502, + -0.021546948701143265, + 0.00590164540335536, + -0.015051176771521568, + 0.0517021119594574, + -0.002034879522398114, + -0.012067346833646297, + 0.014707904309034348, + 0.0019705158192664385, + -0.012087151408195496, + -0.005713506136089563, + -0.0005681324400939047, + 0.016503483057022095, + -0.017322055995464325, + 0.009334370493888855, + 0.03179230913519859, + -0.000993509660474956, + 0.0019111033761873841, + 0.001008362858556211, + -0.00025848581572063267, + -0.00833095796406269, + 7.509085116907954e-05, + -0.01774454489350319, + -0.007149308919906616, + 0.0199626125395298, + -0.0187875647097826, + -0.0021091452799737453, + -0.014628687873482704, + -0.019236460328102112, + -0.0016000127652660012, + -0.02581144869327545, + 0.024504372850060463, + -0.03356148302555084, + -0.004753003362566233, + -0.0011998031986877322, + 0.02256356179714203, + 0.03250525891780853, + -0.015222813002765179, + -0.026445182040333748, + -0.014536268077790737, + 0.030709682032465935, + -0.031422633677721024, + 0.011136550456285477, + 0.034221623092889786, + -0.0032874939497560263, + -0.017770951613783836, + 0.010403796099126339, + 0.006244917865842581, + -0.01245022751390934, + 0.017110811546444893, + -0.01622622460126877, + -0.01668832264840603, + -0.013202786445617676, + -0.009539013728499413, + 0.02711852453649044, + -0.028359586372971535, + -0.016358252614736557, + 0.014219401404261589, + 0.016754336655139923, + 0.010766872204840183, + -0.009763460606336594, + -0.005158988758921623, + 9.819572733249515e-05, + 0.013519653119146824, + -0.008383769541978836, + 0.03155466169118881, + -0.011704270727932453, + 0.014417443424463272, + 0.0070172809064388275, + -0.007188917137682438, + -0.006997476797550917, + -0.03501379117369652, + -0.022114668041467667, + 0.016371455043554306, + 0.008515797555446625, + -0.029415808618068695, + -0.005918148905038834, + -0.025877462700009346, + -0.028253963217139244, + -0.016160210594534874, + 0.001666851807385683, + -0.0007967056590132415, + 0.024623196572065353, + 0.024689210578799248, + -0.0001047971163643524, + 0.0026702636387199163, + 0.0287820752710104, + -0.008944887667894363, + -0.021784598007798195, + 0.026379168033599854, + 0.0017015091143548489, + -0.023461351171135902, + 0.010172747075557709, + -0.010218956507742405, + 0.018589522689580917, + 0.013090563006699085, + -0.024728819727897644, + 0.001828585984185338, + 0.01843108981847763, + -0.03041922114789486, + -0.018945999443531036, + -0.0134998494759202, + 0.01689956709742546, + 0.0023913546465337276, + 0.01256905309855938, + -0.014523065648972988, + 0.03662452846765518, + 0.004861926194280386, + 0.030736086890101433, + -0.02769944630563259, + -0.021164067089557648, + -0.004545059520751238, + -0.007994287647306919, + 0.010047320276498795, + -0.019289271906018257, + -0.03699420765042305, + -0.0011164606548845768, + 0.03379913419485092, + 0.006400051061064005, + 0.018035005778074265, + 0.028042718768119812, + 0.0021239982452243567, + -0.015579287894070148, + 0.001281495438888669, + 0.013876128941774368, + 0.030366409569978714, + -0.006086484529078007, + 0.00022609771986026317, + -0.017665328457951546, + 0.00059082469670102, + 0.002142152050510049, + 0.0077500357292592525, + -0.03041922114789486, + -0.005538568831980228, + 0.015064379200339317, + -0.00596105819568038, + -0.006971071474254131, + 0.017203230410814285, + -0.018114224076271057, + -0.005446149501949549, + 0.002945871790871024, + 0.027329768985509872, + 0.012595458887517452, + -0.030551249161362648, + 0.007479378487914801, + 0.019672151654958725, + -0.013770506717264652, + -0.014853134751319885, + 0.009941698051989079, + -0.03335024043917656, + -0.004838821478188038, + 0.006195407826453447, + -0.02851801924407482, + -0.0043338146060705185, + -0.00945319514721632, + 0.01903841830790043, + -0.007868860848248005, + -0.008020692504942417, + -0.04642099887132645, + -0.026854468509554863, + -0.03136982023715973, + 0.04050615057349205, + 0.00745957437902689, + -0.007142707705497742, + 0.0017774251755326986, + 0.002310487674549222, + -0.025745434686541557, + 0.001567005761899054, + -0.02455718256533146, + -0.0010570480953902006, + -0.026260342448949814, + -0.011261977255344391, + 0.009116523899137974, + -0.0140873733907938, + 0.00023538092500530183, + 0.0013219290412962437, + -0.010905501432716846, + -0.025111699476838112, + -0.01795578934252262, + 0.18980325758457184, + -0.03150184825062752, + -0.015222813002765179, + 0.013783709146082401, + -0.02912534773349762, + -0.0223259124904871, + 0.019672151654958725, + -0.011314787901937962, + 0.0029706270433962345, + 0.024821238592267036, + 0.0030580954626202583, + 0.011869304813444614, + 0.010661249980330467, + 0.0027956899721175432, + 0.016727929934859276, + -0.016978783532977104, + -0.05191335827112198, + -0.0074991825968027115, + -0.0035581509582698345, + 0.038129646331071854, + 0.027065712958574295, + -0.030841710045933723, + -0.010225558653473854, + -0.017414474859833717, + 0.028227558359503746, + 0.016041385009884834, + -0.005059968214482069, + 0.0067235189490020275, + 0.03620203956961632, + 0.028121935203671455, + -0.022339114919304848, + -0.012159766629338264, + 0.01161845214664936, + -0.01427221205085516, + 0.0009159432956948876, + 0.002724725054576993, + 0.005693701561540365, + -0.017797356471419334, + 0.01724283955991268, + 0.02865004725754261, + 0.012707682326436043, + -0.030551249161362648, + -0.022259898483753204, + -0.030841710045933723, + 0.005581478122621775, + 0.017454084008932114, + 0.006446260493248701, + -0.0017378168413415551, + 0.01338762603700161, + -0.01239741686731577, + -0.014707904309034348, + 0.012549248524010181, + 0.018589522689580917, + 0.042222511023283005, + -0.010251963511109352, + -0.03155466169118881, + 0.001237761229276657, + -0.01175048016011715, + 0.022233493626117706, + 0.009274957701563835, + -0.02560020424425602, + 0.017546502873301506, + -0.019434502348303795, + 0.03839370235800743, + -0.025217322632670403, + 0.013942142948508263, + -0.006568386219441891, + 0.007961280643939972, + -0.0063340370543301105, + -0.031660281121730804, + 0.0034063190687447786, + -0.010416998527944088, + -0.032003555446863174, + 0.007598203606903553, + -0.02875566855072975, + -0.035753145813941956, + 0.0065353792160749435, + 0.0034822348970919847, + 0.03440646082162857, + 0.016741134226322174, + 0.013546058908104897, + -0.009908691048622131, + -0.010753669776022434, + 0.00018050684593617916, + -0.009466397576034069, + -0.015196407213807106, + 0.003924528136849403, + 0.020464319735765457, + 0.02746179699897766, + -0.028676452115178108, + -0.017704937607049942, + 0.006152498535811901, + -0.006297729443758726, + -0.004538457840681076, + 0.012331402860581875, + -0.013849723152816296, + 0.017770951613783836, + -0.004195185378193855, + -0.011354396119713783, + 0.0024854245129972696, + -0.017454084008932114, + 0.0517021119594574, + 0.03770715743303299, + -0.006096386816352606, + -0.01198152918368578, + 0.0041753812693059444, + -0.004254598170518875, + 0.025653013959527016, + -0.0008639573352411389, + -0.004769506864249706, + -0.007604805286973715, + -0.02912534773349762, + 0.017704937607049942, + -0.019328879192471504, + 0.018840376287698746, + 0.013717695139348507, + 0.008911880664527416, + 0.013519653119146824, + -0.008099909871816635, + 0.0070436866953969, + -0.0117372777312994, + -0.007901867851614952, + 0.016054589301347733, + -3.143397771054879e-05, + 0.012232381850481033, + -0.03683577477931976, + -0.029415808618068695, + 0.029917513951659203, + 0.000452608015621081, + 0.005083072930574417, + 0.023052064701914787, + -0.028359586372971535, + 0.027989907190203667, + -0.002289033029228449, + 0.013288605026900768, + 0.006452862173318863, + -0.017559707164764404, + -0.03842011094093323, + -0.008661027997732162, + -0.0035812559071928263, + 0.02725055254995823, + 0.0011742227943614125, + 0.009710649959743023, + 0.006631099618971348, + 0.0079348748549819, + -0.0040499549359083176, + 0.023685799911618233, + -0.004640779457986355, + -0.025798244401812553, + -0.024385547265410423, + -0.02830677479505539, + -0.008647825568914413, + -0.0054956600069999695, + -0.0164374690502882, + 0.02313128300011158, + 0.021230081096291542, + -0.03041922114789486, + -0.023672595620155334, + 0.013625276274979115, + 0.016595901921391487, + -0.03100014291703701, + -0.0158433448523283, + 0.00687205046415329, + -0.022497547790408134, + 0.004376723896712065, + -0.006924861576408148, + -0.16646073758602142, + 0.01667512021958828, + 0.014219401404261589, + -0.0181934405118227, + 0.024874050170183182, + -0.004809115082025528, + 0.013664884492754936, + 0.010080327279865742, + -0.02688087336719036, + -0.0033766126725822687, + 0.028148341923952103, + 0.0059478553012013435, + -0.008812859654426575, + -0.017322055995464325, + -0.012503039091825485, + -0.030155165120959282, + -0.011948522180318832, + 0.03984601050615311, + 0.02925737574696541, + 0.03089452162384987, + 0.00769062340259552, + -0.02490045502781868, + 0.016490280628204346, + -0.0006407477194443345, + -0.0014531316701322794, + 0.013638478703796864, + -0.0193948931992054, + 0.04034771770238876, + -0.009136328473687172, + -0.025190917775034904, + -0.021520541980862617, + 0.006508973892778158, + 0.00628452654927969, + -0.007182315923273563, + -0.003412920283153653, + -0.004142374265938997, + -0.0015323484549298882, + -0.013400828465819359, + -0.0035119412932544947, + 0.038472920656204224, + 0.013783709146082401, + 0.03440646082162857, + -0.01144681591540575, + 0.02255035936832428, + 0.007235127035528421, + 0.02830677479505539, + 0.015011568553745747, + -0.017295651137828827, + -0.004436136223375797, + -0.016516685485839844, + 0.0006667406996712089, + -0.016397861763834953, + -0.0018417887622490525, + 0.024808036163449287, + -0.011360998265445232, + 0.015896154567599297, + 0.002960724988952279, + 0.016252629458904266, + -0.004545059520751238, + -0.004564863629639149, + 0.0031934240832924843, + -0.023672595620155334, + -0.006687211338430643, + 0.012522842735052109, + -0.008053699508309364, + -0.020741578191518784, + -0.016965581104159355, + 0.024359140545129776, + -0.022523954510688782, + -0.013031150214374065, + -0.013678086921572685, + -0.028808480128645897, + 0.016582699492573738, + -0.016635511070489883, + 0.010991320013999939, + 0.02619432844221592, + -0.0050038560293614864, + -0.007182315923273563, + 0.002269228920340538, + -0.004498849622905254, + -0.015605693683028221, + 0.04966888204216957, + 0.007855658419430256, + -0.025402162224054337, + -0.03736388683319092, + -0.016978783532977104, + -0.010053922422230244, + 0.030683275312185287, + -0.011948522180318832, + 0.004224891774356365, + 0.023632988333702087, + -0.026471586897969246, + -0.025309741497039795, + -0.03678296506404877, + 0.01057543233036995, + -0.0012394116492941976, + 0.01262186374515295, + -0.002742878859862685, + -0.020055033266544342, + -0.00011181109584867954, + -0.0008953139767982066, + -0.009499404579401016, + -0.03147544339299202, + 0.03028719313442707, + 0.009591824375092983, + 0.00033914658706635237, + -0.03131701052188873, + 0.011611850932240486, + 0.04887671768665314, + -0.016279036179184914, + -0.024808036163449287, + -0.008403574116528034, + 0.012159766629338264, + 0.007835853844881058, + -0.012654870748519897, + 0.014338226057589054, + -0.006390148773789406, + -0.020028626546263695, + 0.015711316838860512, + 0.004102766048163176, + 0.0539729930460453, + -0.016859957948327065, + 0.009420188143849373, + 0.009175936691462994, + -0.005225002765655518, + -0.030604058876633644, + -0.10240081697702408, + -0.007763238623738289, + 0.024689210578799248, + 0.009585223160684109, + 0.018813971430063248, + 0.011829696595668793, + 0.010733865201473236, + 0.013810114935040474, + 0.021045241504907608, + 0.04605131968855858, + -0.020517131313681602, + -0.02266918495297432, + -0.023448148742318153, + -0.0036142629105597734, + 0.024121491238474846, + -0.00986908283084631, + 0.007023882586508989, + -0.011453417129814625, + -0.026154721155762672, + 0.037759970873594284, + -0.010350984521210194, + -0.003759493585675955, + 0.009057112038135529, + -0.0026025993283838034, + -0.032822128385305405, + -0.009433391503989697, + -0.03725826367735863, + 0.010205754078924656, + 0.022972848266363144, + -0.004653982352465391, + 0.04047974571585655, + -0.011116746813058853, + 0.0027527809143066406, + -0.016978783532977104, + -0.014285415410995483, + -0.013427234254777431, + -0.022695589810609818, + -0.004007045645266771, + 0.02875566855072975, + -0.017770951613783836, + 0.0025151309091597795, + 0.014945554547011852, + 0.013783709146082401, + -0.0205435361713171, + -0.013546058908104897, + -0.026471586897969246, + -0.022946443408727646, + 0.008832664228975773, + -0.0019111033761873841, + -0.0005660695023834705, + -0.03802402690052986, + -0.028702858835458755, + -0.033059779554605484, + 0.019183648750185966, + 0.034696921706199646, + 0.00042909057810902596, + -0.00019587572023738176, + -0.007076693698763847, + -0.0140873733907938, + 0.006489169783890247, + -0.02303886227309704, + 0.02055673860013485, + -0.02418750524520874, + 0.03361429646611214, + 8.370360592380166e-05, + -0.014866338111460209, + -0.019315676763653755, + -0.0023269911762326956, + 0.007413364481180906, + 0.011842899955809116, + -0.024570386856794357, + -0.001982068410143256, + -0.006129393819719553, + 0.012476633302867413, + -0.02570582553744316, + 0.010562228970229626, + -0.04742440953850746, + -0.009413586929440498, + 0.009413586929440498, + -0.00903730746358633, + -0.007089896593242884, + -0.01759931445121765, + 0.02772585116326809, + -0.013288605026900768, + 0.035040196031332016, + 0.026352761313319206, + 0.002874906873330474, + -0.010225558653473854, + 0.016582699492573738, + -0.010879096575081348, + -0.013182982802391052, + 0.028227558359503746, + 0.013315009884536266, + -0.005092974752187729, + -0.029415808618068695, + 0.02421391010284424, + -0.0054032402113080025, + 0.008212133310735226, + -0.004142374265938997, + -0.0003492549585644156, + -0.02124328352510929, + 0.0014118730323389173, + -0.0387897863984108, + 0.015909356996417046, + 0.021995842456817627, + 0.012324801646173, + -0.01798219606280327, + 2.5706108317535836e-06, + 0.019672151654958725, + 0.014681498520076275, + 0.010951711796224117, + -0.0019672152120620012, + 0.009803068824112415, + 0.009479600936174393, + -0.017704937607049942, + -0.010067124851047993, + -0.030234381556510925, + -0.03614922985434532, + -0.006819239351898432, + 0.020992429926991463, + 0.0042512970976531506, + 0.010819683782756329, + 0.0029821794014424086, + 0.011757081374526024, + -0.00745957437902689, + 0.02561340667307377, + -0.03984601050615311, + -0.0082187345251441, + -0.008727042004466057, + -0.004485646728426218, + -0.002495326567441225, + -0.004789310973137617, + -0.005508862901479006, + -0.010641446337103844, + -0.005822428967803717, + 0.00654858211055398, + -0.007842455059289932, + -0.023672595620155334, + 0.009274957701563835, + 0.037179045379161835, + 0.02561340667307377, + 0.039634764194488525, + -0.0246760081499815, + -0.027752257883548737, + 0.006003967020660639, + -0.03313899412751198, + -0.0022411730606108904, + 0.004221591167151928, + 0.008099909871816635, + 0.0027610326651483774, + 0.010430201888084412, + 0.006327435374259949, + 0.025626609101891518, + 0.015302029438316822, + 0.021441325545310974, + -0.02301245741546154, + 0.010694256983697414, + 0.007155910134315491, + 0.002893060678616166, + -0.009486202150583267, + 0.0164374690502882, + -0.02092641592025757, + 0.03746950998902321, + 2.3633503587916493e-05, + -0.0001746274792822078, + -0.013598870486021042, + 0.0024821239057928324, + -0.00484872329980135, + -0.01975136809051037, + -0.011123348027467728, + -0.0009159432956948876, + -0.01292552798986435, + -0.007386959157884121, + -0.003327102167531848, + 0.018510306254029274, + 0.025098497048020363, + -0.012786898761987686, + 0.0013095514150336385, + 0.00251017976552248, + 0.007664217613637447, + -0.007479378487914801, + 0.009954901412129402, + 0.005663995631039143, + 0.011176158674061298, + -0.011671263724565506, + -0.0011899011442437768, + 0.028491614386439323, + 0.004601171240210533, + -0.014047765173017979, + -0.009822873398661613, + 0.0007624609279446304, + -0.0005124331801198423, + -0.014998365193605423, + 0.02899331972002983, + -0.004601171240210533, + 0.01796899177134037, + 0.012707682326436043, + 0.03321821242570877, + 0.0025547391269356012, + -0.015394449234008789, + 0.03456489369273186, + 0.034327246248722076, + 0.006380246486514807, + 0.012060745619237423, + -0.01890639029443264, + -0.02746179699897766, + -0.004317311104387045, + 0.013050954788923264, + -0.0033931161742657423, + -0.043622005730867386, + 0.007406763266772032, + 0.020728375762701035, + 0.0001283145829802379, + -0.00926835648715496, + -0.008357363753020763, + 0.0016305441968142986, + -0.01109034102410078, + 0.018338670954108238, + -0.025573797523975372, + -0.017190027981996536, + -0.031977150589227676, + 0.017295651137828827, + 0.024279924109578133, + -0.006743323057889938, + -0.017348460853099823, + 0.01150622870773077, + 0.018008600920438766, + -0.01285291276872158, + 0.019315676763653755, + -0.010133138857781887, + 0.003436025232076645, + -0.0052976179867982864, + 0.005611184518784285, + 0.0008284748764708638, + -0.027778662741184235, + -0.008344161324203014, + 0.005215100944042206, + -0.01820664294064045, + 0.023870637640357018, + 0.022721996530890465, + -0.0024177602026611567, + 0.13107725977897644, + 0.012555849738419056, + -0.012879318557679653, + 0.03218839317560196, + 0.004205087665468454, + 0.021282892674207687, + 0.018391482532024384, + 0.00787546206265688, + 0.009756859391927719, + -0.055346082895994186, + 0.002960724988952279, + -0.030498437583446503, + 0.007287938147783279, + -0.027329768985509872, + -0.0054956600069999695, + 0.02865004725754261, + 0.0015265721594914794, + 0.014430645853281021, + -0.015777330845594406, + -0.014285415410995483, + 0.034459274262189865, + -0.03382553905248642, + 0.006301030050963163, + 0.031158575788140297, + -0.01726924441754818, + -0.019685354083776474, + 0.012588856741786003, + -0.0002807654964271933, + 0.00850919634103775, + -0.021071648225188255, + -0.005281114485114813, + 0.011532634496688843, + -0.05006496608257294, + -0.03031359799206257, + 0.015407651662826538, + -0.03261088207364082, + -0.0034591301809996367, + -0.03221479803323746, + 0.002566291717812419, + 0.012786898761987686, + 0.002175159053876996, + 0.035779550671577454, + -0.014377834275364876, + -0.017520098015666008, + 0.004993954207748175, + -0.010344383306801319, + -0.008410175330936909, + -0.00040949266985990107, + -0.012542647309601307 + ], + "metadata": { + "source": "Thesis_Verladegeraeusche_in_Speditionen.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 41, + "has_images": true, + "image_count": 51, + "coordinates": "CoordinatesMetadata(points=((204.16666666666666, 189.02777777777797), (204.16666666666666, 642.3611111111111), (936.1666666666666, 642.3611111111111), (936.1666666666666, 189.02777777777797)), system=)", + "links": [], + "last_modified": "2025-05-05T22:59:16", + "_known_field_names": "frozenset({'cc_recipient', 'link_texts', 'url', 'filetype', 'category_depth', 'page_number', 'filename', 'orig_elements', 'detection_origin', 'email_message_id', 'page_name', 'coordinates', 'table_as_cells', 'link_start_indexes', 'sent_to', 'bcc_recipient', 'languages', 'last_modified', 'link_urls', 'file_directory', 'subject', 'data_source', 'detection_class_prob', 'image_base64', 'text_as_html', 'attached_to_filename', 'key_value_pairs', 'signature', 'sent_from', 'header_footer_type', 'parent_id', 'links', 'emphasized_text_contents', 'emphasized_text_tags', 'image_mime_type', 'is_continuation', 'image_path'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "Thesis_Verladegeraeusche_in_Speditionen.pdf", + "detection_class_prob": 0.2568194270133972, + "parent_id": "d45475a34bc527cde6987546fa6dd2f5", + "text_as_html": "
Flurf\u00f6rderger\u00e4t |Anzahl Einzelereignisse ElMax-PegelSchallleistungspegel
LAFmaxLWA,5sLWAmaxLWA,1hKlLWAT,1h
[dB(A)][dB(A)][dB(A)][dB(A)][dB(A)][dB(A)]
Gabelstapler29769,3100,7108,872,15,777,8
STABW [dB]6,54,96,54,92,9-
Gabelhubwagen9968,6100,7108,172,16,279,5
STABW [dB]6,45,16,4512,7-
", + "id": "5ba44de7-0ff3-4c0c-b018-67e92171e1c2", + "processing_timestamp": "2025-05-06T14:18:19.298665", + "chunk_number": 30, + "total_chunks": 49, + "chunking_strategy": "hybrid", + "word_count": 483 + } +} \ No newline at end of file diff --git a/data/processed/85fd305f-83de-70b0-47e8-2dc000000031.json b/data/processed/85fd305f-83de-70b0-47e8-2dc000000031.json new file mode 100644 index 0000000000000000000000000000000000000000..8103d1684ff28aad5514f2751f0bacc1a24d1bee --- /dev/null +++ b/data/processed/85fd305f-83de-70b0-47e8-2dc000000031.json @@ -0,0 +1,1570 @@ +{ + "id": "85fd305f-83de-70b0-47e8-2dc000000031", + "content": "Eine gute \u00dcbereinstimmung zwischen den Daten und der Gau\u00dfschen Glockenkurve deu- tet darauf hin, dass die Daten eine Normalverteilung aufweisen. Dies ist ein wichtiges Ergebnis, da die Normalverteilung in vielen statistischen Analysen und Modellierungen verwendet wird. In Diagramm 1 ist die Normalverteilung des st\u00fcndlichen Schallleistungspegel der Gabel- stapler Beladung in einen Koffer-Anh\u00e4nger dargestellt. [IMAGE: Normalverteilung Gabelstapler - Koffer 0,09 0,08 0,05 H\u00e4ufigkeit [%] 0,904 0 Y 60,0 65,0 70,0 75,0 80,0 85,0 90,0 95,0 st\u00fcndlicher Schallleistungspegel LWA,1h [dB[A)| \u00a9 Messdaten Mittelwert Kto fe Gau\u00dfsche Glockenkurve]\n\nDiagramm 1: Normalverteilung Gabelstapler \u2013 Koffer Anh\u00e4nger Beladung\nMit: \u03bc: Erfahrungswert, \u03c3: Standardabweichung\n61\n7 Ergebnisse und Interpretation\nDer h\u00f6chste Punkt der Normalverteilung repr\u00e4sentiert den energetischen Mittelwert des st\u00fcndlichen Schallleistungspegels von 74,6 dB(A). Die Standardabweichung s von 4,8 dB gibt an, wie weit die einzelnen Messwerte um den Mittelwert herumliegen. Ungef\u00e4hr 68,3% aller Messwerte liegen innerhalb einer Spanne von einer Standardabweichung um den Mittelwert herum. In diesem Fall befinden sich die Messwerte im Bereich von 69,7 bis 79,4 dB(A), welches einen gro\u00dfen Bereich abdeckt. Die Messpunkte, die niedri- ger als der Mittelwert liegen, sind dichter auf der Gau\u00dfschen Glockenkurve verteilt als diejenigen, die gr\u00f6\u00dfer als der Mittelwert sind. Dies bedeutet, dass die Wahrscheinlich- keit, einen Messpunkt zu finden, der niedriger als der Mittelwert ist, h\u00f6her ist als die Wahrscheinlichkeit, einen Messpunkt zu finden, der gr\u00f6\u00dfer als der Mittelwert ist. Die Messdaten haben eine sehr gute \u00dcbereinstimmung mit der normalen Verteilung. Dies bedeutet, dass die Beladevorg\u00e4nge einem bestimmten Muster folgen und keine signifi- kanten Ausrei\u00dfer oder Abweichungen auftreten. Folglich sind die Messungen konsistent und zuverl\u00e4ssig. In Diagramm 2 ist die Normalverteilung des st\u00fcndlichen Schallleistungspegel eines Ga- belstapler Beladevorgang in einer Wechselbr\u00fccke dargestellt. [IMAGE: Normalverteilung Gabelstapler - Wechselbr\u00fccke 022 01 A 0,08 R 0,06 E3 0,4 0,02 0 60,0 65,0 70,0 750 80,0 850 st\u00fcndlicher Schallleistungspegel LWA,1h [dB{A)I \u00a9 Messdaten Mittelwert uto wo Gau\u00dfsche]\n\nDiagramm 2: Normalverteilung Gabelstapler \u2013 Wechselbr\u00fccke Beladung\n62\n7 Ergebnisse und Interpretation\n\n## Mit: \u03bc: Erfahrungswert, \u03c3: Standardabweichung\n\nDie Ergebnisse f\u00fcr den Fall \u201eWechselbr\u00fccke\u201c, sind mit Bedacht zu interpretieren, da diese eine geringe Anzahl an Einzelereignissen aufweist. Der h\u00f6chste Punkt der Normal- verteilung repr\u00e4sentiert den energetischen Mittelwert des st\u00fcndlichen Schallleistungs- pegels von 73,2 dB(A). Die Standardabweichung s von 4,0 dB gibt an, wie weit die ein- zelnen Messwerte um den Mittelwert herumliegen. Ungef\u00e4hr 68,3% aller Messwerte liegen innerhalb einer Spanne von 69,2 bis 77,2 dB(A), welches einen gro\u00dfen Bereich abdeckt. Die Messdaten haben eine sehr gute \u00dcbereinstimmung mit der normalen Ver- teilung. Dies bedeutet, dass die Beladevorg\u00e4nge einem bestimmten Muster folgen und keine signifikanten Ausrei\u00dfer oder Abweichungen auftreten. Folglich sind die Messun- gen konsistent und zuverl\u00e4ssig. In Diagramm 3 ist die Normalverteilung des st\u00fcndlichen Schallleistungspegel eines Ga- belstapler Beladevorgang in einem Tautliner dargestellt. [IMAGE: Normalverteilung Gabelstapler - Tautliner H\u00e4ufigkeit [%] 0 v 60,0 65,0 70,0 75,0 80,0 85,0 90,0 st\u00fcndlicher Schallleistungspegel LWA,1h [dB(A] @ Messdaten > Mittelwert Wo \u20ac&>uo Gau\u00dfsche Glockenkurve]\n\nDiagramm 3: Normalverteilung Gabelstapler \u2013 Tautliner Beladung\nMit: \u03bc: Erfahrungswert, \u03c3: Standardabweichung\nDer h\u00f6chste Punkt der Normalverteilung repr\u00e4sentiert den energetischen Mittelwert des st\u00fcndlichen Schallleistungspegels von 71,6 dB(A). Die Standardabweichung s von 4,8\n63\n7 Ergebnisse und Interpretation\ndB gibt an, wie weit die einzelnen Messwerte um den Mittelwert herumliegen. Ungef\u00e4hr 68,3% aller Messwerte liegen innerhalb einer Spanne von 66,8 bis 76,4 dB(A), welches einen gro\u00dfen Bereich abdeckt. Die Messpunkte niedriger und h\u00f6her als der Mittelwert sind hier gleichm\u00e4\u00dfig auf der Gau\u00dfschen Glockenkurve verteilt.", + "embedding": [ + 0.01140451431274414, + 0.01379028707742691, + 0.02257307432591915, + -0.029022524133324623, + -0.0032214478123933077, + 0.008972862735390663, + -0.00846817996352911, + -0.002733150962740183, + -0.017080554738640785, + -0.04488397389650345, + 0.02001689001917839, + 0.03670418635010719, + -0.012000957503914833, + 0.0013682140270248055, + 0.005345046985894442, + 0.01417043711990118, + 0.0356292761862278, + 0.01154871005564928, + 0.002507027005776763, + -0.004735495429486036, + -0.009949455969035625, + 0.018129246309399605, + -0.002885538851842284, + -0.005522013641893864, + -0.01274159550666809, + 0.014930738136172295, + 0.03481654077768326, + -0.00299696228466928, + -0.01167324185371399, + 0.01478654332458973, + 0.013685417361557484, + 0.009359567426145077, + -0.02781652845442295, + 0.022559965029358864, + -0.0005485145375132561, + -0.02613862417638302, + -0.009320241399109364, + -0.007576792500913143, + 0.020515017211437225, + -0.007498140912503004, + 0.008147018030285835, + -0.00017112916975747794, + 0.012682606466114521, + -0.032509420067071915, + 0.0082912128418684, + 0.026728512719273567, + 0.015625495463609695, + 0.011378297582268715, + -0.008802450262010098, + -0.0003375474188942462, + 0.014865195378661156, + 0.012269685044884682, + -0.023988807573914528, + 0.010375486686825752, + 0.007445706054568291, + 0.004093172028660774, + 0.0006283952970989048, + -0.017880180850625038, + -0.02182588167488575, + -0.01605808176100254, + -0.027318401262164116, + -0.020056216046214104, + -0.016569318249821663, + -0.007799639366567135, + -0.019348349422216415, + -0.02240266092121601, + -0.010755636729300022, + 0.0010847398079931736, + -0.008959753438830376, + 0.021196667104959488, + 0.037805311381816864, + 0.03730718418955803, + -0.002130153588950634, + 0.012715378776192665, + 0.026217274367809296, + 0.0035852123983204365, + 0.007511249277740717, + 0.007340837270021439, + -0.005738306324928999, + -0.009910129941999912, + 0.03350567817687988, + -0.016149841248989105, + -0.012197587639093399, + 0.01996445469558239, + 0.0010724504245445132, + 0.001871258020401001, + -0.014249089173972607, + 0.0047027235850691795, + -0.03649444878101349, + -0.0018515951232984662, + 0.019754717126488686, + 0.014930738136172295, + 0.002472616732120514, + 0.00028429357917048037, + 0.0067247310653328896, + -0.002169479615986347, + 0.0014935653889551759, + 0.01553373597562313, + -0.0009651234722696245, + -0.024250980466604233, + -0.004027628805488348, + -0.010434475727379322, + 0.028131136670708656, + -0.001523059792816639, + -0.01886332966387272, + 0.004709278233349323, + 0.007373608648777008, + 0.006593644618988037, + -0.010637659579515457, + -0.025181692093610764, + -0.02548319101333618, + -0.0028068870306015015, + -0.022153597325086594, + -0.0032722437754273415, + 0.01676594838500023, + 0.014681674540042877, + 0.012774367816746235, + -0.0159401036798954, + -0.0036081525031477213, + -0.02096071094274521, + 0.02431652322411537, + -0.007603009697049856, + 0.04155438020825386, + -0.002929780399426818, + 0.029756607487797737, + 0.03659931570291519, + -0.010073987767100334, + -0.007157315965741873, + -0.017762204632163048, + -0.012689161114394665, + -0.02409367635846138, + 0.01676594838500023, + 0.013554330915212631, + 0.0048567503690719604, + -0.017722878605127335, + 0.008507505990564823, + 0.0011666687205433846, + 0.003255857853218913, + -0.02734461799263954, + -0.030359605327248573, + 0.004109557718038559, + 0.014838977716863155, + -0.02065921202301979, + -0.04173790290951729, + 0.009169491939246655, + 0.03125099092721939, + 0.019859585911035538, + 0.02240266092121601, + -0.021196667104959488, + -0.014367067255079746, + -0.00803559459745884, + -0.03101503662765026, + 0.009189154952764511, + 0.006193831097334623, + -0.017093664035201073, + -0.005918549839407206, + -0.005105814430862665, + 0.022743485867977142, + -0.010454138740897179, + -0.004633903503417969, + -0.010912940837442875, + 0.010060879401862621, + -0.0001093751925509423, + -0.01204683817923069, + 0.0030084322206676006, + 0.005872669629752636, + -0.007176978979259729, + 0.0009741356479935348, + -0.0027806698344647884, + -0.01236799918115139, + -0.005757968872785568, + 0.01944010891020298, + -0.019820259883999825, + 0.02339891903102398, + 0.004411056637763977, + 0.010578670538961887, + -0.012381108477711678, + -0.0001673399528954178, + -0.03620605543255806, + -0.03264050930738449, + -0.011850208044052124, + 0.01076874602586031, + 0.008592711761593819, + 0.010060879401862621, + -0.021668577566742897, + 0.012813692912459373, + 0.036992575973272324, + 0.003191953292116523, + 0.0011437286157160997, + -0.018928872421383858, + -0.0020236459095031023, + 0.010401704348623753, + 0.014681674540042877, + -0.028419526293873787, + -0.6292145848274231, + 0.0061807227320969105, + -0.00288717751391232, + 0.02280902862548828, + 0.00840919092297554, + 0.03125099092721939, + 0.007314619608223438, + 0.0038146134465932846, + -0.012505640275776386, + 0.03673040121793747, + -0.004873136058449745, + 0.006764057092368603, + 0.002572570228949189, + -0.0015632050344720483, + -0.011568373069167137, + -0.02245509624481201, + -0.02444760873913765, + -2.566681541793514e-05, + 0.019073067232966423, + 0.0178146380931139, + -0.022127380594611168, + 0.025273453444242477, + 0.0043913936242461205, + 0.019295914098620415, + -0.005092705599963665, + 0.015192911028862, + 0.013685417361557484, + -0.017382053658366203, + 0.014707891270518303, + -0.0037392389494925737, + -0.024460718035697937, + 0.014157328754663467, + -0.019230371341109276, + 0.02414610981941223, + 0.03397759050130844, + -0.004044014494866133, + -0.005161526147276163, + 0.008953199721872807, + 0.017591791227459908, + 0.026676077395677567, + -0.00755057530477643, + -0.011948523111641407, + -0.0013927927939221263, + -0.006088962312787771, + -0.010729419998824596, + -0.002153093693777919, + 0.028734134510159492, + -0.012558074668049812, + 0.01740827038884163, + -0.04976039007306099, + 0.008867993019521236, + 0.002708572195842862, + 0.014445718377828598, + 0.016372688114643097, + 0.027030011638998985, + -0.00896630808711052, + 0.043442025780677795, + -0.01670040376484394, + -0.012204141356050968, + 0.017500031739473343, + -0.0036114295944571495, + 0.0031821217853575945, + -0.0036442012060433626, + -0.007111435756087303, + -0.011725676245987415, + 0.007740650326013565, + 0.006003756076097488, + -0.03908995911478996, + 0.028026267886161804, + -0.002534882863983512, + -0.01832587458193302, + 0.013023431412875652, + -0.008127355016767979, + -0.004161992575973272, + 0.030857732519507408, + 0.032509420067071915, + 0.0018171848496422172, + -0.012656389735639095, + 0.013829613104462624, + 0.022651726379990578, + -0.010749083012342453, + -0.01419665478169918, + 0.0012625256786122918, + -0.005207406356930733, + 0.01729029230773449, + -0.009261252358555794, + -0.0003760540275834501, + 0.014013133943080902, + 0.010545899160206318, + 0.016831491142511368, + 0.0018335706554353237, + 0.033269722014665604, + 0.011607698164880276, + -0.01879778690636158, + -0.005620328243821859, + 0.05715366080403328, + -0.026571208611130714, + 0.004063677508383989, + -0.005623605567961931, + -0.012702269479632378, + -0.025063715875148773, + -0.009667620062828064, + 0.007989714853465557, + -0.012132043950259686, + 0.03324350342154503, + 0.0052663953974843025, + -0.011273428797721863, + -0.013842721469700336, + 0.012990660034120083, + -0.030595559626817703, + 0.008730352856218815, + -0.005830066744238138, + -0.007026229985058308, + -0.012853018939495087, + -0.006809937302023172, + -0.03311241790652275, + 0.026872707530856133, + 0.006816491484642029, + 7.255835953401402e-05, + 0.003680249908939004, + -0.0005395023617893457, + -0.012177924625575542, + 0.0583072192966938, + -0.017906399443745613, + -0.019807150587439537, + 0.03014986589550972, + 0.0165824256837368, + 0.003863770980387926, + 0.005220514722168446, + -0.03565549477934837, + 0.01557306107133627, + 0.004319296218454838, + 0.032797809690237045, + -0.015468192286789417, + 0.03426598012447357, + 0.006144674029201269, + 0.024539370089769363, + -0.026558099314570427, + 0.002906840294599533, + -0.047925177961587906, + -0.016831491142511368, + 0.00037892156979069114, + 0.012898899614810944, + -0.04679783806204796, + -0.01844385266304016, + -0.026636751368641853, + -0.03347945958375931, + 0.0020383931696414948, + 0.017237858846783638, + -0.0013362617464736104, + 0.010926049202680588, + -0.01583523489534855, + -0.011220993474125862, + 0.012984105385839939, + 0.013698526658117771, + 0.009412001818418503, + -0.015428866259753704, + -0.02705622836947441, + 1.6718633560230955e-05, + -0.011974740773439407, + 0.015284671448171139, + 0.016779055818915367, + -0.04994390904903412, + -0.007347391452640295, + -0.02292700670659542, + -0.0098970215767622, + 0.007681661751121283, + -0.006338026374578476, + -0.0257846899330616, + -0.02507682330906391, + 0.0008586157928220928, + 0.00288717751391232, + -0.0009405447635799646, + 0.004152161069214344, + -0.010486910119652748, + -0.0025742086581885815, + -0.016503775492310524, + 0.006557595916092396, + -0.020528126507997513, + -0.028498178347945213, + 0.01675283908843994, + -0.009949455969035625, + -0.031408295035362244, + -0.004066954832524061, + 0.02294011600315571, + 0.01068353932350874, + 0.008671363815665245, + 0.004034183453768492, + -0.013986916281282902, + 0.013659200631082058, + -0.011194776743650436, + 0.01740827038884163, + -0.03421354293823242, + 0.015035606920719147, + -0.021721012890338898, + -0.011738784611225128, + 0.012177924625575542, + -0.004332404583692551, + 0.0019384397892281413, + 0.020003780722618103, + 0.015979429706931114, + -0.004673229530453682, + 0.007589901331812143, + -0.018312767148017883, + 0.03216859698295593, + -0.03072664700448513, + 0.014616130851209164, + -0.010703202337026596, + 0.032037511467933655, + 0.006544487550854683, + 0.022481312975287437, + -0.0020793576259166002, + -0.024224761873483658, + -0.009097394533455372, + 0.001671351259574294, + 0.03882778435945511, + -0.008251887746155262, + -0.00030600474565289915, + 0.03368919715285301, + 0.006554318591952324, + -0.009975673630833626, + 0.009988781996071339, + 0.021852098405361176, + 0.02124910242855549, + 0.004689615219831467, + -0.006367520894855261, + 0.0017074000788852572, + 0.0277116596698761, + 0.00026626919861882925, + 0.004742049612104893, + -0.007150761783123016, + 0.003169013187289238, + 0.008573048748075962, + 0.0049091847613453865, + 0.0178670734167099, + 0.015494409948587418, + 0.013488788157701492, + -0.0026544991414994, + 0.03135586157441139, + 0.016844598576426506, + 0.010749083012342453, + 0.005158248823136091, + -0.001439492218196392, + -0.019689174368977547, + 0.011214439757168293, + -0.017971942201256752, + 0.003054312663152814, + 0.029363349080085754, + -0.010873614810407162, + -0.0006845166790299118, + -0.011588036082684994, + -0.007249076385051012, + -0.007334282621741295, + -0.00014665287744719535, + 0.028996305540204048, + -0.023792177438735962, + 0.02991391159594059, + -0.01805059425532818, + 0.007878291420638561, + 0.019531870260834694, + 0.006495330017060041, + 0.01158148143440485, + 0.020292170345783234, + -0.030621778219938278, + 0.002017091726884246, + 0.003046119585633278, + -0.022088054567575455, + -0.027134880423545837, + -0.00916293729096651, + 0.008055257610976696, + 0.00928091537207365, + 0.003372197039425373, + 0.019361456856131554, + 0.013724743388593197, + 0.01460302248597145, + -0.01944010891020298, + 0.009588968008756638, + 0.01647755689918995, + 0.021196667104959488, + 0.019925128668546677, + -0.0165824256837368, + -0.018535614013671875, + -0.008297767490148544, + 0.01329871267080307, + -0.01739516295492649, + -0.008396082557737827, + -0.002564377151429653, + 0.003929314203560352, + -0.024486934766173363, + -0.008533722721040249, + -0.018692918121814728, + 0.016320254653692245, + -0.007766867987811565, + -0.022481312975287437, + 0.021904533728957176, + 0.006623139139264822, + 0.02373974211513996, + 0.009615185670554638, + -0.009602077305316925, + 0.01595321111381054, + -0.0002492689236532897, + -0.03164425119757652, + -0.037149880081415176, + -0.02199629321694374, + -0.0017401716904714704, + 0.014367067255079746, + -0.01978093385696411, + -0.020344605669379234, + 0.008396082557737827, + 0.0010019914479926229, + -0.007412934675812721, + 0.0002160877047572285, + -0.013501896522939205, + 0.01605808176100254, + -0.0224682055413723, + -0.01245320588350296, + -0.012197587639093399, + 0.003886711085215211, + 0.04955064877867699, + 0.005594111047685146, + -0.03025473654270172, + -0.008802450262010098, + -0.014013133943080902, + 0.0014632516540586948, + 0.008579603396356106, + 0.028760351240634918, + 0.00850095134228468, + 0.011476612649857998, + -0.010473801754415035, + 0.0041030035354197025, + 0.007399825844913721, + -0.021340861916542053, + 0.011319308541715145, + 0.036992575973272324, + 0.017185423523187637, + -0.014550588093698025, + 0.019662955775856972, + -0.013567440211772919, + 0.012538411654531956, + -0.020279062911868095, + 9.744428825797513e-05, + -0.010309943929314613, + 0.014720999635756016, + 0.007675107102841139, + -0.019715391099452972, + 0.00443727383390069, + 0.013724743388593197, + 0.030071213841438293, + -0.008304322138428688, + -0.023831503465771675, + 0.027423270046710968, + 0.011909197084605694, + 0.004876413382589817, + -0.02566671185195446, + -0.008651700802147388, + 0.05015364661812782, + 0.018417635932564735, + 0.03172290325164795, + -0.006868926342576742, + -0.0007049989071674645, + 0.0004399586468935013, + -0.012518748641014099, + 0.01622849330306053, + 0.00014624324103351682, + 0.005066488403826952, + 0.002711849519982934, + 0.012505640275776386, + 0.003257496515288949, + 0.013816503807902336, + -0.004139052238315344, + -0.0038703251630067825, + 0.006370797753334045, + -0.012905453331768513, + -0.002103936392813921, + 0.012132043950259686, + -0.034082457423210144, + 0.007032784167677164, + -0.0076947701163589954, + 0.009562751278281212, + -0.029546869918704033, + 0.0009946179343387485, + -0.018168572336435318, + -0.022913899272680283, + -0.013567440211772919, + -0.02695135958492756, + -0.018299657851457596, + 0.018522504717111588, + -0.010047771036624908, + -0.018732242286205292, + -0.01774909533560276, + -0.02148505672812462, + -0.015061824582517147, + -0.007334282621741295, + 0.010060879401862621, + -0.012754704803228378, + -0.0318802073597908, + -0.02008243277668953, + -0.017368944361805916, + 0.028786567971110344, + 0.0013165988493710756, + 0.019636739045381546, + 0.0018024377059191465, + -0.019872695207595825, + 0.00018731014279183, + -0.019662955775856972, + -0.022153597325086594, + 0.003421354340389371, + -0.013128300197422504, + -0.024696674197912216, + 0.010100205428898335, + 0.003772010561078787, + 0.008972862735390663, + 0.007045892532914877, + 0.008330538868904114, + -0.009241589345037937, + 0.013567440211772919, + 0.0019204154377803206, + -0.013233169913291931, + -0.005849729757755995, + 0.008415745571255684, + 0.017316510900855064, + 0.017447596415877342, + 0.01908617652952671, + -0.015009390190243721, + 0.018666699528694153, + -0.01920415461063385, + -0.012761258520185947, + -0.0020859120413661003, + 0.008953199721872807, + 0.004165269434452057, + -0.0006980349426157773, + 0.005082874093204737, + 0.007275294046849012, + 0.005698980297893286, + 0.0020924662239849567, + -0.01984647661447525, + 0.004614240489900112, + 0.010840843431651592, + 0.0016148203285411, + 0.008264996111392975, + 0.017657333984971046, + 0.01117511373013258, + 0.016831491142511368, + -0.007858628407120705, + -0.008579603396356106, + -0.014681674540042877, + 0.03717609494924545, + 0.003998134285211563, + 0.0029871307779103518, + 0.047164879739284515, + -0.020764082670211792, + 0.011384852230548859, + -0.04016486555337906, + 0.0014591552317142487, + 0.018522504717111588, + 0.011758447624742985, + -0.004509371239691973, + -0.015861451625823975, + -0.0058923326432704926, + -0.022376444190740585, + 0.014825869351625443, + 0.0165824256837368, + -0.012525303289294243, + -0.011181667447090149, + -0.015166693367064, + 0.011135787703096867, + -0.004260307177901268, + -0.00024906411999836564, + -0.009044960141181946, + -0.02071164734661579, + -0.03526223450899124, + 0.012236913666129112, + -0.000416813709307462, + 0.023241614922881126, + -0.0038211678620427847, + -0.00806181225925684, + -0.02200940251350403, + -0.009890466928482056, + -0.0016647969605401158, + -0.010926049202680588, + 0.013049649074673653, + 0.009726609103381634, + 0.021393297240138054, + 0.01301032304763794, + 0.03772665932774544, + -0.0030903613660484552, + -0.0063314721919596195, + 0.015245345421135426, + -0.009189154952764511, + -0.006882034707814455, + -0.03143451362848282, + -0.012282793410122395, + -0.0185618307441473, + 0.017827747389674187, + 0.014498152770102024, + 0.002215359825640917, + 0.008278104476630688, + 0.027030011638998985, + 0.01292511634528637, + 0.04915739223361015, + 0.0024988341610878706, + -0.010585225187242031, + -0.01659553498029709, + -0.038093701004981995, + -0.0002847032155841589, + 0.005050102714449167, + 0.008769678883254528, + 0.010447584092617035, + -0.02800004929304123, + -0.018902655690908432, + 0.022782811895012856, + -0.004722386598587036, + -0.0055908337235450745, + -0.025928884744644165, + 0.013102083466947079, + -0.0462210550904274, + 0.03091016784310341, + -0.002969106426462531, + 0.004066954832524061, + -0.0026299203746020794, + -0.012164815329015255, + -0.021144231781363487, + -0.003172290278598666, + 0.020226627588272095, + 0.006410123780369759, + 0.03777909278869629, + -0.01339047309011221, + -0.006570704746991396, + 0.004201318137347698, + -0.01734272763133049, + -0.010847398079931736, + -0.009169491939246655, + -0.005600665230304003, + -0.013908264227211475, + -0.021380187943577766, + -0.017264075577259064, + -0.02718731388449669, + -0.01715920679271221, + 0.0129185626283288, + -0.009228480979800224, + 0.00809458363801241, + 0.015061824582517147, + -0.01681838184595108, + -0.008127355016767979, + 0.004627348855137825, + -0.0051680803298950195, + 0.053745415061712265, + 0.01867980882525444, + 0.05046825483441353, + 0.03874913230538368, + -0.020921384915709496, + 0.001293658628128469, + -0.05547575280070305, + 0.014353957958519459, + 0.003421354340389371, + 0.021445730701088905, + 0.004817424342036247, + -0.016425123438239098, + -0.012348337098956108, + 0.007622672710567713, + -0.0035917668137699366, + 0.004938679281622171, + -0.012197587639093399, + 0.025824015960097313, + 0.015035606920719147, + -0.012617063708603382, + -0.02135397121310234, + 0.02059366926550865, + -0.010985038243234158, + -0.01067698560655117, + 0.008140464313328266, + -0.004253752995282412, + 0.002484086900949478, + -0.0022284684237092733, + -0.001092113321647048, + 0.05149072781205177, + 0.01196163147687912, + 0.04283902794122696, + -0.000862712215166539, + -0.01675283908843994, + 0.002793778432533145, + -0.028498178347945213, + -0.019164828583598137, + 0.011384852230548859, + -0.003863770980387926, + 0.054794106632471085, + -0.011293090879917145, + -0.006626416463404894, + 0.004037460312247276, + -0.008022486232221127, + -0.00939889345318079, + -0.0029494434129446745, + -0.0024005193263292313, + 0.016425123438239098, + -0.013403582386672497, + -0.010139531455934048, + 0.019584303721785545, + -0.007753759156912565, + 0.001874535228125751, + 0.01617605797946453, + -0.012754704803228378, + -0.018902655690908432, + -0.003804782172665, + -0.007006566971540451, + -0.006475667003542185, + 0.01885022036731243, + 0.0018548722146078944, + -0.010165748186409473, + -0.008133909665048122, + -0.01169945951551199, + -0.008743461221456528, + -0.020882058888673782, + 0.01921726204454899, + -0.039194826036691666, + 0.005846452433615923, + -0.01123410277068615, + 0.006144674029201269, + 0.03893265500664711, + -0.015297779813408852, + -0.015730364248156548, + -0.020515017211437225, + 0.02200940251350403, + -0.02164236083626747, + 0.01466856524348259, + 0.04302254691720009, + -0.007360499817878008, + -0.020986929535865784, + 0.0048010386526584625, + 0.002620088867843151, + 0.010539344511926174, + 0.03725474700331688, + -0.008382974192500114, + -0.00622660294175148, + -0.007249076385051012, + -0.004447105340659618, + 0.01989891193807125, + -0.023831503465771675, + -0.01248597726225853, + -0.003945699892938137, + 0.019099285826086998, + 0.0009733163169585168, + -0.0038473850581794977, + -0.010775299742817879, + -0.004548697266727686, + 0.011594589799642563, + -0.005679317284375429, + 0.009988781996071339, + -0.013711635023355484, + 0.01123410277068615, + 0.009359567426145077, + -0.012322119437158108, + 0.010047771036624908, + -0.03269294276833534, + -0.013986916281282902, + 0.007045892532914877, + 0.014275306835770607, + -0.04042704030871391, + 0.014970064163208008, + -0.012761258520185947, + -0.017906399443745613, + -0.021498166024684906, + 0.020292170345783234, + 0.007989714853465557, + 0.013895155861973763, + 0.025168584659695625, + 0.005505627952516079, + 0.006370797753334045, + 0.02676783874630928, + -0.0032312790863215923, + -0.0062331571243703365, + 0.0317753367125988, + 0.011050581932067871, + -0.020803408697247505, + 0.010945712216198444, + -0.004876413382589817, + 0.00840919092297554, + 0.035996317863464355, + -0.014707891270518303, + -0.005911995656788349, + 0.005600665230304003, + -0.01646444946527481, + -0.02211427129805088, + -0.013895155861973763, + 0.010047771036624908, + -0.005430253222584724, + 0.02944199927151203, + -0.00541386753320694, + 0.02020041085779667, + 0.011070244014263153, + 0.030176084488630295, + -0.03439706563949585, + -0.0012854657834395766, + -0.0018909210339188576, + -0.008605821058154106, + 0.011823991313576698, + -0.018076810985803604, + -0.015153585001826286, + 0.0020629719365388155, + 0.009785598143935204, + -0.008605821058154106, + 0.020803408697247505, + 0.03135586157441139, + -0.0014362151268869638, + -0.007157315965741873, + 0.007766867987811565, + 0.015232237055897713, + 0.022651726379990578, + -0.006980349309742451, + 0.0034672345500439405, + -0.02082962542772293, + 6.989566463744268e-05, + -0.011948523111641407, + 0.011181667447090149, + -0.039194826036691666, + -0.01675283908843994, + 0.02514236606657505, + -0.008127355016767979, + -0.010283726267516613, + 0.017788421362638474, + -0.0074784778989851475, + -0.0035917668137699366, + 0.007878291420638561, + 0.01978093385696411, + 0.018260331824421883, + -0.021970076486468315, + 0.019059959799051285, + 0.01803748495876789, + -0.007878291420638561, + -0.014000024646520615, + 0.0070131211541593075, + -0.025797799229621887, + -0.0017188701312988997, + 0.018286550417542458, + -0.02170790359377861, + 0.007989714853465557, + -0.017093664035201073, + 0.03329594060778618, + 0.0027544524054974318, + -0.00599392456933856, + -0.04955064877867699, + -0.0370187908411026, + -0.04207872599363327, + 0.028131136670708656, + 0.03321728855371475, + -0.006875480525195599, + 0.02094760350883007, + 0.006229880265891552, + -0.012387662194669247, + 0.004332404583692551, + -0.007465369068086147, + 0.0030330109875649214, + -0.016962576657533646, + -0.009018742479383945, + 0.003637647023424506, + -0.011896088719367981, + 0.0001352852414129302, + -0.0062331571243703365, + -0.01676594838500023, + -0.036861490458250046, + 0.003539332188665867, + 0.19474191963672638, + -0.023949481546878815, + -0.0102444002404809, + 0.022494422271847725, + -0.021983185783028603, + -0.02456558682024479, + 0.012846465222537518, + -0.0024627852253615856, + 0.009910129941999912, + 0.01989891193807125, + 0.0034442944452166557, + 0.007845520041882992, + 0.018535614013671875, + 0.012558074668049812, + 0.021616144105792046, + -0.009910129941999912, + -0.02561427839100361, + -0.029546869918704033, + -0.008114246651530266, + 0.02375285141170025, + 0.037149880081415176, + -0.031172340735793114, + -0.010257508605718613, + -0.009536533616483212, + 0.021917643025517464, + 0.0038277222774922848, + -0.021983185783028603, + 2.8342308723949827e-05, + 0.04475288838148117, + 0.025181692093610764, + -0.015232237055897713, + -0.007052447181195021, + 0.016044972464442253, + -0.010840843431651592, + -0.013908264227211475, + 0.006914806552231312, + 0.007360499817878008, + -0.020226627588272095, + 0.02404124103486538, + 0.016084298491477966, + 0.006102070678025484, + -0.03340080752968788, + 0.002213721163570881, + -0.016949469223618507, + 0.014471936039626598, + 0.010454138740897179, + -0.005964430049061775, + 0.010565562173724174, + 0.010290280915796757, + -0.0004235728411003947, + -0.002797055523842573, + 0.009392338804900646, + 0.009077731519937515, + 0.038801565766334534, + -0.008959753438830376, + -0.015979429706931114, + 0.01015263982117176, + -0.012479422613978386, + 0.015638604760169983, + 0.008553385734558105, + -0.02781652845442295, + 0.011758447624742985, + -0.01070975698530674, + 0.01426219753921032, + -0.026086188852787018, + 0.013737852685153484, + -0.03597010299563408, + 0.005780909210443497, + -0.011411068961024284, + -0.0291536096483469, + 0.009156383574008942, + -0.009248143993318081, + -0.025889558717608452, + 0.007937280461192131, + -0.02747570537030697, + -0.02431652322411537, + 0.02421165443956852, + 0.02415921911597252, + 0.018522504717111588, + 0.009962564334273338, + -0.013632982969284058, + -0.01652999222278595, + -0.013200398534536362, + -0.028078701347112656, + -0.008750015869736671, + -0.017893290147185326, + 0.004791207145899534, + 0.015743473544716835, + 0.004601131659001112, + -0.034082457423210144, + -0.017762204632163048, + 0.00858615804463625, + 0.0018057147972285748, + -0.006764057092368603, + -0.0018352093175053596, + -0.020973820239305496, + 0.0031509888358414173, + 0.012551520951092243, + -0.025352105498313904, + 0.006882034707814455, + -0.017473813146352768, + 0.04207872599363327, + 0.039614301174879074, + -0.0036179840099066496, + -0.007983160205185413, + -0.012970997020602226, + -0.007891399785876274, + 0.022245358675718307, + -0.004896075930446386, + -0.027606790885329247, + -0.012997213751077652, + -0.03403002396225929, + 0.01803748495876789, + -0.010480355471372604, + 0.017486922442913055, + 0.018666699528694153, + 0.018365200608968735, + 0.00299040786921978, + -0.006416677962988615, + 0.007439151871949434, + -0.004981282167136669, + -0.018941981717944145, + 0.01582212559878826, + 0.014104894362390041, + 0.01774909533560276, + -0.02996634505689144, + -0.024185435846447945, + 0.02683338150382042, + -0.007897954434156418, + 0.015192911028862, + 0.041475728154182434, + -0.04089894890785217, + 0.021275319159030914, + -0.0024250978603959084, + 0.004709278233349323, + 0.008323985151946545, + -0.01810302771627903, + -0.04401880502700806, + -0.0004522480012383312, + -0.004243921488523483, + 0.020672321319580078, + 0.0004147654981352389, + 0.012472868897020817, + 0.011837099678814411, + 1.0036300409410615e-05, + -0.007622672710567713, + 0.012374553829431534, + -0.0032607736065983772, + -0.0318802073597908, + -0.020515017211437225, + -0.009385784156620502, + -0.010657322593033314, + -0.021721012890338898, + -0.018286550417542458, + 0.014642348513007164, + 0.009693837724626064, + -0.033846501260995865, + -0.04165925085544586, + 0.009562751278281212, + 0.01921726204454899, + -0.014563696458935738, + -0.02135397121310234, + 0.01618916727602482, + -0.0178670734167099, + 0.005410590209066868, + -0.0010757276322692633, + -0.1649591028690338, + 0.024290304630994797, + 0.0009708584984764457, + -0.024958845227956772, + 0.00038506623241119087, + -0.005561339668929577, + 0.0205412358045578, + 0.01989891193807125, + -0.013141409493982792, + -0.013174180872738361, + 0.013462570495903492, + -0.004299633204936981, + -0.013272495940327644, + -0.013449462130665779, + -0.002179310889914632, + -0.008691026829183102, + -0.026204166933894157, + 0.04407123848795891, + 0.013108637183904648, + 0.023765960708260536, + 0.02297944203019142, + -0.028498178347945213, + 0.021550599485635757, + -0.007707878947257996, + -0.011791219934821129, + 0.009739717468619347, + -0.021629251539707184, + 0.04939334839582443, + -0.012997213751077652, + -0.01944010891020298, + -0.01426219753921032, + -0.00507631991058588, + 0.0158876683562994, + 0.0038834339939057827, + -0.011378297582268715, + -0.01550751831382513, + -0.005695702973753214, + -0.015848342329263687, + 0.005282781086862087, + 0.026335252448916435, + 0.015153585001826286, + 0.01192886009812355, + -0.00667885085567832, + 0.02269105240702629, + -0.004627348855137825, + 0.04005999490618706, + 0.021432623267173767, + -0.012348337098956108, + -0.022559965029358864, + -0.009077731519937515, + 0.0017467259895056486, + -0.011607698164880276, + 0.019571196287870407, + 0.020528126507997513, + -0.008959753438830376, + 0.01457680482417345, + -0.0129185626283288, + 0.036048755049705505, + -0.004755158443003893, + -0.009235035628080368, + 0.012944779358804226, + -0.03985025733709335, + 0.0071376534178853035, + -0.0004866581584792584, + 0.009824924170970917, + -0.03589145094156265, + -0.015743473544716835, + 0.014589914120733738, + -0.020868951454758644, + -0.009582414291799068, + -0.009346459060907364, + -0.024185435846447945, + 0.009156383574008942, + -0.01213859859853983, + 0.008101138286292553, + 0.021734120324254036, + -0.012472868897020817, + 0.003988302778452635, + 0.012118935585021973, + -0.0008995802490971982, + -0.004247198812663555, + 0.048921436071395874, + 0.00949065387248993, + -0.034187328070402145, + -0.021970076486468315, + -0.02368730865418911, + 0.007373608648777008, + 0.030123649165034294, + -0.014118002727627754, + 0.010690093971788883, + 0.012826802209019661, + -0.016503775492310524, + -0.020344605669379234, + -0.03371541574597359, + 0.023254722356796265, + -0.009693837724626064, + -0.0040767863392829895, + 0.0005976719548925757, + -0.004925570450723171, + -0.011725676245987415, + -0.001700845779851079, + -0.003598320996388793, + -0.031696684658527374, + 0.026531882584095, + 0.0129185626283288, + -0.0017172315856441855, + -0.02431652322411537, + 0.00893353670835495, + 0.01629403606057167, + -0.016202276572585106, + -0.01768355257809162, + -0.013449462130665779, + 0.01600564643740654, + -0.008343648165464401, + -0.01879778690636158, + 0.016254710033535957, + -0.015428866259753704, + -0.012721932493150234, + 0.01622849330306053, + -0.0178670734167099, + 0.06292145699262619, + -0.01803748495876789, + -0.0009102310286834836, + 0.005259840749204159, + -0.004112835042178631, + -0.02309742011129856, + -0.07996269315481186, + -0.0007729999488219619, + 0.03534088656306267, + 0.012905453331768513, + 0.012826802209019661, + 0.02030527964234352, + 0.00018864148296415806, + 0.015114258974790573, + 0.009870803914964199, + 0.062187377363443375, + -0.026295926421880722, + -0.022245358675718307, + -0.025155475363135338, + 0.0026331976987421513, + 0.00512220012024045, + 0.0006714080227538943, + 0.009110502898693085, + -0.013436353765428066, + -0.021288426592946053, + 0.03324350342154503, + -0.002385772066190839, + -0.01481276098638773, + -0.004299633204936981, + -0.011817436665296555, + -0.023189179599285126, + -0.027213532477617264, + -0.04084651544690132, + 0.017880180850625038, + 0.017958832904696465, + -0.011856762692332268, + 0.035471972078084946, + -0.03211616352200508, + -0.007793085183948278, + -0.012630172073841095, + -0.01664797030389309, + -0.007753759156912565, + -0.02834087423980236, + -0.02786896377801895, + 0.02747570537030697, + -0.018286550417542458, + 0.0007598913507536054, + 0.021222883835434914, + 0.016962576657533646, + -0.014065568335354328, + -0.008140464313328266, + -0.004240644164383411, + -0.02933713048696518, + 0.004122666548937559, + 0.0060824076645076275, + 0.0005276226438581944, + -0.014707891270518303, + -0.015546844340860844, + -0.014432610012590885, + 0.018024377524852753, + 0.02334648370742798, + 0.01140451431274414, + -0.0013018515892326832, + -0.012328674085438251, + -0.006433064118027687, + 0.0022382999304682016, + -0.007222859188914299, + 0.004968173801898956, + -0.031460728496313095, + 0.04331094026565552, + 0.0038113363552838564, + -0.0013862383784726262, + -0.02141951397061348, + -0.019807150587439537, + 0.013619874604046345, + -0.0035065605770796537, + -0.017552465200424194, + 0.014353957958519459, + 0.0013338038697838783, + 0.00713109876960516, + -0.013016876764595509, + 0.01027717161923647, + -0.03725474700331688, + -0.0027741154190152884, + 0.002559461398050189, + -0.018732242286205292, + 0.006066021975129843, + -0.021458839997649193, + 0.007570238318294287, + -0.005381095688790083, + 0.03405623883008957, + 0.013895155861973763, + -0.0044700452126562595, + -0.0064461724832654, + 0.014852086082100868, + -0.012898899614810944, + -0.023726634681224823, + 0.007471923250705004, + 0.03214237838983536, + -0.005420421715825796, + -0.030883951112627983, + 0.019754717126488686, + 0.014209763146936893, + -0.009103949181735516, + 0.012702269479632378, + 0.0014140942366793752, + -0.016739729791879654, + -0.0051680803298950195, + -0.0345543697476387, + 0.010486910119652748, + 0.021026255562901497, + 0.014563696458935738, + -0.015559952706098557, + -0.01158148143440485, + -0.004617517814040184, + 0.01557306107133627, + 0.006092239171266556, + -0.008258441463112831, + 0.009392338804900646, + -0.005466301925480366, + -0.0192565880715847, + -0.019361456856131554, + -0.04422854259610176, + -0.03379406780004501, + -0.017906399443745613, + 0.02619105763733387, + 0.005256563890725374, + 0.0224157702177763, + -0.008396082557737827, + 0.013449462130665779, + -0.017382053658366203, + 0.01886332966387272, + -0.024775324389338493, + -0.002852767240256071, + -0.005803849082440138, + 0.007445706054568291, + -0.011260319501161575, + 0.0006582994246855378, + 0.0004837906453758478, + -0.013842721469700336, + -0.0021104905754327774, + 0.017329618334770203, + -0.0001981657260330394, + -0.028131136670708656, + 0.010480355471372604, + 0.024578696116805077, + 0.028314657509326935, + 0.03922104462981224, + -0.04619484022259712, + -0.03801504895091057, + -0.008664809167385101, + -0.010309943929314613, + 0.0012125489301979542, + 0.010821180418133736, + 0.017945725470781326, + -0.010965375229716301, + 0.02031838893890381, + -0.015009390190243721, + 0.03764800727367401, + 0.00809458363801241, + 0.022795921191573143, + -0.015428866259753704, + -8.310671546496451e-05, + 0.014865195378661156, + 8.500132025801577e-06, + 0.004499539732933044, + 0.01820789836347103, + -0.0435468927025795, + 0.032273467630147934, + -0.007904508151113987, + 0.0004139461962040514, + -0.004558528773486614, + 0.001382961287163198, + -0.014078676700592041, + -0.02666296809911728, + -0.010014998726546764, + -0.0028412973042577505, + -0.016307145357131958, + -0.001756557496264577, + 0.009071176871657372, + 0.021340861916542053, + 0.022206032648682594, + -0.004427442327141762, + -0.011470058001577854, + 0.005961153190582991, + -0.0006177445757202804, + 0.0020072602201253176, + -0.00253815995529294, + 0.015861451625823975, + 0.011948523111641407, + 0.005213960539549589, + -0.00356554938480258, + 0.034423284232616425, + 0.012774367816746235, + -0.007000012323260307, + 0.0032951838802546263, + 0.003421354340389371, + 0.0023497233632951975, + -0.005302444100379944, + 0.03515736758708954, + -0.005272949580103159, + 0.012381108477711678, + 0.02031838893890381, + 0.03835587203502655, + -0.01329871267080307, + -0.022337118163704872, + 0.026282818987965584, + 0.02484086900949478, + 0.007937280461192131, + 0.0027446208987385035, + -0.01739516295492649, + -0.021576818078756332, + 0.01233522780239582, + 0.020528126507997513, + 0.0034639574587345123, + -0.046640533953905106, + 0.0004469226114451885, + 0.014996281825006008, + -0.00189911387860775, + -0.0027757540810853243, + -0.010198520496487617, + 0.004807592835277319, + -0.010434475727379322, + 0.014419501647353172, + -0.025535626336932182, + -0.004981282167136669, + -0.022481312975287437, + 0.020632995292544365, + 0.019741607829928398, + -0.0012076332932338119, + -0.0026086189318448305, + -0.007281848229467869, + 0.015795908868312836, + -0.012066501192748547, + 0.021196667104959488, + -0.007720987778156996, + 0.011181667447090149, + -0.010978483594954014, + 0.004286524374037981, + 0.008173235692083836, + -0.01757868379354477, + -0.01740827038884163, + -0.00600703340023756, + -0.0030985542107373476, + 0.012787476181983948, + 0.027423270046710968, + 0.007360499817878008, + 0.14094407856464386, + -1.9573346435208805e-05, + -0.008297767490148544, + 0.027554355561733246, + -0.011647024191915989, + 0.014052459970116615, + 0.016726622357964516, + -0.0007521080551669002, + 0.008284659124910831, + -0.05673418194055557, + -0.00983803253620863, + -0.02001689001917839, + 0.010119868442416191, + -0.026977576315402985, + -0.0015173248248174787, + 0.023241614922881126, + -0.003318123985081911, + 0.01832587458193302, + -0.028157353401184082, + -0.0031280487310141325, + 0.025129258632659912, + -0.032509420067071915, + -0.0026381132192909718, + 0.007812747731804848, + -0.0008700858452357352, + -0.02852439507842064, + 0.02304498478770256, + 0.010342715308070183, + 0.008219115436077118, + -0.016726622357964516, + -0.012223804369568825, + -0.0052926125936210155, + -0.05453193187713623, + -0.041580598801374435, + 0.008894210681319237, + -0.035236019641160965, + -0.008750015869736671, + -0.03429219499230385, + 0.005597388371825218, + 0.005679317284375429, + -0.008579603396356106, + 0.04042704030871391, + -0.01808992028236389, + -0.006823045667260885, + 0.01417043711990118, + -0.016674187034368515, + 0.007707878947257996, + -0.00582023523747921, + -0.011948523111641407 + ], + "metadata": { + "source": "Thesis_Verladegeraeusche_in_Speditionen.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 41, + "has_images": true, + "image_count": 51, + "coordinates": "CoordinatesMetadata(points=((204.16666666666666, 189.02777777777797), (204.16666666666666, 642.3611111111111), (936.1666666666666, 642.3611111111111), (936.1666666666666, 189.02777777777797)), system=)", + "links": [], + "last_modified": "2025-05-05T22:59:16", + "_known_field_names": "frozenset({'cc_recipient', 'link_texts', 'url', 'filetype', 'category_depth', 'page_number', 'filename', 'orig_elements', 'detection_origin', 'email_message_id', 'page_name', 'coordinates', 'table_as_cells', 'link_start_indexes', 'sent_to', 'bcc_recipient', 'languages', 'last_modified', 'link_urls', 'file_directory', 'subject', 'data_source', 'detection_class_prob', 'image_base64', 'text_as_html', 'attached_to_filename', 'key_value_pairs', 'signature', 'sent_from', 'header_footer_type', 'parent_id', 'links', 'emphasized_text_contents', 'emphasized_text_tags', 'image_mime_type', 'is_continuation', 'image_path'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "Thesis_Verladegeraeusche_in_Speditionen.pdf", + "detection_class_prob": 0.2568194270133972, + "parent_id": "d45475a34bc527cde6987546fa6dd2f5", + "text_as_html": "
Flurf\u00f6rderger\u00e4t |Anzahl Einzelereignisse ElMax-PegelSchallleistungspegel
LAFmaxLWA,5sLWAmaxLWA,1hKlLWAT,1h
[dB(A)][dB(A)][dB(A)][dB(A)][dB(A)][dB(A)]
Gabelstapler29769,3100,7108,872,15,777,8
STABW [dB]6,54,96,54,92,9-
Gabelhubwagen9968,6100,7108,172,16,279,5
STABW [dB]6,45,16,4512,7-
", + "id": "5ba44de7-0ff3-4c0c-b018-67e92171e1c2", + "processing_timestamp": "2025-05-06T14:18:19.298665", + "chunk_number": 31, + "total_chunks": 49, + "chunking_strategy": "hybrid", + "word_count": 561 + } +} \ No newline at end of file diff --git a/data/processed/85fd305f-83de-70b0-47e8-2dc000000032.json b/data/processed/85fd305f-83de-70b0-47e8-2dc000000032.json new file mode 100644 index 0000000000000000000000000000000000000000..78e6be1228154aebf36d55c28890639049becb8f --- /dev/null +++ b/data/processed/85fd305f-83de-70b0-47e8-2dc000000032.json @@ -0,0 +1,1570 @@ +{ + "id": "85fd305f-83de-70b0-47e8-2dc000000032", + "content": "Ungef\u00e4hr 68,3% aller Messwerte liegen innerhalb einer Spanne von 66,8 bis 76,4 dB(A), welches einen gro\u00dfen Bereich abdeckt. Die Messpunkte niedriger und h\u00f6her als der Mittelwert sind hier gleichm\u00e4\u00dfig auf der Gau\u00dfschen Glockenkurve verteilt. Die Messdaten haben eine sehr gute \u00dcbereinstimmung mit der normalen Verteilung. Dies bedeutet, dass die Beladevorg\u00e4nge einem bestimmten Muster folgen und keine signifikanten Ausrei\u00dfer o- der Abweichungen auftreten. Folglich sind die Messungen konsistent und zuverl\u00e4ssig. In Diagramm 4 ist die Normalverteilung des st\u00fcndlichen Schallleistungspegel eines Ga- belhubwagen Beladevorgang in einem Koffer-Anh\u00e4nger dargestellt. [IMAGE: Normalverteilung Gabelhubwagen - Koffer 0,06 0,05 H\u00e4ufigkeit [%] 0,04 0,02 60,0 65,0 70,0 75,0 30,0 85,0 90,0 st\u00fcndlicher Schallleistungspegel LWA, Ih [dB(A)] \u00a9 Messdaten Mittelwert wo vo Gau\u00dfsch]\n\nDiagramm 4: Normalverteilung Gabelhubwagen \u2013 Koffer Beladung\nMit: \u03bc: Erfahrungswert, \u03c3: Standardabweichung\nDer h\u00f6chste Punkt der Normalverteilung repr\u00e4sentiert den energetischen Mittelwert des st\u00fcndlichen Schallleistungspegels von 72,9 dB(A). Die Standardabweichung s von 4,9 dB gibt an, wie weit die einzelnen Messwerte um den Mittelwert herumliegen. Ungef\u00e4hr 68,3% aller Messwerte liegen innerhalb einer Spanne von 68,0 bis 77,8 dB(A), welches einen gro\u00dfen Bereich abdeckt. Die Messpunkte, die niedriger als der Mittelwert liegen,\n64\n7 Ergebnisse und Interpretation\nsind auch hier dichter auf der Gau\u00dfschen Glockenkurve verteilt als diejenigen, die gr\u00f6\u00dfer als der Mittelwert sind. Die Messdaten haben eine sehr gute \u00dcbereinstimmung mit der normalen Verteilung. Dies bedeutet, dass die Beladevorg\u00e4nge einem bestimmten Mus- ter folgen und keine signifikanten Ausrei\u00dfer oder Abweichungen auftreten. Folglich sind die Messungen konsistent und zuverl\u00e4ssig. In Diagramm 5 ist die Normalverteilung des st\u00fcndlichen Schallleistungspegel eines Ga- belhubwagen Beladevorgang in einer Wechselbr\u00fccke dargestellt. [IMAGE: Normalverteilung Gabelhubwagen - Wechselbr\u00fccke 0,08 0,07 H\u00e4ufigkeit [%] 0,01 0,00 60,0 62,0 64,0 66,0 68,0 70,0 72,0 74,0 76,0 78,0 80,0 st\u00fcndlicher Schallleistungspegel LWA,1h [dB(A) \u00a9 Messdaten Mittelwert Kto 0 Gau\u00dfsche Glockenkurve]\n\nDiagramm 5: Normalverteilung Gabelhubwagen \u2013 Wechselbr\u00fccke Beladung\nMit: \u03bc: Erfahrungswert, \u03c3: Standardabweichung\nDer h\u00f6chste Punkt der Normalverteilung repr\u00e4sentiert den energetischen Mittelwert des st\u00fcndlichen Schallleistungspegels von 68,9 dB(A). Die Standardabweichung s von 4,3 dB gibt an, wie weit die einzelnen Messwerte um den Mittelwert herumliegen. Ungef\u00e4hr 68,3% aller Messwerte liegen innerhalb einer Spanne von 64,6 bis 73,2 dB(A), welches einen gro\u00dfen Bereich abdeckt. Die Messpunkte, die niedriger als der Mittelwert liegen, sind auch hier dichter auf der Gau\u00dfschen Glockenkurve verteilt als diejenigen, die gr\u00f6\u00dfer als der Mittelwert sind. Die Messdaten haben eine sehr gute \u00dcbereinstimmung mit der\n65\n7 Ergebnisse und Interpretation\nnormalen Verteilung. Dies bedeutet, dass die Beladevorg\u00e4nge einem bestimmten Mus- ter folgen und keine signifikanten Ausrei\u00dfer oder Abweichungen auftreten. Folglich sind die Messungen konsistent und zuverl\u00e4ssig. Das Ergebnis der Auswertung der Normalverteilungen der einzelnen Beladevorg\u00e4nge f\u00fcr die unterschiedlichen Anh\u00e4nger zeigt, dass alle Messdaten eine sehr gute \u00dcbereinstim- mung mit der normalen Verteilung aufweisen. Die Mehrzahl der Messpunkte, die nied- riger als der Mittelwert liegen, sind meistens dichter auf der Gau\u00dfschen Glockenkurve verteilt als diejenigen, die gr\u00f6\u00dfer als der Mittelwert sind. Die st\u00fcndlichen Schallleis- tungspegel der Beladevorg\u00e4nge folgen somit einem Muster, dass gut durch die Gau\u00df- sche Glockenkurve beschrieben werden kann. Dies bedeutet, dass eine symmetrische Verteilung der st\u00fcndlichen Schallleistungspegel um den energetischen Mittelwert vor- liegt.", + "embedding": [ + 0.015742160379886627, + 0.012132950127124786, + 0.020872067660093307, + -0.037227727472782135, + -0.00655923318117857, + 0.007329372223466635, + -0.003157242899760604, + -0.012021997943520546, + -0.014567372389137745, + -0.03678391873836517, + 0.017582660540938377, + 0.03482593968510628, + -0.021237557753920555, + 0.0013640595134347677, + 0.006892090197652578, + 0.017112746834754944, + 0.034173280000686646, + 0.020611004903912544, + 0.0039388034492731094, + -0.001887819147668779, + -0.010188023559749126, + 0.015546361915767193, + -0.014593478292226791, + -0.0028863889165222645, + -0.022412344813346863, + 0.009006708860397339, + 0.04033438861370087, + -0.009254719130694866, + -0.005071168299764395, + 0.0055410838685929775, + 0.017295490950345993, + 0.0006081975880078971, + -0.023025846108794212, + 0.032476361840963364, + 0.0014431944582611322, + -0.022816995158791542, + 0.001228632521815598, + -0.008177829906344414, + 0.022516772150993347, + -0.0019530851859599352, + 0.010925528593361378, + 0.0011323651997372508, + 0.008837017230689526, + -0.03164095804095268, + 0.004245553631335497, + 0.015246138907968998, + 0.013483956456184387, + 0.011180066503584385, + -0.016708096489310265, + 0.002442580182105303, + 0.015846585854887962, + 0.007962452247738838, + -0.013497009873390198, + 0.008791330270469189, + 0.013771126978099346, + 0.005762988235801458, + 0.003189875977113843, + -0.008347521536052227, + -0.02829933911561966, + -0.019423162564635277, + -0.031301576644182205, + -0.022203493863344193, + -0.025375422090291977, + -0.0008990392088890076, + -0.026302199810743332, + -0.026602422818541527, + -0.012028524652123451, + 0.008380155079066753, + -0.0029908146243542433, + 0.01065141148865223, + 0.032711319625377655, + 0.02913474477827549, + 0.005195173900574446, + 0.006024051923304796, + 0.033129025250673294, + -0.0004138272488489747, + 0.0039388034492731094, + 0.0115977693349123, + -0.006892090197652578, + -0.01088636927306652, + 0.03409495949745178, + -0.020767642185091972, + -0.011486816219985485, + 0.0288997869938612, + -0.00200203456915915, + -0.009731161408126354, + -0.014332414604723454, + 0.005456238053739071, + -0.035817984491586685, + -0.00661470927298069, + 0.006471124477684498, + 0.00965936854481697, + 0.004444614984095097, + -0.011036481708288193, + 0.03038785047829151, + -0.00851721316576004, + 0.0003581471974030137, + 0.020676270127296448, + -0.0038376410957425833, + -0.02072848193347454, + -0.006467861123383045, + -0.010742784477770329, + 0.01760876737535, + -0.0010442560305818915, + -0.024318113923072815, + 0.004467457998543978, + -0.002840702887624502, + 0.0077013885602355, + -0.003162137931212783, + -0.018170055001974106, + -0.020362993702292442, + 0.0011111537460237741, + -0.006363435182720423, + -0.011884938925504684, + 0.017504341900348663, + 0.016277341172099113, + 0.012896561995148659, + -0.017178012058138847, + -0.008236569352447987, + -0.019736438989639282, + 0.02029772661626339, + -0.00029002581140957773, + 0.038037028163671494, + -0.01117353979498148, + 0.01617291569709778, + 0.03464319556951523, + -0.008980602025985718, + -0.0039290133863687515, + -0.0189010351896286, + -0.0080995112657547, + -0.01948842965066433, + 0.01486759539693594, + 0.015951011329889297, + 0.003251878544688225, + -0.01290961541235447, + 0.011010374873876572, + -0.0022272022906690836, + 0.0030968717765063047, + -0.021629152819514275, + -0.03156264126300812, + 0.011264911852777004, + 0.022216547280550003, + -0.025101305916905403, + -0.04200519993901253, + 0.0044119819067418575, + 0.0332595556974411, + 0.019344843924045563, + 0.015050340443849564, + -0.01076236367225647, + -0.008373628370463848, + -0.011310598812997341, + -0.02421368658542633, + 0.013718914240598679, + 0.00036814104532822967, + -0.019579801708459854, + -0.0029777614399790764, + 0.0014905123971402645, + 0.01807868294417858, + -0.01989307813346386, + 0.001652045757509768, + -0.008465000428259373, + 0.01766098104417324, + 0.0026971176266670227, + -0.010599198751151562, + 0.009672421962022781, + 0.004659992642700672, + -0.00030654625152237713, + 0.0003714043414220214, + -0.004659992642700672, + -0.008869649842381477, + -0.002375682583078742, + 0.027646679431200027, + -0.01304667443037033, + 0.015402777120471, + -0.006585340015590191, + 0.009926958940923214, + 0.005593296606093645, + 0.0015296719502657652, + -0.03756711259484291, + -0.02957855351269245, + -0.01333384495228529, + 0.006024051923304796, + 0.01014233659952879, + 0.006582076661288738, + -0.013901658356189728, + 0.012237375602126122, + 0.035583026707172394, + 0.016068490222096443, + -0.001078520668670535, + -0.016290394589304924, + 0.010370767675340176, + 0.004777471534907818, + 0.011095220223069191, + -0.022229600697755814, + -0.6324014663696289, + 0.005348549224436283, + -0.004992849193513393, + 0.01763487420976162, + 0.009163347072899342, + 0.03443434461951256, + 0.007779707666486502, + 0.0010108072310686111, + -0.01413661614060402, + 0.036836132407188416, + -0.0026954859495162964, + 0.009104607626795769, + -0.014201882295310497, + -0.007296739146113396, + -0.004539250396192074, + -0.017791513353586197, + -0.024670548737049103, + -0.007779707666486502, + 0.019827811047434807, + 0.0007122152601368725, + -0.017517395317554474, + 0.025336261838674545, + -0.009156820364296436, + 0.008726065047085285, + 0.0007411770639009774, + 0.006741978228092194, + 0.015298351645469666, + -0.017987310886383057, + 0.013549222610890865, + -0.008432367816567421, + -0.03156264126300812, + 0.010396874509751797, + -0.021459462121129036, + 0.03714941069483757, + 0.03506089746952057, + -0.005873940419405699, + -0.009802953340113163, + 0.015102553181350231, + 0.009293879382312298, + 0.024370325729250908, + -0.003716898849233985, + -0.009202506393194199, + -0.0012808453757315874, + -0.017334651201963425, + -0.0050972746685147285, + 5.7713250498636626e-06, + 0.031066616997122765, + -0.013888605870306492, + 0.020793749019503593, + -0.04247511550784111, + 0.007655702065676451, + -0.002612271811813116, + 0.02112007886171341, + 0.022242654114961624, + 0.025740912184119225, + -0.010416454635560513, + 0.04182245582342148, + -0.02134198322892189, + -0.019240418449044228, + 0.008314888924360275, + -0.007074834778904915, + 0.005655299406498671, + -0.0013730335049331188, + -0.021041760221123695, + -0.010305502451956272, + -0.0015582258347421885, + 0.000432387285400182, + -0.045268502086400986, + 0.02767278626561165, + 0.006529863458126783, + -0.013183732517063618, + 0.02357408031821251, + -0.009724634699523449, + -0.011741354130208492, + 0.03835030272603035, + 0.02957855351269245, + 0.007087888196110725, + -0.02093733474612236, + 0.006976936012506485, + 0.025714805349707603, + -0.009881272912025452, + -0.0003420346474740654, + -0.0017621821025386453, + -0.006898616440594196, + 0.009300405159592628, + -0.011447656899690628, + 0.000315112411044538, + 0.018130896613001823, + 0.013588381931185722, + 0.015128660015761852, + 0.009052394889295101, + 0.038898538798093796, + 0.009718107990920544, + -0.02131587639451027, + -0.0026155351661145687, + 0.0497065894305706, + -0.016721149906516075, + 0.018757449463009834, + -0.011349758133292198, + -0.015520256012678146, + -0.02709844522178173, + -0.01909683272242546, + 0.013549222610890865, + -0.012354854494333267, + 0.03143210709095001, + 0.003129504853859544, + -0.016368713229894638, + -0.010214129462838173, + 0.008895756676793098, + -0.026941806077957153, + 0.010997321456670761, + -0.0007085440447553992, + -0.011238805949687958, + -0.015285298228263855, + -0.013692807406187057, + -0.02811659500002861, + 0.015846585854887962, + 0.013379530981183052, + -0.011134380474686623, + -0.00011105418525403365, + 0.006696292199194431, + -0.0069638825953006744, + 0.0553455725312233, + -0.011401970870792866, + -0.01990613155066967, + 0.0283515527844429, + 0.021694419905543327, + 0.0012645288370549679, + 0.009920432232320309, + -0.029656872153282166, + 0.01720411889255047, + 0.0017866569105535746, + 0.03098829835653305, + -0.017895938828587532, + 0.03310291841626167, + 0.018300587311387062, + 0.03801092132925987, + -0.028560403734445572, + 0.005355075467377901, + -0.04002111405134201, + -0.02585839107632637, + 0.0049014766700565815, + 0.013111940585076809, + -0.03696666285395622, + -0.01293572224676609, + -0.032110873609781265, + -0.038872431963682175, + 0.011506396345794201, + 0.0186530239880085, + -0.01045561395585537, + 0.007740547880530357, + -0.016956107690930367, + -0.01036424096673727, + 0.015063393861055374, + 0.00943746417760849, + 0.00313113653101027, + -0.008536793291568756, + -0.02484024129807949, + 0.0008109300979413092, + -0.013875552453100681, + 0.00983558688312769, + 0.007277159485965967, + -0.041744135320186615, + -0.010546986013650894, + -0.016277341172099113, + -0.009071974083781242, + 0.018300587311387062, + -0.003654896281659603, + -0.02627609297633171, + -0.032476361840963364, + -0.001661019749008119, + 0.0064809140749275684, + -0.006334065459668636, + 0.007166207302361727, + -0.011858833022415638, + -0.0033187763765454292, + -0.01576826721429825, + 0.003527627559378743, + -0.016538405790925026, + -0.026615476235747337, + 0.01993223838508129, + -0.0009798058308660984, + -0.02728118933737278, + -0.0027020126581192017, + 0.018522491678595543, + 0.008843543939292431, + 0.009809480048716068, + 0.0034166753757745028, + -0.018418066203594208, + 0.022608144208788872, + -0.016943054273724556, + 0.01947537623345852, + -0.037253834307193756, + 0.0168125219643116, + -0.028638722375035286, + -0.007394638378173113, + 0.009652841836214066, + -0.0211070254445076, + -0.0005388524732552469, + 0.02033688686788082, + 0.027333403006196022, + -0.004265133291482925, + 0.011330178007483482, + -0.016773363575339317, + 0.02668074145913124, + -0.0229475274682045, + 0.013979977928102016, + -0.015102553181350231, + 0.03769764304161072, + 0.02337828278541565, + 0.020023610442876816, + 0.0024670548737049103, + -0.022190440446138382, + -0.009600629098713398, + 0.0022190441377460957, + 0.041509177535772324, + -0.01117353979498148, + 0.005325705744326115, + 0.03678391873836517, + 0.0006693844334222376, + -0.0002832952595781535, + -0.0021439881529659033, + 0.02093733474612236, + 0.02378293126821518, + 0.0007729942444711924, + -0.012681184336543083, + -0.0022777835838496685, + 0.026132507249712944, + -0.0034688881132751703, + 0.007929819636046886, + -0.004708942025899887, + 0.002843966009095311, + 0.009561469778418541, + 0.01618596911430359, + 0.0034656247589737177, + 0.02054573781788349, + 0.00862163957208395, + -0.007649175822734833, + 0.029813511297106743, + 0.013875552453100681, + 0.01929263025522232, + 0.008386681787669659, + 0.002840702887624502, + -0.021877164021134377, + 0.012263482436537743, + -0.020467419177293777, + 0.007257579825818539, + 0.025727858766913414, + -0.008947969414293766, + -0.00048623172915540636, + -0.01117353979498148, + -0.008040771819651127, + -0.010077071376144886, + 0.0010524142999202013, + 0.012394013814628124, + -0.022307919338345528, + 0.030518382787704468, + -0.013248998671770096, + 0.004715468734502792, + 0.022673409432172775, + 0.006650605704635382, + 0.01467179786413908, + 0.0288997869938612, + -0.03344229981303215, + 0.002233728999271989, + -0.0002563730231486261, + -0.020650163292884827, + -0.016120702028274536, + -0.015885746106505394, + 0.0027036441024392843, + 0.007577382959425449, + 0.0006008551572449505, + 0.023012792691588402, + 0.009776847437024117, + 0.025284050032496452, + -0.0195145346224308, + 0.006663659121841192, + 0.016943054273724556, + 0.018731342628598213, + 0.027359507977962494, + -0.016251234337687492, + -0.01170872151851654, + -0.004611043259501457, + 0.016081543639302254, + -0.02481413446366787, + -0.0067093451507389545, + -0.010351188480854034, + 0.004177024122327566, + -0.023247750476002693, + -0.00965936854481697, + -0.01518087275326252, + 0.016890842467546463, + -0.0010687308385968208, + -0.015337510965764523, + 0.022869206964969635, + 0.02238623984158039, + 0.0203107800334692, + 0.011787040159106255, + -0.006918196566402912, + 0.009085027500987053, + -0.0002608600480016321, + -0.029813511297106743, + -0.019605906680226326, + -0.02318248525261879, + -0.0024278953205794096, + 0.004800314549356699, + -0.022921420633792877, + -0.019357897341251373, + 0.004787261597812176, + -0.008125617168843746, + -0.015624681487679482, + 0.004930846393108368, + -0.01314457319676876, + 0.026537157595157623, + -0.02725508250296116, + -0.010625305585563183, + -0.010781943798065186, + -0.0020036662463098764, + 0.047487545758485794, + 0.008066877722740173, + -0.029709085822105408, + -0.009085027500987053, + -0.0006877405103296041, + 0.0009610418928787112, + 0.014893702231347561, + 0.025962816551327705, + 0.009156820364296436, + 0.020832909271121025, + -0.007851500064134598, + 0.008236569352447987, + -0.0007073203451000154, + -0.02605418860912323, + 0.0080081382766366, + 0.03490426018834114, + 0.011989365331828594, + -0.007583909668028355, + 0.02032383345067501, + -0.006696292199194431, + 0.005563926883041859, + -0.016734203323721886, + 0.011036481708288193, + -0.010416454635560513, + 0.015637734904885292, + 0.012929195538163185, + -0.025179624557495117, + -0.0037103723734617233, + 0.0029043371323496103, + 0.03513921797275543, + -0.010194549337029457, + -0.023143325001001358, + 0.011950205080211163, + 0.010064017958939075, + -0.0036320530343800783, + -0.026106402277946472, + -0.0024817397352308035, + 0.05524114519357681, + 0.017386863008141518, + 0.03592240810394287, + 0.0044021918438375, + -0.004983059596270323, + -0.0006061579915694892, + -0.007388111669570208, + 0.021224504336714745, + -0.0025372158270329237, + 0.016264287754893303, + 0.011460710316896439, + 0.0019318737322464585, + 0.009306931868195534, + 0.01446294691413641, + -0.004999375902116299, + -0.00034794938983395696, + 0.015911851078271866, + -0.0022728885523974895, + -0.0011902886908501387, + 0.013418690301477909, + -0.03242415189743042, + 0.01467179786413908, + 0.001528856111690402, + 0.00048174470430240035, + -0.03281574696302414, + 0.006314485799521208, + -0.018091736361384392, + -0.0211070254445076, + -0.01908377930521965, + -0.017778459936380386, + -0.010801523923873901, + 0.02320859022438526, + -0.004832947626709938, + -0.03962951898574829, + -0.014293255284428596, + -0.02233402617275715, + -0.007048728410154581, + -0.002338154474273324, + 0.007844973355531693, + -0.015128660015761852, + -0.02011498250067234, + -0.019618960097432137, + -0.010488246567547321, + 0.023104164749383926, + -0.0008476422517560422, + 0.025714805349707603, + -0.000796245236415416, + -0.03286796063184738, + 0.002762383548542857, + -0.015115606598556042, + -0.01582047902047634, + 0.006582076661288738, + -0.013927765190601349, + -0.0221512820571661, + 0.01723022572696209, + -0.009293879382312298, + 0.006014262326061726, + 0.006245956756174564, + 0.0014978548279032111, + -0.011317125521600246, + 0.01076236367225647, + 0.008758697658777237, + -0.006467861123383045, + 0.00276564690284431, + 0.00038690504152327776, + 0.008047298528254032, + 0.021276718005537987, + 0.014423786662518978, + -0.012805189937353134, + 0.02071543037891388, + -0.012948774732649326, + -0.021041760221123695, + -0.003818061202764511, + 0.007962452247738838, + 0.006493967492133379, + -0.0017997100949287415, + -0.004310819786041975, + 0.002011824632063508, + 0.0111996466293931, + -0.010892895981669426, + -0.011623875238001347, + 0.004983059596270323, + 0.014489052817225456, + -0.00012543310003820807, + -0.003235562238842249, + 0.01946232281625271, + 0.009476623497903347, + 0.01948842965066433, + 0.0003654896281659603, + -0.01516781933605671, + -0.02910863794386387, + 0.04038660228252411, + 0.0036646861117333174, + -0.0011397076305001974, + 0.04286671057343483, + -0.026759061962366104, + 0.008615112863481045, + -0.039081282913684845, + -0.0015174346044659615, + 0.02157694101333618, + 0.015259191393852234, + 9.060757292900234e-05, + -0.010827629826962948, + 0.0040105958469212055, + -0.03164095804095268, + 0.016890842467546463, + 0.019736438989639282, + -0.01643398031592369, + -0.0025078461039811373, + -0.02525794319808483, + 0.012354854494333267, + -0.008190883323550224, + -0.003012025961652398, + -0.007668755482882261, + -0.021067865192890167, + -0.030701128765940666, + 0.01786983199417591, + -0.020454365760087967, + 0.03508700430393219, + -0.005018955562263727, + -0.004268396645784378, + -0.01760876737535, + -0.008132143877446651, + -0.011056060902774334, + -0.015298351645469666, + 0.013810286298394203, + 0.0080995112657547, + 0.02585839107632637, + 0.02050657756626606, + 0.02544068917632103, + -0.009085027500987053, + -0.011480290442705154, + 0.006428701337426901, + -0.009319985285401344, + -0.008066877722740173, + -0.02358713373541832, + -0.01168261468410492, + -0.013085833750665188, + 0.014632637612521648, + 0.017373809590935707, + 0.007133574225008488, + 0.010135810822248459, + 0.0213550366461277, + 0.013601435348391533, + 0.05618097633123398, + -0.0028651775792241096, + -0.010847209952771664, + -0.016499245539307594, + -0.03409495949745178, + 0.01007054466754198, + -0.0013885342050343752, + 0.006059948354959488, + 0.006617972627282143, + -0.025401528924703598, + -0.01803952269256115, + 0.02112007886171341, + -0.009692001156508923, + -0.007903712801635265, + -0.027333403006196022, + 0.022647302597761154, + -0.039707835763692856, + 0.03036174550652504, + -0.002238624030724168, + -0.004222710616886616, + -0.0006604103837162256, + -0.013379530981183052, + -0.018600810319185257, + -0.00600773561745882, + 0.01908377930521965, + 0.0011633664835244417, + 0.03218919411301613, + -0.01762182079255581, + -0.014345468021929264, + 0.0035602604039013386, + -0.019618960097432137, + 0.0026775377336889505, + -0.014515159651637077, + -0.010808050632476807, + -0.017987310886383057, + -0.02464444376528263, + -0.012309168465435505, + -0.03036174550652504, + -0.014032190665602684, + 0.008132143877446651, + -0.004611043259501457, + 0.011506396345794201, + 0.014606531709432602, + -0.01886187493801117, + 0.0013624278362840414, + 0.003961646463721991, + 0.0027542253956198692, + 0.04130032658576965, + 0.016773363575339317, + 0.0447985865175724, + 0.03367725759744644, + -0.021381143480539322, + -0.005479081068187952, + -0.05800842493772507, + 0.00671587185934186, + -0.000619211234152317, + 0.02725508250296116, + 0.009796427562832832, + -0.014384627342224121, + -0.005795621313154697, + 0.017739299684762955, + -0.00431408267468214, + 0.012550652958452702, + -0.014436840079724789, + 0.0357135571539402, + 0.023143325001001358, + -0.0011087062302976847, + -0.01311846636235714, + 0.019253471866250038, + -0.01413661614060402, + 0.001018965500406921, + 0.021289769560098648, + -0.014567372389137745, + 0.0016324658645316958, + -0.0046567292883992195, + 0.004030175507068634, + 0.053439803421497345, + 0.011832726188004017, + 0.030413957312703133, + -0.0024588967207819223, + -0.014436840079724789, + 0.0007207814487628639, + -0.021381143480539322, + -0.021903270855545998, + 0.005736881867051125, + -0.01843111962080002, + 0.050959695130586624, + -0.010201076045632362, + -0.0053452858701348305, + 0.006161110941320658, + 0.002902705455198884, + -0.00789066031575203, + -0.012035051360726357, + -0.00829530879855156, + 0.018705235794186592, + -0.01580742560327053, + -0.0019204521086066961, + 0.020428258925676346, + -0.013914711773395538, + -0.013183732517063618, + 0.011819673702120781, + -0.009470096789300442, + -0.022216547280550003, + 0.0049014766700565815, + -0.005658562760800123, + -0.004336926154792309, + 0.015911851078271866, + -0.0018209215486422181, + -0.0024278953205794096, + -0.00492432015016675, + -0.01086679007858038, + -0.005342022515833378, + -0.025505954399704933, + 0.020676270127296448, + -0.03383389487862587, + 0.0038931171875447035, + -0.005935943219810724, + -0.004101968370378017, + 0.04239679500460625, + -0.009972644969820976, + -0.028873680159449577, + -0.022725623100996017, + 0.020206354558467865, + -0.027803316712379456, + 0.014737064018845558, + 0.045033544301986694, + -0.007655702065676451, + -0.024148421362042427, + 0.005452974699437618, + -0.0035569972824305296, + -0.0013306105975061655, + 0.02874314785003662, + -0.001956348540261388, + -0.005606349557638168, + 0.0059522595256567, + -0.0027917532715946436, + 0.016668938100337982, + -0.022294867783784866, + -0.014071349985897541, + -0.00013430519902613014, + 0.011519449763000011, + 0.008132143877446651, + -0.002375682583078742, + -0.009763794019818306, + 0.001724654110148549, + 0.00798855908215046, + -0.004836210981011391, + 0.024265900254249573, + -0.0032926700077950954, + 0.017360756173729897, + 0.0040856520645320415, + -0.008021191693842411, + 0.0061513208784163, + -0.02541458234190941, + -0.007453377824276686, + 0.020023610442876816, + 0.021877164021134377, + -0.036418430507183075, + 0.008438894525170326, + -0.019540641456842422, + -0.01904461905360222, + -0.018561651930212975, + 0.021028706803917885, + 0.009195979684591293, + 0.017895938828587532, + 0.033938322216272354, + 0.01118659321218729, + 0.004020385909825563, + 0.02028467319905758, + -0.0002482147829141468, + -0.0094505175948143, + 0.02936970256268978, + 0.008647745475172997, + -0.029265275225043297, + 0.010233709588646889, + -0.004274923354387283, + 0.014345468021929264, + 0.029604658484458923, + -0.012720344588160515, + -0.004408718552440405, + 0.011121327057480812, + -0.02172052673995495, + -0.028560403734445572, + -0.017504341900348663, + 0.02198158949613571, + -0.010912476107478142, + 0.01927957683801651, + -0.018992407247424126, + 0.024866348132491112, + 0.01324247196316719, + 0.03871579468250275, + -0.02832544595003128, + -0.0026008503045886755, + -0.005629193037748337, + -0.01488064881414175, + 0.0012367907911539078, + -0.02114618569612503, + -0.02464444376528263, + 0.0037234255578368902, + 0.017360756173729897, + -0.007296739146113396, + 0.010436033830046654, + 0.0385330468416214, + -0.006885563489049673, + -0.011408497579395771, + 0.0026726429350674152, + 0.016721149906516075, + 0.02028467319905758, + -0.0026889594737440348, + -9.7134170573554e-06, + -0.014241041615605354, + -0.00300386780872941, + -0.015585522167384624, + 0.007257579825818539, + -0.04325830563902855, + -0.025910602882504463, + 0.029448021203279495, + -0.01373196765780449, + -0.008367101661860943, + 0.00733589893206954, + -0.013901658356189728, + -0.0030103945173323154, + -0.013027094304561615, + 0.0161990225315094, + 0.015220032073557377, + -0.031875915825366974, + 0.016368713229894638, + 0.0050581153482198715, + -0.004748101811856031, + -0.019853917881846428, + -0.0007774812984280288, + -0.031510427594184875, + 0.0006591866258531809, + 0.010488246567547321, + -0.02259509079158306, + 0.003281248267740011, + -0.01108869444578886, + 0.02421368658542633, + 0.0016234918730333447, + 0.003782165003940463, + -0.05226501449942589, + -0.03391221538186073, + -0.04312777519226074, + 0.03461708873510361, + 0.026328306645154953, + -0.01004443783313036, + 0.018992407247424126, + -0.0019302420550957322, + -0.0045425137504935265, + 0.0006322644185274839, + -0.004611043259501457, + 0.008066877722740173, + -0.019553694874048233, + -0.005521503742784262, + 0.0019759282004088163, + -0.012263482436537743, + -0.005929416511207819, + -0.006445018108934164, + -0.013901658356189728, + -0.034982576966285706, + 0.0028863889165222645, + 0.1799253225326538, + -0.03339008614420891, + -0.004646939691156149, + 0.015298351645469666, + -0.026511050760746002, + -0.03156264126300812, + 0.022908367216587067, + -0.0020314042922109365, + 0.0075121172703802586, + 0.01884882152080536, + 0.00870648492127657, + 0.004715468734502792, + 0.009032814763486385, + 0.009561469778418541, + 0.025505954399704933, + -0.014227989129722118, + -0.025127410888671875, + -0.020362993702292442, + -0.008863123133778572, + 0.027150657027959824, + 0.023756826296448708, + -0.02033688686788082, + -0.014932861551642418, + -0.0042977663688361645, + 0.02506214566528797, + 0.0016128860879689455, + -0.021015653386712074, + 0.0025355841498821974, + 0.035791877657175064, + 0.03265910968184471, + -0.015533308498561382, + -0.008667325600981712, + 0.009430937469005585, + -0.015402777120471, + -0.0068398769944906235, + 0.005214753560721874, + 0.004999375902116299, + -0.016564512625336647, + 0.020571844652295113, + 0.020885121077299118, + 0.010527406819164753, + -0.025336261838674545, + 0.0035961568355560303, + -0.016499245539307594, + 0.010905949398875237, + 0.01364059466868639, + 0.001059756730683148, + 0.013379530981183052, + 0.0035700504668056965, + 0.009809480048716068, + 0.00036487774923443794, + 0.022059909999370575, + 0.011819673702120781, + 0.04080430418252945, + -0.008569425903260708, + -0.027986062690615654, + 0.017386863008141518, + -0.012890036217868328, + 0.010625305585563183, + 0.001793183502741158, + -0.03451266139745712, + 0.006298169493675232, + -0.01322941854596138, + 0.020232461392879486, + -0.02811659500002861, + 0.019788652658462524, + -0.016460085287690163, + 0.004033438861370087, + -0.0031866126228123903, + -0.024318113923072815, + 0.01004443783313036, + -0.012550652958452702, + -0.03673170879483223, + -0.0013183732517063618, + -0.019697280600667, + -0.020806802436709404, + 0.022882260382175446, + 0.01802647113800049, + 0.016668938100337982, + 0.007453377824276686, + -0.003459098283201456, + -0.018796609714627266, + -0.011330178007483482, + -0.01990613155066967, + -0.00759043637663126, + -0.02115923911333084, + -0.0003534562129061669, + 0.020976493135094643, + 0.01971033401787281, + -0.030883872881531715, + -0.017582660540938377, + 0.010005278512835503, + -0.0020134563092142344, + -0.0022239391691982746, + -0.0019269788172096014, + -0.02071543037891388, + 0.006807244382798672, + 0.004659992642700672, + -0.035609133541584015, + -0.003563523758202791, + -0.010723204351961613, + 0.03748879209160805, + 0.04247511550784111, + 0.0009381988202221692, + -0.0077013885602355, + -0.002640009857714176, + -0.0020575106609612703, + 0.016460085287690163, + -0.0068333507515490055, + -0.024109261110424995, + -0.008262676186859608, + -0.0369405597448349, + 0.01843111962080002, + -0.013575328513979912, + 0.01950148120522499, + 0.00993348564952612, + 0.01004443783313036, + 0.004721995443105698, + -0.0003120530745945871, + -0.0003340803668834269, + -0.009052394889295101, + -0.011401970870792866, + 0.01642092689871788, + 0.014345468021929264, + 0.019697280600667, + -0.02751614712178707, + -0.030466170981526375, + 0.027176763862371445, + -0.004761154763400555, + 0.004206393845379353, + 0.02827323228120804, + -0.04182245582342148, + 0.02668074145913124, + -0.0049014766700565815, + 0.0029059688095003366, + -0.0034982578363269567, + -0.02177273854613304, + -0.04101315513253212, + -0.011578189209103584, + 0.008804383687675, + 0.02647189050912857, + -0.0020966704469174147, + 0.01078847050666809, + 0.006373225245624781, + 0.006865983828902245, + -0.006066475063562393, + 0.02378293126821518, + 0.00671587185934186, + -0.036444537341594696, + -0.027333403006196022, + -0.012726870365440845, + -0.01576826721429825, + -0.022843101993203163, + -0.008556373417377472, + 0.016525352373719215, + 0.0037332153879106045, + -0.039107389748096466, + -0.036235686391592026, + 0.005903310142457485, + 0.013927765190601349, + -0.02275172807276249, + -0.024344218894839287, + 0.023456601426005363, + -0.019566748291254044, + 0.007472957484424114, + 0.005306126084178686, + -0.16373935341835022, + 0.015311404131352901, + 0.005563926883041859, + -0.026732955127954483, + -0.00026575502124615014, + -0.010951635427772999, + 0.016159862279891968, + 0.016473138704895973, + -0.02194243110716343, + -0.013470903038978577, + 0.019005460664629936, + -0.013177205808460712, + -0.015246138907968998, + -0.015468043275177479, + -0.003452571574598551, + -0.01993223838508129, + -0.013392584398388863, + 0.04631275683641434, + 0.014254095032811165, + 0.020780695602297783, + 0.010723204351961613, + -0.013418690301477909, + 0.017948150634765625, + 0.0016438874881714582, + -0.012491913512349129, + 0.0028765990864485502, + -0.0288997869938612, + 0.04370211437344551, + -0.007055255118757486, + -0.007368532009422779, + -0.011029954999685287, + 0.0017132326029241085, + 0.01004443783313036, + -0.0008925126167014241, + -0.008752170950174332, + -0.015415830537676811, + -0.011095220223069191, + -0.008902283385396004, + 0.0035831036511808634, + 0.013196785934269428, + 0.008158250711858273, + 0.018822714686393738, + 4.652752249967307e-05, + 0.02588449791073799, + 0.0068007176741957664, + 0.04304945468902588, + 0.024761922657489777, + -0.017556555569171906, + -0.012152530252933502, + -0.008354048244655132, + -0.0009585944353602827, + -0.011036481708288193, + 0.016695043072104454, + 0.014397680759429932, + -0.008465000428259373, + 0.01767403446137905, + -0.012504965998232365, + 0.03156264126300812, + -0.000992043293081224, + -0.004353242460638285, + 0.006634289398789406, + -0.037645429372787476, + 0.01209379080682993, + -0.006689765490591526, + 0.003380778944119811, + -0.0238090381026268, + -0.005361602175980806, + 0.012890036217868328, + -0.014763169921934605, + -0.011421550996601582, + 0.0003585551166906953, + -0.026994019746780396, + 0.009626735933125019, + -0.011832726188004017, + 0.01147376373410225, + 0.012433174066245556, + -0.0008023639093153179, + -0.003534154035151005, + 0.012504965998232365, + -0.009000182151794434, + -0.009391778148710728, + 0.0479835644364357, + -0.0003905762278009206, + -0.02874314785003662, + -0.026432732120156288, + -0.02420063503086567, + -0.010586146265268326, + 0.029500233009457588, + -0.009411357343196869, + 0.013745020143687725, + 0.010214129462838173, + -0.010488246567547321, + -0.026393571868538857, + -0.024657495319843292, + 0.021851057186722755, + -0.009724634699523449, + -0.0003813982184510678, + 0.0005229438538663089, + -0.0186530239880085, + -0.008301835507154465, + -0.0021178817842155695, + -0.005103801377117634, + -0.03404274582862854, + 0.03177149221301079, + 0.012126423418521881, + 0.0037462685722857714, + -0.013797232881188393, + 0.010285922326147556, + 0.013392584398388863, + -0.01231569517403841, + -0.015898797661066055, + -0.006024051923304796, + 0.015154765918850899, + -0.004646939691156149, + -0.011454183608293533, + 0.014724010601639748, + -0.014932861551642418, + -0.017269384115934372, + 0.014423786662518978, + -0.0057042487896978855, + 0.04978490620851517, + -0.02544068917632103, + -0.015324457548558712, + 0.0006791743799112737, + -0.006520073860883713, + -0.025192677974700928, + -0.09393083304166794, + 0.0052767563611269, + 0.02561037987470627, + 0.009861692786216736, + 0.014384627342224121, + 0.023247750476002693, + -0.006451544351875782, + 0.005162540823221207, + 0.014032190665602684, + 0.05696416646242142, + -0.02772499807178974, + -0.025793123990297318, + -0.03568745031952858, + 0.0020901437383145094, + 0.005162540823221207, + -0.006210060324519873, + 0.02012803591787815, + -0.016864735633134842, + -0.025323210284113884, + 0.031484320759773254, + -0.00789066031575203, + -0.01767403446137905, + -0.005404025316238403, + -0.010116230696439743, + -0.025949763134121895, + -0.03218919411301613, + -0.03795870766043663, + 0.021080918610095978, + 0.0213550366461277, + -0.013575328513979912, + 0.03349451348185539, + -0.03098829835653305, + -0.01179356686770916, + -0.00954841636121273, + -0.017295490950345993, + -0.011232279241085052, + -0.01828753389418125, + -0.023469654843211174, + 0.028795361518859863, + -0.01640787348151207, + 0.002357734367251396, + 0.02790774405002594, + 0.013614488765597343, + -0.02790774405002594, + -0.004601253196597099, + -0.01086679007858038, + -0.029813511297106743, + 0.002798279980197549, + 0.013993031345307827, + -0.005074431654065847, + -0.01333384495228529, + -0.009816006757318974, + -0.022738676518201828, + 0.011852306313812733, + 0.02113313227891922, + 0.01413661614060402, + 0.0016226760344579816, + -0.014893702231347561, + 0.00222883396781981, + -0.0028504927176982164, + -0.01664283126592636, + 0.009731161408126354, + -0.03542638570070267, + 0.0414830707013607, + 0.0016642831033095717, + -0.0034786779433488846, + -0.014214935712516308, + -0.011963258497416973, + 0.009209033101797104, + -0.012211269699037075, + -0.016303448006510735, + -0.0007150706369429827, + -0.00039669492980465293, + 0.01324247196316719, + -0.014188828878104687, + 0.004940636456012726, + -0.03936845436692238, + -0.009985698387026787, + -0.0020770905539393425, + -0.012276534922420979, + 0.006983462255448103, + -0.022699516266584396, + 0.01047519315034151, + -0.015428883023560047, + 0.04268396645784378, + 0.022216547280550003, + -0.0028097014874219894, + -0.014201882295310497, + 0.016890842467546463, + -0.011506396345794201, + -0.014619585126638412, + 0.0235610269010067, + 0.022843101993203163, + -0.005032008979469538, + -0.03286796063184738, + 0.02704623155295849, + 0.01373196765780449, + -0.015494149178266525, + 0.003785428125411272, + -0.001555778319016099, + -0.01078847050666809, + 0.0020624056924134493, + -0.03576577082276344, + 0.02032383345067501, + 0.026158614084124565, + 0.009352617897093296, + -0.01219168957322836, + -0.016277341172099113, + -0.0036385797429829836, + 0.011003848165273666, + 0.013353424146771431, + 0.008027718402445316, + 0.005038535688072443, + 0.0011356284376233816, + -0.019579801708459854, + -0.017164958640933037, + -0.04425035044550896, + -0.029682978987693787, + -0.019658120349049568, + 0.024879401549696922, + 0.0023512078914791346, + 0.017399916425347328, + -0.004363032523542643, + 0.016943054273724556, + -0.01746518351137638, + 0.020624056458473206, + -0.02606724202632904, + -0.004190077539533377, + -0.009124187752604485, + 0.012165582738816738, + -0.008458473719656467, + 0.0036744759418070316, + 0.003067502286285162, + -0.01579437218606472, + 0.00013767047494184226, + 0.020219407975673676, + -0.006477650720626116, + -0.04166581854224205, + 0.018104789778590202, + 0.0229475274682045, + 0.02113313227891922, + 0.029656872153282166, + -0.03923792019486427, + -0.03221530094742775, + -0.01486759539693594, + -0.010814576409757137, + 0.0027003809809684753, + 0.01035771518945694, + 0.012146003544330597, + -0.004986322484910488, + 0.018091736361384392, + -0.008876176550984383, + 0.0447985865175724, + 0.009457044303417206, + 0.029500233009457588, + -0.022660356014966965, + -0.014645691029727459, + 0.017334651201963425, + 0.0034819412976503372, + 0.009561469778418541, + 0.031249362975358963, + -0.036183472722768784, + 0.04239679500460625, + -0.0037103723734617233, + 0.002489898120984435, + -0.010697098448872566, + -0.0018143949564546347, + -0.011734827421605587, + -0.014619585126638412, + -0.008908809162676334, + -0.00497979624196887, + -0.020976493135094643, + -0.0016373608959838748, + 0.0003438702551648021, + 0.0283515527844429, + 0.027411721646785736, + -0.009156820364296436, + -0.016773363575339317, + 0.009333038702607155, + 0.00430429307743907, + -0.007140100933611393, + -0.005606349557638168, + -0.0010165179846808314, + 0.01220474299043417, + 0.014841489493846893, + -0.007094414439052343, + 0.03605294227600098, + 0.005926153156906366, + -0.012544126249849796, + -0.0019318737322464585, + 0.006412385031580925, + -0.010997321456670761, + -0.01260286569595337, + 0.031693171709775925, + -0.005733618512749672, + 0.01967117376625538, + 0.007812340743839741, + 0.022477611899375916, + -0.005067905411124229, + -0.020963439717888832, + 0.03331176936626434, + 0.037462685257196426, + 0.008562900125980377, + 0.0035928934812545776, + -0.024109261110424995, + -0.01373196765780449, + 0.018561651930212975, + 0.013758073560893536, + 0.00385069428011775, + -0.035817984491586685, + -0.0019188205478712916, + 0.013405636884272099, + -0.0026824327651411295, + 0.004983059596270323, + -0.005348549224436283, + 0.007903712801635265, + -0.014345468021929264, + 0.0035928934812545776, + -0.02751614712178707, + -0.0019694017246365547, + -0.02481413446366787, + 0.026719901710748672, + 0.02669379487633705, + 0.01014233659952879, + -0.000527838827110827, + 0.002767278579995036, + 0.020415205508470535, + -0.023900410160422325, + 0.01602932997047901, + 0.0041737607680261135, + 0.007649175822734833, + -0.014188828878104687, + 0.015507202595472336, + 0.0015671999426558614, + -0.029604658484458923, + -0.015076447278261185, + -0.009705054573714733, + 0.0015133554115891457, + 0.01805257610976696, + 0.02461833693087101, + 0.012766030617058277, + 0.1302187293767929, + 0.0015296719502657652, + -0.0010018331231549382, + 0.0297612976282835, + -0.0010426243534311652, + 0.018352800980210304, + 0.016368713229894638, + -0.004650202579796314, + 0.017908992245793343, + -0.05398803949356079, + -0.0004140312084928155, + -0.023665452376008034, + 0.007127047516405582, + -0.02256898395717144, + 0.001410561497323215, + 0.024866348132491112, + -0.0025127411354333162, + 0.012635498307645321, + -0.016734203323721886, + -0.0037005823105573654, + 0.027124552056193352, + -0.03555691987276077, + -0.0026889594737440348, + 0.021498622372746468, + -0.005818464327603579, + -0.022895313799381256, + 0.02254287712275982, + 0.01303362101316452, + 0.005169067531824112, + -0.0221512820571661, + -0.015415830537676811, + 0.0011829463765025139, + -0.0570685938000679, + -0.0357135571539402, + 0.008641218766570091, + -0.03493036702275276, + -0.003563523758202791, + -0.028247127309441566, + 0.0033742524683475494, + 0.001219658413901925, + -0.009189452975988388, + 0.04119590297341347, + -0.014306307770311832, + 0.0007770733791403472, + 0.03936845436692238, + -0.008484580554068089, + 0.005094011779874563, + -0.003769111819565296, + -0.006937776226550341 + ], + "metadata": { + "source": "Thesis_Verladegeraeusche_in_Speditionen.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 41, + "has_images": true, + "image_count": 51, + "coordinates": "CoordinatesMetadata(points=((204.16666666666666, 189.02777777777797), (204.16666666666666, 642.3611111111111), (936.1666666666666, 642.3611111111111), (936.1666666666666, 189.02777777777797)), system=)", + "links": [], + "last_modified": "2025-05-05T22:59:16", + "_known_field_names": "frozenset({'cc_recipient', 'link_texts', 'url', 'filetype', 'category_depth', 'page_number', 'filename', 'orig_elements', 'detection_origin', 'email_message_id', 'page_name', 'coordinates', 'table_as_cells', 'link_start_indexes', 'sent_to', 'bcc_recipient', 'languages', 'last_modified', 'link_urls', 'file_directory', 'subject', 'data_source', 'detection_class_prob', 'image_base64', 'text_as_html', 'attached_to_filename', 'key_value_pairs', 'signature', 'sent_from', 'header_footer_type', 'parent_id', 'links', 'emphasized_text_contents', 'emphasized_text_tags', 'image_mime_type', 'is_continuation', 'image_path'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "Thesis_Verladegeraeusche_in_Speditionen.pdf", + "detection_class_prob": 0.2568194270133972, + "parent_id": "d45475a34bc527cde6987546fa6dd2f5", + "text_as_html": "
Flurf\u00f6rderger\u00e4t |Anzahl Einzelereignisse ElMax-PegelSchallleistungspegel
LAFmaxLWA,5sLWAmaxLWA,1hKlLWAT,1h
[dB(A)][dB(A)][dB(A)][dB(A)][dB(A)][dB(A)]
Gabelstapler29769,3100,7108,872,15,777,8
STABW [dB]6,54,96,54,92,9-
Gabelhubwagen9968,6100,7108,172,16,279,5
STABW [dB]6,45,16,4512,7-
", + "id": "5ba44de7-0ff3-4c0c-b018-67e92171e1c2", + "processing_timestamp": "2025-05-06T14:18:19.298665", + "chunk_number": 32, + "total_chunks": 49, + "chunking_strategy": "hybrid", + "word_count": 508 + } +} \ No newline at end of file diff --git a/data/processed/85fd305f-83de-70b0-47e8-2dc000000033.json b/data/processed/85fd305f-83de-70b0-47e8-2dc000000033.json new file mode 100644 index 0000000000000000000000000000000000000000..f7abd7d294f15935c223567f59c287819fc8b155 --- /dev/null +++ b/data/processed/85fd305f-83de-70b0-47e8-2dc000000033.json @@ -0,0 +1,1570 @@ +{ + "id": "85fd305f-83de-70b0-47e8-2dc000000033", + "content": "Die st\u00fcndlichen Schallleis- tungspegel der Beladevorg\u00e4nge folgen somit einem Muster, dass gut durch die Gau\u00df- sche Glockenkurve beschrieben werden kann. Dies bedeutet, dass eine symmetrische Verteilung der st\u00fcndlichen Schallleistungspegel um den energetischen Mittelwert vor- liegt. Es zeigt sich, dass die meisten Messwerte nahe dem Mittelwert liegen und die An- zahl der Messwerte abnimmt, je weiter sie sich vom Mittelwert entfernen. Dies ent- spricht der charakteristischen Glockenform der Normalverteilung. Die Messdaten wei- sen eine Durchschnittlichkeit auf, wobei keine Ausrei\u00dfer auftreten. ## 7.3 Richtcharakteristik\n\nNachdem die Auswertung der Richtcharakteristik abgeschlossen ist, k\u00f6nnen nun die Er- gebnisse dargestellt und interpretiert werden (siehe Tabelle 13). Das Polardiagramm zeigt die Intensit\u00e4t des Schalls in Abh\u00e4ngigkeit vom Azimutwinkel. Es wurde bewusst nur eine Messreihe des Gabelstaplers und des Gabelhubwagens als isolierte Schallquelle be- trachtet, um potenzielle St\u00f6rquellen wie Reflexionen von ung\u00fcnstig platzierten Anh\u00e4- ngern, wie an den anderen Untersuchungstagen, auszuschlie\u00dfen. Dadurch konnte eine pr\u00e4zisere Untersuchung der Richtcharakteristik des Gabelstaplers und des Gabelhubwa- gens erfolgen. Die Wahl eines bestimmten Untersuchungstags garantierte zudem weit- gehend konstante meteorologische und Umgebungsbedingungen, was zu einheitliche- ren Bedingungen f\u00fcr die Analyse der Richtcharakteristik f\u00fchrte und somit eine bessere Vergleichbarkeit der Ergebnisse erm\u00f6glichte. Dar\u00fcber hinaus wurde durch die Begren- zung auf zwei Schallquellen mit jeweils einer Messreihe die Komplexit\u00e4t der Auswertung deutlich reduziert, was den Prozess insgesamt vereinfachte. 66\n7 Ergebnisse und Interpretation\n\n| Pr | 5) | \u00ae | DI | Messpunkt | PM | [dB(A)] | Messpunkt | Fl | [dB(A)] |\n|---|---|---|---|---|---|---|---|---|---|\n\nGabelstapler Beladevorgangs\nGabelhubwagen Beladevorgang\nTabelle 13: Ergebnisse des Richtma\u00dfes mit dazugeh\u00f6rigen Azimuthwinkel f\u00fcr\n\n## jeden Messpunkt\n\nIn Diagramm 6 und Diagramm 7 ist die Richtcharakteristik des Gabelstaplers und des Gabelhubwagens grafisch dargestellt. Dabei wird die Richtcharakteristik in einem Polar- koordinationssystem veranschaulicht. [IMAGE: RICHTWIRKUNG GABELSTAPLER 5 0r 25 0 40\u00b0 a5 50\u00b0 10 4.dB 305\u00b0 so 300 = . 65 295 ) 200\u00b0 248 5 5: . 285 . . 90 280\u00b0 ya 8 275\u00b0 IK . Er 20\u00b0 Er 65\u00b0 100\u00b0 105\u00b0 110\u00b0 Ei us\u00ae 245 120 220\u00b0 125\u00b0 235 130 230\u00b0 135\u00b0 225 120 0: 1a 215\u00b0 210 205 oo. 165 195 yon: 10.175170]\n\nDiagramm 6: Richtwirkung eines Gabelstaplers (38 gesamt Einzelereignisse)\n67\n7 Ergebnisse und Interpretation\n\n[IMAGE: ]\n\nDiagramm 7: Richtwirkung eines Gabelhubwagens (83 gesamt Einzelereignisse)\nDie ermittelten Richtcharakteristiken basieren auf einer begrenzten Anzahl von vier Messpunkten, was m\u00f6glicherweise nicht alle Aspekte der Schallabstrahlung vollst\u00e4ndig abdeckt. Dennoch liefern sie eine grobe Darstellung der Schallemissionen w\u00e4hrend des Beladevorgangs. Es wird deutlich, dass die Schallabstrahlung weitestgehend in alle Rich- tungen erfolgt, ohne eine ausgepr\u00e4gte Richtcharakteristik aufzuweisen. Diese Erkennt- nis ist von Bedeutung, um die Schallemissionen angemessen bewerten zu k\u00f6nnen und gegebenenfalls Ma\u00dfnahmen zur L\u00e4rmminderung zu entwickeln. ## 7.4 Validierung\n\nNachdem die Auswertung der Validierung abgeschlossen ist, k\u00f6nnen nun die gesammel- ten Informationen systematisch analysiert und interpretiert werden. Durch den Ver- gleich der simulierten Messergebnisse mit den tats\u00e4chlichen Messungen kann die Ge- nauigkeit der berechneten Kenngr\u00f6\u00dfen \u00fcberpr\u00fcft werden.", + "embedding": [ + 0.009334021247923374, + 0.015457192435860634, + 0.00013921009667683393, + -0.03858327493071556, + -0.003192606847733259, + 0.019583532586693764, + -0.0030532930977642536, + -0.013785427436232567, + -0.018522094935178757, + -0.024320200085639954, + 0.016770722344517708, + 0.03205543011426926, + -0.018694577738642693, + 0.009805033914744854, + 0.0009942689212039113, + 0.0003149071126244962, + 0.03675229474902153, + 0.004139608703553677, + 0.012306047603487968, + 0.0098183024674654, + -0.00863081868737936, + 0.008584380149841309, + -0.005827958695590496, + -0.006209412589669228, + -0.010521505028009415, + 0.023975232616066933, + 0.03608889505267143, + -0.016770722344517708, + -0.020127519965171814, + 0.01584196276962757, + 0.0009677329799160361, + -0.012100393883883953, + -0.013287877663969994, + 0.00018284929683431983, + -0.009659086354076862, + -0.010826668702065945, + -0.001155972364358604, + -0.007589282467961311, + 0.015934839844703674, + 0.00016481314378324896, + 0.007934249937534332, + -0.006421700585633516, + 0.006348726339638233, + -0.03762798011302948, + 0.0018359562382102013, + 0.024147717282176018, + 0.009466701187193394, + -0.01011683139950037, + -0.024598827585577965, + 0.014395753853023052, + 0.01079349871724844, + 0.0038642981089651585, + -0.02097667008638382, + 0.014435557648539543, + 0.007920981384813786, + 0.006872811820358038, + 0.0026867652777582407, + -0.009805033914744854, + -0.012677551247179508, + -0.025262227281928062, + -0.02057863026857376, + -0.006839641835540533, + -0.01407732255756855, + 0.0037382522132247686, + -0.023656802251935005, + -0.03216157481074333, + -0.018455754965543747, + 0.004086536820977926, + -0.021202225238084793, + 0.012000883929431438, + 0.02300667017698288, + 0.038662880659103394, + -0.008604282513260841, + 0.014263073913753033, + 0.041051119565963745, + -0.013825231231749058, + 0.013135296292603016, + -0.006693693809211254, + -0.0006422529695555568, + 0.0065444293431937695, + 0.030197912827134132, + -0.01780562475323677, + -0.012498433701694012, + 0.04439464956521988, + 0.003665278432890773, + -0.008186341263353825, + -0.006080050021409988, + 0.00815317127853632, + -0.026575755327939987, + 0.011523237451910973, + 0.01096598245203495, + 0.020127519965171814, + 0.006813105661422014, + -7.831215771147981e-05, + 0.020830722525715828, + -0.009075296111404896, + -0.004212582483887672, + 0.016133859753608704, + -0.0036453765351325274, + -0.01444882620126009, + -0.017473924905061722, + -0.0067036449909210205, + 0.01807098276913166, + -0.0009494895348325372, + -0.027836214751005173, + -0.007297386880964041, + -0.0013873327989131212, + 0.011881472542881966, + 0.014979545027017593, + -0.021812552586197853, + -0.025328567251563072, + 0.01427634246647358, + -0.0185486301779747, + 0.004169461317360401, + 0.022860722616314888, + 0.01475398987531662, + 0.024200787767767906, + -0.015351048670709133, + -0.009566211141645908, + -0.020339807495474815, + 0.013679283671081066, + 0.004069951828569174, + 0.02333837002515793, + -0.013334316201508045, + 0.031153207644820213, + 0.0040168799459934235, + -0.001248848275281489, + 0.0014685990754514933, + -0.015072421170771122, + -0.02260863222181797, + -0.03553164005279541, + 0.000349320936948061, + 0.01438248623162508, + 0.006799837574362755, + -0.0038908340502530336, + 0.016120590269565582, + -0.022860722616314888, + 0.012438727542757988, + -0.021480852738022804, + -0.041316479444503784, + 0.0048826150596141815, + 0.01275715883821249, + -0.02374967746436596, + -0.0353458896279335, + 0.003784690285101533, + 0.015802159905433655, + 0.025753142312169075, + 0.039618175476789474, + -0.013360852375626564, + -0.00658423313871026, + -0.00869715865701437, + -0.02320569008588791, + 0.014289610087871552, + -0.0004108926223125309, + -0.026204252615571022, + -0.0032158256508409977, + -0.0020598534028977156, + 0.017487192526459694, + -0.010382191278040409, + -0.01262447889894247, + 0.01001732237637043, + 0.01726163737475872, + -0.00013081394718028605, + -0.006925883702933788, + 0.026708435267210007, + 0.0034563078079372644, + -0.00719124311581254, + -0.007197876926511526, + -0.004030147567391396, + -0.009824936278164387, + -0.004209265578538179, + 0.014953008852899075, + -0.014302878640592098, + 0.011337485164403915, + -0.013486897572875023, + 0.007217778824269772, + 0.002716618124395609, + -0.004003611858934164, + -0.02802196517586708, + -0.02802196517586708, + -0.021401245146989822, + -0.0006721059326082468, + 0.015430656261742115, + -0.008577746339142323, + -0.010282681323587894, + 0.020671507343649864, + 0.017341244965791702, + 0.01597464270889759, + -0.01874765008687973, + -0.016094055026769638, + 0.004096487537026405, + 0.010375557467341423, + 0.009241145104169846, + -0.02503667026758194, + -0.6258239150047302, + 0.005167876835912466, + -0.008007223717868328, + -0.002728227525949478, + 0.02483765035867691, + 0.017566800117492676, + 0.013208270072937012, + -0.006925883702933788, + -0.005622304975986481, + 0.04309438541531563, + -0.010919543914496899, + 0.011092027649283409, + 0.0017580068670213223, + -0.002764714416116476, + -0.012962812557816505, + -0.027570854872465134, + -0.014422290027141571, + -0.015510263852775097, + 0.034151770174503326, + 0.025063207373023033, + -0.020618434995412827, + 0.025023402646183968, + 0.0028509562835097313, + 0.00676998496055603, + -0.006494674365967512, + 0.009619282558560371, + 0.019848892465233803, + -0.01754026487469673, + 0.013719087466597557, + -0.010707256384193897, + -0.025646997615695, + 0.01418346632272005, + -0.02179928496479988, + 0.017699480056762695, + 0.03391294553875923, + -0.0007998101646080613, + -0.005423285067081451, + 0.017818892374634743, + 0.0034927946981042624, + 0.01255813892930746, + 0.004398334305733442, + -0.0015614749863743782, + -0.005821324419230223, + 0.005638889968395233, + -0.002746470971032977, + -0.00281612784601748, + 0.041794124990701675, + 0.0006426675827242434, + -0.00707183126360178, + -0.04346588999032974, + 0.004335311241447926, + 0.0027232521679252386, + 0.015735819935798645, + 0.021626800298690796, + 0.03622157499194145, + -0.011715622618794441, + 0.03003869764506817, + -0.025832749903202057, + -0.02272804267704487, + 0.02876497246325016, + 0.0024529171641916037, + 0.007503040600568056, + 0.009639184921979904, + -0.024545755237340927, + -0.006945785600692034, + 0.017155492678284645, + -0.009798400104045868, + -0.04434157535433769, + 0.008736962452530861, + -0.015404120087623596, + -0.020870527252554893, + 0.026920722797513008, + -0.02185235731303692, + 0.000544816255569458, + 0.03348837047815323, + 0.024744775146245956, + 0.012505067512392998, + -0.01901300996541977, + 0.014714185148477554, + 0.013347583822906017, + -0.007158073130995035, + 0.0096060149371624, + -0.009665720164775848, + 0.0017397634219378233, + 0.0013483581133186817, + -0.024598827585577965, + -0.004948955029249191, + 0.013692551292479038, + 0.013188368640840054, + 0.02294033020734787, + 0.009015589952468872, + 0.02246268279850483, + -0.012704087421298027, + -0.021069545298814774, + -0.01373235508799553, + 0.04455386474728584, + -0.0331699401140213, + 0.014780525118112564, + -0.015390852466225624, + -0.029561050236225128, + -0.023842552676796913, + 0.00023675044940318912, + 0.012126930058002472, + -0.003192606847733259, + 0.021441049873828888, + -0.0016924962401390076, + -0.013566505163908005, + -0.01383849885314703, + 0.004156193695962429, + -0.033461835235357285, + 0.01062101498246193, + -0.008889543823897839, + -0.005154608748853207, + -0.008047027513384819, + -0.0060037593357264996, + -0.030967455357313156, + 0.042324844747781754, + 0.013984446413815022, + 0.015152028761804104, + -0.004842811264097691, + 0.005947370082139969, + -0.0034861606545746326, + 0.04577451944351196, + -0.020008107647299767, + -0.024545755237340927, + 0.029481442645192146, + 0.022927062585949898, + 0.011450263671576977, + 0.006687059998512268, + -0.02211771532893181, + 0.015510263852775097, + -0.015377583913505077, + 0.013115393929183483, + -0.015297976322472095, + 0.029189547523856163, + 0.013758891262114048, + 0.017036082223057747, + -0.019610067829489708, + 0.004537648055702448, + -0.03364758566021919, + -0.022104447707533836, + -0.00018689187709242105, + -0.0011659234296530485, + -0.045376479625701904, + -0.0005535233649425209, + -0.021573729813098907, + -0.0292426198720932, + 0.0007940054638311267, + 0.010574577376246452, + -0.005469723138958216, + 0.002486086916178465, + -0.007622452452778816, + -0.007960786111652851, + 0.0283669326454401, + 0.005466406233608723, + 0.013559871353209019, + -0.019172225147485733, + -0.020074447616934776, + 0.0077153281308710575, + -0.019105885177850723, + 0.009745328687131405, + 0.00869052391499281, + -0.05036523565649986, + -0.006600818131119013, + -0.00563557306304574, + -0.017168760299682617, + 0.0034198209177702665, + -0.0009685622644610703, + -0.03521320968866348, + -0.031843144446611404, + 0.0033966018818318844, + 0.0050385138019919395, + -0.007735230028629303, + 0.016293074935674667, + -0.009745328687131405, + 0.02213098481297493, + -0.02409464493393898, + 0.008962517604231834, + -0.02355065755546093, + -0.0231393501162529, + 0.011888106353580952, + -0.00346957566216588, + -0.02701359987258911, + -0.011921276338398457, + 0.009347288869321346, + 0.013506799936294556, + 0.017818892374634743, + 0.003376699984073639, + -0.02008771523833275, + 0.0432005301117897, + -0.019716212525963783, + 0.03343529999256134, + -0.012982714921236038, + 0.0077219619415700436, + -0.036035824567079544, + 0.002358382800593972, + 0.011251243762671947, + 0.002539159031584859, + -0.012053956277668476, + 0.01738104782998562, + 0.02700033225119114, + -0.003622157499194145, + 0.0279423575848341, + -0.006677108816802502, + 0.02802196517586708, + -0.015589872375130653, + 0.02510301023721695, + -0.014740721322596073, + 0.03850366547703743, + 0.02964065782725811, + 0.015550067648291588, + -0.007907713763415813, + -0.02031327225267887, + -0.007483138702809811, + 0.003260605037212372, + 0.04123686999082565, + -0.01792503520846367, + 0.013267976231873035, + 0.020525559782981873, + 0.00568532757461071, + -0.0027696900069713593, + 0.011549773626029491, + 0.033329155296087265, + 0.024054840207099915, + -0.001330943894572556, + -0.0004681107820942998, + -0.0021179006434977055, + 0.01479379367083311, + -0.0024512584786862135, + -0.003847713116556406, + -0.0053834812715649605, + 0.015404120087623596, + 0.013407289981842041, + 0.009785132482647896, + 0.0146213099360466, + 0.022701507434248924, + -0.00359562155790627, + -0.004743301309645176, + 0.04150222986936569, + 0.018283270299434662, + 0.006365311332046986, + 0.015019348822534084, + 0.002827737480401993, + -0.007337190676480532, + 0.0020664872135967016, + -0.01418346632272005, + 0.01630634255707264, + 0.026907455176115036, + -0.0048030074685812, + -0.007748498115688562, + -0.013758891262114048, + 0.008922713808715343, + -0.003937271889299154, + -0.009121733717620373, + 0.015019348822534084, + -0.016412487253546715, + 0.04426196962594986, + -0.015457192435860634, + 0.008484871126711369, + 0.0290303323417902, + 0.010700622573494911, + 0.019397780299186707, + 0.0128234988078475, + -0.023736409842967987, + -0.0004225021111778915, + 0.016677845269441605, + -0.02571333758533001, + -0.016956472769379616, + -0.02023366279900074, + -0.0017613237723708153, + 0.021679872646927834, + 0.007775033824145794, + 0.009705524891614914, + 0.00923451129347086, + 0.012578041292726994, + -0.01975601725280285, + -0.004298824351280928, + 0.025965429842472076, + 0.015205100178718567, + 0.012372387573122978, + -0.010733792558312416, + -0.022316735237836838, + -0.015271440148353577, + 0.02125529758632183, + -0.01658497005701065, + -0.02259536273777485, + -0.01455496996641159, + 0.010322485119104385, + -0.018787454813718796, + -0.023245494812726974, + -0.009280948899686337, + -0.0040201968513429165, + -0.011954446323215961, + -0.010262779891490936, + 0.007781668100506067, + 0.00947333499789238, + 0.016611505299806595, + 0.0033534809481352568, + -0.00920797511935234, + 0.021892160177230835, + 0.010906276293098927, + -0.022303467616438866, + -0.01643902249634266, + -0.030702097341418266, + 0.009798400104045868, + 0.02145431749522686, + -0.03200235962867737, + -0.018906865268945694, + 0.005930785089731216, + -0.015682747587561607, + -0.016186930239200592, + -0.000607839145231992, + -0.00892934761941433, + 0.008889543823897839, + -0.012199903838336468, + 0.0005340360221453011, + 0.004471308086067438, + 0.009824936278164387, + 0.05307190492749214, + -0.005867762491106987, + -0.020140787586569786, + -0.012923008762300014, + -0.0007181292166933417, + 0.00892934761941433, + 0.007330556865781546, + 0.01658497005701065, + 0.013891571201384068, + 0.024850919842720032, + -0.018920134752988815, + -0.015802159905433655, + 0.0023699922021478415, + -0.027995429933071136, + 0.014541701413691044, + 0.02185235731303692, + 0.014608041383326054, + -0.003383333794772625, + 0.023404709994792938, + 0.004003611858934164, + -0.004288873169571161, + -0.01066081877797842, + 0.012597943656146526, + -0.009486602619290352, + 0.020406147465109825, + 0.016903402283787727, + -0.011861570179462433, + 0.0033601149916648865, + 0.003210850292816758, + 0.039220135658979416, + -0.013267976231873035, + -0.013692551292479038, + 0.02457229234278202, + -0.0026303762570023537, + 0.008431798778474331, + -0.04861386492848396, + -0.012385656125843525, + 0.03720340505242348, + 0.00048511038767173886, + 0.013155198656022549, + -0.012750525027513504, + -0.006600818131119013, + 0.011277779936790466, + -0.005492941942065954, + 0.007735230028629303, + -0.01373235508799553, + 0.005589134991168976, + 0.0010431946720927954, + 0.014873401261866093, + -0.007582648191601038, + 0.015032617375254631, + -0.0014893303159624338, + 0.007934249937534332, + 0.007144805043935776, + -0.0020847306586802006, + -0.008232778869569302, + 0.004295507445931435, + -0.032851509749889374, + 0.010004053823649883, + -0.0019669774919748306, + -0.0035160137340426445, + -0.02972026728093624, + -0.002124534687027335, + -0.019994840025901794, + -0.007834739983081818, + -0.008889543823897839, + -0.03261268511414528, + -0.008975786156952381, + 0.016863597556948662, + 0.0019620019011199474, + -0.033727195113897324, + -0.00737699493765831, + -0.014103858731687069, + -0.01251833513379097, + -0.011317583732306957, + 0.011589577421545982, + -0.009327387437224388, + -0.01787196472287178, + -0.03409869968891144, + -0.013957911171019077, + 0.012425459921360016, + 0.00558250118046999, + 0.02002137526869774, + -0.0025590609293431044, + -0.019371245056390762, + -0.006425017490983009, + -0.017951572313904762, + -0.014820328913629055, + 0.0004531843005679548, + -0.02558065764605999, + -0.020260199904441833, + 0.021215494722127914, + -0.018508827313780785, + 0.003887516912072897, + 0.009194707497954369, + 0.01643902249634266, + -0.012325949966907501, + 0.0169166699051857, + 0.022436147555708885, + -0.013254707679152489, + -0.002121217781677842, + 0.018309807404875755, + 0.001364113762974739, + 0.012073858641088009, + 0.005592451896518469, + -0.0160409826785326, + 0.011019053868949413, + -0.028393469750881195, + 0.002899052808061242, + -0.00013226513692643493, + 0.010740426369011402, + -0.01180849876254797, + -0.008053661324083805, + -0.0028078353498131037, + 0.0022820918820798397, + 0.011768694967031479, + 0.008783400058746338, + -0.022290199995040894, + 0.007343824952840805, + 0.011994250118732452, + -0.02219732478260994, + 0.008451701141893864, + 0.0017729332903400064, + 0.014714185148477554, + 0.025899089872837067, + -0.00038725906051695347, + -0.01350016612559557, + -0.016863597556948662, + 0.0316573902964592, + 0.007814837619662285, + -0.021905427798628807, + 0.044898830354213715, + -0.02727895975112915, + 0.00659750122576952, + -0.028313860297203064, + -0.008146537467837334, + 0.013626211322844028, + 0.010309217497706413, + 0.005194412544369698, + -0.01799137517809868, + -0.008677256293594837, + -0.005791471805423498, + -0.0018807356245815754, + 0.010647551156580448, + -0.017964839935302734, + -0.004385066218674183, + -0.019517192617058754, + 0.02516935020685196, + -0.004325360059738159, + 0.005977223161607981, + 0.006232631858438253, + -0.02719935029745102, + -0.02376294508576393, + 0.021985037252306938, + -0.011536505073308945, + 0.018323075026273727, + -0.017168760299682617, + -0.007091733161360025, + -0.024081377312541008, + -0.01127114612609148, + -0.003688497468829155, + -0.028658827766776085, + 0.005141340661793947, + -0.013460361398756504, + 0.0009610989945940673, + 0.012770427390933037, + 0.03858327493071556, + 0.00047764714690856636, + -0.006574281957000494, + 0.015523532405495644, + -0.016213467344641685, + -0.004620572552084923, + -0.027915822342038155, + -0.007297386880964041, + -0.022104447707533836, + 0.027438174933195114, + 0.0009660745272412896, + -0.009055393747985363, + 0.004086536820977926, + 0.006617403123527765, + 0.009632551111280918, + 0.04702170565724373, + -0.004753252491354942, + -0.01738104782998562, + -0.020193859934806824, + -0.03399255499243736, + -0.00593741936609149, + 0.014329413883388042, + 0.012936276383697987, + 0.007668890058994293, + -0.015656212344765663, + -0.009353923611342907, + 0.017314709722995758, + -0.02219732478260994, + -0.005174510646611452, + -0.014953008852899075, + 0.009121733717620373, + -0.037389155477285385, + 0.03595621511340141, + -0.008246047422289848, + 0.0169166699051857, + -0.013208270072937012, + -0.006670475006103516, + -0.018986474722623825, + -0.013155198656022549, + 0.011775328777730465, + 0.006932517513632774, + 0.022184055298566818, + -0.003947223071008921, + -0.02260863222181797, + 0.011954446323215961, + -0.02463863231241703, + 0.004295507445931435, + -0.019583532586693764, + -0.002635351847857237, + -0.015098956413567066, + -0.03261268511414528, + -0.024200787767767906, + -0.008796668611466885, + -0.01299598254263401, + 0.01738104782998562, + -0.005416651256382465, + 0.00984483864158392, + 0.01610732264816761, + -0.019437585026025772, + -0.003788007190451026, + 0.019981572404503822, + -0.009426897391676903, + 0.027597390115261078, + 0.006342092528939247, + 0.0314185656607151, + 0.022794382646679878, + -0.028605757281184196, + -0.009572844952344894, + -0.051134780049324036, + 0.001301090931519866, + -0.004547598771750927, + 0.02010098472237587, + -0.006106586195528507, + -0.010203073732554913, + -0.006471455562859774, + 0.018442487344145775, + 0.01022297516465187, + -0.011244609951972961, + -0.01323480624705553, + 0.027053402736783028, + 0.016001179814338684, + 0.005801422521471977, + -0.012617845088243484, + 0.01901300996541977, + -0.019530460238456726, + -0.0033418715465813875, + 0.0031080234330147505, + -0.00903549138456583, + -0.004255703184753656, + -0.0005269874236546457, + -0.016080787405371666, + 0.049171119928359985, + 0.008544576354324818, + 0.02977333776652813, + 0.008637452498078346, + -0.020419415086507797, + 0.0007152268663048744, + -0.026005232706665993, + -0.017314709722995758, + 0.011655917391180992, + -0.0210562776774168, + 0.04224523529410362, + -0.004398334305733442, + -0.005589134991168976, + 0.0053801643662154675, + 0.003572402521967888, + -0.0051844618283212185, + -0.009181439876556396, + 0.0023633581586182117, + 0.019716212525963783, + -0.005662108771502972, + -0.0021079496946185827, + 0.01957026496529579, + -0.012916374951601028, + 0.0010664135916158557, + 0.007469870615750551, + -0.013314413838088512, + -0.012856668792665005, + -0.012631113640964031, + 0.0025822799652814865, + -0.0020482437685132027, + 0.016611505299806595, + 0.006846275646239519, + -0.01126451138406992, + -0.008836472406983376, + 0.004819592460989952, + -0.008843106217682362, + -0.015788892284035683, + 0.015205100178718567, + -0.03038366511464119, + -0.011025688610970974, + -0.01133085135370493, + 0.013679283671081066, + 0.03627464547753334, + -0.019464120268821716, + -0.027862749993801117, + -0.01390483882278204, + 0.02531529776751995, + -0.030171377584338188, + 0.010481701232492924, + 0.02660229243338108, + -0.009831570088863373, + -0.0077219619415700436, + -0.004229167476296425, + 0.018774185329675674, + -0.012292779982089996, + 0.03545203059911728, + -0.012498433701694012, + -0.027597390115261078, + -0.019464120268821716, + 0.004268971271812916, + 0.022104447707533836, + -0.03839752450585365, + -0.012750525027513504, + -0.003688497468829155, + 0.01780562475323677, + 0.007231046911329031, + -0.007841373793780804, + 0.012392289936542511, + -0.004627206828445196, + 0.021082814782857895, + -0.006866177543997765, + 0.02247595228254795, + -0.009685622528195381, + 0.026549220085144043, + 0.0060037593357264996, + -0.00893598236143589, + 0.007032027468085289, + -0.023099547252058983, + -0.029136475175619125, + 0.01414366252720356, + 0.016253270208835602, + -0.04203294962644577, + 0.007854641415178776, + -0.015019348822534084, + -0.030197912827134132, + -0.007456602528691292, + 0.013566505163908005, + -0.0024396490771323442, + 0.017765820026397705, + 0.01995503529906273, + -0.0015987911028787494, + 0.008902812376618385, + 0.04001621529459953, + -0.013553237542510033, + -0.017818892374634743, + 0.02023366279900074, + 0.024320200085639954, + -0.03669922053813934, + 0.004633840639144182, + -0.02191869728267193, + 0.02678804285824299, + 0.028605757281184196, + -0.02727895975112915, + -0.003788007190451026, + 0.012299413792788982, + -0.02807503752410412, + -0.0316573902964592, + -0.016279807314276695, + 0.010939446277916431, + -0.011344119906425476, + 0.012093760073184967, + -0.0158286951482296, + 0.0349213145673275, + 0.0047200825065374374, + 0.017951572313904762, + -0.016080787405371666, + -0.0056919618509709835, + 0.0008649061783216894, + -0.005410017445683479, + 0.008770132437348366, + -0.016425754874944687, + -0.028950724750757217, + 0.0009544650092720985, + 0.03635425493121147, + -0.012478531338274479, + 0.013811962679028511, + 0.02604503743350506, + -0.007834739983081818, + -0.012611211277544498, + 0.009075296111404896, + 0.023444514721632004, + 0.025739872828125954, + 0.011509968899190426, + -0.001694154692813754, + -0.017951572313904762, + -0.004205948207527399, + -0.0014652821701020002, + 0.009639184921979904, + -0.033806804567575455, + 0.006511259358376265, + 0.01807098276913166, + -0.00492241932079196, + -0.014064054936170578, + 0.010136733762919903, + -0.020751114934682846, + -0.014024251140654087, + 0.005662108771502972, + 0.02619098499417305, + 0.022316735237836838, + -0.021003205329179764, + 0.0072111450135707855, + 0.011602845042943954, + -0.018309807404875755, + -0.022237127646803856, + 0.01434268243610859, + -0.010627648793160915, + 0.009042126126587391, + 0.013029152527451515, + -0.015351048670709133, + 0.01718202978372574, + -0.0045243799686431885, + 0.015125492587685585, + 0.012505067512392998, + -0.003328603459522128, + -0.03937935456633568, + -0.011005786247551441, + -0.02211771532893181, + 0.03431098535656929, + 0.030569417402148247, + -0.004113072529435158, + 0.012604577466845512, + -0.002212435007095337, + -0.005824641324579716, + -0.008889543823897839, + -0.005910883191972971, + -0.0007566892891190946, + -0.02828732505440712, + 0.0031013893894851208, + 0.0017480558017268777, + -0.026204252615571022, + 0.004487893078476191, + 0.006879445631057024, + -0.01448862999677658, + -0.03526628017425537, + -0.0009619282791391015, + 0.18999741971492767, + -0.03431098535656929, + -0.015589872375130653, + 0.012684185057878494, + -0.03277190029621124, + -0.029454907402396202, + 0.024320200085639954, + -0.004089853726327419, + 0.007655622437596321, + 0.02010098472237587, + 0.025222422555088997, + 0.011775328777730465, + 0.018031179904937744, + 0.011728891171514988, + 0.012684185057878494, + -0.011357387527823448, + -0.028605757281184196, + -0.021746212616562843, + 0.0006899347645230591, + 0.018309807404875755, + 0.034629419445991516, + -0.029959090054035187, + -0.005353628192096949, + -0.00977849867194891, + 0.03985700011253357, + 0.012783695012331009, + -0.018044447526335716, + 0.004663693718612194, + 0.0412634052336216, + 0.021971767768263817, + -0.03051634505391121, + -0.006998857483267784, + 0.016094055026769638, + -0.015138761140406132, + -0.0018873695516958833, + 0.0042192162945866585, + 0.008982419967651367, + -0.002175948116928339, + 0.024479415267705917, + 0.027968892827630043, + 0.0040666344575583935, + -0.03375373035669327, + 0.0001083205861505121, + -0.03831791505217552, + 0.027570854872465134, + 0.012617845088243484, + -0.019384512677788734, + 0.0016742526786401868, + 0.008365458808839321, + 0.011377289891242981, + -0.006438285578042269, + 0.008206243626773357, + 0.023179154843091965, + 0.039830464869737625, + -0.0017032764153555036, + -0.022157520055770874, + 0.00910183135420084, + -0.021096082404255867, + 0.01692993752658367, + 0.01218000240623951, + -0.04006928950548172, + 0.0025209153536707163, + -0.010999152436852455, + 0.008338922634720802, + -0.018216930329799652, + 0.012850034981966019, + -0.02260863222181797, + 0.0043319943360984325, + 0.0018293221946805716, + -0.020923597738146782, + 0.012551505118608475, + -0.00896915141493082, + -0.03370065987110138, + 0.012239707633852959, + -0.02746471017599106, + -0.035903144627809525, + 0.0192120298743248, + 0.01126451138406992, + 0.03261268511414528, + 0.02348431758582592, + 0.0024479415733367205, + 0.019543729722499847, + -0.01841595023870468, + -0.029534514993429184, + 0.001101242029108107, + -0.01397117879241705, + 0.02282091975212097, + 0.017646407708525658, + 0.001397283747792244, + -0.0028492978308349848, + -0.016147127375006676, + 0.013413923792541027, + 0.0009179781191051006, + -0.01316846627742052, + 0.01665131002664566, + -0.02234327234327793, + 0.018707847222685814, + -0.0011957763927057385, + -0.01018980611115694, + -0.010063759982585907, + -0.011118563823401928, + 0.043970074504613876, + 0.0467032752931118, + -0.007476504426449537, + -0.013553237542510033, + -0.002116242190822959, + 0.0011916301446035504, + 0.016797257587313652, + -0.0010398776503279805, + -0.015749087557196617, + -0.005725131835788488, + -0.04359856992959976, + 0.016730917617678642, + -0.01180849876254797, + 0.013480263762176037, + 0.016080787405371666, + 0.0036387424916028976, + 0.005973906256258488, + 0.0016327903140336275, + 0.010912910103797913, + -0.002199167152866721, + -0.012491799890995026, + 0.010402093641459942, + 0.016001179814338684, + 0.01860170252621174, + -0.045986805111169815, + -0.021878892555832863, + 0.02490399032831192, + 0.002194191562011838, + 0.02577967755496502, + 0.024744775146245956, + -0.032241180539131165, + 0.022635167464613914, + 0.000615302415098995, + 0.0011244609486311674, + -0.0004048805858474225, + -0.002797884400933981, + -0.03789333999156952, + -0.010143367573618889, + -0.0004191851185169071, + 0.02503667026758194, + -0.0033932849764823914, + 0.009771864861249924, + 0.0024446246679872274, + 0.009798400104045868, + 0.005645523779094219, + 0.016598237678408623, + -0.0003571987908799201, + -0.03330262005329132, + -0.03595621511340141, + -0.005980540066957474, + -0.008332288824021816, + 0.0038974680937826633, + -0.01970294490456581, + 0.0208439901471138, + 0.017699480056762695, + -0.034815169870853424, + -0.031047064810991287, + 0.02098993770778179, + 0.004245752468705177, + -0.008544576354324818, + -0.01671764999628067, + 0.014939741231501102, + -0.017089152708649635, + 0.016067519783973694, + -0.005559281911700964, + -0.16738878190517426, + 0.017314709722995758, + 0.012365753762423992, + -0.03399255499243736, + 0.014820328913629055, + -0.01180849876254797, + 0.03863634541630745, + 0.002965392544865608, + -0.023112814873456955, + -0.0008723694481886923, + 0.03850366547703743, + -0.0024512584786862135, + -0.02612464502453804, + -0.019132422283291817, + -0.01167581882327795, + -0.0036254744045436382, + -0.03720340505242348, + 0.04123686999082565, + 0.011927910149097443, + 0.030171377584338188, + 0.008411896415054798, + -0.03545203059911728, + 0.02409464493393898, + 0.011417093686759472, + -0.010043857619166374, + 0.005529428832232952, + -0.024253860116004944, + 0.04948955029249191, + -0.013984446413815022, + -0.02211771532893181, + -0.02396196499466896, + -0.0038443959783762693, + 0.0063520437106490135, + 0.0037415693514049053, + -0.007529576309025288, + -0.010747061111032963, + -0.015231636352837086, + -0.005950687453150749, + -0.012631113640964031, + 0.021268565207719803, + 0.00808683130890131, + 0.02504993975162506, + 5.020840490033152e-06, + 0.02003464475274086, + 0.005877713207155466, + 0.03396601974964142, + 0.0194243174046278, + -0.007463236339390278, + -0.010481701232492924, + -0.017752552404999733, + -0.0046802787110209465, + -0.013148563914000988, + -0.0017165443859994411, + 0.009685622528195381, + 0.002880809362977743, + 0.025328567251563072, + -0.001085486263036728, + 0.029083402827382088, + 0.002190874656662345, + -0.00443150382488966, + 0.010521505028009415, + -0.02037961222231388, + 0.0025375003460794687, + -0.013957911171019077, + 0.01113846618682146, + -0.024107912555336952, + -0.009347288869321346, + 0.021069545298814774, + -0.02388235740363598, + -0.015881767496466637, + -0.00030495613464154303, + -0.024121180176734924, + 0.0011070467298850417, + -0.016611505299806595, + 0.010561308823525906, + 0.014103858731687069, + -0.007270850706845522, + -0.006235948763787746, + 0.008451701141893864, + -0.010534772649407387, + -0.007609184365719557, + 0.05285961553454399, + -0.0009901226731017232, + -0.0473666749894619, + -0.0035757196601480246, + -0.01807098276913166, + -0.011058857664465904, + 0.030887847766280174, + -0.008783400058746338, + 0.0040666344575583935, + 0.011297681368887424, + -0.02701359987258911, + -0.01671764999628067, + -0.030144842341542244, + 0.010335753671824932, + -0.01326134242117405, + -0.010070393793284893, + 0.005592451896518469, + -0.017367780208587646, + -0.022927062585949898, + -0.0005141340661793947, + -0.0060369293205440044, + -0.023404709994792938, + 0.018588434904813766, + 0.004448088817298412, + 0.018163859844207764, + -0.018588434904813766, + 0.011350753717124462, + 0.031843144446611404, + -0.010853204876184464, + -0.01922529749572277, + -0.005257435608655214, + 0.014156930148601532, + -0.0038278112187981606, + -0.015311244875192642, + 0.011251243762671947, + -0.008982419967651367, + -0.0031809972133487463, + 0.008571112528443336, + -0.021560460329055786, + 0.04914458468556404, + -0.0121136624366045, + 0.005280654411762953, + 0.01316846627742052, + -0.00455091567710042, + -0.03189621493220329, + -0.09048759937286377, + -0.000317809492116794, + 0.018588434904813766, + 0.014395753853023052, + 0.020061179995536804, + 0.02450595237314701, + 0.013354217633605003, + -0.008378727361559868, + 0.012206537649035454, + 0.056468505412340164, + -0.03423137962818146, + -0.028207717463374138, + -0.026549220085144043, + -0.013009250164031982, + 0.015390852466225624, + -0.023179154843091965, + 0.010541407391428947, + -0.02110935002565384, + -0.020897062495350838, + 0.022847454994916916, + -0.01444882620126009, + -0.015682747587561607, + -0.01143699511885643, + -0.008120001293718815, + -0.010720524936914444, + -0.014528433792293072, + -0.030357129871845245, + 0.010050492361187935, + 0.019251832738518715, + -0.007635720074176788, + 0.023457782343029976, + -0.016213467344641685, + -0.0020067812874913216, + -0.016890132799744606, + -0.011908008717000484, + -0.017208565026521683, + -0.015045884996652603, + -0.018787454813718796, + 0.03335569053888321, + -0.010640916414558887, + 0.0034463568590581417, + 0.020472487434744835, + 0.004988758824765682, + 0.003811226226389408, + 0.00713817123323679, + -0.017022812739014626, + -0.016067519783973694, + 0.009672354906797409, + 0.009592746384441853, + 0.012836766429245472, + -0.023404709994792938, + -0.01602771505713463, + -0.025262227281928062, + 0.014289610087871552, + 0.02321895770728588, + 0.001000902964733541, + -0.0037581543438136578, + 0.0007102513336576521, + -0.004474624991416931, + 0.0015647918917238712, + -0.02288725972175598, + 0.01163601502776146, + -0.01996830478310585, + 0.051187850534915924, + -0.008882910013198853, + 0.0015913278330117464, + -0.016293074935674667, + -0.01590830273926258, + 0.01868131011724472, + -0.012843401171267033, + -0.020804187282919884, + 0.018097519874572754, + 0.011576308868825436, + 0.0012878229608759284, + -0.020897062495350838, + -0.010375557467341423, + -0.05352301523089409, + 0.0036155234556645155, + 0.00551616121083498, + -0.0035425496753305197, + 0.005781520623713732, + -0.02916301228106022, + 0.030914384871721268, + -0.013029152527451515, + 0.04298824444413185, + 0.012120296247303486, + 0.0034861606545746326, + -0.02145431749522686, + 0.012259609997272491, + -0.015351048670709133, + -0.01383849885314703, + 0.029561050236225128, + 0.021746212616562843, + -0.007151439320296049, + -0.03338222950696945, + 0.02199830487370491, + 0.011377289891242981, + -0.004335311241447926, + -0.009254413656890392, + 0.012591308914124966, + -0.024267127737402916, + -0.004152876324951649, + -0.03688497468829155, + 0.03675229474902153, + 0.025753142312169075, + -0.002494379412382841, + -0.011781962588429451, + -0.0037448862567543983, + 0.015390852466225624, + 0.017314709722995758, + 0.017832159996032715, + -0.010912910103797913, + 0.00869715865701437, + 0.00859101489186287, + -0.009659086354076862, + -0.004000294953584671, + -0.03125935047864914, + -0.03789333999156952, + -0.012325949966907501, + 0.025633729994297028, + 0.004278922453522682, + 0.00700549129396677, + -0.016704382374882698, + 0.008332288824021816, + -0.00028111523715779185, + 0.020897062495350838, + -0.029083402827382088, + -0.0014254781417548656, + -0.013387387618422508, + 0.023789480328559875, + -0.015576603822410107, + -0.005967272445559502, + -0.0015166954835876822, + 0.002787933452054858, + -0.007576014380902052, + 0.03133895993232727, + 0.00048386648995801806, + -0.020658239722251892, + 0.01001732237637043, + 0.03791987523436546, + 0.01596137508749962, + 0.05583164468407631, + -0.02274131029844284, + -0.022794382646679878, + 0.00019746480393223464, + -0.007821472361683846, + 0.007469870615750551, + 0.008033759891986847, + 0.009387092664837837, + 0.0034463568590581417, + -0.0010647551389411092, + -0.013931374996900558, + 0.0370972603559494, + 0.011277779936790466, + 0.014435557648539543, + -0.025899089872837067, + 0.0026867652777582407, + 0.007781668100506067, + 0.0060501969419419765, + 0.0009387093014083803, + 0.019464120268821716, + -0.039750855416059494, + 0.03693804517388344, + 0.002061511855572462, + 0.009254413656890392, + -0.015669479966163635, + -0.009765230119228363, + -0.020114252343773842, + -0.024001767858862877, + -0.015032617375254631, + -0.000364247418474406, + -0.038822099566459656, + -0.019530460238456726, + -0.002575645921751857, + 0.02713301032781601, + 0.04261673986911774, + -0.006375262513756752, + -0.007794936187565327, + 0.00038953949115239084, + 0.01650536246597767, + 0.0033634318970143795, + -0.00017196541011799127, + 0.013400656171143055, + 0.017367780208587646, + -0.0029255887493491173, + -0.0023782846983522177, + 0.041051119565963745, + 0.00808683130890131, + -0.0192120298743248, + -0.009367191232740879, + -0.00676666758954525, + -0.010766962543129921, + -0.001305237179622054, + 0.02977333776652813, + 0.0029637340921908617, + 0.007702060043811798, + 0.0060402462258934975, + 0.010806766338646412, + -0.014170198701322079, + -0.0171289574354887, + 0.03173699975013733, + 0.03598275035619736, + -0.008007223717868328, + 0.014435557648539543, + -0.004182729404419661, + -0.020737847313284874, + 0.007589282467961311, + 0.013214903883635998, + -0.0055360631085932255, + -0.026496147736907005, + -0.008557844907045364, + 0.008518041111528873, + -0.004298824351280928, + 0.0019702943973243237, + 0.008272582665085793, + 0.003658644389361143, + -0.00353591563180089, + 0.004982125014066696, + -0.02897725999355316, + -0.01569601520895958, + -0.016492094844579697, + 0.02124202996492386, + 0.016677845269441605, + 0.002212435007095337, + -0.008425164967775345, + 0.005867762491106987, + 0.012053956277668476, + -0.01665131002664566, + 0.03213503956794739, + -0.009970883838832378, + 0.00281778653152287, + -0.008710426278412342, + 0.015324512496590614, + 0.0029786606319248676, + -0.016478827223181725, + -0.021573729813098907, + -0.01448862999677658, + 0.007542844396084547, + 0.012067223899066448, + 0.01353996992111206, + -0.007489772513508797, + 0.13257361948490143, + 0.009745328687131405, + -0.00026370101841166615, + 0.01617366261780262, + -0.001704934984445572, + 0.022237127646803856, + 0.016611505299806595, + 0.003403235925361514, + 0.004985441919416189, + -0.06007739529013634, + 0.009831570088863373, + -0.01569601520895958, + 0.011456897482275963, + -0.02024693228304386, + -0.00246120966039598, + 0.034947849810123444, + -0.0009055393747985363, + 0.021029742434620857, + -0.014289610087871552, + -0.018588434904813766, + 0.029216082766652107, + -0.027106475085020065, + 0.02077765017747879, + 0.025885822251439095, + -0.010057126171886921, + -0.03348837047815323, + 0.010229609906673431, + 0.010521505028009415, + 0.010946080088615417, + -0.015470460057258606, + -0.0069059813395142555, + 0.004205948207527399, + -0.07297386974096298, + -0.031843144446611404, + 0.010448531247675419, + -0.01996830478310585, + -0.01137065514922142, + -0.036566540598869324, + 0.019742747768759727, + 0.012405557557940483, + 0.00414292560890317, + 0.030542880296707153, + -0.008013857528567314, + -0.013865035027265549, + 0.005283971317112446, + -0.008511406369507313, + 0.022701507434248924, + -0.0052308994345366955, + -0.021772749722003937 + ], + "metadata": { + "source": "Thesis_Verladegeraeusche_in_Speditionen.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 41, + "has_images": true, + "image_count": 51, + "coordinates": "CoordinatesMetadata(points=((204.16666666666666, 189.02777777777797), (204.16666666666666, 642.3611111111111), (936.1666666666666, 642.3611111111111), (936.1666666666666, 189.02777777777797)), system=)", + "links": [], + "last_modified": "2025-05-05T22:59:16", + "_known_field_names": "frozenset({'cc_recipient', 'link_texts', 'url', 'filetype', 'category_depth', 'page_number', 'filename', 'orig_elements', 'detection_origin', 'email_message_id', 'page_name', 'coordinates', 'table_as_cells', 'link_start_indexes', 'sent_to', 'bcc_recipient', 'languages', 'last_modified', 'link_urls', 'file_directory', 'subject', 'data_source', 'detection_class_prob', 'image_base64', 'text_as_html', 'attached_to_filename', 'key_value_pairs', 'signature', 'sent_from', 'header_footer_type', 'parent_id', 'links', 'emphasized_text_contents', 'emphasized_text_tags', 'image_mime_type', 'is_continuation', 'image_path'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "Thesis_Verladegeraeusche_in_Speditionen.pdf", + "detection_class_prob": 0.2568194270133972, + "parent_id": "d45475a34bc527cde6987546fa6dd2f5", + "text_as_html": "
Flurf\u00f6rderger\u00e4t |Anzahl Einzelereignisse ElMax-PegelSchallleistungspegel
LAFmaxLWA,5sLWAmaxLWA,1hKlLWAT,1h
[dB(A)][dB(A)][dB(A)][dB(A)][dB(A)][dB(A)]
Gabelstapler29769,3100,7108,872,15,777,8
STABW [dB]6,54,96,54,92,9-
Gabelhubwagen9968,6100,7108,172,16,279,5
STABW [dB]6,45,16,4512,7-
", + "id": "5ba44de7-0ff3-4c0c-b018-67e92171e1c2", + "processing_timestamp": "2025-05-06T14:18:19.298665", + "chunk_number": 33, + "total_chunks": 49, + "chunking_strategy": "hybrid", + "word_count": 479 + } +} \ No newline at end of file diff --git a/data/processed/85fd305f-83de-70b0-47e8-2dc000000034.json b/data/processed/85fd305f-83de-70b0-47e8-2dc000000034.json new file mode 100644 index 0000000000000000000000000000000000000000..1244b15583dcfa2032156d535fc79d20fb84fa29 --- /dev/null +++ b/data/processed/85fd305f-83de-70b0-47e8-2dc000000034.json @@ -0,0 +1,1570 @@ +{ + "id": "85fd305f-83de-70b0-47e8-2dc000000034", + "content": "## 7.4 Validierung\n\nNachdem die Auswertung der Validierung abgeschlossen ist, k\u00f6nnen nun die gesammel- ten Informationen systematisch analysiert und interpretiert werden. Durch den Ver- gleich der simulierten Messergebnisse mit den tats\u00e4chlichen Messungen kann die Ge- nauigkeit der berechneten Kenngr\u00f6\u00dfen \u00fcberpr\u00fcft werden. Die Ergebnisse werden in einer Darstellung gegen\u00fcbergestellt und die Abweichungen im Anschluss interpretiert. Dies erm\u00f6glicht eventuelle Abweichungen zu interpretieren und R\u00fcckschl\u00fcsse auf die Genauigkeit der berechneten Kenngr\u00f6\u00dfen zu ziehen. 68\n7 Ergebnisse und Interpretation\nZur Durchf\u00fchrung des Vergleichs werden repr\u00e4sentativ zwei Messtage f\u00fcr die beiden Flurf\u00f6rderger\u00e4te ausgew\u00e4hlt, bei denen die Fl\u00e4chenschallquelle in der Simulation an der entsprechenden Verladestelle platziert wird. Die Lage des Immissionsortes, der Fl\u00e4chen- schallquellen und sonstigen akustischen Randbedingungen k\u00f6nnen der Anhang 2: Lage- pl\u00e4ne entnommen werden. Anschlie\u00dfend wird der Teilbeurteilungspegel Lr aus der Si- mulation mit den auf den st\u00fcndlich bezogenen Taktmaximalpegel LAFTeq, da dieser den Impulshaltigkeit bereits enth\u00e4lt, aus den Messdaten verglichen. In Tabelle 14 sind die Ergebnisse des Vergleichs aufgezeigt. | Beurteilungpegel | Differenz | Flurf\u00f6rderger\u00e4t | Messtag | [dB(A)] | An | [dB(A)] | Simuliert | Messung | Gabelstapler | 03.05.2023 | 53,3 | 60,1 | 6,8 | Gabelhubwagen | 27.04.2023 | 63,5 | 65,8 | 2,3 |\n|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|\n\nTabelle 14: Ergebnisse der Validierung\nDie Ergebnisse zeigen, dass es Abweichungen zwischen den simulierten und den gemes- senen Beurteilungspegeln gibt. Die gemessenen Werte sind h\u00f6her als die simulierten Werten, wobei die Differenzen unterschiedliche Abweichungen haben. Es herrscht eine durchschnittliche Differenz von 4,6 dB(A). Die Ergebnisse der Validierung deuten darauf hin, dass die Simulation m\u00f6glicherweise nicht genau genug die realen Bedingungen wi- derspiegelt und eine gewisse Ungenauigkeit aufweist. Es kann verschiedene Gr\u00fcnde f\u00fcr Unterschiede geben, wie ungenaue Annahmen bei der Modellierung oder unvorherge- sehene Schwankungen in den tats\u00e4chlichen Messungen. Es ist zu beachten, dass das Re- chenmodell stets von einem Worst-Case-Szenario ausgeht, beispielsweise indem ange- nommen wird, dass die Fassaden vollst\u00e4ndig reflektieren. Dadurch stellt das Modell eine Vereinfachung der realen Situation dar. Aus diesem Grund kann es zu Abweichungen bis zu 3 dB kommen. Nach einer Untersuchung die in der VDI 2714 [86] erw\u00e4hnt wird, wurde festgestellt, dass bei freier Schallausbreitung einer einzelnen breitbandigen Schallquelle der berechnete A-bewertete Schalldruckpegel Abweichungen aufweist. In einer Entfernung von 100 Me- tern und einer H\u00f6he von 10 Metern \u00fcber dem Boden betr\u00e4gt die Abweichung etwa 1 dB. Bei gr\u00f6\u00dferen Entfernungen von etwa 1000 Metern oder niedrigeren H\u00f6hen kann eine Abweichung von etwa 3 dB auftreten. Diese Erkenntnisse verdeutlichen, dass die Messungen und Berechnungen von Schalldruckpegeln mit der Entfernung und der H\u00f6he variieren k\u00f6nnen und somit Einfluss auf die Genauigkeit der Ergebnisse haben. Die\n69\n7 Ergebnisse und Interpretation\ndurchschnittliche Standardabweichung, \u201ebei freier Schallausbreitung bei Mitwindwet- terlagen ohne Ber\u00fccksichtigung von Bewuchs- und Bebauungsd\u00e4mpfung\u201c [86] liegt bei der Untersuchung bei insgesamt 1,4 dB. Gem\u00e4\u00df der DIN ISO 9613-2 [85] variiert die Schalld\u00e4mpfung im Freien zwischen der Schallquelle und dem Empfangspunkt aufgrund der Witterungsbedingungen entlang der Ausbreitungsbahn. Bei Annahme einer leichten Windbedingung beschr\u00e4nken sich die Auswirkungen der schwankenden Witterungsbe- dingungen auf die D\u00e4mpfung auf ein akzeptables Ma\u00df. Die \u00dcbereinstimmung zwischen berechneten und gemessenen Werten zeigt, dass in einem Abstand von weniger als 100 Metern und einer H\u00f6he von weniger als 5 Metern eine Abweichung von 3 dB auftritt. Es ist jedoch wichtig zu beachten, dass die Sch\u00e4tzung nach DIN ISO 9613-2 auf Situationen beruht, in denen weder Reflexionen noch Abschirmungen auftreten.", + "embedding": [ + 0.006551392842084169, + 0.01997239701449871, + -0.0013557150959968567, + -0.031861353665590286, + -0.0023029933217912912, + 0.006836806423962116, + -0.011436231434345245, + -0.02009049989283085, + -0.024014119058847427, + -0.02989298477768898, + 0.007486368529498577, + 0.03826512023806572, + -0.00587886618450284, + 0.0043468177318573, + 0.002147163962945342, + 0.013325867243111134, + 0.026507386937737465, + 0.002780323149636388, + 0.027557184919714928, + -0.012039865367114544, + -0.008995452895760536, + 0.006013371516019106, + -0.028003348037600517, + -0.005770605523139238, + -0.021363379433751106, + 0.01465779822319746, + 0.02957804501056671, + -0.028843186795711517, + -0.021363379433751106, + -0.003470893017947674, + 0.002403052058070898, + -0.00732889911159873, + -0.018410824239253998, + 0.0035036990884691477, + -0.004596144892275333, + -0.011574017815291882, + -0.022688748314976692, + -0.017374148592352867, + 0.02595624327659607, + 0.002345641376450658, + 0.007243603002279997, + -0.0006967210792936385, + 0.013988551683723927, + -0.033016130328178406, + 0.0028771013021469116, + 0.012505712918937206, + 0.01278784591704607, + -0.00112771219573915, + -0.015392656438052654, + 0.027845878154039383, + 0.00965813733637333, + 0.002703228499740362, + -0.003154313424602151, + 0.006285662762820721, + -0.008634584955871105, + 0.014369103126227856, + 0.0014229677617549896, + 0.010740741156041622, + -0.0052719516679644585, + -0.0077947466634213924, + -0.043776556849479675, + -0.010058372281491756, + -0.019919907674193382, + 0.013516142964363098, + -0.03364600986242294, + -0.014067286625504494, + 0.0022505035158246756, + -0.0008205643971450627, + -0.014631552621722221, + 0.005367089994251728, + 0.029683025553822517, + 0.027347225695848465, + 0.002065148437395692, + 0.0028393741231411695, + 0.032307516783475876, + -0.003566030878573656, + 0.014001674018800259, + 0.0004912724252790213, + -0.011088485829532146, + 0.006502183154225349, + 0.02532636560499668, + -0.024512771517038345, + -0.021533971652388573, + 0.048211950808763504, + 0.00596088171005249, + 0.005445824470371008, + -0.023738546296954155, + 0.014487206004559994, + -0.012472907081246376, + -0.001415586331859231, + 0.0005548343760892749, + 0.03621801361441612, + 0.007223919034004211, + -0.004343537148088217, + 0.019290030002593994, + -0.009362882003188133, + 0.008962646126747131, + 0.02093033865094185, + 0.006889296229928732, + -0.024105975404381752, + -0.022190095856785774, + -0.019539356231689453, + 0.006981153506785631, + 0.011068802326917648, + -0.030759066343307495, + -0.008017828688025475, + 0.006147876847535372, + -0.0033888774923980236, + 0.005370370578020811, + -0.02847575768828392, + -0.03285866230726242, + 0.021310890093445778, + -0.01352926529943943, + 0.015550125390291214, + 0.01514332927763462, + 0.001917520770803094, + 0.008214665576815605, + -0.007171429228037596, + -0.018332088366150856, + -0.007473246194422245, + 0.027662163600325584, + 0.007387950085103512, + 0.03705785050988197, + -0.01824023202061653, + 0.029525555670261383, + 0.0017370868008583784, + -0.0017977782990783453, + -0.008706757798790932, + -0.025798773393034935, + 0.0011843028478324413, + -0.027609674260020256, + 0.012105477973818779, + 0.0229380764067173, + 0.009848413057625294, + -0.02215072698891163, + 0.018213987350463867, + -0.009638453833758831, + -0.007755379192531109, + -0.010392995551228523, + -0.013699857518076897, + 0.0053277225233614445, + 0.021074684336781502, + -0.03789769113063812, + -0.04159822687506676, + -0.00791941024363041, + 0.03254372254014015, + 0.01764972135424614, + 0.019119437783956528, + -0.0005413018516264856, + -0.018122129142284393, + -0.024722730740904808, + -0.028764452785253525, + -0.002601529471576214, + 0.004563338588923216, + -0.013476775959134102, + -0.004074526485055685, + -0.0015377893578261137, + 0.022190095856785774, + -0.00505543127655983, + -0.016389964148402214, + 0.001789576723240316, + 0.02344985119998455, + -0.0014647955540567636, + 0.005800131242722273, + 0.014998981729149818, + 0.005439263302832842, + 0.004878277890384197, + -0.017242923378944397, + -0.02028733678162098, + -0.02667797915637493, + -0.012610692530870438, + 0.02183578908443451, + 0.006128192879259586, + 0.015760084614157677, + -0.006777754984796047, + 0.0006495622219517827, + 0.01394918467849493, + -0.007702889386564493, + -0.030312903225421906, + -0.03955112025141716, + -0.026008732616901398, + 0.011134414933621883, + 0.00128436170052737, + 0.006390642374753952, + -0.028843186795711517, + 0.006607163231819868, + 0.012059548869729042, + 0.01984117366373539, + -0.009710626676678658, + -0.019670581445097923, + 0.012289192527532578, + 0.01661304570734501, + 0.022203218191862106, + -0.023502342402935028, + -0.6260992288589478, + -0.013647367246448994, + 0.008575533516705036, + 0.007866919972002506, + -0.0006327490555122495, + 0.0385013222694397, + 0.020313581451773643, + -0.007243603002279997, + 0.008109685964882374, + 0.052017465233802795, + 0.009028258733451366, + 0.0053277225233614445, + -0.011764293536543846, + 0.009015136398375034, + -0.0018207426182925701, + -0.02215072698891163, + -0.015930676832795143, + -0.011075363494455814, + 0.031782619655132294, + 0.0033790357410907745, + -0.022570647299289703, + 0.02009049989283085, + -0.006915540900081396, + 0.015287675894796848, + -0.007099255919456482, + 0.003671010723337531, + 0.01195456925779581, + -0.030365392565727234, + 0.00517025263980031, + -0.013384918682277203, + -0.025720039382576942, + 0.010891648940742016, + -0.01156089548021555, + 0.015865065157413483, + 0.042674269527196884, + -0.003707097377628088, + 0.004878277890384197, + 0.005347406025975943, + 0.005645942408591509, + 0.006078983657062054, + 0.006134754046797752, + 0.001575516420416534, + 0.007046765647828579, + -0.002288230461999774, + 0.007040204480290413, + 0.008851105347275734, + 0.043645333498716354, + -0.010576710104942322, + -0.01101631298661232, + -0.03768773004412651, + -0.0134046021848917, + -0.012794407084584236, + 0.014382226392626762, + 0.011705242097377777, + 0.023016810417175293, + -0.001076862565241754, + 0.04388153553009033, + -0.01578632928431034, + -0.015510758385062218, + 0.01667865738272667, + 0.004894680809229612, + 0.01253195758908987, + 0.0014196870615705848, + -0.014172266237437725, + -0.01598316803574562, + 0.013489898294210434, + 0.004950451198965311, + -0.03296364098787308, + 0.010097740218043327, + -0.016206249594688416, + -0.0083458898589015, + 0.0314151905477047, + -0.006220050156116486, + -0.03312111273407936, + 0.030890291556715965, + 0.020576031878590584, + 0.01514332927763462, + -0.014605307951569557, + 0.012617253698408604, + 0.030050454661250114, + 0.00139672274235636, + -0.0015320482198148966, + -0.005898549687117338, + 0.006298785097897053, + 0.02061539888381958, + -0.029420575127005577, + -0.012636937201023102, + 0.01062919944524765, + 0.017597230151295662, + 0.013056856580078602, + 0.031913843005895615, + 0.02414534240961075, + -0.018017150461673737, + -0.02171768620610237, + 0.0016911581624299288, + 0.028502002358436584, + -0.02603497914969921, + 0.019618090242147446, + 0.0003297020448371768, + -0.021875156089663506, + -0.036821648478507996, + 0.009152921847999096, + 0.018568294122815132, + -0.01461843028664589, + 0.020339826121926308, + -0.009494106285274029, + -0.017675966024398804, + -0.0007652039639651775, + 0.01674427092075348, + -0.013010927475988865, + 0.013220887631177902, + 0.000706152874045074, + -0.005360528361052275, + -0.015248308889567852, + -0.010734179988503456, + -0.022071992978453636, + 0.028711961582303047, + -0.00471752742305398, + 0.01629810594022274, + -0.013831081800162792, + 0.018843865022063255, + -0.0024555420968681574, + 0.03548315539956093, + -0.007748818024992943, + -0.028003348037600517, + 0.01970994845032692, + 0.02415846474468708, + 0.009704065509140491, + 0.011324690654873848, + -0.003272415604442358, + 0.007059888448566198, + 0.001712482189759612, + 0.028711961582303047, + -0.014303491450846195, + 0.01881762035191059, + 0.019985519349575043, + 0.015418901108205318, + -0.01888323202729225, + -0.003019808093085885, + -0.030102944001555443, + -0.03306862339377403, + -0.00814905297011137, + 0.0008131829672493041, + -0.043067943304777145, + -0.0078078689984977245, + -0.03897373378276825, + -0.01875200867652893, + 0.017754700034856796, + 0.018213987350463867, + -0.004002353176474571, + 0.003926898818463087, + -0.022373810410499573, + 0.0025424782652407885, + 0.025654425844550133, + -0.006082264240831137, + 0.009874657727777958, + 0.004911084193736315, + -0.018765131011605263, + 0.010734179988503456, + -0.028239553794264793, + 0.010911333374679089, + 0.02519514039158821, + -0.03991854935884476, + -0.011068802326917648, + 0.004858593922108412, + -0.01304373424500227, + 0.01900133490562439, + -0.0038809701800346375, + -0.017413515597581863, + -0.03768773004412651, + 0.009749994613230228, + 0.012217018753290176, + 0.003566030878573656, + 0.0065054637379944324, + -0.014251001179218292, + 0.00766352191567421, + -0.027006041258573532, + -0.015996290370821953, + -0.021415868774056435, + -0.012964999303221703, + 0.02434217929840088, + 0.006685897707939148, + -0.019565600901842117, + 0.004179506562650204, + 0.023148035630583763, + 0.028265798464417458, + 0.013194642961025238, + 0.0014467522269114852, + -0.009356319904327393, + 0.04291047155857086, + -0.010012444108724594, + 0.02923686057329178, + -0.005895269103348255, + 0.007689766585826874, + -0.023620443418622017, + 0.007643837947398424, + 0.009231656789779663, + -0.027845878154039383, + -0.001003048731945455, + 0.030942780897021294, + 0.03351478651165962, + 0.01039955671876669, + 0.02461775206029415, + -0.016888616606593132, + 0.013194642961025238, + -0.014001674018800259, + 0.014277245849370956, + 0.007132061757147312, + 0.03873752802610397, + 0.03582433983683586, + 0.023410484194755554, + -0.01320776529610157, + -0.01327337697148323, + -0.0010374952107667923, + -0.004865155555307865, + 0.0371103435754776, + -0.011895517818629742, + -0.00018279188952874392, + 0.01390981674194336, + 0.007978460751473904, + -3.921362804248929e-05, + -0.0051866560243070126, + 0.03994479402899742, + 0.005816534161567688, + -0.008129369467496872, + 0.005872305016964674, + -0.0068696122616529465, + 0.00683024525642395, + 0.010812913998961449, + -0.012262946926057339, + -0.010156790725886822, + -0.004802823532372713, + 0.02377791330218315, + 0.00814905297011137, + 0.0032855381723493338, + 0.011449353769421577, + 0.016914863139390945, + -0.012164528481662273, + 0.0385013222694397, + 0.013581755571067333, + 0.015497636049985886, + 0.012118600308895111, + 0.0008304062648676336, + 0.0004441135679371655, + 0.011895517818629742, + -0.013260254636406898, + 0.014395348727703094, + 0.03490576893091202, + -0.008247471414506435, + -0.021743930876255035, + 0.00355946971103549, + 0.0009407170000486076, + -0.005718115717172623, + -0.013804837130010128, + 0.018122129142284393, + -0.017019841820001602, + 0.027425959706306458, + -0.02221634052693844, + 0.004008914344012737, + 0.008359013125300407, + 0.005032466724514961, + 0.031283967196941376, + 0.014146021567285061, + -0.015287675894796848, + 0.003447928698733449, + 0.00931039173156023, + -0.030444128438830376, + -0.016311228275299072, + -0.002572003984823823, + -0.011639629490673542, + 0.013004366308450699, + -0.0011391943553462625, + -0.0004961933591403067, + 0.009421932511031628, + 0.017833435907959938, + -0.007584786973893642, + -0.007525736000388861, + 0.019145682454109192, + 0.031913843005895615, + 0.0035955565981566906, + -0.016140636056661606, + -0.0273209810256958, + 0.020917216315865517, + 0.0264811422675848, + -0.010478291660547256, + -0.011777415871620178, + -0.005416299216449261, + 0.012052987702190876, + -0.020444806665182114, + -0.013988551683723927, + -0.013516142964363098, + -0.0031034639105200768, + -0.016468698158860207, + -0.01887010969221592, + 0.017689088359475136, + 0.007781623862683773, + 0.01245978381484747, + 0.002514593070372939, + -0.014185388572514057, + 0.029866740107536316, + 0.0038514446932822466, + -0.02776714414358139, + -0.011206588707864285, + -0.04012851044535637, + 0.019618090242147446, + -0.00047076857299543917, + -0.02152084931731224, + -0.0258250180631876, + 0.002426016377285123, + -0.0046158283948898315, + -0.027478449046611786, + 0.011711803264915943, + -0.00799158401787281, + 0.008706757798790932, + 0.0019978960044682026, + 0.009441616013646126, + -0.002555600833147764, + -0.004225435201078653, + 0.036375485360622406, + -0.0026474581100046635, + -0.010898210108280182, + -0.007945654913783073, + 0.005504875909537077, + 0.00508823711425066, + -0.010038688778877258, + 0.00840494129806757, + 0.013516142964363098, + 0.01642933115363121, + -0.009002014063298702, + -0.01195456925779581, + -0.011843028478324413, + -0.012157967314124107, + 0.017531618475914, + 0.026376161724328995, + 0.009605647064745426, + -0.009441616013646126, + 0.035719361156225204, + -0.00686305109411478, + -0.0015837179962545633, + -0.0044747618958354, + 0.028948167338967323, + -0.006003529764711857, + 0.01629810594022274, + 0.010301138274371624, + -0.01050453633069992, + -0.004202470649033785, + -0.003972827456891537, + 0.036165524274110794, + -0.01713794469833374, + -0.01591755449771881, + 0.01047173049300909, + 0.026979796588420868, + 0.013430846855044365, + -0.019788682460784912, + -0.012341681867837906, + 0.04104708135128021, + 0.0010817835573107004, + 0.021927645429968834, + -0.014027919620275497, + 0.0003908035287167877, + 0.007696328219026327, + -0.005449105054140091, + 0.02112717553973198, + -0.010452046059072018, + 0.00405812356621027, + 0.03296364098787308, + 0.026441775262355804, + 0.007046765647828579, + 0.019814928993582726, + -0.004494445398449898, + -0.00811624713242054, + 0.02661236748099327, + 0.003090341342613101, + -0.015261431224644184, + -0.012492590583860874, + -0.018069639801979065, + -0.002693386748433113, + -0.013634244911372662, + -0.009323514066636562, + -0.018581416457891464, + -0.0025769248604774475, + -0.028895676136016846, + -0.005370370578020811, + -0.011639629490673542, + -0.03658544272184372, + -0.022596891969442368, + 0.017177311703562737, + -0.009507228620350361, + -0.0482906848192215, + -0.01188239548355341, + -0.014592185616493225, + 0.0036283626686781645, + -0.023594198748469353, + 0.01590443216264248, + 0.0019831331446766853, + -0.011068802326917648, + -0.03532568737864494, + -0.0060002487152814865, + 0.011462477035820484, + -0.009677820838987827, + 0.012066110037267208, + -0.005672187078744173, + -0.018647028133273125, + -0.0025506799574941397, + -0.0266648568212986, + -0.007250164169818163, + -0.011980813927948475, + -0.02093033865094185, + -0.018856987357139587, + 0.019683703780174255, + -0.02030045911669731, + 0.005258829332888126, + 0.001597660593688488, + 0.0009079108131118119, + 0.0017944975988939404, + 0.010766985826194286, + -0.0022537840995937586, + 0.00824091024696827, + 0.01946062222123146, + 0.022977443411946297, + 0.009015136398375034, + 0.009323514066636562, + 0.018437068909406662, + -0.016796760261058807, + 0.020116744562983513, + -0.026139957830309868, + -0.010445484891533852, + -0.0038547252770513296, + 0.013988551683723927, + 0.0020946741569787264, + -0.019171927124261856, + 0.011265639215707779, + 0.004960293415933847, + 0.01262381486594677, + 0.006804000120609999, + -0.0173872709274292, + 0.012794407084584236, + 0.005580329801887274, + 0.0002847985888365656, + -0.000856241094879806, + 0.015930676832795143, + 0.011908640153706074, + 0.015051472000777721, + -0.0008037512307055295, + -0.007138622924685478, + -0.022793728858232498, + 0.050337791442871094, + -0.0038612864445894957, + -0.00965813733637333, + 0.035063236951828, + -0.020116744562983513, + -0.00037111982237547636, + -0.031126495450735092, + 0.00468472158536315, + 0.023357994854450226, + 0.01188239548355341, + 0.014998981729149818, + -0.01269598864018917, + -0.021048439666628838, + -0.00471752742305398, + 0.0034085612278431654, + 0.021743930876255035, + -0.02923686057329178, + -0.0018109007505699992, + -0.011409986764192581, + 0.015760084614157677, + -0.009973076172173023, + 0.01092445570975542, + 0.012991243973374367, + -0.02718975581228733, + -0.025273874402046204, + 0.02705853059887886, + -0.005229304078966379, + 0.02442091517150402, + -0.019093193113803864, + 0.0011777415638789535, + -0.032438743859529495, + -0.011613384820520878, + -0.00982216838747263, + -0.0224262997508049, + -0.011508405208587646, + -0.016153758391737938, + 0.006269259378314018, + 0.029551800340414047, + 0.02763591893017292, + 0.0053244419395923615, + 0.0069352248683571815, + 0.011357496492564678, + -0.008463992737233639, + 0.008431185968220234, + -0.010727617889642715, + -0.006403764709830284, + -0.01682300493121147, + 0.022439422085881233, + 0.008752686902880669, + -0.0016960791544988751, + -0.0031772777438163757, + 0.007210796698927879, + 0.01713794469833374, + 0.04637480527162552, + -0.014985859394073486, + -0.019040701910853386, + -0.014670920558273792, + -0.0010547183919698, + 0.008713318966329098, + -0.010058372281491756, + 0.027845878154039383, + 0.025077037513256073, + -0.010189597494900227, + 0.00032457607449032366, + 0.011364057660102844, + -0.013148713856935501, + -0.018056517466902733, + 0.010137107223272324, + 0.006069141905754805, + -0.04154573753476143, + 0.017151067033410072, + 0.013286500237882137, + 0.008096563629806042, + -0.017702210694551468, + -0.010786669328808784, + -0.030181678012013435, + -0.04078463464975357, + 0.01919817179441452, + -0.0062102084048092365, + 0.00546222785487771, + -0.003917057067155838, + 0.0026064503472298384, + -0.01088508777320385, + -0.010406117886304855, + 0.023686056956648827, + -0.008247471414506435, + -0.00798502191901207, + -0.02628430537879467, + -0.012807529419660568, + -0.019933030009269714, + 0.010465169325470924, + -0.013503020629286766, + 0.010662006214261055, + 0.015169573947787285, + 0.0022160569205880165, + 0.020589154213666916, + -0.012157967314124107, + 0.007965338416397572, + 0.01179053820669651, + 0.008785492740571499, + 0.021560216322541237, + 0.005813253577798605, + 0.04516753926873207, + 0.021862033754587173, + -0.02949931100010872, + -0.02595624327659607, + -0.049576688557863235, + 0.006177402101457119, + -0.022793728858232498, + 0.027006041258573532, + 0.02137650176882744, + -0.02603497914969921, + 0.0014672561082988977, + 0.01101631298661232, + 0.006636688485741615, + -0.0062069278210401535, + -0.015090839006006718, + 0.0341184176504612, + 0.014132899232208729, + -0.015563247725367546, + -0.01964433677494526, + 0.002363684820011258, + -0.023594198748469353, + 0.015090839006006718, + 0.0007471605786122382, + -0.013417724519968033, + -0.012433539144694805, + -0.0053244419395923615, + 0.0039006539154797792, + 0.03671666979789734, + 0.024972058832645416, + 0.014841512776911259, + 0.02287246286869049, + -0.020956583321094513, + 0.008778931573033333, + -0.01944749802350998, + -0.030522862449288368, + 0.019053824245929718, + -0.015090839006006718, + 0.04781827703118324, + 0.003336387686431408, + -0.020589154213666916, + -0.00281148892827332, + 0.0015681349905207753, + -0.008162175305187702, + -0.002908267080783844, + -0.004878277890384197, + 0.02267562597990036, + -0.007171429228037596, + -0.0015468110796064138, + 0.0004461639327928424, + -0.0009308751323260367, + 0.002990282606333494, + 0.012197335250675678, + -0.0039039344992488623, + -0.022268829867243767, + 0.0011514966608956456, + -0.006170840933918953, + 0.003239609533920884, + 0.016416208818554878, + -0.013712979853153229, + -0.014106654562056065, + -0.019736193120479584, + -0.01570759527385235, + -0.00014198922144714743, + -0.01932939700782299, + 0.012604131363332272, + -0.024210955947637558, + -0.010445484891533852, + 0.005422860383987427, + 0.0005827196291647851, + 0.03600805625319481, + 1.3340322766453028e-05, + -0.026782959699630737, + -0.002373526571318507, + 0.020064255222678185, + -0.04167696088552475, + 0.011324690654873848, + 0.04348786175251007, + -0.007348582614213228, + -0.014408471062779427, + -0.013345550745725632, + 0.007020520977675915, + -0.01443471573293209, + 0.021494604647159576, + -0.013010927475988865, + -0.014605307951569557, + -0.009120116010308266, + -0.0003852674853987992, + 0.028449513018131256, + -0.032832417637109756, + -0.011462477035820484, + 0.0084377471357584, + 0.009179167449474335, + -0.006610443815588951, + -0.012709110975265503, + 0.003677571890875697, + -0.003690694458782673, + 0.029289349913597107, + -0.01088508777320385, + 0.028003348037600517, + -0.006033055018633604, + 0.017728455364704132, + 0.024210955947637558, + -0.022255707532167435, + 0.007584786973893642, + -0.020274214446544647, + -0.02396162785589695, + 0.020969705656170845, + 0.017032964155077934, + -0.031730130314826965, + -0.02274123951792717, + -0.037530262023210526, + -0.01726916991174221, + 0.0021520848385989666, + 0.008811738342046738, + 0.003259293269366026, + 0.010320821776986122, + 0.015576370991766453, + 0.0020749904215335846, + -0.012262946926057339, + 0.030522862449288368, + 0.0019831331446766853, + -0.010635760612785816, + 0.03215004876255989, + -0.00023948505986481905, + -0.03149392455816269, + 0.007670083083212376, + -0.017164189368486404, + 0.04062716290354729, + 0.02440779283642769, + -0.003844883292913437, + -0.005882146768271923, + -0.0013737584231421351, + -0.03201882541179657, + -0.026586122810840607, + -0.01423787884414196, + 0.002393210306763649, + -0.010392995551228523, + 0.0067252651788294315, + -0.010025566443800926, + 0.04800198972225189, + 0.0020044571720063686, + 0.021074684336781502, + -0.01221045758575201, + -0.027268489822745323, + -0.012315437197685242, + 0.015353288501501083, + 0.028974412009119987, + -0.018594538792967796, + -0.03960360959172249, + -0.005445824470371008, + 0.039839815348386765, + -0.0035036990884691477, + 0.019762437790632248, + 0.011777415871620178, + -0.0067187040112912655, + -0.0268092043697834, + 0.023528587073087692, + 0.009671259671449661, + 0.03380348160862923, + -0.009710626676678658, + -0.011993936263024807, + -0.01085228193551302, + 0.0006024033646099269, + 0.002160286530852318, + -0.005577049218118191, + -0.016573678702116013, + -0.011974252760410309, + 0.024827711284160614, + -0.00641032587736845, + -0.013778592459857464, + 0.010117423720657825, + -0.01394918467849493, + -0.0053375642746686935, + -0.017938414588570595, + 0.025523202493786812, + 0.013962307013571262, + -0.036375485360622406, + 0.015891309827566147, + 0.013063417747616768, + -0.0065579540096223354, + -0.03800266981124878, + 0.0035463471431285143, + -0.016967352479696274, + 0.004628950729966164, + -0.0010366750648245215, + -0.015589493326842785, + 0.004635512363165617, + -0.016022535040974617, + 0.016455575823783875, + -0.0018240232020616531, + -0.0058493404649198055, + -0.026271183043718338, + -0.030680332332849503, + -0.043382883071899414, + 0.03511572629213333, + 0.02949931100010872, + -0.019145682454109192, + 0.017229801043868065, + -0.00513744680210948, + -0.005895269103348255, + -0.008450870402157307, + -0.023686056956648827, + 0.0086017781868577, + -0.033383559435606, + -0.005193217191845179, + -0.0020487455185502768, + -0.022137604653835297, + 0.010465169325470924, + -0.007256725337356329, + -0.009480983950197697, + -0.029919229447841644, + -0.012846897356212139, + 0.17783570289611816, + -0.03264870122075081, + -0.013391479849815369, + 0.018909478560090065, + -0.026179324835538864, + -0.03364600986242294, + 0.014264123514294624, + -0.002895144745707512, + 0.0074404398910701275, + 0.02918437123298645, + 0.010806352831423283, + 0.004789701197296381, + 0.021087806671857834, + 0.007191113196313381, + 0.019408131018280983, + -0.007387950085103512, + -0.03117898665368557, + -0.007709450554102659, + 0.012472907081246376, + 0.01881762035191059, + 0.00943505484610796, + -0.027032285928726196, + -0.022623136639595032, + -0.017046086490154266, + 0.04768705368041992, + 0.01452657300978899, + 0.008555850014090538, + 0.01432973612099886, + 0.03480078652501106, + 0.01108192466199398, + -0.02539197728037834, + -0.009651576168835163, + 0.00965813733637333, + -0.0022931513376533985, + -0.012217018753290176, + -0.005386773496866226, + 0.01675739325582981, + -0.01713794469833374, + 0.01964433677494526, + 0.02821330912411213, + 0.014552817679941654, + -0.018581416457891464, + -0.006777754984796047, + -0.039971038699150085, + 0.0009070906671695411, + 0.0320713147521019, + 0.004336975980550051, + 0.0053408448584377766, + 0.008910156786441803, + 0.004701124504208565, + -0.002035622950643301, + 0.014395348727703094, + 0.007059888448566198, + 0.026258060708642006, + -0.007781623862683773, + -0.017111700028181076, + 0.013699857518076897, + -0.023791035637259483, + 0.01642933115363121, + 0.002473585307598114, + -0.033383559435606, + 0.003926898818463087, + -0.011659313924610615, + 0.02300368808209896, + -0.04078463464975357, + -0.007217357866466045, + -0.02860698290169239, + 0.008470553904771805, + -0.010747302323579788, + -0.03285866230726242, + -0.003552908543497324, + -0.022465666756033897, + -0.038238875567913055, + 0.012426977977156639, + -0.030942780897021294, + -0.03427588939666748, + 0.006994275841861963, + 0.015746962279081345, + 0.024591507390141487, + 0.023148035630583763, + 0.0022012940607964993, + 0.008726442232728004, + -0.022308196872472763, + -0.014487206004559994, + -0.0027786828577518463, + -0.02460462972521782, + 0.020064255222678185, + 0.0014746374217793345, + 0.02493269182741642, + -0.021809542551636696, + -0.022911829873919487, + 0.005642661824822426, + 0.0016173443291336298, + -0.011633068323135376, + 0.02384352684020996, + -0.0009899262804538012, + 0.024079730734229088, + -0.01159370131790638, + -0.01085228193551302, + -0.00814905297011137, + -0.009684382006525993, + 0.06288287043571472, + 0.04490508884191513, + -0.0059936875477433205, + -0.01636371947824955, + -0.002478506416082382, + 0.0038776895962655544, + 0.016271861270070076, + -0.014342858456075191, + 0.01255820319056511, + -0.019539356231689453, + -0.047240886837244034, + 0.01494649238884449, + -0.018830742686986923, + 0.015615737996995449, + 0.02763591893017292, + 0.008864227682352066, + 0.009697504341602325, + -0.004701124504208565, + -0.001070301397703588, + -0.018069639801979065, + 0.0013220887631177902, + 0.02577252872288227, + -0.0036185209173709154, + 0.007000837009400129, + -0.03220253810286522, + -0.040994592010974884, + 0.02673046849668026, + -0.013608000241219997, + -0.0011465756688266993, + 0.019106315448880196, + -0.002750797662883997, + 0.026769837364554405, + 0.0030444127041846514, + 0.012039865367114544, + -0.007204235531389713, + -0.007040204480290413, + -0.04369782283902168, + -0.023266136646270752, + -0.010904771275818348, + 0.03396094962954521, + 0.012781284749507904, + 0.007853797636926174, + 0.02035294845700264, + 0.02377791330218315, + 0.010937578044831753, + 0.023594198748469353, + -0.0012048067292198539, + -0.02178329788148403, + -0.007873481139540672, + -0.014342858456075191, + -0.006987714674323797, + 0.000766844255849719, + -0.014998981729149818, + 0.027609674260020256, + 0.014605307951569557, + -0.027425959706306458, + -0.023948505520820618, + 0.017859680578112602, + 0.014513450674712658, + -0.028318287804722786, + -0.017479129135608673, + -0.002655659569427371, + -0.028816942125558853, + 0.003910495899617672, + -0.008457431569695473, + -0.16460825502872467, + 0.005285074468702078, + 0.012315437197685242, + -0.02203262597322464, + 0.016849249601364136, + 0.001638668356463313, + 0.014119776897132397, + 0.009513789787888527, + -0.033199846744537354, + -0.0029099073726683855, + 0.025142651051282883, + -0.0028295323718339205, + 0.006325030233711004, + -0.013962307013571262, + -0.0026474581100046635, + 0.00579685065895319, + -0.016731148585677147, + 0.02356795407831669, + 0.0266648568212986, + 0.017741577699780464, + 0.005819814745336771, + -0.030129188671708107, + 0.021796420216560364, + 0.0015353289199993014, + 0.0006573536666110158, + 0.011364057660102844, + -0.025929998606443405, + 0.024722730740904808, + -0.018843865022063255, + -0.013083101250231266, + -0.02455213852226734, + 0.00808344129472971, + 0.007637276779860258, + -0.013712979853153229, + -0.006469377316534519, + -0.0187388863414526, + -0.0068761738948524, + -0.008883911184966564, + -0.0055475239641964436, + 0.03729405626654625, + 0.007584786973893642, + 0.0300242081284523, + -0.0066202855668962, + 0.01207923237234354, + 0.00484547158703208, + 0.028239553794264793, + 0.01797778159379959, + -0.01809588447213173, + -0.0020569469779729843, + -0.015300799161195755, + 0.00940224900841713, + -0.0031001833267509937, + -0.009244779124855995, + 0.00021303507674019784, + -0.013253693468868732, + 0.04128328710794449, + -0.01629810594022274, + 0.020497296005487442, + 0.010839159600436687, + -0.012650060467422009, + 0.00484547158703208, + -0.01881762035191059, + 0.009900902397930622, + -0.01532704383134842, + -0.013673612847924232, + -0.032307516783475876, + -0.011324690654873848, + 0.023974750190973282, + -0.024066608399152756, + -0.005754202604293823, + -0.008135930635035038, + -0.047188397496938705, + 0.008076879195868969, + -0.013371795415878296, + 0.011514966376125813, + 0.016468698158860207, + -0.009349758736789227, + -0.005239145830273628, + -0.010701373219490051, + -0.00988778006285429, + -0.009015136398375034, + 0.04414398595690727, + -0.010452046059072018, + -0.005613136105239391, + -0.022124482318758965, + -0.008759248070418835, + -0.005157130304723978, + 0.037136588245630264, + -0.010648883879184723, + 0.010452046059072018, + 0.010970383882522583, + -0.013896694406867027, + -0.01656055636703968, + -0.029420575127005577, + 0.007847236469388008, + -0.016468698158860207, + 6.474093243014067e-05, + 2.2169795556692407e-05, + -0.01900133490562439, + -0.007834114134311676, + -0.0020175795070827007, + -0.023226769641041756, + -0.026244938373565674, + 0.018069639801979065, + -0.003920337650924921, + -0.008109685964882374, + -0.038422588258981705, + 0.009467861615121365, + 0.030444128438830376, + -0.010156790725886822, + -0.014054164290428162, + 0.004081087652593851, + 0.01764972135424614, + -0.010635760612785816, + -0.021245276555418968, + -0.0018584696808829904, + -0.014106654562056065, + -0.016783637925982475, + 0.018791375681757927, + -0.008483676239848137, + 0.04642729461193085, + -0.004008914344012737, + -0.023161157965660095, + 0.01648182049393654, + -0.007394511252641678, + -0.02086472511291504, + -0.09721124917268753, + -0.007604470942169428, + 0.027425959706306458, + 0.03091653622686863, + 0.01791216991841793, + 0.012676305137574673, + 0.008017828688025475, + -0.007020520977675915, + 0.0133324284106493, + 0.03485327586531639, + -0.026756715029478073, + -0.020064255222678185, + -0.022531278431415558, + -0.012249824590981007, + 0.010281454771757126, + -0.008870788849890232, + -0.0037235005293041468, + -0.022386932745575905, + -0.01255820319056511, + 0.027793388813734055, + -0.0010309339268133044, + -0.0034840155858546495, + -0.0182271096855402, + 0.006341433152556419, + -0.018253354355692863, + -0.0007717651897110045, + -0.035456910729408264, + 0.003690694458782673, + 0.01939500868320465, + 0.002434218069538474, + 0.02852824702858925, + -0.0180433951318264, + 0.007912849076092243, + -0.005212900694459677, + -0.022767484188079834, + -0.009572841227054596, + -0.027137266471982002, + -0.017833435907959938, + 0.021875156089663506, + -0.015287675894796848, + -0.007873481139540672, + 0.012407294474542141, + -0.0024899884592741728, + -0.00963189173489809, + -0.01810900680720806, + -0.018279599025845528, + -0.006108509376645088, + 0.022505033761262894, + -0.007394511252641678, + -0.0034118418116122484, + -0.03367225453257561, + -0.027425959706306458, + -0.012066110037267208, + 0.03340980410575867, + 0.025995610281825066, + -0.0008824860560707748, + -0.0025326365139335394, + -0.016193127259612083, + -0.0043993075378239155, + 0.008299961686134338, + -0.021809542551636696, + 0.028108328580856323, + -0.02724224515259266, + 0.03201882541179657, + -0.012000497430562973, + 0.003006685758009553, + -0.011495282873511314, + -0.014093531295657158, + 0.023554831743240356, + -0.00014383456436917186, + -0.013831081800162792, + 0.00711893942207098, + 0.005317880306392908, + 0.018397701904177666, + -0.03306862339377403, + -0.0008660829626023769, + -0.05204370990395546, + -0.01680988259613514, + -0.009271024726331234, + -0.011062241159379482, + -0.006758071482181549, + -0.026638612151145935, + 0.007538858335465193, + -0.0026638612616807222, + 0.037320300936698914, + 0.02320052497088909, + 0.003815357806161046, + -0.029551800340414047, + 0.022308196872472763, + 0.0012343322159722447, + -0.017164189368486404, + 0.007696328219026327, + 0.021665196865797043, + -0.002099595032632351, + -0.04007602110505104, + 0.01213828381150961, + 0.008523043245077133, + -0.009572841227054596, + -0.00562297785654664, + 0.004028597846627235, + -0.02415846474468708, + -0.0054786307737231255, + -0.039393652230501175, + 0.02944681979715824, + 0.02873820625245571, + 0.006758071482181549, + -0.0025539605412632227, + 0.010123984888195992, + -0.0021488042548298836, + 0.016731148585677147, + 0.004589583724737167, + 0.0031526731327176094, + -0.017216678708791733, + 0.0035463471431285143, + -0.020956583321094513, + -0.0017452883766964078, + -0.026402408257126808, + -0.03396094962954521, + -0.0009882859885692596, + 0.024840833619236946, + 0.004566619172692299, + -0.0011506765149533749, + -0.006131473463028669, + 0.003131349105387926, + -0.0015828978503122926, + 0.02646801993250847, + -0.029026901349425316, + -0.020628521218895912, + -0.011646191589534283, + -0.0023653251118957996, + 0.005304757971316576, + -0.0045108487829566, + 0.0021898120176047087, + -0.0064201680943369865, + -0.016586801037192345, + 0.017361026257276535, + -0.006436571013182402, + -0.02221634052693844, + 0.020694132894277573, + 0.030627842992544174, + 0.023594198748469353, + 0.03676915913820267, + -0.011364057660102844, + -0.02583814039826393, + 0.006902418565005064, + -0.020510418340563774, + 0.004546935670077801, + 0.01249915175139904, + 0.000816463609226048, + 0.007958777248859406, + 0.009704065509140491, + -0.005012783221900463, + 0.043382883071899414, + 0.0015107241924852133, + 0.007197674363851547, + -0.02119278721511364, + -0.0008041613036766648, + -0.0019142401870340109, + 0.013220887631177902, + 0.003073938423767686, + 0.03183510899543762, + -0.03125772252678871, + 0.052279915660619736, + -0.003077219007536769, + 0.012768162414431572, + -0.019342519342899323, + 0.007177990395575762, + -0.007781623862683773, + -0.03304237499833107, + 0.008162175305187702, + -0.00043960270704701543, + -0.006981153506785631, + -0.018187742680311203, + -0.005590171553194523, + 0.021953890100121498, + 0.01829272136092186, + -0.007466685026884079, + -0.010878526605665684, + 0.013476775959134102, + 0.017439762130379677, + 0.003131349105387926, + 0.009349758736789227, + 0.030522862449288368, + 0.0010186316212639213, + 0.0036086789332330227, + -0.009559718891978264, + 0.0214421134442091, + 0.009572841227054596, + -0.023659812286496162, + 0.0021389625035226345, + -0.007775062695145607, + -0.011272200383245945, + -0.011022874154150486, + 0.027399715036153793, + -0.005229304078966379, + 0.017046086490154266, + 0.018148373812437057, + 0.023856649175286293, + 0.006246295291930437, + -0.011521527543663979, + 0.020392317324876785, + 0.05023281276226044, + -0.001272059278562665, + 0.006223330739885569, + -0.013896694406867027, + -0.019224416464567184, + -0.010248648002743721, + 0.011095047928392887, + -0.0035233828239142895, + -0.0411258190870285, + 0.027793388813734055, + 0.023108668625354767, + -0.008673951961100101, + 0.019355641677975655, + 0.005039027892053127, + 0.0017600511200726032, + -0.004199190065264702, + 0.01381795946508646, + -0.017019841820001602, + -0.011816782876849174, + -0.02834453247487545, + 0.02369917929172516, + 0.010753863491117954, + 0.006370958872139454, + 0.0007639737450517714, + 0.012394172139465809, + 0.015051472000777721, + -0.011567456647753716, + 0.035010747611522675, + -0.01675739325582981, + 0.009841851890087128, + -0.008673951961100101, + 0.0020372632425278425, + -0.013568633235991001, + -0.029131881892681122, + -0.016245616599917412, + -0.013647367246448994, + -0.00737482775002718, + 0.0268092043697834, + 0.0007693047518841922, + 0.007401072420179844, + 0.13038484752178192, + 0.01514332927763462, + -0.005022624973207712, + 0.02480146661400795, + -0.005603294353932142, + 0.01153464987874031, + 0.002478506416082382, + -0.0018896355759352446, + -0.003569311462342739, + -0.07474558055400848, + 0.012472907081246376, + -0.01583882048726082, + 0.009612208232283592, + -0.02287246286869049, + -0.008122808299958706, + 0.02138962410390377, + 0.001629646634683013, + 0.014789022505283356, + -0.025615058839321136, + 0.004786420613527298, + 0.04401276260614395, + -0.017032964155077934, + 0.003684133058413863, + 0.04012851044535637, + -0.013516142964363098, + -0.01796465925872326, + 0.016599923372268677, + 0.0069221025332808495, + 0.015956921502947807, + -0.013430846855044365, + 0.002066788962110877, + 0.014342858456075191, + -0.05212244763970375, + -0.02114029787480831, + -0.0008234349079430103, + -0.01776782236993313, + 0.0003340078401379287, + -0.01494649238884449, + 0.011357496492564678, + -0.0040318784303963184, + 0.03317360207438469, + 0.03167764097452164, + -0.013069978915154934, + -0.016061902046203613, + 0.003336387686431408, + -0.005212900694459677, + -0.002406332641839981, + -0.0074470010586082935, + -0.01695423014461994 + ], + "metadata": { + "source": "Thesis_Verladegeraeusche_in_Speditionen.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 41, + "has_images": true, + "image_count": 51, + "coordinates": "CoordinatesMetadata(points=((204.16666666666666, 189.02777777777797), (204.16666666666666, 642.3611111111111), (936.1666666666666, 642.3611111111111), (936.1666666666666, 189.02777777777797)), system=)", + "links": [], + "last_modified": "2025-05-05T22:59:16", + "_known_field_names": "frozenset({'cc_recipient', 'link_texts', 'url', 'filetype', 'category_depth', 'page_number', 'filename', 'orig_elements', 'detection_origin', 'email_message_id', 'page_name', 'coordinates', 'table_as_cells', 'link_start_indexes', 'sent_to', 'bcc_recipient', 'languages', 'last_modified', 'link_urls', 'file_directory', 'subject', 'data_source', 'detection_class_prob', 'image_base64', 'text_as_html', 'attached_to_filename', 'key_value_pairs', 'signature', 'sent_from', 'header_footer_type', 'parent_id', 'links', 'emphasized_text_contents', 'emphasized_text_tags', 'image_mime_type', 'is_continuation', 'image_path'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "Thesis_Verladegeraeusche_in_Speditionen.pdf", + "detection_class_prob": 0.2568194270133972, + "parent_id": "d45475a34bc527cde6987546fa6dd2f5", + "text_as_html": "
Flurf\u00f6rderger\u00e4t |Anzahl Einzelereignisse ElMax-PegelSchallleistungspegel
LAFmaxLWA,5sLWAmaxLWA,1hKlLWAT,1h
[dB(A)][dB(A)][dB(A)][dB(A)][dB(A)][dB(A)]
Gabelstapler29769,3100,7108,872,15,777,8
STABW [dB]6,54,96,54,92,9-
Gabelhubwagen9968,6100,7108,172,16,279,5
STABW [dB]6,45,16,4512,7-
", + "id": "5ba44de7-0ff3-4c0c-b018-67e92171e1c2", + "processing_timestamp": "2025-05-06T14:18:19.298665", + "chunk_number": 34, + "total_chunks": 49, + "chunking_strategy": "hybrid", + "word_count": 549 + } +} \ No newline at end of file diff --git a/data/processed/85fd305f-83de-70b0-47e8-2dc000000035.json b/data/processed/85fd305f-83de-70b0-47e8-2dc000000035.json new file mode 100644 index 0000000000000000000000000000000000000000..dd7df0a7a9bf91355fe9ee07f2ac91b86cfa79eb --- /dev/null +++ b/data/processed/85fd305f-83de-70b0-47e8-2dc000000035.json @@ -0,0 +1,1570 @@ +{ + "id": "85fd305f-83de-70b0-47e8-2dc000000035", + "content": "Die \u00dcbereinstimmung zwischen berechneten und gemessenen Werten zeigt, dass in einem Abstand von weniger als 100 Metern und einer H\u00f6he von weniger als 5 Metern eine Abweichung von 3 dB auftritt. Es ist jedoch wichtig zu beachten, dass die Sch\u00e4tzung nach DIN ISO 9613-2 auf Situationen beruht, in denen weder Reflexionen noch Abschirmungen auftreten. Unter Ber\u00fccksichtigung der Erkenntnisse der VDI 2714 [86] und DIN ISO 9613-2 [85] las- sen sich Abweichungen bei der Berechnung von Schalldruckpegeln feststellen, insbeson- dere bei freier Schallausbreitung und -abh\u00e4ngig von der Entfernung und H\u00f6he. Die Vali- dierungsergebnisse zeigen, dass eine durchschnittliche Differenz von etwa 4,6 dB(A) zwi- schen den simulierten Beurteilungspegeln und den gemessenen Werten besteht. Da der durchschnittliche Abstand des Messpunktes zur Quelle ungef\u00e4hr 40 Meter bei einer H\u00f6he von unter 5 Metern betr\u00e4gt, l\u00e4sst sich daraus schlie\u00dfen, dass die simulierten Be- urteilungspegel im Vergleich zu den gemessenen Werten im akzeptablen Bereich liegen. Es ist zu beachten, dass die Abweichungen nicht allein durch den Abstand erkl\u00e4rt werden k\u00f6nnen, sondern auch von anderen Faktoren wie der Umgebung, der Ausbreitungsrich- tung und m\u00f6glichen Absorptionseffekten. Bei der Bewertung der Schallpegelberechnun- gen sollten daher weitere Einflussfaktoren ber\u00fccksichtigt werden, um eine m\u00f6glichst genaue Einsch\u00e4tzung der tats\u00e4chlichen L\u00e4rmemissionen zu erhalten. ## 7.5 M\u00f6gliche Minderungsma\u00dfnahmen\n\nIm Folgenden werden verschiedene L\u00e4rm-Minderungsma\u00dfnahmen beschrieben, die dazu dienen, die L\u00e4rmbelastung in Speditionen und w\u00e4hrend des Verladeprozesses zu reduzieren. L\u00e4rm stellt ein erhebliches gesundheitliches Problem dar und kann zu Beein- tr\u00e4chtigungen der Mitarbeiter sowie der Umgebung f\u00fchren. Daher ist es von gro\u00dfer Be- deutung, geeignete Ma\u00dfnahmen zu ergreifen, um den L\u00e4rmpegel zu minimieren und ein angenehmes Klima zu schaffen. In diesem Kapitel werden verschiedene Ans\u00e4tze und\n70\n7 Ergebnisse und Interpretation\nStrategien vorgestellt, die dazu beitragen k\u00f6nnen, den L\u00e4rm auf ein akzeptables Ma\u00df zu reduzieren. Durch subjektives Erleben und H\u00f6ren w\u00e4hrend des Beladevorgangs konnten potenzielle\nHauptursachen identifiziert werden, die zu einer erh\u00f6hten L\u00e4rmbelastung beitragen k\u00f6nnen. Ein Ansatzpunkt f\u00fcr L\u00e4rmminderungsma\u00dfnahmen k\u00f6nnen bei der \u00dcberladebr\u00fc- cke und dem Anh\u00e4nger selbst stattfinden. In der durchgef\u00fchrten Messung wurde eine hydraulische \u00dcberladebr\u00fccke mit einer geriffelten Stahloberfl\u00e4che verwendet. Die harte und geriffelte Oberfl\u00e4che kann verschiedene Effekte hervorrufen, die zu einer Erh\u00f6hung des Schalls beitragen. Zum einen wird ein Teil des Schalls von der harten Oberfl\u00e4che reflektiert und in verschiedene Richtungen zur\u00fcckgeworfen, da harte Oberfl\u00e4chen Schall gut reflektieren. Dar\u00fcber hinaus kann es aufgrund der geriffelten Oberfl\u00e4che zu Streu- ungseffekten kommen, bei denen der Schall in verschiedene Richtungen gestreut wird und sich im Raum gut verteilt. Wenn die Frequenz des erzeugten Schalls mit der Reso- nanzfrequenz der \u00dcberladebr\u00fccke \u00fcbereinstimmt, kann es zu einer Resonanz kommen, bei der der Schall verst\u00e4rkt wird und das Bauteil angeregt. Um die nachfolgend beschrie- benen Effekte zu minimieren, k\u00f6nnte auf der \u00dcberladebr\u00fccke ein weicher Belag aufge- legt werden, die Schall und Vibrationen d\u00e4mpfen. Des Weiteren k\u00f6nnten K\u00f6rperschall- wellen, die durch den Beladevorgang entstehen, durch die Anbringung einer sogenann- ten Dr\u00f6hnfolie auf der Unterseite der \u00dcberladebr\u00fccke reduziert werden. Beim Einfahren des Flurf\u00f6rderger\u00e4ts in die jeweiligen Anh\u00e4nger, insbesondere in Tautliner und Koffer, konnte beobachtet werden, dass das Gewicht des Flurf\u00f6rderger\u00e4ts den Anh\u00e4nger nach unten dr\u00fcckt und Schwingungen verursacht. Diese Anregung des Anh\u00e4ngers f\u00fchrte zu lauten Ger\u00e4uschen. Um die Anregung und die damit verbundenen lauten Ger\u00e4usche des Anh\u00e4ngers zu reduzieren, k\u00f6nnten Sto\u00dfd\u00e4mpfer in den Anh\u00e4nger eingebaut werden. Diese Sto\u00dfd\u00e4mpfer dienen dazu, die Schwingungen zu d\u00e4mpfen und somit die Ger\u00e4u- schentwicklung zu verringern. Es ist jedoch wichtig, dass die Sto\u00dfd\u00e4mpfer speziell auf die Anforderungen des Anh\u00e4ngers abgestimmt werden, um eine optimale D\u00e4mpfung zu gew\u00e4hrleisten und sonstige wichtige Eigenschaften des Anh\u00e4ngers nicht beeinflussen.", + "embedding": [ + 0.015253481455147266, + 0.014116331934928894, + 0.007770518306642771, + -0.022063303738832474, + 0.011430308222770691, + 0.0198674313724041, + -0.016717396676540375, + -0.029931852594017982, + -0.015841661021113396, + -0.02399776503443718, + 0.005917749367654324, + 0.023514149710536003, + -0.011260389350354671, + 0.007522175088524818, + 0.00651573296636343, + 0.025592386722564697, + 0.028755491599440575, + 0.013658858835697174, + 0.019396886229515076, + -0.0006858021370135248, + -0.0009753993363119662, + -0.0007879168260842562, + -0.02014191448688507, + 0.00501587288454175, + -0.022651484236121178, + -0.004943984095007181, + 0.039682578295469284, + -0.008698536083102226, + -0.00895994994789362, + -0.009744190610945225, + 0.02927831932902336, + -0.012299507856369019, + -0.02018112689256668, + 0.014482310973107815, + -0.004911307245492935, + -0.02224629372358322, + -0.004823080264031887, + -0.008489405736327171, + 0.031238920986652374, + -0.00819531548768282, + 0.009149475023150444, + 0.007005883380770683, + 0.003793764393776655, + -0.03084680065512657, + -0.0030291297007352114, + 0.019671371206641197, + 0.025997579097747803, + -0.007502569351345301, + -0.021200640127062798, + 0.020416399464011192, + 0.028990764170885086, + 0.006649707444012165, + -0.01620764099061489, + 0.007241155486553907, + -0.00415647542104125, + 0.003862385405227542, + 0.0018037535483017564, + 0.012109982781112194, + -0.0009549764217808843, + -0.011855104938149452, + -0.04953787103295326, + -0.007398003712296486, + -0.022651484236121178, + 0.0029147611930966377, + -0.023030534386634827, + -0.014743724837899208, + 0.007920830510556698, + -0.010914016515016556, + -0.010182058438658714, + -0.004450565669685602, + 0.021448982879519463, + 0.0393688827753067, + 0.012391002848744392, + 0.009502382948994637, + 0.0284679364413023, + -0.012410609051585197, + 0.015567177906632423, + 0.0009696809574961662, + -0.0009492579847574234, + 0.0008254949934780598, + 0.02266455627977848, + -0.01780226267874241, + -0.017985252663493156, + 0.03997013345360756, + 0.01324059721082449, + -0.015763238072395325, + -0.0069993482902646065, + 0.006633369252085686, + -0.026272062212228775, + 0.005460275802761316, + 0.0043982830829918385, + 0.04135562479496002, + -0.008842313662171364, + -0.018560362979769707, + 0.03740828111767769, + 0.0003429010685067624, + 0.010979369282722473, + 0.019096260890364647, + -0.00028489992837421596, + -0.03411446884274483, + -0.001607693382538855, + -0.0029392687138170004, + 0.002460555173456669, + 0.009548130445182323, + -0.020703954622149467, + -0.01139109581708908, + 0.005901411175727844, + 0.0069339945912361145, + -0.005721689201891422, + -0.028755491599440575, + -0.025004206225275993, + 0.016730468720197678, + 0.0077901240438222885, + 0.0017874152399599552, + 0.01960601657629013, + 3.821641439571977e-05, + 0.014952856115996838, + -0.009757260791957378, + -0.015998510643839836, + -0.009613484144210815, + 0.0397348627448082, + 0.016495196148753166, + 0.025174126029014587, + -0.021239852532744408, + 0.021566618233919144, + 0.011090470477938652, + -0.004996266681700945, + -0.003816637909039855, + -0.028494078665971756, + 0.0018070212099701166, + -0.025958366692066193, + 0.013096819631755352, + 0.01116235926747322, + 0.006581086199730635, + -0.0035879011265933514, + 0.00616282457485795, + -0.005728224758058786, + -0.017031094059348106, + -0.014913643710315228, + -0.02212865836918354, + -0.0024719920475035906, + 0.013828777708113194, + -0.036022789776325226, + -0.035290829837322235, + -0.0007262395229190588, + 0.05194287374615669, + 0.017266366630792618, + 0.0014304223004728556, + -0.007620205171406269, + -0.006319672800600529, + -0.027030162513256073, + -0.023213524371385574, + 0.0015407061437144876, + -0.007116984110325575, + -0.016939599066972733, + -0.0027954913675785065, + 0.001903417520225048, + 0.014626088552176952, + -0.02602371945977211, + 0.0023478204384446144, + -0.0017384001985192299, + 0.012462891638278961, + 0.009639625437557697, + 0.008365234360098839, + 0.01517505757510662, + 0.0014549298211932182, + -0.01005135104060173, + -0.011266924440860748, + -0.01493978500366211, + -0.008822707459330559, + -0.006231445819139481, + 0.027500705793499947, + -0.0021419574040919542, + 0.00978340208530426, + -0.013815706595778465, + 0.002521007088944316, + 0.015959298238158226, + 0.0023118762765079737, + -0.01551489531993866, + -0.03434974327683449, + -0.03283354267477989, + -0.004591075703501701, + 0.012292972765862942, + 0.016612831503152847, + -0.0259845070540905, + 0.010979369282722473, + 0.01635141856968403, + 0.03887219727039337, + -0.00945663545280695, + -0.012162266299128532, + 0.00446363678202033, + 0.01119503565132618, + 0.006581086199730635, + -0.03997013345360756, + -0.6386855840682983, + -0.0027807867154479027, + 0.0034147147089242935, + -0.0029523393604904413, + -0.0023086084984242916, + 0.048518355935811996, + 0.018011394888162613, + 0.004440763033926487, + -0.00024160330940503627, + 0.04485856741666794, + 0.009044908918440342, + 0.012449820525944233, + -0.010998975485563278, + 0.011541408486664295, + -0.0008806369150988758, + -0.02797125093638897, + -0.013541222549974918, + 0.0007119434885680676, + 0.022416213527321815, + 0.0043525355868041515, + -0.013051072135567665, + 0.0047119795344769955, + -0.012600133195519447, + 0.005976567510515451, + 0.0026419106870889664, + -0.020730094984173775, + 0.008770424872636795, + -0.020703954622149467, + 0.007045095320791006, + -0.002089674584567547, + -0.021540477871894836, + 0.0047936709597706795, + -0.020351044833660126, + 0.028441796079277992, + 0.04156475514173508, + 0.010783309116959572, + 0.015214269049465656, + 0.012456356547772884, + -0.00092066585784778, + 0.008286809548735619, + -0.001216389937326312, + -0.005450472701340914, + -0.0023037069477140903, + -0.013763424009084702, + 0.006894782651215792, + -0.006381758488714695, + 0.047054439783096313, + -0.02235085889697075, + 0.01754084974527359, + -0.025553176179528236, + 0.003365699667483568, + -0.004064980894327164, + 0.009521989151835442, + 0.016952669247984886, + 0.024507520720362663, + -0.002919662743806839, + 0.0489104762673378, + -0.020886942744255066, + -0.015109703876078129, + 0.02079544961452484, + 0.009038373827934265, + 0.005653068423271179, + 0.0009966392535716295, + -0.01799832284450531, + -0.02127906307578087, + 0.01209691260010004, + -0.008763889782130718, + -0.03986556828022003, + 0.02078237757086754, + -0.012985718436539173, + -0.0064013646915555, + 0.028598643839359283, + -0.018638787791132927, + -0.03301653265953064, + 0.03184017166495323, + 0.012417144142091274, + 0.02197181060910225, + -0.012456356547772884, + -0.006551677361130714, + 0.02250770851969719, + -0.007424145005643368, + -0.0011616564588621259, + -0.020377187058329582, + -0.0017220618901774287, + 0.02594529651105404, + 0.001960601657629013, + -0.005960229318588972, + 0.012868082150816917, + 0.012201477773487568, + 0.007901225239038467, + 0.020494822412729263, + 0.038270946592092514, + -0.014965926297008991, + -0.012077306397259235, + 0.0011820794316008687, + 0.03615349531173706, + -0.012240690179169178, + 0.016220711171627045, + 0.014822148717939854, + -0.019749794155359268, + -0.022272435948252678, + -0.0012008685152977705, + 0.001451662159524858, + -0.03155261650681496, + 0.016599761322140694, + -0.001084049348719418, + -0.01116235926747322, + 0.008803101256489754, + 0.025213338434696198, + -0.01627299375832081, + 0.003862385405227542, + -0.008587435819208622, + -0.008005790412425995, + -0.01440388709306717, + 0.00785547774285078, + -0.022272435948252678, + 0.027004020288586617, + 0.006907853297889233, + 0.008966485038399696, + -0.01712258905172348, + 0.00571188610047102, + -0.0006612946162931621, + 0.04407432675361633, + -0.00016266867169179022, + -0.030088700354099274, + 0.0217888206243515, + 0.021762678399682045, + 0.011090470477938652, + 0.019775936380028725, + -0.022298576310276985, + -0.004185884725302458, + 0.01167211588472128, + 0.016116145998239517, + -0.002195873996242881, + 0.018756423145532608, + 0.013763424009084702, + 0.032075442373752594, + -0.016652043908834457, + -0.002257959684357047, + -0.02697787992656231, + -0.019161613658070564, + 0.007437215652316809, + 0.007064701523631811, + -0.03333022817969322, + -0.014717583544552326, + -0.044388022273778915, + -0.00848286971449852, + 0.015292692929506302, + 0.015619460493326187, + -0.010280088521540165, + 0.00825413316488266, + -0.030506962910294533, + 0.006188965868204832, + 0.013972555287182331, + -0.0035062094684690237, + 0.010639531537890434, + -0.020011208951473236, + -0.020207269117236137, + -0.01092708669602871, + -0.016286063939332962, + 0.013188314624130726, + 0.01139109581708908, + -0.050844937562942505, + -0.014992067590355873, + -0.007842406630516052, + -0.028154240921139717, + 0.027317717671394348, + 0.0027399410028010607, + -0.010548037476837635, + -0.03931659832596779, + 0.001016245223581791, + 0.0100317457690835, + 0.002717067254707217, + 0.008326021954417229, + -0.01497899740934372, + -0.005907946266233921, + -0.017749980092048645, + -0.01012977585196495, + -0.01944916881620884, + -0.014874431304633617, + 0.021069932729005814, + -0.002509570214897394, + -0.014456169679760933, + 0.002919662743806839, + 0.03549996018409729, + -0.00010196150105912238, + 0.020115774124860764, + -0.01440388709306717, + -0.014351604506373405, + 0.03129120171070099, + -0.011142753064632416, + 0.024285320192575455, + -0.019919713959097862, + 0.011665579862892628, + -0.03212772682309151, + 0.0025700221303850412, + -0.0005036295624449849, + -0.022769121453166008, + -0.0040715159848332405, + 0.02572309412062168, + 0.030480820685625076, + -0.009319393895566463, + 0.014377745799720287, + -0.018050607293844223, + 0.018285878002643585, + -0.01692652888596058, + 0.008188779465854168, + -0.013685000129044056, + 0.03879377245903015, + 0.03929045796394348, + 0.02018112689256668, + -0.00989450328052044, + -0.023710209876298904, + -0.003891794476658106, + -0.0032072176691144705, + 0.03448044881224632, + -0.012384467758238316, + 0.013488939963281155, + 0.025396326556801796, + 0.0009386380552314222, + 0.0014500283868983388, + -0.010998975485563278, + 0.03617963567376137, + 0.00745028629899025, + -0.011279995553195477, + -0.010632996447384357, + 0.008038466796278954, + 0.006541874259710312, + 0.004087854642421007, + -0.01543647050857544, + -0.009535059332847595, + -0.007208479102700949, + 0.007130054756999016, + 0.01299225352704525, + -0.007188872899860144, + 0.015645600855350494, + 0.006901318207383156, + -0.016024651005864143, + 0.03840165212750435, + 0.006156289484351873, + 0.024311460554599762, + 0.02197181060910225, + 0.011744004674255848, + 0.0018249934073537588, + 0.012730840593576431, + -0.006296799052506685, + 0.014678371138870716, + 0.025252550840377808, + 0.0045453282073140144, + 0.008711607195436954, + -0.0027530116494745016, + -0.004401550628244877, + -0.01360657624900341, + -0.0006416885880753398, + 0.013972555287182331, + -0.017070306465029716, + 0.020690882578492165, + 0.002328214468434453, + 0.007175802253186703, + 0.011913922615349293, + 0.0150966327637434, + 0.02067781239748001, + 0.02334423176944256, + -0.021579690277576447, + 0.0148090785369277, + -0.00042602242319844663, + -0.025004206225275993, + -0.018429655581712723, + -0.01052843127399683, + -0.013685000129044056, + 0.0036499868147075176, + -0.009868361987173557, + 0.011240783147513866, + -0.0019507986726239324, + 0.008633183315396309, + -0.009319393895566463, + -0.007835871540009975, + 0.018860988318920135, + 0.031578756868839264, + 0.016599761322140694, + -0.018743352964520454, + -0.022729909047484398, + 0.010325836017727852, + 0.020233409479260445, + -0.018547292798757553, + -0.00713659031316638, + -0.014351604506373405, + 0.003806835040450096, + -0.01369807031005621, + 0.000542024674359709, + -0.008816172368824482, + 0.005532164592295885, + -0.005600785370916128, + -0.003610774874687195, + 0.020952297374606133, + -0.004113995935767889, + 0.005486417096108198, + 0.019174683839082718, + -0.005028943531215191, + 0.020534034818410873, + 0.0027938573621213436, + -0.020468682050704956, + -0.01199888251721859, + -0.032885827124118805, + 0.013933342881500721, + -0.0028706477023661137, + -0.01290075946599245, + -0.04365606606006622, + 0.005048549268394709, + -0.009423959068953991, + -0.02789282612502575, + 0.012031558901071548, + 0.004989731125533581, + 0.024925783276557922, + 0.003097750712186098, + -0.0006617030594497919, + -0.00021219429618213326, + -0.010280088521540165, + 0.05264868959784508, + -0.0007707615732215345, + -0.010404259897768497, + -0.016455983743071556, + 0.0011992347426712513, + -0.009574271738529205, + -0.0015260016079992056, + 0.010168987326323986, + 0.01263281051069498, + 0.016063863411545753, + -0.006339279003441334, + -0.018887130543589592, + -0.012103447690606117, + -0.03414061293005943, + 0.01688731648027897, + 0.017514709383249283, + 0.00128256028983742, + -0.010933621786534786, + 0.03625806048512459, + -0.02052096463739872, + -0.002596163423731923, + -0.0033558965660631657, + 0.017566991969943047, + -0.023814775049686432, + 0.02584073133766651, + 0.008933808654546738, + -0.007659417111426592, + 0.011149288155138493, + 0.0010775140253826976, + 0.04300253093242645, + -0.004476707428693771, + -0.015423400327563286, + 0.011018581688404083, + 0.025893013924360275, + 0.02433760277926922, + -0.02205023355782032, + 0.0017220618901774287, + 0.03832322731614113, + 0.015292692929506302, + 0.00835216324776411, + -0.011783216148614883, + -0.015018208883702755, + -0.0009018767741508782, + -0.016495196148753166, + 0.01286154706031084, + -0.0052544125355780125, + 0.012691628187894821, + 0.03795724734663963, + 0.015501824207603931, + 0.006074597593396902, + 0.02614135667681694, + -0.0009312857873737812, + -0.0001893206062959507, + 0.025239478796720505, + -0.017070306465029716, + -0.013854919001460075, + 0.01369807031005621, + -0.016952669247984886, + 0.007613670080900192, + 0.00575109850615263, + -0.008744283579289913, + -0.028101958334445953, + 0.010240876115858555, + -0.02568388171494007, + -0.017135659232735634, + -0.021448982879519463, + -0.024010835215449333, + -0.022141728550195694, + 0.022729909047484398, + -0.011404166929423809, + -0.043316226452589035, + -0.015449541620910168, + -0.010365047492086887, + 0.010136310942471027, + -0.011306136846542358, + 0.0017629077192395926, + -0.007646346464753151, + -0.006688919384032488, + -0.018717210739850998, + -0.00892073754221201, + 0.00013989710714668036, + -0.004313323646783829, + 0.015567177906632423, + 0.003434320678934455, + -0.03241528198122978, + 0.00993371568620205, + -0.015292692929506302, + -0.0023510882165282965, + -0.012064236216247082, + -0.016364488750696182, + -0.014913643710315228, + 0.026167497038841248, + -0.01819438301026821, + 0.00210601300932467, + -0.013116425834596157, + 6.719145312672481e-05, + -0.005025675520300865, + 0.013645787723362446, + 0.005182523746043444, + -0.009776866994798183, + 0.021540477871894836, + 0.004078051541000605, + -0.0018936145352199674, + 0.017174871638417244, + 0.023435724899172783, + -0.006522268522530794, + 0.01133227813988924, + -0.011639438569545746, + -0.011044722981750965, + -0.014743724837899208, + 0.021265992894768715, + 0.00038170465268194675, + -0.017645414918661118, + 0.0044178892858326435, + 0.025958366692066193, + 0.008796566165983677, + 0.0021582958288490772, + -0.01869107037782669, + 0.015462611801922321, + 0.004087854642421007, + -0.00018166200607083738, + -0.0012596865417435765, + 0.019762864336371422, + 0.01303146593272686, + 0.003509477013722062, + 0.005022407975047827, + -0.01754084974527359, + -0.0238801296800375, + 0.043577641248703, + 0.010613390244543552, + -0.0044178892858326435, + 0.02663804218173027, + -0.010280088521540165, + -0.00010088929411722347, + -0.021736538037657738, + -0.0036042395513504744, + 0.021605830639600754, + 0.010338906198740005, + 0.02189338579773903, + -0.00023404683452099562, + -0.02369713969528675, + -0.013854919001460075, + 0.02181496098637581, + 0.025775376707315445, + -0.0149005725979805, + -0.009914109483361244, + -0.004346000496298075, + 0.014861361123621464, + -0.013671929016709328, + 0.009881432168185711, + 0.016377558931708336, + -0.023226594552397728, + -0.031055931001901627, + 0.013933342881500721, + -0.023827845230698586, + 0.03129120171070099, + -0.009345535188913345, + 0.005179256200790405, + -0.027370000258088112, + -0.009280181489884853, + -0.009959856979548931, + -0.020037349313497543, + 0.0019377280259504914, + -0.017436284571886063, + 0.006770611274987459, + 0.017174871638417244, + 0.025997579097747803, + -0.007182337809354067, + -0.0015799182001501322, + -0.004100925289094448, + -0.002107646781951189, + -0.009718049317598343, + -0.006835964508354664, + -0.01459994725883007, + -0.028258806094527245, + 0.019017836079001427, + 0.01646905392408371, + -0.00999253336340189, + -0.007038560230284929, + 0.01799832284450531, + 0.009312857873737812, + 0.049851566553115845, + -0.02093922533094883, + -0.004901504144072533, + -0.003421250032261014, + -0.024402955546975136, + 0.01112314686179161, + -0.011227712035179138, + 0.022194011136889458, + 0.026455052196979523, + -0.012299507856369019, + -0.007894689217209816, + 0.004649893846362829, + -0.0229259692132473, + -0.012430215254426003, + -0.010842127725481987, + 0.01731864921748638, + -0.03939502313733101, + 0.03283354267477989, + 0.008672394789755344, + 0.0077901240438222885, + -0.010005604475736618, + -0.018939413130283356, + -0.027160869911313057, + -0.019671371206641197, + 0.006835964508354664, + -0.0008593970560468733, + 0.008450193330645561, + -0.008502475917339325, + -0.009110262617468834, + -0.002493231790140271, + -0.010182058438658714, + 0.017645414918661118, + -0.011508732102811337, + -0.0018168241949751973, + -0.020390257239341736, + -0.020416399464011192, + -0.021488195285201073, + -0.005604053381830454, + -0.016377558931708336, + -0.002638643141835928, + 0.02239007130265236, + 0.006855570711195469, + 0.03144805133342743, + -0.014861361123621464, + -0.0030618063174188137, + -0.0014467607252299786, + 0.006502662319689989, + 0.016913456842303276, + 0.0013397445436567068, + 0.040911223739385605, + 0.01427318062633276, + -0.03863692283630371, + -0.01440388709306717, + -0.05416489019989967, + 0.02258613146841526, + -0.015763238072395325, + 0.026533477008342743, + 0.025161055848002434, + -0.03970871865749359, + 0.011051258072257042, + 8.15640942164464e-06, + 0.019553733989596367, + -0.004604146350175142, + -0.0033820378594100475, + 0.038767632097005844, + 0.028494078665971756, + -0.006117077544331551, + -0.016495196148753166, + 0.002958874683827162, + -0.00745028629899025, + -0.007737841457128525, + 0.013103354722261429, + -0.006979742087423801, + -0.004113995935767889, + -0.015318834222853184, + -0.010175522416830063, + 0.03468957915902138, + 0.0149005725979805, + 0.01517505757510662, + 0.016991881653666496, + -0.02224629372358322, + -0.010704885236918926, + -0.03753898665308952, + -0.022272435948252678, + 0.016194570809602737, + -0.007437215652316809, + 0.05089722201228142, + -0.012717769481241703, + -0.011103540658950806, + -0.00892727356404066, + 0.0003522956103552133, + 0.00419568782672286, + -0.012332185171544552, + -0.012489032931625843, + 0.017972182482481003, + -0.010195128619670868, + -0.009221363812685013, + 0.012292972765862942, + -0.01654747873544693, + 0.01167211588472128, + 0.008038466796278954, + 0.0005089394981041551, + -0.019383816048502922, + 0.00559751782566309, + -0.0053687808103859425, + 0.0009272012393921614, + 0.014312392100691795, + -0.021841103211045265, + -2.0907978978357278e-05, + -0.019710581749677658, + -0.020128844305872917, + -0.004806742072105408, + -0.014992067590355873, + 0.01551489531993866, + -0.012946506962180138, + -0.01427318062633276, + -0.0033117830753326416, + -0.005885072983801365, + 0.021226780489087105, + -0.012613204307854176, + -0.03202316164970398, + -0.004303520545363426, + 0.008149567991495132, + -0.04370834678411484, + 0.018860988318920135, + 0.03633648529648781, + -0.0015243678353726864, + -0.02032490447163582, + 0.007123519666492939, + -0.0025455146096646786, + -0.02296518161892891, + 0.024442167952656746, + -0.014364675618708134, + -0.008894596248865128, + -0.01410326175391674, + 0.005803381092846394, + 0.016573619097471237, + -0.018298950046300888, + -0.014338533394038677, + 0.00869200099259615, + 0.0026026987470686436, + 0.006094203796237707, + -0.019919713959097862, + -0.005133508704602718, + -0.002769349841400981, + 0.02487350068986416, + -0.009267110377550125, + 0.018717210739850998, + -0.011763609945774078, + 0.013541222549974918, + 0.008711607195436954, + -0.011286530643701553, + -0.0005840959493070841, + -0.016377558931708336, + -0.010822521522641182, + 0.01785454712808132, + 0.011070864275097847, + -0.027082445099949837, + -0.016560548916459084, + -0.026847172528505325, + -0.01320138480514288, + -0.006790217477828264, + 0.029905712231993675, + 0.019841289147734642, + 0.031003648415207863, + 0.014129403047263622, + 0.010724491439759731, + -0.016416771337389946, + 0.018429655581712723, + 0.017410142347216606, + -0.005270750727504492, + 0.023030534386634827, + -0.0024850626941770315, + -0.03241528198122978, + 0.009704978205263615, + -0.015527965500950813, + 0.02987957000732422, + 0.020298762246966362, + -0.003228457411751151, + -0.0001550100714666769, + 0.009639625437557697, + -0.041094209998846054, + -0.011554479598999023, + -0.000832438818179071, + 0.0013136031338945031, + -0.0012997156009078026, + 0.0123256491497159, + -0.009338999167084694, + 0.038689207285642624, + 0.005087761208415031, + 0.03688545525074005, + -0.01956680417060852, + -0.03102979063987732, + -0.006394829135388136, + -0.007914295420050621, + 0.016103075817227364, + -0.003643451491370797, + -0.030663810670375824, + 0.00424143485724926, + 0.047760259360075, + 0.0025732896756380796, + 0.021958738565444946, + 0.03202316164970398, + -0.0075483163818717, + -0.027030162513256073, + 0.022651484236121178, + 0.0053883870132267475, + 0.03317338228225708, + -0.0240761898458004, + -0.010110169649124146, + -0.013273273594677448, + 0.005071423016488552, + 0.005306695122271776, + 0.01266548689454794, + -0.03474186360836029, + -0.024311460554599762, + 0.027108585461974144, + -0.005904678720980883, + -0.004035572055727243, + 0.00042602242319844663, + -0.009887968190014362, + 0.0150966327637434, + -0.023474937304854393, + 0.017906829714775085, + -0.00043337466195225716, + -0.04370834678411484, + 0.01146298460662365, + 0.016286063939332962, + -0.009469706565141678, + -0.022442353889346123, + -0.0032660355791449547, + -0.033460937440395355, + 0.009391281753778458, + -0.0004987280699424446, + -0.013038001023232937, + 0.018011394888162613, + -0.010293158702552319, + 0.008992626331746578, + -0.003218654543161392, + -0.0021926062181591988, + -0.033460937440395355, + -0.025631599128246307, + -0.03492485359311104, + 0.042166005820035934, + 0.03568295016884804, + -0.012273366563022137, + 0.015946228057146072, + -0.011260389350354671, + -0.015645600855350494, + -0.010208199732005596, + -0.02637662924826145, + 0.007933901622891426, + -0.04208758473396301, + -0.012966112233698368, + -0.00842405203729868, + -0.018220525234937668, + -0.005378583911806345, + -0.002738306997343898, + -0.015410329215228558, + -0.023148171603679657, + -0.014874431304633617, + 0.1910410374403, + -0.023788634687662125, + -0.006764075718820095, + 0.008404445834457874, + -0.03335636854171753, + -0.016181498765945435, + 0.01620764099061489, + 0.004117263481020927, + 0.0007201126427389681, + 0.028075816109776497, + 0.006816358771175146, + -0.00392773887142539, + 0.0025030348915606737, + 0.00892073754221201, + 0.025592386722564697, + -0.02048175223171711, + -0.0347680039703846, + -0.004450565669685602, + 0.002318411599844694, + 0.029984135180711746, + 0.004924377892166376, + -0.010763703845441341, + -0.0032366267405450344, + -0.01620764099061489, + 0.05021754652261734, + 0.027735978364944458, + -0.0007960859802551568, + 0.016076933592557907, + 0.03675474599003792, + 0.03204930201172829, + -0.03152647614479065, + -0.010822521522641182, + 0.013645787723362446, + -0.01517505757510662, + -0.007162731606513262, + 0.001497409539297223, + 0.003993092104792595, + -0.02644198201596737, + 0.017187941819429398, + 0.03317338228225708, + 0.005205397494137287, + -0.019658299162983894, + -0.02113528549671173, + -0.016678184270858765, + -0.0021926062181591988, + 0.009600413031876087, + 0.01043040119111538, + -0.0008863553521223366, + 0.008051537908613682, + 0.0050942967645823956, + -0.010789845138788223, + 0.010822521522641182, + 0.020128844305872917, + 0.035369254648685455, + -0.0072280848398804665, + -0.027108585461974144, + -0.002434413880109787, + -0.001517832512035966, + 0.00815610308200121, + 0.002362525090575218, + -0.03053310327231884, + 0.009959856979548931, + -0.01700495183467865, + 0.018089817836880684, + -0.040597524493932724, + 0.0296181570738554, + -0.021030720323324203, + 0.005339371971786022, + -0.01597236841917038, + -0.019671371206641197, + 0.00785547774285078, + -0.015920085832476616, + -0.026651112362742424, + 0.008469799533486366, + -0.027945110574364662, + -0.03118663839995861, + 0.019841289147734642, + 0.0020569979678839445, + 0.020547104999423027, + 0.02582765929400921, + -0.006450379732996225, + -0.003037298796698451, + -0.019240038469433784, + -0.00804500188678503, + 0.007143125403672457, + -0.026951737701892853, + 0.012181871570646763, + -0.002210578415542841, + 0.0010080760112032294, + -0.01692652888596058, + -0.011593691073358059, + -0.006816358771175146, + -0.0006425055325962603, + -0.010149381123483181, + 0.014116331934928894, + -0.004339464940130711, + -0.004218561574816704, + 0.003404911607503891, + -0.012691628187894821, + 0.001944263349287212, + -0.014534593559801579, + 0.053746629506349564, + 0.029173754155635834, + -0.006927459500730038, + -0.018089817836880684, + -0.001460648258216679, + -0.006460182834416628, + 0.014024837873876095, + -0.0006457731942646205, + 0.007770518306642771, + -0.019462238997220993, + -0.025893013924360275, + 0.013005324639379978, + -0.023945482447743416, + 0.025579316541552544, + 0.014207826927304268, + 0.025500893592834473, + 0.002725236350670457, + -0.019958924502134323, + -0.0024556536227464676, + -0.0035911689046770334, + 0.012475961819291115, + 0.03403604403138161, + 0.00884884875267744, + 0.015828590840101242, + -0.03403604403138161, + -0.04044067859649658, + 0.026494264602661133, + -0.0015799182001501322, + -0.010907480493187904, + 0.02763141319155693, + -0.02086080238223076, + 0.009626554325222969, + 0.0036009717732667923, + 0.012083841487765312, + -0.010044815950095654, + -0.0072803678922355175, + -0.024010835215449333, + -0.00436560669913888, + 0.006273925304412842, + 0.02594529651105404, + 0.0013773227110505104, + 0.01286154706031084, + 0.013854919001460075, + 0.008456728421151638, + 0.00812342669814825, + 0.03468957915902138, + -0.009443565271794796, + -0.03510783985257149, + -0.009012232534587383, + -0.023553362116217613, + -0.007175802253186703, + -0.017566991969943047, + -0.017893757671117783, + 0.00713659031316638, + 0.013881060294806957, + -0.005620391573756933, + -0.033225663006305695, + 0.0031451319810003042, + 0.00589487561956048, + -0.03204930201172829, + -0.0128942234441638, + -0.015985438600182533, + -0.021566618233919144, + 0.0016436377773061395, + -0.008201850578188896, + -0.164272278547287, + 0.009959856979548931, + 0.017566991969943047, + -0.016403701156377792, + 0.020377187058329582, + -0.004444030579179525, + 0.019057048484683037, + 0.014508452266454697, + -0.02121371030807495, + -0.02185417339205742, + 0.014887502416968346, + 0.005378583911806345, + 0.00658435421064496, + -0.016455983743071556, + -0.01581552065908909, + -0.00022832841204944998, + -0.018207455053925514, + 0.029931852594017982, + 0.03649333491921425, + 0.02880777418613434, + -0.0059438906610012054, + -0.037669695913791656, + 0.01734478957951069, + -0.0026843904051929712, + -0.01476986613124609, + 0.018978623673319817, + -0.023148171603679657, + 0.028860056772828102, + -0.015946228057146072, + -0.001076697139069438, + -0.022194011136889458, + -0.005698815453797579, + 0.012116518802940845, + 0.005626927129924297, + -0.0009696809574961662, + -0.014312392100691795, + 0.004943984095007181, + -0.0026272062677890062, + -0.003685931209474802, + 0.041329484432935715, + 0.009874897077679634, + 0.03144805133342743, + -0.009260575287044048, + 0.010214734822511673, + -0.0032088514417409897, + 0.031003648415207863, + 0.01373728271573782, + -0.023644857108592987, + -0.0038525823038071394, + 0.0018184580840170383, + -0.018625715747475624, + -0.01712258905172348, + 8.230442472267896e-05, + 0.009985998272895813, + -0.013854919001460075, + 0.020416399464011192, + -0.008201850578188896, + 0.026951737701892853, + 0.008711607195436954, + -0.0010636263759806752, + 0.0019083189545199275, + -0.019253108650445938, + 0.021605830639600754, + 0.0019655032083392143, + -0.009208292700350285, + -0.02461208589375019, + -0.00892727356404066, + 0.017684627324342728, + -0.01043040119111538, + -0.0023380175698548555, + -0.007326114922761917, + -0.03333022817969322, + 0.00731957983225584, + -0.015645600855350494, + 0.010953227989375591, + 0.020625529810786247, + -0.003702269634231925, + -0.003702269634231925, + -0.015619460493326187, + -0.0072803678922355175, + -0.010940157808363438, + 0.02977500483393669, + -0.0016420038882642984, + -0.008286809548735619, + -0.03163104131817818, + -0.006035385653376579, + -0.002976846881210804, + 0.022690696641802788, + -0.014351604506373405, + 0.013658858835697174, + 0.027187010273337364, + -0.018704140558838844, + -0.007907760329544544, + -0.03448044881224632, + 0.009561200626194477, + -0.005091029219329357, + -0.00775744765996933, + -0.0027023626025766134, + -0.019658299162983894, + 0.0016272994689643383, + 0.0033689672127366066, + -0.01335823256522417, + -0.015998510643839836, + 0.01937074400484562, + -0.0026582491118460894, + 0.007313044276088476, + -0.014050979167222977, + 0.0008634816622361541, + 0.026128284633159637, + -0.018325090408325195, + -0.01209691260010004, + -0.012462891638278961, + 0.014077120460569859, + -0.006107274442911148, + -0.010306229814887047, + 0.003911400213837624, + -0.002447484526783228, + -0.008613577112555504, + 0.006901318207383156, + 0.0012801095144823194, + 0.05217814818024635, + -0.018847918137907982, + -0.0150966327637434, + 0.005375316366553307, + -0.016821961849927902, + -0.027683695778250694, + -0.09938943386077881, + 0.005032211076468229, + 0.04015312343835831, + 0.005966764409095049, + 0.021305205300450325, + 0.010835591703653336, + 0.006264122668653727, + -0.006757540628314018, + 0.005692280363291502, + 0.0424274206161499, + -0.016338348388671875, + -0.024023905396461487, + -0.029827287420630455, + -0.009855290874838829, + 0.013234061188995838, + -0.011606762185692787, + 0.0005608137580566108, + -0.018547292798757553, + -0.02167118340730667, + 0.022416213527321815, + -0.006420970428735018, + -0.00858089979737997, + -0.01571095548570156, + 0.0026321078184992075, + -0.009044908918440342, + -0.012685093097388744, + -0.02040332928299904, + 0.00483288336545229, + 0.014704512432217598, + -0.00758752878755331, + 0.020991509780287743, + -0.008966485038399696, + -0.001464732806198299, + -0.010678743943572044, + -0.021540477871894836, + -0.011966206133365631, + -0.012645880691707134, + -0.0059831030666828156, + 0.028180381283164024, + -0.0061301481910049915, + -0.007933901622891426, + 0.02113528549671173, + 0.009535059332847595, + -0.02151433564722538, + -0.013998696580529213, + -0.03576137498021126, + -0.014652229845523834, + 0.020913084968924522, + -0.0017645414918661118, + 0.0036303808446973562, + -0.0271347276866436, + -0.02266455627977848, + -0.027814403176307678, + 0.020991509780287743, + 0.04211372509598732, + 0.007698629517108202, + -0.002638643141835928, + -0.0038427794352173805, + -0.006960135884582996, + 0.00037802851875312626, + -0.022599201649427414, + 0.029173754155635834, + -0.03356550261378288, + 0.02109607495367527, + 0.0016068764962255955, + -0.00745028629899025, + -0.02270376868546009, + 0.0012212914880365133, + 0.024716652929782867, + 0.011266924440860748, + -0.02499113604426384, + 0.0021877046674489975, + -0.011835498735308647, + 0.013214455917477608, + -0.01887405849993229, + 0.010959764011204243, + -0.04326394572854042, + -0.02174960821866989, + -0.0017122587887570262, + -0.010783309116959572, + 0.003712072502821684, + -0.02770983800292015, + 0.011848569847643375, + -0.017018022015690804, + 0.03053310327231884, + 0.03283354267477989, + 0.00597983505576849, + -0.02282140403985977, + 0.01410326175391674, + -0.014050979167222977, + -0.01700495183467865, + 0.019553733989596367, + 0.01627299375832081, + -0.00771823525428772, + -0.021579690277576447, + 0.02018112689256668, + 0.003672860562801361, + -0.006744469981640577, + -0.00022220153186935931, + 0.00798618420958519, + -0.015044350177049637, + -0.0016640607500448823, + -0.03343479335308075, + 0.0313434861600399, + 0.025461681187152863, + 0.009149475023150444, + -0.017566991969943047, + -0.015907015651464462, + 0.008705071173608303, + 0.01700495183467865, + 0.024023905396461487, + -0.00015327412984333932, + -0.011626368388533592, + 0.0018674731254577637, + -0.028284946456551552, + -0.01373728271573782, + -0.03427131846547127, + -0.030428538098931313, + 0.008646253496408463, + 0.014874431304633617, + 0.008711607195436954, + -0.004653161391615868, + -0.0024834289215505123, + 0.00882924348115921, + -0.01263281051069498, + 0.029330601915717125, + -0.028258806094527245, + -0.002548782154917717, + -0.005626927129924297, + -0.008397910743951797, + -0.012469426728785038, + -0.009842220693826675, + 0.003862385405227542, + -0.007613670080900192, + -0.016455983743071556, + 0.00613341573625803, + -0.010025209747254848, + -0.016338348388671875, + 0.024141542613506317, + 0.036597900092601776, + 0.026494264602661133, + 0.03419289365410805, + -0.020573247224092484, + -0.020351044833660126, + -0.005058352369815111, + -0.031238920986652374, + 0.0017890490125864744, + 0.009744190610945225, + 0.009469706565141678, + -0.005319765768945217, + 0.007940436713397503, + -0.003522547660395503, + 0.03369620814919472, + 0.013364768587052822, + 0.010914016515016556, + 0.002504668664187193, + -0.011338813230395317, + -0.002244889037683606, + 0.005643265321850777, + 0.004702176433056593, + 0.02530483342707157, + -0.029801145195961, + 0.04498927295207977, + 0.006803288124501705, + 0.0020275888964533806, + -0.02564467117190361, + 0.008437123149633408, + 0.001975306309759617, + -0.021579690277576447, + -0.01195967011153698, + -0.0036957343108952045, + -0.01012977585196495, + -0.02640276961028576, + -0.0007094927714206278, + 0.01811596006155014, + 0.01119503565132618, + -0.022573061287403107, + -0.011188500560820103, + -0.000670689158141613, + -0.00027958996361121535, + -0.004613949451595545, + 0.010057887062430382, + 0.020011208951473236, + 0.0053687808103859425, + 0.0009541594772599638, + -0.010325836017727852, + 0.032310716807842255, + 0.005571376532316208, + -0.00266478443518281, + -0.006894782651215792, + 0.0027219688054174185, + -0.004966857843101025, + -0.0077901240438222885, + 0.02522640861570835, + -0.005653068423271179, + 0.016991881653666496, + 0.01373728271573782, + 0.030297832563519478, + 0.015449541620910168, + -0.012743910774588585, + 0.02395855262875557, + 0.026585759595036507, + 0.012051165103912354, + -0.006313137710094452, + -0.009757260791957378, + -0.028258806094527245, + 0.0012106715003028512, + 0.01769769750535488, + -0.012417144142091274, + -0.03262441232800484, + 0.007143125403672457, + 0.015554106794297695, + -0.0162468533962965, + 0.010293158702552319, + -0.0011837133206427097, + 0.011312671937048435, + -0.007188872899860144, + 0.016037721186876297, + -0.02770983800292015, + -0.015501824207603931, + -0.027840543538331985, + 0.02675567753612995, + 0.01873028092086315, + -0.0019949122797697783, + -0.00848286971449852, + 0.013619646430015564, + 0.039107467979192734, + -0.025357116013765335, + 0.0115610146895051, + -0.00986182689666748, + 0.013279808685183525, + -0.013149102218449116, + 0.003084680065512657, + -0.008247598074376583, + -0.03037625551223755, + -0.007933901622891426, + -0.013763424009084702, + -0.003699001856148243, + 0.022494636476039886, + 0.009149475023150444, + 0.015423400327563286, + 0.12014567106962204, + 0.0095546655356884, + -0.007515639998018742, + 0.019697511568665504, + 0.0020586317405104637, + 0.01823359541594982, + 0.00819531548768282, + 0.007665952667593956, + 0.010253947228193283, + -0.0711044892668724, + 0.019135473296046257, + 0.0033526290208101273, + 0.017096446827054024, + -0.025017278268933296, + 0.0031778085976839066, + 0.0149005725979805, + -0.009280181489884853, + 0.01543647050857544, + -0.026821032166481018, + -0.0025291761849075556, + 0.0351601243019104, + -0.019932784140110016, + 0.0027922235894948244, + 0.03254598751664162, + -0.015384187921881676, + -0.024782005697488785, + 0.01680889166891575, + 0.01944916881620884, + 0.012391002848744392, + -0.00938474666327238, + -0.013854919001460075, + 0.020494822412729263, + -0.055890221148729324, + -0.02479507587850094, + 0.0030748769640922546, + -0.037512846291065216, + 0.008607041090726852, + -0.005800113547593355, + 0.00986182689666748, + -0.009175616316497326, + 0.024585945531725883, + 0.04227057099342346, + -0.008933808654546738, + -0.019240038469433784, + 0.02167118340730667, + 0.007482963148504496, + -0.010325836017727852, + -0.0014908742159605026, + -0.01410326175391674 + ], + "metadata": { + "source": "Thesis_Verladegeraeusche_in_Speditionen.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 41, + "has_images": true, + "image_count": 51, + "coordinates": "CoordinatesMetadata(points=((204.16666666666666, 189.02777777777797), (204.16666666666666, 642.3611111111111), (936.1666666666666, 642.3611111111111), (936.1666666666666, 189.02777777777797)), system=)", + "links": [], + "last_modified": "2025-05-05T22:59:16", + "_known_field_names": "frozenset({'cc_recipient', 'link_texts', 'url', 'filetype', 'category_depth', 'page_number', 'filename', 'orig_elements', 'detection_origin', 'email_message_id', 'page_name', 'coordinates', 'table_as_cells', 'link_start_indexes', 'sent_to', 'bcc_recipient', 'languages', 'last_modified', 'link_urls', 'file_directory', 'subject', 'data_source', 'detection_class_prob', 'image_base64', 'text_as_html', 'attached_to_filename', 'key_value_pairs', 'signature', 'sent_from', 'header_footer_type', 'parent_id', 'links', 'emphasized_text_contents', 'emphasized_text_tags', 'image_mime_type', 'is_continuation', 'image_path'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "Thesis_Verladegeraeusche_in_Speditionen.pdf", + "detection_class_prob": 0.2568194270133972, + "parent_id": "d45475a34bc527cde6987546fa6dd2f5", + "text_as_html": "
Flurf\u00f6rderger\u00e4t |Anzahl Einzelereignisse ElMax-PegelSchallleistungspegel
LAFmaxLWA,5sLWAmaxLWA,1hKlLWAT,1h
[dB(A)][dB(A)][dB(A)][dB(A)][dB(A)][dB(A)]
Gabelstapler29769,3100,7108,872,15,777,8
STABW [dB]6,54,96,54,92,9-
Gabelhubwagen9968,6100,7108,172,16,279,5
STABW [dB]6,45,16,4512,7-
", + "id": "5ba44de7-0ff3-4c0c-b018-67e92171e1c2", + "processing_timestamp": "2025-05-06T14:18:19.298665", + "chunk_number": 35, + "total_chunks": 49, + "chunking_strategy": "hybrid", + "word_count": 579 + } +} \ No newline at end of file diff --git a/data/processed/85fd305f-83de-70b0-47e8-2dc000000036.json b/data/processed/85fd305f-83de-70b0-47e8-2dc000000036.json new file mode 100644 index 0000000000000000000000000000000000000000..c51aeb9d29000f99d93049a00f8b75824e9f2a46 --- /dev/null +++ b/data/processed/85fd305f-83de-70b0-47e8-2dc000000036.json @@ -0,0 +1,1570 @@ +{ + "id": "85fd305f-83de-70b0-47e8-2dc000000036", + "content": "Diese Sto\u00dfd\u00e4mpfer dienen dazu, die Schwingungen zu d\u00e4mpfen und somit die Ger\u00e4u- schentwicklung zu verringern. Es ist jedoch wichtig, dass die Sto\u00dfd\u00e4mpfer speziell auf die Anforderungen des Anh\u00e4ngers abgestimmt werden, um eine optimale D\u00e4mpfung zu gew\u00e4hrleisten und sonstige wichtige Eigenschaften des Anh\u00e4ngers nicht beeinflussen. Um die L\u00e4rmbelastung weiter zu reduzieren, k\u00f6nnten Ma\u00dfnahmen sowohl auf dem Ge- l\u00e4nde als auch durch das richtige Verhalten des Personals erfolgen. Auf dem Gel\u00e4nde\nk\u00f6nnten L\u00e4rmschutzw\u00e4nde dimensioniert werden, um den Schall zu absorbieren und\nseine Ausbreitung zu verhindern. Diese Ma\u00dfnahme ist in der Praxis weit verbreitet und\ntr\u00e4gt zur Reduzierung der L\u00e4rmemissionen bei. Dar\u00fcber hinaus k\u00f6nnte das Personal\n71\n7 Ergebnisse und Interpretation\ndurch Schulungen und Unterweisungen zu einem richtigen Verhalten w\u00e4hrend des Be- ladevorgangs aufgekl\u00e4rt werden, um die L\u00e4rmbelastung zu verringern. Durch Sensibili- sierung f\u00fcr die Auswirkungen von schnellem und unvorsichtigem Beladen k\u00f6nnte das Personal lernen, Ma\u00dfnahmen zu ergreifen, um L\u00e4rm zu reduzieren. Eine m\u00f6gliche Ma\u00df- nahme k\u00f6nnte die Verwendung einer L\u00e4rmampel sein, die in der Verladezone ange- bracht ist und dem Personal signalisiert, wenn eine hohe L\u00e4rmbelastung besteht. Dadurch werden sie dazu ermutigt, ihre Vorgehensweise anzupassen und den L\u00e4rmpe- gel zu senken. Insgesamt stehen verschiedene M\u00f6glichkeiten zur Verf\u00fcgung, um die L\u00e4rmbelastung zu senken. Die genaue H\u00f6he der erzielbaren Minderung ist jedoch nicht absch\u00e4tzbar und m\u00fcsste spezifisch im Einzelfall analysiert werden. Es ist anzunehmen, dass durch geeig- nete Ma\u00dfnahmen eine Schallminderung im Bereich von 3 bis 5 dB erzielt werden k\u00f6nnte. Durch gezielte Ma\u00dfnahmen, angepasst an die individuellen Gegebenheiten, kann der L\u00e4rmpegel effektiv minimiert werden. Zusammenarbeit, Planung und die Umsetzung ge- eigneter Schutzma\u00dfnahmen erm\u00f6glichen eine Reduzierung der L\u00e4rmbelastung und f\u00f6r- dern somit das Wohlbefinden und die Gesundheit aller Beteiligten. ## 7.6 Fehlerdiskussion\n\nIm folgendem wird eine detaillierte Diskussion \u00fcber die Fehlerquellen und Unsicherhei- ten im Rahmen der durchgef\u00fchrten Messungen und Analysen aufgezeigt. Fehler k\u00f6nnen in unterschiedlichen Bereichen auftreten und die Genauigkeit der Ergebnisse beeinflus- sen. Das Ziel dieses ist es, die Schranken und Unsicherheiten der vorliegenden Thesis transparent aufzuzeigen und die Relevanz der Ergebnisse in Hinblick auf m\u00f6gliche Feh- lerquellen zu bewerten. Wie aus der Validierungsrechnung 7.4 hervorgeht k\u00f6nnen Abweichungen bei Verglei- chen zwischen simulierten und gemessenen Pegelwerten auftreten. In den meisten F\u00e4l- len sind die simulierten Werte h\u00f6her als die gemessenen Werte, wobei die Differenzen unterschiedlich ausfallen. Eine durchschnittliche Abweichung von 4,6 dB(A) ist festzu- stellen. Diese Ergebnisse deuten darauf hin, dass die Simulation m\u00f6glicherweise nicht genau genug die realen Bedingungen widerspiegelt und daher eine gewisse Ungenauig- keit aufweist. Es ist wichtig anzumerken, dass auch bei der Messung selbst Fehler und Messungenauigkeiten auftreten k\u00f6nnen, die die gemessenen Kenngr\u00f6\u00dfen ver\u00e4ndern\n72\n7 Ergebnisse und Interpretation\n\n## k\u00f6nnen. Dabei k\u00f6nnen systematische Fehler und zuf\u00e4llige Fehler auftreten. Systemati-\n\nsche Fehler entstehen beispielsweise aufgrund von Messunsicherheiten der verwende- ten Ger\u00e4te oder einer fehlerhaften Kalibrierung. Diese Art von Fehlern beeinflusst die Genauigkeit der gemessenen Werte. [87, 88] Bei der Durchf\u00fchrung der Messungen ka- men Schallpegelmesser der Firma Norsonic-Tippkemper GmbH, Typ 140 (geeicht), zum Einsatz.", + "embedding": [ + 0.003337098052725196, + 0.02973753772675991, + 0.0025688568130135536, + -0.03308752179145813, + -0.0024287374690175056, + 0.025524290278553963, + -0.012498011812567711, + -0.01866971142590046, + -0.004161708988249302, + -0.009444373659789562, + 0.010893885977566242, + 0.019288169220089912, + -0.01508780661970377, + 0.008297649212181568, + -0.006661311723291874, + 0.01410858053714037, + 0.03414405509829521, + 0.007344192359596491, + 0.013058490119874477, + -0.008516686037182808, + 0.00036298189661465585, + -0.0041939206421375275, + 0.0030488062184304, + 0.0022741227876394987, + -0.024145644158124924, + 0.010217446833848953, + 0.03651481121778488, + -0.01316800806671381, + -0.026464862748980522, + 0.011428594589233398, + 0.010539560578763485, + -0.012298301793634892, + -0.01485588401556015, + -0.0065904464572668076, + -0.018515096977353096, + -0.027521396055817604, + -0.005459827370941639, + -0.02061527781188488, + 0.026954475790262222, + -0.011164461262524128, + 0.014160118997097015, + 0.00728621194139123, + 0.009096491150557995, + -0.03483982011675835, + 0.0072411163710057735, + 0.030459072440862656, + 0.030046766623854637, + 0.010159466415643692, + -0.009057837538421154, + 0.014404925517737865, + 0.02198104001581669, + 0.001550172222778201, + -0.002609121147543192, + 0.016556644812226295, + 0.0014503169804811478, + -0.006075064651668072, + -0.008072169497609138, + 0.009972640313208103, + -0.0028152738232165575, + -0.024635257199406624, + -0.047698598355054855, + 0.014160118997097015, + -0.02008701115846634, + 0.008832357823848724, + -0.02450641058385372, + -0.003604452358558774, + 0.004577235784381628, + -0.0026445535477250814, + 0.00790467020124197, + 0.005031416192650795, + 0.028371775522828102, + 0.02968600019812584, + 0.0007609936292283237, + 0.0031857045833021402, + 0.02352718450129032, + -0.02101469784975052, + 0.00682236859574914, + -0.007234673947095871, + -0.004126276820898056, + -0.001982609974220395, + 0.028011009097099304, + -0.012903875671327114, + -0.03290713578462601, + 0.053445108234882355, + 0.008581109344959259, + 0.004905791953206062, + -0.006000978406518698, + -0.0018263846868649125, + -0.02299891971051693, + 0.0037300768308341503, + 0.004261564463376999, + 0.053393568843603134, + -0.0013246926246210933, + -0.008581109344959259, + 0.027547163888812065, + 0.0003354008949827403, + -0.004593341611325741, + 0.015564534813165665, + -0.016530875116586685, + -0.02629736252129078, + -0.008568224497139454, + -0.003132555866613984, + 0.0014728648820891976, + 0.005327760707587004, + -0.026542169973254204, + -0.008986972272396088, + -0.0012908707140013576, + 0.0036173369735479355, + -0.003591567976400256, + -0.022225845605134964, + -0.022122768685221672, + 0.01296829804778099, + -0.010861674323678017, + -0.002844264032319188, + 0.029995229095220566, + 0.0014785019448027015, + 0.031489837914705276, + 0.00188275461550802, + -0.0004827679367735982, + -0.00933485571295023, + 0.019043361768126488, + 0.02062816172838211, + 0.022638151422142982, + -0.013258200138807297, + 0.03110329993069172, + -0.007588998880237341, + -0.01580934040248394, + 0.009437931701540947, + -0.01779356226325035, + -0.004029642324894667, + -0.049579743295907974, + 0.009985525161027908, + 0.023643147200345993, + 0.007170251104980707, + -0.006886790972203016, + 0.008548897691071033, + -0.007653421722352505, + 0.005971988197416067, + -0.025653135031461716, + -0.030948685482144356, + 0.017033372074365616, + 0.015190882608294487, + -0.04651321843266487, + -0.04105016961693764, + -0.003081017639487982, + 0.04352400451898575, + 0.012620415538549423, + 0.015667611733078957, + -0.009708506986498833, + -0.003037532325834036, + -0.020434893667697906, + -0.04014825448393822, + 0.0065678986720740795, + -0.008742165751755238, + -0.01622164621949196, + 0.011544555425643921, + 0.0035303663462400436, + 0.008014189079403877, + -0.01726529560983181, + -0.002593015320599079, + 0.016453567892313004, + -0.004203584045171738, + 0.014082811772823334, + 0.011132249608635902, + 0.03192790970206261, + 0.0018891969230026007, + -0.0029280136805027723, + -0.01816721260547638, + -0.006609773263335228, + -0.004838148131966591, + -0.0047930520959198475, + 0.01861817203462124, + 0.006058958824723959, + 0.021877963095903397, + -0.019030477851629257, + 0.005740066524595022, + 0.018824325874447823, + 0.007382846437394619, + -0.026671014726161957, + -0.029608692973852158, + -0.012601088732481003, + -0.005482375156134367, + 0.016414914280176163, + 0.014778576791286469, + -0.018308943137526512, + 0.006220015697181225, + 0.0023176081012934446, + 0.02210988476872444, + -0.0022580171935260296, + -0.005601557437330484, + 0.0025946260429918766, + 0.00934773962944746, + 0.0008068948518484831, + -0.033345211297273636, + -0.6411351561546326, + -0.0015244031092152, + 0.009231778793036938, + 0.006174919661134481, + -0.012787913903594017, + 0.04398784786462784, + 0.008400725200772285, + 0.007640537340193987, + -0.0009341297554783523, + 0.03612827509641647, + -0.004834926687180996, + 0.015667611733078957, + 0.0001948787976289168, + -0.004538582172244787, + -0.000978420372121036, + -0.016891643404960632, + -0.012143686413764954, + -0.00790467020124197, + 0.01816721260547638, + -0.000935740303248167, + -0.016440683975815773, + 0.013606083579361439, + -0.01682722009718418, + 0.0010396220022812486, + 0.01075215544551611, + -0.01578357256948948, + 0.005453384947031736, + 0.00058302580146119, + 0.012124359607696533, + 0.0029119078535586596, + -0.008916107937693596, + 0.009676296263933182, + -0.024802755564451218, + 0.027521396055817604, + 0.03690134733915329, + 0.021439889445900917, + -0.004403294529765844, + 0.027495626360177994, + -0.0032018101774156094, + 0.014765692874789238, + -0.004583678208291531, + -0.02019008807837963, + 0.007975535467267036, + -0.007898228242993355, + 0.010481580160558224, + -0.0070671746507287025, + 0.048729363828897476, + -0.020422009751200676, + 0.01316800806671381, + -0.01921086199581623, + 0.015422804281115532, + -0.003346761455759406, + 0.026155633851885796, + 0.010881001129746437, + 0.024789871647953987, + -0.008561782538890839, + 0.03677250072360039, + -0.022676805034279823, + -0.013786466792225838, + 0.027985239401459694, + 0.01779356226325035, + 0.019455667585134506, + 0.006629100069403648, + -0.029969459399580956, + -0.022625267505645752, + 0.011151576414704323, + -0.021852193400263786, + -0.036643654108047485, + 0.015216651372611523, + -0.02966023050248623, + -0.0068739065900444984, + 0.014366271905601025, + -0.025511406362056732, + -0.027057550847530365, + 0.026980243623256683, + 0.029866382479667664, + 0.0036237791646271944, + -0.025099100545048714, + -0.0032356323208659887, + 0.017123565077781677, + -0.013670505955815315, + 0.005885017570108175, + -0.018553750589489937, + -0.0026284479536116123, + 0.0344790518283844, + 0.0017200872534886003, + -0.003343540243804455, + 0.002411021152511239, + 0.016956064850091934, + 0.004731850232928991, + 0.030742531642317772, + 0.033731747418642044, + 0.004271227866411209, + -0.014701269567012787, + -0.01099696196615696, + 0.03733942285180092, + -0.00430021807551384, + 0.014533770270645618, + 0.009708506986498833, + -0.005359972361475229, + -0.03308752179145813, + 0.016118569299578667, + 0.010030620731413364, + -0.02919638715684414, + 0.0102689852938056, + -0.00022628488659393042, + -0.014121465384960175, + 0.015139344148337841, + 0.016530875116586685, + -0.02484140917658806, + 0.0034144052769988775, + -0.002581741428002715, + -0.008800146169960499, + -0.013296853750944138, + -0.0011636357521638274, + -0.019468553364276886, + 0.025008907541632652, + 0.01827028952538967, + 0.016659721732139587, + -0.02009989507496357, + 0.0004602199769578874, + -0.004161708988249302, + 0.03301021456718445, + -0.009006299078464508, + -0.024751218035817146, + 0.029016003012657166, + 0.026490632444620132, + 0.012865221127867699, + -7.106633711373433e-05, + -0.0316702201962471, + 0.006455158814787865, + 0.0020872969180345535, + 0.012813683599233627, + -0.009714949876070023, + 0.01312935445457697, + 0.019855089485645294, + 0.0264133233577013, + -0.004000652115792036, + 0.01488165371119976, + -0.013786466792225838, + -0.01778067648410797, + -0.012626857496798038, + -0.0015558091690763831, + -0.02591082639992237, + -0.011273980140686035, + -0.02017720229923725, + -0.010017736814916134, + -0.004090844187885523, + 0.008928991854190826, + -0.011905322782695293, + 0.010397830978035927, + -0.01875990256667137, + -0.018901633098721504, + 0.01734260283410549, + -0.006558235269039869, + 0.005446942988783121, + -0.010159466415643692, + -0.009779372252523899, + -0.008928991854190826, + -0.02726370468735695, + 0.017368370667099953, + 0.010636194609105587, + -0.05787739157676697, + -0.00515381945297122, + -0.023050457239151, + -0.01873413287103176, + 0.010049947537481785, + -0.010153024457395077, + -0.02832023799419403, + -0.046307068318128586, + -0.00048317055916413665, + 0.01361896749585867, + -0.010881001129746437, + 0.020885853096842766, + -0.007627652492374182, + 0.008632647804915905, + -0.02244488336145878, + -0.017110681161284447, + -0.003459501313045621, + -0.011673401109874249, + 0.0065678986720740795, + -0.020808545872569084, + -0.02196815423667431, + -0.008400725200772285, + 0.024300258606672287, + -0.009160913527011871, + 0.018386250361800194, + -0.0051473770290613174, + -0.005591894034296274, + 0.03790634125471115, + -0.003343540243804455, + 0.018862979486584663, + -0.014263194985687733, + 0.005353529937565327, + -0.024094104766845703, + -0.009038510732352734, + 0.007080059498548508, + -0.017922407016158104, + -0.0012216162867844105, + 0.016402030363678932, + 0.02582063525915146, + -0.0008040763204917312, + 0.030020996928215027, + -0.028861388564109802, + 0.006403620354831219, + -0.029299462214112282, + 0.0023562617134302855, + -0.010352734476327896, + 0.02006124146282673, + 0.030304457992315292, + 0.010384946130216122, + -0.016968950629234314, + -0.0248800627887249, + -0.009418604895472527, + 0.004322765860706568, + 0.04594630002975464, + -0.01150590181350708, + 0.013335507363080978, + 0.011544555425643921, + -0.01812855899333954, + -0.005533913616091013, + 0.001128203235566616, + 0.04488976672291756, + -0.005849584937095642, + -0.007460153661668301, + 0.003614115761592984, + -0.006071843206882477, + 0.00515381945297122, + 0.012742818333208561, + -0.004615889396518469, + -0.010655521415174007, + 0.0004388799425214529, + 0.003251737914979458, + 0.01586087979376316, + 0.002609121147543192, + 0.016131455078721046, + 0.009624757803976536, + -0.00575295090675354, + 0.05854738876223564, + -0.001208731671795249, + 0.020422009751200676, + 0.015641842037439346, + -0.005675643682479858, + 0.0021082342136651278, + 0.013941081240773201, + -0.004448390565812588, + 0.00636174576357007, + 0.029840614646673203, + 0.0002802389208227396, + 0.012362724170088768, + -0.009444373659789562, + -0.006513139232993126, + -0.01622164621949196, + -0.005971988197416067, + 0.015293958596885204, + -0.0172395259141922, + 0.041514016687870026, + -3.0122664611553773e-05, + 0.017922407016158104, + 0.012839452363550663, + 0.01918509230017662, + 0.014546655118465424, + 0.020847199484705925, + -0.02628447860479355, + 0.006410062778741121, + 0.02346276305615902, + -0.03594788908958435, + -0.016917411237955093, + -0.014018388465046883, + -0.015744918957352638, + -0.006129824090749025, + 0.00753101846203208, + -0.0010090211872011423, + -0.011853784322738647, + 0.026439093053340912, + -0.005962324794381857, + -0.014018388465046883, + 0.03409251570701599, + 0.022393345832824707, + 0.025704674422740936, + -0.012072822079062462, + -0.031850602477788925, + 0.0032114735804498196, + 0.026645246893167496, + -0.005604778416454792, + -0.011911764740943909, + -0.021852193400263786, + 0.019958166405558586, + -0.033267904072999954, + 0.0010541171068325639, + -0.016672605648636818, + 0.007846689783036709, + -0.014559539966285229, + -0.009450816549360752, + 0.015242421068251133, + 0.006004199385643005, + 0.02301180362701416, + 0.013064932078123093, + 0.02497025392949581, + 0.024673910811543465, + -0.00015169542166404426, + -0.01771625317633152, + -0.026013903319835663, + -0.023720454424619675, + 0.011563882231712341, + 0.004493486136198044, + 0.003092291532084346, + -0.02868100441992283, + -0.004480601754039526, + -0.007653421722352505, + -0.02917061746120453, + 0.011306190863251686, + 0.0022113106679171324, + 0.006252226885408163, + -0.008722838945686817, + -0.0012103422777727246, + 0.0070220790803432465, + -0.008832357823848724, + 0.04553399235010147, + -0.0017732359701767564, + -0.01459819357842207, + -0.029376769438385963, + -0.003668875200673938, + -0.005115165840834379, + 0.02205834724009037, + 0.018360480666160583, + 0.008426494896411896, + 0.012588203884661198, + 0.010494465008378029, + -0.026542169973254204, + -0.013219546526670456, + -0.03934941068291664, + 0.00788534339517355, + 0.010732828639447689, + -0.010185235179960728, + -0.02015143446624279, + 0.02819139137864113, + -0.016427800059318542, + 0.0013303295709192753, + -0.0003092291590292007, + 0.01914643868803978, + -0.008497359231114388, + 0.012465800158679485, + -0.0054405005648732185, + -0.006545350421220064, + 0.005050742998719215, + 0.0012385272420942783, + 0.023720454424619675, + 0.004219689406454563, + -0.014830115251243114, + 0.02107912115752697, + 0.029840614646673203, + 8.390055882045999e-05, + -0.02770177833735943, + -0.0012804019497707486, + 0.02540832944214344, + 0.012085705995559692, + 0.012504453770816326, + -0.021452773362398148, + -0.006906117778271437, + -0.007357077207416296, + -0.00044411426642909646, + 0.014533770270645618, + -0.007653421722352505, + 0.008278322406113148, + 0.022431999444961548, + 0.013503006659448147, + -0.0025060446932911873, + 0.021800655871629715, + -0.003155103884637356, + 0.007395730819553137, + 0.01868259534239769, + -0.015036268159747124, + -0.015139344148337841, + 0.020228741690516472, + -0.0240296833217144, + -0.009399278089404106, + -0.00695121381431818, + 0.010107927955687046, + -0.04360131174325943, + 0.006584004033356905, + -0.015693379566073418, + -0.002452895976603031, + -0.011364171281456947, + -0.02539544552564621, + -0.003565798746421933, + 0.008091496303677559, + 0.0013850890100002289, + -0.03017561323940754, + -0.01056532934308052, + -0.011344844475388527, + 0.00790467020124197, + -0.0011491406476125121, + 0.01198907196521759, + 0.006899675820022821, + -0.01555164996534586, + -0.027985239401459694, + -0.00030520273139700294, + 0.013477237895131111, + 0.009927544742822647, + 0.02631024830043316, + -0.0011370613938197494, + -0.012304743751883507, + 0.009586104191839695, + 0.000446530117187649, + -0.008651974610984325, + -0.014559539966285229, + -0.02296026609838009, + -0.011422151699662209, + 0.022200077772140503, + -0.014752808026969433, + 0.014533770270645618, + -0.012375609017908573, + 0.018025483936071396, + 0.004206805024296045, + 0.0239008367061615, + -0.002224195282906294, + -0.009811583906412125, + -0.004722186829894781, + 0.003304886631667614, + 0.026065440848469734, + 0.008516686037182808, + 0.029866382479667664, + -0.01909490115940571, + 0.008362071588635445, + -0.0055178077891469, + -0.009644084610044956, + -0.014662615954875946, + 0.011776477098464966, + -0.00457401480525732, + -0.014971844851970673, + -0.003085849341005087, + 0.02339833974838257, + 0.018824325874447823, + 0.0073248655535280704, + -0.002800778718665242, + -0.01220166776329279, + -0.013026278465986252, + -0.0025640251114964485, + 0.004235795233398676, + 0.005717518273741007, + 0.020396240055561066, + 0.016118569299578667, + 0.0011789362179115415, + -0.00931552890688181, + -0.02976330742239952, + 0.035200584679841995, + 0.010623309761285782, + -0.004113391973078251, + 0.025691788643598557, + -0.009392836131155491, + -0.001123371534049511, + -0.015242421068251133, + 0.0004549856239464134, + -0.012794356793165207, + 0.026490632444620132, + 0.013110027648508549, + -0.006094391457736492, + -0.022818535566329956, + -0.00537929916754365, + 0.020357586443424225, + 0.026026787236332893, + 0.008787262253463268, + -0.013979734852910042, + -0.009708506986498833, + 0.012394935823976994, + -0.003100344445556402, + -0.00045055654481984675, + 0.018373366445302963, + -0.030072536319494247, + -0.021813539788126945, + 0.02674832195043564, + -0.018115675076842308, + 0.03514904901385307, + -0.018914517015218735, + 0.006629100069403648, + -0.031051762402057648, + -0.0034401745069772005, + -0.01008215919137001, + -0.02976330742239952, + 0.002870033262297511, + -0.005256895907223225, + 0.008155918680131435, + 0.021813539788126945, + 0.025730442255735397, + -0.016002608463168144, + 0.002278954489156604, + 0.0065195816569030285, + -0.005707854870706797, + -0.015242421068251133, + -0.019983934238553047, + -0.010378504171967506, + -0.020370470359921455, + 0.030433302745223045, + 0.014804346486926079, + -0.014443579129874706, + 0.006957656238228083, + 0.0019536197651177645, + 0.00930908601731062, + 0.030974455177783966, + -0.01868259534239769, + -0.022161424160003662, + 0.0035464719403535128, + -0.013219546526670456, + 0.006377851590514183, + -0.004686754662543535, + 0.014288963750004768, + 0.021736232563853264, + -0.02927369438111782, + -0.01534549705684185, + -0.004506370984017849, + -0.014649731107056141, + -0.0172395259141922, + -0.014946076087653637, + 0.008851684629917145, + -0.028629466891288757, + 0.014662615954875946, + 0.012671953067183495, + 0.0006470459047704935, + -0.0009961366886273026, + -0.025137754157185555, + -0.0215816181153059, + -0.027469856664538383, + 0.013915312476456165, + 0.002839432330802083, + 0.011351287364959717, + 0.006232900079339743, + -0.00914802961051464, + -0.0022805649787187576, + -0.007685632910579443, + 0.02540832944214344, + -0.010938981547951698, + -0.007750055752694607, + -0.020254509523510933, + -0.02927369438111782, + -0.020460663363337517, + -0.0013440194306895137, + -0.015358381904661655, + -0.0008221952593885362, + 0.01825740560889244, + 0.006068622227758169, + 0.016054147854447365, + -0.0032597908284515142, + 0.010314080864191055, + -0.011267537251114845, + 0.0025575829204171896, + 0.00931552890688181, + -0.000224472998525016, + 0.02347564697265625, + 0.009901775047183037, + -0.031953681260347366, + -0.026207171380519867, + -0.05068781226873398, + 0.03259790688753128, + -0.013812235556542873, + 0.03110329993069172, + 0.009399278089404106, + -0.021723348647356033, + -0.004999205004423857, + 0.009212451986968517, + 0.00814947672188282, + -0.0027444087900221348, + 0.002320829313248396, + 0.01578357256948948, + 0.018489327281713486, + 0.0009309086017310619, + 0.005830258131027222, + 0.0034240686800330877, + 0.003092291532084346, + -0.00910293310880661, + 0.003219526493921876, + 0.010236773639917374, + -0.017999714240431786, + -0.013722044415771961, + -0.009702065028250217, + 0.01776779256761074, + 0.013838005252182484, + 0.015409919433295727, + 0.016414914280176163, + -0.03203098848462105, + -0.014314733445644379, + -0.035690199583768845, + -0.008780819363892078, + 0.007060732692480087, + -0.017394140362739563, + 0.054424334317445755, + 0.0036720961797982454, + -0.0037365190219134092, + 0.01820586621761322, + 0.009876006282866001, + 0.0009276875061914325, + -0.010352734476327896, + -0.007659864146262407, + 0.017819330096244812, + -0.01861817203462124, + 0.009463700465857983, + 0.01875990256667137, + -0.005572567228227854, + 0.008748608641326427, + 0.00316637777723372, + -0.0025656356010586023, + -0.004354977514594793, + -0.006265111733227968, + -0.002636500634253025, + -0.008703512139618397, + 0.019520090892910957, + -0.025653135031461716, + 0.010603982955217361, + -0.025730442255735397, + -0.021182198077440262, + 0.006326313130557537, + -0.04411669448018074, + 0.024081220850348473, + -0.018064137548208237, + -0.01866971142590046, + 0.007608325686305761, + 0.004351756069809198, + 0.012369166128337383, + -0.014301848597824574, + -0.04025132954120636, + -0.0066419849172234535, + 0.02593659609556198, + -0.00453536119312048, + 0.01622164621949196, + 0.007228231523185968, + -0.001546145766042173, + -0.010642636567354202, + 0.012755703181028366, + -0.0012377218808978796, + -0.02966023050248623, + 0.02106623724102974, + -0.009057837538421154, + -0.02250930666923523, + -0.025627367198467255, + 0.012671953067183495, + 0.023720454424619675, + -0.017136448994278908, + -0.015074921771883965, + 0.018914517015218735, + 0.015448573976755142, + 0.011422151699662209, + -0.02062816172838211, + -0.025124870240688324, + 0.0008858126820996404, + 0.0018054473912343383, + -0.01030119601637125, + 0.017832215875387192, + -0.024106990545988083, + 0.001459980383515358, + 0.021195081993937492, + -0.010661963373422623, + -0.0029843836091458797, + -0.0245192963629961, + -0.03527789190411568, + -0.006306986324489117, + 0.0016266742022708058, + -0.03308752179145813, + -0.009470143355429173, + -0.028114084154367447, + -0.016170108690857887, + -0.0033177712466567755, + 0.005057185422629118, + 0.00552747119218111, + 0.030871378257870674, + 0.02162027172744274, + -0.008258995600044727, + -0.015371265821158886, + 0.022187191992998123, + -0.0018908075289800763, + -0.0029392875730991364, + 0.02870677411556244, + -0.012446473352611065, + -0.02734101191163063, + -0.0018634278094395995, + -0.024583717808127403, + 0.022779881954193115, + 0.012781471945345402, + -0.01575780287384987, + 0.01364473719149828, + 0.012639742344617844, + -0.03249483183026314, + -0.023205071687698364, + -4.1698625864228234e-05, + -0.020383356139063835, + -0.0004288138879928738, + 0.03169598802924156, + -0.017020488157868385, + 0.0316702201962471, + -0.004783388692885637, + 0.03612827509641647, + -0.02106623724102974, + -0.029479846358299255, + -0.012890990823507309, + 0.0008584330207668245, + 0.009392836131155491, + -0.0032823386136442423, + -0.037210576236248016, + 0.011190230026841164, + 0.04360131174325943, + -0.005198915489017963, + 0.03298444300889969, + 0.00047994943452067673, + -0.0013657620875164866, + -0.030794071033596992, + 0.023140648379921913, + 0.019971050322055817, + 0.03112906962633133, + -0.012336955405771732, + 0.007878901436924934, + -0.021465657278895378, + -0.01028186921030283, + 0.005556461401283741, + -0.0024851071648299694, + -0.031902141869068146, + -0.01368339080363512, + 0.01869547925889492, + -0.009644084610044956, + 0.003817047458142042, + 0.008439378812909126, + -0.021311042830348015, + 0.007820921018719673, + -0.009605430997908115, + 0.02636178582906723, + 0.008986972272396088, + -0.041977860033512115, + 0.0037461824249476194, + 0.022251615300774574, + -0.024364681914448738, + -0.02873254381120205, + 0.007189577911049128, + 6.067942649679026e-06, + 0.012897432781755924, + -6.9204113970045e-05, + -0.013567429035902023, + 0.0023965260479599237, + -0.004770503845065832, + 0.008497359231114388, + -0.011132249608635902, + -0.001737803453579545, + -0.0182187519967556, + -0.015512996353209019, + -0.029402539134025574, + 0.04687398672103882, + 0.0117056118324399, + -0.0029602251015603542, + 0.013387045823037624, + -0.008452263660728931, + -0.014417809434235096, + -0.007872459478676319, + -0.018540864810347557, + 0.010384946130216122, + -0.035123277455568314, + 0.0005753756267949939, + -0.0005459827370941639, + -0.023140648379921913, + -0.013122912496328354, + -0.02388795278966427, + -0.006120160687714815, + -0.01619587652385235, + -0.005952661391347647, + 0.1883205622434616, + -0.03803518787026405, + -0.004174593836069107, + 0.008851684629917145, + -0.031025992706418037, + -0.011209556832909584, + 0.02485429309308529, + -0.022277384996414185, + 0.001288454863242805, + 0.01717510260641575, + 0.013606083579361439, + 0.004966993350535631, + -0.004048969130963087, + 0.004635216202586889, + 0.008239668793976307, + -0.030794071033596992, + -0.0364375039935112, + -0.004992762580513954, + -0.01506203692406416, + 0.025150638073682785, + 0.016466453671455383, + -0.015667611733078957, + -0.012562435120344162, + -0.006000978406518698, + 0.052079346030950546, + 0.014044158160686493, + 0.005769056733697653, + 0.003904018085449934, + 0.046255528926849365, + 0.027521396055817604, + -0.037545572966337204, + -0.004287333693355322, + 0.02442910335958004, + -0.009457258507609367, + 0.008278322406113148, + 0.004251901060342789, + 0.003742961212992668, + -0.009586104191839695, + 0.014121465384960175, + 0.028577927500009537, + -0.006919002626091242, + -0.0234112236648798, + -0.012536665424704552, + -0.018373366445302963, + -0.0003233216411899775, + 0.024570833891630173, + -0.018824325874447823, + 4.6228349674493074e-05, + 0.004847811535000801, + -0.0038750278763473034, + -0.015989724546670914, + 0.004776946268975735, + 0.011892437934875488, + 0.028835618868470192, + -0.00405541155487299, + -0.034247130155563354, + 0.011885995976626873, + -0.013992619700729847, + -0.004425842314958572, + -0.0008391062146984041, + -0.033809054642915726, + 0.017007604241371155, + -0.015487227588891983, + 0.03723634406924248, + -0.026129864156246185, + 0.008091496303677559, + -0.018605288118124008, + 0.009605430997908115, + -0.015912417322397232, + -0.01963605172932148, + -0.013580313883721828, + -0.009141586720943451, + -0.01964893564581871, + 0.010481580160558224, + -0.015074921771883965, + -0.03968440741300583, + 0.010333407670259476, + 0.0026010682340711355, + 0.028887158259749413, + 0.023153534159064293, + -0.004016757942736149, + -0.012697722762823105, + -0.006809483747929335, + -0.00794976670295, + 0.004000652115792036, + -0.02011278085410595, + 0.019301053136587143, + 0.003346761455759406, + 0.017394140362739563, + -0.024184297770261765, + -0.02066681534051895, + -0.016981834545731544, + 0.007415057625621557, + -0.01816721260547638, + 0.020872969180345535, + -0.015036268159747124, + 0.008735723793506622, + 0.007408615201711655, + 0.008246110752224922, + 0.0022612381726503372, + -0.030201381072402, + 0.06818503141403198, + 0.01774202287197113, + -0.014430694282054901, + -0.002541477093473077, + 0.005047522019594908, + -0.015435689128935337, + 0.02723793499171734, + -0.004648101050406694, + 0.000547995965462178, + -0.01682722009718418, + -0.032855600118637085, + 0.011531670577824116, + -0.02544698305428028, + 0.008555340580642223, + 0.016131455078721046, + 0.032288677990436554, + -0.0023353244177997112, + -0.0023095551878213882, + 0.004603005014359951, + -0.001561446231789887, + 0.018785672262310982, + 0.020963160321116447, + 0.005034637171775103, + 0.00016337205306626856, + -0.031360991299152374, + -0.03633442521095276, + 0.01823163591325283, + 0.02110489085316658, + -0.014095695689320564, + 0.02880985103547573, + -0.022921612486243248, + 0.020782776176929474, + 0.012916759587824345, + -0.002705755177885294, + -0.01962316781282425, + -0.008664858527481556, + -0.02155585028231144, + 0.0053921835497021675, + 0.008014189079403877, + 0.027598703280091286, + 0.002800778718665242, + 0.010823020711541176, + 0.018283173441886902, + 0.008349187672138214, + -0.0011620252626016736, + 0.030072536319494247, + -0.002908686874434352, + -0.02687716856598854, + -0.020976044237613678, + -0.013258200138807297, + 0.0034788281191140413, + 0.022857189178466797, + -0.015474342741072178, + 0.024545064195990562, + 0.015925301238894463, + -0.01819298230111599, + -0.029866382479667664, + 0.016981834545731544, + 0.014727039262652397, + -0.03483982011675835, + -0.015938187018036842, + -0.01914643868803978, + -0.010391388088464737, + -0.002549530006945133, + -0.009180240333080292, + -0.16121147572994232, + 0.007543903309851885, + 0.0037365190219134092, + -0.02204546146094799, + 0.01779356226325035, + 0.0056724222376942635, + 0.02196815423667431, + 0.02245776727795601, + -0.016659721732139587, + 0.007260443177074194, + 0.011151576414704323, + -0.010842347517609596, + -0.01721375621855259, + -0.024596603587269783, + -0.006983425468206406, + -0.00480915792286396, + -0.013928196392953396, + 0.01671125926077366, + 0.0253696758300066, + 0.03112906962633133, + -0.0011950418120250106, + -0.03063945658504963, + 0.009779372252523899, + 0.006828810553997755, + -0.007840247824788094, + 0.036205582320690155, + -0.0018199424957856536, + 0.022857189178466797, + -0.007337750401347876, + -0.010681290179491043, + -0.019520090892910957, + -0.012858779169619083, + 0.004483822733163834, + 0.015693379566073418, + 0.0025994577445089817, + -0.004934782162308693, + 0.021749118342995644, + -0.015435689128935337, + 0.0010146581334993243, + 0.03192790970206261, + 0.0062973229214549065, + 0.04184901341795921, + -0.014585308730602264, + 0.015719149261713028, + 0.008986972272396088, + 0.014340502209961414, + 0.011460806243121624, + -0.029479846358299255, + 0.0036173369735479355, + -0.00777582498267293, + 0.003330655861645937, + -0.025524290278553963, + -0.005723960697650909, + 0.022754112258553505, + 0.0007070396095514297, + 0.010004851967096329, + -0.017407024279236794, + 0.028938695788383484, + -0.0019069131230935454, + 0.004277670290321112, + -0.003952335100620985, + -0.029376769438385963, + 0.010913212783634663, + -0.004796273075044155, + -0.003079407149925828, + -0.013838005252182484, + -0.0033242134377360344, + 0.029995229095220566, + -0.025730442255735397, + -0.008020631037652493, + 0.0014366271207109094, + -0.017458563670516014, + 0.013180892914533615, + 0.00979869905859232, + 0.010977635160088539, + 0.01721375621855259, + -0.012884548865258694, + -0.009508796967566013, + -0.011544555425643921, + -0.020782776176929474, + -0.003122892463579774, + 0.03416982293128967, + -0.00023212318774312735, + -0.013180892914533615, + -0.02209700085222721, + -0.00957321934401989, + 0.0050378586165606976, + 0.015925301238894463, + 0.0006675806362181902, + 0.008722838945686817, + 0.024570833891630173, + -0.018888747319579124, + -0.0037010866217315197, + -0.026516400277614594, + -0.0015654726885259151, + -0.0059204502031207085, + -0.010236773639917374, + 0.004123055376112461, + -0.02011278085410595, + 0.019520090892910957, + -0.0034466166980564594, + -0.011544555425643921, + -0.029840614646673203, + 0.02728947438299656, + -0.010223888792097569, + 0.008033515885472298, + -0.015989724546670914, + 0.009541007690131664, + 0.03947825729846954, + -0.02062816172838211, + -0.012317628599703312, + 0.0024834966752678156, + 0.006229679100215435, + 0.013567429035902023, + 0.008278322406113148, + 0.0024834966752678156, + 0.019507206976413727, + -0.006912560202181339, + 0.0018360480898991227, + -0.008787262253463268, + 0.06035122647881508, + -0.013760698027908802, + -0.01872124895453453, + 0.015693379566073418, + -0.013161566108465195, + -0.0423128567636013, + -0.10034486651420593, + 0.007047847844660282, + 0.027418319135904312, + 0.00957321934401989, + 0.005923671182245016, + 0.01633760705590248, + 0.026619477197527885, + 0.0010186845902353525, + 0.008980530314147472, + 0.030046766623854637, + -0.0243904497474432, + -0.024699678644537926, + -0.01971335895359516, + -0.015074921771883965, + 0.003395078470930457, + -0.0009880837751552463, + 0.0012739597586914897, + -0.012169456109404564, + -0.029428308829665184, + 0.02870677411556244, + 0.003588346764445305, + -0.009508796967566013, + -0.009528123773634434, + -0.004680312238633633, + -0.022431999444961548, + -0.0032436850015074015, + -0.02489294670522213, + 0.002726692473515868, + 0.02164604142308235, + -0.005836700554937124, + 0.02545986697077751, + -0.011093595996499062, + 0.014868768863379955, + -0.01079725194722414, + -0.009212451986968517, + -0.004219689406454563, + -0.009425046853721142, + -0.00684169540181756, + 0.033345211297273636, + -0.008297649212181568, + -0.004599783569574356, + 0.008271880447864532, + 0.009321970865130424, + -0.013116470538079739, + 0.00841361004859209, + -0.03406674414873123, + -0.010584656149148941, + 0.023565838113427162, + 0.013528775423765182, + 0.002828158438205719, + -0.03824133798480034, + -0.010153024457395077, + -0.03692711517214775, + 0.0019552302546799183, + 0.047621291130781174, + 0.004371082875877619, + 0.016505107283592224, + -0.004851032514125109, + -0.026104094460606575, + 0.01481723040342331, + -0.010075717233121395, + 0.023862183094024658, + -0.023707568645477295, + 0.007183135952800512, + -0.010475138202309608, + -0.010030620731413364, + -0.033783286809921265, + 0.001587215345352888, + 0.02489294670522213, + -0.005946218967437744, + -0.021362580358982086, + -0.008039957843720913, + -0.006867464166134596, + 0.013000509701669216, + -0.018386250361800194, + 0.02391372248530388, + -0.058650463819503784, + -0.02149142697453499, + 0.006861022207885981, + -0.015564534813165665, + 0.005575788207352161, + -0.02159450389444828, + 0.014508001506328583, + -0.024300258606672287, + 0.03259790688753128, + 0.013631852343678474, + 0.021671811118721962, + -0.02203257754445076, + 0.018399134278297424, + -0.011364171281456947, + -0.03063945658504963, + 0.024313142523169518, + 0.015538765117526054, + 0.004400073084980249, + -0.02254796028137207, + 0.021182198077440262, + 0.00611693924292922, + -0.004648101050406694, + -0.0025736885145306587, + -0.00016327138291671872, + -0.011673401109874249, + -0.008020631037652493, + -0.02589794248342514, + 0.02307622693479061, + 0.0074988072738051414, + -0.001122566289268434, + -0.023643147200345993, + -0.008310534060001373, + 0.029402539134025574, + 0.013747813180088997, + 0.03365444019436836, + -0.0008004525443539023, + -0.009882448241114616, + -0.0014551486819982529, + 0.0011040447279810905, + -0.005636990070343018, + -0.03834441676735878, + -0.02631024830043316, + 0.009276875294744968, + 0.0215816181153059, + -0.0023820309434086084, + 0.0020953495986759663, + -0.010900327935814857, + -0.016840104013681412, + 0.004087623208761215, + 0.02495737001299858, + -0.02017720229923725, + -0.023604493588209152, + -0.006010641809552908, + -0.011512343771755695, + -0.0020083789713680744, + 0.00635208236053586, + -0.002989215310662985, + 0.006290880963206291, + -0.013941081240773201, + -0.005901123397052288, + -0.020860083401203156, + -0.019017593935132027, + 0.005108723416924477, + 0.030871378257870674, + 0.01774202287197113, + 0.04161709174513817, + -0.023346802219748497, + -0.00981802586466074, + 0.000195784741663374, + -0.041900552809238434, + -0.006790156941860914, + 0.0037075288128107786, + 0.0054662697948515415, + -0.014971844851970673, + 0.005472711753100157, + -0.011080712080001831, + 0.028912926092743874, + 0.025163523852825165, + 0.010868116281926632, + -0.0003571435809135437, + 0.000999357784166932, + -0.00792399700731039, + 0.004970214329659939, + 0.009534565731883049, + 0.004335650708526373, + -0.03396366909146309, + 0.02880985103547573, + 0.0031470509711652994, + -0.009631199762225151, + -0.02115642838180065, + 0.0019536197651177645, + -0.010945423506200314, + -0.019391246140003204, + -0.03744249790906906, + 0.009921101853251457, + -0.004896128550171852, + -0.019790666177868843, + -0.00037123606307432055, + 0.03391212970018387, + 0.02731524221599102, + -0.017484331503510475, + 0.008890338242053986, + 0.008478032425045967, + -0.00575295090675354, + -0.00788534339517355, + 0.014327618293464184, + 0.028165623545646667, + 0.0014696437865495682, + -0.007917555049061775, + -0.011151576414704323, + 0.030278688296675682, + 0.006422947160899639, + -0.015281074680387974, + -0.002412631642073393, + 0.00979869905859232, + 0.005443721543997526, + -0.038138262927532196, + 0.03422136232256889, + -0.014997614547610283, + -0.006854579783976078, + 0.01006283238530159, + 0.01685298979282379, + 0.008536013774573803, + -0.0012288638390600681, + 0.03646327182650566, + 0.04019979014992714, + 0.018540864810347557, + 0.006693522911518812, + 0.007292654365301132, + -0.02723793499171734, + -0.024532180279493332, + 0.029479846358299255, + 0.004235795233398676, + -0.03411828354001045, + 0.008935434743762016, + 0.008400725200772285, + -0.004770503845065832, + 0.008123707957565784, + -0.021465657278895378, + 0.0017200872534886003, + -0.013850889168679714, + 0.014778576791286469, + -0.012163014151155949, + -0.011583209037780762, + -0.022393345832824707, + 0.017458563670516014, + 0.030433302745223045, + 0.004280891269445419, + -0.002789504826068878, + 0.004358198493719101, + 0.016427800059318542, + -0.02976330742239952, + 0.011621862649917603, + -0.013953966088593006, + -0.003939450718462467, + -0.0022547959815710783, + 0.009418604895472527, + -0.005198915489017963, + -0.01921086199581623, + 0.01148657500743866, + -0.007859574630856514, + -0.009734276682138443, + 0.017832215875387192, + 0.004677091259509325, + -0.0030488062184304, + 0.11307479441165924, + 0.015525881201028824, + 0.0025978470221161842, + 0.0052214632742106915, + -0.0018215529853478074, + 0.013554545119404793, + -0.005118386819958687, + 0.011319075711071491, + 0.0028635908383876085, + -0.033319443464279175, + 0.01726529560983181, + 0.0003551303525455296, + 0.0009011130896396935, + -0.025086216628551483, + -0.010223888792097569, + 0.036179810762405396, + -0.018850093707442284, + 0.010430041700601578, + -0.009302644059062004, + -0.0030037104152143, + 0.049992047250270844, + -0.0003796915407292545, + 0.007769382558763027, + 0.042854007333517075, + -0.004058632533997297, + -0.03197944909334183, + 0.013013393618166447, + 0.006790156941860914, + 0.00033217977033928037, + -0.011654074303805828, + 0.0005423589609563351, + 0.021852193400263786, + -0.06091814488172531, + -0.02491871640086174, + 0.01081013586372137, + -0.018540864810347557, + -0.00226768059656024, + -0.019275285303592682, + 0.00933485571295023, + 0.009270432405173779, + 0.0220712311565876, + 0.03357713297009468, + 0.0001744447072269395, + -0.024210065603256226, + 0.008961203508079052, + 0.006648426875472069, + 0.0012361113913357258, + -0.016543760895729065, + -0.0031905362848192453 + ], + "metadata": { + "source": "Thesis_Verladegeraeusche_in_Speditionen.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 41, + "has_images": true, + "image_count": 51, + "coordinates": "CoordinatesMetadata(points=((204.16666666666666, 189.02777777777797), (204.16666666666666, 642.3611111111111), (936.1666666666666, 642.3611111111111), (936.1666666666666, 189.02777777777797)), system=)", + "links": [], + "last_modified": "2025-05-05T22:59:16", + "_known_field_names": "frozenset({'cc_recipient', 'link_texts', 'url', 'filetype', 'category_depth', 'page_number', 'filename', 'orig_elements', 'detection_origin', 'email_message_id', 'page_name', 'coordinates', 'table_as_cells', 'link_start_indexes', 'sent_to', 'bcc_recipient', 'languages', 'last_modified', 'link_urls', 'file_directory', 'subject', 'data_source', 'detection_class_prob', 'image_base64', 'text_as_html', 'attached_to_filename', 'key_value_pairs', 'signature', 'sent_from', 'header_footer_type', 'parent_id', 'links', 'emphasized_text_contents', 'emphasized_text_tags', 'image_mime_type', 'is_continuation', 'image_path'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "Thesis_Verladegeraeusche_in_Speditionen.pdf", + "detection_class_prob": 0.2568194270133972, + "parent_id": "d45475a34bc527cde6987546fa6dd2f5", + "text_as_html": "
Flurf\u00f6rderger\u00e4t |Anzahl Einzelereignisse ElMax-PegelSchallleistungspegel
LAFmaxLWA,5sLWAmaxLWA,1hKlLWAT,1h
[dB(A)][dB(A)][dB(A)][dB(A)][dB(A)][dB(A)]
Gabelstapler29769,3100,7108,872,15,777,8
STABW [dB]6,54,96,54,92,9-
Gabelhubwagen9968,6100,7108,172,16,279,5
STABW [dB]6,45,16,4512,7-
", + "id": "5ba44de7-0ff3-4c0c-b018-67e92171e1c2", + "processing_timestamp": "2025-05-06T14:18:19.298665", + "chunk_number": 36, + "total_chunks": 49, + "chunking_strategy": "hybrid", + "word_count": 486 + } +} \ No newline at end of file diff --git a/data/processed/85fd305f-83de-70b0-47e8-2dc000000037.json b/data/processed/85fd305f-83de-70b0-47e8-2dc000000037.json new file mode 100644 index 0000000000000000000000000000000000000000..46d786999fee875fe129b08c24bdea8ee7c3adcb --- /dev/null +++ b/data/processed/85fd305f-83de-70b0-47e8-2dc000000037.json @@ -0,0 +1,1570 @@ +{ + "id": "85fd305f-83de-70b0-47e8-2dc000000037", + "content": "Diese Art von Fehlern beeinflusst die Genauigkeit der gemessenen Werte. [87, 88] Bei der Durchf\u00fchrung der Messungen ka- men Schallpegelmesser der Firma Norsonic-Tippkemper GmbH, Typ 140 (geeicht), zum Einsatz. Diese Schallpegelmesser weisen eine Messunsicherheit von \u00b1 0,5 dB auf und bieten somit eine hohe Genauigkeit bei der Erfassung der Schalldruckpegel. Durch die Verwendung geeichter Messger\u00e4te wird sichergestellt, dass die ermittelten Werte zu- verl\u00e4ssig und pr\u00e4zise sind. Die Eichdaten sind in Tabelle 9 zu finden. Dar\u00fcber hinaus wur- den die Entfernungen mithilfe eines Laser-Entfernungsmesser der Firma Bosch GLM 40 erfasst. Bei der Messung von Entfernungen k\u00f6nnen ebenfalls Abweichungen auftreten. Dies kann durch verschiedene Faktoren wie beispielsweise die Helligkeit, die den Laser beeinflusst, bedingt sein. Es ist daher m\u00f6glich, dass es zu leicht abweichenden Abst\u00e4n- den kommt. Bei der Ermittlung der Messabst\u00e4nde wurden die Positionen mithilfe des Programms SoundPlan 9.0 nachgebildet und ausgemessen. Es ist jedoch wichtig zu be- achten, dass bei diesem Prozess Fehler auftreten k\u00f6nnen. Insbesondere kann es zu Ab- weichungen kommen, da nicht immer die genauen Positionen exakt digitalisiert werden k\u00f6nnen. Dadurch k\u00f6nnen Varianzen von bis zu 2 Metern auftreten, was wiederum zu einer Unsicherheit von \u00b1 2 dB in den Berechnungen f\u00fchren kann. Diese Abweichungen k\u00f6nnen verschiedene Ursachen haben, wie z.B. ungenaue Angaben \u00fcber die genaue Po- sitionierung der Messpunkte oder Schwierigkeiten bei der \u00dcbertragung der realen Posi- tionen in das Programm. Des Weiteren wurden bei der Messung die Anh\u00e4nger immer von unterschiedlichen Personen beladen, welches ebenfalls zu Messungenauigkeiten und Unsicherheiten f\u00fchrt, da jedes Lagerpersonal seine eigene Vorgehensweise und Technik hat, was zu Variationen in der L\u00e4rmemission f\u00fchren kann. Dennoch k\u00f6nnen die Messungenauigkeiten aufgrund der unterschiedlichen Personen, die den Beladevorgang durchf\u00fchren, nicht vollst\u00e4ndig vermieden werden k\u00f6nnen. Hierbei kommt sch\u00e4tzungs- weise eine Unsicherheit von \u00b1 3 dB hinzu. Dar\u00fcber hinaus ist es wichtig zu beachten, dass bei der Annahme einer kugelf\u00f6rmigen Messfl\u00e4che Winkelfehler auftreten k\u00f6nnen. Diese Annahme basiert darauf, dass die Schallintensit\u00e4t an allen Stellen der Messfl\u00e4che\nsenkrecht hindurchstrahlt. F\u00fcr reale Schallquellen ist dies oft nicht der Fall, denn es ist\n\n## eine umfangreichere Voruntersuchung der Schallfeldstruktur erforderlich, um eine ge-\n\nnaue Messfl\u00e4chen zu bestimmen. Durch den Winkelfehler kann es zu Abweichungen in\nden Messergebnissen kommen, da die Schallintensit\u00e4t die Messfl\u00e4che nicht senkrecht\n73\n7 Ergebnisse und Interpretation\ndurchtritt. Um den Winkelfehler zu minimieren, sollte die Messfl\u00e4che einen Radius gr\u00f6- \u00dfer als die zweifache maximale Schallquellenabmessung aufweisen. Dadurch wird eine bessere Ann\u00e4herung an die tats\u00e4chliche Schallfeldstruktur erzielt und genauere Mess- ergebnisse k\u00f6nnen erzielt werden. [89] Um eine genaue Schallleistungspegelberechnun- gen durchzuf\u00fchren, ist es wichtig die Richtcharakteristik der Quelle zu untersuchen.", + "embedding": [ + 0.004760488402098417, + 0.02130398526787758, + 0.010786180384457111, + -0.03391768038272858, + -0.002771626692265272, + 0.01904195360839367, + -0.017457254230976105, + -0.01180217694491148, + -0.015118543989956379, + -0.022160233929753304, + 0.013303807936608791, + 0.02750220336019993, + -0.02193019725382328, + 0.015476379543542862, + 0.0035975235514342785, + 0.013342147693037987, + 0.031131677329540253, + 0.009220650419592857, + 0.008575269021093845, + -0.006575224921107292, + -0.016703244298696518, + 0.021355103701353073, + -0.019604265689849854, + 0.002068735659122467, + -0.018709678202867508, + 0.01536136120557785, + 0.025010136887431145, + -0.018952494487166405, + -0.04023091867566109, + 0.0022188988514244556, + 0.01998766139149666, + -0.01054336316883564, + -0.017725631594657898, + 0.010977878235280514, + -0.026505377143621445, + -0.007201436907052994, + -0.008875595405697823, + -0.003754076547920704, + 0.025010136887431145, + -0.0088500352576375, + 0.013099330477416515, + 0.008549709804356098, + 0.004597545601427555, + -0.015003525651991367, + 0.0021358297672122717, + 0.014888507314026356, + 0.027272166684269905, + 0.009610435925424099, + -0.014862948097288609, + 0.022351931780576706, + 0.018147366121411324, + -0.007099198177456856, + -0.019399788230657578, + 0.010779790580272675, + 0.013227129355072975, + -0.01209611352533102, + 0.02403886988759041, + 0.0024808854795992374, + -0.013444386422634125, + -0.008108804933726788, + -0.02670985460281372, + -0.0073228455148637295, + -0.01065199263393879, + 0.002445740858092904, + -0.012421999126672745, + -0.0130226518958807, + -0.010792570188641548, + 0.0019057928584516048, + -0.014965186826884747, + -0.013712762854993343, + 0.027246607467532158, + 0.02798783779144287, + 0.006460206583142281, + 0.01207694411277771, + 0.02655649557709694, + -0.012019434943795204, + 0.011118455789983273, + -0.010153578594326973, + 0.014517892152071, + 0.00551769370213151, + 0.012856513261795044, + -0.01149546168744564, + -0.03133615478873253, + 0.04575181007385254, + 0.001277983421459794, + -0.006326018366962671, + -0.012128063477575779, + 0.008843645453453064, + -0.017086638137698174, + -0.002565551782026887, + 0.009661555290222168, + 0.03908073529601097, + -0.0014584986492991447, + -0.013316587544977665, + 0.027885599061846733, + 0.00455920584499836, + 0.018339062109589577, + 0.014645691029727459, + -0.011016217060387135, + -0.017099419608712196, + -0.015987573191523552, + -0.0015519511653110385, + 0.010230258107185364, + -0.002295577898621559, + -0.01623038947582245, + -0.011687158606946468, + 0.013751101680099964, + 0.0013091342989355326, + -0.0035144544672220945, + -0.023553235456347466, + -0.01579587534070015, + 0.00808324571698904, + 0.01313767023384571, + 0.01262647658586502, + 0.041432224214076996, + -0.0014361338689923286, + 0.04273576661944389, + -0.0018514785915613174, + -0.007054468616843224, + -0.028447911143302917, + 0.026058083400130272, + 0.011623259633779526, + 0.016971619799733162, + -0.013080161064863205, + 0.0238982904702425, + -0.0029153998475521803, + -0.011406002566218376, + 0.0004956179764121771, + -0.016728803515434265, + -0.014364534057676792, + -0.008166314102709293, + 0.005268486682325602, + 0.0337132029235363, + 0.011278203688561916, + 9.095647692447528e-05, + 0.0037604663521051407, + -0.006207804661244154, + -0.008786136284470558, + -0.023668253794312477, + -0.03330424800515175, + 0.006520910654217005, + 0.010147188790142536, + -0.036831483244895935, + -0.02901022508740425, + -0.002739676972851157, + 0.028115635737776756, + 0.006236559245735407, + 0.011993874795734882, + 0.014108937233686447, + -0.0017875793855637312, + -0.011642429046332836, + -0.0140833780169487, + 0.02426890656352043, + 0.0016869382234290242, + -0.008722237311303616, + 0.013239908963441849, + -0.0020958927925676107, + 0.023399876430630684, + -0.028652388602495193, + -0.019220871850848198, + -0.008364401757717133, + 0.026505377143621445, + 0.011431561782956123, + 0.005913868546485901, + 0.01485016755759716, + 0.007367574609816074, + -0.010402785614132881, + -0.02210911363363266, + -0.011655209586024284, + 0.00551769370213151, + -0.007386744488030672, + 0.01231337059289217, + -0.00010034166916739196, + 0.02437114529311657, + 0.002995273796841502, + -0.0016358188586309552, + 0.007009739521890879, + 0.009425127878785133, + -0.02849903143942356, + -0.03782831132411957, + -0.01773841120302677, + 0.023706592619419098, + 0.0031182796228677034, + 0.008473030291497707, + -0.03182178735733032, + 0.016179271042346954, + 0.0013275053352117538, + 0.034096598625183105, + -0.00972545426338911, + -0.014824608340859413, + 0.003062367904931307, + 0.007981006987392902, + -0.005990547593683004, + -0.029981492087244987, + -0.6359245777130127, + -0.026939891278743744, + 0.004063987638801336, + 0.01824960485100746, + -0.004415432922542095, + 0.04557289183139801, + 0.013239908963441849, + -0.0018546734936535358, + 0.009661555290222168, + 0.036064691841602325, + -0.0029984686989337206, + -0.00030591728864237666, + -0.007373964414000511, + -0.000340862141456455, + -0.022645866498351097, + -0.017355015501379967, + -0.00227960292249918, + -0.00493621127679944, + 0.01856910064816475, + -0.00667746365070343, + -0.03253746032714844, + 0.013380486518144608, + 0.004086351953446865, + 0.005306826438754797, + 0.0069138905964791775, + -0.003418605774641037, + 0.02141900360584259, + -0.015246342867612839, + 0.004616715479642153, + 0.0009664749959483743, + -0.01648598723113537, + 0.01253062766045332, + -0.02670985460281372, + 0.0281667560338974, + 0.03125947713851929, + -0.01176383811980486, + -0.001150983851402998, + 0.009987440891563892, + 0.005776485428214073, + 0.00281795347109437, + -0.007297285832464695, + -0.021214526146650314, + -0.0015303852269425988, + -0.00955931656062603, + 0.0016110579017549753, + -0.007642341312021017, + 0.03335537016391754, + -0.024243347346782684, + 0.01955314725637436, + -0.01915697194635868, + -0.0011485876748338342, + -0.008990613743662834, + 0.01886303536593914, + 0.020332716405391693, + 0.02193019725382328, + -0.0048211924731731415, + 0.0371382012963295, + -0.008658338338136673, + -0.027016570791602135, + 0.021546801552176476, + -0.017789529636502266, + 0.014134497381746769, + -0.0015894919633865356, + -0.0209078099578619, + -0.010498634539544582, + 0.014543452300131321, + -0.024818439036607742, + -0.03667812421917915, + 0.01693328097462654, + -0.021061167120933533, + -0.00045647972729057074, + 0.022748105227947235, + -0.021904636174440384, + -0.02334875799715519, + 0.02086946927011013, + 0.03108055889606476, + 0.01671602390706539, + -0.029138023033738136, + -0.0003556388255674392, + 0.008504980243742466, + -0.009859642013907433, + -0.004482526797801256, + -0.0194125697016716, + 0.017265556380152702, + 0.01054336316883564, + -0.023872731253504753, + 0.001602271804586053, + -0.003549599088728428, + 0.009258990176022053, + -0.01176383811980486, + 0.00830050278455019, + 0.03361096605658531, + -0.013776661828160286, + -0.02809007652103901, + -0.009597656317055225, + 0.021572360768914223, + -0.021355103701353073, + 0.02273532561957836, + 0.009955490939319134, + -0.024716200307011604, + -0.030620483681559563, + 0.005492134019732475, + 0.013469945639371872, + -0.025086816400289536, + 0.009457077831029892, + 0.005629517138004303, + 0.002059150952845812, + 0.007469813339412212, + 0.0181345846503973, + -0.029035784304142, + 0.019208092242479324, + -0.028294553980231285, + 0.004044817760586739, + -0.004520866554230452, + -0.005802045110613108, + -0.02334875799715519, + 0.022927023470401764, + 0.032563019543886185, + 0.002140622353181243, + -0.0003784029104281217, + 0.020664991810917854, + -0.002424973528832197, + 0.04345143958926201, + -0.008658338338136673, + -0.029598096385598183, + 0.01648598723113537, + 0.015553059056401253, + 0.008856425061821938, + 0.012875683605670929, + -0.017393354326486588, + 0.001654988620430231, + -0.0015815045917406678, + 0.01065199263393879, + -0.01536136120557785, + 0.012600917369127274, + 0.02521461434662342, + 0.018658557906746864, + -0.013482725247740746, + 0.0021214524749666452, + -0.006300458684563637, + -0.021866297349333763, + 0.005214172415435314, + 0.000730048050172627, + -0.0232720784842968, + -0.008313282392919064, + -0.038186147809028625, + -0.013163229450583458, + 0.004303609486669302, + 0.02049885503947735, + -0.005124713759869337, + 0.0014305427903309464, + -0.021252864971756935, + -0.00044210240594111383, + 0.02578970603644848, + -0.0008402741514146328, + 0.014351754449307919, + -0.013636083342134953, + -0.00810241512954235, + -0.011028997600078583, + -0.026607615873217583, + 0.015923673287034035, + 0.038288384675979614, + -0.058940596878528595, + -0.013815001584589481, + 0.012338930740952492, + -0.037419356405735016, + 0.027860039845108986, + -0.010338886640965939, + -0.02163626067340374, + -0.040000881999731064, + 0.013316587544977665, + 0.0272977277636528, + -0.005945818033069372, + 0.0112015251070261, + -0.0031310594640672207, + 0.011374052613973618, + -0.027604442089796066, + -0.00786598864942789, + -0.01463291049003601, + -0.015323021449148655, + 0.021214526146650314, + -0.001222870429046452, + -0.022198572754859924, + -0.0031470342073589563, + 0.01597479358315468, + 0.0018882205476984382, + 0.016473207622766495, + -0.00029912800528109074, + 0.00174444739241153, + 0.03782831132411957, + -0.01463291049003601, + 0.030620483681559563, + -0.013521065004169941, + 0.004421822726726532, + -0.024537282064557076, + 0.0007444253424182534, + 0.00574773084372282, + -0.02918914332985878, + -0.012588136829435825, + 0.02258196845650673, + 0.021112287417054176, + 0.004418627824634314, + 0.02867794968187809, + -0.013993918895721436, + 0.024217786267399788, + -0.02159791998565197, + 0.007201436907052994, + -0.01689494214951992, + 0.03097832016646862, + 0.04728538915514946, + -0.000195291853742674, + -0.019271990284323692, + -0.010128019377589226, + -0.015131324529647827, + 0.017022740095853806, + 0.0350167453289032, + -0.004977745469659567, + 0.005974572617560625, + 0.036243610084056854, + -0.0001366843207506463, + -0.005032059736549854, + -0.004335558973252773, + 0.039055176079273224, + 0.010683941654860973, + -0.006306848488748074, + 0.007022519130259752, + -0.0030080536380410194, + 0.00060304842190817, + -4.2532887164270505e-05, + -0.01740613393485546, + -0.00979574304074049, + -0.0015799070242792368, + 0.013112110085785389, + 0.02670985460281372, + -0.006121540907770395, + 0.0260453037917614, + 0.025674687698483467, + 0.0018099440494552255, + 0.021866297349333763, + 0.016498766839504242, + 0.023029262199997902, + 0.014607351273298264, + -0.008792526088654995, + 0.0097062848508358, + 0.0160131324082613, + -0.02075445093214512, + 0.026173101738095284, + 0.03148951381444931, + 0.008575269021093845, + -0.0020303961355239153, + -0.014134497381746769, + -0.010025780647993088, + -0.021329544484615326, + -0.007457033731043339, + 0.02276088483631611, + -0.018505200743675232, + 0.04296580329537392, + -0.005000110249966383, + 0.0005103946314193308, + 0.018479641526937485, + 0.0030144434422254562, + 0.008441081270575523, + 0.016498766839504242, + -0.022198572754859924, + 0.008805305697023869, + 0.002527212258428335, + -0.014799048192799091, + -0.01988542266190052, + -0.019105853512883186, + -0.0012348515447229147, + -0.004019258078187704, + -0.002311552641913295, + -0.005920258350670338, + 0.01400669850409031, + 0.0277322418987751, + -0.031872909516096115, + 0.003578353673219681, + 0.021534021943807602, + 0.02911246381700039, + 0.008530539460480213, + -0.022454168647527695, + -0.02273532561957836, + 0.006888330914080143, + 0.023003702983260155, + -0.011144015938043594, + -0.020128238946199417, + -0.014862948097288609, + -0.0007627963786944747, + -0.018185704946517944, + -0.0029872863087803125, + 0.004437797702848911, + 0.01667768508195877, + -0.005284461658447981, + -0.01424951571971178, + 0.010786180384457111, + 0.00748898321762681, + 0.01502908580005169, + 0.007872378453612328, + 0.011048167012631893, + 0.024281686171889305, + 0.004246099852025509, + -0.016434866935014725, + -0.010358056053519249, + -0.015744756907224655, + 0.010913979262113571, + -0.002330722287297249, + -0.013099330477416515, + -0.025713026523590088, + -0.003316367045044899, + -0.01468402985483408, + -0.0181345846503973, + 0.003843535203486681, + 0.010243037715554237, + 0.01925921067595482, + -0.014543452300131321, + 0.0011805372778326273, + 0.001317920396104455, + -0.015604178421199322, + 0.03292085602879524, + -0.006044861860573292, + -0.010025780647993088, + -0.026582056656479836, + 0.004658249672502279, + -0.00036562306922860444, + 0.011955535039305687, + 0.025521330535411835, + 0.00777013972401619, + 0.01718887686729431, + 0.0020974904764443636, + -0.02875462733209133, + -0.016498766839504242, + -0.02273532561957836, + 0.0032189209014177322, + 0.022965362295508385, + -0.0026214634999632835, + 0.013751101680099964, + 0.044422704726457596, + -0.020933369174599648, + -0.007450643461197615, + -0.0077893091365695, + 0.02415388822555542, + -0.03621805086731911, + 0.020511634647846222, + 0.01839018240571022, + -0.012773444876074791, + 0.017687290906906128, + 0.015080205164849758, + 0.039464130997657776, + -0.00015505534247495234, + -0.008485809899866581, + 0.02342543751001358, + 0.016907721757888794, + 0.004057597368955612, + -0.02572580799460411, + -0.019029174000024796, + 0.04196897894144058, + -0.0013394864508882165, + 0.01911863312125206, + -0.01937422901391983, + -0.006901110522449017, + -0.00422373553737998, + -0.008971444331109524, + 0.01693328097462654, + -0.023540455847978592, + 0.0027508593630045652, + 0.013930019922554493, + 0.013815001584589481, + 0.001033569104038179, + -0.002466508187353611, + -0.010677551850676537, + 0.01214723289012909, + 0.014402873814105988, + -0.02451172284781933, + -0.0038978494703769684, + -0.0024984576739370823, + -0.02944473922252655, + 0.015297462232410908, + -0.002193339169025421, + -0.01335492730140686, + -0.030160410329699516, + 0.0033930460922420025, + -0.009929931722581387, + -0.015706416219472885, + -0.0004009673139080405, + -0.010044950060546398, + -0.009827692992985249, + 0.014032258652150631, + -0.0026038913056254387, + -0.02590472437441349, + -0.005210977513343096, + -0.011233475059270859, + 0.010255817323923111, + -0.018517980352044106, + 0.003003261052072048, + 0.014735149219632149, + -0.006722193211317062, + -0.021649040281772614, + -0.024026088416576385, + 0.00888198520988226, + -0.001344278920441866, + 0.023284858092665672, + 0.00022145058028399944, + -0.022083554416894913, + 0.017942888662219048, + -0.004460162483155727, + -0.003987308591604233, + -0.011028997600078583, + -0.0202815979719162, + -0.013559404760599136, + 0.030697163194417953, + -0.00934205949306488, + 0.009297329932451248, + -0.0038978494703769684, + -0.009469857439398766, + 0.0046518598683178425, + 0.016703244298696518, + 0.02031993679702282, + -0.0031678015366196632, + 0.003833950497210026, + 0.004543231334537268, + 0.006485766265541315, + 0.01667768508195877, + 0.022173013538122177, + -0.001497636898420751, + 0.010728671215474606, + -0.017495593056082726, + -0.016652124002575874, + 0.005696611478924751, + 0.02849903143942356, + 0.010466684587299824, + -0.007719020359218121, + 0.002514432417228818, + 0.021035607904195786, + 0.02549576945602894, + -0.002891437616199255, + -0.012262251228094101, + 0.0121664023026824, + 0.0027684317901730537, + -0.003923409152776003, + 0.003396240994334221, + 0.010402785614132881, + 0.021188965067267418, + 0.022390270605683327, + 0.010070509277284145, + -0.022057995200157166, + -0.03269081562757492, + 0.04547065123915672, + -0.008933104574680328, + -0.008044905960559845, + 0.0286012701690197, + -0.01900361478328705, + 0.003731711767613888, + -0.02324651926755905, + 0.007265335880219936, + 0.011655209586024284, + 0.01239005010575056, + 0.011329323053359985, + -7.7976961620152e-05, + -0.01929754950106144, + -0.02352767623960972, + 0.007667900994420052, + 0.022006874904036522, + -0.01105455681681633, + -0.002295577898621559, + -0.02228803187608719, + 0.01125264447182417, + -0.0068627712316811085, + 0.015859775245189667, + 0.004009672906249762, + -0.024013308808207512, + -0.03729155659675598, + 0.020511634647846222, + -0.007252556271851063, + 0.019425349310040474, + -0.032230742275714874, + 0.00527168158441782, + -0.030876081436872482, + -0.03138727322220802, + -0.004830777645111084, + -0.028115635737776756, + 0.002921789651736617, + -0.0024617156013846397, + 0.004556010942906141, + 0.018709678202867508, + 0.021610699594020844, + 0.012255861423909664, + -0.01646042801439762, + 0.021981315687298775, + -0.018032345920801163, + -0.00030412012711167336, + -0.03629473224282265, + -0.004054402466863394, + -0.022428609430789948, + 0.018300723284482956, + -0.003011248540133238, + -0.015118543989956379, + 0.011195135302841663, + 0.025112375617027283, + 0.01594923436641693, + 0.03499118611216545, + -0.011572140268981457, + -0.004472942091524601, + -0.01211528293788433, + -0.028984665870666504, + 0.005233342293649912, + -0.016077032312750816, + 0.014134497381746769, + 0.030594924464821815, + -0.013495505787432194, + -0.007552882190793753, + -0.00592984352260828, + -0.01391724031418562, + -0.01809624582529068, + -0.02053719386458397, + 0.01911863312125206, + -0.019527588039636612, + 0.04751542583107948, + -0.0002118656993843615, + 0.023770492523908615, + -0.015284682624042034, + -0.012051383964717388, + -0.018479641526937485, + -0.022556407377123833, + 0.013029041700065136, + 0.0034026310313493013, + 0.011105676181614399, + -0.01845408044755459, + -0.0038978494703769684, + -0.011699938215315342, + -0.007501762825995684, + 0.009540146216750145, + -0.020882250741124153, + -0.01074145082384348, + -0.023476555943489075, + -0.022901464253664017, + -0.029138023033738136, + -0.01306099072098732, + -0.005575202871114016, + 0.010460294783115387, + 0.00697778956964612, + -0.009131192229688168, + 0.023706592619419098, + -0.004744513425976038, + -0.014709590002894402, + -0.009661555290222168, + 0.004635884892195463, + 0.023923849686980247, + 0.0060129123739898205, + 0.015092984773218632, + 0.019910981878638268, + -0.04046095535159111, + -0.01937422901391983, + -0.05170721188187599, + 0.01693328097462654, + -0.03046712651848793, + 0.019144192337989807, + 0.0077126300893723965, + -0.03780275210738182, + 0.003948968835175037, + 0.021278424188494682, + -0.003185373730957508, + -0.0046518598683178425, + -0.0101407989859581, + 0.03286973387002945, + 0.012581747025251389, + -0.013150449842214584, + -0.013303807936608791, + 0.019617047160863876, + -0.00808324571698904, + 0.004271659534424543, + 0.0007016927702352405, + 0.006405892316251993, + -0.011795787140727043, + -0.009425127878785133, + -0.004779658280313015, + 0.05352194607257843, + -0.0007016927702352405, + 0.014045038260519505, + 0.0029058149084448814, + -0.028575710952281952, + -0.006175855174660683, + -0.03849286213517189, + -0.025802485644817352, + 0.015297462232410908, + -0.004635884892195463, + 0.028064517304301262, + -0.02126564458012581, + 0.0023690618108958006, + 0.003680592402815819, + -0.016179271042346954, + 0.011508241295814514, + -0.020204918459057808, + -0.0038307553622871637, + 0.01974484510719776, + -0.015348581597208977, + 0.006875550840049982, + 0.01430063508450985, + -0.013993918895721436, + 0.006613564677536488, + 0.016025912016630173, + -0.0016597809735685587, + -0.026863211765885353, + 0.016115371137857437, + 0.0030080536380410194, + -0.0034633351024240255, + 0.02145734243094921, + -0.012517848052084446, + -0.0024808854795992374, + -0.021367883309721947, + -0.02952141873538494, + 0.007719020359218121, + -0.01933589018881321, + 0.011725498363375664, + -0.02185351774096489, + -0.009329278953373432, + 0.009137582033872604, + -0.0004057597543578595, + 0.019680945202708244, + 0.005917063448578119, + -0.02936805970966816, + -0.014287855476140976, + 0.012984312139451504, + -0.03483783081173897, + 0.013252688571810722, + 0.036064691841602325, + -0.0005978566478006542, + -0.019732065498828888, + -0.014441213570535183, + 0.0010687137255445123, + -0.013725542463362217, + 0.015565838664770126, + -0.01074145082384348, + -0.01634540781378746, + -0.02175127901136875, + 0.0026917527429759502, + 0.02228803187608719, + 0.0043770931661129, + -0.01395557913929224, + 0.01180217694491148, + 0.014108937233686447, + 0.009917152114212513, + -0.022198572754859924, + -0.011527410708367825, + -0.008294112980365753, + 0.004284439608454704, + -0.0006433848175220191, + 0.018083466216921806, + -0.015527498908340931, + 0.004194980952888727, + -0.0017156928079202771, + -0.036396969109773636, + 0.008326062001287937, + -0.015642518177628517, + -0.023438217118382454, + 0.01141878217458725, + 0.0058595542795956135, + -0.019093073904514313, + 0.006332408171147108, + -0.02739996649324894, + -0.0029888837598264217, + -0.004597545601427555, + 0.009955490939319134, + -0.004054402466863394, + 0.04132998362183571, + 0.003234895644709468, + 0.008958663791418076, + -0.027169927954673767, + 0.027962278574705124, + 0.0031518267933279276, + -0.02145734243094921, + 0.01446677278727293, + 0.0031070972327142954, + -0.046901993453502655, + 0.012006654404103756, + -0.017176097258925438, + 0.03422439843416214, + 0.01685660146176815, + -0.020077120512723923, + -0.014837387949228287, + -0.0013610523892566562, + -0.013853340409696102, + -0.025419091805815697, + -0.012402829714119434, + -0.0014417250640690327, + 0.0018610634142532945, + 0.025636348873376846, + -0.015553059056401253, + 0.04265908896923065, + -0.006003327202051878, + 0.030952759087085724, + -0.043834831565618515, + -0.04010312259197235, + -0.004402652848511934, + 0.005057619418948889, + 0.0017476424109190702, + -0.028907986357808113, + -0.035451263189315796, + 0.000313305645249784, + 0.023949410766363144, + -0.0016821457538753748, + 0.02024325728416443, + 0.019527588039636612, + 0.0034665302373468876, + -0.027118809521198273, + 0.03131059557199478, + 0.021508462727069855, + 0.029725896194577217, + 0.0020431759767234325, + -0.001126222894527018, + -0.0256107896566391, + 0.009885202161967754, + -0.008038516156375408, + 0.013303807936608791, + -0.048614490777254105, + -0.014658470638096333, + 0.02222413197159767, + -0.012683985754847527, + -0.0097062848508358, + 0.02138066291809082, + -0.01795566827058792, + 0.004571985919028521, + -0.01148907095193863, + 0.026530936360359192, + 0.009335669688880444, + -0.02126564458012581, + 0.0014249515952542424, + 0.00309751252643764, + -0.01299070194363594, + -0.038876257836818695, + 0.013533844612538815, + -0.012639256194233894, + 0.0164476465433836, + 0.002444143407046795, + -0.01693328097462654, + 0.0028323307633399963, + -0.01988542266190052, + 0.019067512825131416, + 0.00046326901065185666, + 0.01052419375628233, + -0.0281667560338974, + -0.027808919548988342, + -0.04531729221343994, + 0.04217345267534256, + 0.017380574718117714, + -0.000542344234418124, + -0.0034729200415313244, + -0.014185616746544838, + -0.003003261052072048, + -0.011233475059270859, + -0.01541248057037592, + 0.006703023333102465, + -0.03417327627539635, + -0.010786180384457111, + 0.006933060474693775, + -0.013035431504249573, + -0.010498634539544582, + -0.00631323829293251, + -0.003731711767613888, + -0.003345121629536152, + -0.01282456424087286, + 0.18147365748882294, + -0.016319848597049713, + -0.004284439608454704, + 0.00919509120285511, + -0.02488233894109726, + -0.018760796636343002, + 0.04086991026997566, + 0.007846818305552006, + 0.00904812291264534, + 0.016153711825609207, + 0.02039661630988121, + -0.004511281847953796, + -0.0012723923427984118, + 0.009233430959284306, + 0.006482571363449097, + -0.013661643490195274, + -0.02670985460281372, + -0.01565529778599739, + 0.0019441323820501566, + 0.017648952081799507, + 0.01911863312125206, + -0.017687290906906128, + 0.0014832596061751246, + -0.002210911363363266, + 0.06170104071497917, + 0.010645601898431778, + -0.0070672486908733845, + 0.01490128692239523, + 0.040000881999731064, + 0.0367036834359169, + -0.03355984762310982, + -0.00695862015709281, + 0.006843601353466511, + -0.005894698668271303, + -0.006766922306269407, + 0.0008482615230605006, + 0.011105676181614399, + 0.0017300701001659036, + 0.020000440999865532, + 0.02977701462805271, + -0.0025911114644259214, + -0.027885599061846733, + -0.005239732097834349, + -0.029853694140911102, + 0.010862859897315502, + 0.026173101738095284, + -0.0017284726491197944, + 0.014338974840939045, + 0.002193339169025421, + 0.012562577612698078, + 0.006568835116922855, + 0.004546426236629486, + 0.002669387962669134, + 0.028550149872899055, + -0.013968359678983688, + -0.02893354557454586, + 0.016754362732172012, + -0.014543452300131321, + 0.010703111998736858, + -0.004466552287340164, + -0.03637140989303589, + 0.012543408200144768, + -0.011290984228253365, + 0.02415388822555542, + -0.047080911695957184, + 0.012268641032278538, + -0.022160233929753304, + 0.004118301905691624, + -0.00623016944155097, + -0.01959148608148098, + 0.01729111559689045, + -0.008147144690155983, + -0.026058083400130272, + 0.021981315687298775, + -0.02098448947072029, + -0.03575797751545906, + 0.020294377580285072, + 0.0003520445025060326, + 0.03243521973490715, + 0.013559404760599136, + 0.004792437888681889, + 0.011022607795894146, + -0.013201569207012653, + -0.009904371574521065, + -0.0021837542299181223, + -0.02867794968187809, + -0.002587916562333703, + -0.013763882219791412, + 0.01340604666620493, + -0.023770492523908615, + -0.020703332498669624, + 0.012875683605670929, + 0.0019728869665414095, + -0.007048078812658787, + 0.003511259565129876, + 0.0006841205176897347, + 0.007578441873192787, + -0.007188656833022833, + -0.01318878959864378, + -0.012562577612698078, + -0.022594748064875603, + 0.042633529752492905, + 0.02305482141673565, + -0.029751455411314964, + -0.014556231908500195, + -0.0021645845845341682, + -0.00404162285849452, + 0.023297639563679695, + 0.0014672847464680672, + 0.008556099608540535, + -0.019310330972075462, + -0.029316941276192665, + 0.02531685307621956, + -0.01890137605369091, + 0.027169927954673767, + 0.026019742712378502, + 0.012875683605670929, + 0.010952318087220192, + -0.014108937233686447, + 0.004418627824634314, + 0.011233475059270859, + 0.006294068414717913, + 0.02550855092704296, + 0.012421999126672745, + 0.008364401757717133, + -0.03200070559978485, + -0.040742114186286926, + 0.02145734243094921, + -0.005690221209079027, + -0.010728671215474606, + 0.01373832207173109, + -0.008453860878944397, + 0.030339326709508896, + -0.0010064119705930352, + 0.032230742275714874, + -0.009239820763468742, + -0.0023690618108958006, + -0.024613961577415466, + -0.004952185787260532, + -0.0011941158445551991, + 0.025751367211341858, + -0.019898202270269394, + 0.007278115954250097, + 0.009099242277443409, + 0.005048034712672234, + 0.006396307144314051, + 0.037419356405735016, + 0.006287678610533476, + -0.020588314160704613, + -0.00994271133095026, + -0.01908029243350029, + -0.0015255927573889494, + -0.007514542900025845, + -0.009335669688880444, + 0.010575313121080399, + 0.012179182842373848, + -0.01801956631243229, + -0.034352194517850876, + -0.00362947303801775, + 0.01229420118033886, + -0.03164286911487579, + -0.015923673287034035, + 0.0067094131372869015, + -0.016767142340540886, + 0.002110270317643881, + 0.0043802885338664055, + -0.15887890756130219, + 0.004290829412639141, + 0.0050096954219043255, + -0.03473559021949768, + 0.02258196845650673, + 0.0036071082577109337, + 0.023195400834083557, + 0.019284769892692566, + -0.0059106736443936825, + -0.004313194192945957, + 0.012013044208288193, + -0.0004137471551075578, + -0.013687202706933022, + -0.004594350699335337, + -0.009252600371837616, + -0.008268552832305431, + -0.014390094205737114, + 0.0187863577157259, + 0.013981139287352562, + 0.020307157188653946, + 0.0005323599907569587, + -0.02130398526787758, + 0.015565838664770126, + 0.012447559274733067, + -0.004562401212751865, + 0.007891547866165638, + -0.014824608340859413, + 0.013495505787432194, + -0.003492089919745922, + -0.014441213570535183, + -0.011048167012631893, + -0.013993918895721436, + 0.005313216242939234, + -0.00033227569656446576, + 0.007591221947222948, + -0.033943239599466324, + 0.008862815797328949, + -0.016869381070137024, + -0.010102459229528904, + 0.018160145729780197, + 0.011450732126832008, + 0.031182795763015747, + -0.0006234163301996887, + 0.02075445093214512, + 0.01481182873249054, + 0.04166226089000702, + 0.03123391605913639, + -0.023693813011050224, + -0.008607218973338604, + -0.01085646916180849, + 0.0005335580790415406, + -0.0277322418987751, + 0.005913868546485901, + 0.008364401757717133, + 0.0017508373130112886, + 0.006278093904256821, + -0.02072889171540737, + 0.02901022508740425, + 0.010722281411290169, + -0.012217521667480469, + -0.004501696676015854, + -0.03616693243384361, + 0.010882029309868813, + -0.023553235456347466, + -0.010409175418317318, + 0.001672560814768076, + 0.0032428831327706575, + 0.029393618926405907, + -0.014275074936449528, + 0.0021949366200715303, + 0.014965186826884747, + -0.032230742275714874, + 0.02010267972946167, + -0.019425349310040474, + 0.011169575154781342, + 0.007399524096399546, + 0.0008953871438279748, + -0.001755629782564938, + -0.0021134652197360992, + -0.011463511735200882, + -0.007584831677377224, + 0.039464130997657776, + -0.011623259633779526, + -0.022045215591788292, + -0.02313150092959404, + -0.003543209284543991, + -0.009827692992985249, + 0.036243610084056854, + 0.0027636392042040825, + 0.005913868546485901, + 0.01275427546352148, + -0.028396792709827423, + -0.025815265253186226, + -0.026837652549147606, + 0.004897871520370245, + -0.01158491987735033, + -0.009380398318171501, + 0.0043962630443274975, + -0.022530848160386086, + -0.001551152439787984, + 0.006242949049919844, + -0.008159924298524857, + -0.020524414256215096, + 0.03509342670440674, + 0.008824476040899754, + -0.006322822999209166, + -0.004265269730240107, + 0.003715737024322152, + 0.04156002402305603, + -0.0019393399124965072, + -0.022160233929753304, + 0.0038690948858857155, + 0.006830821745097637, + 0.002311552641913295, + -0.01536136120557785, + 0.0006553658749908209, + -0.0007823655032552779, + 0.002931374590843916, + -0.001111046876758337, + -0.0021661820355802774, + 0.049125686287879944, + -0.009770183824002743, + -0.012568967416882515, + 0.0204732958227396, + -0.001877038273960352, + -0.026096422225236893, + -0.09119690209627151, + 0.0036550327204167843, + 0.006996959447860718, + 0.025636348873376846, + 0.005469769239425659, + 0.027042130008339882, + 0.01430063508450985, + -0.004428212530910969, + 0.013623303733766079, + 0.0546465739607811, + -0.025457430630922318, + -0.030620483681559563, + -0.029981492087244987, + -0.01711219921708107, + -0.015118543989956379, + -0.020626652985811234, + 0.0012164805084466934, + -0.032230742275714874, + -0.023105941712856293, + 0.04020535945892334, + -0.02655649557709694, + -0.0015966806095093489, + -0.011597700417041779, + -0.008249383419752121, + -0.015616958029568195, + -0.026352019980549812, + -0.03724043816328049, + 0.0029265822377055883, + 0.017930107191205025, + -0.0028642804827541113, + 0.018032345920801163, + -0.026249781250953674, + -0.013674423098564148, + -0.006393112242221832, + -0.018070686608552933, + -0.010300546884536743, + -0.011936365626752377, + 0.004674224648624659, + 0.03031376749277115, + -0.018543539568781853, + 0.00029952736804261804, + 0.02783448062837124, + 0.012300590984523296, + 0.0012731910683214664, + -0.0117318881675601, + -0.016805483028292656, + -0.019093073904514313, + 0.012070554308593273, + 0.00385312014259398, + -0.0031007074285298586, + -0.03609025478363037, + -0.012524237856268883, + -0.028473472222685814, + 0.010147188790142536, + 0.029598096385598183, + -0.00023283260816242546, + -0.004239710047841072, + -0.002851500641554594, + -0.013124890625476837, + 0.005862749181687832, + -0.024345584213733673, + 0.026058083400130272, + -0.024601181969046593, + 0.03353428468108177, + -0.003345121629536152, + 0.0024010115303099155, + -0.023042041808366776, + -0.006990569643676281, + 0.017597831785678864, + -0.00939317885786295, + -0.0062844837084412575, + 0.012869293801486492, + 0.001253222580999136, + 0.012453949078917503, + -0.027272166684269905, + 0.0041406662203371525, + -0.03575797751545906, + -0.015808654949069023, + 0.018377402797341347, + -0.004843557253479958, + 0.01304182130843401, + -0.016370968893170357, + 0.006568835116922855, + -0.01299070194363594, + 0.02722104825079441, + 0.02714436873793602, + -0.002220496302470565, + -0.007035299204289913, + 0.013201569207012653, + -0.018952494487166405, + -0.013815001584589481, + 0.01267759595066309, + 0.024498943239450455, + -0.0016693659126758575, + -0.0260453037917614, + 0.011776617728173733, + 0.0005399479996412992, + -0.01118235569447279, + 0.015220782719552517, + -0.0038499252405017614, + -0.014160056598484516, + -0.005466574337333441, + -0.033278688788414, + 0.03808390721678734, + 0.010000220499932766, + 0.016077032312750816, + -0.0238982904702425, + -0.005904283840209246, + 0.01591089367866516, + 0.009623215533792973, + 0.023514896631240845, + -0.006508131045848131, + -0.014888507314026356, + -0.0019137802300974727, + -0.020677773281931877, + -0.011853296309709549, + -0.04940684139728546, + -0.02385995164513588, + 0.0022859929595142603, + 0.01715053804218769, + -0.007393134292215109, + -0.008306892588734627, + -0.003955358639359474, + 0.02006434090435505, + -0.009009783156216145, + 0.0026933501940220594, + -0.027962278574705124, + -0.02918914332985878, + -0.014160056598484516, + -0.007782919332385063, + -0.008421910926699638, + -0.00941234827041626, + 0.002220496302470565, + 0.01648598723113537, + -0.003568768734112382, + 0.007725410163402557, + 0.0002945352462120354, + -0.020204918459057808, + 0.006722193211317062, + 0.04582848772406578, + 0.019144192337989807, + 0.03483783081173897, + -0.01740613393485546, + -0.0130226518958807, + -0.0032620527781546116, + -0.004667834844440222, + 0.003011248540133238, + 0.0020847106352448463, + 0.005341970827430487, + -0.006690243259072304, + 0.006032081786543131, + -0.008159924298524857, + 0.0337132029235363, + 0.012537017464637756, + -0.0012460339348763227, + 0.001755629782564938, + -0.011092896573245525, + -0.0031390469521284103, + 0.012735105119645596, + 0.011214304715394974, + 0.02437114529311657, + -0.038799576461315155, + 0.05045478790998459, + 0.008658338338136673, + -0.003073550295084715, + -0.016549885272979736, + 0.009738233871757984, + -0.0041917855851352215, + -0.03578353673219681, + -0.018045127391815186, + 0.006639123894274235, + -0.021227305755019188, + -0.012517848052084446, + 0.0024185837246477604, + 0.027195489034056664, + 0.022121893242001534, + -0.015642518177628517, + -0.015323021449148655, + 0.0030687577091157436, + 0.0032221158035099506, + -0.008798915892839432, + 0.00689472071826458, + 0.03353428468108177, + 0.018632998690009117, + -0.0008961859275586903, + -0.019271990284323692, + 0.04043539613485336, + 0.010223867371678352, + -0.012837343849241734, + -0.013469945639371872, + 0.014262295328080654, + 0.013112110085785389, + -0.0077637494541704655, + 0.036141373217105865, + -0.006332408171147108, + 0.010715891607105732, + 0.014517892152071, + 0.012402829714119434, + 0.0006621551583521068, + 0.006057641468942165, + 0.023808831349015236, + 0.028652388602495193, + 0.01616649143397808, + -0.010779790580272675, + -0.0019297550898045301, + -0.02531685307621956, + 0.005038450006395578, + 0.018479641526937485, + -0.019220871850848198, + -0.04329808056354523, + 0.02385995164513588, + -0.0014704797649756074, + -0.0066071744076907635, + 0.011667989194393158, + 0.004153446294367313, + 0.0016901331255212426, + 0.0008282930357381701, + 0.009386788122355938, + -0.026735413819551468, + -0.011738277971744537, + -0.020383836701512337, + 0.022249693050980568, + 0.029981492087244987, + -0.006766922306269407, + -0.01015996839851141, + -0.008722237311303616, + 0.03772607073187828, + -0.03721487894654274, + 0.007099198177456856, + -0.02415388822555542, + 0.012160012498497963, + -0.009885202161967754, + 0.017214437946677208, + 0.004565596114844084, + -0.014952406287193298, + 0.004012868274003267, + -0.01937422901391983, + 0.00488828681409359, + 0.03304865211248398, + -0.008179094642400742, + 0.0026310484390705824, + 0.12442447245121002, + 0.011112065985798836, + 0.009808523580431938, + 0.012064163573086262, + -0.015386921353638172, + 0.02228803187608719, + -1.0165210369450506e-05, + -0.003137449501082301, + 2.8829510483774357e-05, + -0.05439097806811333, + 0.016575446352362633, + -0.007278115954250097, + 0.013636083342134953, + -0.030109290033578873, + 0.004786048084497452, + 0.01929754950106144, + 0.009853252209722996, + 0.011124846525490284, + -0.015616958029568195, + -0.0017923718551173806, + 0.048614490777254105, + -0.01992376148700714, + 0.010166358202695847, + 0.03279305621981621, + -0.008383571170270443, + -0.026505377143621445, + 0.028703508898615837, + 0.026352019980549812, + -0.004715758841484785, + -0.014837387949228287, + 0.005894698668271303, + 0.008332451805472374, + -0.05285739526152611, + -0.02065221220254898, + 0.00043131940765306354, + -0.04368147626519203, + -0.00013638479867950082, + -0.015131324529647827, + 0.007687070406973362, + 0.009233430959284306, + 0.027169927954673767, + 0.034275516867637634, + -0.0087541863322258, + -0.017316676676273346, + 0.027169927954673767, + -0.003113487269729376, + -0.0002386234700679779, + -0.003837145399302244, + -0.013815001584589481 + ], + "metadata": { + "source": "Thesis_Verladegeraeusche_in_Speditionen.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 41, + "has_images": true, + "image_count": 51, + "coordinates": "CoordinatesMetadata(points=((204.16666666666666, 189.02777777777797), (204.16666666666666, 642.3611111111111), (936.1666666666666, 642.3611111111111), (936.1666666666666, 189.02777777777797)), system=)", + "links": [], + "last_modified": "2025-05-05T22:59:16", + "_known_field_names": "frozenset({'cc_recipient', 'link_texts', 'url', 'filetype', 'category_depth', 'page_number', 'filename', 'orig_elements', 'detection_origin', 'email_message_id', 'page_name', 'coordinates', 'table_as_cells', 'link_start_indexes', 'sent_to', 'bcc_recipient', 'languages', 'last_modified', 'link_urls', 'file_directory', 'subject', 'data_source', 'detection_class_prob', 'image_base64', 'text_as_html', 'attached_to_filename', 'key_value_pairs', 'signature', 'sent_from', 'header_footer_type', 'parent_id', 'links', 'emphasized_text_contents', 'emphasized_text_tags', 'image_mime_type', 'is_continuation', 'image_path'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "Thesis_Verladegeraeusche_in_Speditionen.pdf", + "detection_class_prob": 0.2568194270133972, + "parent_id": "d45475a34bc527cde6987546fa6dd2f5", + "text_as_html": "
Flurf\u00f6rderger\u00e4t |Anzahl Einzelereignisse ElMax-PegelSchallleistungspegel
LAFmaxLWA,5sLWAmaxLWA,1hKlLWAT,1h
[dB(A)][dB(A)][dB(A)][dB(A)][dB(A)][dB(A)]
Gabelstapler29769,3100,7108,872,15,777,8
STABW [dB]6,54,96,54,92,9-
Gabelhubwagen9968,6100,7108,172,16,279,5
STABW [dB]6,45,16,4512,7-
", + "id": "5ba44de7-0ff3-4c0c-b018-67e92171e1c2", + "processing_timestamp": "2025-05-06T14:18:19.298665", + "chunk_number": 37, + "total_chunks": 49, + "chunking_strategy": "hybrid", + "word_count": 421 + } +} \ No newline at end of file diff --git a/data/processed/85fd305f-83de-70b0-47e8-2dc000000038.json b/data/processed/85fd305f-83de-70b0-47e8-2dc000000038.json new file mode 100644 index 0000000000000000000000000000000000000000..d67c7757ac8308ed38aa28aa568ed1c519816190 --- /dev/null +++ b/data/processed/85fd305f-83de-70b0-47e8-2dc000000038.json @@ -0,0 +1,1570 @@ +{ + "id": "85fd305f-83de-70b0-47e8-2dc000000038", + "content": "Dadurch wird eine bessere Ann\u00e4herung an die tats\u00e4chliche Schallfeldstruktur erzielt und genauere Mess- ergebnisse k\u00f6nnen erzielt werden. [89] Um eine genaue Schallleistungspegelberechnun- gen durchzuf\u00fchren, ist es wichtig die Richtcharakteristik der Quelle zu untersuchen. Zuf\u00e4llige Fehler, oder auch statistische Fehler genannt, entstehen zuf\u00e4llig w\u00e4hrend der Messung, beispielsweise durch das Rauschen eines Sensors und anderen externen Quel- len. Diese Fehler beeinflussen die Pr\u00e4zision der Messreihe und \u00e4u\u00dfern sich somit in der Streuung der Messergebnisse. [87, 88] Vorbeifahrende Autos oder andere Fremdger\u00e4u- sche fallen h\u00e4ufig bei einer Messung im freien auf die den gemessenen Schalldruckpegel ver\u00e4ndern. Da vorbeifahrende Autos und andere externe Ger\u00e4uschquellen nicht kon- trolliert werden k\u00f6nnen, k\u00f6nnen sie zu einer gewissen Unsch\u00e4rfe und Varianz in den Messergebnissen f\u00fchren. In der Auswertung der Messung wurden die Fremdger\u00e4usche, im Programm NorReview 6.2 ausgeblendet. Da die protokollierten Verladet\u00e4tigkeiten in einzelne 5 Sekunden lange Arbeitsschritte unterteilt waren, konnten eventuelle Fremd- ger\u00e4usche gezielt in diesem Zeitraum anhand des Geh\u00f6reindrucks analysiert werden und bei eventueller vorherrschender Dominanz nicht ber\u00fccksichtigt. Dennoch kann trotz dieser Ma\u00dfnahmen eine Messungenauigkeit aufgrund der Fremdger\u00e4usche von\nsch\u00e4tzungsweise \u00b1 1 dB auftreten. Zusammenfassend l\u00e4sst sich erkennen, dass die Validierungsrechnung durchschnittliche Abweichungen von 4,6 dB(A) zwischen simulierten und gemessenen Pegelwerten auf- weist, was auf eine gewisse Ungenauigkeit der Simulation hinweist. Bei der Messung selbst k\u00f6nnen Messungenauigkeiten von \u00b1 0,5 dB durch die verwendeten Schallpegel- messer, \u00b1 3 dB durch die Beladung durch unterschiedliche Personen und \u00b1 2 dB durch die Erfassung der Entfernungen auftreten. Zus\u00e4tzlich k\u00f6nnen vorbeifahrende Autos und andere Fremdger\u00e4usche zu einer Unsicherheit von etwa \u00b1 1 dB f\u00fchren. Die gesamte Un- sicherheit ist durch die Standardabweichung repr\u00e4sentiert und kann daher als Ma\u00df f\u00fcr die Variabilit\u00e4t der Messergebnisse betrachtet werden. 74\n8 Abschlie\u00dfende Bewertung und Ausblick\n\n## 8 Abschlie\u00dfende Bewertung und Ausblick\n\nDas Ziel dieser Thesis bestand darin, detailliert die Verladet\u00e4tigkeiten in Speditionen mit verschiedenen Flurf\u00f6rderger\u00e4ten und anderen Parametern zu analysieren und zu be- werten. Aus dem gewonnenen Wissen wurden Emissionsans\u00e4tze ausgearbeitet, die als Prognosegrundlage f\u00fcr weiterf\u00fchrende Schallimmissionsprognosen zur Verf\u00fcgung ste- hen. F\u00fcr die Prognosegrundlage zur Schallimmissionsprognose lassen sich anhand der vorliegenden Thesis Emissionsdaten zusammenfassen. Die Verwendung eines Daten- blattes erleichtert die Arbeit erheblich, weshalb in Anhang 1: Emissionsdatenbl\u00e4tter ent- sprechende Vorlagen erstellt wurden. Wenn der genaue Anh\u00e4ngertyp nicht bekannt ist, sollten die Emissionsdatenbl\u00e4tter Nr. 1 und Nr. 2 verwendet werden. Falls detailliertere Informationen zu Verladevorg\u00e4ngen vorliegen, k\u00f6nnen die Emissionsdatenbl\u00e4tter Nr. 3, Nr. 4, Nr. 5 und Nr. 6 genutzt werden, um pr\u00e4zisere Ergebnisse zu erzielen.", + "embedding": [ + 0.008143735118210316, + 0.017118601128458977, + -0.0060390993021428585, + -0.03892906382679939, + -0.006786446087062359, + 0.017976541072130203, + -0.010107615031301975, + -0.005274995695799589, + -0.038017503917217255, + -0.02679724618792534, + 0.00679650017991662, + 0.03244088590145111, + -0.017185626551508904, + 0.023472724482417107, + 0.007098119705915451, + 0.009866319596767426, + 0.04396946728229523, + -0.00199069082736969, + 0.005382238421589136, + -0.00086296780500561, + -0.013653323985636234, + -0.002526903757825494, + -0.010422640480101109, + 0.005978775210678577, + -0.008405138738453388, + 0.019786261022090912, + 0.035336438566446304, + -0.022346677258610725, + -0.029545336961746216, + 0.004098678473383188, + 0.008478868752717972, + -0.011729659512639046, + -0.011428040452301502, + -0.008867623284459114, + -0.01380748488008976, + -0.018754050135612488, + -0.015576988458633423, + -0.007506982423365116, + 0.035926271229982376, + -0.010583504103124142, + 0.01682368293404579, + 0.006568609271198511, + -0.0007213740609586239, + -0.028365667909383774, + 0.008110221475362778, + 0.010717557743191719, + 0.014464346691966057, + -0.0031921430490911007, + -0.01804356835782528, + 0.020563770085573196, + 0.018191026523709297, + 0.005090672522783279, + -0.005087321158498526, + 0.013519270345568657, + -0.004772295709699392, + 0.00030434277141466737, + -0.003004468511790037, + 0.004386893007904291, + -0.01945112645626068, + -0.012741762213408947, + -0.03844647482037544, + 0.002183392411097884, + -0.02465239353477955, + 0.009752374142408371, + -0.024518340826034546, + -0.01144814770668745, + -0.003029603511095047, + 0.004574567545205355, + -0.004571216180920601, + -0.007352821063250303, + 0.007734872866421938, + 0.023767642676830292, + -0.006977471988648176, + 0.011930739507079124, + 0.02611357346177101, + -0.01292943675071001, + 0.006273692473769188, + -0.00486278161406517, + -0.0056000747717916965, + 0.012922734022140503, + 0.012835599482059479, + -0.027856266126036644, + -0.020965928211808205, + 0.048098307102918625, + 0.013753863982856274, + -0.005234779790043831, + -0.012641222216188908, + 0.022480729967355728, + -0.02922360971570015, + -0.0019806367345154285, + 0.006431204732507467, + 0.03841966390609741, + -0.0009132378036156297, + 0.00507391570135951, + 0.027936698868870735, + -0.013887917622923851, + 0.002144852187484503, + 0.030483709648251534, + -0.003760193707421422, + -0.02425023354589939, + -0.02077825367450714, + -0.004222677554935217, + -0.0044706761837005615, + 0.0019739342387765646, + -0.024491529911756516, + -0.0035390059929341078, + -0.0006124558276496828, + -0.004688512533903122, + -0.0009601564379408956, + -0.019491342827677727, + -0.015469745732843876, + 0.025684604421257973, + -0.0019387451466172934, + 0.002164960140362382, + 0.03407633677124977, + 0.006856823805719614, + 0.026998326182365417, + -0.018901508301496506, + -0.011421337723731995, + -0.012781977653503418, + 0.02986706607043743, + 0.004112083464860916, + 0.031127166002988815, + -0.01290262583643198, + 0.024853473529219627, + 0.0050001866184175014, + -0.005201266147196293, + -0.003693167120218277, + -0.012064793147146702, + -0.020617390051484108, + -0.036408863961696625, + 0.002632470801472664, + 0.030698195099830627, + 0.011910631321370602, + -0.008338112384080887, + 0.00855259783565998, + -0.021582573652267456, + 0.0064278533682227135, + -0.0156440157443285, + -0.03606032580137253, + -0.002035933779552579, + 0.02187749184668064, + -0.03150251507759094, + -0.043245580047369, + 0.0006354962242767215, + 0.02981344424188137, + 0.017426922917366028, + 0.007540495600551367, + -0.004259542096406221, + -0.003709923941642046, + -0.012996463105082512, + -0.03402271494269371, + 0.0031401976011693478, + 0.0012115063145756721, + -0.015804879367351532, + -0.005221374332904816, + -0.002672686707228422, + 0.026073358952999115, + -0.020818470045924187, + -0.003009495558217168, + 0.006964066531509161, + 0.02475963532924652, + 0.01572444662451744, + 0.010657234117388725, + 0.027802644297480583, + 0.016394713893532753, + -0.013224354013800621, + -0.02345931902527809, + -0.017158817499876022, + -0.010429343208670616, + -0.018901508301496506, + 0.011133123189210892, + -0.013418731279671192, + 0.000509402365423739, + -0.002607335802167654, + 0.007292496971786022, + 0.008492273278534412, + -0.004306460730731487, + -0.03758853301405907, + -0.039652951061725616, + -0.007976168766617775, + 0.008840812370181084, + 0.021126793697476387, + 0.005090672522783279, + -0.01439731940627098, + 0.011260473169386387, + 0.012158630415797234, + 0.012064793147146702, + -0.01032210048288107, + -0.003820517798885703, + 0.012165333144366741, + 0.00693055335432291, + -0.002540309214964509, + -0.034827034920454025, + -0.6331603527069092, + -0.012714951299130917, + 0.0026425248943269253, + -0.00037178833736106753, + -0.006706014275550842, + 0.03402271494269371, + 0.0020074474159628153, + -0.0036361946258693933, + 0.002766523975878954, + 0.05153007060289383, + -0.004490783903747797, + 0.008324706926941872, + -0.004799106623977423, + 0.0021817167289555073, + -0.012560790404677391, + -0.016904115676879883, + -0.008344815112650394, + -0.013492460362613201, + 0.03434444218873978, + -0.0030145226046442986, + -0.02386147901415825, + 0.0236872099339962, + 0.01022156048566103, + 0.004309812095016241, + 0.002195121953263879, + 0.007828709669411182, + 0.017976541072130203, + -0.013023274019360542, + 0.011401229538023472, + -0.007620927412062883, + -0.023419104516506195, + 0.015523366630077362, + -0.023982128128409386, + 0.01513461209833622, + 0.03984062746167183, + -0.002195121953263879, + 0.005097375251352787, + 0.026730218902230263, + 0.011193446815013885, + 0.01160230953246355, + -0.006672500632703304, + -0.03134164959192276, + -0.0028653882909566164, + 0.002892198972404003, + -0.0003386939351912588, + 0.0029491716995835304, + 0.05270973965525627, + 0.002231986727565527, + 0.01144814770668745, + -0.029491716995835304, + 0.001744367997162044, + -0.0026140385307371616, + 0.017681624740362167, + 0.010261776857078075, + 0.024075964465737343, + -0.011394526809453964, + 0.032682184129953384, + -0.012788680382072926, + -0.026207411661744118, + 0.011387824080884457, + -0.0021917708218097687, + 0.010281885042786598, + 0.013277974911034107, + -0.02547011896967888, + -0.016528766602277756, + 0.01699795201420784, + -0.014209644868969917, + -0.039170362055301666, + 0.012051387690007687, + -0.014115807600319386, + -0.017949730157852173, + 0.023419104516506195, + -0.008572706021368504, + -0.026663191616535187, + 0.02560417167842388, + 0.016877304762601852, + 0.013412028551101685, + -0.016649413853883743, + -0.003294358728453517, + 0.0211804136633873, + -0.0016639360692352057, + 0.0006748743471689522, + -0.009759076870977879, + 0.011394526809453964, + 0.022252840921282768, + -0.01569763571023941, + -0.01916961558163166, + 0.011588904075324535, + 0.00011729660036507994, + 0.00743325287476182, + 0.02018842101097107, + 0.03922398388385773, + -0.016166822984814644, + -0.021327873691916466, + -0.010737665928900242, + 0.02970620058476925, + -0.017091790214180946, + 0.018646808341145515, + 0.0008671570103615522, + -0.03024241514503956, + -0.031288031488657, + -0.0016488550463691354, + 0.023727426305413246, + -0.01914280466735363, + 0.023445913568139076, + 0.0066121770069003105, + -0.0033881959971040487, + -0.0014025322161614895, + 0.014276671223342419, + -0.024437908083200455, + 0.012869112193584442, + -0.01727946475148201, + 0.0005491994088515639, + -0.004256190732121468, + 0.002585552167147398, + -0.022936511784791946, + 0.02919679880142212, + 0.004041705746203661, + 0.01221225131303072, + -0.0027263080701231956, + 0.012098305858671665, + 0.005328617058694363, + 0.03399590402841568, + -0.026609571650624275, + -0.020684417337179184, + 0.024545151740312576, + 0.020228635519742966, + 0.007312605157494545, + 0.01302997674793005, + -0.01332489401102066, + 0.010462856851518154, + -0.004584621172398329, + 0.02284267544746399, + -0.01697114296257496, + 0.011823496781289577, + 0.005643642041832209, + 0.02687767706811428, + -0.016247253865003586, + -0.006538447458297014, + -0.021984733641147614, + -0.025563955307006836, + 0.011937442235648632, + 0.004370136186480522, + -0.026757029816508293, + -0.015107802115380764, + -0.032172780483961105, + -0.011367715895175934, + 0.01575125753879547, + 0.004738782532513142, + -0.0069439588114619255, + 0.0033697637263685465, + -0.011568795889616013, + 0.0019203128758817911, + 0.024022342637181282, + -0.006803202908486128, + 0.004902997985482216, + -0.019558370113372803, + -0.007158443797379732, + -0.010496369563043118, + -0.017493950203061104, + 0.008988270536065102, + 0.02973301149904728, + -0.03152932599186897, + -0.0025067958049476147, + 0.005814559757709503, + -0.026301247999072075, + 0.01074436865746975, + 0.008190654218196869, + -0.031100355088710785, + -0.04187823832035065, + 0.015094396658241749, + 0.003512195311486721, + -0.010791286826133728, + 0.013097003102302551, + -0.009671942330896854, + 0.011025880463421345, + -0.03203872963786125, + -0.006025693845003843, + -0.020858686417341232, + -0.023781048133969307, + 0.012614411301910877, + 0.00716514652594924, + -0.011032583191990852, + 0.002761497162282467, + 0.01985328644514084, + 0.004021597560495138, + 0.009135729633271694, + 0.002082852413877845, + -0.0004210110055282712, + 0.04399627819657326, + -0.008981567807495594, + 0.031609758734703064, + -0.01370694488286972, + 0.01128058135509491, + -0.02475963532924652, + 0.008445355109870434, + 0.0019353938987478614, + -0.015416123904287815, + -0.0064881774596869946, + 0.028446100652217865, + 0.031073544174432755, + 0.007982871495187283, + 0.015590393915772438, + -0.014665425755083561, + 0.01366672944277525, + -0.006706014275550842, + 0.01140793226659298, + -0.013505865819752216, + 0.03169018775224686, + 0.0356849767267704, + 0.010992366820573807, + -0.019947124645113945, + -0.012674734927713871, + -0.0011025880230590701, + 0.007057903800159693, + 0.04187823832035065, + -0.01545634027570486, + 0.007734872866421938, + 0.02866058610379696, + 0.0038406257517635822, + -0.009759076870977879, + -0.0039009496103972197, + 0.048607710748910904, + 0.014477751217782497, + -0.013499163091182709, + -0.009028486907482147, + 0.006146341562271118, + 0.01880767196416855, + 0.008110221475362778, + -0.01359300035983324, + -0.004547756630927324, + 0.0029307391960173845, + 0.0033094396349042654, + 0.017091790214180946, + 0.010208155028522015, + 0.008532489649951458, + 0.023164402693510056, + -0.0041053807362914085, + 0.040108732879161835, + 0.016046173870563507, + 0.013995159417390823, + 0.024692609906196594, + 0.007842115126550198, + -0.002428039675578475, + 0.0039009496103972197, + -0.015040774829685688, + 0.021944517269730568, + 0.03343288227915764, + -0.008056600578129292, + -0.0050437538884580135, + -0.019813071936368942, + 0.003626140533015132, + -0.012989760376513004, + -0.010067399591207504, + 0.0070914169773459435, + -0.01993371918797493, + 0.032655373215675354, + -0.012332899495959282, + 0.015630610287189484, + 0.018445728346705437, + 0.013847701251506805, + 0.023016944527626038, + 0.0065518529154360294, + -0.011273878626525402, + 1.2927498573844787e-05, + 0.0020191771909594536, + -0.03083224780857563, + -0.009671942330896854, + -0.020389501005411148, + 0.00689704017713666, + 0.005147644784301519, + 0.0020158258266747, + -0.012004468590021133, + -0.010663936845958233, + 0.0214887373149395, + -0.011092906817793846, + -0.0030161982867866755, + 0.016863899305462837, + 0.02978663332760334, + -5.665190201398218e-06, + -0.017949730157852173, + -0.02453174628317356, + 0.008726866915822029, + 0.02600633166730404, + -0.01914280466735363, + -0.015657419338822365, + 0.005110780242830515, + 0.003076522145420313, + -0.02769540250301361, + -0.017574381083250046, + -0.01024837139993906, + 0.003492087358608842, + -0.009370322339236736, + -0.01707838475704193, + 0.0012936139246448874, + 0.013365109451115131, + 0.022346677258610725, + 0.0057810465805232525, + 0.004708620719611645, + 0.02715918980538845, + 0.010456154122948647, + -0.020201826468110085, + -0.01620703935623169, + -0.03415676951408386, + 0.027561349794268608, + 0.0036093839444220066, + -0.019692422822117805, + -0.021689817309379578, + 0.0010908583644777536, + -0.023593373596668243, + -0.016555577516555786, + 0.008532489649951458, + -0.006206665653735399, + 0.008612921461462975, + -0.003713275073096156, + -0.0029960903339087963, + 0.011890524066984653, + 0.00998026505112648, + 0.043379634618759155, + 0.007493576966226101, + -0.019558370113372803, + -0.01707838475704193, + 0.006571960635483265, + 0.022226030007004738, + 0.006856823805719614, + 0.027990318834781647, + 0.012051387690007687, + 0.011555390432476997, + -0.009095513261854649, + -0.019075777381658554, + -0.008445355109870434, + -0.03493427857756615, + 0.018392106518149376, + 0.02292310632765293, + -0.0055833179503679276, + -0.0032373860012739897, + 0.03233364596962929, + -0.010596909560263157, + -0.0019487992394715548, + -0.004708620719611645, + 0.0026475517079234123, + -0.017855893820524216, + 0.02634146437048912, + 0.010797989554703236, + -0.02439769171178341, + 0.011736362241208553, + 0.004373487550765276, + 0.02679724618792534, + 0.009986967779695988, + -0.010871718637645245, + 0.025684604421257973, + 0.013358406722545624, + 0.014303482137620449, + -0.026274437084794044, + -0.01569763571023941, + 0.042307205498218536, + 0.0018432323122397065, + 0.015027370303869247, + -0.02202495001256466, + -0.006783094722777605, + -0.0032223050948232412, + -0.00031397785642184317, + 0.0001699753338471055, + 0.0006995904259383678, + 0.00044237574911676347, + 0.022185813635587692, + 0.011213555000722408, + -0.006823310628533363, + 0.0064446101896464825, + -0.010570099577307701, + 0.006608825642615557, + 0.012118414044380188, + -0.012714951299130917, + -0.022453920915722847, + 0.010268479585647583, + -0.030027929693460464, + 0.005033699795603752, + 0.0009836157551035285, + 0.005023645702749491, + -0.02820480428636074, + 0.012621114030480385, + -0.020603984594345093, + -0.00987972505390644, + -0.006360827013850212, + -0.03228002414107323, + -0.01666281931102276, + 0.025684604421257973, + -0.015483151189982891, + -0.029464906081557274, + -0.009350214153528214, + -0.0265425443649292, + 0.0004507540725171566, + -0.015362503007054329, + 0.018284864723682404, + 0.004001489840447903, + -0.017038168385624886, + -0.03418358042836189, + -0.009531186893582344, + 0.013780674897134304, + -0.01037572231143713, + 0.016917521134018898, + -0.0006874418468214571, + -0.016501955687999725, + 0.001024669618345797, + -0.02411618083715439, + -0.011609012261033058, + -0.010710855014622211, + -0.026891082525253296, + -0.020684417337179184, + 0.014437535777688026, + -0.01369354035705328, + 0.011756470426917076, + -0.005274995695799589, + 0.009135729633271694, + -0.00031062652124091983, + 0.013345001265406609, + 0.002630795119330287, + -0.002459877170622349, + -0.0047857011668384075, + 0.018110595643520355, + 0.008505678735673428, + 0.003579221898689866, + 0.01643492840230465, + -0.007057903800159693, + 0.017963135614991188, + -0.013941538520157337, + -0.012594303116202354, + 0.0026827408000826836, + 0.027199406176805496, + 0.005104077514261007, + -0.004477378912270069, + -0.015268665738403797, + 0.013351703993976116, + 0.013277974911034107, + 0.003706572577357292, + -0.021703222766518593, + -0.004624837078154087, + 0.00987972505390644, + 0.0013338299468159676, + 0.005063861608505249, + -0.002407931489869952, + 0.01651536114513874, + 0.027936698868870735, + 0.0067596351727843285, + -0.010610315017402172, + -0.02769540250301361, + 0.03833923116326332, + 0.0038406257517635822, + -0.011092906817793846, + 0.028017129749059677, + -0.013257866725325584, + -0.00427629891782999, + -0.041663751006126404, + 0.009055297821760178, + 0.0239955335855484, + 0.015483151189982891, + 0.003522249171510339, + -0.011709552258253098, + -0.007761683315038681, + 9.200452041113749e-05, + 0.009115621447563171, + 0.008586110547184944, + -0.007875628769397736, + 0.0008160491706803441, + -0.012668032199144363, + 0.019772855564951897, + -0.014517967589199543, + 0.016166822984814644, + 0.02190430276095867, + -0.03139527142047882, + -0.031288031488657, + 0.01778886653482914, + -0.020657606422901154, + 0.04112754017114639, + -0.02292310632765293, + -0.013097003102302551, + -0.028553342446684837, + -0.02213219180703163, + -0.002585552167147398, + -0.03774939849972725, + -0.004484081175178289, + -0.016086390241980553, + 0.009182647801935673, + 0.01807037927210331, + 0.026810651645064354, + -0.004849376622587442, + -0.006598771549761295, + 0.000951778085436672, + -0.009919940494000912, + 0.0097121587023139, + -0.02190430276095867, + -0.006079315207898617, + -0.020630795508623123, + 0.0257516298443079, + 0.006675851996988058, + 0.003043008968234062, + 0.010060696862637997, + 0.008204059675335884, + 0.013505865819752216, + 0.05147644877433777, + -0.01855297014117241, + -0.01615341752767563, + -0.0015424502780660987, + -0.016850493848323822, + -0.001162074157036841, + 0.014879911206662655, + 0.011273878626525402, + 0.02677043527364731, + -0.030001118779182434, + -0.0044103520922362804, + 0.0032675480470061302, + -0.030054740607738495, + -0.018847888335585594, + -0.009437349624931812, + 0.022990133613348007, + -0.02080506458878517, + 0.028285237029194832, + 0.012674734927713871, + 0.006870229262858629, + -0.015684230253100395, + 0.000745252298656851, + -0.027856266126036644, + -0.016783468425273895, + 0.021193819120526314, + -0.0017276112921535969, + 0.01595233753323555, + -0.005549804773181677, + -0.0026190655771642923, + 0.002516849897801876, + -0.011924036778509617, + 0.026663191616535187, + -0.008874325081706047, + -0.005543102044612169, + -0.013552783988416195, + -0.03080543875694275, + -0.020054366439580917, + -0.0031418732833117247, + -0.004071867559105158, + 0.005951964762061834, + 0.0016195308417081833, + 0.005003537517040968, + 0.02764178067445755, + -0.009886427782475948, + -0.002806740114465356, + 0.0001260938443010673, + 0.006950661074370146, + 0.010777881368994713, + 0.004970024339854717, + 0.02092571370303631, + 0.02626103349030018, + -0.03930441290140152, + -0.012849004939198494, + -0.06541799008846283, + 0.020175015553832054, + -0.01758778654038906, + 0.025952709838747978, + 0.006739527452737093, + -0.030590953305363655, + 0.0035188980400562286, + 0.00916253961622715, + 0.015094396658241749, + -0.014745858497917652, + -0.005154347512871027, + 0.026864271610975266, + 0.015201639384031296, + -0.008364923298358917, + -0.004919754341244698, + 0.006823310628533363, + -0.019518153741955757, + -0.004024948924779892, + 0.001967231510207057, + 0.002094582188874483, + -0.002541984897106886, + 0.00049138895701617, + 0.00039252470014616847, + 0.039143551141023636, + 0.003049711463972926, + 0.013767269439995289, + 0.0063541242852807045, + -0.03984062746167183, + 0.003113386919721961, + -0.026381680741906166, + -0.01679687201976776, + -0.004554459359496832, + -0.017038168385624886, + 0.04472016543149948, + -0.011367715895175934, + -0.0048761870712041855, + -0.004035003017634153, + 0.006833364721387625, + 0.0075002796947956085, + -0.008183951489627361, + -0.013458946719765663, + 0.022722026333212852, + -0.01462521031498909, + 0.013599703088402748, + 0.02179705910384655, + -0.00012368508032523096, + 0.005120834335684776, + 0.0009040216682478786, + 0.0009676969493739307, + -0.01939750649034977, + 0.00040739623364061117, + -0.00916253961622715, + 9.7921714768745e-05, + 0.010462856851518154, + -0.016475144773721695, + -0.008371626026928425, + -0.005811208393424749, + -0.027320053428411484, + 0.0023157699033617973, + -0.020912308245897293, + 0.01592552661895752, + -0.02970620058476925, + -0.01236641313880682, + 0.012560790404677391, + 0.011354310438036919, + 0.029920686036348343, + -0.003046360332518816, + -0.022936511784791946, + -0.012292683124542236, + 0.020483337342739105, + -0.03815155476331711, + 0.016247253865003586, + 0.034237202256917953, + -0.0044271089136600494, + -0.012031279504299164, + 0.0009903183672577143, + -0.005087321158498526, + -0.01410240214318037, + 0.02521541714668274, + -0.018754050135612488, + -0.025590766221284866, + -0.008592813275754452, + -0.001836529583670199, + 0.02100614458322525, + -0.013727053068578243, + -0.01651536114513874, + 0.002607335802167654, + 0.014450941234827042, + -0.0022688512690365314, + -0.004601377993822098, + -0.010013777762651443, + -0.009933345951139927, + 0.022319866344332695, + -0.005606777500361204, + 0.02677043527364731, + -0.014209644868969917, + 0.013633215799927711, + 0.008076708763837814, + -0.024129586294293404, + 0.0061563956551253796, + -0.03174380958080292, + -0.013525973074138165, + -0.0007243065047077835, + 0.006307205650955439, + -0.03758853301405907, + 0.012218954041600227, + -0.019263451918959618, + -0.01584509387612343, + -0.010637125931680202, + 0.02018842101097107, + -0.0018884752644225955, + 0.014169429428875446, + 0.01027518231421709, + -0.00345187122002244, + -0.013304785825312138, + 0.02769540250301361, + -0.0006832526996731758, + -0.008023086935281754, + 0.025617577135562897, + 0.00024108639627229422, + -0.037990693002939224, + 0.006706014275550842, + -0.017413517460227013, + 0.02634146437048912, + 0.02182387001812458, + -0.026073358952999115, + -0.01167603861540556, + -0.00044028114643879235, + -0.019839880988001823, + -0.007795196957886219, + -0.008297896943986416, + 0.005610128864645958, + 0.0034585739485919476, + 0.00862632691860199, + -0.016046173870563507, + 0.04147607833147049, + -0.005908397026360035, + 0.01985328644514084, + -0.01671644113957882, + -0.027480917051434517, + -0.01459839940071106, + 0.0030128469225019217, + 0.009323404170572758, + -0.001074939500540495, + -0.0511547215282917, + -0.010523180477321148, + 0.029572147876024246, + 0.00033115342375822365, + 0.014906722120940685, + 0.028338858857750893, + 0.0010305343894287944, + -0.020885497331619263, + 0.014196239411830902, + 0.01730627566576004, + 0.02560417167842388, + -0.002451498992741108, + 0.0035390059929341078, + -0.022748837247490883, + -0.00549283204600215, + 0.01154868770390749, + 0.00786222331225872, + -0.03597989305853844, + -0.02057717554271221, + 0.01677006296813488, + -0.010020480491220951, + -0.014048781245946884, + 0.007815305143594742, + -0.02583206258714199, + -0.006699311546981335, + -0.019746044650673866, + 0.016408119350671768, + 0.022239435464143753, + -0.03201191872358322, + 0.016113201156258583, + 0.01615341752767563, + -0.01115323044359684, + -0.02914317697286606, + 0.0025118228513747454, + -0.022239435464143753, + 0.0034384659957140684, + -0.0028854962438344955, + -0.02394191175699234, + 0.019813071936368942, + -0.0047689443454146385, + 0.013633215799927711, + 0.0050437538884580135, + -0.00021343791740946472, + -0.032655373215675354, + -0.021931111812591553, + -0.020831875503063202, + 0.043352823704481125, + 0.022427110001444817, + -0.024437908083200455, + -0.0015223423251882195, + -0.0069439588114619255, + -0.006521690636873245, + -0.007527090143412352, + -0.025054553523659706, + 0.006186557933688164, + -0.029330851510167122, + -0.003031279193237424, + -0.003049711463972926, + -0.008760380558669567, + -0.006762986537069082, + -0.0020158258266747, + -0.005770992487668991, + -0.029652580618858337, + -0.012795383110642433, + 0.18928319215774536, + -0.03356693685054779, + -0.016676224768161774, + 0.006528393365442753, + -0.029518526047468185, + -0.03026922419667244, + 0.028580153360962868, + 0.0031770621426403522, + 0.013351703993976116, + 0.025671198964118958, + 0.0070914169773459435, + -0.0006882796878926456, + 0.0006354962242767215, + 0.0021096630953252316, + 0.016274064779281616, + -0.005191212520003319, + -0.03721318393945694, + -0.012399925850331783, + -0.0006363340653479099, + 0.01855297014117241, + 0.013452243991196156, + -0.02504114806652069, + -0.0007699683774262667, + -0.015402719378471375, + 0.05364811420440674, + 0.01237981766462326, + 0.004571216180920601, + 0.0031971700955182314, + 0.04083262011408806, + 0.03182424232363701, + -0.027909887954592705, + 0.0035256005357950926, + 0.01435710396617651, + -0.0009006703039631248, + 0.004450567997992039, + 0.010315397754311562, + 0.01277527492493391, + -0.010536585934460163, + 0.026167195290327072, + 0.02261478453874588, + 0.013499163091182709, + -0.025403091683983803, + -0.009544591419398785, + -0.03729361668229103, + 0.002915658289566636, + 0.023673804476857185, + -0.0007837926386855543, + 0.007111525163054466, + -2.72295674221823e-05, + 0.0021347980946302414, + -0.010677341371774673, + 0.016930926591157913, + 0.008016384206712246, + 0.03396909311413765, + -0.01317073218524456, + -0.029464906081557274, + 0.006136287935078144, + -0.006347421556711197, + 0.012601005844771862, + -0.00040697731310501695, + -0.021153602749109268, + 0.01128058135509491, + -0.021609384566545486, + 0.01575125753879547, + -0.02467920444905758, + 0.0032809535041451454, + -0.02156916819512844, + -0.002743064658716321, + 0.011850307695567608, + -0.02544330805540085, + 0.007506982423365116, + -0.014705642126500607, + -0.021247440949082375, + 0.012440142221748829, + -0.03241407871246338, + -0.03461255133152008, + 0.00918935053050518, + 0.004028300289064646, + 0.029893875122070312, + 0.02427704446017742, + 0.0018683671951293945, + 0.009309998713433743, + -0.01620703935623169, + -0.03882182389497757, + -0.005191212520003319, + -0.0322532132267952, + 0.009356916882097721, + -0.0031469000969082117, + -0.0008772109868004918, + -0.01985328644514084, + -0.02922360971570015, + 0.0038774902932345867, + -0.006592068821191788, + -0.012849004939198494, + 0.00823086965829134, + -0.006491528823971748, + 0.02021523006260395, + 0.005660398863255978, + -0.010751071386039257, + -0.0008730218396522105, + -0.02067101188004017, + 0.0701366662979126, + 0.04107391834259033, + -0.011166635900735855, + -0.011528579518198967, + -0.007627630140632391, + -0.002515174215659499, + 0.03088586963713169, + -0.00729919970035553, + 0.0011671012034639716, + -0.012473654933273792, + -0.027266431599855423, + 0.019491342827677727, + -0.024102775380015373, + 0.012761869467794895, + 0.020992739126086235, + 0.005147644784301519, + -0.003386520314961672, + 0.002297337632626295, + -0.0060390993021428585, + -0.0038774902932345867, + 0.003225656459107995, + 0.021864086389541626, + 0.0010950475698336959, + 0.013056786730885506, + -0.02600633166730404, + -0.030725006014108658, + 0.03147570416331291, + -0.016140012070536613, + 0.005459318868815899, + 0.024210017174482346, + -0.02343250811100006, + 0.026958109810948372, + -0.00034623441752046347, + 0.01973263919353485, + -0.0004134705231990665, + -0.0273334588855505, + -0.030081549659371376, + -0.012158630415797234, + 0.0038707877974957228, + 0.02134127914905548, + 0.002540309214964509, + 0.017346492037177086, + 0.003116738284006715, + 0.010764476843178272, + 0.002501768758520484, + 0.02863377518951893, + 0.0009785887086763978, + -0.02427704446017742, + -0.028017129749059677, + -0.009973562322556973, + -0.00015751257888041437, + 0.0007109011639840901, + -0.021019550040364265, + 0.019786261022090912, + 0.025081364437937737, + -0.01266133040189743, + -0.034827034920454025, + 0.013338298536837101, + 0.005901694763451815, + -0.023365482687950134, + -0.009222864173352718, + 0.00029554552747868, + -0.008767083287239075, + -0.00835822056978941, + -0.01489331666380167, + -0.17040850222110748, + 0.00862632691860199, + 0.006675851996988058, + -0.026958109810948372, + 0.017185626551508904, + 0.0009735617786645889, + 0.022655000910162926, + 0.028419289737939835, + -0.017735246568918228, + -0.009377025067806244, + 0.027239620685577393, + 0.008029789663851261, + -0.015590393915772438, + -0.013157326728105545, + -0.006065909750759602, + -0.002429715357720852, + -0.023646993562579155, + 0.024290449917316437, + 0.028285237029194832, + 0.0161266066133976, + -0.000984453596174717, + -0.02253435179591179, + 0.01538931392133236, + 0.0020191771909594536, + 0.009222864173352718, + 0.012151927687227726, + -0.020429715514183044, + 0.0149201275780797, + -0.01916961558163166, + -0.016072984784841537, + -0.01789611019194126, + 0.0013748836936429143, + 0.013901322148740292, + 0.0009852914372459054, + -0.005234779790043831, + -0.02029566280543804, + -0.0010313722304999828, + -0.005683857947587967, + -0.002344256266951561, + 0.028821449726819992, + 0.012332899495959282, + 0.034264013171195984, + -0.010369019582867622, + 0.018539564684033394, + 0.004698566626757383, + 0.02470601536333561, + 0.019772855564951897, + -0.019839880988001823, + -0.004226028919219971, + -0.02317780815064907, + -0.0020878794603049755, + -0.017829082906246185, + -0.006414448376744986, + 0.01115323044359684, + -0.011629119515419006, + 0.021113388240337372, + -0.012453547678887844, + 0.018673619255423546, + 0.0035256005357950926, + 0.002959225559607148, + -0.017708435654640198, + -0.01666281931102276, + 0.01433029305189848, + -0.001305343583226204, + -0.015992553904652596, + -0.016528766602277756, + -0.012359710410237312, + 0.023285049945116043, + -0.017319681122899055, + -0.004494135268032551, + -0.0035892759915441275, + -0.03780301660299301, + 0.011629119515419006, + 0.00120731710921973, + 0.005462670233100653, + 0.02261478453874588, + -0.009645131416618824, + -0.009041892364621162, + -0.003937814384698868, + -0.002406256040558219, + -0.011213555000722408, + 0.03890225291252136, + -0.004504189360886812, + -0.03244088590145111, + -0.011950847692787647, + -0.000524064467754215, + -0.0008194005349650979, + 0.02332526631653309, + -0.01486650574952364, + 0.007634332869201899, + 0.01880767196416855, + -0.023338671773672104, + -0.013378514908254147, + -0.027829455211758614, + 0.015764662995934486, + -0.003951219841837883, + -0.006072612479329109, + 0.007379631511867046, + -0.01886129379272461, + -0.0025956062600016594, + 0.010596909560263157, + -0.0216227900236845, + -0.034853845834732056, + 0.014142618514597416, + -0.00027732265880331397, + -0.0005722398054786026, + -0.022427110001444817, + -0.0020242042373865843, + 0.0464092381298542, + -0.022011544555425644, + -0.01914280466735363, + -0.012567493133246899, + 0.016193633899092674, + 0.009765779599547386, + -0.01014783140271902, + 0.01702476292848587, + 0.009236269630491734, + -0.006786446087062359, + 0.013646621257066727, + -0.0055397506803274155, + 0.06413107365369797, + -0.012976354919373989, + -0.0029106312431395054, + 0.0224137045443058, + -0.002188419457525015, + -0.0331379659473896, + -0.09850233048200607, + 0.0025805251207202673, + 0.021756842732429504, + 0.0216227900236845, + 0.009511078707873821, + 0.024102775380015373, + 0.003207224188372493, + 0.006236827466636896, + 0.011079501360654831, + 0.04410352185368538, + -0.01513461209833622, + -0.033218394964933395, + -0.03412995859980583, + -0.032119158655405045, + 0.016810277476906776, + -0.01437050849199295, + -0.002779929433017969, + -0.02044312097132206, + -0.024049153551459312, + 0.040135543793439865, + -0.013291380368173122, + -0.003773599164560437, + 0.0010983988177031279, + 4.835866275243461e-05, + -0.013874512165784836, + -0.0014678831212222576, + -0.03989424929022789, + 0.018847888335585594, + 0.017413517460227013, + -0.008170546032488346, + 0.030430089682340622, + -0.02258797362446785, + -0.002097933553159237, + -0.013485757634043694, + -0.008800595998764038, + -0.0066691492684185505, + -0.012145224958658218, + -0.010007075034081936, + 0.025590766221284866, + -0.01115323044359684, + -0.0059150997549295425, + 0.02095252461731434, + 0.019786261022090912, + -0.016300875693559647, + -0.008029789663851261, + -0.023579968139529228, + -0.014437535777688026, + 0.026462113484740257, + -0.0006375907687470317, + -0.005650344770401716, + -0.04249488189816475, + -0.03144889324903488, + -0.023781048133969307, + 0.020898902788758278, + 0.018110595643520355, + -0.0014058834640309215, + -0.005462670233100653, + -0.015603798441588879, + -0.015375908464193344, + -0.00848557148128748, + -0.032226402312517166, + 0.018794266507029533, + -0.029598958790302277, + 0.030644573271274567, + -0.006424502469599247, + -0.010898529551923275, + -0.009745671413838863, + -0.02057717554271221, + 0.023848073557019234, + 0.002789983293041587, + -0.018780861049890518, + 0.009102215990424156, + 0.01024837139993906, + 0.0015282070962712169, + -0.01908918283879757, + -0.00798957422375679, + -0.052924226969480515, + -0.015992553904652596, + 0.012989760376513004, + -0.006350772920995951, + -0.007111525163054466, + -0.025389686226844788, + 0.022038355469703674, + -0.027373675256967545, + 0.02501433715224266, + 0.021864086389541626, + 0.0019756099209189415, + -0.016649413853883743, + 0.012011171318590641, + -0.007895736955106258, + -0.014169429428875446, + 0.012131819501519203, + 0.016729846596717834, + 0.002768199658021331, + -0.03246769681572914, + 0.01993371918797493, + 0.0007335226400755346, + -0.00042415288044139743, + 0.0027547944337129593, + 0.0016203686827793717, + -0.01457158848643303, + -0.009142432361841202, + -0.043835412710905075, + 0.02879463881254196, + 0.024464718997478485, + -0.002986036241054535, + -0.016917521134018898, + -0.0032105755526572466, + 0.0037937071174383163, + 0.015791473910212517, + 0.01809719018638134, + 0.0003516803262755275, + -0.015912121161818504, + -0.00036236271262168884, + -0.012520574033260345, + -0.010114317759871483, + -0.04461292177438736, + -0.03675740212202072, + -0.0014226401690393686, + 0.014182833954691887, + -0.000768711615819484, + 0.004252839367836714, + -0.007084714714437723, + 0.012218954041600227, + 0.009692050516605377, + 0.01659579388797283, + -0.02930404245853424, + -0.007292496971786022, + -0.005650344770401716, + -0.002448147628456354, + -0.009799293242394924, + -0.013231056742370129, + -0.0017611245857551694, + -0.0008566840551793575, + -0.0014092348283156753, + 0.007252281066030264, + -0.01727946475148201, + 0.0005450102617032826, + 0.0076075224205851555, + 0.03147570416331291, + 0.023392293602228165, + 0.045363619923591614, + -0.011347607709467411, + -0.01849934831261635, + -0.0018197729950770736, + -0.020711228251457214, + -0.0003560789627954364, + 0.01032210048288107, + 0.006374232470989227, + 0.011897226795554161, + 0.00756060378625989, + -0.008264383301138878, + 0.03707912936806679, + 0.00796276330947876, + 0.010429343208670616, + -0.006431204732507467, + 0.01437050849199295, + -0.0005219698650762439, + 0.004272947553545237, + 0.0103489113971591, + 0.015590393915772438, + -0.035309627652168274, + 0.053380005061626434, + 0.009893130511045456, + 0.0022705269511789083, + -0.02134127914905548, + 0.009330106899142265, + -0.0157780684530735, + -0.028472911566495895, + -0.014021970331668854, + 0.0023777696769684553, + -0.007527090143412352, + -0.016863899305462837, + -0.0019571774173527956, + 0.01970582827925682, + 0.038580525666475296, + -0.007855520583689213, + -0.011622416786849499, + 0.010978961363434792, + 0.02233327180147171, + -0.004148948471993208, + 0.01615341752767563, + 0.02396872267127037, + 0.01433029305189848, + 0.0051007261499762535, + -0.010013777762651443, + 0.046972259879112244, + 0.009055297821760178, + -0.007647738326340914, + -0.003307764185592532, + -0.006464718375355005, + 0.007024390622973442, + -0.006997579708695412, + 0.02414299175143242, + -0.0011327499523758888, + 0.016327686607837677, + 0.013190840370953083, + 0.018646808341145515, + 0.0054492647759616375, + -0.006675851996988058, + 0.04056451469659805, + 0.04721355810761452, + 0.0007062930963002145, + -0.001613666070625186, + -0.0029558741953223944, + -0.030564142391085625, + -0.004071867559105158, + 0.015992553904652596, + -0.020376095548272133, + -0.02774902433156967, + 0.013036679476499557, + 0.01753416657447815, + -0.00746006378903985, + 0.012359710410237312, + 0.0011302365455776453, + 0.008887730538845062, + -0.018566375598311424, + 0.01154868770390749, + -0.02817799337208271, + -0.008726866915822029, + -0.025148389860987663, + 0.028580153360962868, + 0.02772221341729164, + 0.0020024206023663282, + -0.0021079874131828547, + 0.010007075034081936, + 0.030993113294243813, + -0.02049674279987812, + 0.021756842732429504, + -0.010308695025742054, + 0.008814001455903053, + -0.012178738601505756, + 0.01801675744354725, + 0.0038372743874788284, + -0.014491156674921513, + -0.0012793707428500056, + 7.859919423935935e-05, + 0.008096816949546337, + 0.02475963532924652, + 0.016636008396744728, + 0.0031653326004743576, + 0.1271897256374359, + 0.02455855719745159, + -0.0026643085293471813, + 0.0157780684530735, + -0.012473654933273792, + 0.007614224683493376, + 0.015590393915772438, + 0.012842302210628986, + 0.011213555000722408, + -0.05102067068219185, + 0.025711413472890854, + -0.007627630140632391, + 0.015938932076096535, + -0.03941165655851364, + 0.007352821063250303, + 0.033700987696647644, + 0.01233960222452879, + 0.0010146155254915357, + -0.023164402693510056, + 0.005097375251352787, + 0.0360335148870945, + -0.019303668290376663, + 0.015818284824490547, + 0.02916998788714409, + -0.023164402693510056, + -0.016381308436393738, + 0.021730031818151474, + 0.0020426365081220865, + 0.003555762581527233, + -0.024022342637181282, + -0.000485943048261106, + 0.012922734022140503, + -0.054961834102869034, + -0.022199219092726707, + 0.011086204089224339, + -0.02713237889111042, + -0.0005810370785184205, + -0.02386147901415825, + 0.005874883849173784, + 0.009544591419398785, + 0.016421522945165634, + 0.026462113484740257, + -0.007098119705915451, + -0.024947309866547585, + 0.009678645059466362, + 0.007024390622973442, + -0.0014695588033646345, + -0.011883821338415146, + -0.026194006204605103 + ], + "metadata": { + "source": "Thesis_Verladegeraeusche_in_Speditionen.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 41, + "has_images": true, + "image_count": 51, + "coordinates": "CoordinatesMetadata(points=((204.16666666666666, 189.02777777777797), (204.16666666666666, 642.3611111111111), (936.1666666666666, 642.3611111111111), (936.1666666666666, 189.02777777777797)), system=)", + "links": [], + "last_modified": "2025-05-05T22:59:16", + "_known_field_names": "frozenset({'cc_recipient', 'link_texts', 'url', 'filetype', 'category_depth', 'page_number', 'filename', 'orig_elements', 'detection_origin', 'email_message_id', 'page_name', 'coordinates', 'table_as_cells', 'link_start_indexes', 'sent_to', 'bcc_recipient', 'languages', 'last_modified', 'link_urls', 'file_directory', 'subject', 'data_source', 'detection_class_prob', 'image_base64', 'text_as_html', 'attached_to_filename', 'key_value_pairs', 'signature', 'sent_from', 'header_footer_type', 'parent_id', 'links', 'emphasized_text_contents', 'emphasized_text_tags', 'image_mime_type', 'is_continuation', 'image_path'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "Thesis_Verladegeraeusche_in_Speditionen.pdf", + "detection_class_prob": 0.2568194270133972, + "parent_id": "d45475a34bc527cde6987546fa6dd2f5", + "text_as_html": "
Flurf\u00f6rderger\u00e4t |Anzahl Einzelereignisse ElMax-PegelSchallleistungspegel
LAFmaxLWA,5sLWAmaxLWA,1hKlLWAT,1h
[dB(A)][dB(A)][dB(A)][dB(A)][dB(A)][dB(A)]
Gabelstapler29769,3100,7108,872,15,777,8
STABW [dB]6,54,96,54,92,9-
Gabelhubwagen9968,6100,7108,172,16,279,5
STABW [dB]6,45,16,4512,7-
", + "id": "5ba44de7-0ff3-4c0c-b018-67e92171e1c2", + "processing_timestamp": "2025-05-06T14:18:19.298665", + "chunk_number": 38, + "total_chunks": 49, + "chunking_strategy": "hybrid", + "word_count": 402 + } +} \ No newline at end of file diff --git a/data/processed/85fd305f-83de-70b0-47e8-2dc000000039.json b/data/processed/85fd305f-83de-70b0-47e8-2dc000000039.json new file mode 100644 index 0000000000000000000000000000000000000000..b4c9465af882847c658854fbec507bd80bcce79f --- /dev/null +++ b/data/processed/85fd305f-83de-70b0-47e8-2dc000000039.json @@ -0,0 +1,1570 @@ +{ + "id": "85fd305f-83de-70b0-47e8-2dc000000039", + "content": "5 und Nr. 6 genutzt werden, um pr\u00e4zisere Ergebnisse zu erzielen. Ein Entlade- vorgang kann in \u00e4hnlicher Weise wie ein Beladevorgang betrachtet werden. W\u00e4hrend beim Beladen G\u00fcter in einen Anh\u00e4nger geladen werden, werden beim Entladen G\u00fcter aus dem Anh\u00e4nger entfernt. Aus der Thesis geht hervor, dass die Beladung sowohl mit einem Gabelstapler als auch mit einem Gabelhubwagen in \u00e4hnlicher Gr\u00f6\u00dfenordnung erfolgt wie die Beladung mit einem Handhubwagen gem\u00e4\u00df den aktuellen Prognosegrundlagen. Dennoch zeigt sich, dass die Beladung mit dem Gabelstapler und dem Gabelhubwagen deutlich leiser als bisher in Untersuchungen angesetzt vonstattengeht. Die Begr\u00fcndung f\u00fcr die genannten Aussagen und Schlussfolgerungen ergibt sich aus der Analyse der vorliegenden Thesis und den daraus abgeleiteten Erkenntnissen. Diese Erkenntnisse lassen darauf schlie\u00dfen, dass die Verwendung ein Gabelhubwagen im Vergleich zur Verwendung eines Gabel- staplers eine etwas h\u00f6here Ger\u00e4uschentwicklung aufweist und somit eine h\u00f6here L\u00e4rm- belastung verursacht. Obwohl die Schallleistungspegel der beiden Flurf\u00f6rderger\u00e4te identisch sind, zeigt sich ein Unterschied in der Impulshaftigkeit der Ger\u00e4uschentwick- lung. Der Gabelhubwagen erzeugt mehr impulsartige Schallereignisse, w\u00e4hrend der Ga- belstapler eine best\u00e4ndigere Ger\u00e4uschabstrahlung aufweist. Diese impulsbehafteten Ger\u00e4usche f\u00fchren zu einer subjektiven Wahrnehmung von L\u00e4rm. Bei einem Vergleich der Schallleistungspegel zwischen den verschiedenen Flurf\u00f6rderger\u00e4ten und Anh\u00e4nger- typen zeigt sich eine gewisse Variation. Allerdings l\u00e4sst sich kein signifikanter Unter- schied zwischen den Beladevorg\u00e4ngen der Flurf\u00f6rderger\u00e4te in den verschiedenen Anh\u00e4-\nngern feststellen, was auf eine gewisse \u00c4hnlichkeit hinweist. 75\n8 Abschlie\u00dfende Bewertung und Ausblick\nAuf diese Weise k\u00f6nnen zudem Ma\u00dfnahmen zur L\u00e4rmminderung gezielt entwickelt und umgesetzt werden, um die Gesamtemissionen zu reduzieren. Durch subjektives Erleben und H\u00f6ren w\u00e4hrend des Beladevorgangs konnten potenzielle Hauptursachen identifi- ziert werden, die zu einer erh\u00f6hten L\u00e4rmbelastung beitragen k\u00f6nnen. Insgesamt gibt es verschiedene M\u00f6glichkeiten, die L\u00e4rmbelastung zu senken. Durch gezielte Ma\u00dfnahmen, die an die individuellen Gegebenheiten angepasst sind, kann der L\u00e4rmpegel effektiv mi- nimiert werden. Es wurden verschiedene Ma\u00dfnahmen dargestellt, um die L\u00e4rmbelas- tung zu reduzieren. Dazu geh\u00f6ren die Anbringung einer weicheren Oberfl\u00e4che auf der \u00dcberladebr\u00fccke, die Verwendung einer Dr\u00f6hnfolie an der Unterseite der \u00dcberladebr\u00fc- cke, die Installation von speziell angepassten Schalld\u00e4mpfern im Anh\u00e4nger sowie Ma\u00df- nahmen auf dem Gel\u00e4nde und durch das richtige Verhalten des Personals. In Zukunft k\u00f6nnten weitere Untersuchungen durchgef\u00fchrt werden und bei Bedarf noch zus\u00e4tzliche spezifische Untersuchungen und Messungen f\u00fcr bestimmte Situationen von Flurf\u00f6rderger\u00e4te durchgef\u00fchrt werden, um eine detailliertere und pr\u00e4zisere Bewertung vorzunehmen. Ein Ansatz k\u00f6nnte darin bestehen, gezielte Untersuchungen zur Identifi- zierung der Hauptquellen des Schallpegels bei den Flurf\u00f6rderger\u00e4ten durchgef\u00fchrt wer- den. Dies erm\u00f6glicht eine gezielte Optimierung der schalltechnischen Eigenschaften die- ser Quellen, beispielsweise durch den Einsatz von schalld\u00e4mpfenden Materialien. Eine weitere M\u00f6glichkeit besteht darin, den Einfluss verschiedener Betriebsbedingungen und Parameter auf die Schallabstrahlung der Flurf\u00f6rderger\u00e4te zu untersuchen. Eine m\u00f6gliche Methode zur Identifizierung der Schallquellenentstehung k\u00f6nnte der Einsatz einer akus- tischen Kamera sein. Diese erm\u00f6glicht es, die Richtung und Position von Schallquellen visuell darzustellen und somit zur Lokalisierung und Analyse des Schallgeschehens bei-\n\n## zutragen.", + "embedding": [ + 0.008924118243157864, + 0.010180847719311714, + 0.015080757439136505, + -0.03917253389954567, + 0.0042915986850857735, + 0.018998010084033012, + -0.016992591321468353, + -0.008001625537872314, + -0.011130080558359623, + -0.020121045410633087, + 0.008810478262603283, + 0.017300087958574295, + -0.01881083846092224, + 0.01371707208454609, + 0.02088310569524765, + 0.0076540191657841206, + 0.04484118893742561, + 0.005354471039026976, + 0.011444262228906155, + -0.004722763784229755, + -0.033102795481681824, + 0.0002619579609017819, + 0.003340695286169648, + -0.019091596826910973, + -0.033744532614946365, + 0.019452571868896484, + 0.04115121439099312, + -0.023824388161301613, + -0.016604876145720482, + 0.011190243065357208, + 0.0007470189011655748, + -0.011664859019219875, + -0.005986178293824196, + 0.00131355004850775, + -0.02553568035364151, + -0.026150675490498543, + -0.004335049074143171, + -0.024853836745023727, + 0.00793477799743414, + -0.006965491455048323, + 0.022126466035842896, + -0.003987443167716265, + -0.00472610630095005, + -0.03681951016187668, + -0.003365762997418642, + 0.02740740403532982, + -0.008957542479038239, + 0.006507587619125843, + -0.01834290660917759, + 0.029332607984542847, + 0.011103341355919838, + 0.009037759155035019, + -0.02315591461956501, + 0.024947423487901688, + -0.017206503078341484, + 0.006778318900614977, + -0.002931255381554365, + -0.000714013003744185, + 0.001484010717831552, + -0.029172174632549286, + -0.031150855123996735, + 0.021511470898985863, + -0.02310243621468544, + 0.01586955599486828, + -0.020187893882393837, + -0.012674253433942795, + 0.0015366529114544392, + -0.021377775818109512, + 0.0019302165601402521, + -0.0105752469971776, + 0.020241370424628258, + 0.03243432566523552, + -0.006818427704274654, + 0.007473531179130077, + 0.03406539931893349, + -0.026819149032235146, + 0.00821553636342287, + -0.0045756995677948, + -0.007506954949349165, + 0.002453296910971403, + 0.010481661185622215, + -0.028931524604558945, + -0.0210836473852396, + 0.05508219823241234, + 0.02509448677301407, + -0.010622040368616581, + 0.001310207648202777, + 0.010561877861618996, + -0.024680033326148987, + 0.008770369924604893, + 0.007647334598004818, + 0.033316709101200104, + 0.010889429599046707, + 0.014144894666969776, + 0.036124296486377716, + 0.004956729244440794, + -0.01378391869366169, + 0.014505870640277863, + -0.010013730265200138, + -0.022046249359846115, + -0.025027640163898468, + 0.009846611879765987, + -0.01581607758998871, + 0.008904064074158669, + -0.023690693080425262, + -0.004020866937935352, + 0.003265491919592023, + 0.003643179312348366, + 0.0012751127360388637, + -0.040295571088790894, + -0.03181932866573334, + 0.020147785544395447, + -0.014104786328971386, + -0.009545798413455486, + -0.005504877306520939, + -0.014185003004968166, + 0.028343267738819122, + -0.017112916335463524, + 0.0022845075000077486, + -0.022086357697844505, + 0.014559348113834858, + 0.018102256581187248, + 0.03476060926914215, + -0.003960704430937767, + 0.026204152032732964, + 0.011069918051362038, + -0.008162058889865875, + 0.012634145095944405, + -0.0046258349902927876, + -0.0185701884329319, + -0.019399095326662064, + 0.010749050416052341, + -0.0004445347294677049, + 0.0063605234026908875, + -0.01623053103685379, + 0.019639745354652405, + -0.002648825291544199, + 0.003370776539668441, + -0.008823847398161888, + -0.04655247926712036, + 0.0013912600697949529, + 0.004271544516086578, + -0.02538861520588398, + -0.035910386592149734, + -0.006748237647116184, + 0.040589697659015656, + 0.017259979620575905, + 0.03492104262113571, + -0.020482022315263748, + 0.009345256723463535, + -0.03187280520796776, + -0.040883827954530716, + 0.021712012588977814, + -0.013302618637681007, + -0.002137443283572793, + -0.001289317850023508, + -0.00804841797798872, + 0.005812375340610743, + -0.019532788544893265, + 0.006744895596057177, + 0.01835627667605877, + -0.0016001579351723194, + 0.01609683595597744, + -0.007794398348778486, + 0.01643107272684574, + 0.014118155464529991, + 0.0009985319338738918, + -0.007500270381569862, + -0.00064883689628914, + -0.019399095326662064, + -0.01834290660917759, + 0.005829086992889643, + -0.011036493815481663, + 0.0022393856197595596, + -0.01046160701662302, + -0.0046291775070130825, + 0.017594216391444206, + 0.008890694938600063, + -0.030562598258256912, + -0.03385148569941521, + -0.017888344824314117, + -0.00810858141630888, + 0.011364045552909374, + -0.005705419462174177, + -0.022313637658953667, + -0.003927280660718679, + 0.02070930227637291, + 0.019492680206894875, + -0.01493369322270155, + -0.003390830708667636, + 0.004101083613932133, + 0.02282167784869671, + -0.003232068382203579, + -0.015642274171113968, + -0.6267605423927307, + 0.004385184962302446, + -0.00520740682259202, + -0.013670278713107109, + 0.004592411685734987, + 0.0231960229575634, + 0.013262510299682617, + 0.010849321261048317, + 0.0014480802929028869, + 0.04224751144647598, + -0.006233513355255127, + 0.020040828734636307, + 0.010134055279195309, + 0.01273441594094038, + -0.008623305708169937, + -0.016965851187705994, + -0.01617705263197422, + -0.0137438103556633, + 0.03230062872171402, + 0.0033607494551688433, + -0.013021859340369701, + 0.008315807208418846, + -0.005555013194680214, + -0.000912466028239578, + 0.013275879435241222, + 0.01053513865917921, + 0.027059799060225487, + -0.02117723412811756, + 0.019465941935777664, + -0.01274778600782156, + -0.01889105513691902, + 0.008416078984737396, + -0.03478734940290451, + 0.023984821513295174, + 0.035616256296634674, + 0.01621716283261776, + -0.0053377593867480755, + 0.042648594826459885, + 0.008248960599303246, + 0.012420233339071274, + -0.01812899485230446, + -0.02097669243812561, + 0.0010227641323581338, + -0.01493369322270155, + -0.0033072715159505606, + -0.009739656001329422, + 0.0518200509250164, + 0.0054513998329639435, + 0.00915808416903019, + -0.0259100254625082, + 0.0025452119298279285, + 0.02320939302444458, + 0.022260161116719246, + 0.008830532431602478, + 0.019265400245785713, + 0.0019268742762506008, + 0.040402524173259735, + -0.03152519837021828, + -0.017086178064346313, + 0.019867025315761566, + 0.02323613129556179, + 0.013255825266242027, + -0.011865400709211826, + -0.03275519236922264, + -0.031498461961746216, + 0.02303558960556984, + -0.02796892262995243, + -0.03018825314939022, + 0.01816910319030285, + 0.010120685212314129, + -7.370178991550347e-06, + 0.00518401013687253, + -0.012186268344521523, + -0.00940541923046112, + 0.037969283759593964, + 0.03286214545369148, + -0.009224931709468365, + -0.006504245102405548, + -0.002047199523076415, + 0.02324950136244297, + -0.0019970638677477837, + 7.891118002589792e-05, + -0.0021341009996831417, + 0.005541643593460321, + 0.022139836102724075, + -0.014345436356961727, + -0.0046325200237333775, + 0.012012464925646782, + -0.002217660192400217, + -0.0026688796933740377, + 0.012533874250948429, + 0.023663954809308052, + -0.021818967536091805, + -0.02045528218150139, + -0.009773079305887222, + 0.04104426130652428, + 0.002583649242296815, + 0.01256729755550623, + -0.00822222139686346, + -0.026752300560474396, + -0.0150673883035779, + -0.005588436499238014, + 0.017420412972569466, + -0.012440287508070469, + 0.028476962819695473, + 0.01510749664157629, + -0.015160974115133286, + 0.007359890732914209, + 0.0036197828594595194, + -0.031338028609752655, + 0.014412283897399902, + -0.0013820684980601072, + -0.007433422841131687, + 0.004692682530730963, + -0.0031986446119844913, + -0.021297559142112732, + 0.03510821610689163, + 0.003800270613282919, + 0.014011200517416, + -0.027126645669341087, + 0.02328960970044136, + 0.004104426130652428, + 0.011210297234356403, + -0.008375970646739006, + -0.015842817723751068, + 0.05085744708776474, + 0.02315591461956501, + -0.012894849292933941, + -0.005655284039676189, + -0.012079312466084957, + 0.013135500252246857, + 0.0027708217967301607, + 0.01260740589350462, + -0.013061967678368092, + 0.019145075231790543, + 0.028797829523682594, + 0.040669914335012436, + 0.0072930436581373215, + 0.01826268993318081, + -0.02788870595395565, + -0.019719962030649185, + -0.00287109287455678, + 0.015548688359558582, + -0.026377955451607704, + -0.01631074771285057, + -0.03230062872171402, + -0.015548688359558582, + 0.008970911614596844, + -0.0009742997935973108, + -0.011317253112792969, + -0.0061332425102591515, + -0.02330297790467739, + -0.009886720217764378, + 0.014265219680964947, + -0.002100677229464054, + 0.013971091248095036, + -0.021457992494106293, + -0.010488346219062805, + -0.0025535679887980223, + -0.02062908560037613, + 0.009265040047466755, + 0.02992086485028267, + -0.04454705864191055, + 0.004121137782931328, + -0.014545978978276253, + -0.011958987452089787, + 0.019024750217795372, + 0.005979493726044893, + -0.005321047268807888, + -0.029172174632549286, + 0.011658173985779285, + -0.021778859198093414, + 0.0041746157221496105, + 0.02764805592596531, + -0.00808852631598711, + 0.009418788366019726, + -0.00906449742615223, + 0.0016519646160304546, + -0.0033874884247779846, + -0.01822258159518242, + 0.004358445759862661, + -0.006738210562616587, + -0.015602166764438152, + -0.006805058103054762, + 0.0068117426708340645, + 0.003693314967676997, + 0.004826377145946026, + 0.00935194082558155, + -0.03152519837021828, + 0.033477142453193665, + -0.009619330987334251, + 0.02358373813331127, + -0.01613694429397583, + 0.001764769433066249, + -0.033557359129190445, + 0.010140739381313324, + 0.0037969283293932676, + 0.011992410756647587, + -0.008777054026722908, + 0.020147785544395447, + 0.02973369136452675, + 0.00802167970687151, + 0.008416078984737396, + 0.003572989720851183, + 0.011076602153480053, + -0.009806503541767597, + 0.01808888651430607, + -0.01371707208454609, + 0.03395844250917435, + 0.020334957167506218, + 0.009525744244456291, + -0.0019168471917510033, + -0.017112916335463524, + -0.005832429509609938, + -0.0023229445796459913, + 0.04601770266890526, + -0.021297559142112732, + 0.0115980114787817, + 0.026377955451607704, + -0.009753025136888027, + -0.0011196928098797798, + 0.008322492241859436, + 0.036151036620140076, + 0.01391761377453804, + -0.021952662616968155, + -0.005524931475520134, + -0.004495482891798019, + 0.004936675075441599, + -0.012513820081949234, + -0.019933873787522316, + -0.00744679244235158, + 0.033744532614946365, + -0.004321679938584566, + 0.01636422611773014, + 0.014586087316274643, + 0.017620956525206566, + 0.006912013981491327, + 0.0009433829109184444, + 0.04198012128472328, + 0.014505870640277863, + 0.00936531089246273, + 0.01602998934686184, + 0.01653802953660488, + -0.00907118245959282, + 0.011938933283090591, + -0.01405130885541439, + 0.01169159822165966, + 0.014786629006266594, + -0.01375718042254448, + -0.003572989720851183, + -0.00808852631598711, + 0.009679493494331837, + 0.00753369415178895, + -0.026057088747620583, + 0.023637214675545692, + -0.02096332237124443, + 0.04406575858592987, + -0.0027758353389799595, + 0.015267929993569851, + 0.015642274171113968, + 0.004218066576868296, + 0.033664315938949585, + 0.007092501502484083, + -0.03018825314939022, + -0.01629737950861454, + 0.0038838298059999943, + -0.01620379276573658, + -0.023851126432418823, + -0.02088310569524765, + -0.00016544714162591845, + -0.005361155606806278, + -0.015294669196009636, + 0.008609935641288757, + -0.0017313457792624831, + 0.023877866566181183, + -0.011972356587648392, + -0.01037470530718565, + 0.02772827260196209, + 0.021524839103221893, + 0.006992230657488108, + -0.00046417114208452404, + -0.01572249084711075, + -0.010020414367318153, + 0.020254740491509438, + -0.016872266307473183, + -0.012253114953637123, + -0.010033784434199333, + 0.027153383940458298, + -0.017794758081436157, + -0.00691869854927063, + -0.027019690722227097, + 0.007132609840482473, + -0.014706412330269814, + -0.0002607045753393322, + -0.0002653003321029246, + -0.0007436765008606017, + 0.03302257880568504, + 0.017340196296572685, + -0.000839351792819798, + -0.001594308763742447, + -0.0036264676600694656, + -0.031177593395113945, + -0.04072339087724686, + -0.014733151532709599, + 0.025843176990747452, + 0.00171964755281806, + -0.008716891519725323, + -0.02788870595395565, + 0.024853836745023727, + -0.022220052778720856, + -0.019118335098028183, + 0.019599637016654015, + 0.0076072257943451405, + 0.004431977868080139, + -0.01383739709854126, + -0.0036598911974579096, + 0.001990379299968481, + 0.02069593220949173, + 0.04157903790473938, + 0.012293223291635513, + -0.021912554278969765, + -0.016992591321468353, + 0.0024399275425821543, + 0.012640830129384995, + 0.014799998141825199, + 0.01651128940284252, + 0.005187352653592825, + 0.030856726691126823, + -0.0063605234026908875, + -0.013242456130683422, + 0.0072663044556975365, + -0.04401228204369545, + 0.023917974904179573, + 0.02540198527276516, + 0.0064474246464669704, + -0.00830912310630083, + 0.026217522099614143, + -0.017099546268582344, + 0.00792809296399355, + -0.0011698282323777676, + -0.009438842535018921, + -0.0031535227317363024, + 0.033289968967437744, + -0.012206322513520718, + -0.012413549236953259, + -0.006320415064692497, + -0.006166666280478239, + 0.035669732838869095, + -0.009345256723463535, + -0.01633748784661293, + 0.03235410526394844, + 0.022179944440722466, + 0.007794398348778486, + -0.014746520668268204, + 0.0020388434641063213, + 0.00808852631598711, + 0.016872266307473183, + 0.017433783039450645, + -0.00825564470142126, + -0.012266485020518303, + -0.004117795266211033, + 0.004298283252865076, + 0.01598988100886345, + -0.002449954627081752, + 0.003029855201020837, + 0.01592303439974785, + 0.013015175238251686, + -0.01812899485230446, + 0.018062148243188858, + 0.006574434693902731, + 0.005595121532678604, + 0.016658354550600052, + -0.008863955736160278, + -0.005067027639597654, + 0.023757539689540863, + -0.037755370140075684, + -0.000932520255446434, + 0.015562058426439762, + 0.0189044252038002, + -0.024345796555280685, + -0.0080952113494277, + -0.008783739060163498, + -0.013021859340369701, + -0.002408175030723214, + -0.0005765582318417728, + -0.021297559142112732, + 0.0105418236926198, + -0.013971091248095036, + -0.013382835313677788, + -0.023597106337547302, + -0.02981390804052353, + -0.020147785544395447, + -0.018035409972071648, + 0.01586955599486828, + -0.004716079216450453, + -0.02799566090106964, + -0.028797829523682594, + -0.003673260798677802, + 0.0071526640094816685, + -0.0006588639807887375, + 0.022540919482707977, + -0.00398410065099597, + -0.0014530938351526856, + 0.028583917766809464, + -0.01812899485230446, + -0.0007549570291303098, + -0.011096656322479248, + -0.023650584742426872, + -0.0065844617784023285, + 0.009913458488881588, + -0.014572717249393463, + -0.00761391082778573, + 0.0005740514607168734, + 0.0059059616178274155, + 0.002592005068436265, + 0.015428363345563412, + 7.969454600242898e-05, + -0.0009509032242931426, + 0.0036197828594595194, + 0.02569611370563507, + 0.009097921662032604, + 0.022113095968961716, + 0.01858355663716793, + -0.02300885133445263, + 0.0058992765843868256, + -0.011497740633785725, + 0.005053658038377762, + -0.0026170730125159025, + 0.012199637480080128, + 0.00412782235071063, + -0.003410884877666831, + -0.0064942180179059505, + 0.0024750223383307457, + 0.019813548773527145, + 0.007333151996135712, + -0.00937199592590332, + -0.0027474251110106707, + 0.0034827457275241613, + -0.008957542479038239, + 0.01030117366462946, + -0.0004704380698967725, + 0.031017160043120384, + 0.02274146117269993, + 0.0023496835492551327, + -0.022032879292964935, + -0.026618605479598045, + 0.03665907680988312, + 0.014826737344264984, + -0.009866666048765182, + 0.04315663501620293, + -0.006363865453749895, + 0.002083965577185154, + -0.017179762944579124, + 0.006891959346830845, + 0.006166666280478239, + 0.019051488488912582, + 0.003422583220526576, + -0.0054246606305241585, + -0.014519239775836468, + -0.01169159822165966, + 0.004759529605507851, + 0.010749050416052341, + -0.019867025315761566, + -0.029439562931656837, + -0.01819584332406521, + 0.017607586458325386, + -0.01518771331757307, + 0.010281119495630264, + 0.008703522384166718, + -0.031043900176882744, + -0.012968381866812706, + 0.02566937357187271, + -0.017941823229193687, + 0.029198912903666496, + -0.003877145005390048, + -0.009044443257153034, + -0.026217522099614143, + -0.013890874572098255, + 0.0042882561683654785, + -0.011337307281792164, + 0.01865040510892868, + -0.005936042871326208, + 0.0185701884329319, + 0.011196927167475224, + 0.019813548773527145, + -0.0165246594697237, + 0.012981751002371311, + -0.01063541043549776, + -0.008897379040718079, + 0.00010115881013916805, + -0.019278770312666893, + -0.0032788615208119154, + -0.016644984483718872, + 0.040161874145269394, + 0.01854344829916954, + 0.0005243337363936007, + 0.002453296910971403, + 0.01653802953660488, + 0.019706591963768005, + 0.04409249871969223, + -0.024171993136405945, + -0.016738571226596832, + -0.006678048055619001, + -0.031391505151987076, + -0.001062036957591772, + -0.0009392049396410584, + 0.0061532966792583466, + -0.002149141626432538, + -0.021872445940971375, + -0.004826377145946026, + 0.012533874250948429, + -0.028316527605056763, + -0.012380125001072884, + -0.005264227278530598, + -0.0034860882442444563, + -0.026150675490498543, + 0.021230710670351982, + 0.03748798370361328, + -0.007299728225916624, + -0.006905328948050737, + -0.00788129959255457, + -0.014733151532709599, + -0.013262510299682617, + 0.008897379040718079, + 0.0021641822531819344, + 0.0038504060357809067, + 0.0007495256722904742, + -0.024466121569275856, + -0.0002421126700937748, + -0.007954832166433334, + 0.0071526640094816685, + -0.016698462888598442, + -0.011965671554207802, + -0.020027460530400276, + -0.03451995924115181, + -0.0366055965423584, + -0.0035663049202412367, + -0.012072627432644367, + 0.018971271812915802, + 0.0069253831170499325, + 0.013930982910096645, + 0.021966032683849335, + -0.006885274779051542, + -0.013108761049807072, + -0.008509664796292782, + -0.010441552847623825, + 0.01861029677093029, + 0.0053143627010285854, + 0.03655212000012398, + 0.012319962494075298, + -0.02295537292957306, + -0.007172718178480864, + -0.04553639888763428, + 0.03005455806851387, + -0.0002813854662235826, + 0.008817162364721298, + -0.006945437286049128, + -0.005588436499238014, + -0.005494850222021341, + 0.00636720797047019, + 0.0030114720575511456, + 0.0019318878185003996, + -0.011317253112792969, + 0.04911941662430763, + 0.020482022315263748, + -0.008362600579857826, + -0.008121950551867485, + -0.000746183330193162, + 0.0024349140003323555, + 0.0003921013558283448, + 0.011531163938343525, + 0.007827822118997574, + -0.01651128940284252, + -0.01142420805990696, + 0.00804841797798872, + 0.04379836842417717, + 0.009759710170328617, + 0.01862366497516632, + -0.0015015581157058477, + -0.031070638447999954, + 0.0010369691299274564, + -0.02818283438682556, + -0.024706773459911346, + 0.011885454878211021, + -0.021591687574982643, + 0.020428543910384178, + -0.004839746747165918, + -0.023650584742426872, + 0.010795843787491322, + 0.0034760611597448587, + -0.01588292606174946, + -0.010708942078053951, + 0.00287109287455678, + 0.016845526173710823, + -0.014586087316274643, + 0.01514760497957468, + 0.016925742849707603, + 0.004866485483944416, + 0.012426918372511864, + 0.0032303971238434315, + 0.00013755926920566708, + -0.012426918372511864, + 0.005327732302248478, + -0.007867930456995964, + -0.0011121723800897598, + 0.01621716283261776, + -0.01820921152830124, + -0.0033640917390584946, + -0.0012475382536649704, + -0.012246430851519108, + 0.0035195117816329002, + -0.028878046199679375, + 0.03016151487827301, + -0.028289789333939552, + -0.015294669196009636, + 0.007814452983438969, + 0.014505870640277863, + 0.019679853692650795, + -0.018957901746034622, + -0.019024750217795372, + -0.0012191281421110034, + 0.031150855123996735, + -0.03235410526394844, + 0.02096332237124443, + 0.028744351118803024, + -0.009739656001329422, + 0.0011589655186980963, + 0.006156638730317354, + 0.021605055779218674, + -0.016725201159715652, + 0.01819584332406521, + -0.01653802953660488, + -0.030616076663136482, + -0.00788798462599516, + -0.005003522615879774, + 0.026525020599365234, + -0.00793477799743414, + -0.002080623060464859, + 0.014225111342966557, + 0.019385725259780884, + 0.007433422841131687, + -0.016899004578590393, + -0.0005982836009934545, + -0.00020534663053695112, + 0.013590062037110329, + -0.013683647848665714, + 0.02274146117269993, + -0.016711832955479622, + 0.01266088429838419, + 0.010528454557061195, + -0.0012091010576114058, + 0.0004445347294677049, + -0.047568559646606445, + -0.031364765018224716, + 0.010715627111494541, + 0.0011497740633785725, + -0.03005455806851387, + -0.007587171625345945, + -0.006905328948050737, + -0.028209572657942772, + -0.011116710491478443, + 0.0014631209196522832, + 0.0025285002775490284, + 0.016818787902593613, + 0.02062908560037613, + -0.009779764339327812, + 0.005077054724097252, + 0.007085816934704781, + -8.11046120361425e-05, + -0.0013695346424356103, + 0.021752120926976204, + 0.00805510301142931, + -0.027180124074220657, + 0.007867930456995964, + -0.022581027820706367, + 0.026885995641350746, + 0.0021157178562134504, + -0.0314449816942215, + -0.005147244315594435, + 0.005000180099159479, + -0.024252211675047874, + -0.009458896704018116, + -0.0019018064485862851, + 0.012767840176820755, + -0.005347786471247673, + 0.007272989489138126, + -0.02772827260196209, + 0.02740740403532982, + 0.0008376805926673114, + 0.017193133011460304, + -0.011504425667226315, + 0.0038036128971725702, + 0.0028276420198380947, + 0.002513459650799632, + -0.00032796969753690064, + -0.016939112916588783, + -0.04200686141848564, + 0.00046041098539717495, + 0.01621716283261776, + 0.003994127735495567, + 0.011544534005224705, + 0.018931163474917412, + 0.01163811981678009, + 0.00757380248978734, + -0.008603251539170742, + 0.01286811102181673, + 0.01657813787460327, + -0.009378680028021336, + 0.007059077732264996, + -0.015682382509112358, + -0.01824931986629963, + 0.01874399185180664, + 0.024212101474404335, + -0.035803429782390594, + -0.015495210886001587, + 0.006631255149841309, + -0.013583377003669739, + -0.012059258297085762, + 0.01505401823669672, + -0.019145075231790543, + 6.309369382506702e-06, + -0.008917433209717274, + 0.028717612847685814, + 0.019613007083535194, + -0.023797648027539253, + 0.007787713780999184, + 0.011825292371213436, + -0.009799818508327007, + -0.006427370477467775, + 0.009178138338029385, + -0.019907133653759956, + 0.007841191254556179, + 0.020482022315263748, + -0.031471721827983856, + 0.011778498999774456, + -0.00013327685883268714, + 0.011838661506772041, + 0.0005527438479475677, + -0.0014088074676692486, + -0.0229286327958107, + -0.012426918372511864, + -0.01894453354179859, + 0.03984100744128227, + -0.010114001110196114, + -0.008035048842430115, + 0.005177325569093227, + 0.004458716604858637, + -0.01820921152830124, + -0.002015447011217475, + -0.024519599974155426, + -0.007072447333484888, + -0.028664134442806244, + -0.007299728225916624, + -0.003840378951281309, + -0.021016800776124, + -0.0023730802349746227, + -0.012807948514819145, + -0.004358445759862661, + -0.022193312644958496, + -0.010735681280493736, + 0.1895255446434021, + -0.0376751534640789, + -0.011096656322479248, + -0.002867750357836485, + -0.026752300560474396, + -0.03476060926914215, + 0.0376751534640789, + -0.01633748784661293, + 0.0005644421325996518, + 0.028931524604558945, + 0.011878769844770432, + -0.001953613245859742, + -0.019465941935777664, + 0.00231960229575634, + 0.006825112272053957, + -0.01834290660917759, + -0.0364719033241272, + -0.014599456451833248, + -0.004545618314296007, + 0.03243432566523552, + 0.026324477046728134, + -0.035616256296634674, + -0.017955193296074867, + -0.02060234732925892, + 0.036311469972133636, + 0.00687190517783165, + -0.006096476223319769, + 0.010742365382611752, + 0.03029520995914936, + 0.014719781465828419, + -0.0466594360768795, + -0.004191327374428511, + 0.01366359367966652, + -0.010187532752752304, + 0.005120505578815937, + 0.007279674056917429, + -0.002393134403973818, + -0.02046865224838257, + 0.013984461314976215, + 0.04390532523393631, + 0.004896566737443209, + -0.03179258853197098, + -0.026845887303352356, + -0.021324297413229942, + -0.0045121945440769196, + -0.001371205784380436, + 0.008081842213869095, + -0.007132609840482473, + 0.012761155143380165, + -0.005494850222021341, + -0.020241370424628258, + 0.020067568868398666, + 0.014866845682263374, + 0.0363382063806057, + -0.013048598542809486, + -0.019385725259780884, + -0.0006546860095113516, + -0.0006718156510032713, + 0.018998010084033012, + 0.013469737023115158, + -0.024987531825900078, + 0.016631614416837692, + -0.0024833781644701958, + 0.017487261444330215, + -0.010722311213612556, + 0.01636422611773014, + -0.012921588495373726, + 1.6424597561126575e-05, + 0.012159529142081738, + -0.03419909253716469, + -0.00571878906339407, + -0.0071526640094816685, + -0.0322471521794796, + 0.0036999995354562998, + -0.029412824660539627, + -0.0325145423412323, + 0.00470270961523056, + -0.013202347792685032, + 0.03216693550348282, + 0.026190783828496933, + 0.00567199569195509, + 0.009512375108897686, + -0.01588292606174946, + -0.020348327234387398, + 0.008235590532422066, + -0.012801263481378555, + 0.009626015089452267, + 0.015321407467126846, + 0.01649792119860649, + -0.03751472011208534, + -0.02314254455268383, + 0.0015483512543141842, + 0.007506954949349165, + -0.0185701884329319, + -0.0020822943188250065, + -0.010615355335175991, + 0.019786808639764786, + 0.005795663222670555, + -0.008302438072860241, + 0.007426738273352385, + -0.026030350476503372, + 0.058718692511320114, + 0.03933296725153923, + -0.010809212923049927, + -0.01859692670404911, + 0.011063233017921448, + 0.0037568197585642338, + 0.028637396171689034, + 0.00038875898462720215, + -0.016591506078839302, + 0.010789158754050732, + -0.028958262875676155, + 0.01640433445572853, + -0.019185183569788933, + 0.0077676596119999886, + 0.0030733058229088783, + 0.005016892217099667, + 0.005748870316892862, + -0.007781029213219881, + -0.0017597558908164501, + -0.004418608266860247, + -0.0034493221901357174, + 0.026484912261366844, + -0.0005510726477950811, + 0.000484643125673756, + -0.040322307497262955, + -0.027140015736222267, + 0.028370006009936333, + -0.015508580021560192, + 0.01590966433286667, + 0.009378680028021336, + -0.029279129579663277, + 0.04235446825623512, + -0.007994940504431725, + 0.003823667299002409, + -0.008643359877169132, + -0.030482381582260132, + -0.04663269594311714, + -0.01853008009493351, + -0.002393134403973818, + 0.021230710670351982, + 0.008369285613298416, + 0.008763684891164303, + -0.003095031250268221, + 0.0034827457275241613, + -0.000904110143892467, + 0.03430604934692383, + 0.0050837392918765545, + -0.012500450015068054, + -0.03427930921316147, + -0.013376150280237198, + -0.0011932248016819358, + 0.012106050737202168, + -0.022380486130714417, + 0.026244260370731354, + 0.008409393951296806, + -0.017099546268582344, + -0.033503882586956024, + 0.017607586458325386, + 0.007219511549919844, + -0.03296910226345062, + -0.024171993136405945, + 0.008295753039419651, + -0.009933512657880783, + 0.005090423859655857, + -0.015602166764438152, + -0.1692039519548416, + 0.003910568542778492, + 0.006691417656838894, + -0.02282167784869671, + 0.02040180377662182, + 0.006738210562616587, + 0.021244080737233162, + 0.015468471683561802, + -0.02282167784869671, + -0.012186268344521523, + 0.015254559926688671, + -0.004886539652943611, + -0.02732718735933304, + -0.03893188387155533, + -0.006778318900614977, + -0.01030117366462946, + -0.025027640163898468, + 0.015334777534008026, + 0.022581027820706367, + 0.013930982910096645, + -0.0037367655895650387, + -0.035509299486875534, + 0.01858355663716793, + 0.017046067863702774, + 0.0006108174566179514, + 0.01624390110373497, + -0.028236310929059982, + 0.03385148569941521, + -0.031338028609752655, + -0.01168491318821907, + -0.017527369782328606, + 0.019987350329756737, + 4.423412974574603e-05, + -0.01639096438884735, + -0.01866377331316471, + 0.01264751423150301, + -0.015562058426439762, + 0.007299728225916624, + -0.0053377593867480755, + 0.035429082810878754, + 0.012968381866812706, + 0.03952014073729515, + -0.00814200472086668, + 0.01616368442773819, + 0.005772267002612352, + 0.02558915689587593, + 0.014104786328971386, + -0.01836964674293995, + 0.00830912310630083, + -0.03152519837021828, + 0.0028894757851958275, + -0.010829267092049122, + -0.007333151996135712, + 0.03021499328315258, + 0.005772267002612352, + 0.004428635351359844, + 0.010401444509625435, + 0.011584642343223095, + 0.000803003553301096, + 0.0021307584829628468, + 0.005872537847608328, + -0.01873062178492546, + 0.01272773090749979, + -0.0094522126019001, + -0.01509412657469511, + -0.0322471521794796, + -0.016792049631476402, + 0.01620379276573658, + -0.00372339622117579, + -0.008937487378716469, + -0.011056547984480858, + -0.021364405751228333, + -0.0015801037661731243, + -0.0161235760897398, + 0.009753025136888027, + 0.014398914761841297, + 0.0006973011768423021, + -0.004528906662017107, + 0.010708942078053951, + -0.004117795266211033, + -0.0008297424647025764, + 0.045242272317409515, + 0.003780216444283724, + -0.026444803923368454, + -0.0151342349126935, + -0.02358373813331127, + -0.010802527889609337, + 0.021966032683849335, + -0.017968561500310898, + 0.006517614703625441, + 0.029466303065419197, + -0.02818283438682556, + -0.021645164117217064, + -0.03441300615668297, + 0.02354362979531288, + -0.00798157136887312, + 0.010281119495630264, + -0.013489791192114353, + -0.009077867493033409, + -0.001682881498709321, + 0.0020956636872142553, + -0.0091179758310318, + -0.026631975546479225, + 0.024853836745023727, + 0.02510785683989525, + 0.007914723828434944, + -0.015602166764438152, + 0.008282383903861046, + 0.05518915504217148, + -0.01831616833806038, + 0.00459909625351429, + -0.014719781465828419, + 0.011317253112792969, + 0.006708129309117794, + -0.004896566737443209, + 0.021524839103221893, + -0.008583197370171547, + -0.016631614416837692, + 0.014612825587391853, + 0.001260907738469541, + 0.04949376359581947, + -0.023931343108415604, + 0.006744895596057177, + -0.0020137757528573275, + -0.008990965783596039, + -0.02762131579220295, + -0.10166141390800476, + 0.005611833184957504, + 0.02565600536763668, + 0.007834507152438164, + -0.0024716800544410944, + 0.010615355335175991, + 0.003686630167067051, + 0.0063605234026908875, + 0.0033607494551688433, + 0.045135315507650375, + -0.03296910226345062, + -0.019867025315761566, + -0.01586955599486828, + -0.01034128200262785, + 0.04441336542367935, + -0.0020204605534672737, + 0.01024769525974989, + -0.02085636742413044, + -0.03425257280468941, + 0.033530618995428085, + -0.0030799906235188246, + 0.016925742849707603, + 0.0105752469971776, + -0.005508219823241234, + -0.028370006009936333, + -0.013322672806680202, + -0.04128491133451462, + 0.019907133653759956, + 0.024305688217282295, + -0.0256426353007555, + 0.03671255335211754, + -0.0126876225695014, + 0.0029295841231942177, + -0.012961696833372116, + -0.005123847629874945, + -0.003492772812023759, + -0.008623305708169937, + -0.00571210402995348, + 0.04414597526192665, + -0.023958083242177963, + 0.002237714361399412, + 0.01370370201766491, + 0.006845166441053152, + -0.005658626556396484, + -0.003106729593127966, + -0.028958262875676155, + -0.003146837931126356, + 0.0018065490294247866, + -0.002964678918942809, + -0.017687803134322166, + -0.03724732995033264, + -0.028744351118803024, + -0.03858427703380585, + 0.013342726975679398, + 0.029091957956552505, + -0.010755735449492931, + -0.006547695957124233, + 0.0032504512928426266, + -0.006624570116400719, + 0.002185907680541277, + -0.01854344829916954, + 0.0030883466824889183, + -0.02581643871963024, + 0.01637759618461132, + 0.0020956636872142553, + -0.0072930436581373215, + -0.00757380248978734, + -0.01155790314078331, + 0.005755554884672165, + 0.0228617861866951, + -0.02973369136452675, + 0.006711471825838089, + -0.00581571739166975, + 0.004876512568444014, + -0.03205997869372368, + -0.007781029213219881, + -0.030963683500885963, + -0.021391145884990692, + 0.013035229407250881, + -0.011497740633785725, + -0.007600541226565838, + -0.030990421772003174, + 0.035910386592149734, + -0.01894453354179859, + 0.03173911198973656, + 0.005835771560668945, + 0.0035696474369615316, + -0.009880035184323788, + 0.01819584332406521, + -0.01620379276573658, + -0.008790424093604088, + 0.0301347766071558, + 0.02354362979531288, + -0.014265219680964947, + -0.026752300560474396, + 0.028022401034832, + -0.00822222139686346, + 0.006671363487839699, + 0.003069963539019227, + 0.014011200517416, + -0.003049909370020032, + -0.007373260334134102, + -0.042728811502456665, + 0.01827606000006199, + 0.01871725171804428, + 0.0054513998329639435, + -0.01653802953660488, + -0.005932700354605913, + 0.006049683317542076, + 0.01278120931237936, + 0.017540739849209785, + -0.0003565887163858861, + -0.003977416083216667, + 0.008817162364721298, + -0.010595301166176796, + -0.01269430760294199, + -0.015321407467126846, + -0.038076236844062805, + 0.001188211259432137, + 0.014545978978276253, + 0.0037200539372861385, + 0.010822582058608532, + -0.012921588495373726, + 0.005805690307170153, + -0.006945437286049128, + 0.03692646324634552, + -0.04465401545166969, + -0.012192952446639538, + -0.012059258297085762, + -0.0031084008514881134, + -0.009599276818335056, + -0.0017087848391383886, + 0.001955284271389246, + -0.004675970412790775, + -0.008843901567161083, + 0.0024315714836120605, + -0.012366755865514278, + -0.014799998141825199, + 0.017754649743437767, + 0.022059617564082146, + 0.03307605907320976, + 0.0518200509250164, + -0.013469737023115158, + -0.02780848927795887, + 0.004943360108882189, + -0.0330493189394474, + -0.0007804425549693406, + 0.007794398348778486, + 0.03465365618467331, + 0.0009057812858372927, + 0.005441372748464346, + 0.008850586600601673, + 0.025121226906776428, + 0.0182359516620636, + 0.027019690722227097, + -0.019746700301766396, + 0.011364045552909374, + 0.0030064585153013468, + 0.008743630722165108, + -0.0080617880448699, + 0.015388255007565022, + -0.02558915689587593, + 0.04147208109498024, + 0.002608716953545809, + 0.0007524502580054104, + -0.006858536042273045, + -0.0077208662405610085, + -0.010775789618492126, + -0.02534850686788559, + -0.014652934856712818, + 0.005077054724097252, + -0.024372536689043045, + -0.010655464604496956, + 0.0038270095828920603, + 0.024466121569275856, + 0.030776510015130043, + -0.008670098148286343, + -0.014131525531411171, + 0.005976151209324598, + 0.004117795266211033, + -0.021364405751228333, + 0.017380304634571075, + 0.00461580790579319, + 0.011223666369915009, + -0.0010227641323581338, + -0.005237488076090813, + 0.040562957525253296, + 0.005682022776454687, + -0.027073167264461517, + -0.00022999658540356904, + 0.006601173896342516, + 0.001658649300225079, + -0.013556637801229954, + 0.024118516594171524, + -0.007145979441702366, + 0.026939474046230316, + -1.269707536266651e-05, + 0.030642814934253693, + -0.019425833597779274, + -0.007814452983438969, + 0.036097556352615356, + 0.026177413761615753, + 0.012480395846068859, + 0.01596314273774624, + -0.0102075869217515, + -0.004361788276582956, + -0.02580306865274906, + 0.03205997869372368, + -0.017313458025455475, + -0.01590966433286667, + 0.009091236628592014, + 0.0187038816511631, + -0.017981931567192078, + -0.012406864203512669, + -0.0032872173469513655, + 0.012934957630932331, + -0.02323613129556179, + 0.005357813555747271, + -0.02350352145731449, + -0.03451995924115181, + -0.02340993471443653, + 0.01167154312133789, + 0.030990421772003174, + 0.0033640917390584946, + -0.009017704986035824, + 0.014104786328971386, + 0.02783522754907608, + -0.00231960229575634, + 0.013082021847367287, + -0.009265040047466755, + 0.012794578447937965, + -0.031204333528876305, + 0.020080937072634697, + 0.002533513819798827, + -0.03219367191195488, + -0.019786808639764786, + -0.01838301494717598, + -0.015548688359558582, + 0.027046428993344307, + 0.007807767949998379, + 0.0027106590569019318, + 0.11850694566965103, + 0.014987170696258545, + -0.010956277139484882, + 0.02288852445781231, + 0.011584642343223095, + 0.009505690075457096, + 0.03502799943089485, + 0.007079131901264191, + 0.005805690307170153, + -0.029359346255660057, + -0.0010645437287166715, + -0.009605960920453072, + 0.007199457380920649, + -0.031418245285749435, + -0.0068351393565535545, + 0.024265579879283905, + 0.0010737351840361953, + 0.010067207738757133, + -0.015642274171113968, + -0.015588796697556973, + 0.03230062872171402, + -0.01641770452260971, + 0.01871725171804428, + 0.021645164117217064, + -0.010642094537615776, + -0.017005959525704384, + -0.0004428635584190488, + -1.583054398679451e-07, + 0.005732158198952675, + -0.0210836473852396, + -0.009218246676027775, + 0.019519420340657234, + -0.04473423212766647, + -0.026404695585370064, + 0.0363382063806057, + -0.01647118106484413, + -0.007553748320788145, + -0.01653802953660488, + 0.01586955599486828, + -0.011303883045911789, + 0.004896566737443209, + 0.027073167264461517, + -0.004712736699730158, + -0.022153204306960106, + 0.013242456130683422, + -0.00023793471336830407, + 0.006410658825188875, + 0.008556458167731762, + -0.009813187643885612 + ], + "metadata": { + "source": "Thesis_Verladegeraeusche_in_Speditionen.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 41, + "has_images": true, + "image_count": 51, + "coordinates": "CoordinatesMetadata(points=((204.16666666666666, 189.02777777777797), (204.16666666666666, 642.3611111111111), (936.1666666666666, 642.3611111111111), (936.1666666666666, 189.02777777777797)), system=)", + "links": [], + "last_modified": "2025-05-05T22:59:16", + "_known_field_names": "frozenset({'cc_recipient', 'link_texts', 'url', 'filetype', 'category_depth', 'page_number', 'filename', 'orig_elements', 'detection_origin', 'email_message_id', 'page_name', 'coordinates', 'table_as_cells', 'link_start_indexes', 'sent_to', 'bcc_recipient', 'languages', 'last_modified', 'link_urls', 'file_directory', 'subject', 'data_source', 'detection_class_prob', 'image_base64', 'text_as_html', 'attached_to_filename', 'key_value_pairs', 'signature', 'sent_from', 'header_footer_type', 'parent_id', 'links', 'emphasized_text_contents', 'emphasized_text_tags', 'image_mime_type', 'is_continuation', 'image_path'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "Thesis_Verladegeraeusche_in_Speditionen.pdf", + "detection_class_prob": 0.2568194270133972, + "parent_id": "d45475a34bc527cde6987546fa6dd2f5", + "text_as_html": "
Flurf\u00f6rderger\u00e4t |Anzahl Einzelereignisse ElMax-PegelSchallleistungspegel
LAFmaxLWA,5sLWAmaxLWA,1hKlLWAT,1h
[dB(A)][dB(A)][dB(A)][dB(A)][dB(A)][dB(A)]
Gabelstapler29769,3100,7108,872,15,777,8
STABW [dB]6,54,96,54,92,9-
Gabelhubwagen9968,6100,7108,172,16,279,5
STABW [dB]6,45,16,4512,7-
", + "id": "5ba44de7-0ff3-4c0c-b018-67e92171e1c2", + "processing_timestamp": "2025-05-06T14:18:19.298665", + "chunk_number": 39, + "total_chunks": 49, + "chunking_strategy": "hybrid", + "word_count": 470 + } +} \ No newline at end of file diff --git a/data/processed/85fd305f-83de-70b0-47e8-2dc000000040.json b/data/processed/85fd305f-83de-70b0-47e8-2dc000000040.json new file mode 100644 index 0000000000000000000000000000000000000000..e45ae7e7c783a405c595e3422fb4e47497ae4949 --- /dev/null +++ b/data/processed/85fd305f-83de-70b0-47e8-2dc000000040.json @@ -0,0 +1,1570 @@ +{ + "id": "85fd305f-83de-70b0-47e8-2dc000000040", + "content": "Eine m\u00f6gliche Methode zur Identifizierung der Schallquellenentstehung k\u00f6nnte der Einsatz einer akus- tischen Kamera sein. Diese erm\u00f6glicht es, die Richtung und Position von Schallquellen visuell darzustellen und somit zur Lokalisierung und Analyse des Schallgeschehens bei-\n\n## zutragen. Die gewonnenen Erkenntnisse k\u00f6nnen dazu beitragen, Standards und Richtlinien f\u00fcr den Einsatz von Flurf\u00f6rderger\u00e4ten zu verbessern und die allgemeine L\u00e4rmbelastung in Spe- ditionen und w\u00e4hrend des Verladeprozesses zu reduzieren. 76\nAbschlie\u00dfende Bewertung und Ausblick\n\n## 9 Literatur\n\n- [1] Teufel Blog Redaktion: Musik und Emotionen: Was Kl\u00e4nge in uns ausl\u00f6sen, 2023, https://blog.teufel.de/musik-und-emotionen-was-klange-in-uns-auslosen/ [Zugriff am: 05.04.2023]. - [2] Fraunhofer-Institut f\u00fcr Bauphysik IBP: Schallimmissionsschutz und urbane Akustik \u2013 Wirksamer pr\u00e4ventiver Schallschutz f\u00fcr angenehmes akustisches Stadtklima, 2023, https://www.ibp.fraunhofer.de/de/kompetenzen/akustik/bauakustik/schal- limmissionsschutz.html [Zugriff am: 05.04.2023]. - [3] Wothge, J., Niemann, H.: Gesundheitliche Auswirkungen von Umgebungsl\u00e4rm im urbanen Raum. - [4] Bundesministerium f\u00fcr Umwelt, Naturschutz, nukleare Sicherheit und Verbrau- cherschutz/ Umweltbundesamt: Umweltbewusstseinsstudie 2020 \u2013 Ergebnisse ei- ner repr\u00e4sentativen Bev\u00f6lkerungsumfrage. - [5] Claus Muchna, Hans Brandenburg, Johannes Fottner und Jens Gutermuth: Grund- lagen der Logistik \u2013 Begriffe, Strukturen und Prozesse. Springer Gabler Wiesbaden. - [6] Schreiben des Bundesministeriums f\u00fcr Umwelt, Naturschutz, Bau und Reaktorsi- cherheit: Sechste Allgemeine Verwaltungsvorschrift zum Bundes-Immissions- schutzgesetz \u2013 Technische Anleitung zum Schutz gegen L\u00e4rm (TA L\u00e4rm). Schreiben des Bundesministeriums f\u00fcr Umwelt, Naturschutz, Bau und Reaktorsicherheit, 1998 (GMBl Nr. 26/1998 S. 503). - [7] Dipl.-Phys. Ing. Knut Lenkewitz: Technischer Bericht zur Untersuchung der LKW- und Ladeger\u00e4usche auf Betriebsgel\u00e4nden von Frachtzentren, Auslieferungslagern und Speditionen. Hessische Landesanstalt f\u00fcr Umwelt, Umweltplanung, Arbeits- und Umweltschutz Heft 192, Hessische Landesanst. f\u00fcr Umwelt, Wiesbaden, 1995. - [8] Dipl.-Phys. Ing. Knut Lenkewitz und Dipl.-Ing J\u00fcrgen M\u00fcller: Technischer Bericht zur Untersuchung der Ger\u00e4uschemissionen durch Lastkraftwagen auf Betriebsge- l\u00e4nden von Frachtzentren, Auslieferungslagern, Speditionen und Verbraucher- m\u00e4rkten sowie weiterer typischer Ger\u00e4usche insbesondere von Verbraucherm\u00e4rk- ten \u2013 Umwelt und Geologie L\u00e4rmschutz in Hessen, Heft 3. Hessisches Landesamt f\u00fcr Umwelt und Geologie, Wiesbaden Ausgabe 2005. - [9] TIMOCOM: Umschlag in der Logistik, 2023, https://www.timocom.de/lexi- con/transportlexikon/umschlag [Zugriff am: 05.04.2023]. I\nAbschlie\u00dfende Bewertung und Ausblick\n- [10] Ehrhardt + Partner GmbH & Co. KG: Definition Flurf\u00f6rderzeug \u2013 Logistik Lexikon, 2023, https://www.epg.com/logistik-know-how/lexikon/flurfoerderzeug [Zugriff am: 05.04.2023]. - [11] Stertil Dock Produktion (Hrsg. ): Entwurf einer Verladestation.", + "embedding": [ + 0.011896604672074318, + 0.009746295399963856, + -9.45025312830694e-05, + -0.03853248432278633, + 0.00927362684160471, + 0.016856297850608826, + -0.03440495580434799, + -0.01657669059932232, + -0.0038745517376810312, + -0.01195652037858963, + 0.03499079868197441, + 0.011730172671377659, + -0.011783430352807045, + 0.021822648122906685, + -0.012109639123082161, + -5.090498234494589e-06, + 0.03504405543208122, + -0.010445312596857548, + 0.014393094927072525, + -0.004836532287299633, + -0.023260625079274178, + 0.015724556520581245, + 0.010591773316264153, + -0.01485910639166832, + -0.01889343373477459, + 0.032700683921575546, + 0.029691582545638084, + -0.025856975466012955, + -0.03035731241106987, + 0.008481407538056374, + 0.00462682731449604, + -0.011483851820230484, + -0.015578094869852066, + -0.006570760626345873, + -0.020797422155737877, + -0.0037647061981260777, + 0.012835284695029259, + -0.01958579197525978, + 0.001294845947995782, + -0.016203882172703743, + 0.015551465563476086, + 0.011577053926885128, + -0.0004764134355355054, + -0.028892705217003822, + 0.00021053728414699435, + 0.016803039237856865, + 0.008301660418510437, + 0.013168150559067726, + -0.013913768343627453, + 0.02396629936993122, + 0.022741355001926422, + 0.02429916523396969, + -0.030197538435459137, + 0.01874697208404541, + 0.0017641859594732523, + -0.01171020045876503, + 0.0023866440169513226, + 0.01485910639166832, + 0.00914713740348816, + -0.03232787549495697, + -0.025603996589779854, + 0.008201800286769867, + -0.019705625250935555, + 0.003601602278649807, + -0.01987871341407299, + -0.01171020045876503, + -0.019545849412679672, + 0.007556041702628136, + -0.01604410633444786, + -0.02292776107788086, + 0.029398661106824875, + 0.022168828174471855, + 0.00794882234185934, + 0.012875229120254517, + 0.018813544884324074, + -0.0013655797811225057, + 0.005608779843896627, + -0.026056693866848946, + -0.004397150129079819, + 0.005422375164926052, + 0.018826860934495926, + -0.021143602207303047, + -0.030437201261520386, + 0.0516606904566288, + 0.01613730937242508, + 0.008747699670493603, + 0.004410464782267809, + 0.036189112812280655, + -0.012529049068689346, + 0.0074961259961128235, + 0.0007489468553103507, + 0.03182192146778107, + 0.011850004084408283, + -0.0007556041819043458, + 0.018094556406140327, + -0.009346856735646725, + 0.004566911607980728, + 0.0019822127651423216, + -0.00029770637047477067, + -0.039784058928489685, + -0.014805847778916359, + -0.0031006401404738426, + -0.00892744679003954, + 0.009826183319091797, + -0.020544445142149925, + -0.011836688965559006, + -0.012229470536112785, + 0.01085140835493803, + 0.02135663665831089, + -0.030783381313085556, + -0.0324610210955143, + 0.015178656205534935, + 0.0026146566960960627, + 0.01259562186896801, + 0.02351360395550728, + -0.030091021209955215, + 0.03214146941900253, + -0.01390045415610075, + -0.011490508913993835, + 0.004806574434041977, + 0.0349375382065773, + 0.020624332129955292, + -0.011284132488071918, + -0.012975088320672512, + 0.029531806707382202, + 0.016150623559951782, + 0.0019805484917014837, + -0.006963541731238365, + -0.023939670994877815, + -0.02184927649796009, + -0.021875906735658646, + -0.01712258905172348, + 0.03065023384988308, + 0.025217873975634575, + -0.011064441874623299, + 0.003465127432718873, + -0.023500287905335426, + 0.00951994676142931, + -0.015391690656542778, + -0.02322068251669407, + 0.010205649770796299, + 0.017575286328792572, + -0.04271327331662178, + -0.024711918085813522, + -0.018320905044674873, + 0.05136777088046074, + 0.005898372735828161, + -0.00026920478558167815, + 0.005515577737241983, + 0.01820107363164425, + -0.012129610404372215, + -0.029984503984451294, + 0.0026163209695369005, + 0.015205285511910915, + 0.007742446381598711, + 0.006071462761610746, + 0.007203204557299614, + 0.02184927649796009, + -0.006693920586258173, + -0.013467729091644287, + -0.005758569110184908, + -0.01561803836375475, + 0.0022967704571783543, + 0.0018940034788101912, + 0.026655850932002068, + 0.006863682065159082, + 0.017921466380357742, + -0.009187081828713417, + -0.000981952529400587, + 0.006600718479603529, + -0.012755397707223892, + 0.0057352688163518906, + -0.004929734859615564, + 0.014086858369410038, + -0.010019244626164436, + 0.0005974931991659105, + 0.002255162224173546, + 0.010898008942604065, + -0.029744841158390045, + -0.03483102098107338, + -0.020597703754901886, + 0.02075747773051262, + 0.012855256907641888, + 0.004673428367823362, + -0.018387477844953537, + 0.013793936930596828, + 0.0098394975066185, + 0.008767670951783657, + 0.0019622407853603363, + -0.00766255846247077, + -0.010298851877450943, + 0.013168150559067726, + 0.008807615377008915, + -0.010325481183826923, + -0.622910737991333, + -0.013454414904117584, + 0.01173682976514101, + -0.0089807054027915, + -0.0031389195937663317, + 0.02750798687338829, + 0.014313207007944584, + 0.010598430410027504, + 0.017801634967327118, + 0.041754622012376785, + 0.0044038076885044575, + 0.005758569110184908, + 0.0008962397696450353, + 0.01050522830337286, + -0.009400115348398685, + -0.025763772428035736, + -0.01011244673281908, + -0.012489105574786663, + 0.049876533448696136, + 0.005635409150272608, + -0.02588360384106636, + 0.011324076913297176, + -0.0015095439739525318, + 0.0012299371883273125, + 0.008940760977566242, + 0.024924952536821365, + 0.011830031871795654, + -0.023899726569652557, + 0.0036348889116197824, + -0.0033319813665002584, + -0.02480512112379074, + 0.008075311779975891, + -0.01717584766447544, + 0.017681803554296494, + 0.04660113900899887, + 0.015977533534169197, + -0.0015661311335861683, + 0.02982472814619541, + 0.002080407924950123, + 0.014406409114599228, + -0.0051494259387254715, + -0.01584438793361187, + 0.012043065391480923, + -0.004769959487020969, + -0.003495085285976529, + 0.01208300981670618, + 0.04841192439198494, + -0.011616998352110386, + -0.012975088320672512, + -0.04092911258339882, + -0.0011101056588813663, + -0.00709668779745698, + 0.018786916509270668, + 0.00490643410012126, + 0.022102253511548042, + 0.00557216489687562, + 0.025271132588386536, + -0.016496803611516953, + -0.020504500716924667, + -0.0008612889214418828, + -0.005575493443757296, + 0.007649244274944067, + -0.007136631291359663, + -0.020730849355459213, + -0.03152899816632271, + 0.03895855322480202, + -0.023686693981289864, + -0.031555626541376114, + 0.015538151375949383, + -0.013474386185407639, + 0.007143288850784302, + 0.03573641553521156, + -0.01806792803108692, + -0.015724556520581245, + 0.028919335454702377, + 0.03379248455166817, + 0.009113851003348827, + -0.017588600516319275, + -0.0030573676340281963, + 0.0012008114717900753, + -0.0014055236242711544, + -0.015085454098880291, + -0.030676864087581635, + 0.0030190879479050636, + 0.02559068240225315, + -0.012495762668550014, + -0.026682481169700623, + -0.003365267999470234, + 0.00031497376039624214, + 0.0009911063825711608, + 0.01962573640048504, + 0.04337900131940842, + 0.0021985750645399094, + -0.019798826426267624, + 0.003039059927687049, + 0.04276653006672859, + -0.018720343708992004, + 0.015125398524105549, + 0.0067338645458221436, + -0.034617990255355835, + -0.02479180507361889, + 0.010278879664838314, + 0.02203568071126938, + -0.03291371837258339, + 0.018813544884324074, + 0.007835648953914642, + -0.008508036844432354, + 0.017282364889979362, + 0.018041297793388367, + -0.024911636486649513, + -0.007742446381598711, + -0.020877311006188393, + -0.0017591930227354169, + -0.021609613671898842, + 0.0019422689219936728, + -0.0253377053886652, + 0.03128933534026146, + 0.00115670682862401, + 0.0025031468831002712, + -0.020744163542985916, + 0.0086145531386137, + -0.00025734645896591246, + 0.03933136165142059, + -0.022621523588895798, + -0.015578094869852066, + 0.015964219346642494, + 0.006018204148858786, + -0.0058451141230762005, + -0.008541323244571686, + -0.006996828131377697, + 0.013148178346455097, + -0.018041297793388367, + 0.01752202771604061, + -0.0017775006126612425, + -0.0021736102644354105, + 0.00660737557336688, + 0.041834507137537, + -0.009426744654774666, + -0.0031405838672071695, + -0.022501692175865173, + -0.03144911304116249, + -0.026402873918414116, + 0.02416601963341236, + -0.024126075208187103, + -0.013401156291365623, + -0.028999222442507744, + -0.0064775580540299416, + 0.003821293357759714, + -0.012828627601265907, + -0.007715817075222731, + -0.01579112932085991, + -0.008528008125722408, + -0.005635409150272608, + 0.02002517506480217, + 0.006510844919830561, + 0.005192698445171118, + -0.011224216781556606, + -0.022807927802205086, + 0.006098092067986727, + -0.030863268300890923, + 0.022009052336215973, + 0.01800135336816311, + -0.04186113551259041, + -0.0013198108645156026, + -0.007955480366945267, + -0.02031809650361538, + 0.024485569447278976, + 0.0009711344609968364, + -0.021369950845837593, + -0.02150309644639492, + 0.01535174623131752, + 0.0075427270494401455, + 0.0007905550301074982, + 0.029957875609397888, + -0.016270454972982407, + 0.00681708101183176, + -0.01741551049053669, + -0.004370521288365126, + -0.0063344263471663, + -0.019865399226546288, + 0.014978937804698944, + -0.0013905446976423264, + -0.002088729524984956, + -0.013447756879031658, + 0.005828470923006535, + 0.01515202783048153, + 0.012855256907641888, + 0.028067199513316154, + -0.018667085096240044, + 0.027614504098892212, + -0.0092270253226161, + 0.017482085153460503, + -0.020211579278111458, + 0.01697612926363945, + -0.04463057592511177, + 0.019452646374702454, + -0.002278462750837207, + 0.005219327751547098, + -0.011483851820230484, + 0.012369273230433464, + 0.028653042390942574, + 0.005961616989225149, + 0.016550062224268913, + -0.018760286271572113, + 0.020597703754901886, + -0.013833880424499512, + 0.009926042519509792, + -0.0324876494705677, + 0.03861237317323685, + 0.02608332224190235, + 0.011430593207478523, + -0.010671660304069519, + -0.01820107363164425, + -0.025071412324905396, + 0.0007693348452448845, + 0.03975742682814598, + -0.006161336321383715, + -0.003501742612570524, + 0.014259948395192623, + -0.004453737288713455, + 0.002870962955057621, + 0.0030274097807705402, + 0.031076302751898766, + -0.0021952465176582336, + -0.011803402565419674, + 0.004417122341692448, + -0.006171322427690029, + 0.0057352688163518906, + 0.02268809638917446, + -0.012162896804511547, + -0.002884277608245611, + -0.0018440736457705498, + 0.00824174378067255, + 0.024099446833133698, + 0.019545849412679672, + 0.017402196303009987, + 0.01816112920641899, + 0.004443751648068428, + 0.04929069057106972, + 0.020145006477832794, + 0.015405004844069481, + 0.021130288019776344, + 0.0016193895135074854, + 0.01820107363164425, + 0.013674105517566204, + -0.003458470106124878, + 0.010125761851668358, + 0.03315338119864464, + 0.008095283061265945, + -0.018906747922301292, + -0.020384669303894043, + -0.014180060476064682, + -0.010891351848840714, + -0.016416914761066437, + 0.02095719799399376, + 0.005209341645240784, + 0.026549333706498146, + -0.012063037604093552, + 0.006068134214729071, + 0.019745567813515663, + 0.0005059551913291216, + 0.011790088377892971, + 0.005968274548649788, + -0.018826860934495926, + -0.005761898122727871, + 0.005632080603390932, + -0.025950176641345024, + -0.02696208655834198, + -0.008128570392727852, + -0.019079837948083878, + 0.0004314766265451908, + 0.0036948046181350946, + -0.00031122902873903513, + 0.015072139911353588, + 0.03762708976864815, + 0.0018307589925825596, + -0.003608259605243802, + 0.025910232216119766, + 0.03315338119864464, + -0.005768555216491222, + -0.01849399507045746, + -0.015418319962918758, + -0.007888906635344028, + 0.021543040871620178, + 0.0026912158355116844, + -0.03251428157091141, + -0.00600156094878912, + 0.012355959042906761, + -0.039198216050863266, + -0.0126688526943326, + -0.002443231176584959, + 0.003015759401023388, + -0.022128883749246597, + -0.006647319532930851, + -0.001408020150847733, + -0.0005109481862746179, + 0.029505178332328796, + -0.010977896861732006, + -0.001430488540790975, + 0.00824174378067255, + -0.002985801547765732, + -0.018680399283766747, + -0.01350767258554697, + -0.016550062224268913, + 0.016257140785455704, + -0.009433401748538017, + -0.009180424734950066, + -0.019066523760557175, + 0.011843346990644932, + -0.01395371276885271, + -0.017588600516319275, + 0.00826171599328518, + 0.006427628453820944, + 0.008414833806455135, + -0.0005067873862572014, + -0.0009004005696624517, + 0.002841005101799965, + -0.008747699670493603, + 0.04859833046793938, + 0.009440058842301369, + -0.02125011943280697, + -0.03216810151934624, + 0.0006495033740065992, + 0.009380143135786057, + 0.012023094110190868, + 0.0027977325953543186, + 0.010278879664838314, + 0.029851358383893967, + -0.015578094869852066, + -0.03733417019248009, + -0.008428148925304413, + -0.03831944987177849, + 0.015444949269294739, + 0.005369117017835379, + -0.014526240527629852, + 0.00799542386084795, + 0.02690882980823517, + -0.015365061350166798, + -0.002138659358024597, + -0.011943206191062927, + 0.0023583504371345043, + 0.015857702121138573, + 0.01800135336816311, + -0.003731419797986746, + -0.009906070306897163, + -0.008454778231680393, + 0.011537110432982445, + 0.033632706850767136, + 0.0003852915542665869, + -0.020624332129955292, + 0.019359445199370384, + 0.024339109659194946, + -0.004666771274060011, + -0.014033599756658077, + -0.0023500288370996714, + 0.009859469719231129, + 0.003039059927687049, + 0.016217196360230446, + -0.00925365462899208, + 0.004823217634111643, + 0.00868778396397829, + 0.014566184021532536, + 0.012549021281301975, + -0.005548864137381315, + 0.009000676684081554, + 0.03310012444853783, + 0.008488064631819725, + -0.008461435325443745, + -0.001629375503398478, + -0.0031455769203603268, + 0.003791335504502058, + 0.017335623502731323, + -0.004204088356345892, + 0.0011741822818294168, + 0.01737556792795658, + -0.013887139037251472, + 0.00067363609559834, + 0.001552816480398178, + 0.004680085927248001, + -0.038159675896167755, + 0.005785198416560888, + -0.006643990986049175, + 0.0009045613696798682, + -0.0037414056714624166, + -0.019665680825710297, + -0.022115569561719894, + 4.329849161877064e-06, + -0.002679565455764532, + -0.008354918099939823, + -0.024285851046442986, + -0.010917981155216694, + 0.0023350499104708433, + -0.02592354826629162, + 0.014632757753133774, + 0.010764863342046738, + -0.009626463986933231, + -0.024592086672782898, + -0.009752952493727207, + 0.015405004844069481, + 0.0013714049709960818, + 0.01608405075967312, + -0.006068134214729071, + 0.0027344883419573307, + 0.007003485225141048, + -0.021955793723464012, + -0.008987362496554852, + -0.0177084319293499, + -0.032940346747636795, + -0.009187081828713417, + 0.016110679134726524, + -0.016456859186291695, + -0.014632757753133774, + 0.006963541731238365, + 0.02942529134452343, + 0.0028975922614336014, + 0.004853175953030586, + 0.02666916511952877, + -0.004437094088643789, + -0.011510481126606464, + 0.017002757638692856, + 0.006187965627759695, + 0.021290063858032227, + 0.018573882058262825, + -0.024592086672782898, + 0.031715404242277145, + -0.02047787234187126, + -0.008388204500079155, + -0.0037280910182744265, + 0.01619056612253189, + -0.0012698810314759612, + -0.0034884281922131777, + -0.0027444742154330015, + 0.006404327694326639, + 0.0216495580971241, + 0.012169554829597473, + 0.0012382587883621454, + 0.011796745471656322, + -0.004343891981989145, + 0.004756644833832979, + 0.004117543343454599, + 0.003448484232649207, + 0.014140116982161999, + 0.018773602321743965, + 0.009952671825885773, + -0.00036365530104376376, + -0.024765176698565483, + 0.03829282149672508, + 0.010864722542464733, + 0.015112083405256271, + 0.041115518659353256, + -0.004087585490196943, + 0.03706787899136543, + -0.03605596721172333, + -0.007090030238032341, + 0.009187081828713417, + 0.021423209458589554, + 0.013394498266279697, + -0.02867967262864113, + -0.045882150530815125, + -0.0036681753117591143, + 0.0092270253226161, + 0.018187759444117546, + -0.031129561364650726, + -0.017735062167048454, + -0.004866490140557289, + 0.017641859129071236, + -0.0043572066351771355, + -0.0020820721983909607, + 0.02170281670987606, + -0.032700683921575546, + -0.015524836257100105, + 0.015671297907829285, + -0.008994019590318203, + 0.021236805245280266, + -0.026216469705104828, + -0.0031771990470588207, + -0.031955067068338394, + -0.009939356707036495, + -0.013560931198298931, + -0.03605596721172333, + 0.006963541731238365, + -0.011863318271934986, + 0.014938993379473686, + 0.0014288241509348154, + 0.030730122700333595, + 0.008228429593145847, + 0.02174275927245617, + 0.007482811342924833, + -0.00660737557336688, + 0.00402101268991828, + -0.019665680825710297, + 0.008714413270354271, + -0.03349956125020981, + 0.03797326982021332, + 0.015218600630760193, + 0.017788320779800415, + 0.005009622313082218, + 0.0014421388041228056, + 0.009526603855192661, + 0.035550013184547424, + -0.029345402494072914, + 0.004317262675613165, + -0.002208561170846224, + -0.023753266781568527, + -0.021077029407024384, + -0.0007144120754674077, + 0.018320905044674873, + 0.0083682332187891, + -0.02465865947306156, + 0.004520310554653406, + 0.023686693981289864, + -0.009939356707036495, + -0.017548657953739166, + -0.004247360862791538, + 0.012675509788095951, + -0.023340513929724693, + 0.029105739668011665, + 0.004520310554653406, + 0.0010235607624053955, + -0.012316015549004078, + -0.01505882479250431, + -0.02144983783364296, + -0.00648421561345458, + 0.01766848936676979, + -0.0033003592398017645, + -0.0016934521263465285, + 0.012149582616984844, + -0.009786238893866539, + -0.003335310146212578, + 0.008301660418510437, + 0.0184540506452322, + -0.01914641074836254, + -0.013540958985686302, + -0.01633702777326107, + -0.023952985182404518, + -0.02451219968497753, + -0.004333905875682831, + -0.018467364832758904, + 0.03211484104394913, + 0.00900733470916748, + 0.00767587311565876, + 0.018707027658820152, + -0.005791855975985527, + -0.0035450151190161705, + 0.004776616580784321, + 0.0031039686873555183, + 0.009473346173763275, + 0.0023283925838768482, + 0.03858574107289314, + 0.006078119855374098, + -0.013347897678613663, + -0.02095719799399376, + -0.05538878217339516, + 0.0004963853280059993, + -0.010538514703512192, + 0.02564394101500511, + 0.00834160391241312, + -0.031369224190711975, + -0.011523796245455742, + 0.04452405869960785, + 0.023460345342755318, + -0.01579112932085991, + -0.0029408647678792477, + 0.04596203565597534, + 0.02966495417058468, + -0.0009902742458507419, + -0.010045873932540417, + -0.0032021638471633196, + -0.008108598180115223, + -0.0010967911221086979, + 0.009559891186654568, + 0.006713892798870802, + -0.02937203273177147, + -0.001880688825622201, + -0.012615594081580639, + 0.04090248420834541, + -0.0019988559652119875, + 0.02051781490445137, + 0.02238186076283455, + -0.015112083405256271, + 0.02312747947871685, + -0.014499611221253872, + 0.0018457379192113876, + 0.003921153023838997, + -0.012682166881859303, + 0.01692287065088749, + 0.0007360483286902308, + 0.0009311906178481877, + 0.012256099842488766, + 0.015191971324384212, + -0.0026978731621056795, + 0.005222656298428774, + 0.01269548200070858, + 0.020637646317481995, + -0.008454778231680393, + -0.005791855975985527, + 0.004024341236799955, + -0.022168828174471855, + 0.010625059716403484, + 0.006424299906939268, + -0.00031684612622484565, + -0.008175170980393887, + 0.008468092419207096, + -0.011583711951971054, + 0.009732980281114578, + 0.010864722542464733, + -0.009985958226025105, + -0.009872783906757832, + -0.009047278203070164, + -0.022301973775029182, + -0.012469133362174034, + -0.01323472335934639, + 0.0003228793211746961, + -0.031129561364650726, + -0.0023666720371693373, + 0.023007648065686226, + 0.022421805188059807, + 0.021622927859425545, + -0.0005845946143381298, + -0.016177251935005188, + 0.008461435325443745, + 0.02342040091753006, + -0.035310350358486176, + 0.008667811751365662, + 0.04497675597667694, + -0.009340199641883373, + -0.008155199699103832, + 0.0045935409143567085, + 0.01781494915485382, + -0.02110365778207779, + 0.017988039180636406, + -0.013574246317148209, + -0.009340199641883373, + -0.007868935354053974, + 0.004320591222494841, + 0.01776169054210186, + -0.005615437403321266, + -0.002002184744924307, + 0.011616998352110386, + 0.015191971324384212, + -0.00034264317946508527, + -0.016403600573539734, + -0.017495399340987206, + 0.004566911607980728, + 0.009826183319091797, + -0.005948302336037159, + 0.023739950731396675, + -0.02168950065970421, + 0.0241127610206604, + 0.01390045415610075, + -0.0047533162869513035, + 0.009220368228852749, + -0.015005567111074924, + -0.03278057277202606, + 0.016350341960787773, + 0.0009095543646253645, + -0.015471577644348145, + 0.0024315807968378067, + -0.00505622336640954, + -0.0029242215678095818, + -0.007669216021895409, + -0.020051803439855576, + -0.010811463929712772, + 0.007822333835065365, + 0.0016726480098441243, + 0.005642066244035959, + -0.020544445142149925, + 0.03272731229662895, + 0.002954179421067238, + -0.014552869834005833, + 0.002263483824208379, + -0.01485910639166832, + -0.03626900166273117, + 0.0021885891910642385, + -0.021769389510154724, + 0.03698799014091492, + -0.0016185573767870665, + -0.04068944975733757, + -0.011164301075041294, + 0.011357363313436508, + -0.021369950845837593, + -0.01419337559491396, + -0.005332501605153084, + -0.010032559745013714, + -0.007862278260290623, + 0.03336641564965248, + -0.027321582660079002, + 0.024379052221775055, + -0.013088262639939785, + 0.020451242104172707, + 0.0012856920948252082, + -0.03174203261733055, + 0.02431247942149639, + 0.001667655073106289, + 0.014872420579195023, + -0.0067638223990798, + -0.04114214703440666, + 0.005176055245101452, + 0.024046188220381737, + 0.00021906696201767772, + 0.015271859243512154, + 0.022501692175865173, + -0.008228429593145847, + -0.0339522585272789, + 0.007762418128550053, + 0.0038645658642053604, + 0.0014812505105510354, + -0.007955480366945267, + 0.0004485359531827271, + -0.02381983958184719, + -0.004876476246863604, + 0.008581266738474369, + 0.023833153769373894, + -0.026149896904826164, + 0.006277839187532663, + 0.01958579197525978, + -0.019426017999649048, + 0.006507516372948885, + 0.003448484232649207, + -0.0216495580971241, + 0.010684975422918797, + -0.027667760848999023, + 0.04060956463217735, + 0.031715404242277145, + -0.010744891129434109, + 0.0033452960196882486, + 0.012442504055798054, + -0.0164834875613451, + -0.02449888363480568, + -0.007063400931656361, + -0.038798775523900986, + 0.00895407609641552, + 0.005725282710045576, + -0.02774764969944954, + 0.01874697208404541, + -0.01953253522515297, + 0.005345816258341074, + -0.0014454674674198031, + 0.007815676741302013, + -0.009952671825885773, + -0.008121912367641926, + -0.027374839410185814, + 0.023407086730003357, + -0.005911687389016151, + -0.020930567756295204, + -0.01805461198091507, + -0.00981952529400587, + -0.04335237294435501, + -0.01860051229596138, + -0.030437201261520386, + 0.00263296440243721, + -0.012455818243324757, + -0.004097571596503258, + -0.0019855413120239973, + -0.013461071997880936, + -0.008015396073460579, + -0.010392053984105587, + -0.0009253654861822724, + -0.030756751075387, + -0.012136268429458141, + 0.1978018581867218, + -0.028013940900564194, + -0.011776773259043694, + -0.004367192275822163, + -0.02405950240790844, + -0.015138712711632252, + 0.03424517810344696, + -0.008960733190178871, + -0.007782390341162682, + 0.012269414030015469, + 0.009353513829410076, + 0.0057985130697488785, + 0.007229833863675594, + 0.0010210642358288169, + -0.005931659135967493, + -0.001957247732207179, + -0.02367337793111801, + -0.008388204500079155, + -0.0062911538407206535, + 0.03664181008934975, + 0.025111356750130653, + -0.02278129942715168, + -3.229833237128332e-05, + -0.027002030983567238, + 0.03552338108420372, + 0.005775212310254574, + 0.016310399398207664, + 0.017042702063918114, + 0.027028661221265793, + 0.0023433715105056763, + -0.03176866099238396, + -0.0021453166846185923, + 0.02756124548614025, + -0.008721070364117622, + -0.00284766242839396, + -0.007809019181877375, + 0.0017159205162897706, + -0.03006439097225666, + 0.03965091332793236, + 0.04684080183506012, + 0.0033918970730155706, + -0.0472402386367321, + -0.000852967263199389, + -0.02867967262864113, + 0.012116296216845512, + -0.0002477765956427902, + -0.004603526555001736, + -0.007030114531517029, + -0.0008637853898108006, + -0.008714413270354271, + -0.005039580166339874, + 0.017162533476948738, + 0.012602278962731361, + 0.029531806707382202, + -0.011297447606921196, + -0.016656577587127686, + 0.002672908129170537, + 0.008774328976869583, + 0.020051803439855576, + 0.011989807710051537, + -0.03379248455166817, + 0.026189839467406273, + 0.0008325792732648551, + 0.01259562186896801, + -0.03011764958500862, + 0.006983513478189707, + 0.0025380977895110846, + 0.0037047904916107655, + 0.004680085927248001, + -0.027348211035132408, + -0.00806865468621254, + -0.005665367003530264, + -0.02528444677591324, + 0.017428826540708542, + -0.003007437800988555, + -0.04044978693127632, + 0.01653674617409706, + -0.01171020045876503, + 0.04063619300723076, + 0.01840079203248024, + 0.00616466486826539, + 0.012196184135973454, + -0.016803039237856865, + -0.025377647951245308, + 0.010565144009888172, + -0.004207416903227568, + 0.022794613614678383, + -0.0016451866831630468, + 0.008255058899521828, + -0.023779895156621933, + -0.037174392491579056, + 0.007576013915240765, + 0.0035083999391645193, + -0.020997142419219017, + 0.018134500831365585, + -0.007149945944547653, + 0.024685289710760117, + 0.015964219346642494, + -0.0011708536185324192, + 0.019612422212958336, + -0.0167364664375782, + 0.054057322442531586, + 0.040316641330718994, + -0.02568388544023037, + -0.004134186543524265, + 0.015338432043790817, + -0.013753993436694145, + 0.021782703697681427, + -0.0044970097951591015, + -0.010205649770796299, + 0.008761013858020306, + -0.02686888538300991, + 0.024019557982683182, + -0.015405004844069481, + 0.007762418128550053, + 0.01737556792795658, + 0.0032937019132077694, + -0.0021885891910642385, + 0.003907838370651007, + 0.011497166939079762, + -0.009113851003348827, + 0.01055848691612482, + 0.004603526555001736, + 0.0017641859594732523, + 0.01013241894543171, + -0.033685967326164246, + -0.015711240470409393, + 0.010498571209609509, + -0.01079814974218607, + -0.002879284555092454, + 0.012901858426630497, + -0.007988766767084599, + 0.042287204414606094, + 0.0007414573919959366, + 0.012162896804511547, + -0.011690228246152401, + 0.004550268407911062, + -0.024964895099401474, + -0.005868414882570505, + 0.007815676741302013, + 0.01532511692494154, + -0.00954657606780529, + 0.01564466767013073, + 0.008894160389900208, + 0.011583711951971054, + -0.0038246221374720335, + 0.011470537632703781, + -0.006044833455234766, + -0.02686888538300991, + -0.026642536744475365, + -0.015405004844069481, + -0.004467051941901445, + 0.026988716796040535, + -0.007982109673321247, + 0.03807978704571724, + 0.015178656205534935, + -0.017641859129071236, + -0.01613730937242508, + 0.0056387376971542835, + 0.021676186472177505, + -0.015498206950724125, + -0.009113851003348827, + -0.005528892390429974, + -0.013148178346455097, + -0.0037347483448684216, + 0.002679565455764532, + -0.16819016635417938, + -0.014366465620696545, + 0.006883653812110424, + -0.030490459874272346, + 0.0005434025661088526, + 0.010445312596857548, + 0.011230874806642532, + 0.012475790455937386, + -0.018933376297354698, + 0.0026828942354768515, + 0.01947927661240101, + -0.0009353514178656042, + -0.02445894107222557, + -0.020384669303894043, + -0.012948459014296532, + -0.015298488549888134, + -0.008734384551644325, + 0.040822599083185196, + 0.024525513872504234, + 0.008920789696276188, + 0.0010119103826582432, + -0.031555626541376114, + 0.017894838005304337, + -0.0016468509566038847, + -0.00892744679003954, + 0.010278879664838314, + -0.021023770794272423, + 0.023992929607629776, + -0.02283455803990364, + -0.032061584293842316, + -0.022568264976143837, + -0.004829875193536282, + 0.006254538428038359, + -0.014286577701568604, + -0.017109274864196777, + -0.0012931815581396222, + 0.001150049502030015, + 0.00021865087910555303, + -0.007136631291359663, + 0.031369224190711975, + 0.01301503274589777, + 0.050808556377887726, + 0.00033348938450217247, + 0.00458688335493207, + -0.020690904930233955, + 0.017455454915761948, + 0.010738234035670757, + -0.02307422086596489, + -0.008940760977566242, + -0.03349956125020981, + -0.017681803554296494, + -0.020437927916646004, + -0.01706933043897152, + 0.02612326666712761, + -0.0011791752185672522, + 0.0062445527873933315, + 0.00555885024368763, + 0.008481407538056374, + 0.011190930381417274, + -0.010625059716403484, + -0.0027627816889435053, + -0.022355232387781143, + -0.015005567111074924, + -0.005156083032488823, + -0.021037084981799126, + -0.015711240470409393, + 0.010345452465116978, + 0.003981068730354309, + -0.0354434959590435, + -0.005655380897223949, + -0.004437094088643789, + -0.009426744654774666, + -0.0030190879479050636, + -0.008235086686909199, + -0.003784678177908063, + 0.001408020150847733, + -0.0017908151494339108, + 0.0018523952458053827, + 0.003386904252693057, + -0.00711000245064497, + -0.012309357523918152, + 0.032008323818445206, + 9.87153616733849e-05, + -0.021955793723464012, + -0.002862641355022788, + -0.014379779808223248, + -0.018214387819170952, + 0.011377335526049137, + -0.013940397650003433, + 0.005944973789155483, + 0.034271810203790665, + -0.022275343537330627, + -0.02750798687338829, + -0.025856975466012955, + 0.009406772442162037, + -0.0014504604041576385, + -0.0012990067480131984, + 0.01424663420766592, + -0.004736673086881638, + 0.0003954855492338538, + 0.003891195170581341, + -0.018707027658820152, + -0.014126801863312721, + 0.03227461874485016, + -0.006201280280947685, + -0.011011183261871338, + -0.023593490943312645, + 0.011230874806642532, + 0.04604192450642586, + -0.01505882479250431, + -0.025031467899680138, + -0.0010019245091825724, + 0.018906747922301292, + -0.0017908151494339108, + -0.013401156291365623, + 0.0054490044713020325, + -4.7355286369565874e-05, + -0.01732230931520462, + 0.023739950731396675, + 0.00041212880751118064, + 0.04894451051950455, + -0.006217923481017351, + -0.013001717627048492, + 0.0073563228361308575, + -0.0077025024220347404, + -0.03238113224506378, + -0.09442722052335739, + -0.00799542386084795, + 0.025617310777306557, + 0.014339836314320564, + 0.0038745517376810312, + 0.03365933522582054, + 0.0058917151764035225, + -0.014845791272819042, + 0.0021919177379459143, + 0.026016749441623688, + -0.03152899816632271, + -0.037866752594709396, + -0.009453373961150646, + -0.018813544884324074, + 0.029931245371699333, + -0.013980341143906116, + -0.02144983783364296, + -0.01392708346247673, + -0.025697199627757072, + 0.02977146953344345, + 9.138192399404943e-05, + 0.01453955564647913, + -0.0008076143567450345, + -0.013228066265583038, + -0.017775006592273712, + -0.0026779011823236942, + -0.04292630776762962, + 0.009706351906061172, + 0.018533939495682716, + -0.00681708101183176, + 0.039198216050863266, + -0.023952985182404518, + 0.006760493852198124, + -0.02223540097475052, + -0.0010293858358636498, + 0.0019705623853951693, + -0.009706351906061172, + -0.03650866448879242, + 0.02878618985414505, + -0.026562649756669998, + -0.007076715584844351, + 0.016163937747478485, + 0.02425922080874443, + -0.00888084527105093, + 0.018627140671014786, + -0.025896918028593063, + -0.011670256964862347, + 0.013700734823942184, + 0.024432310834527016, + -0.007848963141441345, + -0.031955067068338394, + -0.0378933846950531, + -0.03714776411652565, + -0.0018091227393597364, + 0.030170908197760582, + -0.016403600573539734, + -0.007316378876566887, + -0.008627868257462978, + -0.024019557982683182, + -0.008508036844432354, + -0.019079837948083878, + 0.012162896804511547, + -0.02150309644639492, + 0.020837366580963135, + -0.006464243866503239, + -0.0038412653375416994, + -0.03411203250288963, + -0.0042906333692371845, + 0.007143288850784302, + 0.00858792383223772, + -0.0339522585272789, + 0.006284496281296015, + 0.0016335363034158945, + 0.0039011810440570116, + -0.029212256893515587, + -0.011217559687793255, + -0.04886462166905403, + -0.00142383121419698, + 0.010791492648422718, + -0.012715453281998634, + -0.012242784723639488, + -0.03632225841283798, + 0.02563062682747841, + -0.01564466767013073, + 0.011989807710051537, + 0.015085454098880291, + 0.004526967648416758, + 0.0001958704087883234, + 0.00030894059455022216, + -0.021582985296845436, + -0.0023799866903573275, + 0.025377647951245308, + 0.011457222513854504, + 0.005162740591913462, + -0.016177251935005188, + 0.019865399226546288, + -0.011603683233261108, + 0.003012430854141712, + 0.008228429593145847, + 0.017482085153460503, + -0.007436210289597511, + -0.01880023069679737, + -0.04095574468374252, + 0.01850730925798416, + 0.047613050788640976, + 0.011197587475180626, + -0.024525513872504234, + -0.0033669322729110718, + 0.0089807054027915, + 0.012522391974925995, + 0.04188776761293411, + 0.006537474226206541, + -0.009133823215961456, + 0.009220368228852749, + -0.0033170024398714304, + 0.002140323631465435, + -0.01358090341091156, + -0.02455214224755764, + 0.02445894107222557, + 0.0027344883419573307, + 0.01949259079992771, + -0.011317419819533825, + 0.0014354814775288105, + -0.0033303170930594206, + 0.009466688148677349, + 0.021396579220891, + -0.019346129149198532, + 0.014379779808223248, + -0.010345452465116978, + -0.013068290427327156, + -0.017162533476948738, + -0.01653674617409706, + -0.012063037604093552, + 0.0019589122384786606, + 0.002474853303283453, + 0.009932699613273144, + -0.013327925466001034, + -0.005445675924420357, + 0.004107557702809572, + 0.014885734766721725, + 0.003495085285976529, + 0.06529485434293747, + -0.006787123158574104, + -0.024738546460866928, + 0.0009087222279049456, + -0.014566184021532536, + 0.0005038747913204134, + 0.014273262582719326, + 0.013494358398020267, + -0.001217454788275063, + 0.016789725050330162, + -0.004297290928661823, + 0.029345402494072914, + 0.01224944181740284, + -0.017455454915761948, + -0.005186040885746479, + 0.017988039180636406, + 0.002429916523396969, + 0.006793780252337456, + 0.00709668779745698, + 0.010598430410027504, + -0.02111697383224964, + 0.038159675896167755, + 0.008028710260987282, + -0.0010318823624402285, + 0.012189526110887527, + 0.009506632573902607, + -0.005262599792331457, + -0.03376585245132446, + -0.014899049885571003, + 0.028280233964323997, + -0.03243439272046089, + -0.03408540412783623, + -0.0016601656097918749, + 0.0201716348528862, + 0.020051803439855576, + -0.013108234852552414, + -0.01473927404731512, + 0.004167473409324884, + -0.003275394206866622, + -0.002103708451613784, + 0.02838675118982792, + 0.015684612095355988, + 0.031023044139146805, + -0.0002789827121887356, + 0.0008837573113851249, + 0.04859833046793938, + 0.005072867032140493, + -0.010957924649119377, + 0.00036032666685059667, + -0.007988766767084599, + 0.002338378457352519, + -0.018267646431922913, + 0.010598430410027504, + 0.01732230931520462, + 0.010345452465116978, + 0.011490508913993835, + 0.005342487711459398, + 0.0001638321264181286, + -0.008508036844432354, + 0.0364021472632885, + 0.044790349900722504, + 0.008101941086351871, + 0.008408176712691784, + 0.0010069174459204078, + -0.030197538435459137, + -0.022475063800811768, + 0.028546525165438652, + -0.02489832229912281, + -0.032753944396972656, + 0.0003540854377206415, + 0.014033599756658077, + -0.009040621109306812, + 0.015871016308665276, + -0.008521351031959057, + -0.005865086335688829, + -0.038798775523900986, + 0.03232787549495697, + -0.015365061350166798, + -0.028706301003694534, + -0.03176866099238396, + 0.017788320779800415, + 0.04044978693127632, + 0.010218963958323002, + -0.011290790513157845, + -0.006890311371535063, + 0.027135176584124565, + -0.002496489556506276, + 0.016030792146921158, + -0.027614504098892212, + 0.017535341903567314, + -0.018081242218613625, + 0.01296843122690916, + 0.02190253511071205, + -0.027721019461750984, + 0.006534145213663578, + -0.03576304391026497, + -0.017482085153460503, + 0.037813495844602585, + -0.011989807710051537, + 0.002954179421067238, + 0.112162284553051, + 0.029398661106824875, + -0.008348261006176472, + 0.021423209458589554, + -0.016816353425383568, + -0.001340614864602685, + 0.0177084319293499, + 0.01195652037858963, + -0.012635566294193268, + -0.04769293591380119, + 0.00403432734310627, + -0.021396579220891, + 0.023899726569652557, + -0.03371259570121765, + 0.0007164925336837769, + 0.009000676684081554, + -0.007409580983221531, + 0.015964219346642494, + -0.005275914445519447, + -0.0009927706560119987, + 0.027987312525510788, + -0.01772174797952175, + 0.011550424620509148, + 0.03371259570121765, + -0.024019557982683182, + -0.010718261823058128, + 0.010518542490899563, + -0.014885734766721725, + -0.00885421596467495, + -0.0221421979367733, + -0.0019672338385134935, + 0.009679722599685192, + -0.0521400161087513, + -0.03725428134202957, + 0.019505904987454414, + -0.01885348930954933, + -0.001529515953734517, + -0.017535341903567314, + 0.006357726640999317, + 0.020637646317481995, + 0.008281688205897808, + 0.013753993436694145, + -0.0028826133348047733, + -0.021929163485765457, + -0.0153783755376935, + 0.006564103066921234, + 0.003341967472806573, + -0.008767670951783657, + -0.014126801863312721 + ], + "metadata": { + "source": "Thesis_Verladegeraeusche_in_Speditionen.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 41, + "has_images": true, + "image_count": 51, + "coordinates": "CoordinatesMetadata(points=((204.16666666666666, 189.02777777777797), (204.16666666666666, 642.3611111111111), (936.1666666666666, 642.3611111111111), (936.1666666666666, 189.02777777777797)), system=)", + "links": [], + "last_modified": "2025-05-05T22:59:16", + "_known_field_names": "frozenset({'cc_recipient', 'link_texts', 'url', 'filetype', 'category_depth', 'page_number', 'filename', 'orig_elements', 'detection_origin', 'email_message_id', 'page_name', 'coordinates', 'table_as_cells', 'link_start_indexes', 'sent_to', 'bcc_recipient', 'languages', 'last_modified', 'link_urls', 'file_directory', 'subject', 'data_source', 'detection_class_prob', 'image_base64', 'text_as_html', 'attached_to_filename', 'key_value_pairs', 'signature', 'sent_from', 'header_footer_type', 'parent_id', 'links', 'emphasized_text_contents', 'emphasized_text_tags', 'image_mime_type', 'is_continuation', 'image_path'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "Thesis_Verladegeraeusche_in_Speditionen.pdf", + "detection_class_prob": 0.2568194270133972, + "parent_id": "d45475a34bc527cde6987546fa6dd2f5", + "text_as_html": "
Flurf\u00f6rderger\u00e4t |Anzahl Einzelereignisse ElMax-PegelSchallleistungspegel
LAFmaxLWA,5sLWAmaxLWA,1hKlLWAT,1h
[dB(A)][dB(A)][dB(A)][dB(A)][dB(A)][dB(A)]
Gabelstapler29769,3100,7108,872,15,777,8
STABW [dB]6,54,96,54,92,9-
Gabelhubwagen9968,6100,7108,172,16,279,5
STABW [dB]6,45,16,4512,7-
", + "id": "5ba44de7-0ff3-4c0c-b018-67e92171e1c2", + "processing_timestamp": "2025-05-06T14:18:19.298665", + "chunk_number": 40, + "total_chunks": 49, + "chunking_strategy": "hybrid", + "word_count": 352 + } +} \ No newline at end of file diff --git a/data/processed/85fd305f-83de-70b0-47e8-2dc000000041.json b/data/processed/85fd305f-83de-70b0-47e8-2dc000000041.json new file mode 100644 index 0000000000000000000000000000000000000000..a841ecae0e61deab93c9fa072605a78eeaa92ff9 --- /dev/null +++ b/data/processed/85fd305f-83de-70b0-47e8-2dc000000041.json @@ -0,0 +1,1570 @@ +{ + "id": "85fd305f-83de-70b0-47e8-2dc000000041", + "content": "- [11] Stertil Dock Produktion (Hrsg. ): Entwurf einer Verladestation. STERTIL Superior So- lutions, 9288 ZG Kootstertille, Die Niederlande. - [12] Thiele Shop: Was sind \u00dcberladebr\u00fccken?, 2023, https://www.auffahrrampen- thiele.de/was-sind-ueberladebruecken [Zugriff am: 05.04.2023]. - [13] Jedermann-Verlag (Hrsg. ): Sicheres-Be-und-Entladen-von-Fahrzeugen \u2013 Ein Leitfa- den f\u00fcr Praktiker. Jedermann-Verlag, Heidelberg, 2006. - [14] Berufsgenossenscha\u017ft Holz und Metall (Hrsg. ): Be- und Entladen von Fahrzeugen, Isaac-Fulda-Allee 18 55124 Mainz, 2021. - [15] Lasiprofi: Die Verladung von Frachtgut, 2023, https://www.ladungssiche- rung.eu/ratgeber/ladung/verladen [Zugriff am: 05.04.2023]. - [16] DIN 45645-1: Ermittlung von Beurteilungspegeln aus Messungen, Teil 1: Ge- r\u00e4uschemissionen in der Nachbarschaft. Ausgabe Juli 1996. - [17] M\u00fcller, G.; M\u00f6ser, M.: Beurteilung von Schallimmissionen \u2013 Gesetze - Vorschriften - Normen - Richtlinien. Fachwissen Technische Akustik, Fachwissen Technische Akustik, Springer Berlin Heidelberg, Berlin, Heidelberg, 2017. - [18] DIN ISO 9613-2: D\u00e4mpfung bei Ausbreitung im Freien. Ausgabe Oktober 1999. - [19] DIN 45681: Bestimmung der Tonhaltigkeit von ger\u00e4uschen und Ermittlung eines Tonzuschlages f\u00fcr die Beurteilung von Ger\u00e4uschimmissionen. Ausgabe Januar 1992. - [20] DIN 45641: Mittelung von Schallpegeln. Ausgabe Juni 1990. - [21] Professor Dr.-Ing. Michael M\u00f6ser: Messtechnik der Akustik. Technische Universit\u00e4t Berlin - Institut f\u00fcr Str\u00f6mungsmechanik und Technische Akustik. Springer-Verlag Berlin Heidelberg, Berlin, 2009. - [22] fairaudio: Punktschallquelle - akustische Idealvorstellung | Lexikon fairaudio, 2020, https://www.fairaudio.de/lexikon/punktschallquelle/ [Zugriff am: 14.04.2023].", + "embedding": [ + 0.014622260816395283, + -0.008098587393760681, + 0.0033500862773507833, + -0.028755756095051765, + 0.021288491785526276, + 0.008892832323908806, + -0.027588147670030594, + 0.004700982011854649, + -0.010169056244194508, + -0.028266988694667816, + 0.009306926280260086, + 0.01832873933017254, + -0.016265058889985085, + 0.012931943871080875, + 0.0013678669929504395, + 0.0014764817897230387, + 0.021600758656859398, + 0.012707926332950592, + 0.019306272268295288, + -0.01143170241266489, + -0.015464025549590588, + -0.000397122697904706, + 0.010820744559168816, + 0.008743487298488617, + -0.0008774035377427936, + 0.012877636589109898, + 0.03350765258073807, + -0.02151929773390293, + -0.010725706815719604, + 0.0012838602997362614, + 0.0062860785983502865, + 0.0020687715150415897, + -0.014635837636888027, + -0.005804101005196571, + -0.0038795832078903913, + -0.018342316150665283, + -0.004925000015646219, + -0.015477602370083332, + 0.02261902205646038, + -0.01845093071460724, + -0.003027636092156172, + 0.004083235748112202, + 0.003692901460453868, + -0.04238690808415413, + 0.0015053325332701206, + 0.02218456380069256, + 0.002476076828315854, + 0.0010140205267816782, + -0.014730875380337238, + 0.013766920194029808, + 0.03133535757660866, + 0.025212198495864868, + -0.011866161599755287, + 0.013658304698765278, + 0.005766764283180237, + -0.0003071760875172913, + -0.021560028195381165, + 0.025483736768364906, + 0.0016538293566554785, + -0.015396141447126865, + -0.03652171045541763, + -0.0014798759948462248, + -0.028022605925798416, + 0.01089541707187891, + -0.021261338144540787, + -0.015803446993231773, + -0.01398414932191372, + -0.013678669929504395, + -0.025361545383930206, + 0.0014128403272479773, + 0.010542419739067554, + 0.03369772806763649, + 0.007202515844255686, + 0.005508804228156805, + 0.0319598913192749, + -0.029543211683630943, + 0.010963301174342632, + -0.00038715219125151634, + -0.021166300401091576, + 0.0021383529528975487, + 0.02347436361014843, + -0.029570365324616432, + -0.027506684884428978, + 0.03548986837267876, + 0.020338112488389015, + 0.004493935499340296, + -0.002538869855925441, + 0.0095173679292202, + -0.019292695447802544, + -0.003910130821168423, + -0.002014464233070612, + 0.025565197691321373, + -0.02105768583714962, + 0.009306926280260086, + 0.014147071167826653, + -0.0014807245461270213, + 0.0013822923647239804, + 0.023827360942959785, + -0.018491661176085472, + -0.04092060774564743, + -0.017038939520716667, + -0.010121537372469902, + 0.015898484736680984, + -0.0005863499245606363, + -0.012388870120048523, + 0.005335699766874313, + 0.011085493490099907, + 0.006971709430217743, + -0.01017584465444088, + -0.02788683772087097, + -0.018994005396962166, + 0.010006134398281574, + 0.007698070723563433, + -0.005518986843526363, + 0.02479131706058979, + -0.018016472458839417, + 0.02176368050277233, + -0.002941083861514926, + -0.008118952624499798, + -0.022021640092134476, + 0.03209565952420235, + 0.015559063293039799, + 0.0035944695118814707, + -0.014785182662308216, + 0.014513646252453327, + 0.017283322289586067, + 0.0011099069379270077, + 0.007059958763420582, + -0.01282332930713892, + -0.005359459202736616, + -0.02252398431301117, + -0.008302239701151848, + 0.0132374232634902, + 0.0027934357058256865, + -0.004436233546584845, + 0.021858718246221542, + -0.017120400443673134, + 0.008078222163021564, + -0.03030351549386978, + -0.04254982993006706, + 0.016753826290369034, + 0.01023694034665823, + -0.033670574426651, + -0.018315162509679794, + -0.0007866083760745823, + 0.03763500973582268, + 0.011777912266552448, + -0.0012125818757340312, + -0.018342316150665283, + 0.01089541707187891, + -0.01127556897699833, + -0.018613852560520172, + 0.004181668162345886, + 0.0046975878067314625, + -0.010637457482516766, + 0.01698463223874569, + 0.015355410054326057, + 0.006574586499482393, + -0.016903171315789223, + -0.011228050105273724, + 0.016821710392832756, + 0.007922088727355003, + 0.01445933897048235, + 0.003076852299273014, + 0.016332942992448807, + 0.011621778830885887, + -0.01998511515557766, + -0.007209304254502058, + 0.0022724242880940437, + -0.010196209885179996, + -0.013916265219449997, + 0.023026326671242714, + -0.005033615045249462, + 0.01178470067679882, + -0.015260372310876846, + 0.010657822713255882, + 0.01576271653175354, + 0.005057374481111765, + -0.021464990451931953, + -0.03948146104812622, + -0.02025665156543255, + 0.005922898184508085, + 0.018288008868694305, + 0.016794556751847267, + -0.029027292504906654, + 0.014961682260036469, + 0.026977188885211945, + 0.01573556289076805, + -0.006608528550714254, + -0.014147071167826653, + 0.001007232116535306, + 0.014527223072946072, + -0.003139645094051957, + -0.020283805206418037, + -0.6343101263046265, + -0.009191523306071758, + 0.0011625172337517142, + -0.011839007958769798, + 0.006482942961156368, + 0.04882233217358589, + 0.027289455756545067, + 0.004565213806927204, + 0.003031030297279358, + 0.03521833196282387, + -0.005179565865546465, + 0.0194013100117445, + -0.013223846442997456, + 0.007725224364548922, + -0.021980909630656242, + -0.01566767878830433, + -0.02237463928759098, + -0.008634872734546661, + 0.033561959862709045, + 0.01725616864860058, + -0.007677705027163029, + 0.02069110982120037, + -0.020894762128591537, + -0.006445606704801321, + -0.0023623709566891193, + -0.004246158059686422, + 0.018138663843274117, + -0.017188284546136856, + 0.004364955238997936, + -0.009415540844202042, + -0.025443006306886673, + 0.017269745469093323, + -0.028538525104522705, + 0.008594142273068428, + 0.04909386858344078, + 0.019509924575686455, + -0.0020891367457807064, + 0.03426795452833176, + 0.00940875243395567, + 0.022442523390054703, + -0.0029835114255547523, + -0.02289055846631527, + 0.007779531646519899, + -0.007304341997951269, + 0.007636974565684795, + 0.006435424089431763, + 0.061313025653362274, + -0.012755445204675198, + 0.00422239862382412, + -0.03136251121759415, + 0.007596244104206562, + 0.005641178693622351, + 0.015138180926442146, + 0.01805720292031765, + 0.009870365262031555, + 0.00568530336022377, + 0.043690282851457596, + -0.01597994565963745, + -0.0097617506980896, + 0.006000964902341366, + 0.02542942948639393, + 0.014038456603884697, + 0.0017734752036631107, + -0.016767403110861778, + -0.030004825443029404, + 0.013570055365562439, + -0.02842991054058075, + -0.04037753492593765, + 0.02644769288599491, + 0.0021621123887598515, + -0.007433322258293629, + 0.01634651981294155, + -0.0026950035244226456, + -0.00904217828065157, + 0.026651345193386078, + 0.0264748465269804, + 0.005335699766874313, + -0.0175684355199337, + 0.014839490875601768, + 0.03736347332596779, + 0.0009300138335675001, + 0.014622260816395283, + 0.012633252888917923, + -0.0030225447844713926, + 0.031389664858579636, + -0.0056343902833759785, + -0.007847416214644909, + -0.006258924957364798, + 0.00483675068244338, + 0.001406051917001605, + 0.01803004927933216, + 0.02589104138314724, + 0.006822363939136267, + -0.01407918706536293, + 0.000669932400342077, + 0.028239835053682327, + -0.004588973242789507, + 0.01778566464781761, + 0.009035389870405197, + -0.029054446145892143, + -0.016699517145752907, + -0.0074061681516468525, + 0.01158104743808508, + -0.011031185276806355, + 0.023053480312228203, + 0.013264576904475689, + -0.015328256413340569, + 0.017609165981411934, + 0.022537561133503914, + -0.007229669485241175, + -0.0006788421887904406, + -0.0038116988725960255, + -0.012314197607338428, + -0.016414403915405273, + -0.0033568746875971556, + -0.017215438187122345, + 0.007616609334945679, + -0.0005587720079347491, + -0.006880065891891718, + -0.03470241278409958, + 0.0034570039715617895, + 0.006903825327754021, + 0.011594624258577824, + -0.0016699518309906125, + -0.013441075570881367, + 0.018858235329389572, + 0.01130951102823019, + 0.003940679132938385, + -0.005671726539731026, + -0.0006190192070789635, + 0.016536595299839973, + -0.0030853378120809793, + 0.014717298559844494, + -0.007725224364548922, + 0.010746072046458721, + 0.02938028983771801, + 0.031905584037303925, + -0.012796175666153431, + 0.020487457513809204, + -0.03054789826273918, + -0.0373363196849823, + -0.020555341616272926, + 0.01637367345392704, + -0.036956168711185455, + -0.017609165981411934, + -0.039400000125169754, + -0.01151995174586773, + 0.002011070027947426, + 0.007446899078786373, + -0.010929359123110771, + -0.03567994758486748, + -0.016726672649383545, + -0.003832064103335142, + 0.004639886319637299, + -0.015002412721514702, + 0.005980599671602249, + -0.03567994758486748, + -0.014853067696094513, + 0.001814205781556666, + -0.01934700272977352, + 0.0068155755288898945, + 0.015328256413340569, + -0.042223986238241196, + -0.0033161442261189222, + -0.0017717781011015177, + -0.02105768583714962, + 0.03106381930410862, + -0.002245270647108555, + -0.026651345193386078, + -0.030982358381152153, + 0.010433804243803024, + 0.0012304014526307583, + -0.008675603196024895, + 0.0024879565462470055, + 0.0012889516074210405, + -0.0004111237940378487, + -0.002864714013412595, + 0.0019550654105842113, + -0.013855169527232647, + -0.003044607350602746, + 0.011133012361824512, + -0.009659924544394016, + -0.024044590070843697, + 0.0050743455067276955, + 0.027153687551617622, + 0.018722467124462128, + 0.0025235959328711033, + 0.006146916188299656, + -0.021464990451931953, + 0.02986905723810196, + 0.0010886931559070945, + 0.02396312914788723, + 0.005359459202736616, + 0.022442523390054703, + -0.04502081498503685, + 0.013637939468026161, + -0.015871331095695496, + 0.021044109016656876, + -0.0028562285006046295, + 0.018383046612143517, + 0.0341593399643898, + 0.005145623814314604, + 0.027533840388059616, + -0.023297864943742752, + 0.01762274280190468, + 0.007107477635145187, + 0.0012414326192811131, + -0.006764662452042103, + 0.03994307667016983, + 0.02962467260658741, + 0.02169579640030861, + -0.006360751576721668, + -0.01898042857646942, + -0.0017921434482559562, + -0.005427343305200338, + 0.04982701689004898, + -0.0192791186273098, + 0.009924672544002533, + 0.026203308254480362, + -0.001367018441669643, + 0.008485527709126472, + -0.003709872718900442, + 0.042006753385066986, + 0.010983666405081749, + -0.023243557661771774, + -0.017188284546136856, + 0.01750055141746998, + -0.0012287043500691652, + 0.0021383529528975487, + -0.005858408287167549, + -0.009483425877988338, + 0.0029886027332395315, + 0.0035197967663407326, + 0.007949242368340492, + 0.017894281074404716, + 0.0028613198082894087, + 0.026366230100393295, + 0.0061333393678069115, + 0.035761408507823944, + 0.013916265219449997, + 0.03467525914311409, + 0.031878430396318436, + 0.02610827051103115, + -0.006123156752437353, + 0.019265541806817055, + -0.012796175666153431, + 0.007317918818444014, + 0.03491964191198349, + -0.012836906127631664, + -0.018898967653512955, + -0.010182633064687252, + 0.0009037086856551468, + -0.025755273178219795, + -0.01664520986378193, + 0.010705341584980488, + 0.0017717781011015177, + 0.019061889499425888, + -0.00343154720030725, + 0.0026322107296437025, + 0.001672497484833002, + 0.003967832773923874, + 0.014717298559844494, + 0.021994486451148987, + 0.0029190215282142162, + 0.0032160149421542883, + 0.0074061681516468525, + -0.03168835490942001, + -0.014445762149989605, + 0.0039542559534311295, + -0.013339249417185783, + -0.006323414854705334, + 0.0013636242365464568, + -0.010942935943603516, + 0.015083873644471169, + 0.015192488208413124, + -0.005383218638598919, + -0.005858408287167549, + 0.029434597119688988, + 0.024723432958126068, + 0.011513163335621357, + 0.002540566958487034, + -0.024981392547488213, + -0.0014603593153879046, + 0.03231288865208626, + -0.020514611154794693, + -0.011832219548523426, + -0.008926775306463242, + 0.01986292190849781, + -0.023270711302757263, + -0.0007649703184142709, + -0.007704859133809805, + 0.007922088727355003, + -0.006129945162683725, + 0.009605617262423038, + 0.010338766500353813, + -0.024506203830242157, + 0.029706135392189026, + -0.005240661557763815, + -0.007867781445384026, + -0.0036861130502074957, + 0.009741385467350483, + -0.01793501153588295, + -0.006004359107464552, + -0.010067230090498924, + 0.023420056328177452, + -0.016563748940825462, + -0.013590420596301556, + -0.021967332810163498, + 0.010725706815719604, + -0.03535410016775131, + 0.0041375430300831795, + 0.002121381927281618, + -0.0063166264444589615, + -0.0031549190171062946, + 0.004229187034070492, + -0.006248742341995239, + 0.00925940740853548, + -0.002414981136098504, + 0.03369772806763649, + 0.001552851521410048, + -0.02530723623931408, + -0.0003377239918336272, + 0.0026865180116146803, + 0.006964921019971371, + 0.029896210879087448, + 0.027004342526197433, + 0.007073535583913326, + 0.01781282015144825, + -0.00824793241918087, + -0.022904135286808014, + -0.006537250243127346, + -0.027533840388059616, + 0.009401964023709297, + 0.015015989542007446, + 0.005057374481111765, + -0.00982284639030695, + 0.019700000062584877, + -0.029217367991805077, + 0.02613542415201664, + -0.008716333657503128, + 0.01722901500761509, + 0.0050437976606190205, + 0.04336443915963173, + -0.019089043140411377, + -0.017364783212542534, + -0.017554858699440956, + -0.009605617262423038, + 0.029977671802043915, + 0.0037200553342700005, + -0.017921434715390205, + 0.0170796699821949, + 0.019333425909280777, + 0.01839662343263626, + 0.0008434614283032715, + 0.011655720882117748, + 0.013495382852852345, + 0.02274121344089508, + 0.014948105439543724, + -0.014866644516587257, + -0.00979569274932146, + -0.014880221337080002, + -0.005797312129288912, + 0.027832530438899994, + 0.017215438187122345, + 0.009096485562622547, + 0.027167264372110367, + -0.001814205781556666, + -0.012375293299555779, + 0.0076709166169166565, + -0.012870848178863525, + -0.012599310837686062, + 0.014500069431960583, + -0.0021655065938830376, + -0.013929842039942741, + 0.020650379359722137, + -0.013807650655508041, + -0.0013296821853145957, + -0.01781282015144825, + -0.001125180977396667, + -0.01803004927933216, + -0.002117987722158432, + -0.03033066913485527, + -0.015898484736680984, + -0.012015506625175476, + 0.0061333393678069115, + -0.025320813059806824, + 0.01505672000348568, + -0.013271365314722061, + -0.036195866763591766, + -0.0289186779409647, + -0.023243557661771774, + -0.0009308623848482966, + -0.021614335477352142, + 0.01808435656130314, + 0.013590420596301556, + -0.009843211621046066, + -0.02818552777171135, + -0.01143170241266489, + 0.004694193601608276, + -0.019903652369976044, + 0.015382564626634121, + -0.015559063293039799, + -0.004592367447912693, + 0.03394211083650589, + -0.022483253851532936, + 0.013692246749997139, + -0.01793501153588295, + -0.034783873707056046, + -0.00620461767539382, + 0.025239352136850357, + -0.018627429381012917, + 0.00022465434449259192, + 0.004181668162345886, + 0.009843211621046066, + 0.023026326671242714, + 0.0009189826087094843, + -0.0007883054786361754, + -0.02491350844502449, + 0.01866815984249115, + 0.0028511371929198503, + 0.020460303872823715, + 0.023365749046206474, + 0.013427498750388622, + -0.0014679962769150734, + 0.011567470617592335, + -0.020894762128591537, + -0.0016572235617786646, + -0.023420056328177452, + 0.014812336303293705, + -0.015599793754518032, + -0.014133494347333908, + 0.005128652788698673, + 0.01876319758594036, + 0.009985769167542458, + 0.004459993448108435, + -0.009313714690506458, + -0.012436388991773129, + 0.0018057202687487006, + -0.027859684079885483, + 0.02735733985900879, + 0.007385802920907736, + 0.015898484736680984, + 0.017310475930571556, + 0.00304121314547956, + -0.0006135036237537861, + -0.02206237055361271, + 0.03540840744972229, + 0.011472432874143124, + -0.00626571336761117, + 0.044912200421094894, + -0.02169579640030861, + -0.015436871908605099, + -0.033534806221723557, + 0.017799241468310356, + 0.017486974596977234, + 0.020460303872823715, + 0.002382736187428236, + -0.020433150231838226, + -0.041517987847328186, + -0.02120703086256981, + 0.008526258170604706, + 0.004700982011854649, + -0.015464025549590588, + -0.018953274935483932, + -0.005821072030812502, + 0.028049759566783905, + -0.01961853913962841, + 0.0026627585757523775, + -0.012965885922312737, + -0.026434114202857018, + -0.01433714758604765, + 0.005841437261551619, + -0.01664520986378193, + 0.044233355671167374, + -0.0030242418870329857, + -0.003239774378016591, + -0.022972019389271736, + 0.007317918818444014, + -0.022442523390054703, + -0.04884948581457138, + 0.014269262552261353, + -0.011384183540940285, + 0.0272079948335886, + 0.017242591828107834, + 0.018125087022781372, + -0.005305151920765638, + 0.02271405979990959, + 0.00314134219661355, + -0.00495894206687808, + 0.005620813462883234, + -0.029461750760674477, + -0.009809269569814205, + -0.01705251634120941, + 0.01922481134533882, + 0.008451585657894611, + -0.004208821803331375, + 0.014445762149989605, + 0.032367195934057236, + 0.006401482038199902, + 0.03005913272500038, + -0.012273467145860195, + -0.016685940325260162, + -0.013339249417185783, + -0.034295108169317245, + -0.008886043913662434, + -0.012483907863497734, + 0.029923364520072937, + -0.0011133012594655156, + -0.026637768372893333, + -0.0012176731834188104, + 0.018260855227708817, + -0.02418035827577114, + -0.01735120639204979, + -0.010888628661632538, + 0.026298345997929573, + -0.04735603183507919, + 0.032421503216028214, + 0.01674024946987629, + -0.0026983977295458317, + -0.018749620765447617, + 0.0034128790721297264, + -0.03008628636598587, + -0.017758511006832123, + 0.02008015289902687, + -0.00887246709316969, + 0.006673018913716078, + 0.012599310837686062, + -0.015518332831561565, + 0.009239042177796364, + -0.016848864033818245, + 0.002343702595680952, + -0.010542419739067554, + -0.003916919697076082, + -0.012721503153443336, + -0.017310475930571556, + -0.0341593399643898, + -0.003658959409222007, + -0.016387250274419785, + 0.013889111578464508, + 0.009096485562622547, + 0.007562302052974701, + 0.014690144918859005, + -0.020786147564649582, + -0.010922570712864399, + -0.012103755958378315, + -0.0065813749097287655, + -0.0007849112735129893, + 0.01759558916091919, + 0.03109097294509411, + 0.025931771844625473, + -0.004181668162345886, + -0.006007753312587738, + -0.050424396991729736, + 0.03054789826273918, + 0.0008952231728471816, + 0.021003376692533493, + 0.011302722617983818, + -0.01674024946987629, + -0.015613370575010777, + 0.019170504063367844, + 0.005586871411651373, + 0.001848147832788527, + -0.0031956497114151716, + 0.04097491502761841, + 0.03323611244559288, + 0.008220778778195381, + -0.01603425294160843, + -0.006062060594558716, + 0.01005365327000618, + -0.010277670808136463, + -0.01202908344566822, + 0.007698070723563433, + -0.022822674363851547, + -1.0785900485643651e-05, + 0.01228704396635294, + 0.0380694717168808, + -0.004229187034070492, + 0.022415369749069214, + 0.017826396971940994, + -0.014866644516587257, + 0.011051550507545471, + -0.020188767462968826, + -0.004731530323624611, + 0.01467656809836626, + -0.01612929068505764, + 0.03516402468085289, + -0.01035913173109293, + -0.017758511006832123, + 0.020582495257258415, + 0.016292212530970573, + -0.016441557556390762, + -0.011648932471871376, + 0.004297071136534214, + 0.022876981645822525, + -0.007555513642728329, + -0.0031141885556280613, + 0.0037777568213641644, + -0.010718918405473232, + 0.001815902884118259, + -0.027140110731124878, + 0.004161302465945482, + -0.004548242781311274, + -0.00985678844153881, + -0.010155479423701763, + 0.001567276893183589, + 0.002513413317501545, + -0.0027611905243247747, + 0.0002681426703929901, + -0.011608202010393143, + -0.007270399946719408, + 0.013929842039942741, + -0.02420751191675663, + 0.021437836810946465, + -0.03500110283493996, + -0.034077879041433334, + 0.002255453262478113, + -0.016020676121115685, + 0.01133666466921568, + -0.01686244085431099, + -0.012646829709410667, + -0.009850000031292439, + 0.02313494123518467, + -0.029000138863921165, + 0.025605928152799606, + 0.02240179292857647, + -0.015355410054326057, + -0.01493452861905098, + 0.005963628645986319, + 0.006252136547118425, + 0.00018169636314269155, + 0.012402446940541267, + 0.012938732281327248, + -0.005943263415247202, + 0.0048808753490448, + -0.006146916188299656, + 0.009123639203608036, + -0.018926121294498444, + -9.514397970633581e-05, + 0.008709545247256756, + 0.004212216008454561, + 0.014255685731768608, + -0.006866488605737686, + -0.013026981614530087, + 0.033670574426651, + 0.009965403005480766, + 0.016170021146535873, + 0.016305789351463318, + -0.016170021146535873, + 0.01805720292031765, + 0.025700965896248817, + -0.014242108911275864, + -0.010250517167150974, + -0.026732806116342545, + -0.012796175666153431, + 0.022972019389271736, + 0.006038301158696413, + -0.031905584037303925, + -0.010427015833556652, + -0.017242591828107834, + -0.020215921103954315, + -0.00355713302269578, + 0.00688685430213809, + 0.004504118114709854, + 0.0017666867934167385, + 0.023053480312228203, + 0.007860993035137653, + 0.028945831581950188, + 0.025660235434770584, + 0.0125653687864542, + -0.0196456927806139, + 0.01366509310901165, + -0.009422329254448414, + -0.01729689911007881, + 0.00794245395809412, + -0.0023725535720586777, + 0.02271405979990959, + 0.0055732945911586285, + -0.025456583127379417, + -0.008254720829427242, + 0.02369159273803234, + -0.01820654794573784, + -0.0009325594874098897, + 0.007440110668540001, + 0.0056649381294846535, + 0.01433714758604765, + 0.018600275740027428, + 0.00812574103474617, + 0.03185127675533295, + 0.006415058858692646, + 0.022931288927793503, + -0.019197657704353333, + -0.011390971951186657, + 0.004151119850575924, + 0.00283416616730392, + 0.0050437976606190205, + -0.01410634070634842, + -0.05800027772784233, + -0.002547355368733406, + 0.0264748465269804, + 0.012545003555715084, + 0.015871331095695496, + 0.023311441764235497, + -0.0011693056439980865, + -0.020487457513809204, + 0.014853067696094513, + 0.0011438491055741906, + -0.0016054618172347546, + -0.013590420596301556, + 0.028728602454066277, + -0.035272639244794846, + -0.009306926280260086, + 0.0026203307788819075, + 0.02164148911833763, + -0.016536595299839973, + -0.01688959449529648, + 0.024533357471227646, + 0.002145141363143921, + 0.004140937235206366, + 0.018871812149882317, + -0.002050103386864066, + 0.016387250274419785, + -0.0025015335995703936, + 0.010284459218382835, + -0.009361233562231064, + -0.02845706418156624, + -0.007385802920907736, + -0.0016801344463601708, + -0.007290765177458525, + -0.007596244104206562, + 0.00369968987070024, + -0.027072226628661156, + -0.00040327469469048083, + 0.014160647988319397, + -0.0269636120647192, + 0.0170796699821949, + -0.019686423242092133, + 0.010508476756513119, + -0.0007055716123431921, + -0.0072839767672121525, + -0.0400245375931263, + -0.010162267833948135, + -0.03329041972756386, + 0.031389664858579636, + 0.007657339796423912, + -0.030140593647956848, + -0.004782443400472403, + 0.005077739711850882, + -0.03035782277584076, + -0.004999672994017601, + -0.024967815726995468, + 0.0016402524197474122, + -0.03201419860124588, + -0.010467746295034885, + -0.004364955238997936, + -0.013502171263098717, + -0.005359459202736616, + 0.007820261642336845, + -0.00824793241918087, + -0.0344037227332592, + -0.01854596845805645, + 0.1827986240386963, + -0.03386064991354942, + 0.0046059442684054375, + 0.004273311700671911, + -0.008241144008934498, + -0.026149000972509384, + 0.050207167863845825, + -0.010352343320846558, + 0.011105858720839024, + 0.020826878026127815, + 0.02386809140443802, + 0.004215610213577747, + -0.010264093987643719, + 0.00765055138617754, + 0.014975259080529213, + -0.007446899078786373, + -0.043228670954704285, + -0.01888539083302021, + -0.010881840251386166, + 0.03223142772912979, + 0.016998209059238434, + -0.018613852560520172, + -0.005379824433475733, + -0.017242591828107834, + 0.025456583127379417, + 0.016292212530970573, + 0.016916748136281967, + 0.013889111578464508, + 0.015708409249782562, + 0.01622432842850685, + -0.031145280227065086, + -0.010746072046458721, + 0.017364783212542534, + -0.005349276587367058, + 0.003402696456760168, + -0.0051354411989450455, + 0.006791816093027592, + -0.009809269569814205, + 0.015654101967811584, + 0.020365266129374504, + 0.019197657704353333, + -0.02840275689959526, + -0.028239835053682327, + -0.03209565952420235, + -0.0057565816678106785, + 0.007657339796423912, + -0.002279212698340416, + 0.004246158059686422, + -0.004120572004467249, + 0.0003619077324401587, + -0.01505672000348568, + 0.029081599786877632, + 0.028348449617624283, + 0.045889731496572495, + 0.010223363526165485, + -0.020541764795780182, + -0.013115230947732925, + -0.0006139278993941844, + 0.025958925485610962, + -0.0021638094913214445, + -0.032910268753767014, + 0.020487457513809204, + -0.031172433868050575, + 0.023460786789655685, + -0.026895727962255478, + 0.007759166415780783, + -0.017894281074404716, + -0.012673983350396156, + -0.006710355170071125, + -0.02555162087082863, + -0.008675603196024895, + -0.021750103682279587, + -0.020283805206418037, + 0.005766764283180237, + -0.017514128237962723, + -0.03749924153089523, + 0.007657339796423912, + -0.00593647500500083, + 0.021722950041294098, + 0.0373363196849823, + 0.0024234666489064693, + 0.0026559701655060053, + -0.02025665156543255, + -0.013332461006939411, + -0.0036114405374974012, + -0.029543211683630943, + 0.028782909736037254, + 0.014377878047525883, + 0.018966851755976677, + -0.028321295976638794, + -0.03844962269067764, + -0.007419745437800884, + 0.00036572624230757356, + -0.003828669898211956, + -0.0029919969383627176, + -0.005759975872933865, + 0.01133666466921568, + 0.0033229326363652945, + -0.0040764473378658295, + -0.000156982263433747, + -0.021220607683062553, + 0.06408270448446274, + 0.02984190359711647, + -0.0056343902833759785, + -0.02635265327990055, + 0.005379824433475733, + -0.0005384067189879715, + 0.030710820108652115, + 0.0010505083482712507, + -0.01389589998871088, + -0.023420056328177452, + -0.017269745469093323, + 0.015097450464963913, + -0.027140110731124878, + 0.003239774378016591, + 0.009788904339075089, + -0.002077257027849555, + -0.011241626925766468, + 0.018125087022781372, + -0.011343453079462051, + 0.0075487252324819565, + -0.008913198485970497, + 0.01151995174586773, + 0.008648449555039406, + 0.009897518903017044, + -0.03179696947336197, + -0.03535410016775131, + 0.029488904401659966, + -0.006873277015984058, + 0.01199514139443636, + 0.01065103430300951, + -0.0005188899813219905, + 0.012877636589109898, + -0.011696451343595982, + 0.01649586483836174, + -0.0019211233593523502, + -0.0036861130502074957, + -0.030982358381152153, + -0.013434287160634995, + 0.0015638826880604029, + 0.01430999394506216, + 0.00044591445475816727, + -0.0024608029052615166, + -0.008336181752383709, + 0.00818683672696352, + -0.012606099247932434, + 0.026434114202857018, + -0.006136733572930098, + -0.018858235329389572, + -0.01898042857646942, + -0.01854596845805645, + 0.003733632154762745, + 0.012273467145860195, + -0.03497394919395447, + 0.00436156103387475, + -0.0025948742404580116, + -0.037227705121040344, + -0.029733289033174515, + 0.0036793246399611235, + 0.01671309396624565, + -0.032883115112781525, + -0.006330203264951706, + 0.015233218669891357, + -0.03543556109070778, + -0.009564886800944805, + -0.0097617506980896, + -0.17367498576641083, + 0.014092763885855675, + 0.008553411811590195, + -0.005413766484707594, + 0.007745589595288038, + 0.01202908344566822, + 0.01600709930062294, + 0.010915782302618027, + -0.006174069829285145, + -0.013244211673736572, + 0.004639886319637299, + 0.0028171951416879892, + -0.02074541710317135, + -0.02576884999871254, + -0.01591206155717373, + 0.008349758572876453, + -0.0033280239440500736, + 0.02032453566789627, + 0.025022123008966446, + 0.010270882397890091, + 0.006197829265147448, + -0.014540799893438816, + 0.01735120639204979, + -0.018369469791650772, + 0.0016283727018162608, + 0.01854596845805645, + -0.017731357365846634, + 0.019170504063367844, + -0.010338766500353813, + -0.013766920194029808, + -0.016672363504767418, + -0.0013644727878272533, + 0.009598828852176666, + -0.0022944866213947535, + -0.012354928068816662, + -0.010399862192571163, + -0.0035197967663407326, + -0.001386535237543285, + -0.0029037476051598787, + 0.04388035833835602, + -0.0038049104623496532, + 0.04808918014168739, + 0.0034587010741233826, + 0.0075487252324819565, + -0.011574259027838707, + 0.040051691234111786, + 0.018247278407216072, + -0.03033066913485527, + -0.008967505767941475, + -0.022211717441678047, + -0.004005169030278921, + -0.027099380269646645, + -0.012612887658178806, + 0.020677533000707626, + -0.0005719245527870953, + 0.013162749819457531, + -0.008234355598688126, + 0.006764662452042103, + -0.0020636802073568106, + 0.01505672000348568, + -0.019781460985541344, + -0.0198900755494833, + 0.01517891138792038, + -0.014771605841815472, + -0.019292695447802544, + -0.011710028164088726, + -0.007379014510661364, + 0.012931943871080875, + -0.008424432016909122, + -0.006571192294359207, + -0.004578790627419949, + -0.025605928152799606, + 0.007250034715980291, + -0.025605928152799606, + 0.0025524466764181852, + 0.00694794999435544, + 0.010399862192571163, + -0.004863904323428869, + 0.00680199870839715, + -0.005590265616774559, + -0.03231288865208626, + 0.0375807024538517, + 0.003794727846980095, + -0.01048132311552763, + -0.017799241468310356, + -0.006017935927957296, + -0.01949634775519371, + 0.014948105439543724, + -0.02056891843676567, + 0.010427015833556652, + 0.014214955270290375, + -0.025836734101176262, + 0.001010626321658492, + -0.036195866763591766, + -0.001275374786928296, + -0.0001367230579489842, + -0.004290282726287842, + 0.007433322258293629, + -0.004385320469737053, + 0.006174069829285145, + 0.016197174787521362, + -0.024560511112213135, + -0.024384012445807457, + 0.01395699568092823, + 0.008166471496224403, + 0.017649896442890167, + -0.025117160752415657, + 0.005030220840126276, + 0.03301888331770897, + -0.0038049104623496532, + 0.003506219945847988, + -0.003899948438629508, + 0.018043626099824905, + 0.01717470772564411, + 0.01259252242743969, + 0.0189125444740057, + -0.018871812149882317, + -0.014486492611467838, + 0.016780979931354523, + 0.011798277497291565, + 0.04062191769480705, + -0.020799724385142326, + -0.008166471496224403, + 0.009666712954640388, + -0.004887663759291172, + -0.033833496272563934, + -0.08748918026685715, + -0.0031939526088535786, + 0.024275396019220352, + 0.018138663843274117, + -0.0017582012806087732, + 0.029570365324616432, + -0.0004219428519718349, + 0.003866006387397647, + -0.013461440801620483, + 0.03307319059967995, + -0.004996278788894415, + -0.033806342631578445, + -0.02093549259006977, + -0.008709545247256756, + 0.034539490938186646, + 0.001433205557987094, + -0.00746726430952549, + -0.022089524194598198, + -0.036005791276693344, + 0.023582978174090385, + 0.003567315638065338, + -0.008695968426764011, + 0.007107477635145187, + -0.008315816521644592, + -0.023311441764235497, + -0.009972191415727139, + -0.042522676289081573, + 0.005420554894953966, + 0.012918367050588131, + -0.020310958847403526, + 0.02157360501587391, + -0.01288442499935627, + -0.0036827188450843096, + -0.011696451343595982, + -0.017391936853528023, + 0.0026339078322052956, + -0.02096264623105526, + -0.013305307365953922, + 0.02096264623105526, + -0.035299792885780334, + -0.009150792844593525, + 0.00562420766800642, + -0.005705668590962887, + -0.013624362647533417, + -0.0012906487099826336, + -0.038123778998851776, + -0.008112164214253426, + 0.01250427309423685, + 0.004992884583771229, + 0.00440568570047617, + -0.018939698114991188, + -0.03209565952420235, + -0.015002412721514702, + -0.010209786705672741, + 0.031634047627449036, + -0.0008078222163021564, + -0.004928394220769405, + 0.004123966209590435, + -0.012069813907146454, + -0.003866006387397647, + -0.01747339777648449, + 0.02276836708188057, + -0.03535410016775131, + 0.01211733277887106, + 0.002014464233070612, + -0.012959097512066364, + -0.01934700272977352, + -0.0023267315700650215, + 0.0250085461884737, + 0.007134631276130676, + -0.012694349512457848, + 0.0030242418870329857, + -0.004633097909390926, + 0.0169574785977602, + -0.02776464633643627, + 0.01130951102823019, + -0.05468752607703209, + -0.011404548771679401, + -0.0028222864493727684, + -0.00554614095017314, + -0.0033500862773507833, + -0.030982358381152153, + 0.02623046189546585, + -0.025334389880299568, + 0.0383138544857502, + 0.034783873707056046, + -0.010725706815719604, + 0.004246158059686422, + 0.025605928152799606, + -0.021139146760106087, + 0.011302722617983818, + 0.024899931624531746, + 0.015871331095695496, + -0.006004359107464552, + -0.008383701555430889, + 0.023284288123250008, + -0.0014518738025799394, + -0.009449483826756477, + 0.010854686610400677, + 0.019917229190468788, + -0.035544175654649734, + -0.026773536577820778, + -0.0646800845861435, + 0.02222529426217079, + 0.03950861468911171, + -0.015776293352246284, + -0.02181798778474331, + 0.0055223810486495495, + -0.013712611980736256, + 0.021750103682279587, + 0.04208821803331375, + 0.0049012405797839165, + -0.02813122048974037, + 0.0018209941918030381, + 0.0003071760875172913, + -0.0013347734929993749, + -0.015382564626634121, + -0.02754741720855236, + 0.011031185276806355, + 0.01827443204820156, + 0.01597994565963745, + -0.002711974550038576, + -0.009334079921245575, + -0.0076709166169166565, + -0.009524156339466572, + 0.029516058042645454, + -0.021750103682279587, + 0.00973459705710411, + 0.005366247612982988, + -0.016455134376883507, + 0.0038422467187047005, + 0.010352343320846558, + -0.002474379725754261, + -0.012714714743196964, + -0.01774493418633938, + 0.014296416193246841, + -0.015246795490384102, + -0.021030530333518982, + 0.0011752455029636621, + 0.02579600363969803, + 0.005084528122097254, + 0.04578111693263054, + -0.017310475930571556, + -0.02181798778474331, + -0.01517891138792038, + -0.02598607912659645, + -0.015681255608797073, + 0.0026899122167378664, + 0.029543211683630943, + 0.018736043944954872, + 0.01845093071460724, + -0.008512681350111961, + 0.03657601773738861, + 0.017948588356375694, + 0.017337629571557045, + -0.015219641849398613, + 0.004008563235402107, + 0.01527394913136959, + -0.004561819601804018, + 0.001173548400402069, + 0.013726188801229, + -0.033670574426651, + 0.04263129085302353, + 0.004656857345253229, + 0.019387733191251755, + -0.0016037647146731615, + -0.0020008874125778675, + -0.008159683085978031, + -0.025687389075756073, + -0.01783997379243374, + -0.010970089584589005, + -0.004429445136338472, + -0.00752836000174284, + 0.005858408287167549, + 0.010433804243803024, + 0.026827843859791756, + -0.007711647544056177, + -0.009449483826756477, + -4.301101580495015e-05, + -0.0022367851343005896, + -0.02132922224700451, + 0.016115713864564896, + 0.008356546983122826, + 0.022075947374105453, + -0.002737431088462472, + 0.004164696671068668, + 0.02552446722984314, + 0.0024200724437832832, + -0.01881750486791134, + 0.016387250274419785, + 0.009435906074941158, + 0.007793108467012644, + -0.009775327518582344, + 0.015368986874818802, + -0.008499104529619217, + 0.003994986414909363, + 0.01065103430300951, + 0.011777912266552448, + 0.005644572898745537, + -0.009530944749712944, + 0.03372488170862198, + 0.028755756095051765, + 0.009449483826756477, + 0.005736216437071562, + -0.017364783212542534, + -0.01793501153588295, + -0.013033770024776459, + 0.02981474995613098, + -0.011166954413056374, + -0.01934700272977352, + -0.0008935260120779276, + 0.024967815726995468, + -0.014364301227033138, + 0.010902205482125282, + -0.0024930478539317846, + 0.005841437261551619, + -0.014052033424377441, + 0.009340868331491947, + -0.017799241468310356, + -0.01479875948280096, + -0.019998691976070404, + 0.0317155085504055, + 0.020487457513809204, + 0.003563921432942152, + -0.0004531271697487682, + 0.003940679132938385, + 0.024044590070843697, + -0.011010820046067238, + 0.013529324904084206, + -0.022809097543358803, + 0.006455789320170879, + -0.015111027285456657, + -0.007535148411989212, + 0.003241471480578184, + -0.017921434715390205, + -0.004677222575992346, + -0.02215741015970707, + 0.008051068522036076, + 0.017188284546136856, + 0.005485044792294502, + 0.012096967548131943, + 0.11730393022298813, + 0.04113783687353134, + -0.02286340482532978, + 0.03500110283493996, + -0.005060768686234951, + 0.01805720292031765, + 0.010746072046458721, + 0.009435906074941158, + 0.013855169527232647, + -0.04341874644160271, + 0.016685940325260162, + 0.0009444392053410411, + 0.013332461006939411, + -0.02240179292857647, + -0.0002876593789551407, + 0.004083235748112202, + 0.008763852529227734, + 0.021777257323265076, + -0.02540227584540844, + -0.02681426703929901, + 0.02625761553645134, + -0.013651516288518906, + -0.0072228810749948025, + 0.025049276649951935, + -0.028239835053682327, + -0.013339249417185783, + 0.009653136134147644, + 0.0006474457331933081, + 0.002947872271761298, + -0.031905584037303925, + -0.020039422437548637, + 0.00132374232634902, + -0.05449745059013367, + -0.029190214350819588, + 0.024899931624531746, + -0.03204135224223137, + -0.013780497014522552, + -0.008791006170213223, + 0.01803004927933216, + 0.0006342931883409619, + 0.011377395130693913, + 0.02757457084953785, + -0.00862808432430029, + -0.035707101225852966, + 0.009598828852176666, + -0.004079841542989016, + -0.009245830588042736, + -0.001025051693432033, + -0.012918367050588131 + ], + "metadata": { + "source": "Thesis_Verladegeraeusche_in_Speditionen.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 41, + "has_images": true, + "image_count": 51, + "coordinates": "CoordinatesMetadata(points=((204.16666666666666, 189.02777777777797), (204.16666666666666, 642.3611111111111), (936.1666666666666, 642.3611111111111), (936.1666666666666, 189.02777777777797)), system=)", + "links": [], + "last_modified": "2025-05-05T22:59:16", + "_known_field_names": "frozenset({'cc_recipient', 'link_texts', 'url', 'filetype', 'category_depth', 'page_number', 'filename', 'orig_elements', 'detection_origin', 'email_message_id', 'page_name', 'coordinates', 'table_as_cells', 'link_start_indexes', 'sent_to', 'bcc_recipient', 'languages', 'last_modified', 'link_urls', 'file_directory', 'subject', 'data_source', 'detection_class_prob', 'image_base64', 'text_as_html', 'attached_to_filename', 'key_value_pairs', 'signature', 'sent_from', 'header_footer_type', 'parent_id', 'links', 'emphasized_text_contents', 'emphasized_text_tags', 'image_mime_type', 'is_continuation', 'image_path'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "Thesis_Verladegeraeusche_in_Speditionen.pdf", + "detection_class_prob": 0.2568194270133972, + "parent_id": "d45475a34bc527cde6987546fa6dd2f5", + "text_as_html": "
Flurf\u00f6rderger\u00e4t |Anzahl Einzelereignisse ElMax-PegelSchallleistungspegel
LAFmaxLWA,5sLWAmaxLWA,1hKlLWAT,1h
[dB(A)][dB(A)][dB(A)][dB(A)][dB(A)][dB(A)]
Gabelstapler29769,3100,7108,872,15,777,8
STABW [dB]6,54,96,54,92,9-
Gabelhubwagen9968,6100,7108,172,16,279,5
STABW [dB]6,45,16,4512,7-
", + "id": "5ba44de7-0ff3-4c0c-b018-67e92171e1c2", + "processing_timestamp": "2025-05-06T14:18:19.298665", + "chunk_number": 41, + "total_chunks": 49, + "chunking_strategy": "hybrid", + "word_count": 209 + } +} \ No newline at end of file diff --git a/data/processed/85fd305f-83de-70b0-47e8-2dc000000042.json b/data/processed/85fd305f-83de-70b0-47e8-2dc000000042.json new file mode 100644 index 0000000000000000000000000000000000000000..3b39107851a38408d4110b995d12a2934bde2afc --- /dev/null +++ b/data/processed/85fd305f-83de-70b0-47e8-2dc000000042.json @@ -0,0 +1,1570 @@ +{ + "id": "85fd305f-83de-70b0-47e8-2dc000000042", + "content": "Springer-Verlag Berlin Heidelberg, Berlin, 2009. - [22] fairaudio: Punktschallquelle - akustische Idealvorstellung | Lexikon fairaudio, 2020, https://www.fairaudio.de/lexikon/punktschallquelle/ [Zugriff am: 14.04.2023]. - [23] Br\u00fcel & Kj\u00e6r: Was sind Schallleistung und Schalldruck?, 2023, https://www.bksv.com/de/knowledge/blog/sound/sound-power-sound-pressure [Zugriff am: 06.04.2023]. ## II\n\nAbschlie\u00dfende Bewertung und Ausblick\n- [24] IMV CORPORATION: Schallleistung und Schalldruck \u2013 Schall in Aktion - IMV COR- PORATION, 2023, https://we-are-imv.com/de/news/topics/item/47939/ [Zugriff am: 16.05.2023]. - [25] DIN EN ISO 3740: Bestimmung Schallleistungspegel. Ausgabe Januar 2019. - [26] DIN EN ISO 3741: Bestimmung der Schallleistungs- und Schallenergiepegel von Ge- r\u00e4uschquellen aus Schalldruckmessungen. Ausgabe Januar 2011. - [27] DIN EN ISO 3743-1: Bestimmung der Schallleistungs- und Schallenergiepegel von Ger\u00e4uschquellen aus Schalldruckmessungen. Ausgabe Januar 2011. - [28] DIN EN ISO 3743-2: Bestimmung Schallleistungspegel. Ausgabe November 2022. - [29] DIN EN ISO 3744: Bestimmung der Schallleistungs- und Schallenergiepegel von Ge- r\u00e4uschquellen aus Schalldruckmessunge. Ausgabe Februar 2011. - [30] DIN EN ISO 3746: Bestimmung der Schallleistungs- und Schallenergiepegel von Ge- r\u00e4uschquellen aus Schalldruckmessungen. Ausgabe M\u00e4rz 2011. - [31] DIN EN ISO 3747: Bestimmung der Schallleistungs- und Schallenergiepegel von Ge- r\u00e4uschquellen aus Schalldruckmessungen. Ausgabe M\u00e4rz 2011. - [32] DIN EN ISO 9614-1: Akustik \u2013 Bestimmung der Schallleistungspegel von Ger\u00e4usch- quellen aus Schallintensit\u00e4tsmessungen \u2013 Teil 1: Messungen an diskreten Punk- ten. Ausgabe 2009. - [33] DIN EN ISO 9614-2: Bestimmung der Schalleistungspegel von Ger\u00e4uschquellen aus Schallintensit\u00e4tsmessungen Teil 2; Messung mit kontinuierlicher Abtastung. Aus- gabe 1996. - [34] DIN EN ISO 9614-3: Akustik \u2013Bestimmung der Schallleistungspegel von Ger\u00e4usch- quellen aus Schallintensit\u00e4tsmessungen \u2013 Teil 3: Scanning-Verfahren der Genauig- keitsklasse 1. Ausgabe 2009. - [35] ISO/TS 7849-2: Acoustics \u2014 Determination of airborne sound power levels emit- ted by machinery using vibration measurement \u2014 Part 2: Engineering method in- cluding determination of the adequate radiation factor.", + "embedding": [ + 0.02448982745409012, + 0.008137278258800507, + 0.015650611370801926, + -0.028363484889268875, + 0.013778777793049812, + 0.01723647117614746, + -0.021110128611326218, + -0.01093852985650301, + -0.009430663660168648, + -0.029871350154280663, + 0.030781270936131477, + 0.022799978032708168, + -0.0036559258587658405, + 0.008689729496836662, + -0.005589504260569811, + 0.015026667155325413, + 0.029117418453097343, + -0.0028353736270219088, + 0.013024845160543919, + -0.00601846631616354, + 3.5061344533460215e-05, + 0.019407279789447784, + -0.020122215151786804, + 0.005654498469084501, + -0.007467837538570166, + 0.016820508986711502, + 0.023800889030098915, + -0.029091419652104378, + -0.01093852985650301, + 0.009814130142331123, + 0.010698051191866398, + 0.013297820463776588, + -0.019836241379380226, + 0.01467569824308157, + -0.011555975303053856, + -0.0212401170283556, + -0.02513977140188217, + -0.013187330216169357, + 0.011464983224868774, + -0.00359093165025115, + -0.008930208161473274, + 0.011620969511568546, + 0.004640588536858559, + -0.025958698242902756, + -0.00867673009634018, + 0.016989493742585182, + 0.02690761350095272, + 0.005342526361346245, + -0.003330954583361745, + 0.00859873741865158, + 0.028519470244646072, + 0.012589383870363235, + -0.018237382173538208, + 0.01106851827353239, + -0.0015988581581041217, + -0.018822330981492996, + 0.0027671295683830976, + 0.008696229197084904, + -0.005755239631980658, + -0.003912652842700481, + -0.031275227665901184, + -0.015052665024995804, + -0.017704429104924202, + 0.013141834177076817, + -0.028961431235074997, + -0.0010488445404917002, + -0.017392458394169807, + 0.006463676691055298, + -0.014857682399451733, + -0.003522687591612339, + 0.019420277327299118, + 0.029715364798903465, + 0.009242180734872818, + 0.011360992677509785, + 0.0321071520447731, + -0.008689729496836662, + 0.0073768459260463715, + -0.021513091400265694, + 0.004429357126355171, + 0.0005069550243206322, + 0.023410923779010773, + -0.014350727200508118, + -0.028987430036067963, + 0.021396102383732796, + 0.011809452436864376, + 0.006772399414330721, + -0.007123368326574564, + 0.024476829916238785, + -0.028571465983986855, + -0.011965438723564148, + 0.011497480794787407, + 0.014077751897275448, + -0.0051377941854298115, + 0.004156381357461214, + 0.026751628145575523, + 0.01706748642027378, + 0.007071373052895069, + 0.0168985016644001, + -0.008748224005103111, + -0.011607971042394638, + -0.013258824124932289, + -0.023371927440166473, + 0.007058374118059874, + -0.0005492012714967132, + -0.034316956996917725, + 0.003974397666752338, + 0.00863773375749588, + 0.03135322034358978, + 0.002148059429600835, + -0.0025656474754214287, + -0.018016401678323746, + -0.002066816668957472, + 0.011146511882543564, + -0.028155503794550896, + 0.03998445346951485, + -0.012680375948548317, + 0.01795140840113163, + -0.018523357808589935, + -0.028363484889268875, + -0.013583795167505741, + 0.024151857942342758, + 0.00774081377312541, + 0.013414810411632061, + -0.008735225535929203, + 0.02394387684762478, + 0.0010675303637981415, + -0.01994023099541664, + -0.024970784783363342, + -0.009684140793979168, + -0.01467569824308157, + -0.015338639728724957, + -0.0016882253112271428, + 0.03941250592470169, + 0.015988582745194435, + 0.008761223405599594, + 0.004699083510786295, + -0.01206293050199747, + -0.004526848439127207, + -0.022319020703434944, + -0.034446943551301956, + 0.01605357602238655, + 0.020681165158748627, + -0.03205515816807747, + -0.04853769391775131, + -0.0006215074099600315, + 0.03928251564502716, + 0.01480568666011095, + -0.002188680926337838, + 0.01601457968354225, + 0.027219586074352264, + -0.03338104113936424, + -0.027843531221151352, + 0.008208772167563438, + 0.02112312614917755, + -0.02555573359131813, + 0.005820233840495348, + 0.0030774769838899374, + 0.033641017973423004, + -0.007532832212746143, + 0.002801251597702503, + -0.023800889030098915, + 0.006268694065511227, + -0.0003105505893472582, + 0.0002871932811103761, + 0.015000669285655022, + 0.017054487019777298, + 0.00543676782399416, + -0.006161453668028116, + -0.0037371686194092035, + -0.0017938409000635147, + -0.010132601484656334, + 0.029585376381874084, + -0.0097166383638978, + 0.013297820463776588, + -0.008091782219707966, + 0.024593818932771683, + 0.016651524230837822, + 0.004926563240587711, + -0.009495657868683338, + -0.02922140806913376, + -0.01618356443941593, + 0.015260647051036358, + 0.02277398109436035, + 0.026387659832835197, + -0.015572618693113327, + 0.03137921914458275, + 0.017730427905917168, + 0.006229697726666927, + 0.0012007685145363212, + -0.012361903674900532, + 0.020005226135253906, + 0.009723138064146042, + 0.0013908767141401768, + -0.020915145054459572, + -0.6335118412971497, + -0.015741603448987007, + -0.0143637266010046, + -0.005527759902179241, + 0.00416938029229641, + 0.054335180670022964, + 0.015377636067569256, + -0.008910709992051125, + -0.004500851035118103, + 0.04887566715478897, + 0.007123368326574564, + -0.007721315138041973, + -0.021266113966703415, + 0.001519240322522819, + -0.006450677756220102, + -0.014688697643578053, + -0.0013364439364522696, + -0.017639435827732086, + 0.043104179203510284, + -0.002113937633112073, + -0.01210192684084177, + 0.017639435827732086, + 0.009320173412561417, + -0.013908766210079193, + -0.003261085832491517, + 0.015156655572354794, + 0.02065516822040081, + -0.02859746478497982, + 0.01355779729783535, + 0.0016012955456972122, + -0.022695986554026604, + 0.0076238238252699375, + -0.03176918253302574, + 0.022332020103931427, + 0.03969847783446312, + -0.0016289179911836982, + 0.011822451837360859, + 0.013700785115361214, + 0.008826217614114285, + 0.019836241379380226, + -0.02360590733587742, + -0.008754723705351353, + -0.01115301065146923, + 0.0023414173629134893, + -0.0003568589745555073, + 0.00833876058459282, + 0.05511511117219925, + 0.005160542204976082, + 0.01320032961666584, + -0.03205515816807747, + -0.01416874397546053, + -0.010724049061536789, + 0.03239312767982483, + 0.02277398109436035, + 0.011334994807839394, + -0.007662820629775524, + 0.04877167567610741, + -0.015273645520210266, + -0.027817532420158386, + 0.013700785115361214, + -0.0016191689064726233, + 0.005966471042484045, + 0.01235540397465229, + -0.01579359918832779, + -0.013044343329966068, + 0.026205675676465034, + -0.008910709992051125, + -0.021058132871985435, + 0.004588593263179064, + -0.012114925310015678, + -0.014428720809519291, + 0.021942054852843285, + 0.0005496075027622283, + -0.030885260552167892, + 0.017847416922450066, + 0.007396344095468521, + 0.0028873689007014036, + -0.014597705565392971, + 0.008579239249229431, + 0.011308996938169003, + -0.007493835408240557, + -0.008852214552462101, + 0.013596794568002224, + 0.0027850030455738306, + 0.019615260884165764, + -0.022163035348057747, + -0.011438985355198383, + 0.009846626780927181, + 0.011737959459424019, + 0.002999484073370695, + 0.024190854281187057, + 0.026179678738117218, + -0.009053696878254414, + -0.011731459759175777, + -0.01731446385383606, + 0.023332931101322174, + -0.018861327320337296, + -0.0063986824825406075, + 0.0007003128994256258, + -0.03785264492034912, + -0.018484361469745636, + -0.020369194447994232, + 0.0018117143772542477, + -0.022617993876338005, + 0.016287555918097496, + 0.004393610171973705, + -0.012498391792178154, + -0.0004346489440649748, + 0.03577282652258873, + -0.02187705971300602, + 0.017548443749547005, + -0.0036299279890954494, + -0.02445083111524582, + -0.004260372370481491, + 0.0007778997533023357, + -0.023709896951913834, + 0.041960280388593674, + -0.01349280308932066, + 0.01334981620311737, + -0.01710648275911808, + 0.014311730861663818, + -0.003971147816628218, + 0.05014955252408981, + -0.020772157236933708, + -0.029637372121214867, + 0.02082415297627449, + 0.01098402589559555, + 0.01184844970703125, + 0.0028759948909282684, + -0.010425075888633728, + 0.02779153548181057, + -0.010659054853022099, + 0.017262469977140427, + 0.0003288302104920149, + 0.01765243522822857, + 0.019797245040535927, + 0.02559472993016243, + -0.027193589136004448, + 0.01091903168708086, + -0.026517648249864578, + -0.03452493995428085, + 0.0006909699877724051, + -0.004851819947361946, + -0.03041730262339115, + -0.03340703621506691, + -0.037098709493875504, + -0.008052785880863667, + -0.00013445682998280972, + 0.019654257223010063, + -0.0018702091183513403, + -0.018510358408093452, + -0.02001822553575039, + -0.007948795333504677, + 0.026621639728546143, + -0.015871591866016388, + -0.013031343929469585, + -0.021565087139606476, + -0.023787889629602432, + -0.015195652842521667, + -0.022436009719967842, + 0.01887432672083378, + 0.009703639894723892, + -0.04848570004105568, + -0.014961672946810722, + 0.01349280308932066, + -0.025542734190821648, + 0.004494351334869862, + -0.00025611789897084236, + -0.018432365730404854, + -0.03488890454173088, + 0.006531920749694109, + 0.016521533951163292, + -0.009872624650597572, + 0.009762134402990341, + -0.011685963720083237, + -0.011016523465514183, + -0.006739902310073376, + -0.005839732009917498, + -0.008312762714922428, + -0.0051995390094816685, + 0.0389445461332798, + -0.006002217531204224, + -0.014350727200508118, + 0.008832716383039951, + 0.012127924710512161, + 0.014831684529781342, + 0.02039519138634205, + 0.019966229796409607, + -0.009625646285712719, + 0.014584707096219063, + 0.0074613383039832115, + 0.020031223073601723, + -0.02940339222550392, + 0.025191765278577805, + -0.05449116602540016, + -0.007415842264890671, + -0.019420277327299118, + -0.02669963240623474, + 0.004029642790555954, + 0.012940352782607079, + 0.0406343974173069, + -0.0034284458961337805, + 0.009092693217098713, + -0.031067244708538055, + 0.023709896951913834, + 0.0010659054387360811, + 0.002486029639840126, + -0.010275588370859623, + 0.042090266942977905, + 0.028311489149928093, + 0.020174210891127586, + -0.010347082279622555, + -0.011438985355198383, + -0.016144568100571632, + 0.0016175440978258848, + 0.04021843522787094, + 0.010132601484656334, + 0.006843892857432365, + 0.015741603448987007, + -0.00421487633138895, + 0.016781512647867203, + -0.0038281604647636414, + 0.03834659978747368, + 0.01093852985650301, + -0.009554152376949787, + 0.004478103015571833, + -0.010522566735744476, + 0.022955963388085365, + -0.000245962553890422, + -0.005186540074646473, + -0.012342405505478382, + -0.029195411130785942, + 0.03806062415242195, + -0.01081504113972187, + -0.0005638250149786472, + 0.024632815271615982, + 0.030885260552167892, + -0.011250502429902554, + 0.02437283843755722, + 0.02330693230032921, + 0.02580271102488041, + 0.015780599787831306, + 0.002880869433283806, + 0.007383345160633326, + 0.013713783584535122, + -0.022098040208220482, + -0.0014607454650104046, + 0.03109324350953102, + -0.024593818932771683, + -0.012407399713993073, + -0.020707163959741592, + -0.012836361303925514, + -0.021981051191687584, + -0.012842861004173756, + 0.027193589136004448, + -0.0029751111287623644, + 0.02014821395277977, + -0.006343437358736992, + -0.010737047530710697, + 0.0034966899547725916, + -0.005046802572906017, + 0.010054608806967735, + 0.03889255225658417, + 0.006720404140651226, + -0.00018909260688815266, + 0.0003759510291274637, + -0.037020716816186905, + -0.018640346825122833, + -0.01227091159671545, + -0.010808541439473629, + -0.01345380675047636, + 0.012147422879934311, + -0.0072988527826964855, + 0.03096325509250164, + 0.01904331147670746, + 0.007903299294412136, + -0.0005008618463762105, + -0.0008595488034188747, + 0.028363484889268875, + 0.005859230179339647, + -0.030547291040420532, + -0.02606268785893917, + -0.003059603739529848, + 0.027843531221151352, + -0.016495537012815475, + -0.008182774297893047, + -0.0003083164046984166, + -0.007467837538570166, + -0.03665674850344658, + -0.0027655046433210373, + -0.02322893962264061, + 0.006733403075486422, + -0.0031635945197194815, + -0.017262469977140427, + 0.005303529556840658, + 0.009229181334376335, + 0.009508656337857246, + 0.003932151477783918, + -0.018276378512382507, + 0.007474337238818407, + 0.00965164415538311, + -0.02551673725247383, + -0.006986880209296942, + -0.016235560178756714, + 0.02163008227944374, + -0.004786825273185968, + -0.023241939023137093, + -0.016820508986711502, + -0.004728330764919519, + -0.023241939023137093, + -0.00012196574971312657, + 0.001575297792442143, + -0.011633967980742455, + 0.011861448176205158, + 0.019485272467136383, + -0.011861448176205158, + 0.005485513713210821, + 0.0012275786139070988, + 0.041752297431230545, + -0.008735225535929203, + -0.017223471775650978, + -0.019160300493240356, + 0.013895767740905285, + -0.0007287478656508029, + 0.008351759053766727, + 0.019628260284662247, + 0.021266113966703415, + 0.03143121302127838, + -0.0055505079217255116, + -0.03070327639579773, + -0.015403633937239647, + -0.026413656771183014, + 0.004910314455628395, + 0.009931119158864021, + 0.018939319998025894, + 0.012491892091929913, + 0.016378547996282578, + -0.002513652201741934, + 0.006850392557680607, + -0.03426496312022209, + 0.03577282652258873, + -0.004218125715851784, + 0.008065784350037575, + 0.0065026734955608845, + -0.015182653442025185, + 0.010100103914737701, + 0.019927233457565308, + 0.05371123552322388, + -0.0027053849771618843, + -0.02448982745409012, + 0.013193829916417599, + 0.01825038157403469, + 0.011354492977261543, + -0.004292869474738836, + -0.005622001364827156, + 0.026179678738117218, + 0.004965559579432011, + 0.012277411296963692, + -0.02771354280412197, + -0.00023986934684216976, + -0.0010179722448810935, + -0.0067853983491659164, + 0.020304199308156967, + 0.004153131507337093, + 0.0033569522202014923, + 0.02922140806913376, + 0.007155865430831909, + -0.016365548595786095, + 0.0033260800410062075, + -0.014259735122323036, + -0.0245028268545866, + 0.02432084269821644, + -0.00973613653331995, + 0.015364637598395348, + 0.011159510351717472, + -0.002388538094237447, + 0.004442356061190367, + -0.012608882039785385, + -0.01892632246017456, + -0.025906702503561974, + 0.0027557555586099625, + -0.013083339668810368, + -0.005924224853515625, + -0.011510479263961315, + -0.005024054553359747, + -0.017392458394169807, + 0.016287555918097496, + -0.014961672946810722, + -0.044170081615448, + -0.0067918975837528706, + -0.014649701304733753, + 0.006379184313118458, + -0.016586529091000557, + 0.02448982745409012, + 0.020980140194296837, + -0.01622256077826023, + -0.03676073998212814, + 0.004656836856156588, + 0.017327463254332542, + -0.02292996644973755, + 0.0212011206895113, + 0.006008717231452465, + -0.010392578318715096, + 0.0018848328618332744, + -0.01235540397465229, + -0.007968293502926826, + -0.006372685078531504, + -0.0339529886841774, + 0.0006235384498722851, + 0.02867545746266842, + -0.03137921914458275, + 0.0014818685594946146, + 0.001270637265406549, + -0.005813734605908394, + 0.0033439535181969404, + 0.0034771915525197983, + -0.0008562990697100759, + -0.01216692104935646, + 0.007818806916475296, + 0.016352549195289612, + 0.024047868326306343, + 0.017379458993673325, + 0.02677762508392334, + 0.006554668769240379, + 0.014870680868625641, + -0.020330196246504784, + -0.005514760967344046, + 0.0024941537994891405, + 0.01227091159671545, + 0.012862359173595905, + -0.001759718987159431, + 0.02420385368168354, + 0.002759005408734083, + -0.0052580335177481174, + 0.01470169611275196, + 0.002169182524085045, + 0.011360992677509785, + 0.003772915340960026, + -0.009944118559360504, + 0.012030432932078838, + 0.010035109706223011, + -0.0004557720967568457, + 0.02065516822040081, + -0.0016094198217615485, + -0.016742514446377754, + -0.02805151231586933, + 0.03426496312022209, + 0.01218641921877861, + -0.023592907935380936, + 0.013882769271731377, + -0.02238401584327221, + 0.011659965850412846, + -0.032965075224637985, + 0.009261678904294968, + 0.0195502657443285, + 0.01068505272269249, + 0.007233858574181795, + -0.0009359170217067003, + -0.025581730529665947, + -0.005920975003391504, + 0.004601591732352972, + 0.004273370839655399, + -0.01710648275911808, + -0.009183685295283794, + 0.006141955498605967, + 0.014051754027605057, + -0.011484481394290924, + 0.011698962189257145, + 0.009684140793979168, + -0.03150920569896698, + -0.03574683144688606, + 0.01988823711872101, + -0.006050963420420885, + 0.035200878977775574, + -0.020135214552283287, + -0.005963221192359924, + -0.01680750958621502, + 0.002942614024505019, + -0.016573529690504074, + -0.031015248969197273, + 0.002388538094237447, + -0.013440808281302452, + 0.021136125549674034, + -0.005358774680644274, + 0.011562475003302097, + 0.013674787245690823, + -0.009866124950349331, + 0.023072954267263412, + -0.010659054853022099, + 0.005020804703235626, + -0.009658143855631351, + -0.013674787245690823, + -0.018952319398522377, + 0.011789954267442226, + 0.006395432632416487, + 0.0017922160914167762, + -0.003720920067280531, + 0.012322907336056232, + 0.018783334642648697, + 0.03889255225658417, + -0.015741603448987007, + 0.00015994675050023943, + -0.008767722174525261, + -0.008332260884344578, + 0.0072208596393466, + -0.016339551657438278, + 0.014129746705293655, + 0.01669052056968212, + -0.008527243509888649, + -0.008806719444692135, + 0.030053334310650826, + -0.013778777793049812, + -0.011796453967690468, + -0.015871591866016388, + 0.021825063973665237, + -0.04489801824092865, + 0.04539197310805321, + -0.0007864302606321871, + 0.014077751897275448, + -0.020473184064030647, + -0.0006678157951682806, + -0.03598080947995186, + -0.012966349720954895, + 0.006765900179743767, + -0.008007289841771126, + 0.011406488716602325, + -0.008273766376078129, + -0.004374112002551556, + -0.006609913893043995, + -0.006450677756220102, + 0.008956206031143665, + -0.026517648249864578, + 0.0064831748604774475, + -0.010405576787889004, + -0.012517889961600304, + -0.02685561776161194, + -0.01230990793555975, + -0.024346841499209404, + 0.008247768506407738, + 0.012979349121451378, + 0.0031489706598222256, + 0.022241028025746346, + -0.010191095992922783, + 0.0010317835258319974, + 0.004874567501246929, + 0.010522566735744476, + 0.017418455332517624, + -0.01108801644295454, + 0.029663369059562683, + 0.023254938423633575, + -0.008689729496836662, + -0.0271155945956707, + -0.04611990973353386, + 0.003080726834014058, + -0.005570006091147661, + 0.038242608308792114, + 0.014415721409022808, + -0.02318994328379631, + -0.00978163257241249, + 0.014194740913808346, + 0.010971027426421642, + -0.0019612011965364218, + -0.0043838610872626305, + 0.023553911596536636, + 0.012517889961600304, + 0.006470176391303539, + -0.02467181161046028, + 0.023982873186469078, + -0.012927353382110596, + 0.005699994508177042, + -0.006427930202335119, + -0.00861823558807373, + -0.016066575422883034, + -0.00124626443721354, + -0.0008831091690808535, + 0.0407903827726841, + 0.004604841582477093, + 0.006063962355256081, + 0.015117659233510494, + -0.02225402742624283, + 0.01727546751499176, + -0.03340703621506691, + -0.024892792105674744, + 0.011146511882543564, + -0.023761892691254616, + 0.030313311144709587, + -0.026387659832835197, + -0.010041609406471252, + -0.0071818633005023, + -0.00735084805637598, + 0.017626436427235603, + 0.007097370456904173, + 0.0131548335775733, + 0.02529575675725937, + -0.029975341632962227, + -0.0015168029349297285, + 0.007812307216227055, + -0.03062528371810913, + 0.0017288466915488243, + 0.0004025580419693142, + -0.0015809847973287106, + -0.007513333577662706, + 0.003639677306637168, + -0.00969064049422741, + -0.0029036174528300762, + 0.015936587005853653, + -0.013921765610575676, + -0.010808541439473629, + -0.022189032286405563, + -0.018991315737366676, + -0.00661966297775507, + -0.006824394688010216, + 0.0013933139853179455, + -0.030807267874479294, + 0.0014282483607530594, + 0.0011300873011350632, + -0.01804240047931671, + 0.020434187725186348, + 0.009385167621076107, + -0.015221649780869484, + 0.007441840134561062, + 0.002486029639840126, + -0.03618879243731499, + 0.008306263014674187, + 0.03130122274160385, + -0.02643965557217598, + -0.017587440088391304, + -0.00728585384786129, + -0.0036266783718019724, + -0.009976615197956562, + 0.012673876248300076, + 0.005602503195405006, + -0.001147148315794766, + -0.011464983224868774, + -0.014961672946810722, + 0.011270000599324703, + -0.018484361469745636, + 0.006700905971229076, + 0.009151188656687737, + 0.012472393922507763, + 0.007669319864362478, + -0.012153922580182552, + 0.005323027726262808, + 0.017626436427235603, + 0.008520744740962982, + -0.004829071927815676, + 0.04266221821308136, + -0.03189917281270027, + 0.025646725669503212, + 0.02074616029858589, + 0.0006369434995576739, + -0.01195244025439024, + -0.004429357126355171, + -0.01994023099541664, + 0.013752780854701996, + -0.007584827486425638, + -0.02833748795092106, + -0.0012998847523704171, + -0.02221502922475338, + -0.002078190678730607, + -0.003210715251043439, + -0.0026956358924508095, + 0.002216303488239646, + 0.021721074357628822, + 0.0031782181467860937, + 0.007981291972100735, + -0.008377756923437119, + 0.017639435827732086, + 0.007916297763586044, + -0.013011845760047436, + 0.015052665024995804, + -0.0009741011308506131, + -0.02495778724551201, + 0.0008489871979691088, + 0.0076238238252699375, + 0.03772265464067459, + 0.018172388896346092, + 0.004562595393508673, + -0.029195411130785942, + 0.026153679937124252, + -0.016235560178756714, + -0.030469298362731934, + -0.009125190787017345, + 0.011822451837360859, + 0.010054608806967735, + 0.023891881108283997, + -0.02166907861828804, + 0.019823241978883743, + -0.0010642806300893426, + 0.017041489481925964, + -0.03543485701084137, + -0.03964648395776749, + 0.006089959759265184, + 0.003327704966068268, + 0.019368281587958336, + -0.007753812242299318, + -0.03530487045645714, + -0.002291046781465411, + 0.027609551325440407, + 0.0011528353206813335, + 0.013141834177076817, + 0.03798263147473335, + -0.0044098589569330215, + -0.04440406337380409, + 0.024359839037060738, + 0.014025756157934666, + 0.013083339668810368, + 0.007688818033784628, + 0.010230093263089657, + -0.016573529690504074, + 0.015442630276083946, + -0.0012933852849528193, + 0.014948674477636814, + -0.019823241978883743, + -0.0008258330053649843, + 0.022578997537493706, + -0.00978163257241249, + 0.004465104080736637, + 0.006008717231452465, + -0.028857441619038582, + 0.017301466315984726, + -0.021058132871985435, + 0.03184717521071434, + -0.0071818633005023, + -0.025230761617422104, + 0.004393610171973705, + 0.013843772001564503, + -0.01904331147670746, + -0.006817895453423262, + 0.006941384635865688, + -0.01887432672083378, + 0.009430663660168648, + 0.008085283450782299, + -0.0009513531113043427, + 0.021474095061421394, + -0.018341373652219772, + 0.008579239249229431, + 0.0031489706598222256, + -0.018003404140472412, + -0.02906542271375656, + -0.016547532752156258, + -0.030911259353160858, + 0.02395687624812126, + 0.018354373052716255, + -0.013713783584535122, + -0.011347993277013302, + -0.02867545746266842, + -0.017002493143081665, + 0.005625251214951277, + -0.010210594162344933, + -0.012907855212688446, + -0.018822330981492996, + -0.015728605911135674, + 0.011490981094539165, + -0.025152768939733505, + -0.001967700431123376, + 8.713289571460336e-05, + -0.008780721575021744, + -0.026491651311516762, + 0.020941143855452538, + 0.18947120010852814, + -0.013817775063216686, + -0.0017272218829020858, + 0.014493715018033981, + -0.018575353547930717, + -0.02176007069647312, + 0.02150009386241436, + -0.01334981620311737, + 0.005534259136766195, + 0.020590174943208694, + 0.005706493742763996, + 0.004279870539903641, + -0.008689729496836662, + 0.0063401879742741585, + 0.026283668354153633, + -0.006216698791831732, + -0.040868375450372696, + -0.014857682399451733, + -0.01199793629348278, + 0.0048128231428563595, + 0.0029718615114688873, + -0.02471080794930458, + -0.006379184313118458, + -0.014207740314304829, + 0.06255045533180237, + 0.0144027229398489, + -0.004634088836610317, + 0.002846747636795044, + 0.022825974971055984, + 0.01609257236123085, + -0.008559741079807281, + -0.0032155897933989763, + 0.015897590667009354, + 0.022280024364590645, + -0.01212142501026392, + -0.009534654207527637, + 0.02632266655564308, + -0.01702849008142948, + 0.018068397417664528, + 0.025776714086532593, + 0.006086710374802351, + -0.032081153243780136, + -0.01605357602238655, + -0.03704671561717987, + 0.015260647051036358, + 0.037696655839681625, + -0.0013283196603879333, + 0.004539847373962402, + -0.0035974308848381042, + 0.02035619504749775, + -0.01875733584165573, + 0.010483570396900177, + 0.017496448010206223, + 0.041882287710905075, + 0.01643054373562336, + -0.016625525429844856, + 0.005505011882632971, + 0.006541669834405184, + 0.0034771915525197983, + -0.0005662622861564159, + -0.02437283843755722, + 0.012920854613184929, + -0.014207740314304829, + 0.008247768506407738, + -0.02534775249660015, + 0.021903058513998985, + -0.01433772873133421, + -0.011419487185776234, + -0.021682078018784523, + -0.02504877932369709, + -0.0036656749434769154, + -0.02221502922475338, + -0.027349574491381645, + 0.020174210891127586, + -0.011231004260480404, + -0.02298196218907833, + 0.038034625351428986, + 0.012797364965081215, + 0.0194722730666399, + 0.021513091400265694, + -0.0064246803522109985, + 0.0022423011250793934, + -0.01298584882169962, + 0.0014453093754127622, + 0.0010878409957513213, + -0.02610168606042862, + 0.021864060312509537, + -0.009222682565450668, + 0.02023920603096485, + -0.004884317051619291, + -0.03551284968852997, + 0.012498391792178154, + -0.002248800592496991, + -0.008332260884344578, + 0.004075138829648495, + -0.013226327486336231, + 0.008072284050285816, + -0.01605357602238655, + 0.013895767740905285, + 1.7343433000860387e-06, + 0.001589921535924077, + 0.061354558914899826, + 0.04315617308020592, + -0.015273645520210266, + -0.006921886000782251, + -0.01875733584165573, + 0.014597705565392971, + 0.010652555152773857, + 0.00870272796601057, + -0.005755239631980658, + -0.007636822760105133, + -0.027063600718975067, + 0.010698051191866398, + -0.024216853082180023, + 0.016105571761727333, + 0.012524389661848545, + -0.007123368326574564, + -0.012296909466385841, + 0.021643079817295074, + -0.0010845912620425224, + -0.004380611702799797, + 0.011926442384719849, + 0.010093605145812035, + 0.00012816050730179995, + 0.011594971641898155, + -0.04463804140686989, + -0.04765377566218376, + 0.023449920117855072, + -0.013960761949419975, + 0.012654378078877926, + 0.02157808654010296, + -0.00681139575317502, + 0.017249470576643944, + -0.0014875555643811822, + 0.018939319998025894, + 0.020876148715615273, + 0.011295998468995094, + -0.01804240047931671, + -0.007792809046804905, + -0.013278322294354439, + 0.003186342539265752, + -0.02331993170082569, + -0.003600680734962225, + 0.02112312614917755, + 0.005472514778375626, + -0.015975583344697952, + 0.017665432766079903, + -0.0016654772916808724, + -0.016456540673971176, + -0.0020554426591843367, + -0.011555975303053856, + -0.010282088071107864, + -0.009710138663649559, + -0.02272198535501957, + 0.007877301424741745, + 0.010028610937297344, + -0.026088686659932137, + -0.023475918918848038, + -0.006593665108084679, + 0.030729275196790695, + -0.006837393622845411, + -0.004227875266224146, + 0.006063962355256081, + -0.016833506524562836, + -0.02061617188155651, + -0.011360992677509785, + -0.1631615310907364, + -0.008897710591554642, + 0.008865213952958584, + 0.003691672580316663, + 0.0039808969013392925, + 0.001993698300793767, + -0.0015777350636199117, + 0.013336817733943462, + -0.0008351759170182049, + -0.016105571761727333, + 0.0007324037724174559, + -0.004198627546429634, + 0.010763045400381088, + -0.02656964398920536, + -0.00674640154466033, + -0.01089953351765871, + -0.0007571828318759799, + 0.0405564047396183, + 0.015117659233510494, + 0.005725992377847433, + -0.005014305468648672, + -0.006541669834405184, + 0.0041628810577094555, + -0.010366580449044704, + -0.005180040840059519, + 0.01684650592505932, + -0.015455629676580429, + 0.008111280389130116, + -0.009729636833071709, + -0.01334981620311737, + -0.01605357602238655, + -0.006804896518588066, + 0.00865723192691803, + 0.0036169292870908976, + -0.01571560651063919, + -0.0169764943420887, + -0.003571433247998357, + -0.014545709826052189, + -0.00867673009634018, + 0.04734180122613907, + -0.003681923495605588, + 0.030859263613820076, + -0.010119603015482426, + 0.008982203900814056, + -0.004068639129400253, + 0.03338104113936424, + 0.02255300059914589, + -0.012023934163153172, + -0.021682078018784523, + -0.014311730861663818, + -0.005098797846585512, + -0.027089597657322884, + -0.02014821395277977, + -0.00011079486284870654, + 0.0026208925992250443, + 0.0168985016644001, + -0.020369194447994232, + 0.030521294102072716, + 0.010080605745315552, + 0.01571560651063919, + -0.017938409000635147, + -0.015390635468065739, + 0.008501246571540833, + -0.007688818033784628, + 0.013336817733943462, + -0.0071948617696762085, + 0.017470451071858406, + 0.028987430036067963, + -0.02365790121257305, + 0.00045699073234573007, + 0.007155865430831909, + -0.04235024377703667, + -0.0022715486120432615, + -0.011926442384719849, + 0.0007064060773700476, + -0.008962704800069332, + -0.010119603015482426, + 0.0028337487019598484, + -0.01073054876178503, + -3.5188284527976066e-05, + -0.003480441402643919, + 0.027843531221151352, + 0.0010772794485092163, + -0.027765538543462753, + -0.028155503794550896, + -0.0010642806300893426, + -0.01073054876178503, + 0.030443299561738968, + -0.02386588416993618, + 0.012504891492426395, + 0.010152099654078484, + -0.01841936632990837, + -0.03738468512892723, + -0.019147301092743874, + 0.007123368326574564, + 0.004627589602023363, + -0.00599896814674139, + 0.013245825655758381, + -0.02812950499355793, + -0.010379579849541187, + 0.015208651311695576, + -0.01220591738820076, + -0.011542976833879948, + 0.025399748235940933, + 0.0024844047147780657, + -0.010568062774837017, + -0.03231513500213623, + -0.0014038755325600505, + 0.03855458274483681, + -0.01622256077826023, + -0.013122336007654667, + -0.01083453930914402, + 0.03288708254694939, + 0.0035031894221901894, + -0.011549475602805614, + 0.010301586240530014, + -0.00952165573835373, + -0.018016401678323746, + -0.0067074052058160305, + -0.0025331503711640835, + 0.055895041674375534, + -0.013895767740905285, + -0.007103870157152414, + -0.004250623285770416, + -0.005368523765355349, + -0.03639677166938782, + -0.06930985301733017, + -0.013031343929469585, + 0.02636166289448738, + 0.020330196246504784, + 0.014623703435063362, + 0.024359839037060738, + 0.010087105445563793, + 9.754212806001306e-05, + 0.01474069245159626, + 0.036474764347076416, + 0.002858121646568179, + -0.016885502263903618, + -0.02812950499355793, + -0.015416632406413555, + 0.025243761017918587, + -0.011796453967690468, + 0.011939440853893757, + -0.029325399547815323, + -0.04307818040251732, + 0.03278309106826782, + -0.004822572227567434, + 0.003153845202177763, + -0.00833876058459282, + -0.004049140959978104, + -0.014818686060607433, + -0.00048095735837705433, + -0.03923052176833153, + 0.0271155945956707, + 0.023852884769439697, + -0.009872624650597572, + 0.008871713653206825, + -0.017730427905917168, + -0.016352549195289612, + -0.01968025416135788, + -0.02078515663743019, + -0.01323932595551014, + -0.017561443150043488, + -0.015143657103180885, + 0.021721074357628822, + -0.019758248701691628, + -0.01904331147670746, + 0.013252324424684048, + 0.018861327320337296, + -0.01808139681816101, + 0.001504616579040885, + -0.0110035240650177, + -0.009710138663649559, + 0.013187330216169357, + 0.01921229623258114, + -0.014350727200508118, + -0.02467181161046028, + -0.017678432166576385, + -0.01368778571486473, + 0.011900444515049458, + 0.03169118985533714, + -0.006635911297053099, + -0.012758368626236916, + -0.00367542402818799, + -0.022903969511389732, + 0.0028743701986968517, + -0.007188362535089254, + 0.04076438397169113, + -0.03759266808629036, + 0.016066575422883034, + 0.004842070396989584, + 0.0011780204949900508, + -0.00844925083220005, + 0.007669319864362478, + 0.020980140194296837, + -0.013187330216169357, + -0.015871591866016388, + 0.011451984755694866, + -0.0011950815096497536, + 0.025412745773792267, + -0.0071818633005023, + 0.002000197535380721, + -0.0424022413790226, + -0.00833876058459282, + 0.014064752496778965, + 2.3039949155645445e-05, + -0.011205006390810013, + -0.02140910178422928, + 0.014129746705293655, + -0.003841159399598837, + 0.012498391792178154, + 0.0038184113800525665, + -0.007253356743603945, + -0.00851424504071474, + 0.023007959127426147, + -0.017834417521953583, + -0.01562461443245411, + 0.013037843629717827, + 0.027141593396663666, + -0.004136883188039064, + -0.021812066435813904, + 0.011464983224868774, + 0.004097886383533478, + -0.02061617188155651, + 0.013869769871234894, + 0.028103508055210114, + -0.02416485734283924, + -0.010282088071107864, + -0.0558430477976799, + 0.02737557142972946, + 0.03192516788840294, + -0.016547532752156258, + -0.005430268589407206, + 0.01423373818397522, + 0.009619146585464478, + 0.008917208760976791, + 0.035538848489522934, + -0.006525421515107155, + -0.01981024257838726, + 0.012277411296963692, + -0.028857441619038582, + -0.0067074052058160305, + -0.036006808280944824, + -0.013778777793049812, + 0.00048380086082033813, + 0.015299643389880657, + -0.003041730262339115, + -0.024762803688645363, + 0.0029539880342781544, + -0.0026257671415805817, + 0.0015200526686385274, + 0.022098040208220482, + -0.031743183732032776, + 0.006837393622845411, + -0.003720920067280531, + -0.020642168819904327, + -0.01601457968354225, + 0.004764077719300985, + 0.0013819399755448103, + 0.002973486203700304, + -0.005563506856560707, + 0.026244672015309334, + -0.015780599787831306, + -0.016144568100571632, + 0.009541153907775879, + 0.032679103314876556, + -0.002867870731279254, + 0.027167590335011482, + -0.01774342730641365, + -0.023540912196040154, + -0.01744445227086544, + -0.0288054458796978, + 0.008416753262281418, + 0.005027304403483868, + 0.005423768889158964, + 0.010217093862593174, + 0.015260647051036358, + -0.012641378678381443, + 0.04936962202191353, + 0.02610168606042862, + -0.006343437358736992, + 0.009320173412561417, + 0.014779689721763134, + 0.02901342697441578, + 0.01934228464961052, + 0.008897710591554642, + 0.03280908986926079, + -0.0020944392308592796, + 0.0440920889377594, + -0.0008392380550503731, + 0.017470451071858406, + -0.016924498602747917, + 0.001178832957521081, + -0.012303409166634083, + -0.014896678738296032, + -0.034030981361866, + 0.005128045100718737, + -0.02538674883544445, + 0.0031164735555648804, + 0.0021935554686933756, + 0.016716517508029938, + 0.03969847783446312, + -0.018432365730404854, + -0.03213315084576607, + 0.004949311260133982, + 0.005985969211906195, + -0.0035551846958696842, + 0.00024332216707989573, + 0.013011845760047436, + 0.02580271102488041, + -0.0030677278991788626, + 0.0022244276478886604, + 0.04632789269089699, + -0.004370862618088722, + -0.03109324350953102, + 0.010178097523748875, + -0.0028337487019598484, + 0.0062199486419558525, + 0.002820749767124653, + 0.025711720809340477, + 0.017327463254332542, + 0.006713904440402985, + 0.0337190106511116, + -0.0002072706847684458, + 0.004981808364391327, + -0.02529575675725937, + 0.02653064765036106, + 0.025152768939733505, + 0.007682318799197674, + -0.0040231430903077126, + -0.013817775063216686, + -0.028519470244646072, + 0.013037843629717827, + 0.008689729496836662, + -0.029429391026496887, + -0.03730669245123863, + -0.0023430422879755497, + 0.015871591866016388, + -0.012862359173595905, + 0.012459395453333855, + -0.002981610596179962, + 0.004078388214111328, + -0.023553911596536636, + 0.009807630442082882, + -0.030781270936131477, + -0.005579755175858736, + -0.025399748235940933, + 0.027089597657322884, + 0.0221240371465683, + 0.005287281237542629, + -0.0009359170217067003, + 0.017093483358621597, + 0.010418576188385487, + -0.02247500605881214, + 0.007617324590682983, + 0.009430663660168648, + 0.0001108964133891277, + -0.004266871605068445, + 0.0012170170666649938, + 0.019901234656572342, + -0.024398837238550186, + -0.007825305685400963, + -0.010691551491618156, + -0.0061159576289355755, + 0.013635790906846523, + 0.001012285239994526, + 0.008891211822628975, + 0.10326284170150757, + 0.033641017973423004, + -0.013167832046747208, + 0.02005722187459469, + -0.003915902692824602, + 0.011926442384719849, + 0.009053696878254414, + 0.008390756323933601, + -0.010353581979870796, + -0.044794026762247086, + 0.004582093562930822, + -0.0010967777343466878, + 0.0062199486419558525, + -0.04097236692905426, + 0.00031034747371450067, + 0.0195502657443285, + 0.0031148488633334637, + 0.026179678738117218, + -0.02525676041841507, + 0.013934764079749584, + 0.029325399547815323, + -0.013440808281302452, + -0.013414810411632061, + 0.025828709825873375, + -0.043234165757894516, + -0.043364156037569046, + 0.019199296832084656, + 0.017041489481925964, + 0.010743547230958939, + -0.03611079603433609, + -0.0022812976967543364, + -0.001529801869764924, + -0.05360724776983261, + -0.030989252030849457, + 0.0022845473140478134, + -0.042636219412088394, + -0.004699083510786295, + -0.015403633937239647, + 0.0041856286115944386, + 0.008273766376078129, + 0.008007289841771126, + 0.025750717148184776, + -0.01548162754625082, + -0.015221649780869484, + 0.001862084842287004, + 0.00963214598596096, + -0.013583795167505741, + -0.003802162827923894, + -0.014220738783478737 + ], + "metadata": { + "source": "Thesis_Verladegeraeusche_in_Speditionen.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 41, + "has_images": true, + "image_count": 51, + "coordinates": "CoordinatesMetadata(points=((204.16666666666666, 189.02777777777797), (204.16666666666666, 642.3611111111111), (936.1666666666666, 642.3611111111111), (936.1666666666666, 189.02777777777797)), system=)", + "links": [], + "last_modified": "2025-05-05T22:59:16", + "_known_field_names": "frozenset({'cc_recipient', 'link_texts', 'url', 'filetype', 'category_depth', 'page_number', 'filename', 'orig_elements', 'detection_origin', 'email_message_id', 'page_name', 'coordinates', 'table_as_cells', 'link_start_indexes', 'sent_to', 'bcc_recipient', 'languages', 'last_modified', 'link_urls', 'file_directory', 'subject', 'data_source', 'detection_class_prob', 'image_base64', 'text_as_html', 'attached_to_filename', 'key_value_pairs', 'signature', 'sent_from', 'header_footer_type', 'parent_id', 'links', 'emphasized_text_contents', 'emphasized_text_tags', 'image_mime_type', 'is_continuation', 'image_path'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "Thesis_Verladegeraeusche_in_Speditionen.pdf", + "detection_class_prob": 0.2568194270133972, + "parent_id": "d45475a34bc527cde6987546fa6dd2f5", + "text_as_html": "
Flurf\u00f6rderger\u00e4t |Anzahl Einzelereignisse ElMax-PegelSchallleistungspegel
LAFmaxLWA,5sLWAmaxLWA,1hKlLWAT,1h
[dB(A)][dB(A)][dB(A)][dB(A)][dB(A)][dB(A)]
Gabelstapler29769,3100,7108,872,15,777,8
STABW [dB]6,54,96,54,92,9-
Gabelhubwagen9968,6100,7108,172,16,279,5
STABW [dB]6,45,16,4512,7-
", + "id": "5ba44de7-0ff3-4c0c-b018-67e92171e1c2", + "processing_timestamp": "2025-05-06T14:18:19.298665", + "chunk_number": 42, + "total_chunks": 49, + "chunking_strategy": "hybrid", + "word_count": 282 + } +} \ No newline at end of file diff --git a/data/processed/85fd305f-83de-70b0-47e8-2dc000000043.json b/data/processed/85fd305f-83de-70b0-47e8-2dc000000043.json new file mode 100644 index 0000000000000000000000000000000000000000..ceb20061b64e4852d294bf59db853fbf203ac3b9 --- /dev/null +++ b/data/processed/85fd305f-83de-70b0-47e8-2dc000000043.json @@ -0,0 +1,1570 @@ +{ + "id": "85fd305f-83de-70b0-47e8-2dc000000043", + "content": "Ausgabe 2009. - [35] ISO/TS 7849-2: Acoustics \u2014 Determination of airborne sound power levels emit- ted by machinery using vibration measurement \u2014 Part 2: Engineering method in- cluding determination of the adequate radiation factor. Ausgabe 2009. - [36] ISO/TS 7849-1: Acoustics \u2014 Determination of airborne sound power levels emit- ted by machinery using vibration measurement \u2014 Part 1: Survey method using a fixed radiation factor. Ausgabe 2009. ## III\n\nAbschlie\u00dfende Bewertung und Ausblick\n- [37] Nordrhein-Westfalen, L.: Handbuch f\u00fcr die Ausbildung im Bereich \"Elektrische An- lagen\" in den Berufen Fachkraft f\u00fcr Abwassertechnik und Fachkraft f\u00fcr Wasserver- sorgungstechnik. Landesumweltamt Nordrhein-Westfalen, 2003. - [38] DIN EN ISO 3741: Bestimmung Schallleistungspegel. Ausgabe Januar 1997. - [39] DIN EN ISO 3744: Bestimmung Schallleistungspegel. Ausgabe Februar 2011. [40] DIN EN ISO 3746: Bestimmung Schallleistungspegel. - [41] DIN EN ISO 3747: Bestimmung Schallleistungspegel. Ausgabe Juli 1998. - [42] Gh. Reza Sinambari, Stefan Sentpali: Ingenieurakustik \u2013 Physikalische Grundlagen und Anwendungsbeispiele. Springer Vieweg, Wiesbaden, 2014. - [43] Cosmos indirekt: Nahfeld und Fernfeld (Akustik), https://www.cosmos-indi- rekt.de//Physik-Schule/Nahfeld_und_Fernfeld_(Akustik) [Zugriff am: 13.04.2023]. - [44] Doccheck, M.B. Schalldruckpegel - DocCheck [online]. In: DocCheck Community GmbH, 2004 [Zugriff am: 13.04.2023], https://flexikon.doccheck.com/de/Schall- druckpegel. - [45] AMBOSS: Akustik - Wissen, 2023, https://www.amboss.com/de/wissen/Akustik/ [Zugriff am: 13.04.2023]. - [46] Prof. Dr. Jochen Koubek: Akustik \u2013 Erzeugung von Schallwellen. Universit\u00e4t Bay- reuth, Digitale Medien,, Bayreuth. - [47] Bellton AG - Optimale Raumakustik: AKUSTIK -ABC | SCHALLSCHNELLE, 2023, https://bellton.ch/akustik-abc/schallschnelle [Zugriff am: 13.04.2023].", + "embedding": [ + 0.019034530967473984, + -0.0019173613982275128, + 0.011411446146667004, + -0.028505435213446617, + -0.0036525900941342115, + 0.006854815408587456, + -0.02221357636153698, + -0.027790149673819542, + -0.015987945720553398, + -0.02479654923081398, + 0.018385475501418114, + 0.010888228192925453, + -0.01478255819529295, + -0.0010911409044638276, + -0.009795431979000568, + 0.021246615797281265, + 0.029883021488785744, + 0.0014057338703423738, + 0.01741851679980755, + 0.006169333588331938, + -0.002872730605304241, + 0.009709333069622517, + -0.020637299865484238, + 0.014067273586988449, + -0.01266319490969181, + 0.01258371863514185, + 0.016941659152507782, + -0.038572411984205246, + -0.018173540011048317, + 0.00044746711500920355, + 0.013206281699240208, + 0.02067703753709793, + -0.015352137386798859, + 0.026558270677924156, + -0.015974700450897217, + -0.00909339264035225, + -0.014398423954844475, + -0.0062819248996675014, + 0.021074417978525162, + 0.003086322685703635, + 0.007338295225054026, + -0.0009785497095435858, + -0.00034605228574946523, + -0.018703380599617958, + -0.0042287916876375675, + 0.004818239714950323, + 0.020571069791913033, + -0.008762242272496223, + -0.010060352273285389, + 0.01651778630912304, + 0.009947760961949825, + 0.018027832731604576, + -0.02494225651025772, + 0.010027237236499786, + -0.010649800300598145, + 0.0005277711316011846, + -0.006536910776048899, + 0.026518531143665314, + -0.001970345387235284, + -0.015193184837698936, + -0.025021731853485107, + -0.016305850818753242, + -0.019696831703186035, + 0.016610508784651756, + -0.021246615797281265, + 0.005182505119591951, + -0.018425213173031807, + -0.00268066325224936, + -0.024624351412057877, + -0.006626321468502283, + 0.02389582060277462, + 0.029247211292386055, + 0.007238950114697218, + 0.011345216073095798, + 0.02209436148405075, + 0.0006978996680118144, + 0.015352137386798859, + -0.024306446313858032, + 0.01496800221502781, + -0.00487122405320406, + 0.007768790703266859, + -0.022822892293334007, + -0.019935259595513344, + 0.034148238599300385, + 0.02194865420460701, + 0.012126731686294079, + -0.018623903393745422, + 0.01665024645626545, + -0.032744161784648895, + -0.0006382925785146654, + 0.014954756945371628, + 0.022160591557621956, + 0.007967481389641762, + 0.008292008191347122, + 0.019418666139245033, + 0.011338593438267708, + 0.009841793216764927, + 0.01602768339216709, + -0.011702858842909336, + -0.034280698746442795, + -0.02273016981780529, + -0.01213335432112217, + 0.015034232288599014, + 0.001058025867678225, + -0.02879684790968895, + 0.011278985999524593, + 0.01626611314713955, + 0.025286652147769928, + 0.008861587382853031, + -0.023856081068515778, + -0.01271617878228426, + 0.014001043513417244, + 0.021365830674767494, + -0.009775563143193722, + 0.03412174805998802, + -0.01642506569623947, + 0.032585207372903824, + -0.00827876292169094, + -0.011762465350329876, + -0.007835021242499352, + 0.04016193374991417, + 0.019723324105143547, + 0.006510418839752674, + -0.01589522324502468, + 0.034810539335012436, + 0.004546696320176125, + -0.024240216240286827, + -0.02235928177833557, + -0.013027460314333439, + -0.021511536091566086, + -0.01729930192232132, + -0.01642506569623947, + 0.01911400631070137, + 0.018915316089987755, + 0.016994643956422806, + 0.006987275555729866, + -0.01757746934890747, + 0.013802352361381054, + -0.02245200425386429, + -0.02866438776254654, + 0.012835393659770489, + 0.006752158515155315, + -0.03496949374675751, + -0.033512432128190994, + -0.00529178511351347, + 0.03889031335711479, + 0.010974327102303505, + -0.004768567159771919, + 0.0030813554767519236, + 0.016173390671610832, + -0.012365159578621387, + -0.01794835738837719, + 0.01129223220050335, + 0.022253314033150673, + -0.009311951696872711, + 0.006632944568991661, + 0.013643400743603706, + 0.028346482664346695, + -0.010517340153455734, + 0.002470382722094655, + -0.016729723662137985, + 0.004503646865487099, + 0.015550827607512474, + -0.010470978915691376, + 0.012219453230500221, + 0.0030333385802805424, + 0.006967406719923019, + -0.01486203446984291, + -0.020465100184082985, + -0.00969608686864376, + -0.018690133467316628, + 0.017219826579093933, + -0.006738912779837847, + 0.026650991290807724, + -0.01013982854783535, + 0.0013386758510023355, + 0.004997061099857092, + -0.009146376512944698, + -0.012861885130405426, + -0.026266857981681824, + -0.024876026436686516, + 0.014570621773600578, + 0.006914422381669283, + 0.015193184837698936, + -0.027710674330592155, + 0.023935558274388313, + 0.0010911409044638276, + 0.037406761199235916, + 0.010206058621406555, + -0.010298780165612698, + 0.0031095033045858145, + 0.011987647973001003, + 0.0021706914994865656, + -0.020730020478367805, + -0.6281792521476746, + -0.012305552139878273, + 0.014265963807702065, + -0.011510791257023811, + -0.005344768986105919, + 0.031763955950737, + 0.016875429078936577, + -0.01531239878386259, + -0.0029273703694343567, + 0.05022890865802765, + 0.00155640731099993, + -0.0059772664681077, + -0.009735824540257454, + -0.00332806259393692, + 0.00865627359598875, + -0.02246524952352047, + -0.003844657214358449, + -0.012305552139878273, + 0.035446349531412125, + 0.014557375572621822, + -0.020120704546570778, + 0.038413457572460175, + -0.012596964836120605, + -0.005520279053598642, + -0.009908023290336132, + 0.004997061099857092, + 0.015696533024311066, + -0.02879684790968895, + 0.021604258567094803, + -0.004622860811650753, + -0.02314079739153385, + 0.015511089004576206, + -0.009013916365802288, + 0.022266559302806854, + 0.044109247624874115, + 0.0008316016755998135, + 0.0158819779753685, + 0.016504541039466858, + 0.011702858842909336, + 0.00667930580675602, + -0.0010994196636602283, + -0.008470829576253891, + -0.01006697490811348, + 0.00890794862061739, + -0.01896830089390278, + 0.005401064641773701, + 0.05944813787937164, + -0.0028512058779597282, + 0.017630452290177345, + -0.04938116297125816, + -0.010470978915691376, + -0.00820590928196907, + 0.023021582514047623, + 0.00935831293463707, + 0.04085072502493858, + 0.008543683215975761, + 0.03179044649004936, + -0.022425511851906776, + -0.020478347316384315, + 0.008245647884905338, + 0.018531182780861855, + 0.014716328121721745, + 0.013007591478526592, + -0.01602768339216709, + -0.030147941783070564, + 0.017087366431951523, + -0.008795357309281826, + -0.020571069791913033, + 0.005543459206819534, + -0.026001937687397003, + -0.013616908341646194, + 0.03369787335395813, + 0.0078880051150918, + -0.018809348344802856, + 0.020451854914426804, + 0.0004648525209631771, + 0.0059275939129292965, + -0.01679595373570919, + -0.0021110845264047384, + 0.019061023369431496, + -0.0024621039628982544, + 0.00142808654345572, + -0.006543533876538277, + 0.007801905740052462, + 0.0049208966083824635, + -0.03862539306282997, + -0.010470978915691376, + 0.013438086956739426, + 0.004732140805572271, + -0.00025519286282360554, + 0.02273016981780529, + 0.034678079187870026, + -0.00045409012818709016, + -0.010596816428005695, + -0.02571052499115467, + 0.01793511025607586, + -0.007921120151877403, + 0.005275227595120668, + 0.012226076796650887, + -0.028902815654873848, + -0.019710076972842216, + -0.010451110079884529, + -0.005762018729001284, + -0.024213723838329315, + 0.01174259651452303, + -0.0096166105940938, + -0.0018859021365642548, + 0.006142841652035713, + 0.021206878125667572, + -0.015497843734920025, + 0.018054325133562088, + -0.01831924542784691, + -0.01896830089390278, + -0.010338518768548965, + -0.00034853589022532105, + -0.025352882221341133, + 0.03549933433532715, + 0.00461292639374733, + 0.0007264614105224609, + -0.023604407906532288, + -0.008404599502682686, + -0.002278315369039774, + 0.04042685404419899, + -0.02647879347205162, + -0.022955352440476418, + 0.02156452089548111, + 0.003983740694820881, + 0.002771729603409767, + -0.006242186762392521, + -0.008768864907324314, + 0.004430793691426516, + -0.001236847136169672, + -0.005606377962976694, + -0.0065534682944417, + 0.026809943839907646, + 0.008040334098041058, + 0.01821327768266201, + 0.002736958907917142, + 0.013093690387904644, + -0.01574951782822609, + -0.03605566546320915, + -0.013351988047361374, + -0.0012442979495972395, + -0.014663344249129295, + -0.023273257538676262, + -0.03788361698389053, + -0.007676068693399429, + 0.034810539335012436, + 0.0203856248408556, + 0.02324676513671875, + -0.005397753324359655, + -0.016491295769810677, + 0.01419973373413086, + 0.01986902952194214, + -0.00771580683067441, + -0.0010696160607039928, + -0.01227243710309267, + -0.01937892660498619, + -0.01543161366134882, + -0.002991944784298539, + 0.017127104103565216, + 0.005314965732395649, + -0.04866587743163109, + -0.015484597533941269, + 0.0031260608229786158, + -0.030916210263967514, + 0.0035731138195842505, + 0.0008249786915257573, + -0.0018130489625036716, + -0.04633457958698273, + 0.012173091992735863, + 0.022822892293334007, + -0.002596220001578331, + 0.01899479329586029, + 0.0011010754387825727, + -0.006500484421849251, + -0.010669669136404991, + -0.017524484544992447, + -0.022319544106721878, + -0.01729930192232132, + 0.03361839801073074, + 0.012047255411744118, + -0.021140648052096367, + 0.0010191156761720777, + 0.019286205992102623, + 0.017537729814648628, + 0.012106861919164658, + 0.0012161502381786704, + -0.020994940772652626, + 0.021882424131035805, + -0.015723025426268578, + 0.0239090658724308, + -0.01780265010893345, + 0.025101207196712494, + -0.03761869668960571, + -0.006341531872749329, + -0.008146301843225956, + -0.019683586433529854, + -0.0011250837706029415, + 0.021259862929582596, + 0.031763955950737, + -0.0050235530361533165, + 0.04069177433848381, + -0.007020390592515469, + 0.028319990262389183, + -0.006109726615250111, + -0.014054027386009693, + -0.020557822659611702, + 0.04108915477991104, + 0.02969757653772831, + 0.016742968931794167, + -0.015378628857433796, + -0.01059019286185503, + -0.013696384616196156, + -0.0075104935094714165, + 0.03160500526428223, + -0.0032916360069066286, + 0.007854890078306198, + 0.009311951696872711, + -0.00409964332357049, + 0.018385475501418114, + -0.00416918471455574, + 0.049540113657712936, + 0.010603439062833786, + -0.001867688843049109, + -7.368098886217922e-05, + 0.003934068139642477, + 0.018822593614459038, + 0.008901325054466724, + -0.007543608546257019, + 0.0013991108862683177, + -0.02273016981780529, + 0.017365531995892525, + -0.0022402331233024597, + 0.011398199945688248, + 0.021471798419952393, + 0.01001399103552103, + -0.0003752349002752453, + 0.034174732863903046, + 0.0261079054325819, + 0.02684968337416649, + 0.012365159578621387, + 0.004960634279996157, + 0.006447500083595514, + 0.013080445118248463, + -0.028955800458788872, + 0.007987350225448608, + 0.022756662219762802, + -0.011623382568359375, + -0.02675696089863777, + -0.027551721781492233, + 0.0038247883785516024, + -0.02749873697757721, + -0.002130953362211585, + 0.026571515947580338, + -0.004073150921612978, + 0.026690730825066566, + 0.0023114304058253765, + -0.0027319916989654303, + 0.010947835631668568, + 0.012490997090935707, + 0.013166544027626514, + 0.032717667520046234, + -0.004573188256472349, + -0.004172496497631073, + 0.012020763009786606, + -0.03163149580359459, + -0.017643699422478676, + -0.006212383508682251, + 0.0009048687643371522, + 0.00043049565283581614, + -0.013563924469053745, + -0.0069541605189442635, + 0.02323351986706257, + 0.03250573202967644, + -0.007543608546257019, + -0.00606998847797513, + -0.0011184607865288854, + 0.04185742139816284, + 0.009974253363907337, + -0.03473106399178505, + -0.014583867974579334, + 0.00021814538922626525, + 0.030571814626455307, + -0.008484075777232647, + -0.011543906293809414, + -0.0008419501245953143, + -5.176813647267409e-05, + -0.026372825726866722, + 0.0029306819196790457, + -0.016742968931794167, + 0.002558137523010373, + -0.012901623733341694, + -0.00949077308177948, + -0.0029869775753468275, + 0.0051096524111926556, + -0.00487784668803215, + 0.00041352419066242874, + -0.02426670864224434, + 0.01427921000868082, + -0.00144381623249501, + -0.020359132438898087, + -0.0030250598210841417, + -0.006411073729395866, + 0.021008187904953957, + -0.0038910184521228075, + -0.015550827607512474, + -0.01665024645626545, + 0.0017021135427057743, + -0.022107606753706932, + -0.008609913289546967, + 0.0007136292988434434, + -0.0026856304612010717, + 0.006934291683137417, + 0.00018678957712836564, + -0.001973656937479973, + 0.0027170898392796516, + -0.02284938469529152, + 0.03642655536532402, + -0.009868284687399864, + -0.014623605646193027, + -0.013669892214238644, + 0.028902815654873848, + 0.008503944613039494, + 0.004093020223081112, + 0.009643102996051311, + 0.009808678179979324, + 0.01845170557498932, + -0.008285385556519032, + -0.03756571188569069, + -0.011802203953266144, + -0.03022741712629795, + 0.01137170847505331, + 0.02311430498957634, + -0.002950550988316536, + 0.004861289169639349, + 0.029379671439528465, + 0.004795059096068144, + 0.006119661033153534, + -0.017378779128193855, + 0.020822742953896523, + -0.0023346110247075558, + -0.003536687232553959, + 0.00910001527518034, + -0.02067703753709793, + 0.018266262486577034, + 0.022677186876535416, + 0.02622712031006813, + 0.016305850818753242, + -0.016703231260180473, + 0.0006987275555729866, + 0.017378779128193855, + 0.01135183870792389, + -0.0239090658724308, + -0.00545404851436615, + 0.03992350399494171, + 0.01898154616355896, + 0.025260159745812416, + -0.02529989741742611, + -0.0046625989489257336, + 0.005864675156772137, + 0.014239471405744553, + -0.006212383508682251, + -0.008477453142404556, + 0.013418218120932579, + 0.04432118311524391, + 0.0041128890588879585, + -0.004162561614066362, + 0.008046956732869148, + -0.01653103344142437, + -0.013464579358696938, + 0.012219453230500221, + -0.01077563688158989, + -0.005583197344094515, + 0.009762316942214966, + -0.015193184837698936, + 0.0009553692070767283, + -0.0008535404340364039, + -0.0147295743227005, + -0.03775115683674812, + 0.002943927887827158, + -0.018637150526046753, + -0.0030151254031807184, + -0.009855038486421108, + -0.015193184837698936, + -0.01796160265803337, + 0.017392024397850037, + -0.0018147047376260161, + -0.04029439389705658, + -0.02156452089548111, + -0.017259564250707626, + -0.0013966272817924619, + -0.02051808498799801, + 0.018888823688030243, + 0.026637746021151543, + -0.027472244575619698, + -0.027286801487207413, + 0.005742149893194437, + 0.028637895360589027, + -0.012928115203976631, + 0.02442566119134426, + 0.004278464242815971, + -0.025273406878113747, + -0.006454123184084892, + -0.031975891441106796, + 0.010543831624090672, + -0.016623755916953087, + -0.015338891185820103, + -0.008623158559203148, + 0.03295609727501869, + -0.024505136534571648, + 0.0054871635511517525, + 0.01335861161351204, + -0.012676441110670567, + 0.015948208048939705, + -0.0044738431461155415, + 0.02168373391032219, + -0.005026864353567362, + 0.014001043513417244, + 0.010497470386326313, + 0.011570398695766926, + 0.02469058148562908, + 0.017206579446792603, + -0.0036525900941342115, + -0.006113038398325443, + -0.011484299786388874, + -0.0043579405173659325, + -0.011835318990051746, + 0.015987945720553398, + -0.0022551349829882383, + -0.0069409143179655075, + 0.02983003668487072, + 0.006967406719923019, + -0.009000670164823532, + -0.021988393738865852, + -0.0010745833860710263, + 0.0037519352044910192, + -0.006887930445373058, + 0.0033976042177528143, + 0.0015406777383759618, + 0.0072720651514828205, + 0.0058116912841796875, + 0.012338667176663876, + 0.0013966272817924619, + -0.0013063887599855661, + -0.01691516675055027, + 0.028346482664346695, + 0.010358387604355812, + -0.028743863105773926, + 0.025352882221341133, + -0.01834573782980442, + 0.011126657016575336, + -0.03141956031322479, + 0.01252411212772131, + -0.0012426422908902168, + 0.010232550092041492, + 0.02402828074991703, + -0.006692551542073488, + -0.033644892275333405, + -0.018027832731604576, + -0.0015729648293927312, + 0.020690282806754112, + -0.023975295946002007, + -0.007013767492026091, + 0.0022468562237918377, + 0.019445156678557396, + -0.011192887090146542, + 0.02765768952667713, + 0.012987722642719746, + -0.029008783400058746, + -0.031022178009152412, + 0.03886382281780243, + -0.029114751145243645, + 0.0315520204603672, + -0.00794761162251234, + -0.0038413458969444036, + -0.01336523424834013, + -0.009656348265707493, + -0.03229379653930664, + -0.030386369675397873, + 0.0007123874966055155, + -0.010874981991946697, + 0.02686292864382267, + 0.007907873950898647, + 0.020306149497628212, + 0.006228941027075052, + -0.011735973879694939, + 0.018928563222289085, + -0.005381195805966854, + 0.012073746882379055, + -0.010947835631668568, + -0.008583420887589455, + -0.021485043689608574, + 0.029008783400058746, + 0.009000670164823532, + -0.008616535924375057, + -0.00513614434748888, + -0.011649874970316887, + 0.010245796293020248, + 0.030174434185028076, + -0.014477900229394436, + -0.005106340628117323, + -0.010888228192925453, + -0.01576276309788227, + 0.00484804343432188, + -0.012126731686294079, + 0.0017534418730065227, + 0.026253610849380493, + -0.017762912437319756, + -0.00020665860211011022, + 0.02649204060435295, + -0.022928860038518906, + -0.009133131243288517, + -0.008152925409376621, + 0.027578214183449745, + -0.033274002373218536, + 0.03677095100283623, + -0.005732215009629726, + 0.0011598545825108886, + -0.023789850994944572, + -0.004579811356961727, + -0.035578809678554535, + -0.03528739884495735, + 0.0032287174835801125, + -0.004212234169244766, + 0.011053803376853466, + -0.01833249256014824, + -0.006772027816623449, + 0.0017964914441108704, + -0.01305395271629095, + 0.027790149673819542, + -0.01899479329586029, + -0.0005285989609546959, + -0.01110678818076849, + -0.03528739884495735, + -0.03642655536532402, + -0.009186115115880966, + -0.0262138731777668, + 0.023538177832961082, + 0.007437640335410833, + 0.014928264543414116, + 0.021988393738865852, + -0.005550082307308912, + -0.0010762391611933708, + 0.012676441110670567, + 0.0012318798108026385, + 0.020597560331225395, + -0.014438161626458168, + 0.029644593596458435, + 0.024889271706342697, + -0.02466408908367157, + -0.023471947759389877, + -0.05279863625764847, + -0.004954011645168066, + -0.013451333157718182, + 0.033141542226076126, + 0.02184268645942211, + -0.02168373391032219, + -0.01419973373413086, + 0.029750561341643333, + 0.01964384689927101, + 0.006834946107119322, + -0.0030681092757731676, + 0.037539221346378326, + 0.005503721535205841, + 0.00878211110830307, + -0.012292306870222092, + 0.017643699422478676, + -0.027313293889164925, + 0.008186040446162224, + 0.01641181856393814, + -0.008768864907324314, + -0.022942107170820236, + 0.008298631757497787, + -0.0013982829404994845, + 0.028637895360589027, + 0.0021210189443081617, + 0.022650694474577904, + 0.01899479329586029, + -0.010841866955161095, + 0.017855634912848473, + -0.01986902952194214, + -0.014226225204765797, + 0.0016267768805846572, + -0.018941808491945267, + 0.03035987727344036, + -0.006927668582648039, + -2.8484117137850262e-05, + -0.01208037044852972, + -0.008179416880011559, + 0.003937379457056522, + 0.005838183220475912, + 0.003034994238987565, + 0.024478644132614136, + -0.012444635853171349, + -0.014054027386009693, + 0.0035764253698289394, + -0.015060724690556526, + 0.007424394134432077, + 0.004967257380485535, + -0.009927892126142979, + -0.0026160888373851776, + -0.005960708949714899, + -0.008099941536784172, + -0.003947313874959946, + 0.02222682163119316, + -0.01613365299999714, + -0.020597560331225395, + -0.018822593614459038, + -0.03279714658856392, + 0.005755395628511906, + -0.013517563231289387, + 0.008643028326332569, + -0.026372825726866722, + -0.006033562123775482, + 0.0169284138828516, + -0.01103393454104662, + 0.021021433174610138, + -0.0024024969898164272, + -0.0016110471915453672, + -0.007152850739657879, + 0.013457956723868847, + -0.02634633332490921, + 0.0001396006264258176, + 0.03910225257277489, + -0.021352583542466164, + -0.0021359208039939404, + 0.0023710376117378473, + 0.0035996059887111187, + -0.008186040446162224, + 0.014822296798229218, + -0.001534882583655417, + -0.016888676211237907, + -0.022518234327435493, + -0.005156013183295727, + 0.026386070996522903, + -0.02543235756456852, + -0.0022865941282361746, + 0.015020987018942833, + 0.01589522324502468, + 0.015140200965106487, + -0.034625094383955, + 0.010384880006313324, + 0.015126954764127731, + 0.03499598428606987, + -0.006573337595909834, + 0.021273108199238777, + -0.015365383587777615, + 0.02351168543100357, + 0.020584315061569214, + -0.0021011498756706715, + -0.017643699422478676, + -0.012067124247550964, + -0.019577616825699806, + 0.03393630310893059, + 0.005589820444583893, + -0.022571217268705368, + -0.012722802348434925, + -0.0272603090852499, + -0.0010845179203897715, + -0.007073374465107918, + 0.013881828635931015, + 0.0025796624831855297, + 0.02442566119134426, + -0.0004207681049592793, + -0.004904339089989662, + -0.01910076104104519, + 0.011100164614617825, + 0.0032883244566619396, + -0.013166544027626514, + 0.01363015454262495, + 0.0013353644171729684, + -0.029803544282913208, + 0.0012823803117498755, + -0.0028197464998811483, + 0.029247211292386055, + 0.028717370703816414, + -0.0040036095306277275, + -0.011014065705239773, + 0.013987797312438488, + -0.022438757121562958, + -0.019683586433529854, + -0.018398722633719444, + 0.02494225651025772, + 0.004934142343699932, + 0.028319990262389183, + -0.00713960500434041, + 0.021908916532993317, + -4.537796849035658e-05, + 0.03173746541142464, + -0.046414054930210114, + -0.03669147565960884, + 0.0016557525377720594, + -0.00150011177174747, + 0.0067223552614450455, + -0.011199509724974632, + -0.03438666835427284, + 0.004377809818834066, + 0.018279507756233215, + -0.0066064526326954365, + 0.010417995043098927, + 0.0228626299649477, + -0.004609615076333284, + -0.03372436761856079, + 0.01576276309788227, + 0.012100239284336567, + 0.0010812063701450825, + 0.015444858931005001, + -0.0005236317520029843, + -0.018796103075146675, + 0.01861065812408924, + -0.006248809862881899, + 0.004788435995578766, + -0.02919422835111618, + -0.0031972581055015326, + 0.04283762723207474, + -0.007126358803361654, + 0.015603811480104923, + 0.006788585335016251, + 0.0001155922218458727, + 0.020332640036940575, + -0.016332343220710754, + 0.03139306604862213, + 0.012643326073884964, + -0.02002798207104206, + -0.009159622713923454, + 0.005815002601593733, + -0.007782036904245615, + -0.009961007162928581, + 0.0026955651119351387, + -0.0258297398686409, + 0.019352436065673828, + 0.009861662052571774, + -0.004824862815439701, + 0.02919422835111618, + -0.01834573782980442, + 0.01027228869497776, + -0.009954383596777916, + -0.00885496474802494, + -0.03112814761698246, + -0.011524037458002567, + -0.03396279364824295, + 0.023418962955474854, + 0.01576276309788227, + -0.022822892293334007, + -0.01266319490969181, + -0.030651289969682693, + -0.016040930524468422, + -0.006331597454845905, + -0.024319693446159363, + 0.004712271504104137, + -0.030545322224497795, + -0.00025415801792405546, + 0.005748772528022528, + -0.020332640036940575, + 0.009656348265707493, + 0.018557673320174217, + -0.007901251316070557, + -0.013014215044677258, + 0.004189054016023874, + 0.18830542266368866, + -0.024756811559200287, + -0.010384880006313324, + 0.002753516426309943, + -0.027710674330592155, + -0.03073076717555523, + 0.019908767193555832, + -0.008901325054466724, + -0.001058025867678225, + 0.02723381668329239, + 0.007371410261839628, + 0.002940616337582469, + -0.006083234678953886, + 0.01260358840227127, + -0.00041373114800080657, + -0.003023404162377119, + -0.051871415227651596, + -0.012490997090935707, + -0.013709630817174911, + 0.03165798634290695, + 0.02531314454972744, + -0.025008486583828926, + -0.0029389606788754463, + -0.0060501196421682835, + 0.05812353640794754, + 0.023922313004732132, + -0.005394441541284323, + 0.0096166105940938, + 0.02080949768424034, + 0.018663642928004265, + -0.01110678818076849, + -0.013855337165296078, + 0.007854890078306198, + 0.017392024397850037, + -0.01331225037574768, + -0.0034704571589827538, + 0.017246317118406296, + -0.01292149256914854, + 0.019166991114616394, + 0.01486203446984291, + 0.005192440003156662, + -0.028108054772019386, + -0.01769668236374855, + -0.04249323159456253, + 0.011855187825858593, + 0.031022178009152412, + -0.012351913377642632, + 0.009676218032836914, + -0.010358387604355812, + 0.013133428990840912, + -0.016305850818753242, + 0.018782855942845345, + 0.013868583366274834, + 0.028134547173976898, + 0.007689314428716898, + -0.021352583542466164, + 0.0192332211881876, + 0.004967257380485535, + 0.0009744103299453855, + 0.013040706515312195, + -0.022306296974420547, + 0.014756066724658012, + -0.017855634912848473, + 0.006589895114302635, + -0.03216133639216423, + 0.008106564171612263, + -0.013378480449318886, + -0.006444188766181469, + -0.015723025426268578, + -0.02416074089705944, + -0.0059408401139080524, + -0.0058116912841796875, + -0.023670637980103493, + 0.023962050676345825, + -0.023312995210289955, + -0.021352583542466164, + 0.026015182957053185, + 0.01111341081559658, + 0.012477750889956951, + 0.009709333069622517, + 0.000582410953938961, + 0.00872250460088253, + -0.011603513732552528, + -0.001152403769083321, + -0.013974551111459732, + -0.024995239451527596, + 0.0018726560520008206, + 0.003342964220792055, + 0.02763119712471962, + -0.013908321037888527, + -0.025750262662768364, + 0.003788361791521311, + -0.007040259428322315, + -0.0017319171456620097, + -0.005046733655035496, + -0.008715881034731865, + 0.006854815408587456, + -0.024862779304385185, + 0.013828844763338566, + 0.00441754749044776, + -0.013934813439846039, + 0.057010870426893234, + 0.037380266934633255, + -0.015073970891535282, + -0.009272214025259018, + -0.012199584394693375, + 0.0012600276386365294, + 0.023339487612247467, + 0.015550827607512474, + 0.0023428897839039564, + -0.013895074836909771, + -0.027710674330592155, + 0.012305552139878273, + -0.02853192761540413, + 0.011272363364696503, + 0.017524484544992447, + -0.01394805870950222, + 0.004255284089595079, + 0.02001473680138588, + -0.006146153435111046, + 0.004834797233343124, + -0.0007554370677098632, + 0.009318575263023376, + 0.001333708642050624, + 0.01767018996179104, + -0.032744161784648895, + -0.04498348385095596, + 0.014292455278337002, + 0.004049970768392086, + -0.014265963807702065, + 0.017497992143034935, + 0.009729201905429363, + 0.02427995391190052, + -0.0024306445848196745, + 0.014809050597250462, + 0.003689016681164503, + 0.0067024859599769115, + -0.02455812133848667, + -0.02453162893652916, + 0.0033379970118403435, + 0.014054027386009693, + -0.01613365299999714, + 0.0019256401574239135, + 0.026425810530781746, + 0.003732066135853529, + -0.007775413803756237, + 0.021922163665294647, + 0.013451333157718182, + -0.024438906461000443, + -0.0036989510990679264, + -0.03255871683359146, + -0.020610807463526726, + 0.01006697490811348, + -0.023074567317962646, + 0.003041617339476943, + 0.012570473365485668, + -0.013524186797440052, + -0.02504822425544262, + -0.006414385046809912, + 0.02337922528386116, + -0.024438906461000443, + -0.006738912779837847, + 0.007113112602382898, + -0.02311430498957634, + -0.00877548847347498, + -0.01833249256014824, + -0.16721776127815247, + -0.020306149497628212, + 0.01510046236217022, + -0.022293051704764366, + 0.022173836827278137, + 0.008292008191347122, + 0.012034009210765362, + 0.017643699422478676, + -0.007623084355145693, + -0.01767018996179104, + 0.01531239878386259, + 0.012464504688978195, + -0.0037420005537569523, + -0.00819928664714098, + 0.002796565880998969, + -0.00974907074123621, + -0.013736122287809849, + 0.04053281992673874, + 0.027816642075777054, + 0.0008518846589140594, + -0.01266319490969181, + -0.01718008704483509, + 0.00036654219729825854, + -0.006381270010024309, + -0.018001340329647064, + 0.014451407827436924, + -0.014027534984052181, + 0.00852381344884634, + -0.006699174642562866, + -0.01510046236217022, + -0.013206281699240208, + 0.0008133884402923286, + 0.005318277049809694, + 0.004268529824912548, + -0.01667673885822296, + -0.01729930192232132, + -0.001717015285976231, + -0.005791822448372841, + -0.007662822492420673, + 0.027975594624876976, + 0.0077489218674600124, + 0.019537879154086113, + 0.0027833199128508568, + 0.011265739798545837, + -0.0011250837706029415, + 0.03165798634290695, + 0.034174732863903046, + -0.00016216025687754154, + 0.007397902198135853, + -0.016372080892324448, + -0.00015843482105992734, + -0.016372080892324448, + -0.023339487612247467, + 0.006520353257656097, + -0.009470904245972633, + 0.009106638841331005, + -0.011669743806123734, + 0.018809348344802856, + 0.027061618864536285, + 0.0009735824423842132, + 0.0034042270854115486, + -0.021485043689608574, + 0.007828397676348686, + -0.0074972473084926605, + -0.012020763009786606, + -0.016319096088409424, + 0.01291486993432045, + 0.025538327172398567, + -0.022385774180293083, + -0.0067091090604662895, + -0.0009255656623281538, + -0.021749963983893394, + -0.0037651811726391315, + -0.022915614768862724, + 0.01168961264193058, + -0.0005799272912554443, + -0.0021491667721420527, + -0.011146525852382183, + 4.5326225517783314e-05, + -0.008980801329016685, + -0.018756363540887833, + 0.03277065232396126, + 0.003069765167310834, + -0.017286056652665138, + -0.014769311994314194, + 0.0001723017485346645, + -0.019683586433529854, + 0.021339338272809982, + -0.016848936676979065, + 0.006626321468502283, + 0.020862480625510216, + -0.012636703439056873, + -0.027710674330592155, + -0.034413158893585205, + 0.012484373524785042, + 0.01706087402999401, + -0.0034009155351668596, + 0.018690133467316628, + -0.01937892660498619, + 0.005964020267128944, + 0.01719333417713642, + -0.009689463302493095, + -0.019153743982315063, + 0.03708885610103607, + 0.008417845703661442, + -0.004043347667902708, + -0.03380384296178818, + 0.018517935648560524, + 0.0516594797372818, + -0.022690432146191597, + -0.012358536943793297, + 0.00865627359598875, + 0.021405568346381187, + 0.017021136358380318, + 0.010417995043098927, + 0.020200179889798164, + -0.015285907313227654, + -0.019140498712658882, + -0.0014330537524074316, + 0.017087366431951523, + 0.035976190119981766, + -0.0011110099731013179, + -0.00987490825355053, + 0.01058357022702694, + -0.00909339264035225, + -0.0449569933116436, + -0.0826551616191864, + -0.003924133256077766, + 0.02000148966908455, + 0.01680919900536537, + 0.004477154929190874, + 0.015842240303754807, + 0.016968151554465294, + -0.0012103550834581256, + -0.014517637901008129, + 0.03669147565960884, + 0.01590847037732601, + -0.03459860384464264, + -0.01641181856393814, + -0.027922609820961952, + 0.027074864134192467, + -0.004066528286784887, + -0.00017323310021311045, + -0.03602917492389679, + -0.02959160879254341, + 0.028055069968104362, + -0.012285683304071426, + 0.0003661282826215029, + 0.002849549986422062, + -0.005391130223870277, + -0.025657540187239647, + -0.004954011645168066, + -0.04612264037132263, + 0.018915316089987755, + 0.011941286735236645, + -0.015987945720553398, + 0.012351913377642632, + -0.03046584688127041, + -0.009258967824280262, + -0.028372975066304207, + -0.021127402782440186, + -0.01000736840069294, + -0.015113708563148975, + -0.03295609727501869, + 0.02712784893810749, + -0.017868880182504654, + -0.015736272558569908, + 0.007762167602777481, + 0.02054457738995552, + -0.012868508696556091, + 0.01796160265803337, + -0.01614689826965332, + -0.01846495270729065, + 0.017537729814648628, + 0.0077224294655025005, + -0.018041079863905907, + -0.039314188063144684, + -0.02892930805683136, + -0.004874535370618105, + 0.009576871991157532, + 0.022531479597091675, + -0.02429320104420185, + -0.012338667176663876, + 0.006619698368012905, + -0.031154638156294823, + 0.0067289783619344234, + -0.0026723844930529594, + 0.027048373594880104, + -0.034280698746442795, + 0.032479241490364075, + -0.000985172693617642, + -0.022822892293334007, + -0.011146525852382183, + -0.005122898146510124, + 0.00872250460088253, + -0.006520353257656097, + -0.02221357636153698, + 0.008490698412060738, + -0.008318500593304634, + 0.02249174192547798, + -0.023564670234918594, + -0.013908321037888527, + -0.04289061203598976, + -0.0013378480216488242, + 0.019418666139245033, + -0.0005559189012274146, + -0.005536836571991444, + -0.024068018421530724, + 0.02014719694852829, + -0.002897566882893443, + 0.023061320185661316, + 0.03022741712629795, + 0.003437342122197151, + -0.008470829576253891, + 0.02013394981622696, + -0.016093913465738297, + -0.016345588490366936, + 0.00793436635285616, + 0.014159995131194592, + 0.0002802360977511853, + -0.025021731853485107, + 0.017246317118406296, + 0.004629483912140131, + -0.008762242272496223, + 0.007974104024469852, + 0.012875131331384182, + -0.02016044221818447, + -0.013669892214238644, + -0.05976604297757149, + 0.027035126462578773, + 0.03126060590147972, + -0.02119363285601139, + -0.02712784893810749, + -0.00039179244777187705, + 0.013351988047361374, + 0.012126731686294079, + 0.03112814761698246, + -0.008616535924375057, + -0.00732504902407527, + 0.020107457414269447, + -0.0325322262942791, + -0.007344917859882116, + -0.030412862077355385, + -0.021524783223867416, + 0.016173390671610832, + 0.02503497712314129, + 0.013418218120932579, + -0.00929870642721653, + 0.003314816392958164, + 0.015140200965106487, + 0.0032187828328460455, + 0.01781589724123478, + -0.02892930805683136, + 0.0029621412977576256, + -0.005917659495025873, + -0.018398722633719444, + -0.005258670076727867, + 0.020478347316384315, + 0.007291933987289667, + -0.0018974923295900226, + -0.007397902198135853, + 0.02042536251246929, + -0.005467294715344906, + -0.009815300814807415, + 0.0009313607588410378, + 0.018570920452475548, + 0.0006978996680118144, + 0.03793660178780556, + 0.0017782781505957246, + -0.031949400901794434, + -0.018306000158190727, + -0.027551721781492233, + 0.014835542067885399, + 0.01227243710309267, + 0.01678270660340786, + 0.014795804396271706, + 0.008172794245183468, + -0.009662971831858158, + 0.03589671477675438, + 0.019153743982315063, + 6.40569269307889e-05, + -0.0034505880903452635, + 0.007298557087779045, + 0.01459711417555809, + 0.027843134477734566, + -0.007027013693004847, + 0.02646554820239544, + -0.013027460314333439, + 0.06294509023427963, + 0.0003545380022842437, + 0.027922609820961952, + -0.011305478401482105, + -0.010239173658192158, + -0.005887855775654316, + -0.022677186876535416, + -0.03549933433532715, + 0.007358164060860872, + -0.025631047785282135, + -0.0072654420509934425, + 0.0031244049314409494, + 0.012464504688978195, + 0.031472545117139816, + -0.017776159569621086, + -0.007980726659297943, + -0.00455000763759017, + 0.010570324026048183, + -0.003847968764603138, + 0.014809050597250462, + 0.00930532906204462, + 0.01363015454262495, + -0.0035068837460130453, + 0.0004967257264070213, + 0.044082753360271454, + 0.014226225204765797, + -0.037406761199235916, + 0.0025051534175872803, + -0.006096480879932642, + 0.001603596261702478, + -0.006149464752525091, + 0.025591310113668442, + -0.00052404566667974, + -0.009027162566781044, + 0.031154638156294823, + -0.004146004095673561, + 0.009477526880800724, + -0.0262138731777668, + 0.03279714658856392, + 0.04291710630059242, + 0.002298184437677264, + -0.00020883178513031453, + -0.01265657227486372, + -0.04416223242878914, + -0.006020315922796726, + 0.03059830702841282, + -0.024094510823488235, + -0.030916210263967514, + -0.009451035410165787, + 0.0034572111908346415, + -0.0002582973975222558, + 0.027286801487207413, + -0.000394689996028319, + -0.0016797608695924282, + -0.013881828635931015, + 0.014239471405744553, + -0.04053281992673874, + -0.016941659152507782, + -0.03520791977643967, + 0.03022741712629795, + 0.018928563222289085, + -0.002778352703899145, + 0.0010530585423111916, + 0.008888079784810543, + 0.014954756945371628, + -0.016981396824121475, + 0.009398051537573338, + -0.005967332050204277, + 0.012947984971106052, + -0.026399318128824234, + 0.008636404760181904, + 0.010371633805334568, + -0.010517340153455734, + -0.011199509724974632, + -0.010742521844804287, + -0.021670488640666008, + 0.015921715646982193, + -0.003044928889721632, + 0.012722802348434925, + 0.10607412457466125, + 0.032744161784648895, + -0.00664619030430913, + 0.02491576410830021, + -0.00461292639374733, + 0.014239471405744553, + 0.005768641829490662, + 0.0022998403292149305, + -0.0023428897839039564, + -0.04365888237953186, + 0.0030018792022019625, + -0.01077563688158989, + 0.010206058621406555, + -0.018041079863905907, + -0.008139679208397865, + 0.014703081920742989, + 0.007152850739657879, + 0.012994345277547836, + -0.0072588189505040646, + -0.0002897566882893443, + 0.03136657550930977, + -0.013259265571832657, + -0.005732215009629726, + 0.02855842001736164, + -0.029538623988628387, + -0.04103616997599602, + 0.02993600443005562, + 0.008119810372591019, + 0.00758996931836009, + -0.036373570561409, + -0.004434105008840561, + 0.005185816902667284, + -0.050679273903369904, + -0.031578510999679565, + 0.00865627359598875, + -0.04360589757561684, + 0.0043579405173659325, + -0.017789404839277267, + 0.012219453230500221, + 0.01363015454262495, + 0.014809050597250462, + 0.019604109227657318, + -0.015365383587777615, + -0.002278315369039774, + -0.017378779128193855, + 0.005301719531416893, + -0.020703529939055443, + -0.0012567160883918405, + -0.006993898656219244 + ], + "metadata": { + "source": "Thesis_Verladegeraeusche_in_Speditionen.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 41, + "has_images": true, + "image_count": 51, + "coordinates": "CoordinatesMetadata(points=((204.16666666666666, 189.02777777777797), (204.16666666666666, 642.3611111111111), (936.1666666666666, 642.3611111111111), (936.1666666666666, 189.02777777777797)), system=)", + "links": [], + "last_modified": "2025-05-05T22:59:16", + "_known_field_names": "frozenset({'cc_recipient', 'link_texts', 'url', 'filetype', 'category_depth', 'page_number', 'filename', 'orig_elements', 'detection_origin', 'email_message_id', 'page_name', 'coordinates', 'table_as_cells', 'link_start_indexes', 'sent_to', 'bcc_recipient', 'languages', 'last_modified', 'link_urls', 'file_directory', 'subject', 'data_source', 'detection_class_prob', 'image_base64', 'text_as_html', 'attached_to_filename', 'key_value_pairs', 'signature', 'sent_from', 'header_footer_type', 'parent_id', 'links', 'emphasized_text_contents', 'emphasized_text_tags', 'image_mime_type', 'is_continuation', 'image_path'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "Thesis_Verladegeraeusche_in_Speditionen.pdf", + "detection_class_prob": 0.2568194270133972, + "parent_id": "d45475a34bc527cde6987546fa6dd2f5", + "text_as_html": "
Flurf\u00f6rderger\u00e4t |Anzahl Einzelereignisse ElMax-PegelSchallleistungspegel
LAFmaxLWA,5sLWAmaxLWA,1hKlLWAT,1h
[dB(A)][dB(A)][dB(A)][dB(A)][dB(A)][dB(A)]
Gabelstapler29769,3100,7108,872,15,777,8
STABW [dB]6,54,96,54,92,9-
Gabelhubwagen9968,6100,7108,172,16,279,5
STABW [dB]6,45,16,4512,7-
", + "id": "5ba44de7-0ff3-4c0c-b018-67e92171e1c2", + "processing_timestamp": "2025-05-06T14:18:19.298665", + "chunk_number": 43, + "total_chunks": 49, + "chunking_strategy": "hybrid", + "word_count": 232 + } +} \ No newline at end of file diff --git a/data/processed/85fd305f-83de-70b0-47e8-2dc000000044.json b/data/processed/85fd305f-83de-70b0-47e8-2dc000000044.json new file mode 100644 index 0000000000000000000000000000000000000000..c2f2c9af8a8dc374f04f66033874e6a853f2d4e7 --- /dev/null +++ b/data/processed/85fd305f-83de-70b0-47e8-2dc000000044.json @@ -0,0 +1,1570 @@ +{ + "id": "85fd305f-83de-70b0-47e8-2dc000000044", + "content": "Universit\u00e4t Bay- reuth, Digitale Medien,, Bayreuth. - [47] Bellton AG - Optimale Raumakustik: AKUSTIK -ABC | SCHALLSCHNELLE, 2023, https://bellton.ch/akustik-abc/schallschnelle [Zugriff am: 13.04.2023]. - [48] H\u00f6gel,biancahoegel.de, Bianca: Schallschnelle, 2022, https://www.bian- cahoegel.de/physik/akustik/schallschnelle.html [Zugriff am: 13.04.2023]. - [49] Friedrich Sch\u00f6nholtz (Hrsg. ): Technische Publikationen - Grundlagen der Schall- technik \u2013 Luftschall, Schallfeldgr\u00f6\u00dfen, Schallgeschwindigkeit, Schalldruck, Schall- leistung, Dezibel, Oktavspektrum, Terzspektrum, Phon und Schallausbreitung etc. TROX TLT GmbH, 36251 Bad Hersfeld, 2013. - [50] H\u00f6gel,biancahoegel.de, Bianca: Logarithmische Gr\u00f6\u00dfe, 2022, https://www.bian- cahoegel.de/technik/messen/einheiten/gross_logarith.html [Zugriff am: 13.04.2023]. - [51] Hessisches Landesamt f\u00fcr Naturschutz, Umwelt und Geologie: Ermittlungsverfah- ren, 2023, https://www.hlnug.de/themen/laerm/industrie-und-gewerbeanlagen- laerm/ermittlungsverfahren [Zugriff am: 14.04.2023]. ## IV\n\nAbschlie\u00dfende Bewertung und Ausblick\n- [52] DIN EN ISO 3745: Bestimmung der Schallleistungs- und Schallenergiepegel von Ge- r\u00e4uschquellen aus Schalldruckmessunge. Ausgabe Oktober 2017. - [53] NTi Audio: Wie werden Perzentile gemessen?, 2023, https://www.nti-au- dio.com/de/service/wissen/wie-werden-perzentile-gemessen [Zugriff am: 14.04.2023]. - [54] Ministerium f\u00fcr Landesentwicklung und Wohnen: St\u00e4dtebauliche L\u00e4rmfibel \u2013 Hin- weise f\u00fcr die Bauleitplanung. Ministerium f\u00fcr Landesentwicklung und Wohnen. Kohlhammer-Verlag, 70173 Stuttgart, 2018. - [55] Schulze, C.; H\u00fcbelt, J.: Bestimmung der vertikalen Richtcharakteristik der Schallab- strahlung von Pkw, Transportern und Lkw \u2013 Bericht zum Forschungsprojekt FE 02.274/2006/LRB. [56] DAGA - Fortschritte der Akustik. - [57] Hirsch, K.-W.; Buchta, E.; Institut f\u00fcr L\u00e4rmschutz, D\u00fcsseldorf (Hrsg. ): Zur mathema- tischen Darstellung der Richtcharakterisitk einer Punktschallquelle, Dresden 1994,\n- [58] Polarkoordinatensystem in Mathematik | Sch\u00fclerlexikon | Lernhelfer, 2023, https://www.lernhelfer.de/schuelerlexikon/mathematik-abitur/artikel/polarkoor- dinatensystem# [Zugriff am: 25.05.2023]. - [59] Patrick Planing: Deskriptive Statistik \u2013 Kennwerte. - [60] Reinhold Kosfeld,Hans Friedrich Eckey, Matthias T\u00fcrck: Deskriptive Statistik \u2013 Grundlagen, Methoden, Beispiele und Aufgaben. Universit\u00e4t Kassel, Siemens Fi- nancial Services. Springer Gabler Wiesbaden, 2016. - [61] MassMatics UG: H\u00e4ufigkeitsverteilung, 2023, https://www.massmatics.de/merk- zettel/#!814:Haeufigkeitsverteilung [Zugriff am: 23.05.2023]. - [62] Akustikb\u00fcro Schwartzenberger und Burkhart: Mittelung von Schallpegeln | Akus- tikb\u00fcro Schwartzenberger und Burkhart, 27.11.20217, https://akustikbu- ero.com/lexikon/mittelung-von-schallpegeln/ [Zugriff am: 23.05.2023]. - [63] W.A.", + "embedding": [ + 0.013543755747377872, + 0.009777930565178394, + 0.015631476417183876, + -0.030153024941682816, + 0.009341888129711151, + 0.004694067407399416, + -0.025079071521759033, + -0.011356934905052185, + -0.012658456340432167, + -0.02551511488854885, + 0.03874174878001213, + 0.015856103971600533, + -0.005103683564811945, + -0.008753891102969646, + -0.011766551062464714, + -0.0018548339139670134, + 0.01734922081232071, + 0.013623036444187164, + 0.014799030497670174, + 0.007498615887016058, + 0.0012098537990823388, + 0.02115468494594097, + -0.008740677498281002, + 0.019344447180628777, + -0.020309027284383774, + 0.012156346812844276, + 0.023044204339385033, + -0.018815910443663597, + -0.010623590089380741, + 0.002971367910504341, + 0.022819576784968376, + 0.00907101295888424, + -0.02324240654706955, + 0.02165679633617401, + 0.005645433906465769, + -0.008786924183368683, + -0.01179958414286375, + -0.009599549695849419, + 0.02901666983962059, + 0.0011776461033150554, + 0.008271601051092148, + 0.02436554618179798, + 0.012704703956842422, + -0.016331788152456284, + -0.01059055607765913, + 0.008192320354282856, + 0.011720303446054459, + 0.00023598343250341713, + -0.012764164246618748, + 0.002745087957009673, + 0.02751034125685692, + 0.012645242735743523, + -0.002160394098609686, + 0.01244704145938158, + -0.006950259208679199, + -0.021670009940862656, + -0.009956312365829945, + 0.030681561678647995, + -0.0010587252909317613, + 0.00010973332246067002, + -0.01564469002187252, + -0.02498657815158367, + -0.028118157759308815, + 0.007399515248835087, + -0.018445935100317, + -0.021286819130182266, + -0.036046210676431656, + -0.008562296628952026, + -0.023903077468276024, + -0.01262542326003313, + 0.024325907230377197, + 0.019251953810453415, + 0.0035808368120342493, + 0.014838671311736107, + 0.02769532799720764, + -0.00182840705383569, + 0.024590175598859787, + -0.0072409543208777905, + 0.001255274866707623, + 0.009123866446316242, + 0.020282600075006485, + -0.004152317065745592, + -0.011284261010587215, + 0.03131580725312233, + 0.013497509062290192, + 0.005252334289252758, + -0.013860877603292465, + 0.0126980971544981, + -0.02295171096920967, + -0.0001259404089068994, + 0.013332340866327286, + 0.01878948323428631, + 0.011812797747552395, + 0.018961258232593536, + 0.011409788392484188, + 0.002835930325090885, + 0.011700483970344067, + 0.013649462722241879, + -0.018842337653040886, + -0.017785264179110527, + -0.026347558945417404, + -0.022291040048003197, + 0.016807470470666885, + -0.004892268683761358, + -0.025581181049346924, + -0.009467415511608124, + -0.0019142942037433386, + 0.024814803153276443, + 0.01300861220806837, + -0.01608073152601719, + -0.024312693625688553, + 0.008522655814886093, + -0.006567069794982672, + -0.010286647826433182, + 0.04717190936207771, + -0.009863818064332008, + 0.01974084973335266, + -0.0005809775902889669, + -0.008383914828300476, + -0.018049532547593117, + 0.036099065095186234, + 0.02247602678835392, + 0.002318955259397626, + -0.014177999459207058, + 0.012731130234897137, + 0.005358041729778051, + 0.0007837209850549698, + -0.019251953810453415, + -0.0063292281702160835, + -0.019185885787010193, + -0.006246644537895918, + -0.009586336091160774, + 0.016477134078741074, + 0.02592473104596138, + 0.003537893295288086, + 0.009692043997347355, + -0.01478581689298153, + 0.0034652194008231163, + -0.025871876627206802, + -0.02698180451989174, + 0.01123801339417696, + 0.01979370415210724, + -0.03572908788919449, + -0.026995018124580383, + -0.016767829656600952, + 0.04595627635717392, + 0.006164060439914465, + 0.014164786785840988, + 0.006950259208679199, + 0.011568349786102772, + -0.014614042825996876, + -0.01655641570687294, + 0.011482462286949158, + 0.025990797206759453, + -0.009249393828213215, + 0.009493842720985413, + 0.012301694601774216, + 0.025594394654035568, + -0.019251953810453415, + -0.0020976304076611996, + -0.002700492739677429, + 0.0012304997071623802, + 0.009130473248660564, + -0.0025997404009103775, + 0.015710756182670593, + 0.00113965745549649, + 0.0055826702155172825, + -0.013636250048875809, + -0.013583395630121231, + -0.013556969352066517, + -0.03316568583250046, + 0.025581181049346924, + 0.005083863623440266, + 0.017362434417009354, + -0.0077034239657223225, + 0.017772050574421883, + 0.015684328973293304, + -0.0007366481586359441, + -0.01849878765642643, + -0.03126295283436775, + -0.017137806862592697, + 0.007828951813280582, + 0.008978518657386303, + 0.023374540731310844, + -0.027087511494755745, + 0.04381570219993591, + 0.01411193236708641, + 0.010841610841453075, + 0.014072292484343052, + -0.014904738403856754, + 0.018604496493935585, + 0.01006201934069395, + 0.0017722499324008822, + -0.021696435287594795, + -0.632975697517395, + 0.0032455462496727705, + 0.010828398168087006, + 0.007247561123222113, + -0.0008621756569482386, + 0.04386855661869049, + 0.020784709602594376, + -0.005803994834423065, + -0.012850050814449787, + 0.03702400252223015, + 0.0026790208648890257, + -0.0019621928222477436, + -0.016305360943078995, + -0.0022330679930746555, + -0.006273071281611919, + -0.0025287182070314884, + 0.0061376336961984634, + -0.018300587311387062, + 0.02949235402047634, + -0.005407592281699181, + -0.028805255889892578, + 0.020427947863936424, + 0.0063688685186207294, + -0.0051730540581047535, + 0.00523581774905324, + 0.011852437630295753, + 0.0192915927618742, + -0.015089726075530052, + 0.004089553374797106, + -0.011892078444361687, + -0.027853889390826225, + 0.007399515248835087, + -0.02194749005138874, + 0.01646392233669758, + 0.04471421241760254, + 0.009863818064332008, + 0.0021851693745702505, + 0.007300414610654116, + 0.006758664269000292, + 0.0033132650423794985, + 0.0025006397627294064, + -0.009355101734399796, + 0.003106805495917797, + 0.0018746539717540145, + -0.005952645558863878, + 0.014204426668584347, + 0.050739534199237823, + -0.020969698205590248, + 0.005249031353741884, + -0.04257363826036453, + 0.011429608799517155, + -0.0006553030689246953, + 0.029333792626857758, + 0.012823624536395073, + 0.032716426998376846, + 0.0141383595764637, + 0.048176128417253494, + -0.0061838808469474316, + -0.016212865710258484, + -0.010055412538349628, + -0.0012767467414960265, + 0.014402627944946289, + -0.0016665426082909107, + -0.022912070155143738, + -0.03599335625767708, + 0.01346447505056858, + -0.013556969352066517, + -0.01277077104896307, + 0.02583223581314087, + -0.009612763300538063, + -0.012394187971949577, + 0.02568688802421093, + -0.004895572084933519, + -0.000970360531937331, + 0.031210098415613174, + 0.013424835167825222, + 0.019463367760181427, + -0.012010999023914337, + 0.0035709268413484097, + 0.014442267827689648, + -0.01201760582625866, + -0.01175333745777607, + 0.004644517321139574, + -0.0060979933477938175, + 0.020018331706523895, + -0.02774818241596222, + -0.009328674525022507, + 0.015618262812495232, + 0.01262542326003313, + 0.004578450229018927, + 0.023519888520240784, + 0.026440054178237915, + 0.0038351952098309994, + -0.003422275884076953, + 0.01304825209081173, + 0.025052644312381744, + -0.01285665761679411, + 0.015393634326756, + -0.003187737660482526, + -0.02772175520658493, + -0.01820809207856655, + -0.005562849808484316, + 0.02000511810183525, + -0.010643409565091133, + 0.0011272699339315295, + -0.0014708188828080893, + 0.00584033178165555, + 0.0027896834071725607, + 0.024828016757965088, + -0.02206641249358654, + -0.0006445671315304935, + -0.024854443967342377, + -0.023163124918937683, + -0.012242233380675316, + -0.009817571379244328, + -0.027021443471312523, + 0.03871532157063484, + -0.005784174893051386, + 0.0026790208648890257, + -0.013246453367173672, + 0.009256000630557537, + -0.008509442210197449, + 0.04008951783180237, + -0.02345382049679756, + -0.022145692259073257, + 0.02283279038965702, + 0.017137806862592697, + 0.012288480997085571, + -0.013497509062290192, + -0.010808577761054039, + 0.012295087799429893, + -0.013206813484430313, + 0.02566046267747879, + 0.012050638906657696, + 0.0253961943089962, + 0.019608715549111366, + 0.02721964567899704, + -0.012275267392396927, + 0.01300861220806837, + -0.027431059628725052, + -0.0300737451761961, + -0.018300587311387062, + 0.0021025855094194412, + -0.02930736541748047, + -0.02949235402047634, + -0.03697114810347557, + -0.02424662560224533, + 0.011257833801209927, + 0.013887304812669754, + 0.004149014130234718, + -0.011687270365655422, + -0.017151018604636192, + 0.0010455119190737605, + 0.02566046267747879, + 0.0028739189729094505, + -0.0034586128313094378, + -0.01814202591776848, + -0.026558974757790565, + -0.011112486012279987, + -0.02094327099621296, + 0.029333792626857758, + 0.015895744785666466, + -0.033271390944719315, + -0.016833897680044174, + 0.02130003273487091, + -0.01206385251134634, + 0.008291421458125114, + -0.0013271229108795524, + -0.024960150942206383, + -0.031447939574718475, + 0.010881251655519009, + 0.01148906908929348, + -0.0028706155717372894, + 0.010940711945295334, + 0.0033677704632282257, + -0.016212865710258484, + -0.02566046267747879, + -0.0010686353780329227, + -0.018723417073488235, + -0.007406122051179409, + 0.04106730967760086, + 0.004172137472778559, + -0.0036997576244175434, + 0.011290867812931538, + 0.033720649778842926, + 0.011211587116122246, + 0.008753891102969646, + 0.011482462286949158, + -0.022793149575591087, + 0.0126980971544981, + 0.014376200735569, + 0.019251953810453415, + -0.03057585470378399, + 0.019701208919286728, + -0.040670908987522125, + -0.009533482603728771, + -0.017983464524149895, + -0.015869317576289177, + -0.0012883084127679467, + 0.020467588678002357, + 0.03432846441864967, + 0.019780490547418594, + 0.025079071521759033, + -0.024761948734521866, + 0.016662122681736946, + -8.057089144131169e-05, + 0.018551642075181007, + -0.0021042372100055218, + 0.03152722120285034, + 0.003673330880701542, + 0.019080178812146187, + -0.010187546722590923, + -0.022317467257380486, + -0.017957037314772606, + 0.006064959801733494, + 0.041727982461452484, + -6.684132677037269e-05, + 0.010418782010674477, + 0.03409062325954437, + -0.005222604144364595, + 0.015208646655082703, + 0.0009257652563974261, + 0.03612549230456352, + 0.017890971153974533, + -0.017402075231075287, + -0.003769128117710352, + 0.005232514347881079, + 0.023704875260591507, + 0.0015459702117368579, + -0.010213973931968212, + -0.00692383199930191, + -0.01047163549810648, + 0.01732279360294342, + 0.0001951044105226174, + 0.012077066116034985, + 0.028910962864756584, + 0.02185499668121338, + -0.007267381064593792, + 0.016767829656600952, + 0.025885090231895447, + 0.021485021337866783, + 0.01823451928794384, + 0.00245934771373868, + 0.012731130234897137, + 0.01717744581401348, + -0.014534762129187584, + 0.008337668143212795, + 0.03192362189292908, + -0.002939986065030098, + -0.027827462181448936, + -0.02082435041666031, + -0.0060550495982170105, + -0.022674228996038437, + -0.008020546287298203, + 0.04133157804608345, + -0.014693323522806168, + 0.010564129799604416, + -0.0028673121705651283, + -0.0076109301298856735, + 0.016860324889421463, + -0.005493479315191507, + 0.021868210285902023, + 0.02259494923055172, + -0.00798090547323227, + -0.00029131461633369327, + 0.005711500998586416, + -0.031712207943201065, + -0.007498615887016058, + -0.007762884255498648, + -0.008601936511695385, + -0.01576361060142517, + -0.0036766340490430593, + -0.008509442210197449, + 0.012480075471103191, + 0.013649462722241879, + -0.01387409120798111, + 0.012750950641930103, + 0.014878311194479465, + 0.02825029194355011, + 0.01296236552298069, + -0.01890840381383896, + -0.03438131883740425, + -0.010392354801297188, + 0.012440434657037258, + -0.013900518417358398, + -0.016992459073662758, + 0.009526875801384449, + 0.0106632299721241, + -0.04603555426001549, + -0.0024808195885270834, + -0.010524488985538483, + 0.005889881867915392, + -0.008258387446403503, + 0.0005367951816879213, + -0.0008175803814083338, + -0.004254721105098724, + 0.0026542458217591047, + 0.002733526285737753, + -0.0268364567309618, + 0.005794084630906582, + 0.010907677933573723, + -0.013411621563136578, + -0.017758836969733238, + -0.02120753936469555, + 0.011251226998865604, + -0.005021099466830492, + -0.02774818241596222, + -0.011865651234984398, + -0.00854247622191906, + -0.012645242735743523, + -0.001958889653906226, + -0.004003666341304779, + -0.009355101734399796, + 0.026373986154794693, + 0.007531649433076382, + 0.006785091478377581, + 0.012195986695587635, + -0.022224972024559975, + 0.04756831377744675, + 0.002322258660569787, + -0.025792596861720085, + -0.009764717891812325, + 0.001498071476817131, + 0.006771877873688936, + 0.013623036444187164, + 0.011621203273534775, + 0.0018465754110366106, + 0.04267934709787369, + -0.017957037314772606, + -0.02595115639269352, + -0.014600829221308231, + -0.03670687973499298, + 0.005638827104121447, + -0.0013733698287978768, + 0.00012015953689115122, + 0.0010207367595285177, + 0.012572568841278553, + -0.0026790208648890257, + -0.004182047676295042, + -0.011588169261813164, + 0.021260393783450127, + -0.0036469039041548967, + 0.010874644853174686, + -0.0010479893535375595, + -0.020322240889072418, + 0.0022446296643465757, + 0.016371427103877068, + 0.035808369517326355, + 0.0030935918912291527, + -0.024206986650824547, + 0.011548529379069805, + 0.011792977340519428, + 0.022132478654384613, + -0.022000344470143318, + 0.007108820136636496, + 0.022634588181972504, + 0.01489152479916811, + 0.015221860259771347, + -0.022053198888897896, + -0.014799030497670174, + 0.00665626022964716, + -0.008549083024263382, + 0.013305913656949997, + -0.0014220942975953221, + 0.01384766399860382, + 0.03292784467339516, + -0.0004765089543070644, + -0.009143686853349209, + -0.00013832798867952079, + -0.006890798453241587, + -0.018075957894325256, + 0.025726528838276863, + 0.007016326300799847, + 0.006144240498542786, + 0.01756063476204872, + -0.005113593768328428, + -0.0025964369997382164, + -0.009249393828213215, + -0.017032098025083542, + -0.020401520654559135, + -0.00832445453852415, + -0.013913731090724468, + 0.013794810511171818, + -0.02374451607465744, + -0.010174333117902279, + -0.010028986260294914, + 0.015221860259771347, + -0.012480075471103191, + -0.024140918627381325, + -0.026968590915203094, + -0.021498234942555428, + -0.006983292754739523, + -0.018247732892632484, + 0.018393080681562424, + 0.013200206682085991, + -0.027853889390826225, + -0.024352332577109337, + 0.0048559317365288734, + 0.005932825617492199, + -0.0019291593926027417, + 0.02250245399773121, + 0.0020216533448547125, + -0.008740677498281002, + 0.02341417968273163, + -0.01909339241683483, + -0.006576979998499155, + -0.01322663389146328, + -0.0323464535176754, + 0.0036270837299525738, + 0.014270493760704994, + -0.01411193236708641, + -0.0034718262031674385, + 0.02338775433599949, + -0.006246644537895918, + -0.0008122124127112329, + -0.009962919168174267, + 0.014244066551327705, + -0.009949705563485622, + 0.008912451565265656, + -0.0028574021998792887, + 0.0253961943089962, + 0.006438239011913538, + 0.01837986707687378, + -0.007425941992551088, + 0.01156174298375845, + -0.01044520828872919, + 0.008040365763008595, + -0.006111206952482462, + 0.023493461310863495, + 0.010438601486384869, + -0.005106986965984106, + 0.019489794969558716, + 0.008945485576987267, + -0.011363541707396507, + 0.007425941992551088, + -0.007934658788144588, + 0.006616620346903801, + -0.0025287182070314884, + -0.0032339845784008503, + 0.012526322156190872, + 0.024999791756272316, + 0.003861621953547001, + -0.005694983992725611, + -0.003382635535672307, + -0.015248286537826061, + -0.029122378677129745, + 0.02398235723376274, + -0.010643409565091133, + -0.019846556708216667, + 0.04310217499732971, + -0.013596609234809875, + 0.003917779307812452, + -0.021405741572380066, + 0.01652998849749565, + 0.007366481702774763, + 0.0036865442525595427, + 0.014151573181152344, + -0.012823624536395073, + -0.04051234573125839, + -0.0268364567309618, + 0.0036436005029827356, + 0.005285367835313082, + -0.02453732118010521, + -0.002262798137962818, + -0.003270321525633335, + 0.012618816457688808, + -0.021141471341252327, + 0.014376200735569, + -0.004049913492053747, + -0.03150079399347305, + -0.030945830047130585, + 0.007055966183543205, + -0.0024494377430528402, + 0.019582288339734077, + -0.017217086628079414, + -0.010425388813018799, + -0.015102939680218697, + -0.0019060358172282577, + -0.03160650283098221, + -0.03720899298787117, + 0.006851158570498228, + -0.013477688655257225, + 0.01163441687822342, + 0.018749842420220375, + 0.033244963735342026, + 0.012044032104313374, + 0.00904458574950695, + 0.03136865794658661, + -0.007782704662531614, + 0.004816291853785515, + -0.01409871969372034, + -0.0096457963809371, + -0.022806363180279732, + 0.00827820785343647, + 0.0018118902808055282, + 0.008337668143212795, + 0.0023073935881257057, + 0.013378587551414967, + 0.008701037615537643, + 0.04653766751289368, + -0.009830784983932972, + 0.0018218002514913678, + -0.006930438801646233, + -0.025885090231895447, + -0.02091684378683567, + -0.015776824206113815, + 0.020877202972769737, + 0.005519906058907509, + -0.02429948002099991, + -0.014045865274965763, + 0.028038877993822098, + 0.005655343644320965, + 0.00039660907350480556, + -0.012526322156190872, + 0.02259494923055172, + -0.030998684465885162, + 0.047066204249858856, + 0.0017953735077753663, + -0.0034751296043395996, + -0.02925451286137104, + -0.008291421458125114, + -0.028038877993822098, + -0.023427393287420273, + 0.01387409120798111, + 0.004274541512131691, + 0.004581753630191088, + 0.0006974208517931402, + -0.006504306104034185, + -0.0035081631503999233, + -0.015208646655082703, + 0.008555689826607704, + -0.03002089075744152, + -0.005747837945818901, + -0.0030225699301809072, + -0.012308300472795963, + -0.027801036834716797, + -0.014984018169343472, + -0.035041991621255875, + 0.029360219836235046, + 0.008245173841714859, + -0.007987512275576591, + 0.026136144995689392, + -0.012658456340432167, + 0.012585782445967197, + -0.0034685228019952774, + -0.0018944741459563375, + 0.019304806366562843, + 0.008179106749594212, + 0.025290485471487045, + 0.022053198888897896, + -0.009051192551851273, + -0.031025109812617302, + -0.06532715260982513, + 0.004386855289340019, + -0.01614679954946041, + 0.03390563651919365, + -0.0033776804339140654, + -0.03311283141374588, + 0.019318019971251488, + 0.02391629107296467, + 0.025316912680864334, + -0.017018884420394897, + -0.011541922576725483, + 0.02772175520658493, + 0.02515835128724575, + 0.0004888965631835163, + -0.017256727442145348, + 0.025026217103004456, + -0.01111909281462431, + 0.009507055394351482, + 0.0006123594357632101, + -0.011977965012192726, + -0.026532547548413277, + -0.01329930778592825, + -0.01923874020576477, + 0.0361783429980278, + 0.018934831023216248, + 0.0253961943089962, + 0.02427305281162262, + -0.02274029701948166, + 0.019423726946115494, + -0.030945830047130585, + -0.025197992101311684, + -0.0018300586380064487, + -0.027298925444483757, + 0.030972257256507874, + -0.017256727442145348, + -0.009084226563572884, + 0.009659009985625744, + -0.00040053180418908596, + 0.0019621928222477436, + 0.001709486241452396, + 0.0025353250093758106, + 0.02235710620880127, + -0.03538553789258003, + -0.015657903626561165, + -0.007835558615624905, + -0.010009165853261948, + 0.011594776064157486, + -2.3420270736096427e-05, + -0.007234347518533468, + -0.010650016367435455, + -0.0006569547113031149, + -0.005301884841173887, + -0.009282427839934826, + 0.02477516233921051, + 0.004961639177054167, + -0.020903630182147026, + -0.01243382878601551, + -0.015975024551153183, + 0.004561933223158121, + 0.004106070380657911, + 0.006864371709525585, + -0.04896893352270126, + -0.0017672949470579624, + -0.002327213529497385, + -0.014468695037066936, + 0.01297557819634676, + -0.007809131406247616, + -0.011350328102707863, + -0.008364095352590084, + 0.006844551768153906, + -0.03842462599277496, + 0.011977965012192726, + 0.0364161841571331, + -0.02077149599790573, + -0.01787775754928589, + 0.005414199084043503, + -0.0024395277723670006, + -0.008139466866850853, + 0.014547975733876228, + 0.009797750972211361, + -0.0003148510295432061, + -0.007994119077920914, + -0.015406847931444645, + 0.017930611968040466, + -0.01501044537872076, + -0.0029895363841205835, + 0.015776824206113815, + 0.022013558074831963, + 0.004664337262511253, + -0.0021967310458421707, + -0.013623036444187164, + -0.0004339782753959298, + 0.021379314363002777, + -0.007042753044515848, + 0.01602787896990776, + -0.01787775754928589, + 0.024907296523451805, + 0.011515495367348194, + -0.011066239327192307, + -0.014059078879654408, + -0.028620267286896706, + -0.009725077077746391, + 0.014812244102358818, + 0.004882358945906162, + -0.02053365483880043, + -0.0010265175951644778, + -0.019608715549111366, + 0.0016161664389073849, + -0.013233240693807602, + 0.01626572012901306, + 0.0017904184060171247, + 0.025871876627206802, + 0.006785091478377581, + 0.005083863623440266, + -0.006431632209569216, + 0.02056008204817772, + 0.00975150428712368, + -0.016979245468974113, + 0.012565962970256805, + -0.0064217220060527325, + -0.02957163378596306, + 0.00033363886177539825, + 0.011158733628690243, + 0.032980695366859436, + 0.021247180178761482, + -0.018075957894325256, + -0.01013469323515892, + 0.027801036834716797, + -0.01660926826298237, + -0.021115045994520187, + -0.012572568841278553, + 0.019569074735045433, + 0.005698287393897772, + 0.024233411997556686, + -0.008284814655780792, + 0.03670687973499298, + -0.017018884420394897, + 0.02127360738813877, + -0.03871532157063484, + -0.021511448547244072, + 0.026294706389307976, + -0.005843635182827711, + 0.00654064305126667, + -0.009672223590314388, + -0.03755253925919533, + 0.004409979097545147, + 0.029148804023861885, + -0.012744343839585781, + 0.0011421350063756108, + 0.028620267286896706, + -0.011508888565003872, + -0.034249186515808105, + 0.019978690892457962, + 0.00045916636008769274, + -0.004347215406596661, + 0.011898685246706009, + 0.005675164051353931, + -0.04669622704386711, + 0.018247732892632484, + 0.00497154938057065, + 0.002462651114910841, + -0.038662467151880264, + -0.0027500430587679148, + 0.02498657815158367, + -0.0126386359333992, + 0.0038946554996073246, + 0.005754444282501936, + -0.023572741076350212, + 0.02026938647031784, + -0.020044758915901184, + 0.040485918521881104, + -0.003765824716538191, + -0.01794382371008396, + 0.008080006577074528, + 0.012797197327017784, + -0.026968590915203094, + -0.013332340866327286, + 0.018459148705005646, + -0.021128259599208832, + -0.005341525189578533, + 0.006240037735551596, + -0.013266273774206638, + 0.020401520654559135, + -0.03287499025464058, + 0.008416948840022087, + 0.0031844342593103647, + -0.022000344470143318, + -0.033773500472307205, + -0.025700101628899574, + -0.04281148314476013, + 0.020480800420045853, + 0.03218789026141167, + -0.027933171018958092, + -0.0002023304987233132, + -0.014917951077222824, + -0.02801245078444481, + 0.0064646657556295395, + -0.020546868443489075, + -0.0012205897364765406, + -0.01878948323428631, + -0.01991262473165989, + 0.0072013139724731445, + -0.021260393783450127, + -0.015221860259771347, + 0.006897405255585909, + -0.012156346812844276, + -0.026823243126273155, + -0.017375648021697998, + 0.18826481699943542, + -0.022436387836933136, + -0.0027483913581818342, + 0.003227377776056528, + -0.021934278309345245, + -0.024524107575416565, + 0.023374540731310844, + -0.003808768466114998, + 0.005252334289252758, + 0.021987130865454674, + -0.000832032528705895, + 0.0089256651699543, + -0.004320788197219372, + 0.007412728853523731, + 0.01175333745777607, + -0.018948044627904892, + -0.031025109812617302, + -0.021868210285902023, + -0.011627810075879097, + 0.030866550281643867, + 0.004370338749140501, + -0.013457868248224258, + -0.012744343839585781, + 0.0019886197987943888, + 0.04849325120449066, + 0.01157495565712452, + -0.004449619445949793, + 0.0014410886215046048, + 0.01732279360294342, + 0.02173607610166073, + -0.007683604024350643, + -0.005420805420726538, + 0.0021934276446700096, + 0.02288564294576645, + -0.02530369907617569, + -0.009156900458037853, + 0.027113938704133034, + -0.015565409325063229, + 0.022846003994345665, + 0.03805464878678322, + -0.007657176814973354, + -0.016014665365219116, + -0.005698287393897772, + -0.03438131883740425, + 0.008826564997434616, + 0.028752401471138, + -0.011356934905052185, + 0.0024841229896992445, + -0.002442830940708518, + 0.01670176349580288, + -0.005585973151028156, + 0.017402075231075287, + 0.025237632915377617, + 0.033271390944719315, + 0.004073036834597588, + -0.02674396149814129, + -1.9239461835240945e-05, + 0.014296920970082283, + 0.014376200735569, + 0.020758282393217087, + -0.025092285126447678, + 0.022674228996038437, + 0.0019489794503897429, + 0.020401520654559135, + -0.026202213019132614, + -0.0002964761224575341, + -0.013021825812757015, + 0.012922724708914757, + -0.007782704662531614, + -0.015486128628253937, + 0.005549636669456959, + -0.00776949105784297, + -0.039957381784915924, + 0.019489794969558716, + -0.016120372340083122, + -0.021934278309345245, + 0.038662467151880264, + 0.0178513303399086, + 0.02556796744465828, + 0.017520995810627937, + 0.007386301644146442, + 0.0057313209399580956, + -0.019318019971251488, + -0.0004975678748451173, + 0.0004102353996131569, + -0.004598270170390606, + 0.008390521630644798, + 0.005358041729778051, + 0.020863991230726242, + -0.009348494932055473, + -0.026294706389307976, + 0.016728190705180168, + 0.008608543314039707, + -0.012361154891550541, + 0.00918993353843689, + -0.01411193236708641, + 0.013054858893156052, + -0.002223158022388816, + -0.001639289897866547, + 0.015393634326756, + -0.011654236353933811, + 0.04294361546635628, + 0.02556796744465828, + -0.019516222178936005, + -0.0039871493354439735, + -0.02300456538796425, + -0.009659009985625744, + 0.0070229326374828815, + 0.015948597341775894, + -0.012103493325412273, + -0.012836838141083717, + -0.017692768946290016, + 0.007921445183455944, + -0.010306467302143574, + 0.010940711945295334, + 0.022793149575591087, + 0.007597716525197029, + 0.0011941628763452172, + 0.01384766399860382, + -0.00593612901866436, + 0.005833724979311228, + 0.00340245570987463, + 0.003029176499694586, + 0.013834451325237751, + 0.013523935340344906, + -0.03514769673347473, + -0.03649546578526497, + 0.01667533628642559, + -0.005741231143474579, + -0.0054967827163636684, + 0.021366100758314133, + 0.007359874900430441, + 0.020229745656251907, + 0.007108820136636496, + -0.0029548511374741793, + 0.01622607931494713, + -0.003944206051528454, + -0.022898856550455093, + -0.017190659418702126, + 0.0054571423679590225, + 0.008364095352590084, + -0.0151557931676507, + 0.00629619462415576, + 0.007961085997521877, + 0.01696603186428547, + -0.0126980971544981, + 0.02377094328403473, + -0.00497154938057065, + -0.03290141746401787, + -0.014429055154323578, + -0.009810964576900005, + -0.014270493760704994, + -0.007307021412998438, + -0.024471255019307137, + 0.0161732267588377, + 0.02321597933769226, + -0.01897447183728218, + -0.025819022208452225, + -0.011132306419312954, + 0.031157243996858597, + -0.001215634634718299, + -0.01746814139187336, + 0.0056784674525260925, + -0.012929331511259079, + -0.00929564144462347, + -0.005797388032078743, + -0.16712333261966705, + 0.012229020707309246, + 0.01814202591776848, + -0.006884192116558552, + -0.0063688685186207294, + 0.01462725643068552, + 0.011178553104400635, + 0.008007332682609558, + -0.01425728015601635, + -0.0076505704782903194, + 0.0016186439897865057, + 0.002462651114910841, + -0.004651124123483896, + -0.01425728015601635, + -0.008668003603816032, + -0.02386343665421009, + -0.0016013013664633036, + 0.0392967127263546, + 0.021247180178761482, + 0.010702870786190033, + -0.011839224025607109, + -0.022462815046310425, + 0.019991904497146606, + 0.01076893787831068, + -0.01266506314277649, + 0.013438048772513866, + -0.011006779037415981, + 0.011779763735830784, + -0.005106986965984106, + -0.019066965207457542, + -0.02433912083506584, + -0.01076893787831068, + 0.02026938647031784, + -0.009440988302230835, + -0.018393080681562424, + -0.013074679300189018, + -0.004961639177054167, + -0.009335281327366829, + -0.010075232945382595, + 0.048387546092271805, + 0.015565409325063229, + 0.0332978181540966, + -0.016001451760530472, + 0.0076637836173176765, + -0.018445935100317, + 0.028805255889892578, + 0.017309579998254776, + -0.01111909281462431, + -0.014349774457514286, + -0.02259494923055172, + -0.015710756182670593, + -0.04088232293725014, + -0.002330516930669546, + 0.01652998849749565, + -0.003670027479529381, + 0.001884564058855176, + -4.129193712287815e-06, + 0.01705852523446083, + -0.003670027479529381, + -0.01660926826298237, + -0.012242233380675316, + -0.0043967654928565025, + 0.036548320204019547, + -0.0019076875178143382, + -0.0065076095052063465, + -0.01187225803732872, + 0.010967139154672623, + 0.014680109918117523, + -0.022132478654384613, + 0.0025518417824059725, + 0.012070459313690662, + -0.012598996050655842, + -0.0020216533448547125, + -0.010623590089380741, + -0.0030275247991085052, + -0.0022809666115790606, + -0.009969525970518589, + 0.004036699887365103, + 0.006415115669369698, + 0.0030655134469270706, + -0.019344447180628777, + 0.03335067257285118, + -0.004287754651159048, + -0.021907851099967957, + -0.01590895839035511, + -0.009051192551851273, + -0.023850223049521446, + 0.026321133598685265, + -0.009196540340781212, + 0.01411193236708641, + 0.009599549695849419, + -0.01814202591776848, + -0.01794382371008396, + -0.013649462722241879, + 0.010702870786190033, + -0.0005652866093441844, + -0.014389414340257645, + 0.00419856421649456, + -0.011647629551589489, + -0.00726077426224947, + 0.012380974367260933, + -0.013391801156103611, + -0.005972465965896845, + 0.02745748683810234, + 0.008952092379331589, + 0.005325008183717728, + -0.030496573075652122, + -0.0005355564644560218, + 0.03903244435787201, + -0.018459148705005646, + -0.01756063476204872, + 0.0005070649785920978, + 0.025409407913684845, + -0.00011654649279080331, + -0.02015046589076519, + -0.003225726308301091, + -0.019066965207457542, + -0.03356208652257919, + 0.01542006153613329, + 0.0033396920189261436, + 0.05206087604165077, + 0.012585782445967197, + -0.01985977031290531, + 0.0076109301298856735, + -0.0009637538460083306, + -0.0325842946767807, + -0.08081328123807907, + 9.419723210157827e-05, + 0.028646694496273994, + 0.023202765733003616, + 0.021722862496972084, + 0.033535659313201904, + 0.0006759490352123976, + 0.002315651858225465, + 0.0013849316164851189, + 0.038926735520362854, + -0.0016516775358468294, + -0.024722309783101082, + -0.019542647525668144, + -0.010313074104487896, + 0.03268999978899956, + -0.017838116735219955, + 0.00253367330878973, + -0.029677342623472214, + -0.043234311044216156, + 0.024352332577109337, + -0.004538809880614281, + -0.006071566604077816, + -0.0076637836173176765, + -0.013398407958447933, + -0.02412770502269268, + -0.016212865710258484, + -0.041675128042697906, + 0.02846170775592327, + 0.01512936595827341, + -0.014270493760704994, + 0.009447595104575157, + -0.02433912083506584, + -0.014415841549634933, + -0.029915183782577515, + -0.02618899941444397, + -0.01608073152601719, + -0.02681002952158451, + -0.012929331511259079, + 0.01602787896990776, + -0.033509232103824615, + -0.01643749512732029, + 0.02607007883489132, + 0.006352351978421211, + -0.006365565117448568, + 0.016411067917943, + -0.03131580725312233, + -0.00794126559048891, + 0.009553303010761738, + 0.017256727442145348, + -0.002067900262773037, + -0.017600275576114655, + -0.027272500097751617, + -0.0219210647046566, + -0.004997976124286652, + 0.03004731796681881, + -0.003881442127749324, + 0.0017078345408663154, + 0.007320234552025795, + -0.01693960465490818, + 0.007835558615624905, + -0.019304806366562843, + 0.03205575793981552, + -0.032505013048648834, + 0.024286266416311264, + 0.008377308025956154, + -0.0059592523612082005, + -0.0196483563631773, + 0.0018383170245215297, + 0.01823451928794384, + -0.017256727442145348, + -0.020718643441796303, + 0.008753891102969646, + 0.01006201934069395, + 0.030338013544678688, + -0.02872597612440586, + 0.010868038050830364, + -0.04910106956958771, + -0.011911897920072079, + 0.012242233380675316, + 0.005675164051353931, + -0.0033050067722797394, + -0.028065305203199387, + 0.015182219445705414, + 0.006742147728800774, + 0.003944206051528454, + 0.01059055607765913, + -0.018287373706698418, + -0.009764717891812325, + 0.016331788152456284, + -0.025700101628899574, + 0.0029267724603414536, + 0.014151573181152344, + 0.023202765733003616, + 0.0007424290524795651, + -0.02153787575662136, + 0.026466481387615204, + 0.014680109918117523, + -0.015737183392047882, + 0.001181775238364935, + 0.011674056760966778, + -0.03469844162464142, + 0.0015633127186447382, + -0.05322365462779999, + 0.026757175102829933, + 0.03623119741678238, + -0.016992459073662758, + -0.011396574787795544, + 0.004158923868089914, + -0.0031761759892106056, + -0.0011198373977094889, + 0.017428500577807426, + 0.005073953419923782, + -0.009474022313952446, + 0.006722327321767807, + -0.03644261136651039, + -0.01711137965321541, + -0.04281148314476013, + -0.020256172865629196, + 0.004281148314476013, + 0.007234347518533468, + 0.0012717916397377849, + -0.02542261965572834, + 0.014204426668584347, + 0.0032818831969052553, + -0.011389967985451221, + 0.019542647525668144, + -0.026677895337343216, + 0.002147180726751685, + 0.0006210307474248111, + -0.017692768946290016, + -0.017243513837456703, + -0.014072292484343052, + -0.000575609621591866, + -0.011964752338826656, + 0.006164060439914465, + 0.040697332471609116, + -0.007392908446490765, + -0.030787268653512, + 0.009956312365829945, + 0.02398235723376274, + -0.004400068894028664, + 0.047621164470911026, + -0.013596609234809875, + -0.021101832389831543, + -0.020216532051563263, + -0.029148804023861885, + 0.011773156933486462, + 0.003174524288624525, + 0.01955586113035679, + 0.011720303446054459, + 0.007115426938980818, + -0.010048805736005306, + 0.03586122393608093, + 0.03461915999650955, + -0.018075957894325256, + -8.619692380307242e-06, + 0.016384640708565712, + 0.024841230362653732, + 0.005827118176966906, + 0.0029267724603414536, + 0.03615191578865051, + -0.0012181121855974197, + 0.028831683099269867, + 0.01194493193179369, + 0.021617155522108078, + 0.0002923469291999936, + -0.0005025228601880372, + -0.011555136181414127, + -0.011812797747552395, + -0.026638254523277283, + -0.00548026617616415, + -0.026532547548413277, + -0.0033529053907841444, + -0.0005491827614605427, + 0.011581562459468842, + 0.040723759680986404, + -0.02056008204817772, + -0.007630750071257353, + 0.00034375538234598935, + 0.010762331075966358, + -0.010901072062551975, + 0.020427947863936424, + 0.01837986707687378, + 0.004023486282676458, + 0.0026740659959614277, + -0.004201867617666721, + 0.02616257220506668, + 0.0022661015391349792, + -0.013570182956755161, + -0.006857764907181263, + 0.00448595592752099, + 0.0071484604850411415, + 0.007055966183543205, + 0.008641576394438744, + 0.0126980971544981, + 0.0038781387265771627, + 0.014534762129187584, + 0.0020860687363892794, + 0.007108820136636496, + -0.01711137965321541, + 0.031183671206235886, + 0.03829248994588852, + 0.00776949105784297, + 0.0028111550491303205, + -0.01823451928794384, + -0.026136144995689392, + -0.007868591696023941, + 0.025739742442965508, + -0.00983739085495472, + -0.039191003888845444, + 0.016371427103877068, + 0.011568349786102772, + -0.010260220617055893, + 0.02451089397072792, + -0.008284814655780792, + 0.006438239011913538, + -0.02120753936469555, + 0.027774609625339508, + -0.0330599769949913, + -0.01938408799469471, + -0.04230936989188194, + 0.030681561678647995, + 0.011112486012279987, + 0.00987042486667633, + -0.007102213334292173, + -0.003494949545711279, + 0.004000362940132618, + -0.020573295652866364, + 0.02238353341817856, + -0.02135288715362549, + 0.010147906839847565, + -0.01818166673183441, + -0.010603769682347775, + -0.006395295262336731, + -0.026757175102829933, + -0.010101660154759884, + -0.013338947668671608, + -0.005064043216407299, + 0.03348280489444733, + -0.0032405913807451725, + 0.016714977100491524, + 0.10586592555046082, + 0.043287165462970734, + 0.0022049895487725735, + 0.0219210647046566, + -0.005820511374622583, + 0.01952943578362465, + 0.023969143629074097, + 0.004314181860536337, + 0.008245173841714859, + -0.053276509046554565, + -0.007214527577161789, + -0.011971358209848404, + 0.007174887228757143, + -0.028805255889892578, + -0.00236355047672987, + 0.01553898211568594, + 0.004320788197219372, + 0.027589621022343636, + -0.026004010811448097, + 0.008681217208504677, + 0.02666468173265457, + -0.020731857046484947, + -0.0007663783617317677, + 0.03517412394285202, + -0.029360219836235046, + -0.036310479044914246, + 0.013834451325237751, + 0.017811689525842667, + 0.006576979998499155, + -0.03342995420098305, + -0.0023486854042857885, + 0.008892632089555264, + -0.0642172247171402, + -0.034249186515808105, + 0.0015690936706960201, + -0.03749968484044075, + -0.011508888565003872, + -0.015750396996736526, + 0.008152680471539497, + 0.014455481432378292, + 0.007492009084671736, + 0.02165679633617401, + -0.013253060169517994, + -0.004935212433338165, + 0.004492562729865313, + -0.0034652194008231163, + -0.017256727442145348, + -0.006930438801646233, + -0.022753508761525154 + ], + "metadata": { + "source": "Thesis_Verladegeraeusche_in_Speditionen.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 41, + "has_images": true, + "image_count": 51, + "coordinates": "CoordinatesMetadata(points=((204.16666666666666, 189.02777777777797), (204.16666666666666, 642.3611111111111), (936.1666666666666, 642.3611111111111), (936.1666666666666, 189.02777777777797)), system=)", + "links": [], + "last_modified": "2025-05-05T22:59:16", + "_known_field_names": "frozenset({'cc_recipient', 'link_texts', 'url', 'filetype', 'category_depth', 'page_number', 'filename', 'orig_elements', 'detection_origin', 'email_message_id', 'page_name', 'coordinates', 'table_as_cells', 'link_start_indexes', 'sent_to', 'bcc_recipient', 'languages', 'last_modified', 'link_urls', 'file_directory', 'subject', 'data_source', 'detection_class_prob', 'image_base64', 'text_as_html', 'attached_to_filename', 'key_value_pairs', 'signature', 'sent_from', 'header_footer_type', 'parent_id', 'links', 'emphasized_text_contents', 'emphasized_text_tags', 'image_mime_type', 'is_continuation', 'image_path'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "Thesis_Verladegeraeusche_in_Speditionen.pdf", + "detection_class_prob": 0.2568194270133972, + "parent_id": "d45475a34bc527cde6987546fa6dd2f5", + "text_as_html": "
Flurf\u00f6rderger\u00e4t |Anzahl Einzelereignisse ElMax-PegelSchallleistungspegel
LAFmaxLWA,5sLWAmaxLWA,1hKlLWAT,1h
[dB(A)][dB(A)][dB(A)][dB(A)][dB(A)][dB(A)]
Gabelstapler29769,3100,7108,872,15,777,8
STABW [dB]6,54,96,54,92,9-
Gabelhubwagen9968,6100,7108,172,16,279,5
STABW [dB]6,45,16,4512,7-
", + "id": "5ba44de7-0ff3-4c0c-b018-67e92171e1c2", + "processing_timestamp": "2025-05-06T14:18:19.298665", + "chunk_number": 44, + "total_chunks": 49, + "chunking_strategy": "hybrid", + "word_count": 295 + } +} \ No newline at end of file diff --git a/data/processed/85fd305f-83de-70b0-47e8-2dc000000045.json b/data/processed/85fd305f-83de-70b0-47e8-2dc000000045.json new file mode 100644 index 0000000000000000000000000000000000000000..36f7c34b869b06d87824563768b25a07a76324c6 --- /dev/null +++ b/data/processed/85fd305f-83de-70b0-47e8-2dc000000045.json @@ -0,0 +1,1570 @@ +{ + "id": "85fd305f-83de-70b0-47e8-2dc000000045", + "content": "- [62] Akustikb\u00fcro Schwartzenberger und Burkhart: Mittelung von Schallpegeln | Akus- tikb\u00fcro Schwartzenberger und Burkhart, 27.11.20217, https://akustikbu- ero.com/lexikon/mittelung-von-schallpegeln/ [Zugriff am: 23.05.2023]. - [63] W.A. Kreiner Faculty of Natural Sciences University of Ulm: Gau\u00df oder nicht Gau\u00df? \u2013 Is it a Gaussian or a non-Gaussian Distribution? Ulm, W.A. Kreiner Faculty of Na- tural Sciences University of Ulm. - [64] Prof. Dr. Torsten Schatz: Lambacher Schweizer Kursstufe \u2013 Modellieren mit der Normalverteilung. Ernst Klett Verlag GmbH, Stuttgart, 2020. ## V\n\nAbschlie\u00dfende Bewertung und Ausblick\n- [65] Martin Heroldt: Schallpegelanalyse von Be- und Entladevorg\u00e4ngen mit Paletten- hubwagen und beladener Palette bei Lkw in Logistikzentren \u2013 Studiengang Um- weltschutz. Bingen, TH Bingen, Bachelorarbeit, 2016. - [66] LfU: Materialien zur Parkplatzl\u00e4rmstudie; Bewegungs- und Belegungsganglinien. Bayerisches Landesamt f\u00fcr Umwelt. - [67] Bianca Berghofer: Untersuchung der Ger\u00e4uschemissionen durch Ladevorg\u00e4nge in Ladezonen von Discountern \u2013 Studiengang: Umweltingenieurwesen. L\u00fcbeck, Fach- hochschule L\u00fcbeck, Diplomarbeit, 2009. - [68] Gebr\u00fcder Weiss: \u00dcber uns - Unternehmen - Gebr\u00fcder Weiss, 2023, https://www.gw-world.com/de/unternehmen/ueber-uns [Zugriff am: 20.04.2023]. - [69] Gebr\u00fcder Weiss: Geschichte - \u00dcber uns - Unternehmen - Gebr\u00fcder Weiss, 2023, https://www.gw-world.com/de/unternehmen/ueber-uns/geschichte [Zugriff am: 02.05.2023]. - [70] Wikipedia: Gebr\u00fcder Weiss, 2023, https://de.wikipedia.org/w/index.php?title=Ge- br\u00fcder_Weiss&oldid=232890186 [Zugriff am: 20.04.2023]. - [71] Gebr\u00fcder Weiss: Zahlen, Daten & Fakten - \u00dcber uns - Unternehmen - Gebr\u00fcder Weiss, 2023, https://www.gw-world.com/de/unternehmen/ueber-uns/zahlen-da- ten-fakten [Zugriff am: 20.04.2023]. - [72] Saloodo! : Was ist ein Auflieger? Definitionen & Erkl\u00e4rungen | Saloodo!, 2023, https://www.saloodo.com/de/logistik-lexikon/auflieger/ [Zugriff am: 08.05.2023]. - [73] zipmend Express: Auflieger - Definition und Erkl\u00e4rung, 2022+00:00, https://zipmend.com/logistik-lexikon/auflieger/ [Zugriff am: 08.05.2023]. - [74] TIMOCOM: Was ist ein Tautliner? | TIMOCOM Transportlexikon, 2023, https://www.timocom.de/lexicon/transportlexikon/tautliner [Zugriff am: 08.05.2023]. - [75] Saloodo!", + "embedding": [ + 0.023466650396585464, + 0.01027351338416338, + 0.025001851841807365, + -0.018477246165275574, + 0.0032314620912075043, + 0.007730836048722267, + -0.015530208125710487, + -0.017010580748319626, + -0.01816198229789734, + -0.03703673556447029, + 0.03155387192964554, + 0.02316509373486042, + -0.02095824107527733, + 0.006418375764042139, + -0.008985040709376335, + -0.007388157304376364, + 0.03330839052796364, + 0.016558244824409485, + 0.016571952030062675, + 0.011514010839164257, + -0.026304032653570175, + -0.0025272569619119167, + -0.0016225846484303474, + -0.005188158713281155, + -0.010232391767203808, + 0.016284100711345673, + 0.03662551939487457, + -0.019573818892240524, + -0.026523346081376076, + 0.002597506158053875, + 0.00632585259154439, + 0.001857319613918662, + -0.016325222328305244, + 0.014337684959173203, + -0.008052954450249672, + -0.008628654293715954, + 0.0048591867089271545, + -0.009800616651773453, + 0.016626780852675438, + -0.007799371611326933, + -0.00043263210682198405, + 0.00953332707285881, + 0.007120867725461721, + -0.03163611516356468, + -0.008546411991119385, + 0.012158247642219067, + 0.014378806576132774, + 0.0018556062132120132, + -0.007477253675460815, + 0.0016782699385657907, + 0.029278485104441643, + 0.021945156157016754, + -0.011877250857651234, + 0.01300123706459999, + -0.0047632367350161076, + -0.0094031086191535, + -0.007024917285889387, + 0.022260421887040138, + -0.015091578476130962, + -0.021095313131809235, + -0.0015720394439995289, + -0.01562615856528282, + -0.017161360010504723, + 0.01060248538851738, + -0.018778804689645767, + -0.021465405821800232, + -0.009670398198068142, + -0.0036975054536014795, + -0.023685965687036514, + -0.02295948565006256, + 0.014885971322655678, + 0.03185543045401573, + 0.008491583168506622, + -0.012740801088511944, + 0.02834639884531498, + -0.010472266934812069, + -0.007648593280464411, + 0.007072892505675554, + -0.038188137114048004, + 0.005626787431538105, + 0.018682854250073433, + -0.021479113027453423, + -0.025248581543564796, + 0.014858556911349297, + 0.006911833304911852, + -0.020314006134867668, + -0.000891821866389364, + 0.00908099114894867, + -0.04117629677057266, + -0.0011137063847854733, + 0.0019772571977227926, + 0.013069773092865944, + 0.0018436125246807933, + 0.010328342206776142, + 0.01202117558568716, + 0.011123357340693474, + -0.001580606447532773, + 0.02080746367573738, + -0.009656690992414951, + -0.03418564796447754, + -0.02726353332400322, + -0.006154512986540794, + 0.023014314472675323, + -0.006205915007740259, + -0.02834639884531498, + 0.0136454738676548, + 0.003180060302838683, + 0.0054691550321877, + 0.011801861226558685, + -0.02123238518834114, + -0.01598254404962063, + 0.015242357738316059, + -0.003120091278105974, + -0.0036563838366419077, + 0.02443986013531685, + -0.003985355608165264, + 0.03783174976706505, + -0.0017416655318811536, + -0.01494080014526844, + -0.029360728338360786, + 0.02293207123875618, + 0.022370079532265663, + 0.009677251800894737, + -0.016750143840909004, + 0.03944919630885124, + 0.028456056490540504, + -0.0006420945865102112, + -0.008724604733288288, + -0.00661027617752552, + -0.014707778580486774, + -0.02167101390659809, + 0.017421795055270195, + 0.00910840556025505, + 0.0162429790943861, + -0.0007436132291331887, + 0.01750403828918934, + -0.01603737287223339, + 0.01376198511570692, + -0.018093446269631386, + -0.04542551562190056, + 0.027345776557922363, + 0.026660418137907982, + -0.020382540300488472, + -0.015502793714404106, + -0.004399997182190418, + 0.04739934578537941, + 0.02058814838528633, + 0.014132077805697918, + -0.0009929121006280184, + -0.0013989865547046065, + -0.01733955182135105, + -0.0257557462900877, + 0.007007783744484186, + 0.00725793931633234, + -0.005606226623058319, + -0.0010211830958724022, + 0.016119616106152534, + 0.02117755636572838, + -0.026948269456624985, + 0.009581302292644978, + -0.004180682823061943, + 0.01049968134611845, + 0.011986907571554184, + 0.0015694693429395556, + 0.008443607948720455, + 0.013508401811122894, + -0.016366343945264816, + 0.0014461049577221274, + -0.014543292112648487, + -0.012781922705471516, + -0.013117748312652111, + 0.021259799599647522, + -0.012610583566129208, + -0.0014195473631843925, + -0.024494687095284462, + 0.023521479219198227, + 0.007518375292420387, + -5.0223876314703375e-05, + -0.01289158035069704, + -0.03350028768181801, + -0.020780049264431, + -0.00019222144328523427, + 0.007251085713505745, + 0.01945045404136181, + -0.008347658440470695, + 0.006514325737953186, + 0.024741416797041893, + 0.01330279465764761, + 0.004228657577186823, + -0.010671021416783333, + 0.012103418819606304, + 0.023315872997045517, + 0.01156883966177702, + -0.015502793714404106, + -0.6342574954032898, + -0.009355134330689907, + 0.008690336719155312, + 0.008135196752846241, + -0.012240489944815636, + 0.026674125343561172, + 0.007799371611326933, + 0.005537691060453653, + -0.021821793168783188, + 0.044493429362773895, + 0.0030224279034882784, + 0.014776314608752728, + -0.03092334419488907, + 0.009279744699597359, + -0.005849529057741165, + -0.02076634205877781, + -0.012370708398520947, + -0.006593142170459032, + 0.04029903933405876, + 0.011767593212425709, + -0.014323977753520012, + 0.03311648964881897, + 0.00025079812621697783, + 0.013028651475906372, + 0.01233644038438797, + 0.03270527347922325, + 0.04065542295575142, + -0.018477246165275574, + 0.015105285681784153, + -0.009923980571329594, + -0.030402472242712975, + 0.0024056059774011374, + -0.030594373121857643, + 0.012685973197221756, + 0.04306788370013237, + 0.007134574931114912, + -0.002672895323485136, + 0.01600995846092701, + 0.010677874088287354, + 0.03509031981229782, + -0.0009869151981547475, + -0.025166338309645653, + 0.0030104340985417366, + -0.015077871270477772, + -0.018545782193541527, + 0.026537053287029266, + 0.0601470023393631, + -0.02121867798268795, + 0.01147974282503128, + -0.03262303024530411, + -0.001074298401363194, + 0.013337062671780586, + 0.005959186237305403, + 0.0022411199752241373, + 0.02252085693180561, + -0.004670713562518358, + 0.04909903183579445, + -0.014104663394391537, + -0.02009469084441662, + 0.005164171103388071, + -0.0003204047679901123, + 0.02664671093225479, + -0.0002863510453607887, + -0.018024910241365433, + -0.022836122661828995, + 0.008244854398071766, + -0.01838129572570324, + -0.03739312291145325, + 0.016284100711345673, + 0.0033034246880561113, + -0.013378184288740158, + 0.007833640091121197, + -0.007888467982411385, + -0.010294074192643166, + 0.0307314433157444, + 0.02748284861445427, + 0.020492197945713997, + -0.0009517906582914293, + 0.014707778580486774, + 0.006353267002850771, + -0.015036750584840775, + 0.016928337514400482, + 0.010691581293940544, + -0.018463538959622383, + 0.017243601381778717, + -0.023274751380085945, + -0.005287535488605499, + 0.014228028245270252, + -0.010225538164377213, + -0.012219930067658424, + 0.0016611359314993024, + 0.0329245887696743, + 0.00909469835460186, + -0.03317131847143173, + -0.001440964755602181, + 0.02687973342835903, + -0.01583176478743553, + 0.01245295163244009, + 0.005523983854800463, + -0.03703673556447029, + -0.006199061404913664, + -0.010252952575683594, + 0.01728472299873829, + 0.003308564890176058, + 0.0139744458720088, + 0.012823044322431087, + -0.00984859187155962, + 0.006329279392957687, + 0.023548893630504608, + -0.015612450428307056, + 0.0018538928125053644, + -0.024316495284438133, + -0.004708407912403345, + -0.0242205448448658, + -0.0008382782689295709, + -0.027990013360977173, + 0.03032022900879383, + -0.011651082895696163, + -0.004119000397622585, + -0.014584413729608059, + -0.004800931550562382, + -0.010033638216555119, + 0.03243112936615944, + -0.018943289294838905, + -0.0024878487456589937, + 0.014584413729608059, + 0.0019052947172895074, + -0.004615884739905596, + -0.000764602271374315, + -0.014365099370479584, + 0.015173821710050106, + -0.008402486331760883, + 0.024124594405293465, + 0.003060122486203909, + 0.023028021678328514, + 0.009389402344822884, + 0.031279731541872025, + -0.01598254404962063, + 0.012288465164601803, + -0.02881244197487831, + -0.03070402890443802, + -0.013707156293094158, + 0.0144884642213583, + -0.024604344740509987, + -0.01684609428048134, + -0.03640620782971382, + -0.030676614493131638, + 0.004016196820884943, + 0.011020553298294544, + -0.01688721589744091, + -0.014735192991793156, + -0.010897189378738403, + -0.00606884341686964, + 0.02727724052965641, + -0.007943296805024147, + 0.0010785817867144942, + -0.029744528234004974, + -0.014200613833963871, + -0.009211208671331406, + -0.016585659235715866, + 0.024426152929663658, + 0.012158247642219067, + -0.04389031231403351, + 1.5206375792331528e-05, + -0.003851710818707943, + -0.014104663394391537, + 0.014200613833963871, + 0.0020286589860916138, + -0.020437369123101234, + -0.017778180539608, + 0.022781293839216232, + -0.008806847967207432, + 0.0010940023930743337, + 0.006408095359802246, + -0.012274757958948612, + 0.003618689253926277, + -0.011150771751999855, + 0.009444230236113071, + -0.0289769284427166, + -0.010849214158952236, + 0.0346791036427021, + -0.010862921364605427, + -0.022685343399643898, + 0.021163849160075188, + 0.026071010157465935, + 0.008046100847423077, + 0.013391891494393349, + 0.025385653600096703, + -0.022164471447467804, + 0.02528970316052437, + 0.0061133913695812225, + 0.023055436089634895, + -0.018079739063978195, + 0.030046086758375168, + -0.04128595441579819, + -0.003567287465557456, + -0.015283479355275631, + 0.009656690992414951, + 0.004739249125123024, + 0.024097179993987083, + 0.027811819687485695, + 0.007744543254375458, + 0.004845479503273964, + -0.013988153077661991, + 0.02294577844440937, + -0.012302172370254993, + 0.016380051150918007, + -0.01950528286397457, + 0.03295200318098068, + 0.023631136864423752, + 0.03155387192964554, + -0.01842241734266281, + -0.02723611891269684, + -0.0030858234968036413, + 0.007936443202197552, + 0.04498688504099846, + -0.011287842877209187, + 0.015612450428307056, + 0.01816198229789734, + 0.004886601120233536, + 0.0036975054536014795, + -0.002568378346040845, + 0.028264155611395836, + 0.0022668209858238697, + -0.01712023839354515, + -0.011109650135040283, + 0.008608094416558743, + 0.02574203908443451, + -0.012576315551996231, + -0.01691463030874729, + 0.00875201914459467, + 0.01577693596482277, + 0.0033222718629986048, + 0.012871019542217255, + 0.004931149538606405, + 0.009903420694172382, + 0.02036883309483528, + -0.0037728946190327406, + 0.03594016283750534, + 0.018011203035712242, + 0.007586910855025053, + 0.036296550184488297, + 0.017846716567873955, + 0.007408717647194862, + 0.024727709591388702, + -0.02076634205877781, + -0.00030327081913128495, + 0.03530963510274887, + -0.002532397164031863, + -0.0289769284427166, + -0.010444852523505688, + -0.006003734190016985, + -0.012617437168955803, + -0.01670902408659458, + 0.01354266982525587, + -0.010218684561550617, + 0.021986277773976326, + -0.014323977753520012, + -0.003037848509848118, + 0.0166816096752882, + 0.0027482847217470407, + 0.015543915331363678, + -0.002738004317507148, + -0.023946400731801987, + 0.002777412533760071, + 0.0016517123440280557, + -0.024604344740509987, + -0.025180045515298843, + -0.006942674517631531, + -0.013741424307227135, + -0.0026129265315830708, + -0.024152008816599846, + -0.0020817744079977274, + 0.013652327470481396, + 0.020519612357020378, + -0.005897503811866045, + 0.004262925591319799, + 0.027140168473124504, + 0.03125231713056564, + 0.009526473470032215, + -0.01969718374311924, + -0.01666790246963501, + 0.0036495302338153124, + 0.024289080873131752, + -0.018449831753969193, + -0.020944533869624138, + 0.006966662127524614, + 0.010410585440695286, + -0.031005587428808212, + -0.0056027998216450214, + -0.0017493758350610733, + 0.01968347653746605, + 0.0036975054536014795, + -0.013926470652222633, + 0.007107160519808531, + -0.012158247642219067, + 0.020314006134867668, + 0.014790021814405918, + -0.01525606494396925, + 0.004848906304687262, + -0.0017973508220165968, + -0.004283486399799585, + -0.0032845772802829742, + -0.010362610220909119, + 0.0018384723225608468, + -0.00027585652424022555, + -0.031910259276628494, + -0.015461672097444534, + 0.004304047208279371, + -0.01235014759004116, + -0.0011693917913362384, + -0.0017065409338101745, + -0.013666034676134586, + 0.010204977355897427, + -0.009855445474386215, + 0.005171024706214666, + 0.017366966232657433, + -0.014392513781785965, + 0.03437754884362221, + 0.02117755636572838, + -0.025262288749217987, + -0.016352636739611626, + -0.00983488466590643, + -0.0002957747201435268, + 0.0058358218520879745, + 0.03095075860619545, + 0.0047837975434958935, + 0.026907147839665413, + 0.0019961046054959297, + -0.006195634603500366, + 0.006476631388068199, + -0.025714624673128128, + 0.004420557990670204, + 0.005462301895022392, + -0.0005949762417003512, + -0.009053576737642288, + 0.01772335357964039, + -0.011034260503947735, + 0.027441726997494698, + -0.017175067216157913, + 0.013570084236562252, + -0.015447964891791344, + 0.025632381439208984, + -0.015598743222653866, + -0.017366966232657433, + -0.016571952030062675, + 0.00044719595462083817, + 0.0359949916601181, + -0.0008339947671629488, + -0.010629899799823761, + 0.013323355466127396, + 0.011753886006772518, + 0.018888460472226143, + -0.02210964262485504, + -0.01861431822180748, + 0.0225345641374588, + 0.023960107937455177, + 0.01417319942265749, + -0.025056680664420128, + -0.011740178801119328, + 0.006342986598610878, + -0.010842360556125641, + 0.011740178801119328, + 0.000612966890912503, + 0.01713394559919834, + 0.03977816551923752, + 0.012494072318077087, + -0.012288465164601803, + -0.002146883402019739, + -0.016942044720053673, + 0.003673517843708396, + 0.012165101245045662, + 0.004074451979249716, + -0.006911833304911852, + 0.021712135523557663, + -0.010856067761778831, + 0.0024775683414191008, + -0.010122735053300858, + 0.004197816364467144, + -0.017257308587431908, + 0.004622738342732191, + -0.034322720021009445, + -0.012370708398520947, + -0.011870397254824638, + -0.00821058638393879, + -0.010568217374384403, + 0.00481806555762887, + -0.009910273365676403, + -0.016791265457868576, + -0.022986900061368942, + -0.010952017270028591, + -0.015571328811347485, + -0.016722731292247772, + 0.018299052491784096, + 0.01840871013700962, + -0.025906525552272797, + -0.030183156952261925, + 0.000805723771918565, + 0.015489086508750916, + -0.01253519393503666, + 0.007066038902848959, + -0.010451706126332283, + -0.02404235117137432, + 0.010595631785690784, + -0.017805594950914383, + -0.016585659235715866, + -0.011788154020905495, + -0.03898315131664276, + -0.006901552900671959, + 0.020478490740060806, + -0.00845046155154705, + 0.0008489869651384652, + 0.009807470254600048, + 0.008834262378513813, + -0.005832395050674677, + 0.006521179340779781, + -0.011390646919608116, + -0.009560741484165192, + 0.0030498423147946596, + 0.0020098118111491203, + 0.012637997977435589, + 0.014029273763298988, + 0.01687350869178772, + -0.006555447354912758, + 0.004944856744259596, + -0.018518367782235146, + -0.009992516599595547, + -0.014001860283315182, + 0.016311515122652054, + 0.00471526151522994, + -0.0023010887671262026, + 0.0006862144800834358, + 0.009355134330689907, + 0.0070112100802361965, + -0.010342049412429333, + -0.002559811342507601, + -0.004101866390556097, + 0.004931149538606405, + -0.0017193914391100407, + 0.0004998828517273068, + 0.024522101506590843, + 0.02013581246137619, + 0.017682231962680817, + -0.006274450570344925, + -0.020505905151367188, + -0.012871019542217255, + 0.030676614493131638, + 0.0056713358499109745, + -0.004550775978714228, + 0.037749506533145905, + -0.030183156952261925, + 0.015064164064824581, + -0.021136434748768806, + 0.00950591266155243, + 0.0160236656665802, + 0.00951961986720562, + 0.001877880422398448, + 0.002325076377019286, + -0.02271275781095028, + -0.01865543983876705, + 0.013474134728312492, + 0.004410277586430311, + -0.03552894666790962, + 0.005955759435892105, + -0.0019532698206603527, + 0.00929345190525055, + -0.005393765866756439, + 0.010801238939166069, + 0.004821492359042168, + -0.027880355715751648, + -0.010958870872855186, + 0.01374827791005373, + -0.01973830536007881, + 0.029278485104441643, + -0.012254197150468826, + 0.007107160519808531, + 0.002667755354195833, + 0.0010897188913077116, + -0.019957618787884712, + -0.046220529824495316, + -0.0024381603579968214, + -0.012500925920903683, + 0.023096557706594467, + 0.010609338991343975, + 0.0345420315861702, + -0.008114635944366455, + 0.004646725952625275, + 0.016571952030062675, + -0.005020245909690857, + 0.0010614478960633278, + -0.030375057831406593, + -0.005160744301974773, + -0.01883363164961338, + 0.022205593064427376, + 0.0008112923242151737, + 0.0075526428408920765, + 0.011431768536567688, + 0.03133456036448479, + 0.010115881450474262, + 0.037612434476614, + -0.003591274842619896, + -0.006260743364691734, + -0.00842304714024067, + -0.035172563046216965, + -0.03251337260007858, + 0.014981921762228012, + 0.004393143579363823, + 0.006312145385891199, + -0.02189032733440399, + -0.01287787314504385, + 0.015324600040912628, + -0.0019669767934828997, + -0.005643921438604593, + -0.02010839805006981, + 0.008306536823511124, + -0.04304046928882599, + 0.03763984888792038, + 0.009060430340468884, + -0.015160114504396915, + -0.023206215351819992, + -0.016119616106152534, + -0.011774446815252304, + -0.030018672347068787, + 0.010444852523505688, + 0.0037591876462101936, + 0.021479113027453423, + -0.0016191578470170498, + -0.016338929533958435, + -0.00029448966961354017, + -0.0053046694956719875, + 0.003889405634254217, + -0.01286416593939066, + 0.0027705589309334755, + -0.008368218317627907, + -0.02401493676006794, + -0.02726353332400322, + -0.009821177460253239, + -0.03328097611665726, + 0.02016322687268257, + 0.0031834871042519808, + 0.0026026463601738214, + 0.019354503601789474, + -0.01750403828918934, + -0.017901545390486717, + -0.0033959478605538607, + -0.007723982445895672, + 0.03273268789052963, + 0.025152631103992462, + 0.04802987352013588, + 0.04054576903581619, + -0.01799749583005905, + -0.011753886006772518, + -0.04893454536795616, + 0.007285353261977434, + -0.005983173381537199, + 0.010664167813956738, + -0.02139686979353428, + -0.014721485786139965, + 0.00078516302164644, + 0.022246714681386948, + 0.0032503092661499977, + -0.014419928193092346, + -0.006918686907738447, + 0.04435635730624199, + 0.023946400731801987, + -0.005558251868933439, + -0.012521486729383469, + 0.0031577860936522484, + -0.024097179993987083, + -0.0016885502263903618, + -0.0029161975253373384, + -0.00676448130980134, + -0.018312759697437286, + -0.02271275781095028, + 0.0011676783906295896, + 0.04608345776796341, + 0.021342042833566666, + 0.03637879341840744, + 0.020286591723561287, + -0.02183550037443638, + 0.017695939168334007, + -0.02120497077703476, + -0.00676448130980134, + 0.010218684561550617, + -0.016338929533958435, + 0.028922099620103836, + -0.01732584461569786, + 0.0009123825584538281, + 0.008388779126107693, + 0.0063738273456692696, + -0.005787846632301807, + 0.0020526465959846973, + -0.004341741558164358, + 0.021972570568323135, + -0.030594373121857643, + 0.0023387835826724768, + 0.02117755636572838, + -0.015297186560928822, + -0.004129280801862478, + -0.002744857920333743, + 0.0015223510563373566, + -0.01114391814917326, + 0.007929589599370956, + -0.00983488466590643, + 0.007936443202197552, + 0.018011203035712242, + -0.004095012787729502, + -0.006730213761329651, + -0.020464783534407616, + -2.4897763069020584e-05, + -0.012274757958948612, + -0.020053569227457047, + -0.0042423647828400135, + -0.040161967277526855, + -0.0035775676369667053, + -0.006360120605677366, + 0.008491583168506622, + 0.026290325447916985, + -0.01373457070440054, + -0.01838129572570324, + -0.024508394300937653, + 0.014351392164826393, + -0.02768845483660698, + 0.016325222328305244, + 0.03382926061749458, + -0.017243601381778717, + -0.031087830662727356, + 0.011822422035038471, + 0.013768837787210941, + -0.00863550789654255, + 0.01684609428048134, + 0.0017408088315278292, + -0.008704043924808502, + -0.000897818710654974, + -0.002316509373486042, + 0.026331447064876556, + -0.01776447333395481, + -0.011692204512655735, + -0.005088781472295523, + 0.023740794509649277, + 0.018573196604847908, + -0.005253267474472523, + -0.0006429512868635356, + -0.009889713488519192, + 0.005849529057741165, + 0.0062024882063269615, + 0.010705288499593735, + -0.021163849160075188, + 0.024727709591388702, + 0.003567287465557456, + -0.001086292089894414, + -0.00421837717294693, + -0.04660433158278465, + -0.012082858011126518, + 0.0231925081461668, + 0.005434887483716011, + -0.020039862021803856, + 0.01495450735092163, + -0.023877866566181183, + -0.027181290090084076, + -0.0015420550480484962, + 0.021328335627913475, + -0.0021571635734289885, + 0.0052258530631661415, + 0.014885971322655678, + 0.013008090667426586, + 0.0077171288430690765, + 0.035830505192279816, + 0.017435502260923386, + -0.019231140613555908, + 0.02513892389833927, + 0.0017151079373434186, + -0.02508409507572651, + -0.0027499981224536896, + 0.005102488677948713, + 0.020492197945713997, + 0.009814323857426643, + -0.03478876128792763, + -0.023932693526148796, + 0.021533941850066185, + -0.012055443599820137, + -0.006257316563278437, + 0.0016020238399505615, + 0.010999992489814758, + 0.017695939168334007, + 0.030813686549663544, + -0.018449831753969193, + 0.02095824107527733, + 0.020259177312254906, + 0.019820546731352806, + -0.018532074987888336, + -0.021081605926156044, + -0.0069872229360044, + -0.022685343399643898, + 0.005095635075122118, + -0.008381925523281097, + -0.041889067739248276, + 0.009341427125036716, + 0.02058814838528633, + -0.00281682051718235, + 0.009259183891117573, + 0.036488451063632965, + -0.015639865770936012, + -0.02378191612660885, + 0.013823666609823704, + 0.0011522577842697501, + -0.0026951695326715708, + -0.008512143976986408, + 0.002486135344952345, + -0.03977816551923752, + 0.006493765395134687, + 0.011671643704175949, + -0.0004634732031263411, + -0.024069765582680702, + -0.007251085713505745, + 0.02726353332400322, + -0.007203110493719578, + 0.016626780852675438, + 0.020231762900948524, + -0.013837373815476894, + 0.015118992887437344, + -0.0005889793392270803, + 0.04526102915406227, + 0.008943919092416763, + -0.022356372326612473, + -0.0024690015707165003, + 0.015585036017000675, + 0.0008926785085350275, + -0.020629270002245903, + -0.007580057252198458, + -0.032814931124448776, + 0.0030961039010435343, + 0.009773202240467072, + -0.012583169154822826, + 0.027112754061818123, + -0.026975683867931366, + 0.018956996500492096, + 0.004622738342732191, + -0.011829275637865067, + -0.05025043338537216, + -0.019971325993537903, + -0.032787516713142395, + 0.0225345641374588, + 0.028922099620103836, + -0.029333313927054405, + 0.006637690123170614, + -0.016777558252215385, + -0.017805594950914383, + -0.004355448763817549, + -0.025837989524006844, + -0.009046723134815693, + -0.01838129572570324, + -0.016763851046562195, + -0.012103418819606304, + 0.003130371682345867, + -0.011287842877209187, + -0.01265170518308878, + -0.02228783629834652, + -0.020231762900948524, + -0.020245470106601715, + 0.17040736973285675, + -0.03986040875315666, + 0.003995636012405157, + -0.005338937044143677, + -0.02209593541920185, + -0.02859312668442726, + 0.03221181780099869, + 0.00249298894777894, + 0.012528340332210064, + 0.012494072318077087, + 0.014570706523954868, + 0.009457937441766262, + -0.015064164064824581, + 0.0020098118111491203, + 0.012583169154822826, + -0.015214943327009678, + -0.035611189901828766, + -0.026454811915755272, + 0.0027071633376181126, + 0.008320244029164314, + 0.025700917467474937, + -0.013755131512880325, + -0.00633955979719758, + -0.010204977355897427, + 0.03509031981229782, + 0.016366343945264816, + -0.004043611232191324, + 0.0063943881541490555, + 0.02596135437488556, + 0.031115245074033737, + -0.016188152134418488, + -0.013953885063529015, + 0.018874753266572952, + -0.009122112765908241, + -0.013563230633735657, + 0.007744543254375458, + 0.003831150010228157, + -0.001847039326094091, + 0.03552894666790962, + 0.03341804817318916, + -0.0005272971466183662, + -0.032760102301836014, + -0.00680902972817421, + -0.03114265762269497, + 0.015338307246565819, + 0.014447342604398727, + -0.018559489399194717, + 0.008142050355672836, + 0.006959808524698019, + 0.0076828608289361, + -0.0133165018633008, + 0.018134567886590958, + 0.020053569227457047, + 0.04696071520447731, + 0.0029367581009864807, + -0.010109027847647667, + -0.0032537360675632954, + -0.008196879178285599, + 0.004393143579363823, + 0.010157003067433834, + -0.0428759828209877, + 0.01754515990614891, + -0.006747347768396139, + 0.016571952030062675, + 0.0010366037022322416, + 0.011013699695467949, + -0.006147659383714199, + 0.009807470254600048, + -0.006144232582300901, + -0.030237985774874687, + -0.006264170166105032, + -0.01684609428048134, + -0.02707163244485855, + 0.015968836843967438, + -0.02079375647008419, + -0.03440496325492859, + 0.030457301065325737, + 0.009841738268733025, + 0.024618051946163177, + 0.03574826195836067, + 0.002011525211855769, + -0.0017750767292454839, + -0.008375071920454502, + -0.02297319285571575, + -0.012857312336564064, + -0.016791265457868576, + 0.025385653600096703, + 0.013912763446569443, + 0.010218684561550617, + -0.010561363771557808, + -0.02493331767618656, + 0.004280059598386288, + -0.008429900743067265, + -0.004557629581540823, + 0.00621962221339345, + -0.013467281125485897, + 0.00974578782916069, + -0.011082235723733902, + -0.023425528779625893, + 0.004413704387843609, + -0.01710653118789196, + 0.042958226054906845, + 0.029744528234004974, + -0.02232895791530609, + 0.016311515122652054, + -0.011349525302648544, + 0.00632585259154439, + 0.019190018996596336, + -0.0007825929205864668, + -0.013282233849167824, + -0.013775691390037537, + -0.031279731541872025, + 0.030621785670518875, + -0.018038617447018623, + 0.016517123207449913, + 0.02036883309483528, + 0.003226321889087558, + -0.0047632367350161076, + -0.003216041484847665, + -0.006089404225349426, + -0.0012413542717695236, + -0.008464168757200241, + 0.01733955182135105, + 0.006545166950672865, + 0.017024287953972816, + -0.03456944599747658, + -0.049428004771471024, + 0.007943296805024147, + -0.0094031086191535, + 0.01254890114068985, + 0.011760739609599113, + -0.006500618532299995, + 0.029305899515748024, + -0.0037214928306639194, + 0.008032393641769886, + 0.0037317732349038124, + -0.0033753872849047184, + -0.020615562796592712, + -0.0006258173380047083, + 0.0024347335565835238, + 0.018956996500492096, + -0.013021797873079777, + -1.2663056622841395e-05, + 0.0014126937603577971, + 0.0014786594547331333, + -0.004814638756215572, + 0.01644858717918396, + -0.0046775671653449535, + -0.03053954429924488, + -0.024823660030961037, + -0.008299683220684528, + -0.017408087849617004, + -0.010581924580037594, + -0.02076634205877781, + 0.007182549685239792, + 0.015722107142210007, + -0.021931448951363564, + -0.01950528286397457, + 0.009053576737642288, + 0.019231140613555908, + -0.019546404480934143, + -0.01625668630003929, + 0.022027399390935898, + -0.033637359738349915, + -0.005266974680125713, + -0.012603729963302612, + -0.17599987983703613, + 0.0066582509316504, + 0.011233014054596424, + -0.007504668086767197, + 0.0004349880327936262, + -0.0011616814881563187, + 0.00897818710654974, + 0.010294074192643166, + -0.02227412909269333, + -0.013158869929611683, + -0.0037831750232726336, + 0.006874138955026865, + -0.024508394300937653, + -0.017462916672229767, + -0.021465405821800232, + -0.005630214232951403, + -0.019834253937005997, + 0.04671398922801018, + 0.02661929652094841, + 0.01625668630003929, + 0.01642117276787758, + -0.020944533869624138, + 0.021150141954421997, + 0.012418683618307114, + -0.0038859788328409195, + 0.015091578476130962, + -0.02291836403310299, + 0.02815449796617031, + -0.023494064807891846, + -0.025166338309645653, + -0.011609961278736591, + 0.0032794370781630278, + 0.014817435294389725, + 0.004016196820884943, + -0.01884733885526657, + -0.003226321889087558, + 0.00525669427588582, + -0.00984859187155962, + -0.005493142642080784, + 0.018120860680937767, + 0.020670391619205475, + 0.0316087007522583, + -0.014981921762228012, + 0.01927226223051548, + -0.014001860283315182, + 0.025714624673128128, + 0.018340174108743668, + -0.012034882791340351, + -0.012843605130910873, + -0.02095824107527733, + -0.00298130651935935, + -0.021163849160075188, + 0.004461679141968489, + 0.0054691550321877, + -0.006504045333713293, + 0.006853578146547079, + 0.00822429358959198, + 0.005650775041431189, + 0.0015746095450595021, + 0.010568217374384403, + -0.02486478164792061, + -0.012130833230912685, + -0.0002722155477385968, + -0.004379436373710632, + -0.006963235326111317, + -0.016119616106152534, + -0.0004268494085408747, + 0.0027260107453912497, + -0.010095320641994476, + -0.0119252260774374, + -0.004376009572297335, + 0.0007534652249887586, + 0.012692826800048351, + -0.009512766264379025, + -0.0018024910241365433, + 0.01581805758178234, + -0.01838129572570324, + 0.0024261665530502796, + -0.006480058189481497, + 0.003351399675011635, + -0.011109650135040283, + 0.03763984888792038, + 0.003779748221859336, + -0.0074566928669810295, + -0.01625668630003929, + -0.011095942929387093, + -0.015639865770936012, + 0.014090956188738346, + -0.004591897130012512, + 0.0037626144476234913, + 0.010999992489814758, + -0.011226160451769829, + -0.01713394559919834, + -0.019847961142659187, + 0.019546404480934143, + -0.015886593610048294, + -0.016969459131360054, + 0.007648593280464411, + -0.010554510168731213, + -0.0094031086191535, + -0.0012310739839449525, + -0.02035512588918209, + -0.023644844070076942, + 0.010335195809602737, + 0.007902175188064575, + 0.009588155895471573, + -0.02119126357138157, + 0.008793140761554241, + 0.04325978457927704, + -0.02206852100789547, + -0.020738927647471428, + -0.01072584930807352, + 0.01115762535482645, + -0.00616136658936739, + -0.008368218317627907, + 0.004657006356865168, + -0.004091585986316204, + -0.026564467698335648, + 0.01664048805832863, + -0.0028408081270754337, + 0.05784419924020767, + -0.015639865770936012, + 0.021753257140517235, + 0.00899189431220293, + -0.02209593541920185, + -0.025837989524006844, + -0.0734703540802002, + 0.005568532273173332, + 0.018682854250073433, + 0.021342042833566666, + 0.0056336410343647, + 0.011493450030684471, + -0.0012327873846516013, + 0.004396570380777121, + 0.005191585514694452, + 0.05049716308712959, + -0.01794266700744629, + -0.017421795055270195, + -0.016736436635255814, + 0.001857319613918662, + 0.026674125343561172, + -0.02082117088139057, + 0.007285353261977434, + -0.03117007203400135, + -0.03177318722009659, + 0.018038617447018623, + -0.01576322875916958, + 0.010568217374384403, + -0.008285976015031338, + -0.01428285613656044, + -0.008244854398071766, + -0.017147652804851532, + -0.03829779475927353, + 0.021067898720502853, + 0.018956996500492096, + -0.025837989524006844, + 0.01200746838003397, + -0.025193752720952034, + 0.010033638216555119, + -0.022383784875273705, + -0.015160114504396915, + -0.017421795055270195, + -0.009766348637640476, + -0.015489086508750916, + 0.025591259822249413, + -0.012960116378962994, + -0.01048597414046526, + 0.018107153475284576, + 0.008923358283936977, + -0.02701680362224579, + -0.017586281523108482, + -0.023768208920955658, + -0.01526977214962244, + 0.03155387192964554, + 0.034322720021009445, + -0.0005619933945126832, + -0.01286416593939066, + -0.024343909695744514, + -0.018271638080477715, + -0.007497814483940601, + 0.04698812961578369, + 0.010979431681334972, + -0.022411199286580086, + 0.0018556062132120132, + -0.015516500920057297, + -0.009012455120682716, + -0.025042973458766937, + 0.03728346526622772, + -0.022849829867482185, + 0.0011368372943252325, + 0.007490960881114006, + 0.001773363328538835, + -0.018874753266572952, + -0.019628647714853287, + 0.009499059058725834, + -0.0007847346714697778, + -0.020944533869624138, + 0.0071962568908929825, + 0.009923980571329594, + 0.021588770672678947, + -0.011726471595466137, + 0.0040573179721832275, + -0.038818664848804474, + -0.004403423983603716, + 0.009457937441766262, + -0.005729591008275747, + -0.005695323459804058, + -0.026482226327061653, + 0.015132700093090534, + -0.023644844070076942, + 0.021766964346170425, + 0.018559489399194717, + -0.008395632728934288, + 0.007655446417629719, + 0.02990901470184326, + -0.02204110659658909, + -0.0013912763679400086, + 0.009067283943295479, + 0.025234874337911606, + -0.014968214556574821, + -0.020218055695295334, + 0.010993138886988163, + 0.007333328481763601, + -0.023672258481383324, + 0.034487202763557434, + 0.03075885772705078, + -0.015845471993088722, + -0.01836758852005005, + -0.05252582207322121, + 0.024782538414001465, + 0.02834639884531498, + -0.0029281910974532366, + -0.018669147044420242, + -0.0009603576036170125, + -0.010102174244821072, + 0.017654817551374435, + 0.014406220987439156, + 0.006157939787954092, + -0.014132077805697918, + 0.02293207123875618, + -0.017353259027004242, + -0.01461182814091444, + -0.03144421428442001, + -0.0279488917440176, + 0.012096565216779709, + 0.019560111686587334, + 0.00030348499421961606, + 0.011541425250470638, + 0.009690959006547928, + 0.008704043924808502, + -0.010986285284161568, + 0.026482226327061653, + -0.009656690992414951, + 0.007251085713505745, + -0.01949157565832138, + -0.004365729168057442, + 0.0021554501727223396, + -0.008587533608078957, + 0.011760739609599113, + -0.010444852523505688, + 0.0005697036976926029, + 0.02383674494922161, + 0.002345637185499072, + -0.024823660030961037, + 0.021040484309196472, + 0.008683483116328716, + 0.02312397211790085, + 0.058118343353271484, + -0.0291962418705225, + -0.021698428317904472, + -0.012028029188513756, + -0.017641110345721245, + -0.004201243165880442, + 0.0075526428408920765, + 0.029388142749667168, + 0.02145169861614704, + 0.02010839805006981, + -0.015516500920057297, + 0.036296550184488297, + 0.01925855502486229, + -0.0030018670950084925, + -0.01451587863266468, + 0.01189781166613102, + 0.01647600159049034, + 0.013008090667426586, + 0.009738934226334095, + 0.03415823355317116, + -0.009553887881338596, + 0.04671398922801018, + 0.021492820233106613, + 0.009656690992414951, + -0.005801553837954998, + 0.006997503340244293, + -0.0100610526278615, + -0.027003098279237747, + -0.011726471595466137, + -0.02101306989789009, + -0.03286975994706154, + -0.006504045333713293, + -0.005352644249796867, + 0.011863543651998043, + 0.03506290540099144, + -0.004403423983603716, + -0.026537053287029266, + -0.0009672112064436078, + -0.0019292822107672691, + -0.002486135344952345, + 0.011836129240691662, + 0.013679741881787777, + 0.010972578078508377, + 0.006997503340244293, + 0.006411522161215544, + 0.03547412157058716, + -0.0016714163357391953, + -0.02380933053791523, + -0.0009929121006280184, + -0.004927722737193108, + 0.0038277232088148594, + -0.002350777154788375, + 0.006798749323934317, + -0.004163548815995455, + -0.0009783483110368252, + 0.01775076799094677, + 0.009684105403721333, + 0.006706226151436567, + -0.007833640091121197, + 0.0406828373670578, + 0.03728346526622772, + 0.018436124548316002, + -0.007861053571105003, + -0.013453573919832706, + -0.025604967027902603, + -0.005523983854800463, + 0.022370079532265663, + -0.02206852100789547, + -0.03857193887233734, + 0.00866292230784893, + 0.025042973458766937, + 0.001961836591362953, + -0.0024038925766944885, + -0.014543292112648487, + -0.0026009329594671726, + -0.006853578146547079, + 0.0031286582816392183, + -0.025495309382677078, + -0.0238504521548748, + -0.04526102915406227, + 0.025632381439208984, + 0.016393758356571198, + 0.0068227369338274, + 0.002777412533760071, + 0.006247036159038544, + 0.018024910241365433, + -0.015900300815701485, + 0.029963843524456024, + -0.014132077805697918, + 0.011514010839164257, + -0.022123349830508232, + 0.003889405634254217, + -0.006507472135126591, + -0.02815449796617031, + -0.020930826663970947, + -0.020684098824858665, + 0.011527718044817448, + 0.02792147733271122, + 0.001638005138374865, + 0.024563223123550415, + 0.12128091603517532, + 0.03267785906791687, + -0.003704358823597431, + 0.03155387192964554, + -0.013995006680488586, + 0.013138309121131897, + 0.0033102782908827066, + 0.006209341809153557, + 0.01429656334221363, + -0.05323859304189682, + 0.0036700910422950983, + -0.018463538959622383, + 0.019614940509200096, + -0.031910259276628494, + -0.0060277217999100685, + 0.009286598302423954, + 0.007628032471984625, + 0.03007350116968155, + -0.03827038034796715, + 0.010369463823735714, + 0.03947661072015762, + -0.008244854398071766, + 0.0035535802599042654, + 0.030018672347068787, + -0.021081605926156044, + -0.008697190321981907, + 0.00605513621121645, + -0.007696568034589291, + -0.0006677954806946218, + -0.020259177312254906, + -0.0023559173569083214, + 0.01707911677658558, + -0.05351273715496063, + -0.032129574567079544, + 0.009595009498298168, + -0.04114888235926628, + -0.0014606688637286425, + -0.028291570022702217, + 0.015406843274831772, + 0.0014486750587821007, + 0.00031333701917901635, + 0.019793134182691574, + -0.013083480298519135, + -0.016750143840909004, + 0.021766964346170425, + -0.02426166646182537, + -0.005287535488605499, + -0.013508401811122894, + -0.006980369333177805 + ], + "metadata": { + "source": "Thesis_Verladegeraeusche_in_Speditionen.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 41, + "has_images": true, + "image_count": 51, + "coordinates": "CoordinatesMetadata(points=((204.16666666666666, 189.02777777777797), (204.16666666666666, 642.3611111111111), (936.1666666666666, 642.3611111111111), (936.1666666666666, 189.02777777777797)), system=)", + "links": [], + "last_modified": "2025-05-05T22:59:16", + "_known_field_names": "frozenset({'cc_recipient', 'link_texts', 'url', 'filetype', 'category_depth', 'page_number', 'filename', 'orig_elements', 'detection_origin', 'email_message_id', 'page_name', 'coordinates', 'table_as_cells', 'link_start_indexes', 'sent_to', 'bcc_recipient', 'languages', 'last_modified', 'link_urls', 'file_directory', 'subject', 'data_source', 'detection_class_prob', 'image_base64', 'text_as_html', 'attached_to_filename', 'key_value_pairs', 'signature', 'sent_from', 'header_footer_type', 'parent_id', 'links', 'emphasized_text_contents', 'emphasized_text_tags', 'image_mime_type', 'is_continuation', 'image_path'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "Thesis_Verladegeraeusche_in_Speditionen.pdf", + "detection_class_prob": 0.2568194270133972, + "parent_id": "d45475a34bc527cde6987546fa6dd2f5", + "text_as_html": "
Flurf\u00f6rderger\u00e4t |Anzahl Einzelereignisse ElMax-PegelSchallleistungspegel
LAFmaxLWA,5sLWAmaxLWA,1hKlLWAT,1h
[dB(A)][dB(A)][dB(A)][dB(A)][dB(A)][dB(A)]
Gabelstapler29769,3100,7108,872,15,777,8
STABW [dB]6,54,96,54,92,9-
Gabelhubwagen9968,6100,7108,172,16,279,5
STABW [dB]6,45,16,4512,7-
", + "id": "5ba44de7-0ff3-4c0c-b018-67e92171e1c2", + "processing_timestamp": "2025-05-06T14:18:19.298665", + "chunk_number": 45, + "total_chunks": 49, + "chunking_strategy": "hybrid", + "word_count": 262 + } +} \ No newline at end of file diff --git a/data/processed/85fd305f-83de-70b0-47e8-2dc000000046.json b/data/processed/85fd305f-83de-70b0-47e8-2dc000000046.json new file mode 100644 index 0000000000000000000000000000000000000000..10e643f2698562d77fb6606c7a1cc5dbb64052ce --- /dev/null +++ b/data/processed/85fd305f-83de-70b0-47e8-2dc000000046.json @@ -0,0 +1,1570 @@ +{ + "id": "85fd305f-83de-70b0-47e8-2dc000000046", + "content": "| TIMOCOM Transportlexikon, 2023, https://www.timocom.de/lexicon/transportlexikon/tautliner [Zugriff am: 08.05.2023]. - [75] Saloodo! : Was ist eine Wechselbr\u00fccke? Definitionen & Erkl\u00e4rungen | Saloodo!, 2023, https://www.saloodo.com/de/logistik-lexikon/wechselbruecke/ [Zugriff am: 08.05.2023]. - [76] Yumpu.com: Speditions 1x1.indd - Gebr\u00fcder Weiss. Yumpu.com, 2013, https://www.yumpu.com/de/document/view/18328821/speditions-1x1indd-ge- bruder-weiss [Zugriff am: 15.05.2023]. ## VI\n\nAbschlie\u00dfende Bewertung und Ausblick\n- [77] Crown Equipment Corporation (Hrsg. ): Gabelhubwagen mit klappbarer Plattform oder Bedienerstand WT 3000 Spezifikationen, Deutschland, 11/21. - [78] Crown Equipment Corporation (Hrsg. ): Gabelstapler SC 6200 \u2013 Spezifikatio- nen Elektro-Gegengewichtsstapler 48 V (Dreirad-/Vierradausf\u00fchrung), Deutsch- land, 02/22. - [79] BG Bau: Frequenzbewertung, Spitzen- und Dauerschallpegel, 2023, https://www.bgbau.de/themen/sicherheit-und-gesundheit/laerm-und-vibratio- nen/frequenzbewertung-spitzen-und-dauerschallpegel [Zugriff am: 15.05.2023]. - [80] Norsonic: Bedienungsanleitung Nor140 Schallanalysator Norsonic. Norsonic, Nor- wegen, 2011. - [81] Norsonic: Betriebsanleitung Akustische Kalibrator Typ 1251 Klasse 1. Norsonic, Norwegen. - [82] DAkkS Deutsche Akkreditierungsstelle: Was ist Akkreditierung? - DAkkS - Deutsche Akkreditierungsstelle, 2023, https://www.dakks.de/de/was-ist-akkreditie- rung.html [Zugriff am: 15.05.2023]. - [83] Norsonic Brechb\u00fchl AG: NorReview - Auswertung von Umweltmessungen - Aus- wertungs- / \u00dcbertragungssoftware - Norsonic Brechb\u00fchl AG, 2023, https://www.norsonic.ch/produkte/auswertungssoftware/norreview/ [Zugriff am: 17.05.2023]. - [84] LUMITOS AG: Fernfeld, 2023, https://www.chemie.de/lexikon/Fernfeld.html [Zu- griff am: 23.05.2023]. - [85] ISO 9613-2: D\u00e4mpfung des Schalls bei der Ausbreitung im Freien Teil 2: Allgemei- nes Berechnungsverfahren. Ausgabe Oktober 1999. - [86] VDI 2714: Schallausbreitung im Freien. Ausgabe Januar 1986. - [87] Lohninger, H.: Zuf\u00e4llige und systematische Fehler, 2021, http://www.statis- tics4u.info/fundstat_germ/ee_precision_accuracy.html [Zugriff am: 01.06.2023]. - [88] Thode, J.: Aus dem Laboralltag \u2013 Systematische und zuf\u00e4llige Fehler, 2023, https://mpl.loesungsfabrik.de/blog/methodenvalidierung/fehlerarten [Zugriff am: 01.06.2023].", + "embedding": [ + 0.008163638412952423, + -0.013748927973210812, + 0.024695007130503654, + -0.0035749932285398245, + 0.011850881390273571, + -0.012150214985013008, + -0.017687883228063583, + -0.015034700743854046, + -0.00494920602068305, + -0.03344370424747467, + 0.028654370456933975, + 0.023497672751545906, + -0.011245411820709705, + 0.0017806936521083117, + 0.0038743268232792616, + -0.0086058359593153, + 0.024939915165305138, + 0.014245549216866493, + 0.0117896543815732, + -0.0167490653693676, + -0.02605561353266239, + -0.013864579610526562, + -0.005388001445680857, + 0.004367546644061804, + -0.022640490904450417, + 0.016027944162487984, + 0.018286550417542458, + -0.02666788548231125, + -0.014449640177190304, + 0.00955145712941885, + 0.0033130766823887825, + 0.011122957803308964, + -0.014041458256542683, + 0.009020820260047913, + 0.0032331410329788923, + -0.025266461074352264, + -0.008190850727260113, + -0.027606703341007233, + 0.016476944088935852, + -0.0193342175334692, + 0.011891700327396393, + 0.029443522915244102, + -0.005826796870678663, + -0.004939001053571701, + -0.0022569058928638697, + 0.015252397395670414, + -0.0009328657761216164, + -0.006217971444129944, + -0.0032195348758250475, + 0.023157520219683647, + 0.030885765329003334, + 0.029497947543859482, + -0.010810017585754395, + 0.012054972350597382, + -0.007075153291225433, + 0.006333622615784407, + -0.0014056764775887132, + 0.016653822734951973, + 0.008626244962215424, + -0.004098827019333839, + -0.005881221033632755, + -0.004285910166800022, + -0.03654588758945465, + 0.01708921603858471, + -0.02283097617328167, + -0.023552097380161285, + -0.005422016605734825, + -0.003683841787278652, + -0.00869427528232336, + 0.0029865310061722994, + 0.029525158926844597, + 0.02827340178191662, + 0.02088530920445919, + -0.0041532511822879314, + 0.03891334310173988, + -0.018789974972605705, + -0.013592458330094814, + 0.005683933384716511, + -0.040872614830732346, + -0.004649872425943613, + 0.028926491737365723, + -0.03578395023941994, + -0.03885892033576965, + 0.017238883301615715, + 0.03374303877353668, + 0.005473039112985134, + -0.0022347960621118546, + -0.005534266587346792, + -0.007687426172196865, + 0.00494920602068305, + 0.005234932992607355, + 0.027838006615638733, + -0.016667429357767105, + 0.023320794105529785, + 0.03706291690468788, + -0.0040273950435221195, + 0.0020409096032381058, + 0.02534809708595276, + -0.019837642088532448, + -0.024450097233057022, + -0.012524382211267948, + -0.008646653965115547, + 0.009238517843186855, + -0.002426981693133712, + -0.029933340847492218, + -0.01123860850930214, + -0.002564743161201477, + 0.01944306492805481, + 0.008741896599531174, + -0.030014976859092712, + -0.014463245868682861, + 0.022967036813497543, + -0.007660213857889175, + -0.004466190468519926, + 0.03074970468878746, + -0.01710282266139984, + 0.021579217165708542, + -0.0212254598736763, + 0.005530864931643009, + -0.039321526885032654, + 0.021497581154108047, + 0.012592412531375885, + 0.003243345534428954, + -0.020164186134934425, + 0.019198156893253326, + 0.022354763001203537, + 0.0018623300129547715, + 0.007388092577457428, + -0.00577917555347085, + -0.009354169480502605, + -0.013143457472324371, + -0.005768971052020788, + 0.010109305381774902, + 0.022803762927651405, + 0.0010706271277740598, + 0.003653228282928467, + -0.01281691249459982, + 0.018490640446543694, + -0.02748424932360649, + -0.04212437570095062, + 0.024137157946825027, + 0.01812327653169632, + -0.02322555147111416, + -0.012769291177392006, + 0.005255342461168766, + 0.029334673658013344, + 0.0015349341556429863, + 0.008122820407152176, + 0.007122774608433247, + -0.0007134680054150522, + -0.0018929436337202787, + -0.008952789939939976, + 0.007986759766936302, + -0.00940859317779541, + 0.019633550196886063, + 0.01680348999798298, + 0.030368734151124954, + 0.021606430411338806, + -0.0033266826067119837, + 0.0005225578788667917, + -0.00702753197401762, + 0.00040711896144784987, + 0.016885126009583473, + -0.005054652690887451, + 0.028491098433732986, + 0.012959776446223259, + -0.007598986849188805, + -0.027225734665989876, + 0.01560615561902523, + -0.007857502438127995, + -0.02197379432618618, + 0.01617760956287384, + -0.013524428009986877, + 0.015238791704177856, + -0.02299424819648266, + 0.016422519460320473, + 0.026246096938848495, + -0.00817724410444498, + -0.024001097306609154, + -0.034450553357601166, + -0.009476623497903347, + 0.010048078373074532, + 0.025783492252230644, + 0.013211487792432308, + -0.02036827802658081, + -0.02347046136856079, + 0.022395581007003784, + 0.010633138939738274, + 0.010891654528677464, + 0.010803215205669403, + -0.005017236340790987, + 0.04187946394085884, + 0.009034426882863045, + -0.013408776372671127, + -0.6243550777435303, + -0.0021820724941790104, + -0.01227947324514389, + -0.01738855056464672, + 0.009980048052966595, + 0.04250534251332283, + 0.018096065148711205, + 0.00037352897925302386, + -0.024395672604441643, + 0.032953888177871704, + -0.0050308420322835445, + 0.015810245648026466, + -0.0038845313247293234, + 0.00906163826584816, + -0.0028776824474334717, + -0.030994614586234093, + 0.00487777404487133, + -0.004660076927393675, + 0.05295480042695999, + 0.005255342461168766, + -0.00513288751244545, + 0.028137341141700745, + -0.012000548653304577, + 0.006418660748749971, + 0.014000640250742435, + -0.009313350543379784, + 0.027212128043174744, + -0.010993699543178082, + 0.00017092618509195745, + -0.01431357953697443, + -0.019347822293639183, + 0.003694046288728714, + -0.012565200217068195, + 0.0026582847349345684, + 0.05243777111172676, + 0.018776368349790573, + -0.011225002817809582, + 0.00593904685229063, + 0.021143823862075806, + 0.01560615561902523, + -0.000781923474278301, + -0.02174249105155468, + -0.011925715021789074, + -0.01434079185128212, + 0.0022773148957639933, + 0.01951109617948532, + 0.05494128540158272, + -0.010571911931037903, + -0.003258652286604047, + -0.05072340741753578, + 0.019252581521868706, + -0.002321534790098667, + -0.003406618256121874, + 0.020844489336013794, + 0.014762579463422298, + 0.006316615268588066, + 0.052519407123327255, + -0.014762579463422298, + 0.002950815251097083, + -0.003986576572060585, + 0.0018640307243913412, + 0.021239066496491432, + 0.0074289110489189625, + -0.013395169749855995, + -0.04272304102778435, + 0.021592823788523674, + -0.016708247363567352, + -0.014667336829006672, + 0.026980824768543243, + 0.009878002107143402, + -0.01428636722266674, + 0.006888070143759251, + -0.0032144326251000166, + 0.0006390598136931658, + 0.0075377593748271465, + 0.028953704982995987, + 0.0019507694523781538, + -0.0011173980310559273, + 0.029552370309829712, + 0.03907661512494087, + -0.009741941466927528, + 0.012497169896960258, + 0.023674551397562027, + -0.009095653891563416, + 0.05643795430660248, + -0.014354397542774677, + -0.028436673805117607, + 0.007707835175096989, + -0.013333942741155624, + -0.015565337613224983, + 0.015334034338593483, + 0.02083088457584381, + 0.008592229336500168, + -0.004401561804115772, + 0.006194160785526037, + 0.024572551250457764, + -0.0012645135866478086, + 0.00533697847276926, + 0.01881718635559082, + -0.047811709344387054, + -0.013014200143516064, + 0.00017889848095364869, + 0.01927979290485382, + -0.004075016360729933, + 0.015252397395670414, + 0.014245549216866493, + -0.009741941466927528, + 0.025225643068552017, + 0.03665473684668541, + -0.026137249544262886, + -0.002328337635844946, + -0.01290535181760788, + -0.003864122088998556, + -0.018858004361391068, + -0.011850881390273571, + -0.015456488355994225, + 0.029443522915244102, + -0.007490138057619333, + 0.0017152144573628902, + -0.04492722451686859, + -0.0076125930063426495, + 0.0039151450619101524, + 0.017538215965032578, + -0.012245457619428635, + -0.0094358054921031, + 0.017456579953432083, + 0.01635448820888996, + 0.0013623071135953069, + -0.008714684285223484, + -0.011735230684280396, + -2.173781285819132e-05, + -0.013381564058363438, + 0.01681709475815296, + -0.003942356910556555, + 0.012619624845683575, + 0.010898456908762455, + 0.026871977373957634, + -0.0021446559112519026, + 0.015646973624825478, + -0.02609643153846264, + -0.013027806766331196, + -0.027729159221053123, + 0.01789197511970997, + -0.015279609709978104, + -0.022504430264234543, + -0.04538983106613159, + -0.02162003517150879, + 0.001356354565359652, + 0.009741941466927528, + -0.004221281502395868, + -0.015266004018485546, + -0.015456488355994225, + -0.018286550417542458, + 0.004170258529484272, + -0.015878276899456978, + -0.010299790650606155, + -0.04906346648931503, + -0.008190850727260113, + -0.014177518896758556, + -0.019837642088532448, + 0.011952927336096764, + 0.02202821709215641, + -0.013973427936434746, + 0.007211213931441307, + 0.0010629737516865134, + -0.011170578189194202, + 0.025035157799720764, + 0.01903488300740719, + -0.025144007056951523, + -0.024531733244657516, + 0.013606064021587372, + -0.029443522915244102, + -0.008966396562755108, + 0.0035783948842436075, + -0.004592046607285738, + 0.005224728491157293, + -0.0057655698619782925, + 0.014871427789330482, + 0.010088896378874779, + -0.006415259093046188, + 0.0030766711570322514, + -0.003158307634294033, + -0.028899280354380608, + -0.004415167961269617, + 0.014803397469222546, + -0.0006084461929276586, + 0.021783309057354927, + 0.017538215965032578, + -0.02977006882429123, + 0.026491006836295128, + -0.0012951272074133158, + 0.018912428990006447, + -0.011320245452225208, + 0.01658579148352146, + -0.020055338740348816, + -0.005881221033632755, + -0.0046294634230434895, + 0.016313670203089714, + 0.007381289731711149, + 0.010490274988114834, + 0.03798813000321388, + 0.0032671561930328608, + 0.015592548996210098, + -0.011449502781033516, + 0.007197607774287462, + -0.005064857192337513, + 0.025225643068552017, + 0.006789425853639841, + 0.05937686190009117, + 0.006935690995305777, + 0.035185281187295914, + -0.013844170607626438, + -0.03374303877353668, + -0.006942494306713343, + -0.0034117205068469048, + 0.0480838306248188, + -0.015905488282442093, + 0.014694549143314362, + 0.02604200690984726, + 0.007741850335150957, + 0.010653547942638397, + 0.007320062257349491, + 0.013830563984811306, + 0.006745206192135811, + -0.01653136871755123, + -0.012197836302220821, + 0.012592412531375885, + 0.014585700817406178, + -0.003108985722064972, + -0.01172842737287283, + -0.002148057334125042, + 0.0029950349126011133, + 0.011116154491901398, + 0.008646653965115547, + 0.02977006882429123, + 0.002714409725740552, + 0.028708795085549355, + 0.0030851750634610653, + 0.039375949651002884, + 0.0068982746452093124, + 0.004663478583097458, + 0.03706291690468788, + 0.022409187629818916, + -0.00767382001504302, + 0.011667200364172459, + -0.009796366095542908, + 0.003639622125774622, + 0.01514354906976223, + -0.005979865323752165, + -0.019198156893253326, + -0.0023980687838047743, + -0.02329358085989952, + -0.014490458182990551, + -0.02832782454788685, + -0.0018130079843103886, + -0.009429002180695534, + 0.017633458599448204, + 0.00840854737907648, + 0.028953704982995987, + 0.012123002670705318, + 0.008503790013492107, + 0.01557894330471754, + 0.00149156479164958, + -0.01646333746612072, + -0.005905031692236662, + 0.008775911293923855, + -0.020000914111733437, + -0.017470186576247215, + -8.918350067688152e-05, + -0.006313213612884283, + -0.000795104366261512, + -0.0072452290914952755, + -0.0038165010046213865, + 0.007605789694935083, + 0.028246188536286354, + -0.0007262236904352903, + 0.009476623497903347, + 0.023497672751545906, + 0.0065343123860657215, + 0.011490320786833763, + -0.005360789131373167, + -0.038804493844509125, + 0.003285864368081093, + 0.037770435214042664, + -0.012449548579752445, + -0.03562067449092865, + 0.0011071934131905437, + 0.023021459579467773, + -0.020341066643595695, + 0.02345685474574566, + -0.003819902427494526, + 0.014354397542774677, + -0.012191032990813255, + 0.006840448826551437, + 0.0049253953620791435, + -0.005234932992607355, + 0.02368815802037716, + -0.007326865568757057, + -0.011721624061465263, + -0.01876276172697544, + 0.015592548996210098, + -0.016544973477721214, + -0.006122728809714317, + -0.012265866622328758, + 0.025973975658416748, + -0.005792781710624695, + -0.02398749068379402, + -0.008646653965115547, + 0.010327002964913845, + -0.006979910656809807, + -0.003653228282928467, + -0.01055150292813778, + -0.026627067476511, + -0.02782440185546875, + -0.006959501653909683, + -0.007422107737511396, + 0.010429047979414463, + -0.018000822514295578, + 0.02534809708595276, + 0.018572278320789337, + -0.0162864588201046, + -0.0010408639209344983, + -0.016109580174088478, + 0.005860812030732632, + 0.017184458673000336, + 0.009422199800610542, + -0.0076125930063426495, + 0.02564743161201477, + 0.0011811763979494572, + -0.04187946394085884, + -0.0036872434429824352, + -0.027783581987023354, + 0.0021905764006078243, + 0.005432221107184887, + -0.0031770160421729088, + 0.0014958166284486651, + 0.028708795085549355, + -0.024626975879073143, + 0.01915733888745308, + 0.004990024026483297, + 0.0010281081777065992, + -0.0038845313247293234, + 0.029389098286628723, + -0.024817461147904396, + -0.024817461147904396, + -0.018218519166111946, + -0.0228853989392519, + 0.05442425608634949, + 0.013612867332994938, + -0.011408684775233269, + 0.02443649061024189, + 0.01511633675545454, + 0.04011067748069763, + -0.012347503565251827, + -0.023429641500115395, + 0.02259967289865017, + 0.023933066055178642, + 0.013068624772131443, + -0.009129668585956097, + -0.023960279300808907, + -0.005428819451481104, + -0.0055784862488508224, + 0.00025723964790813625, + 0.01514354906976223, + 0.012061775662004948, + 0.030314311385154724, + 0.004289311822503805, + -0.01812327653169632, + 0.009034426882863045, + 0.0003252699680160731, + -0.008884759619832039, + 0.011082138866186142, + 0.014531276188790798, + -0.02472221851348877, + 0.024831067770719528, + -0.007320062257349491, + -0.009116062894463539, + -0.02368815802037716, + 0.002920201513916254, + -0.01766067184507847, + -0.017932793125510216, + -0.020640399307012558, + -0.02129349112510681, + -0.006571728736162186, + -0.006632956210523844, + -0.028409462422132492, + 0.002969523426145315, + -0.025280067697167397, + -0.009531048126518726, + -0.025552188977599144, + -0.030423158779740334, + 0.0023708567023277283, + -0.01824573241174221, + -0.0023793603759258986, + 0.010333805344998837, + -0.03368861600756645, + -0.012483564205467701, + 0.009850790724158287, + 0.013170669786632061, + -0.012721669860184193, + 0.02559300698339939, + -0.019143732264637947, + -0.0060581001453101635, + 0.035185281187295914, + -0.012503973208367825, + -0.004214478190988302, + -0.015415670350193977, + -0.02794685587286949, + 0.0008869452867656946, + 0.0007780967862345278, + 0.001320638577453792, + 0.0009430703357793391, + 0.010599124245345592, + 0.019116520881652832, + -0.003762076608836651, + 0.004006986040621996, + -0.016789883375167847, + 0.011197790503501892, + 0.015007488429546356, + 0.006510501727461815, + 0.01630006544291973, + 0.021606430411338806, + 0.00843575969338417, + -0.008503790013492107, + 0.014857822097837925, + -0.015075518749654293, + -0.007000320125371218, + -0.020966945216059685, + 0.031402796506881714, + -0.00880992691963911, + 0.01293256413191557, + 0.0045546297915279865, + 0.005956054665148258, + -0.0032297393772751093, + 0.0021905764006078243, + -0.026518218219280243, + -0.017851155251264572, + 0.008082002401351929, + -0.03632819280028343, + 0.002978027332574129, + 0.007122774608433247, + 0.015184367075562477, + 0.011810063384473324, + -0.01273527555167675, + 0.0010910362470895052, + -0.011531139723956585, + 0.020218610763549805, + -0.011463109403848648, + -0.011510729789733887, + 0.04536261782050133, + -0.017361337319016457, + -0.013306730426847935, + -0.000840174441691488, + 0.011401881463825703, + 0.019769610837101936, + 0.008762305602431297, + 0.008585426025092602, + -0.00448659947142005, + -0.033879101276397705, + -0.005956054665148258, + 0.008068395778536797, + 0.0015604455256834626, + -0.02186494506895542, + -0.022980641573667526, + 0.0019762807060033083, + 0.02031385339796543, + -0.021824127063155174, + 0.010850836522877216, + -0.01853145845234394, + -0.025892339646816254, + -0.014708154834806919, + -0.00693909265100956, + 0.0162864588201046, + 0.027457037940621376, + -0.013123048469424248, + -0.01405506394803524, + -0.01299379114061594, + -0.012218245305120945, + 0.003195724217221141, + -0.0339607372879982, + 0.001433738972991705, + -0.029416309669613838, + 0.026627067476511, + 0.022762944921851158, + 0.019021278247237206, + -0.004983221180737019, + 0.03744388744235039, + 0.025198429822921753, + -0.004513811785727739, + 0.0034797508269548416, + -0.027838006615638733, + -0.012864533811807632, + -0.03741667792201042, + -0.0036600311286747456, + 0.0025273263454437256, + 0.011544745415449142, + 0.01532042771577835, + 0.028545523062348366, + 0.011449502781033516, + 0.03545740246772766, + -0.016150398179888725, + -0.008136426098644733, + -0.016953155398368835, + -0.039784129709005356, + -0.01790557987987995, + -0.0006522407056763768, + 0.022164277732372284, + 0.00705474428832531, + -0.029906129464507103, + 0.006180554628372192, + 0.03028709813952446, + 0.0019269587937742472, + 0.0021361520048230886, + 0.016708247363567352, + 0.005476440768688917, + -0.01830015704035759, + 0.03752552345395088, + 0.026695096865296364, + -0.009966442361474037, + 0.006183956284075975, + -0.012742078863084316, + -0.015687791630625725, + -0.03790649399161339, + 0.021524792537093163, + -0.018912428990006447, + 0.016490548849105835, + -0.0049764178693294525, + 0.0020341065246611834, + 0.012687655165791512, + -0.0009940930176526308, + 0.0071363807655870914, + -0.02454533986747265, + 0.003010341664776206, + -0.008796320296823978, + -0.01540206465870142, + -0.04427413269877434, + -0.005561478901654482, + -0.033770252019166946, + 0.01687151938676834, + 0.014667336829006672, + -0.0033947129268199205, + 0.017701489850878716, + -0.017279701307415962, + -0.013789745979011059, + -0.006503698416054249, + 0.00022386226919479668, + 0.017198065295815468, + 0.017701489850878716, + 0.045117709785699844, + 0.00866706296801567, + -0.027810795232653618, + -0.0021854741498827934, + -0.06051977351307869, + 0.02472221851348877, + -0.0035749932285398245, + 0.024463703855872154, + 0.013565246015787125, + 3.712435864144936e-05, + 0.006792827509343624, + 0.0019830837845802307, + -0.003707652445882559, + -0.02163364179432392, + -0.021307095885276794, + 0.01402785163372755, + 0.0083745326846838, + -0.005564880091696978, + -0.025946764275431633, + 0.0003037978895008564, + 0.0009600779158063233, + 0.013830563984811306, + -0.010741987265646458, + 0.004670281428843737, + -0.009510639123618603, + -0.021538399159908295, + 0.0013606064021587372, + 0.0406004935503006, + 0.00938138086348772, + 0.0015655477764084935, + 0.01589188352227211, + -0.028654370456933975, + 0.016449730843305588, + -0.029334673658013344, + -0.026531824842095375, + -0.002602159744128585, + -0.0219193696975708, + 0.03649146482348442, + 0.005251940805464983, + 0.009082048200070858, + 0.008428956381976604, + 0.008945987559854984, + -0.02197379432618618, + -0.005976463668048382, + 0.001998390769585967, + 0.02398749068379402, + -0.0212254598736763, + 0.005071660503745079, + 0.011864488013088703, + -0.001923557254485786, + 0.003302871948108077, + -0.015619761310517788, + 0.017701489850878716, + -0.007510547526180744, + -0.015102731063961983, + -0.02857273444533348, + -0.009394987486302853, + 0.018721943721175194, + -0.01425915490835905, + -0.011388275772333145, + -0.008619441650807858, + -0.023701762780547142, + -0.009054835885763168, + -0.02008255012333393, + 0.0025630423333495855, + -0.045471467077732086, + -0.017987215891480446, + -0.0037042510230094194, + 0.00573495589196682, + 0.030532008036971092, + -0.01600073091685772, + -0.0027246142271906137, + -0.008986805565655231, + 0.028980916365981102, + -0.039321526885032654, + 0.03137558326125145, + 0.037879280745983124, + -0.010946078225970268, + -0.014626518823206425, + -0.0007555617485195398, + 0.016490548849105835, + -0.002290921052917838, + 0.03730782866477966, + 0.01319788210093975, + -0.014068670570850372, + 0.005377796944230795, + 0.007401698734611273, + 0.021878551691770554, + -0.004200872499495745, + -0.012469957582652569, + 0.004751917906105518, + 0.014789791777729988, + 0.006547918543219566, + 0.0029014931060373783, + -0.009313350543379784, + 0.015701398253440857, + 0.005197516642510891, + 0.03194703906774521, + 0.03325321897864342, + -0.017823943868279457, + 0.006071706302464008, + 0.012088987976312637, + -0.019007671624422073, + -0.02557940036058426, + -0.04223322123289108, + -0.008449365384876728, + 0.015524518676102161, + -0.01410948857665062, + 0.012123002670705318, + -0.01181686669588089, + -0.021021369844675064, + -0.02254524827003479, + -0.006143137812614441, + -0.003217834047973156, + 0.011381472460925579, + -0.014068670570850372, + 0.014490458182990551, + -1.5120801435841713e-05, + 0.01835457980632782, + 0.01687151938676834, + 0.00855141133069992, + -0.017470186576247215, + 0.03085855394601822, + -0.008075199089944363, + -0.045580316334962845, + 0.004823349881917238, + 0.012299882248044014, + 0.02586512826383114, + 0.00010087621194543317, + -0.035484615713357925, + -0.012299882248044014, + 0.000198776091565378, + -0.038804493844509125, + -0.0034032168332487345, + 0.008381335064768791, + 0.022409187629818916, + 0.01195973064750433, + -0.0030579629819840193, + 0.0012321991380304098, + 0.03374303877353668, + 0.005728153046220541, + 0.021892156451940536, + -0.017796732485294342, + -0.00411583436653018, + 0.00020100834080949426, + 0.00834732037037611, + 0.009823578409850597, + 0.0014005742268636823, + -0.061064016073942184, + 0.021756095811724663, + 0.03676358610391617, + 0.010653547942638397, + 0.0038165010046213865, + 0.0325729176402092, + -0.0034780502319335938, + -0.029361886903643608, + 0.0055784862488508224, + -0.007313259411603212, + -0.013204685412347317, + -0.0054560317657887936, + 0.018939640372991562, + -0.027892431244254112, + 0.01408227626234293, + 0.010388229973614216, + 0.01287813950330019, + -0.003544379724189639, + -0.017238883301615715, + -0.0006441621226258576, + 0.015470094978809357, + 0.012980185449123383, + 0.01657218672335148, + -0.006789425853639841, + 0.010864442214369774, + -0.009197698906064034, + 0.011891700327396393, + 0.013075427152216434, + -0.007095562294125557, + 0.0009192596771754324, + 0.014789791777729988, + -0.004942402709275484, + 0.00416005402803421, + -0.004234887659549713, + -0.026341339573264122, + 0.0036430235486477613, + 0.012286275625228882, + -0.02425961196422577, + 0.026640674099326134, + -0.027742763981223106, + 0.013041412457823753, + 0.0050512515008449554, + -0.004932198207825422, + -0.02811012789607048, + -0.012667245231568813, + -0.006445873063057661, + 0.011571957729756832, + 0.007020729128271341, + -0.054124921560287476, + 0.003697447944432497, + -0.005554675590246916, + -0.02707606740295887, + 0.013646882027387619, + -0.028191763907670975, + 0.012619624845683575, + -0.025606611743569374, + -0.00926572922617197, + -0.005119281820952892, + -0.011150169186294079, + -0.014531276188790798, + 0.006268993951380253, + -0.016762670129537582, + -0.02190576307475567, + -0.033770252019166946, + 0.1735045313835144, + -0.034450553357601166, + -0.008660259656608105, + 0.0002587278140708804, + -0.007081956136971712, + -0.017402155324816704, + 0.03466825187206268, + 0.009748744778335094, + 0.00622137263417244, + 0.02730737067759037, + 0.003352194093167782, + 0.009687517769634724, + -0.018858004361391068, + 0.0017050099559128284, + 0.0016097674379125237, + 0.0010833828710019588, + -0.051893528550863266, + -0.018912428990006447, + -0.015905488282442093, + 0.014762579463422298, + 0.011891700327396393, + -0.014599306508898735, + -0.005973062012344599, + -0.021034974604845047, + 0.023851430043578148, + -0.002083428669720888, + 0.012456351891160011, + -0.0003225062391720712, + 0.007095562294125557, + 0.012218245305120945, + -0.040981464087963104, + 0.0033930123317986727, + -0.0019779815338552, + 0.014422427862882614, + -0.0072452290914952755, + 0.002665087813511491, + 0.013347548432648182, + -0.018749156966805458, + 0.018313761800527573, + 0.031239522621035576, + -0.002632773481309414, + -0.02127988450229168, + -0.00234534521587193, + -0.03665473684668541, + -0.007211213931441307, + 0.01927979290485382, + 0.002408273285254836, + -0.0010502181248739362, + -0.011605972424149513, + -0.018259337171912193, + -0.035076431930065155, + 0.04634225368499756, + -0.0016318772686645389, + 0.053553469479084015, + 0.013027806766331196, + -0.006411857903003693, + -0.004017190542072058, + 0.009775957092642784, + 0.016993973404169083, + 0.004983221180737019, + -0.037090130150318146, + 0.03017825074493885, + -0.014299972914159298, + 0.03366140276193619, + 0.014245549216866493, + 0.00758538069203496, + 0.010190942324697971, + -0.022286733612418175, + 0.0038981372490525246, + -0.03401516005396843, + -0.00758538069203496, + -0.014857822097837925, + -0.018313761800527573, + 0.004476394969969988, + -0.010020866058766842, + -0.020912520587444305, + 0.009449411183595657, + -0.003046057652682066, + 0.010286184027791023, + 0.0321103110909462, + 0.012157018296420574, + -0.0025137204211205244, + 0.016449730843305588, + -0.020409096032381058, + 0.018368186429142952, + -0.014748973771929741, + 0.019238974899053574, + 0.013381564058363438, + 0.013660488650202751, + -0.03785207122564316, + -0.007816683501005173, + -0.013844170607626438, + -0.0020613186061382294, + -0.004272304009646177, + -0.009197698906064034, + -0.00846297200769186, + 0.0021395536605268717, + 0.007816683501005173, + 0.0059254406951367855, + -0.001217742683365941, + -0.02186494506895542, + 0.049716558307409286, + 0.012150214985013008, + -0.008483381010591984, + 0.0047383117489516735, + -0.004551228601485491, + 0.007320062257349491, + 0.01204816997051239, + 0.01084403321146965, + -0.029634008184075356, + -0.003908341750502586, + -0.013286321423947811, + 0.011680806055665016, + -0.03017825074493885, + 0.0013546537375077605, + 0.01290535181760788, + -0.011204593814909458, + -0.006813236512243748, + 0.0216880664229393, + -0.004421970807015896, + 0.013293124735355377, + -0.030940189957618713, + 0.0004007411189377308, + 0.014299972914159298, + -0.022041823714971542, + -0.03964807093143463, + -0.03317158296704292, + 0.026082824915647507, + -0.007184001617133617, + 0.0071908049285411835, + 0.013857776299118996, + 0.008041183464229107, + 0.020395489409565926, + 0.0024371861945837736, + 0.009286139160394669, + 0.01104812417179346, + 0.004041001200675964, + -0.031457219272851944, + -0.020749248564243317, + -0.005251940805464983, + 0.017647065222263336, + -0.0006309812306426466, + -0.011721624061465263, + -0.005731554701924324, + 0.006513903383165598, + -0.016381701454520226, + 0.02259967289865017, + -0.024531733244657516, + -0.03265455365180969, + -0.023552097380161285, + -0.009299744851887226, + -0.009082048200070858, + -0.01070116925984621, + -0.011184184812009335, + 0.007877911441028118, + 0.02398749068379402, + -0.02903534099459648, + -0.018340975046157837, + 0.030205462127923965, + 0.006286001764237881, + -0.03632819280028343, + -0.028382249176502228, + 0.0075921835377812386, + -0.014857822097837925, + -0.008871153928339481, + 0.0005025739665143192, + -0.17339567840099335, + 0.016095973551273346, + 0.006799630355089903, + -0.0023691558744758368, + 0.012952973134815693, + -0.005360789131373167, + 0.016776276752352715, + 0.008741896599531174, + -0.011952927336096764, + -0.023279976099729538, + -0.007347274571657181, + -0.003819902427494526, + -0.02816455252468586, + -0.03213752433657646, + -0.013946215622127056, + -0.014068670570850372, + -0.02857273444533348, + 0.022001005709171295, + 0.014953064732253551, + 0.002996735507622361, + 0.006908479146659374, + -0.022218702360987663, + 0.016667429357767105, + -0.002418477786704898, + -0.015510912984609604, + 0.021470369771122932, + -0.019170943647623062, + 0.025851521641016006, + -0.012884942814707756, + -0.017361337319016457, + -0.01961994357407093, + -0.015456488355994225, + 0.01517076138406992, + -0.007422107737511396, + -0.035539038479328156, + 0.005891425535082817, + -0.014476852491497993, + 0.005663524381816387, + -0.014925852417945862, + 0.05385280027985573, + -0.006153342314064503, + 0.028191763907670975, + -0.012728473171591759, + 0.012572003528475761, + -0.026831157505512238, + 0.022327551618218422, + 0.006517304573208094, + -0.03213752433657646, + -0.020490732043981552, + -0.01600073091685772, + -0.020871702581644058, + -0.017755914479494095, + 0.00825888104736805, + 0.02402830868959427, + -0.00019463049829937518, + -0.011605972424149513, + 0.007490138057619333, + 0.005024039186537266, + 0.006850653328001499, + 0.014558488503098488, + -0.02329358085989952, + -0.018259337171912193, + 0.01451767049729824, + -0.02272212691605091, + -0.02655903622508049, + -0.018613096326589584, + -0.002610663650557399, + 0.01653136871755123, + -0.015238791704177856, + 0.0013333943206816912, + -0.001998390769585967, + 0.021783309057354927, + 0.02432764321565628, + -0.004816546570509672, + -0.004517213441431522, + 0.010218153707683086, + -0.003921947907656431, + 0.0024677999317646027, + 0.012286275625228882, + 0.010925669223070145, + -0.008054790087044239, + 0.043104011565446854, + -0.01227947324514389, + -0.017116429284214973, + 0.0024252808652818203, + -0.010653547942638397, + -0.018164096400141716, + 0.00940859317779541, + -0.0104970782995224, + -0.01425915490835905, + 0.007843895815312862, + -0.02162003517150879, + -0.020858095958828926, + -0.029416309669613838, + 0.0006131232366897166, + -0.00027297166525386274, + 0.005867615342140198, + -0.0004575038910843432, + 0.0004358192381914705, + -0.01015012338757515, + 0.0014958166284486651, + -0.0066431607119739056, + -0.022191490978002548, + 0.009796366095542908, + 0.016395308077335358, + 0.004006986040621996, + -0.02489909715950489, + 0.013449594378471375, + 0.055621590465307236, + -0.0016692939680069685, + -0.0023300384636968374, + -0.01158556342124939, + 0.010980093851685524, + 0.01658579148352146, + -4.195424480712973e-06, + -0.004605652764439583, + -0.01961994357407093, + -0.02673591673374176, + 0.02213706634938717, + 0.017851155251264572, + 0.04680486023426056, + -0.020912520587444305, + 0.011122957803308964, + -0.00846297200769186, + -0.013585655018687248, + -0.01842261105775833, + -0.08588147908449173, + -0.006792827509343624, + 0.03080412931740284, + 0.007952744141221046, + -0.0001555130584165454, + 0.011776048690080643, + 0.001621672767214477, + 0.004177061840891838, + 0.003707652445882559, + 0.022681308910250664, + -0.015293216332793236, + -0.016027944162487984, + -0.0070615471340715885, + -0.010796411894261837, + 0.04767564684152603, + 0.0037008493673056364, + 0.012653639540076256, + -0.006615948863327503, + -0.023089490830898285, + 0.029470734298229218, + -0.008741896599531174, + 0.0038301069289445877, + -0.006993516813963652, + -0.0013452995335683227, + -0.022558854892849922, + -0.010476669296622276, + -0.03132116049528122, + 0.0025052165146917105, + 0.001945667201653123, + -0.014640124514698982, + 0.0007015626761130989, + -0.03390631079673767, + 0.011952927336096764, + -0.01904848963022232, + 0.0011250514071434736, + 0.0221506729722023, + -0.027225734665989876, + -0.017810337245464325, + 0.018789974972605705, + -0.0447639524936676, + 0.005493448581546545, + -0.006653365213423967, + -0.00668397918343544, + -0.026763128116726875, + -0.005554675590246916, + -0.03464103862643242, + 0.007735047489404678, + 0.018789974972605705, + 0.015334034338593483, + 0.0015961613971740007, + 0.0013410476967692375, + -0.03162049129605293, + -0.02247721701860428, + -0.015497307293117046, + 0.03632819280028343, + 0.013891790993511677, + 0.014354397542774677, + -0.00042348873103037477, + -0.003527372144162655, + -0.009170487523078918, + -0.01767427660524845, + 0.01195973064750433, + -0.029987765476107597, + 0.020109763368964195, + 0.02811012789607048, + -0.006670373026281595, + -0.012170623987913132, + 0.007279244251549244, + 0.015361246652901173, + 0.007415304891765118, + -0.011714820750057697, + 0.001028958591632545, + -0.0032467469573020935, + 0.029797280207276344, + -0.037144556641578674, + 0.0026991029735654593, + -0.034096796065568924, + -0.017579033970832825, + 0.004609054420143366, + 0.009857593104243279, + -0.015034700743854046, + -0.03474988788366318, + -7.600262324558571e-05, + -0.026695096865296364, + 0.008898366242647171, + 0.016667429357767105, + -0.014789791777729988, + -0.01612318679690361, + 0.038695644587278366, + -0.03717176616191864, + 0.01534764003008604, + 0.007898320443928242, + 0.01892603561282158, + 0.0002183348115067929, + -0.002614065073430538, + 0.01978321745991707, + 0.008381335064768791, + -0.003656629705801606, + 0.009422199800610542, + 0.03551182895898819, + -0.01557894330471754, + -0.014490458182990551, + -0.06661529093980789, + 0.01493945810943842, + 0.02609643153846264, + 0.0015689493156969547, + 0.00013797399878967553, + 0.0020766255911439657, + 0.0045580314472317696, + 0.003035853151232004, + 0.02031385339796543, + 0.0358927957713604, + -0.028436673805117607, + 0.022055430337786674, + -0.013490412384271622, + -0.001164168817922473, + -0.01293936651200056, + -0.013354351744055748, + 0.014218336902558804, + -0.006207766942679882, + 0.03058643266558647, + 0.019769610837101936, + -0.0024865081068128347, + -0.015878276899456978, + 0.0050308420322835445, + 0.02620527893304825, + -0.023592915385961533, + 0.009946032427251339, + 0.006170350126922131, + 0.0018351179314777255, + 0.002095333766192198, + -0.007660213857889175, + 0.025402521714568138, + -0.008816729299724102, + -0.01778312586247921, + 0.02035467140376568, + -0.028082916513085365, + 0.0046838875859975815, + 0.013905397616326809, + 0.026314128190279007, + 0.0052689481526613235, + 0.05056013539433479, + -0.011918911710381508, + -0.019483882933855057, + 0.008381335064768791, + -0.023674551397562027, + -0.015483700670301914, + 0.004619258921593428, + 0.02295343019068241, + 0.015810245648026466, + 0.006755410693585873, + -0.009850790724158287, + 0.015959912911057472, + 0.02461336925625801, + 0.008993607945740223, + -0.0035511828027665615, + 0.027062460780143738, + 0.012823715806007385, + 0.023198340088129044, + 0.009163684211671352, + 0.023211944848299026, + -0.029334673658013344, + 0.043566618114709854, + 0.01052429061383009, + 0.017415761947631836, + 0.001680348883382976, + 0.007020729128271341, + -0.01296657882630825, + -0.03058643266558647, + -0.010095699690282345, + 0.007102365605533123, + -0.01915733888745308, + -0.0024507923517376184, + -0.007068350445479155, + 0.0019932882860302925, + 0.030994614586234093, + -0.006666971370577812, + 0.010027669370174408, + 0.00362941762432456, + -0.0002306653041159734, + -0.017279701307415962, + 0.02299424819648266, + 0.022926218807697296, + -0.008061593398451805, + 0.004870970733463764, + 0.006908479146659374, + 0.017252489924430847, + 0.0011378071503713727, + -0.013381564058363438, + 0.0028725801967084408, + 0.004847160540521145, + 0.0049219937063753605, + 0.00217356882058084, + -0.00972833577543497, + -0.014163912273943424, + 0.0165177620947361, + 0.0015374852810055017, + 0.023552097380161285, + 0.0004779130103997886, + -0.01755182258784771, + 0.016613004729151726, + 0.030722493305802345, + 0.0028504703659564257, + 0.005605698563158512, + -0.013531230390071869, + -0.003023947821930051, + -0.021701673045754433, + 0.0013861177721992135, + -0.01170121505856514, + -0.0042689028196036816, + 0.002870879601687193, + 0.027389006689190865, + -0.0022892202250659466, + -0.021075792610645294, + 0.012980185449123383, + 0.004932198207825422, + -0.010748790577054024, + 0.0020732239354401827, + -0.02488549053668976, + -0.025565793737769127, + -0.03523970767855644, + 0.033416494727134705, + 0.01813688315451145, + -0.0014269360108301044, + 0.0006620200583711267, + -0.001505170832388103, + 0.0032450463622808456, + -0.004010387230664492, + 0.022762944921851158, + -0.022694915533065796, + -0.009789562784135342, + -0.013803351670503616, + 0.001253458671271801, + -0.0006114225252531469, + -0.029987765476107597, + -0.031076250597834587, + -0.0044491831213235855, + -0.013633276335895061, + 0.023946672677993774, + -0.00622137263417244, + 0.0193342175334692, + 0.10378705710172653, + 0.038804493844509125, + -0.02185133844614029, + 0.02247721701860428, + -0.02186494506895542, + 0.012728473171591759, + 0.0018895420944318175, + 0.027865219861268997, + 0.0007372786058112979, + -0.03262734040617943, + 0.013381564058363438, + -0.008068395778536797, + 0.01084403321146965, + -0.0214567631483078, + -2.3863760361564346e-05, + 0.017511004582047462, + 0.008102411404252052, + 0.023715369403362274, + -0.020177792757749557, + -0.012864533811807632, + 0.01865391433238983, + -0.022912612184882164, + -0.006007077172398567, + 0.014463245868682861, + -0.006340425927191973, + -0.016912337392568588, + -0.007653411012142897, + -0.017579033970832825, + -0.011143366806209087, + -0.02259967289865017, + -0.013789745979011059, + -0.009741941466927528, + -0.055730439722537994, + -0.035185281187295914, + 0.011605972424149513, + -0.03121231123805046, + -0.0030171447433531284, + -0.01738855056464672, + 0.023851430043578148, + -0.008082002401351929, + 0.014095881953835487, + 0.040355585515499115, + -0.009483426809310913, + -0.02977006882429123, + -0.006360834930092096, + -0.026422975584864616, + 0.013538033701479435, + -0.006449274253100157, + -0.015919094905257225 + ], + "metadata": { + "source": "Thesis_Verladegeraeusche_in_Speditionen.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 41, + "has_images": true, + "image_count": 51, + "coordinates": "CoordinatesMetadata(points=((204.16666666666666, 189.02777777777797), (204.16666666666666, 642.3611111111111), (936.1666666666666, 642.3611111111111), (936.1666666666666, 189.02777777777797)), system=)", + "links": [], + "last_modified": "2025-05-05T22:59:16", + "_known_field_names": "frozenset({'cc_recipient', 'link_texts', 'url', 'filetype', 'category_depth', 'page_number', 'filename', 'orig_elements', 'detection_origin', 'email_message_id', 'page_name', 'coordinates', 'table_as_cells', 'link_start_indexes', 'sent_to', 'bcc_recipient', 'languages', 'last_modified', 'link_urls', 'file_directory', 'subject', 'data_source', 'detection_class_prob', 'image_base64', 'text_as_html', 'attached_to_filename', 'key_value_pairs', 'signature', 'sent_from', 'header_footer_type', 'parent_id', 'links', 'emphasized_text_contents', 'emphasized_text_tags', 'image_mime_type', 'is_continuation', 'image_path'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "Thesis_Verladegeraeusche_in_Speditionen.pdf", + "detection_class_prob": 0.2568194270133972, + "parent_id": "d45475a34bc527cde6987546fa6dd2f5", + "text_as_html": "
Flurf\u00f6rderger\u00e4t |Anzahl Einzelereignisse ElMax-PegelSchallleistungspegel
LAFmaxLWA,5sLWAmaxLWA,1hKlLWAT,1h
[dB(A)][dB(A)][dB(A)][dB(A)][dB(A)][dB(A)]
Gabelstapler29769,3100,7108,872,15,777,8
STABW [dB]6,54,96,54,92,9-
Gabelhubwagen9968,6100,7108,172,16,279,5
STABW [dB]6,45,16,4512,7-
", + "id": "5ba44de7-0ff3-4c0c-b018-67e92171e1c2", + "processing_timestamp": "2025-05-06T14:18:19.298665", + "chunk_number": 46, + "total_chunks": 49, + "chunking_strategy": "hybrid", + "word_count": 237 + } +} \ No newline at end of file diff --git a/data/processed/85fd305f-83de-70b0-47e8-2dc000000047.json b/data/processed/85fd305f-83de-70b0-47e8-2dc000000047.json new file mode 100644 index 0000000000000000000000000000000000000000..16d10d79c31f8e48a1f07b2992ab823b75534ce3 --- /dev/null +++ b/data/processed/85fd305f-83de-70b0-47e8-2dc000000047.json @@ -0,0 +1,1570 @@ +{ + "id": "85fd305f-83de-70b0-47e8-2dc000000047", + "content": "- [87] Lohninger, H.: Zuf\u00e4llige und systematische Fehler, 2021, http://www.statis- tics4u.info/fundstat_germ/ee_precision_accuracy.html [Zugriff am: 01.06.2023]. - [88] Thode, J.: Aus dem Laboralltag \u2013 Systematische und zuf\u00e4llige Fehler, 2023, https://mpl.loesungsfabrik.de/blog/methodenvalidierung/fehlerarten [Zugriff am: 01.06.2023]. - [89] Dr.-Ing. Werner Schirmer: Technischer L\u00e4rmschutz \u2013 Grundlagen und praktische Ma\u00dfnahmen zum Schutz vor L\u00e4rm und Schwinungen von Maschinen. Springer Berlin Heidelberg, 2005. ## VII\n\n\n## Formelverzeichnis\n\nFormelverzeichnis\n\n## Formelverzeichnis\n\n\n| Formel | 1: | Beurteilungspegel | [dB(A)] | .................................................................................... | 10 | Formel | 2: | Impulszuschlag | [dB(A)] | ........................................................................................ | 11 | Formel | 3: | Taktmaximal-Mittelungspegel | [dB(A)] | ................................................................. | 11 | Formel | 4: | meteorologische | Korrektur | [dB(A)] | ..................................................................... | 12 | Formel | 5: | Schalldruck | [Pa | = | N/m\u00b2] | ....................................................................................... | 14 | Formel | 6: | Schallschnelle | [m/s] | ............................................................................................. | 14 | Formel | 7: | Schallleistung | [W] | ................................................................................................ | 14 | Formel | 8: | Schallleistung | der | einzelnen | Teilfl\u00e4chen | [W] | ....................................................... | 15 | Formel | 9: | Bezugsgr\u00f6\u00dfe | ......................................................................................................... | 15 | Formel | 10: | Schallleistung | der | einzelnen | Teilfl\u00e4chen | [W] | ..................................................... | 15 | Formel | 11: | Schallleistungspegel | bezogen | auf | 5 | Sekunden | [dB(A)] | ...................................... | 15 | Formel | 12: | maximale | Schallleistungspegel | [dB(A)] | .............................................................. | 15 | Formel | 13: | st\u00fcndlicher | Schallleistungspegel | [dB(A)] | ........................................................... | 16 | Formel | 14: | impulsbehafteter | st\u00fcndlicher | Schallleistungspegel | [dB(A)] | .............................. | 16 | Formel | 15: | Fremdger\u00e4uschkorrektur | [dB(A)]....................................................................... | 17 | Formel | 16: | Umgebungskorrektur | [dB(A)] | ............................................................................ | 17 | Formel | 17: | zeitlich | gemittelte | Messfl\u00e4chen-Schalldruckpegel | [dB(A)] | ................................ | 17 | Formel | 18: | \u00e4quivalenter | Dauerschallpegel | [dB(A)] | .............................................................. | 18 | Formel | 19: | komplexe | Richtungsfaktor | [-] | ............................................................................ | 19 | Formel | 20: | Richtungsfaktor | [-] | ............................................................................................. | 19 | Formel | 21: | Richtma\u00df | [dB(A)]................................................................................................ | 19 | Formel | 22: | Konturen | des | Polarkoordinatendiagramms | ...................................................... | 20 | Formel | 23: | relative | H\u00e4ufigkeit | [-] | ......................................................................................... | 22 | Formel | 24: | Mittelungspegel | [dB(A)]..................................................................................... | 22 | Formel | 25: | Varianz | der | Schalldruckpegel | [dB(A)] | ................................................................ | 22 | Formel | 26: | Standardabweichung | der | Schalldruckpegel | [dB(A)] | .......................................... | 23 | Formel | 27: | Dichtefunktion | der | Normalverteilung | ............................................................... | 23 | Formel | 28: | Schallleistungspegel | nach | dem | Technischen | Bericht | 1995 | [7] | [dB(A)] | .............. | 26 |\n|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|\n\n\n## Formel 29: Schallleistungspegel nach dem Technischen Bericht 2005 [8] [dB(A)] .............. 26\n\n\n## VIII\n\nAbbildungsverzeichnis\n\n## Abbildungsverzeichnis\n\nAbbildung 1: Ausma\u00df der L\u00e4rmbel\u00e4stigung der Bev\u00f6lkerung in Deutschland 2020 [4] ........ 3 Abbildung 2: \u00dcberblick \u00fcber die Grundnormen zur Bestimmung des\n\n| Abbildung | 3: | Geometrische | Darstellung | der | Richtcharakteristik | ......................................... | 20 | Abbildung | 4: | Verladezone | von | innen | und | au\u00dfen | ................................................................. | 32 | Abbildung | 5: | Oberfl\u00e4che | der | innenliegenden | \u00dcberladebr\u00fccke | ........................................... | 33 | Abbildung | 6: | Tautliner | .......................................................................................................... | 34 | Abbildung | 7: | Koffer | Auflieger | - | blau | ..................................................................................... | 34 | Abbildung | 8: | Wechselbr\u00fccke | ............................................................................................... | 34 | Abbildung | 9: | Prozessablauf | des | Beladevorgangs | ................................................................. | 39 | Abbildung | 10: | Exportbereich | von | au\u00dfen | ............................................................................. | 42 | Abbildung | 11: | Ortsfeste | Mikrofonposition | .......................................................................... | 44 | Abbildung | 12: | Variabler | Mikrofonaufbau | ............................................................................ | 45 | Abbildung | 13: | Arbeitsschritte | f\u00fcr | die | Berechnung | der | gew\u00fcnschten | akustischen | Abbildung | 14: | Vorgehensweise | statistische | Kennwerte | ...................................................... | 49 | Abbildung | 15: | Vorgang | f\u00fcr | die | Berechnung | der | Richtcharakteristik | vom | 03.05.2023 | ........ | 52 | Abbildung | 16: | Messpunkte | im | Polarkoordinatensystem | vom | 03.05.2023 | .......................... | 53 | Abbildung | 17: | Messpunkte | im | Polarkoordinatensystem | vom | 27.04.2023 | .......................... | 54 |\n|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|\n\nSchallleistungspegels ......................................................................................... 13\nKenngr\u00f6\u00dfen ....................................................................................................... 48\n\n## IX\n\nTabellenverzeichnis\n\n## Tabellenverzeichnis\n\nTabelle 1: Ergebnisse der Verladeger\u00e4usche ......................................................................... II Tabelle 2: \u00dcbersicht \u00fcber den Schallleistungspegel verschiedener Vorg\u00e4nge [7] ............... 25 Tabelle 3: \u00dcbersicht \u00fcber die aktuellen Untersuchungsergebnisse .................................... 26 Tabelle 4: \u00dcbersicht \u00fcber die Schallleistungspegel verschiedener Fahrzeugtypen [65] ..... 28 Tabelle 5: \u00dcbersicht \u00fcber die Schallleistungspegel verschiedener Fahrzeugtypen [67] ..... 29 Tabelle 6: Gabelhubwagen [77] ........................................................................................... 36 Tabelle 7: Elektro-Gegengewichtsstapler [78] ..................................................................... 37 Tabelle 8: Verwendete Messger\u00e4te und Equipment ........................................................... 40 Tabelle 9: Handschallpegelmesser Norsonic 140, Stand: 27.07.2021 ................................. 41 Tabelle 10: \u00dcberblick \u00fcber die verschiedenen Messungstage ............................................ 42 Tabelle 11: Emissionsans\u00e4tze f\u00fcr die verschiedenen Flurf\u00f6rderger\u00e4te ............................... 56 Tabelle 12: Vergleich verschiedene Flurf\u00f6rderger\u00e4te mit unterschiedlichen Anh\u00e4ngertypen .................................................................................................. 59\nTabelle 13: Ergebnisse des Richtma\u00dfes mit dazugeh\u00f6rigen Azimuthwinkel f\u00fcr ................. 67\nTabelle 14: Ergebnisse der Validierung ................................................................................ 69\n\n## X\n\n\n## Diagrammverzeichnis\n\n\n## Diagrammverzeichnis\n\nDiagramm 1: Normalverteilung Gabelstapler \u2013 Koffer Anh\u00e4nger Beladung ....................... 61 Diagramm 2: Normalverteilung Gabelstapler \u2013 Wechselbr\u00fccke Beladung ......................... 62 Diagramm 3: Normalverteilung Gabelstapler \u2013 Tautliner Beladung.................................... 63 Diagramm 4: Normalverteilung Gabelhubwagen \u2013 Koffer Beladung .................................. 64 Diagramm 5: Normalverteilung Gabelhubwagen \u2013 Wechselbr\u00fccke Beladung ................... 65 Diagramm 6: Richtwirkung eines Gabelstaplers (38 gesamt Einzelereignisse) ................... 67 Diagramm 7: Richtwirkung eines Gabelhubwagens (83 gesamt Einzelereignisse) .............. 68\n\n## XI\n\nAnh\u00e4nge\n\n## Anh\u00e4nge\n\n\n## Anhang 1: Emissionsdatenbl\u00e4tter\n\n\n## Emissionsdatenblatt\n\n\n## Emissionsdatenblatt\n\n\n## Nr.1\n\n\n## Gabelstapler Beladevorgang \u00fcber innenliegenden\n\n\n## Vorgang\n\n\n## hydraulischen \u00dcberladebr\u00fccke mit Klapplippe (Stahl\n\n\n## geriffelte Oberfl\u00e4che), Planen-Torrandabdichtung\n\n\n## Anh\u00e4nger-Typ\n\n\n## Anh\u00e4nger-Typ\n\n\n## Gemittelt \u00fcber Koffer, Tautliner und Wechselbr\u00fccken\n\n\n## Zustand des Flurf\u00f6rderger\u00e4ts Gebraucht\n\n\n## Mess- und Beurteilungsparameter\n\n\n## Dauer des Vorgangs\n\n\n## Impulshaltigkeit K\u0131\n\n\n## Standardabweichung der Impulshaltigkeit s\n\n\n## Ton- und Informationshaltigkeit Kr\n\n\n[IMAGE: ]\n\n\n## XII\n\nAnh\u00e4nge\nXIII\n\n## Emissionsdatenblatt\n\n\n## Emissionsdatenblatt\n\n\n## Nr.2\n\n\n## Gabelhubwagen Beladevorgang \u00fcber innenliegenden\n\n\n## Vorgang\n\n\n## hydraulischen \u00dcberladebr\u00fccke mit Klapplippe (Stahl\n\n\n## geriffelte Oberfl\u00e4che), Planen-Torrandabdichtung\n\n\n## Anh\u00e4nger-Typ\n\n\n## Anh\u00e4nger-Typ\n\n\n## Gemittelt \u00fcber Koffer, Tautliner und Wechselbr\u00fccken\n\n\n## Zustand des Flurf\u00f6rderger\u00e4ts Gebraucht\n\n\n## Mess- und Beurteilungsparameter\n\n\n## Dauer des Vorgangs\n\nca. 15\n[s]\n\n## Impulshaltigkeit KI\n\n6,2\n[dB(A)]\n\n## Standardabweichung der Impulshaltigkeit s\n\n2,7\n[dB(A)]\n\n## Ton- und Informationshaltigkeit Kr\n\n\n[IMAGE: ]\n\n\n## Lwar,\u0131h\n\nAnh\u00e4nge\n\n## Emissionsdatenblatt\n\n\n## Emissionsdatenblatt\n\n\n## Gabelstapler Beladevorgang \u00fcber innenliegenden\n\n\n## Vorgang\n\n\n## hydraulischen \u00dcberladebr\u00fccke mit Klapplippe (Stahl\n\n\n## geriffelte Oberfl\u00e4che), Planen-Torrandabdichtung\n\n\n## Anh\u00e4nger-Typ\n\n\n## Anh\u00e4nger-Typ\n\n\n## Tautliner\n\n\n## Zustand des Flurf\u00f6rderger\u00e4ts Gebraucht\n\n\n## Mess- und Beurteilungsparameter\n\n\n## Dauer des Vorgangs\n\n\n## Impulshaltigkeit K\u0131\n\n\n## Standardabweichung der Impulshaltigkeit s\n\n\n## Ton- und Informationshaltigkeit Kr\n\n\n[IMAGE: ]\n\n\n## XIV\n\n\n## Nr.3\n\nAnh\u00e4nge\n\n## Emissionsdatenblatt\n\n\n## Emissionsdatenblatt\n\n\n## Gabelstapler Beladevorgang \u00fcber innenliegenden\n\n\n## Vorgang\n\n\n## hydraulischen \u00dcberladebr\u00fccke mit Klapplippe (Stahl\n\n\n## geriffelte Oberfl\u00e4che), Planen-Torrandabdichtung\n\n\n## Anh\u00e4nger-Typ\n\n\n## Anh\u00e4nger-Typ\n\n\n## Koffer\n\n\n## Zustand des Flurf\u00f6rderger\u00e4ts Gebraucht\n\n\n## Mess- und Beurteilungsparameter\n\n\n## Dauer des Vorgangs\n\n\n## Impulshaltigkeit K\u0131\n\n\n## Standardabweichung der Impulshaltigkeit s\n\n\n## Ton- und Informationshaltigkeit Kr\n\n\n[IMAGE: ]\n\n\n## Nr.4\n\n\n## XV\n\nAnh\u00e4nge\nXVI\n\n## Emissionsdatenblatt\n\n\n## Emissionsdatenblatt\n\n\n## Nr.5\n\n\n## Gabelstapler Beladevorgang \u00fcber innenliegenden\n\n\n## Vorgang\n\n\n## hydraulischen \u00dcberladebr\u00fccke mit Klapplippe (Stahl\n\n\n## geriffelte Oberfl\u00e4che), Planen-Torrandabdichtung\n\n\n## Anh\u00e4nger-Typ\n\n\n## Anh\u00e4nger-Typ\n\n\n## Wechselbr\u00fccke\n\n\n## Zustand des Flurf\u00f6rderger\u00e4ts Gebraucht\n\n\n## Mess- und Beurteilungsparameter\n\n\n## Dauer des Vorgangs\n\nca. 15\n[s]\n\n## Impulshaltigkeit K\u0131\n\n\n## Standardabweichung der Impulshaltigkeit s\n\n\n## Ton- und Informationshaltigkeit Kr\n\n\n[IMAGE: ]\n\nAnh\u00e4nge\nXVII\n\n## Emissionsdatenblatt\n\n\n## Emissionsdatenblatt\n\n\n## Nr.6\n\n\n## Gabelhubwagen Beladevorgang \u00fcber innenliegenden\n\n\n## Vorgang\n\n\n## hydraulischen \u00dcberladebr\u00fccke mit Klapplippe (Stahl\n\n\n## geriffelte Oberfl\u00e4che), Planen-Torrandabdichtung\n\n\n## Anh\u00e4nger-Typ\n\n\n## Koffer\n\n\n## Zustand des Flurf\u00f6rderger\u00e4ts Gebraucht\n\n\n## Mess- und Beurteilungsparameter\n\n\n## Dauer des Vorgangs\n\n\n## Impulshaltigkeit K\u0131\n\n\n## Standardabweichung der Impulshaltigkeit s\n\n\n## Ton- und Informationshaltigkeit Kr\n\n\n[IMAGE: ]\n\nAnh\u00e4nge\nXVIII\n\n## Emissionsdatenblatt\n\n\n## Emissionsdatenblatt\n\n\n## Nr.7\n\n\n## Gabelstapler Beladevorgang \u00fcber innenliegenden\n\n\n## Vorgang\n\n\n## hydraulischen \u00dcberladebr\u00fccke mit Klapplippe (Stahl\n\n\n## geriffelte Oberfl\u00e4che), Planen-Torrandabdichtung\n\n\n## Anh\u00e4nger-Typ\n\n\n## Anh\u00e4nger-Typ\n\n\n## Wechselbr\u00fccke\n\n\n## Zustand des Flurf\u00f6rderger\u00e4ts Gebraucht\n\n\n## Mess- und Beurteilungsparameter\n\n\n## Dauer des Vorgangs\n\nca. 15\n[s]\n\n## Impulshaltigkeit KI\n\n5,0\n[dB(A)]\n\n## Standardabweichung der Impulshaltigkeit s\n\n2,1\n[dB(A)]\n\n## Ton- und Informationshaltigkeit Kr\n\n\n[IMAGE: ]\n\nAnh\u00e4nge\n\n## Anhang 2: Lagepl\u00e4ne\n\nLageplan Allgemein\n\n[IMAGE: Zeichenerkl\u00e4rung EI +a\u0131e U] Anh\u00e4nger \u00a9 Messpunkt]\n\nLageplan Validierung: 27.04.2023\n\n[IMAGE: Zeichenerkl\u00e4rung EI \u00bbale U) Anh\u00e4nger TI] stachenscranaueite \u00a9 Messpunkt]\n\nXIX\nAnh\u00e4nge\nLageplan Validierung: 03.05.2023\n\n[IMAGE: Zeichenerkl\u00e4rung EEE +are U] Anh\u00e4nger II rtschenschatiaveite, \u00ae Messpunkt.] Lageplan Richtcharakteristik: 27.04.2023\n\n[IMAGE: [U wo IN w) N N Zeichenerkl\u00e4rung EI \u00bbale U] \u201aAnh\u00e4nger II] Ftachenschattauelte \u00ae Messpunkt]\n\n\n## XX\n\nAnh\u00e4nge\nLageplan Richtcharakteristik: 03.05.2023\n\n[IMAGE: Zeichenerkl\u00e4rung EI +a\u0131e U) Anh\u00e4nger [MIT] Ft\u00e4chenschaitauelte \u00a9 Messpunkt]\n\n\n## XXI\n\nAnh\u00e4nge\n\n## Anhang 3: Messprotokolle\n\n\n| Bearbeiterin: | Messgehilfe: | Messzeit: | Wetterbedingungen: | Bedeckungsgrad/Wetter: | Windrichtung/-geschwindigkeit: | Temperatur/ | Luftdruck | Messger\u00e4t: | Mikrofonh\u00f6he: | Bearbeiterin: | Messgehilfe: | Messzeit: | Wetterbedingungen: | Bedeckungsgrad/Wetter: | Windrichtung/-geschwindigkeit: | Temperatur/ | Luftdruck | Messger\u00e4t: | Mikrofonh\u00f6he: | Bearbeiterin: | Messgehilfe: | Messzeit: | Wetterbedingungen: | Bedeckungsgrad/Wetter: | Selin | Karag\u00f6z | Datum: | 17.04.2023 | Tobias | Gassner | 13:24:19 | bis | 14:14:35 | [hh:mm:ss] | Bew\u00f6lkt, | leichter | regen | N-NW/ | 13 | km/h | 8,4 | \u00b0C/ | 1021,5 | hPa | Norsonic-Tippkemper | GmbH | Typ | 140, | geeicht | 140-1 | (ortsfest) | Norsonic-Tippkemper | GmbH | Typ | 140, | geeicht | 140-3 | (variabel) | Jeweils | 3,5 | m | Selin | Karag\u00f6z | Datum: | 24.04.2023 | Sebastian | Gerner | ENTF\u00c4LLT | Bew\u00f6lkt | SW/ | 15,1 | km/h | 10 | \u00b0C/ | 1009,4 | hPa | Norsonic-Tippkemper | GmbH | Typ | 140, | geeicht | 140-1 | (ortsfest) | Norsonic-Tippkemper | GmbH | Typ | 140, | geeicht | 140-3 | (variabel) | Jeweils | 3,5 | m | Selin | Karag\u00f6z | Datum: | 27.04.2023 | Lena | Roberts | 14:07:26 | bis | 14:50:17 | [hh:mm:ss] | Sonnig |\n|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|\n\n\n## Windrichtung/-geschwindigkeit:\n\n\n## NW-N-O/ 4,6 km/h\n\n\n## Temperatur/ Luftdruck\n\n11,1 \u00b0C/ 1017,6 hPa\n\n## Norsonic-Tippkemper GmbH Typ 140, geeicht 140-2 (ortsfest)\n\n\n## Messger\u00e4t:\n\n\n## Norsonic-Tippkemper GmbH Typ 140, geeicht 140-2 (variabel)\n\nXXII\nAnh\u00e4nge\n\n| Mikrofonh\u00f6he: | Bearbeiterin: | Messgehilfe: | Messzeit: | Wetterbedingungen: | Bedeckungsgrad/Wetter: | Windrichtung/-geschwindigkeit: | Temperatur/ | Luftdruck | Messger\u00e4t: | Mikrofonh\u00f6he: | Jeweils | 2,5 | m | Selin | Karag\u00f6z | Datum: | 03.05.2023 | Christian | Reutter | 13:45:40 | bis | 15:51:10 | [hh:mm:ss] | Sonnig | N-NO/ | 10,1 | km/h | 12,2 | \u00b0C/ | 1024,1 | hPa | Norsonic-Tippkemper | GmbH | Typ | 140, | geeicht | 140-3 | (ortsfest) | Norsonic-Tippkemper | GmbH | Typ | 140, | geeicht | 140-2 | (variabel) | Jeweils | 3,5 | m |\n|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|\n\nXXIII\nAnh\u00e4nge\n\n## Anhang 4: Messergebnisse der Beladevorg\u00e4nge\n\nMit: Q1: Gabelstapler; Q2: Gabelhubwagen; 1-Q1,2: Reinfahrt mit Flurf\u00f6rderger\u00e4t Q 1,2; 2-Q1,2: Raus-\nfahrt mit Flurf\u00f6rderger\u00e4t Q 1,2; Q1,2-innen: Flurf\u00f6rderger\u00e4t Q1,2 im Anh\u00e4nger\nVerladevorg\u00e4nge Gabelstapler:\n\n| Vorgang | Lkw- | Typ | Zone | Datum | Uhrzeit | Start | - | Ende | T | [s] | Laeq | [dB(A)] | LAFmax | LAFTeq | [dB(A)] | [dB(A)] | KI | [dB(A)] | r | [m] | LWA,5s | [dB(A)] | LWAmax | [dB(A)] | 1-Q1 | Koffer | H | 17.04.2023 | 13:59:32,000 | - | 17.04.2023 | 13:59:37,000 | 5,0 | 63,9 | 73,7 | 73,7 | 9,8 | 39,6 | 103,8 | 113,6 | 1-Q1 | Plane | C | 17.04.2023 | 14:18:20,000 | - | 17.04.2023 | 14:18:25,000 | 5,0 | 62,7 | 71,4 | 71,4 | 8,7 | 37,5 | 102,2 | 110,9 | 1-Q1 | Plane | C | 17.04.2023 | 14:21:46,000 | - | 17.04.2023 | 14:21:51,000 | 5,0 | 71,8 | 82,3 | 82,3 | 10,5 | 37,5 | 111,3 | 121,8 | 1-Q1 | Plane | C | 17.04.2023 | 14:22:49,000 | - | 17.04.2023 | 14:22:54,000 | 5,0 | 64,9 | 74,5 | 74,5 | 9,6 | 37,5 | 104,4 | 114,0 | 1-Q1 | Plane | C | 17.04.2023 | 14:23:25,000 | - | 17.04.2023 | 14:23:30,000 | 5,0 | 69,9 | 81,6 | 81,6 | 11,7 | 37,5 | 109,4 | 121,1 | 1-Q1 | Plane | C | 17.04.2023 | 14:24:09,000 | - | 17.04.2023 | 14:24:14,000 | 5,0 | 59,1 | 69,3 | 69,3 | 10,2 | 37,5 | 98,6 | 108,8 | 1-Q1 | Plane | C | 17.04.2023 | 14:25:18,000 | - | 17.04.2023 | 14:25:23,000 | 5,0 | 64,2 | 74,3 | 74,3 | 10,1 | 37,5 | 103,7 | 113,8 | 1-Q1 | Plane | C | 17.04.2023 | 14:30:21,000 | - | 17.04.2023 | 14:30:26,000 | 5,0 | 63,5 | 74,2 | 74,2 | 10,7 | 37,5 | 103,0 | 113,7 | 1-Q1 | Plane | C | 17.04.2023 | 14:30:48,000 | - | 17.04.2023 | 14:30:53,000 | 5,0 | 60,4 | 67,2 | 67,2 | 6,8 | 37,5 | 99,9 | 106,7 | 1-Q1 | Plane | C | 17.04.2023 | 14:31:24,000 | - | 17.04.2023 | 14:31:29,000 | 5,0 | 58,6 | 66,1 | 66,1 | 7,5 | 37,5 | 98,1 | 105,6 | 1-Q1 | Plane | C | 17.04.2023 | 14:32:19,000 | - | 17.04.2023 | 14:32:24,000 | 5,0 | 68,6 | 78,0 | 78,0 | 9,4 | 37,5 | 108,1 | 117,5 | 2-Q1 | Plane | C | 17.04.2023 | 13:59:37,000 | - | 17.04.2023 | 13:59:42,000 | 5,0 | 55,2 | 59,7 | 59,7 | 4,5 | 37,5 | 94,7 | 99,2 | 2-Q1 | Plane | C | 17.04.2023 | 14:18:38,000 | - | 17.04.2023 | 14:18:43,000 | 5,0 | 59,3 | 61,9 | 61,9 | 2,6 | 37,5 | 98,8 | 101,4 | 2-Q1 | Plane | C | 17.04.2023 | 14:23:04,000 | - | 17.04.2023 | 14:23:09,000 | 5,0 | 62,6 | 70,7 | 70,7 | 8,1 | 37,5 | 102,1 | 110,2 | 2-Q1 | Plane | C | 17.04.2023 | 14:23:41,000 | - | 17.04.2023 | 14:23:46,000 | 5,0 | 65,2 | 74,4 | 74,4 | 9,2 | 37,5 | 104,7 | 113,9 | 2-Q1 | Plane | C | 17.04.2023 | 14:24:46,000 | - | 17.04.2023 | 14:24:51,000 | 5,0 | 65,4 | 72,2 | 72,2 | 6,8 | 37,5 | 104,9 | 111,7 | 2-Q1 | Plane | C | 17.04.2023 | 14:26:35,000 | - | 17.04.2023 | 14:26:40,000 | 5,0 | 58,4 | 62,6 | 62,6 | 4,2 | 37,5 | 97,9 | 102,1 | 2-Q1 | Plane | C | 17.04.2023 | 14:28:34,000 | - | 17.04.2023 | 14:28:39,000 | 5,0 | 66,1 | 73,9 | 73,9 | 7,8 | 37,5 | 105,6 | 113,4 | 2-Q1 | Plane | C | 17.04.2023 | 14:30:34,000 | - | 17.04.2023 | 14:30:39,000 | 5,0 | 68,1 | 77,7 | 77,7 | 9,6 | 37,5 | 107,6 | 117,2 | 2-Q1 | Plane | C | 17.04.2023 | 14:31:04,000 | - | 17.04.2023 | 14:31:09,000 | 5,0 | 62,6 | 69,4 | 69,4 | 6,8 | 37,5 | 102,1 | 108,9 | 2-Q1 | Plane | C | 17.04.2023 | 14:31:44,000 | - | 17.04.2023 | 14:31:49,000 | 5,0 | 67,6 | 74,1 | 74,1 | 6,5 | 37,5 | 107,1 | 113,6 | 2-Q1 | Plane | C | 17.04.2023 | 14:32:50,000 | - | 17.04.2023 | 14:32:55,000 | 5,0 | 61,3 | 66,5 | 66,5 | 5,2 | 37,5 | 100,8 | 106,0 | LWA,1h | [dB(A)] | 75,3 | 73,6 | 82,7 | 75,8 | 80,8 | 70,0 | 75,1 | 74,4 | 71,3 | 69,5 | 79,5 | 66,1 | 70,2 | 73,5 | 76,1 | 76,3 | 69,3 | 77,0 | 79,0 | 73,5 | 78,5 | 72,2 |\n|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|\n\n\n## Q1-innen\n\n|\n\n## Plane\n\n|\n\n## C\n\n17.04.2023 14:18:25,000 -\n17.04.2023\n17.04.2023 14:18:30,000\n5,0\n|\n59,5\n63,4\n63,4\n3,9\n37,5\n|\n99,0\n102,9\nXXIV\n70,4\nAnh\u00e4nge\n\n| Vorgang | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | 1-Q1 | 1-Q1 | 1-Q1 | 1-Q1 | 1-Q1 | 1-Q1 | 1-Q1 | 1-Q1 | Lkw- | Typ | Plane | Plane | Plane | Plane | Plane | Plane | Plane | Plane | Plane | Plane | Plane | Plane | Plane | Plane | WB | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Zone | Datum | Uhrzeit | Start | - | Ende | C | 17.04.2023 | 14:22:54,000 | - | 17.04.2023 | 14:22:59,000 | C | 17.04.2023 | 14:23:31,000 | - | 17.04.2023 | 14:23:36,000 | C | 17.04.2023 | 14:23:36,000 | - | 17.04.2023 | 14:23:41,000 | C | 17.04.2023 | 14:24:14,000 | - | 17.04.2023 | 14:24:19,000 | C | 17.04.2023 | 14:24:33,000 | - | 17.04.2023 | 14:24:38,000 | C | 17.04.2023 | 14:25:23,000 | - | 17.04.2023 | 14:25:28,000 | C | 17.04.2023 | 14:26:29,000 | - | 17.04.2023 | 14:26:34,000 | C | 17.04.2023 | 14:28:27,000 | - | 17.04.2023 | 14:28:32,000 | C | 17.04.2023 | 14:30:26,000 | - | 17.04.2023 | 14:30:31,000 | C | 17.04.2023 | 14:30:53,000 | - | 17.04.2023 | 14:30:58,000 | C | 17.04.2023 | 14:30:58,000 | - | 17.04.2023 | 14:31:03,000 | C | 17.04.2023 | 14:31:29,000 | - | 17.04.2023 | 14:31:34,000 | C | 17.04.2023 | 14:32:24,000 | - | 17.04.2023 | 14:32:29,000 | C | 17.04.2023 | 14:32:32,000 | - | 17.04.2023 | 14:32:37,000 | E | 26.04.2023 | 13:56:38,000 | - | 26.04.2023 | 13:56:43,000 | C | 26.04.2023 | 14:15:52,000 | - | 26.04.2023 | 14:15:57,000 | B | 26.04.2023 | 14:20:41,000 | - | 26.04.2023 | 14:20:46,000 | B | 26.04.2023 | 14:24:59,000 | - | 26.04.2023 | 14:25:04,000 | B | 26.04.2023 | 14:28:07,000 | - | 26.04.2023 | 14:28:12,000 | B | 26.04.2023 | 14:28:37,000 | - | 26.04.2023 | 14:28:42,000 | B | 26.04.2023 | 14:30:15,000 | - | 26.04.2023 | 14:30:20,000 | B | 26.04.2023 | 14:31:35,000 | - | 26.04.2023 | 14:31:40,000 | 26.04.2023 | 14:32:07,000 | - | T | [s] | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | Laeq | [dB(A)] | 59,8 | 57,5 | 60,4 | 53,3 | 54,4 | 56,7 | 57,0 | 54,7 | 55,2 | 59,7 | 54,5 | 53,3 | 62,4 | 60,8 | 61,0 | 53,5 | 52,5 | 68,8 | 62,0 | 57,9 | 63,0 | 55,5 | LAFmax | LAFTeq | [dB(A)] | [dB(A)] | 70,2 | 70,2 | 64,8 | 64,8 | 72,3 | 72,3 | 58,6 | 58,6 | 58,2 | 58,2 | 61,6 | 61,6 | 60,2 | 60,2 | 57,1 | 57,1 | 60,2 | 60,2 | 68,9 | 68,9 | 56,4 | 56,4 | 56,6 | 56,6 | 69,7 | 69,7 | 63,3 | 63,3 | 67,6 | 67,6 | 56,1 | 56,1 | 55,6 | 55,6 | 81,3 | 81,3 | 73,7 | 73,7 | 65,2 | 65,2 | 74,3 | 74,3 | 64,2 | 64,2 | KI | [dB(A)] | 10,4 | 7,3 | 11,9 | 5,3 | 3,8 | 4,9 | 3,2 | 2,4 | 5,0 | 9,2 | 1,9 | 3,3 | 7,3 | 2,5 | 6,6 | 2,6 | 3,1 | 12,5 | 11,7 | 7,3 | 11,3 | 8,7 | r | [m] | 37,5 | 37,5 | 37,5 | 37,5 | 37,5 | 37,5 | 37,5 | 37,5 | 37,5 | 37,5 | 37,5 | 37,5 | 37,5 | 37,5 | 37,4 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | LWA,5s | [dB(A)] | 99,3 | 97,0 | 99,9 | 92,8 | 93,9 | 96,2 | 96,5 | 94,2 | 94,7 | 99,2 | 94,0 | 92,8 | 101,9 | 100,3 | 100,4 | 93,1 | 92,1 | 108,4 | 101,6 | 97,5 | 102,6 | 95,1 | LWAmax | [dB(A)] | 109,7 | 104,3 | 111,8 | 98,1 | 97,7 | 101,1 | 99,7 | 96,6 | 99,7 | 108,4 | 95,9 | 96,1 | 109,2 | 102,8 | 107,0 | 95,7 | 95,2 | 120,9 | 113,3 | 104,8 | 113,9 | 103,8 | LWA,1h | [dB(A)] | 70,7 | 68,4 | 71,3 | 64,2 | 65,3 | 67,6 | 67,9 | 65,6 | 66,1 | 70,6 | 65,4 | 64,2 | 73,3 | 71,7 | 71,9 | 64,5 | 63,5 | 79,8 | 73,0 | 68,9 | 74,0 | 66,5 |\n|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|\n\n1-Q1\n\n## Koffer\n\n\n## B\n\n26.04.2023 14:32:12,000\n5,0\n55,1\n60,7\n60,7\n5,6\n38,0\n94,7\n100,3\n1-Q1\n|\n\n## Koffer\n\n\n## B\n\n2023 14:33:34.000\n26.04.2023 14:33:28,000 -\n26.04.2023 14:33:33,000\n5,0\n53,9\n59,8\n59,8\n5,9\n38,0\n93,5\n99,4\n1-Q1\n|\n\n## Koffer\n\n\n## B\n\n26.04.2023 14:34:23,000 -\n2000\n26.04.2023 14:34:28,000\n5,0\n59,5\n63,7\n63,7\n4,2\n38,0\n99,1\n103,3\n1-Q1\n|\n\n## Koffer\n\n\n## B\n\n2023 14:35:23.000\n26.04.2023 14:35:18,000 -\n26.04.2023 14:35:23,000\n5,0\n60,8\n66,8\n66,8\n6,0\n38,0\n100,4\n|\n106,4\n1-Q1\n|\n\n## Koffer\n\n\n## F\n\n26.04.2023 14:36:10,000 -\n26.04.2023 14:36:15,000\n5,0\n|\n61,5\n66,2\n66,2\n4,7\n37,9\n101,0\n|\n105,7\nXXV\n66,1\n64,9\n70,5\n71,8\n72,5\nAnh\u00e4nge\n\n| Vorgang | 1-Q1 | 1-Q1 | 1-Q1 | 1-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | Lkw- | Typ | Koffer | Koffer | Koffer | Koffer | WB | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Zone | Datum | Uhrzeit | Start | - | Ende | B | 26.04.2023 | 14:37:51,000 | - | 26.04.2023 | 14:37:56,000 | B | 26.04.2023 | 14:41:18,000 | - | 26.04.2023 | 14:41:23,000 | B | 26.04.2023 | 14:52:56,000 | - | 26.04.2023 | 14:53:01,000 | B | 26.04.2023 | 14:55:18,000 | - | 26.04.2023 | 14:55:23,000 | E | 26.04.2023 | 13:56:53,000 | - | 26.04.2023 | 13:56:58,000 | C | 26.04.2023 | 14:15:07,000 | - | 26.04.2023 | 14:15:12,000 | B | 26.04.2023 | 14:20:51,000 | - | 26.04.2023 | 14:20:56,000 | B | 26.04.2023 | 14:25:14,000 | - | 26.04.2023 | 14:25:19,000 | B | 26.04.2023 | 14:28:20,000 | - | 26.04.2023 | 14:28:25,000 | B | 26.04.2023 | 14:28:48,000 | - | 26.04.2023 | 14:28:53,000 | B | 26.04.2023 | 14:29:15,000 | - | 26.04.2023 | 14:29:20,000 | B | 26.04.2023 | 14:31:53,000 | - | 26.04.2023 | 14:31:58,000 | B | 26.04.2023 | 14:32:18,000 | - | 26.04.2023 | 14:32:23,000 | B | 26.04.2023 | 14:33:40,000 | - | 26.04.2023 | 14:33:45,000 | B | 26.04.2023 | 14:34:46,000 | - | 26.04.2023 | 14:34:51,000 | B | 26.04.2023 | 14:35:34,000 | - | 26.04.2023 | 14:35:39,000 | B | 26.04.2023 | 14:37:33,000 | - | 26.04.2023 | 14:37:38,000 | F | 26.04.2023 | 14:38:01,000 | - | 26.04.2023 | 14:38:06,000 | F | 26.04.2023 | 14:38:39,000 | - | 26.04.2023 | 14:38:44,000 | B | 26.04.2023 | 14:39:48,000 | - | 26.04.2023 | 14:39:53,000 | B | 26.04.2023 | 14:40:59,000 | - | 26.04.2023 | 14:41:04,000 | B | 26.04.2023 | 14:41:30,000 | - | 26.04.2023 | 14:41:35,000 | 26.04.2023 | 14:48:05,000 | - | T | [s] | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | Laeq | [dB(A)] | 62,1 | 56,2 | 54,8 | 57,6 | 65,9 | 63,1 | 54,7 | 62,9 | 61,9 | 62,8 | 62,8 | 62,5 | 63,8 | 60,4 | 61,6 | 59,5 | 67,1 | 62,8 | 58,0 | 64,2 | 58,8 | 59,4 | LAFmax | LAFTeq | [dB(A)] | [dB(A)] | 67,2 | 67,2 | 60,1 | 60,1 | 64,7 | 64,7 | 61,2 | 61,2 | 74,6 | 74,6 | 69,2 | 69,2 | 64,1 | 64,1 | 72,8 | 72,8 | 70,7 | 70,7 | 69,6 | 69,6 | 72,1 | 72,1 | 72,9 | 72,9 | 74,0 | 74,0 | 70,0 | 70,0 | 67,8 | 67,8 | 62,5 | 62,5 | 69,7 | 69,7 | 69,4 | 69,4 | 64,0 | 64,0 | 69,7 | 69,7 | 66,3 | 66,3 | 67,3 | 67,3 | KI | [dB(A)] | 5,1 | 3,9 | 9,9 | 3,6 | 8,7 | 6,1 | 9,4 | 9,9 | 8,8 | 6,8 | 9,3 | 10,4 | 10,2 | 9,6 | 6,2 | 3,0 | 2,6 | 6,6 | 6,0 | 5,5 | 7,5 | 7,9 | r | [m] | 38,0 | 38,0 | 38,0 | 38,0 | 37,4 | 37,5 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 37,9 | 37,9 | 38,0 | 38,0 | 38,0 | LWA,5s | [dB(A)] | 101,7 | 95,8 | 94,4 | 97,2 | 105,3 | 102,6 | 94,3 | 102,5 | 101,5 | 102,4 | 102,4 | 102,1 | 103,4 | 100,0 | 101,2 | 99,1 | 106,7 | 102,3 | 97,6 | 103,8 | 98,4 | 99,0 | LWAmax | [dB(A)] | 106,8 | 99,7 | 104,3 | 100,8 | 114,0 | 108,7 | 103,7 | 112,4 | 110,3 | 109,2 | 111,7 | 112,5 | 113,6 | 109,6 | 107,4 | 102,1 | 109,3 | 108,9 | 103,6 | 109,3 | 105,9 | 106,9 | LWA,1h | [dB(A)] | 73,1 | 67,2 | 65,8 | 68,6 | 76,8 | 74,0 | 65,7 | 73,9 | 72,9 | 73,8 | 73,8 | 73,5 | 74,8 | 71,4 | 72,6 | 70,5 | 78,1 | 73,8 | 69,0 | 75,2 | 69,8 | 70,4 |\n|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|\n\n2-Q1\n\n## Koffer\n\n\n## C\n\n26.04.2023 14:48:10,000\n5,0\n56,7\n60,8\n60,8\n4,1\n37,5\n96,2\n100,3\n2-Q1\n\n## WB\n\n\n## E\n\n26.04.2023 14:49:12,000 -\n7000\n26.04.2023 14:49:17,000\n5,0\n63,9\n74,8\n74,8\n|\n10,9\n37,4\n103,3\n|\n114,2\n2-Q1\n2-Q1\n|\n\n## WB\n\n\n## Koffer\n\n\n## E\n\n\n## B\n\n2023 14:52:43.000 2023 14:53:24.000\n26.04.2023 14:52:37,000 -\n26.04.2023 14:52:42,000\n26.04.2023 14:53:19,000 -\n26.04.2023 14:53:24,000\n5,0\n5,0\n54,2\n57,9\n62,0\n67,3\n62,0\n67,3\n7,8\n9,4\n37,4\n38,0\n|\n93,6\n97,5\n101,4\n106,9\n2-Q1\n|\n\n## Koffer\n\n\n## B\n\n26.04.2023 14:54:13,000 -\n26.04.2023 14:54:18,000\n5,0\n|\n59,5\n67,4\n67,4\n7,9\n38,0\n99,1\n107,0\nXXVI\n67,6\n74,8\n65,1\n68,9\n70,5\nAnh\u00e4nge\n\n| Vorgang | Lkw- | Typ | 2-Q1 | Koffer | 2-Q1 | Koffer | 2-Q1 | Koffer | Q1-innen | WB | Q1-innen | Koffer | Q1-innen | Koffer | Q1-innen | Koffer | Q1-innen | Koffer | Q1-innen | Koffer | Q1-innen | Koffer | Q1-innen | Koffer | Q1-innen | Koffer | Q1-innen | Koffer | Q1-innen | Koffer | Q1-innen | Koffer | Q1-innen | Koffer | Q1-innen | Koffer | Q1-innen | Koffer | Q1-innen | Koffer | Q1-innen | Koffer | 1-Q1 | Koffer | 1-Q1 | Koffer | Zone | Datum | Uhrzeit | Start | - | Ende | B | 26.04.2023 | 14:54:51,000 | - | 26.04.2023 | 14:54:56,000 | B | 26.04.2023 | 14:55:45,000 | - | 26.04.2023 | 14:55:50,000 | C | 26.04.2023 | 15:03:10,000 | - | 26.04.2023 | 15:03:15,000 | E | 26.04.2023 | 13:56:43,000 | - | 26.04.2023 | 13:56:48,000 | C | 26.04.2023 | 14:15:02,000 | - | 26.04.2023 | 14:15:07,000 | B | 26.04.2023 | 14:15:57,000 | - | 26.04.2023 | 14:16:02,000 | B | 26.04.2023 | 14:20:46,000 | - | 26.04.2023 | 14:20:51,000 | B | 26.04.2023 | 14:25:04,000 | - | 26.04.2023 | 14:25:09,000 | B | 26.04.2023 | 14:28:15,000 | - | 26.04.2023 | 14:28:20,000 | B | 26.04.2023 | 14:28:42,000 | - | 26.04.2023 | 14:28:47,000 | B | 26.04.2023 | 14:29:10,000 | - | 26.04.2023 | 14:29:15,000 | B | 26.04.2023 | 14:31:40,000 | - | 26.04.2023 | 14:31:45,000 | B | 26.04.2023 | 14:32:12,000 | - | 26.04.2023 | 14:32:17,000 | B | 26.04.2023 | 14:35:23,000 | - | 26.04.2023 | 14:35:28,000 | B | 26.04.2023 | 14:37:56,000 | - | 26.04.2023 | 14:38:01,000 | F | 26.04.2023 | 14:41:25,000 | - | 26.04.2023 | 14:41:30,000 | B | 26.04.2023 | 14:53:01,000 | - | 26.04.2023 | 14:53:06,000 | B | 26.04.2023 | 14:53:06,000 | - | 26.04.2023 | 14:53:11,000 | B | 26.04.2023 | 14:54:45,000 | - | 26.04.2023 | 14:54:51,000 | B | 26.04.2023 | 14:55:23,000 | - | 26.04.2023 | 14:55:28,000 | B | 27.04.2023 | 14:08:34,000 | - | 27.04.2023 | 14:08:39,000 | B | 27.04.2023 | 14:10:07,000 | - | 27.04.2023 | 14:10:12,000 | 27.04.2023 | 14:12:10,000 | - | T | [s] | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | Laeq | [dB(A)] | 58,3 | 61,4 | 52,2 | 60,4 | 66,8 | 61,4 | 50,9 | 54,5 | 53,4 | 55,3 | 56,7 | 51,9 | 52,5 | 64,3 | 60,7 | 56,1 | 57,6 | 53,8 | 56,1 | 57,5 | 52,1 | 53,1 | LAFmax | LAFTeq | [dB(A)] | [dB(A)] | 64,2 | 64,2 | 71,0 | 71,0 | 55,5 | 55,5 | 67,1 | 67,1 | 74,5 | 74,5 | 66,8 | 66,8 | 54,7 | 54,7 | 57,8 | 57,8 | 62,9 | 62,9 | 60,2 | 60,2 | 59,2 | 59,2 | 55,3 | 55,3 | 56,9 | 56,9 | 77,4 | 77,4 | 63,8 | 63,8 | 60,1 | 60,1 | 67,2 | 67,2 | 64,0 | 64,0 | 57,8 | 57,8 | 59,8 | 59,8 | 55,1 | 55,1 | 57,7 | 57,7 | KI | [dB(A)] | 5,9 | 9,6 | 3,3 | 6,7 | 7,7 | 5,4 | 3,8 | 3,3 | 9,5 | 4,9 | 2,5 | 3,4 | 4,4 | 13,1 | 3,1 | 4,0 | 9,6 | 10,2 | 1,7 | 2,3 | 3,0 | 4,6 | r | [m] | 38,0 | 38,0 | 38,0 | 37,5 | 37,4 | 37,5 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 37,9 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | LWA,5s | [dB(A)] | 97,9 | 101,0 | 91,8 | 99,9 | 106,2 | 100,9 | 90,5 | 94,1 | 93,0 | 94,9 | 96,3 | 91,5 | 92,1 | 103,9 | 100,3 | 95,6 | 97,2 | 93,4 | 95,7 | 97,1 | 91,7 | 92,7 | LWAmax | [dB(A)] | 103,8 | 110,6 | 95,1 | 106,6 | 113,9 | 106,3 | 94,3 | 97,4 | 102,5 | 99,8 | 98,8 | 94,9 | 96,5 | 117,0 | 103,4 | 99,6 | 106,8 | 103,6 | 97,4 | 99,4 | 94,7 | 97,3 | LWA,1h | [dB(A)] | 69,3 | 72,4 | 63,2 | 71,3 | 77,7 | 72,3 | 61,9 | 65,5 | 64,4 | 66,3 | 67,7 | 62,9 | 63,5 | 75,3 | 71,7 | 67,1 | 68,6 | 64,8 | 67,1 | 68,5 | 63,1 | 64,1 |\n|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|\n\n1-Q1\n\n## Koffer\n\n\n## B\n\n27.04.2023 14:12:15,000\n5,0\n56,2\n65,4\n65,4\n9,2\n38,0\n95,8\n105,0\n1-Q1\n|\n\n## Koffer\n\n\n## C\n\n27.04.2023 14:12:40,000 -\n\n## N a0. 27.04.2023 14:12:45,000\n5,0\n55,6\n60,1\n60,1\n4,5\n37,5\n95,1\n99,6\n1-Q1\n1-Q1\n|\n|\n\n## Koffer\n\n\n## Koffer\n\n\n## B\n\n\n## B\n\n2023 141612.000 2023\n27.04.2023 14:16:24,000 -\n27.04.2023 14:16:29,000\n27.04.2023 14:17:11,000 -\n000\n27.04.2023 14:17:16,000\n5,0\n5,0\n55,5\n59,6\n62,0\n70,6\n62,0\n70,6\n|\n6,5\n11,0\n38,0\n38,0\n95,1\n99,2\n101,6\n110,2\n1-Q1\n|\n\n## Koffer\n\n\n## F\n\n27.04.2023 14:26:21,000 -\n27.04.2023 14:26:26,000\n5,0\n|\n58,6\n69,0\n69,0\n69,0\n|\n10,4\n37,9\n98,2\n108,6\nXXVII\n67,2\n66,5\n66,5\n70,6\n69,6\nAnh\u00e4nge\n\n| Vorgang | 1-Q1 | 1-Q1 | 1-Q1 | 1-Q1 | 1-Q1 | 1-Q1 | 1-Q1 | 1-Q1 | 1-Q1 | 1-Q1 | 1-Q1 | 1-Q1 | 1-Q1 | 1-Q1 | 1-Q1 | 1-Q1 | 1-Q1 | 1-Q1 | 1-Q1 | 1-Q1 | 1-Q1 | 2-Q1 | Lkw- | Typ | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Zone | Datum | Uhrzeit | Start | - | Ende | F | 27.04.2023 | 14:27:00,000 | - | 27.04.2023 | 14:27:05,000 | F | 27.04.2023 | 14:27:39,000 | - | 27.04.2023 | 14:27:44,000 | C | 27.04.2023 | 14:28:32,000 | - | 27.04.2023 | 14:28:37,000 | B | 27.04.2023 | 14:29:15,000 | - | 27.04.2023 | 14:29:20,000 | B | 27.04.2023 | 14:30:13,000 | - | 27.04.2023 | 14:30:18,000 | F | 27.04.2023 | 14:30:36,000 | - | 27.04.2023 | 14:30:41,000 | F | 27.04.2023 | 14:31:05,000 | - | 27.04.2023 | 14:31:10,000 | B | 27.04.2023 | 14:31:28,000 | - | 27.04.2023 | 14:31:33,000 | F | 27.04.2023 | 14:31:56,000 | - | 27.04.2023 | 14:32:01,000 | B | 27.04.2023 | 14:32:24,000 | - | 27.04.2023 | 14:32:29,000 | B | 27.04.2023 | 14:32:44,000 | - | 27.04.2023 | 14:32:49,000 | F | 27.04.2023 | 14:33:40,000 | - | 27.04.2023 | 14:33:45,000 | B | 27.04.2023 | 14:37:36,000 | - | 27.04.2023 | 14:37:41,000 | B | 27.04.2023 | 14:38:46,000 | - | 27.04.2023 | 14:38:51,000 | F | 27.04.2023 | 14:39:04,000 | - | 27.04.2023 | 14:39:09,000 | F | 27.04.2023 | 14:40:04,000 | - | 27.04.2023 | 14:40:09,000 | F | 27.04.2023 | 14:41:21,000 | - | 27.04.2023 | 14:41:26,000 | F | 27.04.2023 | 14:41:26,000 | - | 27.04.2023 | 14:41:32,000 | B | 27.04.2023 | 14:42:53,000 | - | 27.04.2023 | 14:42:58,000 | F | 27.04.2023 | 14:43:23,000 | - | 27.04.2023 | 14:43:28,000 | F | 27.04.2023 | 14:47:11,000 | - | 27.04.2023 | 14:47:16,000 | B | 27.04.2023 | 14:09:08,000 | - | 27.04.2023 | 14:09:13,000 | 27.04.2023 | 14:10:20,000 | - | T | [s] | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | Laeq | [dB(A)] | 55,9 | 58,5 | 65,6 | 59,4 | 50,9 | 56,5 | 56,5 | 53,6 | 57,0 | 55,8 | 70,9 | 61,3 | 55,4 | 60,7 | 59,6 | 60,5 | 51,0 | 54,2 | 61,7 | 69,3 | 63,4 | 54,9 | LAFmax | LAFTeq | [dB(A)] | [dB(A)] | 63,3 | 63,3 | 62,7 | 62,7 | 77,2 | 77,2 | 62,0 | 62,0 | 57,7 | 57,7 | 61,9 | 61,9 | 63,5 | 63,5 | 56,7 | 56,7 | 62,4 | 62,4 | 60,8 | 60,8 | 77,5 | 77,5 | 66,7 | 66,7 | 61,1 | 61,1 | 68,3 | 68,3 | 63,4 | 63,4 | 63,4 | 63,4 | 53,6 | 53,6 | 59,4 | 59,4 | 68,7 | 68,7 | 76,2 | 76,2 | 70,5 | 70,5 | 62,3 | 62,3 | KI | [dB(A)] | 7,4 | 4,2 | 11,6 | 2,6 | 6,8 | 5,4 | 7,0 | 3,1 | 5,4 | 5,0 | 6,6 | 5,4 | 5,7 | 7,6 | 3,8 | 2,9 | 2,6 | 5,2 | 7,0 | 6,9 | 7,1 | 7,4 | r | [m] | 37,9 | 37,9 | 37,5 | 38,0 | 38,0 | 37,9 | 37,9 | 38,0 | 37,9 | 38,0 | 38,0 | 37,9 | 38,0 | 38,0 | 37,9 | 37,9 | 37,9 | 37,9 | 38,0 | 37,9 | 37,9 | 38,0 | LWA,5s | [dB(A)] | 95,5 | 98,1 | 105,1 | 99,0 | 90,5 | 96,1 | 96,1 | 93,2 | 96,6 | 95,4 | 110,5 | 100,9 | 95,0 | 100,3 | 99,2 | 100,1 | 90,6 | 93,8 | 101,3 | 108,9 | 103,0 | 94,5 | LWAmax | [dB(A)] | 102,9 | 102,3 | 116,7 | 101,6 | 97,3 | 101,5 | 103,1 | 96,3 | 102,0 | 100,4 | 117,1 | 106,3 | 100,7 | 107,9 | 103,0 | 103,0 | 93,2 | 99,0 | 108,3 | 115,8 | 110,1 | 101,9 | LWA,1h | [dB(A)] | 66,9 | 69,5 | 76,5 | 70,4 | 61,9 | 67,5 | 67,5 | 64,6 | 68,0 | 66,8 | 81,9 | 72,3 | 66,4 | 71,7 | 70,6 | 71,5 | 62,0 | 65,2 | 72,7 | 80,3 | 74,4 | 65,9 |\n|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|\n\n2-Q1\n\n## Koffer\n\n\n## B\n\n27.04.2023 14:10:25,000\n5,0\n59,0\n65,7\n65,7\n6,7\n38,0\n98,6\n105,3\n2-Q1\n|\n\n## Koffer\n\n\n## B\n\n27.04.2023 14:12:31,000 -\n\n## N ao. 27.04.2023 14:12:36,000\n5,0\n56,3\n62,8\n62,8\n6,5\n38,0\n95,9\n102,4\n2-Q1\n2-Q1\n|\n|\n\n## Koffer\n\n\n## Koffer\n\n\n## C\n\n\n## B\n\n2023 1438.00 2023\n27.04.2023 14:13:13,000 -\n27.04.2023 14:13:18,000\n27.04.2023 14:15:11,000 -\n000\n27.04.2023 14:15:16,000\n5,0\n5,0\n64,0\n61,8\n74,4\n66,2\n74,4\n66,2\n|\n10,4\n4,4\n37,5\n38,0\n|\n103,5\n101,4\n|\n|\n113,9\n105,8\n2-Q1\n|\n\n## Koffer\n\n\n## B\n\n27.04.2023 14:16:58,000 -\n27.04.2023 14:17:03,000\n5,0\n|\n55,1\n60,5\n60,5\n5,4\n38,0\n94,7\n100,1\nXXVIII\n70,0\n67,3\n74,9\n72,8\n66,1\nAnh\u00e4nge\n\n| Vorgang | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | Lkw- | Typ | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Zone | Datum | Uhrzeit | Start | - | Ende | F | 27.04.2023 | 14:17:49,000 | - | 27.04.2023 | 14:17:54,000 | F | 27.04.2023 | 14:26:36,000 | - | 27.04.2023 | 14:26:41,000 | F | 27.04.2023 | 14:27:15,000 | - | 27.04.2023 | 14:27:20,000 | C | 27.04.2023 | 14:27:58,000 | - | 27.04.2023 | 14:28:03,000 | B | 27.04.2023 | 14:28:42,000 | - | 27.04.2023 | 14:28:47,000 | B | 27.04.2023 | 14:29:27,000 | - | 27.04.2023 | 14:29:32,000 | F | 27.04.2023 | 14:29:32,000 | - | 27.04.2023 | 14:29:37,000 | F | 27.04.2023 | 14:30:31,000 | - | 27.04.2023 | 14:30:36,000 | B | 27.04.2023 | 14:30:50,000 | - | 27.04.2023 | 14:30:55,000 | F | 27.04.2023 | 14:31:16,000 | - | 27.04.2023 | 14:31:21,000 | B | 27.04.2023 | 14:31:48,000 | - | 27.04.2023 | 14:31:53,000 | B | 27.04.2023 | 14:32:02,000 | - | 27.04.2023 | 14:32:07,000 | F | 27.04.2023 | 14:33:07,000 | - | 27.04.2023 | 14:33:12,000 | B | 27.04.2023 | 14:33:53,000 | - | 27.04.2023 | 14:33:58,000 | B | 27.04.2023 | 14:38:00,000 | - | 27.04.2023 | 14:38:05,000 | F | 27.04.2023 | 14:38:57,000 | - | 27.04.2023 | 14:39:02,000 | F | 27.04.2023 | 14:39:18,000 | - | 27.04.2023 | 14:39:23,000 | F | 27.04.2023 | 14:40:19,000 | - | 27.04.2023 | 14:40:24,000 | F | 27.04.2023 | 14:41:03,000 | - | 27.04.2023 | 14:41:08,000 | B | 27.04.2023 | 14:41:08,000 | - | 27.04.2023 | 14:41:13,000 | F | 27.04.2023 | 14:41:37,000 | - | 27.04.2023 | 14:41:42,000 | F | 27.04.2023 | 14:47:22,000 | - | 27.04.2023 | 14:47:27,000 | 27.04.2023 | 14:08:39,000 | - | T | [s] | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | Laeq | [dB(A)] | 62,8 | 58,5 | 63,0 | 69,3 | 64,2 | 57,8 | 65,9 | 54,2 | 62,8 | 58,4 | 65,2 | 64,5 | 63,6 | 63,9 | 60,5 | 59,6 | 60,1 | 59,8 | 56,5 | 62,0 | 53,8 | 70,1 | LAFmax | LAFTeq | [dB(A)] | [dB(A)] | 65,7 | 65,7 | 65,7 | 65,7 | 68,5 | 68,5 | 70,6 | 70,6 | 70,8 | 70,8 | 64,0 | 64,0 | 71,5 | 71,5 | 60,6 | 60,6 | 73,8 | 73,8 | 65,0 | 65,0 | 77,0 | 77,0 | 72,9 | 72,9 | 71,5 | 71,5 | 74,7 | 74,7 | 64,7 | 64,7 | 65,8 | 65,8 | 61,2 | 61,2 | 62,2 | 62,2 | 62,4 | 62,4 | 72,8 | 72,8 | 57,5 | 57,5 | 82,5 | 82,5 | KI | [dB(A)] | 2,9 | 7,2 | 5,5 | 1,3 | 6,6 | 6,2 | 5,6 | 6,4 | 11,0 | 6,6 | 11,8 | 8,4 | 7,9 | 10,8 | 4,2 | 6,2 | 1,1 | 2,4 | 5,9 | 10,8 | 3,7 | 12,4 | r | [m] | 37,9 | 37,9 | 37,9 | 37,5 | 38,0 | 38,0 | 37,9 | 37,9 | 38,0 | 37,9 | 38,0 | 38,0 | 37,9 | 38,0 | 38,0 | 37,9 | 37,9 | 37,9 | 37,9 | 38,0 | 37,9 | 37,9 | LWA,5s | [dB(A)] | 102,4 | 98,1 | 102,6 | 108,8 | 103,8 | 97,4 | 105,5 | 93,8 | 102,4 | 98,0 | 104,8 | 104,1 | 103,2 | 103,5 | 100,1 | 99,2 | 99,7 | 99,4 | 96,1 | 101,6 | 93,4 | 109,7 | LWAmax | [dB(A)] | 105,3 | 105,3 | 108,1 | 110,1 | 110,4 | 103,6 | 111,1 | 100,2 | 113,4 | 104,6 | 116,6 | 112,5 | 111,1 | 114,3 | 104,3 | 105,4 | 100,8 | 101,8 | 102,0 | 112,4 | 97,1 | 122,1 | LWA,1h | [dB(A)] | 73,8 | 69,5 | 74,0 | 80,2 | 75,2 | 68,8 | 76,9 | 65,2 | 73,8 | 69,4 | 76,2 | 75,5 | 74,6 | 74,9 | 71,5 | 70,6 | 71,1 | 70,8 | 67,5 | 73,0 | 64,8 | 81,1 |\n|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|\n\n\n## Q1-innen\n\n\n## Koffer\n\n\n## B\n\n27.04.2023 14:08:44,000\n5,0\n55,1\n60,0\n60,0\n4,9\n38,0\n94,7\n99,6\n\n## Q1-innen\n\n|\n\n## Koffer\n\n\n## B\n\n27.04.2023 14:10:12,000 -\nN 000\n27.04.2023 14:10:17,000\n5,0\n53,3\n56,1\n56,1\n2,8\n38,0\n92,9\n95,7\n\n## Q1-innen\n\n\n## Q1-innen\n\n|\n|\n\n## Koffer\n\n\n## Koffer\n\n\n## B\n\n\n## B\n\n2023 141220000 2023 1412:20.000\n27.04.2023 14:12:15,000 -\n27.04.2023 14:12:20,000\n27.04.2023 14:12:24,000 -\n27.04.2023 14:12:29,000\n5,0\n5,0\n56,9\n53,1\n60,3\n54,9\n60,3\n54,9\n3,4\n1,8\n38,0\n38,0\n|\n96,5\n92,7\n99,9\n94,5\n\n## Q1-innen\n\n|\n\n## Koffer\n\n\n## C\n\n27.04.2023 14:13:01,000 -\n27.04.2023 14:13:06,000\n5,0\n|\n58,3\n62,0\n62,0\n3,7\n37,5\n|\n97,8\n101,5\nXXIX\n66,1\n64,3\n67,9\n64,1\n69,2\nAnh\u00e4nge\n\n| Vorgang | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | 1-Q1 | Lkw- | Typ | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Zone | Datum | Uhrzeit | Start | - | Ende | C | 27.04.2023 | 14:13:08,000 | - | 27.04.2023 | 14:13:13,000 | B | 27.04.2023 | 14:16:39,000 | - | 27.04.2023 | 14:16:44,000 | B | 27.04.2023 | 14:16:44,000 | - | 27.04.2023 | 14:16:49,000 | F | 27.04.2023 | 14:26:26,000 | - | 27.04.2023 | 14:26:31,000 | F | 27.04.2023 | 14:26:31,000 | - | 27.04.2023 | 14:26:36,000 | F | 27.04.2023 | 14:27:05,000 | - | 27.04.2023 | 14:27:10,000 | F | 27.04.2023 | 14:27:10,000 | - | 27.04.2023 | 14:27:15,000 | F | 27.04.2023 | 14:27:48,000 | - | 27.04.2023 | 14:27:53,000 | F | 27.04.2023 | 14:28:37,000 | - | 27.04.2023 | 14:28:42,000 | F | 27.04.2023 | 14:29:20,000 | - | 27.04.2023 | 14:29:25,000 | B | 27.04.2023 | 14:31:10,000 | - | 27.04.2023 | 14:31:15,000 | F | 27.04.2023 | 14:32:50,000 | - | 27.04.2023 | 14:32:55,000 | F | 27.04.2023 | 14:37:41,000 | - | 27.04.2023 | 14:37:46,000 | B | 27.04.2023 | 14:37:46,000 | - | 27.04.2023 | 14:37:51,000 | B | 27.04.2023 | 14:38:51,000 | - | 27.04.2023 | 14:38:56,000 | F | 27.04.2023 | 14:39:09,000 | - | 27.04.2023 | 14:39:14,000 | F | 27.04.2023 | 14:40:10,000 | - | 27.04.2023 | 14:40:15,000 | B | 27.04.2023 | 14:41:32,000 | - | 27.04.2023 | 14:41:37,000 | F | 27.04.2023 | 14:42:58,000 | - | 27.04.2023 | 14:43:03,000 | F | 27.04.2023 | 14:43:28,000 | - | 27.04.2023 | 14:43:33,000 | F | 27.04.2023 | 14:47:16,000 | - | 27.04.2023 | 14:47:21,000 | C | 03.05.2023 | 13:55:47,000 | - | 03.05.2023 | 13:55:52,000 | 03.05.2023 | 13:55:58,000 | - | T | [s] | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | Laeq | [dB(A)] | 59,5 | 54,5 | 54,9 | 54,6 | 54,4 | 65,3 | 54,5 | 62,4 | 55,6 | 54,4 | 56,1 | 57,0 | 67,0 | 55,2 | 60,3 | 61,3 | 59,2 | 52,8 | 61,8 | 65,6 | 63,6 | 50,2 | LAFmax | LAFTeq | [dB(A)] | [dB(A)] | 64,0 | 64,0 | 58,2 | 58,2 | 58,6 | 58,6 | 61,7 | 61,7 | 59,2 | 59,2 | 77,7 | 77,7 | 61,8 | 61,8 | 71,1 | 71,1 | 69,4 | 69,4 | 57,8 | 57,8 | 65,1 | 65,1 | 63,4 | 63,4 | 77,6 | 77,6 | 59,1 | 59,1 | 65,9 | 65,9 | 69,1 | 69,1 | 59,9 | 59,9 | 57,0 | 57,0 | 67,6 | 67,6 | 67,4 | 67,4 | 73,2 | 73,2 | 53,0 | 53,0 | KI | [dB(A)] | 4,5 | 3,7 | 3,7 | 7,1 | 4,8 | 12,4 | 7,3 | 8,7 | 13,8 | 3,4 | 9,0 | 6,4 | 10,6 | 3,9 | 5,6 | 7,8 | 0,7 | 4,2 | 5,8 | 1,8 | 9,6 | 2,8 | r | [m] | 37,5 | 38,0 | 38,0 | 37,9 | 37,9 | 37,9 | 37,9 | 37,9 | 37,9 | 37,9 | 38,0 | 37,9 | 37,9 | 38,0 | 38,0 | 37,9 | 37,9 | 38,0 | 37,9 | 37,9 | 37,9 | 37,5 | LWA,5s | [dB(A)] | 99,0 | 94,1 | 94,5 | 94,2 | 94,0 | 104,9 | 94,1 | 102,0 | 95,2 | 94,0 | 95,7 | 96,6 | 106,6 | 94,8 | 99,9 | 100,9 | 98,8 | 92,4 | 101,4 | 105,2 | 103,2 | 89,7 | LWAmax | [dB(A)] | 103,5 | 97,8 | 98,2 | 101,3 | 98,8 | 117,3 | 101,4 | 110,7 | 109,0 | 97,4 | 104,7 | 103,0 | 117,2 | 98,7 | 105,5 | 108,7 | 99,5 | 96,6 | 107,2 | 107,0 | 112,8 | 92,5 | LWA,1h | [dB(A)] | 70,4 | 65,5 | 65,9 | 65,6 | 65,4 | 76,3 | 65,5 | 73,4 | 66,6 | 65,4 | 67,1 | 68,0 | 78,0 | 66,2 | 71,3 | 72,3 | 70,2 | 63,8 | 72,8 | 76,6 | 74,6 | 61,1 |\n|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|\n\n1-Q1\n\n## Koffer\n\n\n## C\n\n03.05.2023 13:56:03,000\n5,0\n48,4\n51,5\n51,5\n3,1\n37,5\n87,9\n91,0\n1-Q1\n1-Q1\n1-Q1\n|\n|\n|\n\n## Koffer\n\n\n## Koffer\n\n\n## Koffer\n\n\n## C\n\n\n## D\n\n\n## D\n\n2023 13:97:54.000 2023 14:30:12.000 2023 1:33:41.000\n03.05.2023 13:57:48,000 -\n03.05.2023 13:57:53,000\n03.05.2023 14:30:12,000 -\n03.05.2023 14:30:17,000\n03.05.2023 14:33:36,000 -\n03.05.2023 14:33:41,000\n5,0\n5,0\n5,0\n63,6\n53,5\n50,5\n66,3\n56,4\n54,2\n66,3\n56,4\n54,2\n2,7\n2,9\n3,7\n37,5\n37,4\n37,4\n103,1\n92,9\n89,9\n|\n105,8\n95,8\n93,6\n1-Q1\n|\n\n## Koffer\n\n\n## D\n\n03.05.2023 14:36:11,000 -\n03.05.2023 14:36:16,000\n5,0\n|\n52,2\n55,2\n55,2\n3,0\n37,4\n91,6\n94,6\nXXX\n59,3\n74,5\n64,4\n61,4\n63,1\nAnh\u00e4nge\n\n| Vorgang | 1-Q1 | 1-Q1 | 1-Q1 | 1-Q1 | 1-Q1 | 1-Q1 | 1-Q1 | 1-Q1 | 1-Q1 | 1-Q1 | 1-Q1 | 1-Q1 | 1-Q1 | 1-Q1 | 1-Q1 | 1-Q1 | 1-Q1 | 1-Q1 | 1-Q1 | 1-Q1 | 1-Q1 | 1-Q1 | Lkw- | Typ | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Zone | Datum | Uhrzeit | Start | - | Ende | F | 03.05.2023 | 14:47:17,000 | - | 03.05.2023 | 14:47:22,000 | F | 03.05.2023 | 14:49:40,000 | - | 03.05.2023 | 14:49:45,000 | B | 03.05.2023 | 15:07:07,000 | - | 03.05.2023 | 15:07:12,000 | B | 03.05.2023 | 15:08:42,000 | - | 03.05.2023 | 15:08:47,000 | B | 03.05.2023 | 15:09:52,000 | - | 03.05.2023 | 15:09:57,000 | B | 03.05.2023 | 15:12:55,000 | - | 03.05.2023 | 15:13:00,000 | B | 03.05.2023 | 15:16:57,000 | - | 03.05.2023 | 15:17:02,000 | B | 03.05.2023 | 15:17:48,000 | - | 03.05.2023 | 15:17:53,000 | B | 03.05.2023 | 15:19:08,000 | - | 03.05.2023 | 15:19:13,000 | B | 03.05.2023 | 15:23:57,000 | - | 03.05.2023 | 15:24:03,000 | B | 03.05.2023 | 15:26:12,000 | - | 03.05.2023 | 15:26:17,000 | B | 03.05.2023 | 15:29:17,000 | - | 03.05.2023 | 15:29:22,000 | F | 03.05.2023 | 15:29:28,000 | - | 03.05.2023 | 15:29:33,000 | B | 03.05.2023 | 15:32:16,000 | - | 03.05.2023 | 15:32:21,000 | B | 03.05.2023 | 15:33:05,000 | - | 03.05.2023 | 15:33:10,000 | B | 03.05.2023 | 15:36:15,000 | - | 03.05.2023 | 15:36:20,000 | B | 03.05.2023 | 15:38:06,000 | - | 03.05.2023 | 15:38:11,000 | B | 03.05.2023 | 15:41:24,000 | - | 03.05.2023 | 15:41:29,000 | B | 03.05.2023 | 15:43:22,000 | - | 03.05.2023 | 15:43:27,000 | B | 03.05.2023 | 15:44:52,000 | - | 03.05.2023 | 15:44:57,000 | B | 03.05.2023 | 15:47:38,000 | - | 03.05.2023 | 15:47:43,000 | B | 03.05.2023 | 15:51:10,000 | - | 03.05.2023 | 15:51:15,000 | 03.05.2023 | 13:55:53,000 | - | T | [s] | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | Laeq | [dB(A)] | 60,2 | 51,7 | 55,3 | 66,9 | 56,2 | 56,8 | 56,9 | 58,1 | 53,5 | 55,4 | 62,0 | 53,1 | 52,9 | 52,7 | 59,3 | 58,2 | 70,0 | 56,1 | 52,8 | 50,4 | 53,6 | 53,8 | LAFmax | LAFTeq | [dB(A)] | [dB(A)] | 66,3 | 66,3 | 58,3 | 58,3 | 62,8 | 62,8 | 70,5 | 70,5 | 60,2 | 60,2 | 59,7 | 59,7 | 60,3 | 60,3 | 62,8 | 62,8 | 57,1 | 57,1 | 60,9 | 60,9 | 64,8 | 64,8 | 55,7 | 55,7 | 57,1 | 57,1 | 60,1 | 60,1 | 64,7 | 64,7 | 62,3 | 62,3 | 79,3 | 79,3 | 59,6 | 59,6 | 61,5 | 61,5 | 54,2 | 54,2 | 57,1 | 57,1 | 62,5 | 62,5 | KI | [dB(A)] | 6,1 | 6,6 | 7,5 | 3,6 | 4,0 | 2,9 | 3,4 | 4,7 | 3,6 | 5,5 | 2,8 | 2,6 | 4,2 | 7,4 | 5,4 | 4,1 | 9,3 | 3,5 | 8,7 | 3,8 | 3,5 | 8,7 | r | [m] | 37,9 | 37,9 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | LWA,5s | [dB(A)] | 99,8 | 91,3 | 94,9 | 106,5 | 95,8 | 96,4 | 96,5 | 97,7 | 93,1 | 95,0 | 101,6 | 92,7 | 92,5 | 92,3 | 98,9 | 97,8 | 109,6 | 95,7 | 92,4 | 90,0 | 93,2 | 93,4 | LWAmax | [dB(A)] | 105,9 | 97,9 | 102,4 | 110,1 | 99,8 | 99,3 | 99,9 | 102,4 | 96,7 | 100,5 | 104,4 | 95,3 | 96,7 | 99,7 | 104,3 | 101,9 | 118,9 | 99,2 | 101,1 | 93,8 | 96,7 | 102,1 | LWA,1h | [dB(A)] | 71,2 | 62,7 | 66,3 | 77,9 | 67,2 | 67,8 | 67,9 | 69,1 | 64,5 | 66,4 | 73,0 | 64,1 | 63,9 | 63,7 | 70,3 | 69,2 | 81,0 | 67,1 | 63,8 | 61,4 | 64,6 | 64,8 |\n|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|\n\n2-Q1\n\n## Koffer\n\n\n## C\n\n03.05.2023 13:55:58,000\n5,0\n53,7\n63,0\n63,0\n9,3\n37,5\n93,2\n102,5\n2-Q1\n2-Q1\n|\n|\n\n## Koffer\n\n\n## Koffer\n\n\n## C\n\n\n## D\n\n2023 13:8:03.000 2023 14:30:50\n03.05.2023 13:57:58,000 -\n03.05.2023 13:58:03,000\n03.05.2023 14:30:50,000 -\n03.05.2023 14:30:55,000\n5,0\n5,0\n63,2\n60,2\n65,8\n61,3\n65,8\n61,3\n2,6\n1,1\n37,5\n37,4\n102,7\n99,6\n|\n105,3\n100,7\n2-Q1\n|\n\n## Koffer\n\n\n## D\n\n03.05.2023 14:34:05,000 -\n000\n03.05.2023 14:34:10,000\n5,0\n51,4\n58,0\n58,0\n58,0\n6,6\n37,4\n90,8\n97,4\n2-Q1\n|\n\n## Koffer\n\n\n## D\n\n03.05.2023 14:36:31,000 -\n03.05.2023 14:36:36,000\n5,0\n|\n49,9\n52,4\n52,4\n2,5\n37,4\n89,3\n91,8\nXXXI\n64,6\n74,1\n71,1\n62,3\n60,8\nAnh\u00e4nge\n\n| Vorgang | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | Lkw- | Typ | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Zone | Datum | Uhrzeit | Start | - | Ende | D | 03.05.2023 | 14:38:17,000 | - | 03.05.2023 | 14:38:22,000 | F | 03.05.2023 | 14:47:33,000 | - | 03.05.2023 | 14:47:38,000 | F | 03.05.2023 | 14:49:45,000 | - | 03.05.2023 | 14:49:50,000 | F | 03.05.2023 | 14:52:02,000 | - | 03.05.2023 | 14:52:07,000 | B | 03.05.2023 | 15:07:23,000 | - | 03.05.2023 | 15:07:28,000 | B | 03.05.2023 | 15:09:15,000 | - | 03.05.2023 | 15:09:20,000 | B | 03.05.2023 | 15:10:17,000 | - | 03.05.2023 | 15:10:22,000 | B | 03.05.2023 | 15:13:18,000 | - | 03.05.2023 | 15:13:23,000 | B | 03.05.2023 | 15:16:10,000 | - | 03.05.2023 | 15:16:15,000 | B | 03.05.2023 | 15:18:36,000 | - | 03.05.2023 | 15:18:41,000 | B | 03.05.2023 | 15:19:24,000 | - | 03.05.2023 | 15:19:29,000 | B | 03.05.2023 | 15:24:22,000 | - | 03.05.2023 | 15:24:27,000 | B | 03.05.2023 | 15:25:48,000 | - | 03.05.2023 | 15:25:53,000 | B | 03.05.2023 | 15:27:06,000 | - | 03.05.2023 | 15:27:11,000 | F | 03.05.2023 | 15:29:38,000 | - | 03.05.2023 | 15:29:43,000 | B | 03.05.2023 | 15:30:30,000 | - | 03.05.2023 | 15:30:35,000 | B | 03.05.2023 | 15:32:37,000 | - | 03.05.2023 | 15:32:42,000 | B | 03.05.2023 | 15:34:44,000 | - | 03.05.2023 | 15:34:49,000 | B | 03.05.2023 | 15:36:28,000 | - | 03.05.2023 | 15:36:33,000 | B | 03.05.2023 | 15:38:22,000 | - | 03.05.2023 | 15:38:27,000 | B | 03.05.2023 | 15:40:46,000 | - | 03.05.2023 | 15:40:51,000 | B | 03.05.2023 | 15:41:44,000 | - | 03.05.2023 | 15:41:49,000 | 03.05.2023 | 15:45:07,000 | - | T | [s] | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | Laeq | [dB(A)] | 60,5 | 52,3 | 55,3 | 59,4 | 51,4 | 49,9 | 53,4 | 56,3 | 57,7 | 54,2 | 54,8 | 55,8 | 58,3 | 57,1 | 54,4 | 57,7 | 58,8 | 60,6 | 53,4 | 63,8 | 71,9 | 62,8 | LAFmax | LAFTeq | [dB(A)] | [dB(A)] | 64,6 | 64,6 | 59,5 | 59,5 | 61,4 | 61,4 | 65,6 | 65,6 | 55,1 | 55,1 | 53,2 | 53,2 | 59,6 | 59,6 | 60,7 | 60,7 | 60,9 | 60,9 | 57,8 | 57,8 | 59,6 | 59,6 | 61,5 | 61,5 | 61,6 | 61,6 | 64,0 | 64,0 | 62,4 | 62,4 | 60,0 | 60,0 | 65,1 | 65,1 | 64,2 | 64,2 | 57,4 | 57,4 | 66,3 | 66,3 | 75,6 | 75,6 | 64,7 | 64,7 | KI | [dB(A)] | 4,1 | 7,2 | 6,1 | 6,2 | 3,7 | 3,3 | 6,2 | 4,4 | 3,2 | 3,6 | 4,8 | 5,7 | 3,3 | 6,9 | 8,0 | 2,3 | 6,3 | 3,6 | 4,0 | 2,5 | 3,7 | 1,9 | r | [m] | 37,4 | 37,9 | 37,9 | 37,9 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 37,9 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | LWA,5s | [dB(A)] | 99,9 | 91,9 | 94,9 | 99,0 | 91,0 | 89,5 | 93,0 | 95,9 | 97,3 | 93,8 | 94,4 | 95,4 | 97,9 | 96,7 | 94,0 | 97,3 | 98,4 | 100,2 | 93,0 | 103,4 | 111,5 | 102,4 | LWAmax | [dB(A)] | 104,0 | 99,1 | 101,0 | 105,2 | 94,7 | 92,8 | 99,2 | 100,3 | 100,5 | 97,4 | 99,2 | 101,1 | 101,2 | 103,6 | 102,0 | 99,6 | 104,7 | 103,8 | 97,0 | 105,9 | 115,2 | 104,3 | LWA,1h | [dB(A)] | 71,4 | 63,3 | 66,3 | 70,4 | 62,4 | 60,9 | 64,4 | 67,3 | 68,7 | 65,2 | 65,8 | 66,8 | 69,3 | 68,1 | 65,4 | 68,7 | 69,8 | 71,6 | 64,4 | 74,8 | 82,9 | 73,8 |\n|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|\n\n2-Q1\n\n## Koffer\n\n\n## B\n\n03.05.2023 15:45:12,000\n5,0\n51,4\n53,8\n53,8\n2,4\n38,0\n91,0\n93,4\n2-Q1\n2-Q1\n\n## Q1-innen\n\n|\n|\n|\n\n## Koffer\n\n\n## Koffer\n\n\n## Koffer\n\n\n## B\n\n\n## B\n\n\n## C\n\n2023 13:50:56.000 2023 13:91:33.000 2023 13:56:08.000\n03.05.2023 15:50:50,000 -\n03.05.2023 15:50:56,000\n03.05.2023 15:51:27,000 -\n03.05.2023 15:51:32,000\n03.05.2023 13:56:03,000 -\n03.05.2023 13:56:08,000\n5,0\n5,0\n5,0\n56,8\n53,0\n47,4\n64,2\n55,9\n49,2\n64,2\n55,9\n49,2\n7,4\n2,9\n1,8\n38,0\n38,0\n37,5\n|\n96,4\n92,6\n86,9\n103,8\n95,5\n88,7\n\n## Q1-innen\n\n|\n\n## Koffer\n\n\n## C\n\n03.05.2023 13:57:53,000 -\n03.05.2023 13:57:58,000\n5,0\n63,4\n65,8\n65,8\n2,4\n37,5\n102,9\n|\n105,3\nXXXII\n62,4\n67,8\n64,0\n58,3\n74,3\nAnh\u00e4nge\n\n| Vorgang | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Lkw- | Typ | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Zone | Datum | Uhrzeit | Start | - | Ende | D | 03.05.2023 | 14:30:18,000 | - | 03.05.2023 | 14:30:23,000 | D | 03.05.2023 | 14:30:24,000 | - | 03.05.2023 | 14:30:29,000 | D | 03.05.2023 | 14:30:29,000 | - | 03.05.2023 | 14:30:34,000 | D | 03.05.2023 | 14:30:34,000 | - | 03.05.2023 | 14:30:39,000 | D | 03.05.2023 | 14:30:43,000 | - | 03.05.2023 | 14:30:48,000 | D | 03.05.2023 | 14:33:41,000 | - | 03.05.2023 | 14:33:46,000 | D | 03.05.2023 | 14:33:46,000 | - | 03.05.2023 | 14:33:51,000 | D | 03.05.2023 | 14:33:51,000 | - | 03.05.2023 | 14:33:56,000 | D | 03.05.2023 | 14:33:58,000 | - | 03.05.2023 | 14:34:02,000 | D | 03.05.2023 | 14:36:16,000 | - | 03.05.2023 | 14:36:21,000 | D | 03.05.2023 | 14:36:21,000 | - | 03.05.2023 | 14:36:26,000 | D | 03.05.2023 | 14:36:26,000 | - | 03.05.2023 | 14:36:31,000 | F | 03.05.2023 | 14:38:11,000 | - | 03.05.2023 | 14:38:16,000 | F | 03.05.2023 | 14:47:22,000 | - | 03.05.2023 | 14:47:27,000 | B | 03.05.2023 | 14:47:28,000 | - | 03.05.2023 | 14:47:33,000 | B | 03.05.2023 | 15:07:12,000 | - | 03.05.2023 | 15:07:17,000 | B | 03.05.2023 | 15:07:17,000 | - | 03.05.2023 | 15:07:22,000 | B | 03.05.2023 | 15:08:48,000 | - | 03.05.2023 | 15:08:53,000 | B | 03.05.2023 | 15:08:53,000 | - | 03.05.2023 | 15:08:58,000 | B | 03.05.2023 | 15:09:57,000 | - | 03.05.2023 | 15:10:02,000 | B | 03.05.2023 | 15:10:02,000 | - | 03.05.2023 | 15:10:07,000 | B | 03.05.2023 | 15:10:07,000 | - | 03.05.2023 | 15:10:12,000 | 03.05.2023 | 15:10:12,000 | - | T | [s] | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | Laeq | [dB(A)] | 54,8 | 60,0 | 59,7 | 55,4 | 58,6 | 51,7 | 52,0 | 50,0 | 48,5 | 50,5 | 53,2 | 50,8 | 60,7 | 53,4 | 51,1 | 51,9 | 56,9 | 58,7 | 55,1 | 55,0 | 53,1 | 52,9 | LAFmax | LAFTeq | [dB(A)] | [dB(A)] | 58,2 | 58,2 | 61,8 | 61,8 | 64,5 | 64,5 | 56,2 | 56,2 | 60,7 | 60,7 | 61,9 | 61,9 | 60,0 | 60,0 | 54,3 | 54,3 | 52,4 | 52,4 | 52,5 | 52,5 | 61,8 | 61,8 | 55,7 | 55,7 | 62,9 | 62,9 | 55,0 | 55,0 | 52,9 | 52,9 | 54,5 | 54,5 | 66,9 | 66,9 | 61,7 | 61,7 | 63,3 | 63,3 | 61,7 | 61,7 | 56,9 | 56,9 | 57,1 | 57,1 | KI | [dB(A)] | 3,4 | 1,8 | 4,8 | 0,8 | 2,1 | 10,2 | 8,0 | 4,3 | 3,9 | 2,0 | 8,6 | 4,9 | 2,2 | 1,6 | 1,8 | 2,6 | 10,0 | 3,0 | 8,2 | 6,7 | 3,8 | 4,2 | r | [m] | 37,4 | 37,4 | 37,4 | 37,4 | 37,4 | 37,4 | 37,4 | 37,4 | 37,4 | 37,4 | 37,4 | 37,4 | 37,9 | 37,9 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | LWA,5s | [dB(A)] | 94,2 | 99,4 | 99,1 | 94,8 | 98,0 | 91,1 | 91,4 | 89,4 | 87,9 | 89,9 | 92,6 | 90,2 | 100,3 | 93,0 | 90,7 | 91,5 | 96,5 | 98,3 | 94,7 | 94,6 | 92,7 | 92,5 | LWAmax | [dB(A)] | 97,6 | 101,2 | 103,9 | 95,6 | 100,1 | 101,3 | 99,4 | 93,7 | 91,8 | 91,9 | 101,2 | 95,1 | 102,5 | 94,6 | 92,5 | 94,1 | 106,5 | 101,3 | 102,9 | 101,3 | 96,5 | 96,7 | LWA,1h | [dB(A)] | 65,7 | 70,9 | 70,6 | 66,3 | 69,5 | 62,6 | 62,9 | 60,9 | 59,4 | 61,4 | 64,1 | 61,7 | 71,7 | 64,4 | 62,1 | 62,9 | 67,9 | 69,7 | 66,1 | 66,0 | 64,1 | 63,9 |\n|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|\n\n\n## Q1-innen\n\n\n## Koffer\n\n\n## B\n\n03.05.2023 15:10:17,000\n5,0\n54,5\n61,6\n61,6\n7,1\n38,0\n94,1\n101,2\n\n## Q1-innen\n\n|\n\n## Koffer\n\n\n## B\n\n03.05.2023 15:13:01,000 -\n\n## en sooo. 03.05.2023 15:13:06,000\n5,0\n60,8\n65,2\n65,2\n4,4\n38,0\n|\n100,4\n|\n104,8\n\n## Q1-innen\n\n\n## Q1-innen\n\n|\n|\n\n## Koffer\n\n\n## Koffer\n\n\n## B\n\n\n## B\n\n2023 19113:14.000 2023 1913117.000\n03.05.2023 15:13:06,000 -\n03.05.2023 15:13:11,000\n03.05.2023 15:13:12,000 -\n03.05.2023 15:13:17,000\n5,0\n5,0\n64,9\n57,2\n68,1\n59,8\n68,1\n59,8\n3,2\n2,6\n38,0\n38,0\n|\n104,5\n96,8\n|\n107,7\n99,4\n\n## Q1-innen\n\n|\n\n## Koffer\n\n\n## B\n\n03.05.2023 15:15:45,000 -\n03.05.2023 15:15:50,000\n5,0\n|\n63,3\n65,3\n65,3\n2,0\n38,0\n102,9\n|\n104,9\nXXXIII\n65,5\n71,8\n75,9\n68,2\n74,3\nAnh\u00e4nge\n\n| Vorgang | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Lkw- | Typ | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Zone | Datum | Uhrzeit | Start | - | Ende | B | 03.05.2023 | 15:15:50,000 | - | 03.05.2023 | 15:15:55,000 | B | 03.05.2023 | 15:15:55,000 | - | 03.05.2023 | 15:16:00,000 | B | 03.05.2023 | 15:16:00,000 | - | 03.05.2023 | 15:16:05,000 | B | 03.05.2023 | 15:16:05,000 | - | 03.05.2023 | 15:16:10,000 | B | 03.05.2023 | 15:17:02,000 | - | 03.05.2023 | 15:17:07,000 | B | 03.05.2023 | 15:17:53,000 | - | 03.05.2023 | 15:17:58,000 | B | 03.05.2023 | 15:17:58,000 | - | 03.05.2023 | 15:18:03,000 | B | 03.05.2023 | 15:18:31,000 | - | 03.05.2023 | 15:18:36,000 | B | 03.05.2023 | 15:19:13,000 | - | 03.05.2023 | 15:19:18,000 | B | 03.05.2023 | 15:19:18,000 | - | 03.05.2023 | 15:19:23,000 | B | 03.05.2023 | 15:24:11,000 | - | 03.05.2023 | 15:24:16,000 | B | 03.05.2023 | 15:24:16,000 | - | 03.05.2023 | 15:24:21,000 | F | 03.05.2023 | 15:29:22,000 | - | 03.05.2023 | 15:29:27,000 | B | 03.05.2023 | 15:30:24,000 | - | 03.05.2023 | 15:30:29,000 | B | 03.05.2023 | 15:32:21,000 | - | 03.05.2023 | 15:32:26,000 | B | 03.05.2023 | 15:32:26,000 | - | 03.05.2023 | 15:32:31,000 | B | 03.05.2023 | 15:32:31,000 | - | 03.05.2023 | 15:32:36,000 | B | 03.05.2023 | 15:33:10,000 | - | 03.05.2023 | 15:33:15,000 | B | 03.05.2023 | 15:34:38,000 | - | 03.05.2023 | 15:34:43,000 | B | 03.05.2023 | 15:36:20,000 | - | 03.05.2023 | 15:36:25,000 | B | 03.05.2023 | 15:38:11,000 | - | 03.05.2023 | 15:38:16,000 | B | 03.05.2023 | 15:38:16,000 | - | 03.05.2023 | 15:38:21,000 | 03.05.2023 | 15:41:29,000 | - | T | [s] | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | Laeq | [dB(A)] | 61,9 | 59,7 | 61,0 | 55,9 | 59,8 | 59,0 | 60,1 | 56,6 | 56,3 | 51,9 | 51,8 | 53,4 | 54,1 | 52,8 | 54,3 | 57,5 | 55,3 | 57,9 | 58,1 | 61,1 | 63,9 | 63,5 | LAFmax | LAFTeq | [dB(A)] | [dB(A)] | 63,3 | 63,3 | 62,8 | 62,8 | 66,6 | 66,6 | 59,2 | 59,2 | 62,3 | 62,3 | 62,6 | 62,6 | 62,9 | 62,9 | 62,7 | 62,7 | 62,0 | 62,0 | 53,9 | 53,9 | 56,9 | 56,9 | 57,2 | 57,2 | 59,8 | 59,8 | 59,5 | 59,5 | 59,4 | 59,4 | 63,0 | 63,0 | 59,8 | 59,8 | 61,5 | 61,5 | 61,5 | 61,5 | 69,4 | 69,4 | 65,9 | 65,9 | 65,2 | 65,2 | KI | [dB(A)] | 1,4 | 3,1 | 5,6 | 3,3 | 2,5 | 3,6 | 2,8 | 6,1 | 5,7 | 2,0 | 5,1 | 3,8 | 5,7 | 6,7 | 5,1 | 5,5 | 4,5 | 3,6 | 3,4 | 8,3 | 2,0 | 1,7 | r | [m] | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 37,9 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | LWA,5s | [dB(A)] | 101,5 | 99,3 | 100,6 | 95,5 | 99,4 | 98,6 | 99,7 | 96,2 | 95,9 | 91,5 | 91,4 | 93,0 | 93,7 | 92,4 | 93,9 | 97,1 | 94,9 | 97,5 | 97,7 | 100,7 | 103,5 | 103,1 | LWAmax | [dB(A)] | 102,9 | 102,4 | 106,2 | 98,8 | 101,9 | 102,2 | 102,5 | 102,3 | 101,6 | 93,5 | 96,5 | 96,8 | 99,4 | 99,1 | 99,0 | 102,6 | 99,4 | 101,1 | 101,1 | 109,0 | 105,5 | 104,8 | LWA,1h | [dB(A)] | 72,9 | 70,7 | 72,0 | 66,9 | 70,8 | 70,0 | 71,1 | 67,6 | 67,3 | 62,9 | 62,8 | 64,4 | 65,1 | 63,8 | 65,3 | 68,5 | 66,3 | 68,9 | 69,1 | 72,1 | 74,9 | 74,5 |\n|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|\n\n\n## Q1-innen\n\n\n## Koffer\n\n\n## B\n\n03.05.2023 15:41:34,000\n5,0\n59,2\n61,4\n61,4\n2,2\n38,0\n98,8\n101,0\n\n## Q1-innen\n\n|\n\n## Koffer\n\n\n## B\n\n03.05.2023 15:41:34,000 -\nne 000\n03.05.2023 15:41:39,000\n5,0\n61,0\n64,6\n64,6\n3,6\n38,0\n|\n100,6\n|\n104,2\n\n## Q1-innen\n\n\n## Q1-innen\n\n|\n|\n\n## Koffer\n\n\n## Koffer\n\n\n## B\n\n\n## B\n\n2023 19.41:44,000 ne 132.000\n03.05.2023 15:41:39,000 -\n03.05.2023 15:43:27,000 -\n5,0\n5,0\n61,7\n51,1\n63,3\n54,9\n63,3\n54,9\n1,6\n3,8\n38,0\n38,0\n|\n101,3\n90,7\n|\n102,9\n94,5\n\n## Q1-innen\n\n|\n\n## Koffer\n\n\n## B\n\n03.05.2023 15:44:57,000 -\n03.05.2023 15:45:02,000\n5,0\n|\n48,8\n51,3\n51,3\n2,5\n38,0\n88,4\n90,9\nXXXIV\n70,2\n72,0\n72,7\n62,1\n59,8\nAnh\u00e4nge\n\n| Vorgang | Lkw- | Typ | Zone | Datum | Uhrzeit | Start | - | Ende | Q1-innen | Koffer | B | 03.05.2023 | 15:45:02,000 | - | 03.05.2023 | 15:45:07,000 | Q1-innen | Koffer | B | 03.05.2023 | 15:47:43,000 | - | 03.05.2023 | 15:47:48,000 | Q1-innen | Koffer | B | 03.05.2023 | 15:51:15,000 | - | 03.05.2023 | 15:51:20,000 | Q1-innen | Koffer | B | 03.05.2023 | 15:51:20,000 | - | 03.05.2023 | 15:51:25,000 | T | [s] | 5,0 | 5,0 | 5,0 | 5,0 | Laeq | [dB(A)] | 55,6 | 53,7 | 50,6 | 50,4 | LAFmax | LAFTeq | [dB(A)] | [dB(A)] | 65,8 | 65,8 | 59,0 | 59,0 | 54,8 | 54,8 | 53,5 | 53,5 | KI | [dB(A)] | 10,2 | 5,3 | 4,2 | 3,1 | r | [m] | 38,0 | 38,0 | 38,0 | 38,0 | LWA,5s | [dB(A)] | 95,2 | 93,3 | 90,2 | 90,0 | LWAmax | [dB(A)] | 105,4 | 98,6 | 94,4 | 93,1 | LWA,1h | [dB(A)] | 66,6 | 64,7 | 61,6 | 61,4 |\n|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|\n\nVerladevorgang Gabelhubwagen:\n\n| Vorgang | Lkw- | Typ | Zone | Datum | Uhrzeit | Start | - | Ende | 1-Q2 | Koffer | B | 17.04.2023 | 13:24:17,000 | - | 17.04.2023 | 13:24:22,000 | 1-Q2 | Koffer | C | 17.04.2023 | 13:28:22,000 | - | 17.04.2023 | 13:28:27,000 | 1-Q2 | Koffer | C | 17.04.2023 | 14:15:24,000 | - | 17.04.2023 | 14:15:29,000 | 1-Q2 | Koffer | C | 17.04.2023 | 14:22:14,000 | - | 17.04.2023 | 14:22:19,000 | 1-Q2 | Koffer | C | 17.04.2023 | 14:26:58,000 | - | 17.04.2023 | 14:27:03,000 | 1-Q2 | Koffer | C | 17.04.2023 | 14:27:34,000 | - | 17.04.2023 | 14:27:39,000 | 1-Q2 | Koffer | C | 17.04.2023 | 14:33:18,000 | - | 17.04.2023 | 14:33:23,000 | 1-Q2 | Koffer | C | 17.04.2023 | 14:34:59,000 | - | 17.04.2023 | 14:35:04,000 | 2-Q2 | Koffer | B | 17.04.2023 | 13:24:27,000 | - | 17.04.2023 | 13:24:32,000 | 2-Q2 | Koffer | C | 17.04.2023 | 13:28:33,000 | - | 17.04.2023 | 13:28:38,000 | 2-Q2 | Koffer | C | 17.04.2023 | 14:15:36,000 | - | 17.04.2023 | 14:15:41,000 | 2-Q2 | Koffer | C | 17.04.2023 | 14:27:12,000 | - | 17.04.2023 | 14:27:17,000 | 2-Q2 | Koffer | C | 17.04.2023 | 14:27:48,000 | - | 17.04.2023 | 14:27:53,000 | 2-Q2 | Koffer | C | 17.04.2023 | 14:33:31,000 | - | 17.04.2023 | 14:33:36,000 | 2-Q2 | Koffer | C | 17.04.2023 | 14:35:06,000 | - | 17.04.2023 | 14:35:11,000 | 2-Q2 | Koffer | C | 17.04.2023 | 14:35:18,000 | - | 17.04.2023 | 14:35:23,000 | Q2-innen | Koffer | B | 17.04.2023 | 13:24:22,000 | - | 17.04.2023 | 13:24:27,000 | Q2-innen | Koffer | C | 17.04.2023 | 13:28:27,000 | - | 17.04.2023 | 13:28:32,000 | Q2-innen | Koffer | C | 17.04.2023 | 14:15:29,000 | - | 17.04.2023 | 14:15:34,000 | Q2-innen | Koffer | C | 17.04.2023 | 14:27:07,000 | - | 17.04.2023 | 14:27:11,000 | Q2-innen | Koffer | C | 17.04.2023 | 14:27:39,000 | - | 17.04.2023 | 14:27:44,000 | T | [s] | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | Laeq | [dB(A)] | 63,1 | 72,5 | 64,9 | 60,3 | 63,2 | 65,6 | 63,9 | 61,7 | 63,8 | 60,4 | 64,9 | 60,1 | 69,8 | 63,9 | 62,6 | 65,3 | 58,5 | 65,1 | 63,4 | 52,5 | 62,3 | LAFmax | LAFTeq | [dB(A)] | [dB(A)] | 71,9 | 71,9 | 74,6 | 74,6 | 69,2 | 69,2 | 63,5 | 63,5 | 72,2 | 72,2 | 73,2 | 73,2 | 69,7 | 69,7 | 66,7 | 66,7 | 72,7 | 72,7 | 64,0 | 64,0 | 71,4 | 71,4 | 66,7 | 66,7 | 74,4 | 74,4 | 69,2 | 69,2 | 70,9 | 70,9 | 72,7 | 72,7 | 68,7 | 68,7 | 69,4 | 69,4 | 68,4 | 68,4 | 55,4 | 55,4 | 68,1 | 68,1 | KI | [dB(A)] | 8,8 | 2,1 | 4,3 | 3,2 | 9,0 | 7,6 | 5,8 | 5,0 | 8,9 | 3,6 | 6,5 | 6,6 | 4,6 | 5,3 | 8,3 | 7,4 | 10,2 | 4,3 | 5,0 | 2,9 | 5,8 | r | [m] | 38,0 | 37,5 | 37,5 | 37,5 | 37,5 | 37,5 | 37,5 | 37,5 | 38,0 | 37,5 | 37,5 | 37,5 | 37,5 | 37,5 | 37,5 | 37,5 | 38,0 | 37,5 | 37,5 | 37,5 | 37,5 | LWA,5s | [dB(A)] | 102,7 | 112,0 | 104,4 | 99,8 | 102,7 | 105,1 | 103,4 | 101,2 | 103,4 | 99,9 | 104,4 | 99,6 | 109,3 | 103,4 | 102,1 | 104,8 | 98,1 | 104,6 | 102,9 | 92,0 | 101,8 | LWAmax | [dB(A)] | 111,5 | 114,1 | 108,7 | 103,0 | 111,7 | 112,7 | 109,2 | 106,2 | 112,3 | 103,5 | 110,9 | 106,2 | 113,9 | 108,7 | 110,4 | 112,2 | 108,3 | 108,9 | 107,9 | 94,9 | 107,6 | LWA,1h | [dB(A)] | 74,1 | 83,4 | 75,8 | 71,2 | 74,1 | 76,5 | 74,8 | 72,6 | 74,8 | 71,3 | 75,8 | 71,0 | 80,7 | 74,8 | 73,5 | 76,2 | 69,5 | 76,0 | 74,3 | 63,4 | 73,2 |\n|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|\n\nXXXV\nAnh\u00e4nge\n\n| Vorgang | Q2-innen | Q2-innen | 1-Q2 | 1-Q2 | 1-Q2 | 1-Q2 | 1-Q2 | 1-Q2 | 1-Q2 | 1-Q2 | 1-Q2 | 1-Q2 | 1-Q2 | 1-Q2 | 2-Q2 | 2-Q2 | 2-Q2 | 2-Q2 | 2-Q2 | 2-Q2 | 2-Q2 | 2-Q2 | Lkw- | Typ | Koffer | Koffer | Koffer | WB | WB | WB | WB | WB | WB | WB | WB | WB | Koffer | Koffer | Koffer | WB | WB | WB | WB | WB | WB | WB | Zone | Datum | Uhrzeit | Start | - | Ende | C | 17.04.2023 | 14:33:23,000 | - | 17.04.2023 | 14:33:28,000 | C | 17.04.2023 | 14:35:12,000 | - | 17.04.2023 | 14:35:17,000 | C | 26.04.2023 | 13:57:42,000 | - | 26.04.2023 | 13:57:47,000 | E | 26.04.2023 | 13:58:30,000 | - | 26.04.2023 | 13:58:35,000 | E | 26.04.2023 | 13:59:44,000 | - | 26.04.2023 | 13:59:49,000 | E | 26.04.2023 | 14:01:53,000 | - | 26.04.2023 | 14:01:58,000 | E | 26.04.2023 | 14:02:48,000 | - | 26.04.2023 | 14:02:53,000 | E | 26.04.2023 | 14:03:50,000 | - | 26.04.2023 | 14:03:55,000 | E | 26.04.2023 | 14:04:40,000 | - | 26.04.2023 | 14:04:45,000 | E | 26.04.2023 | 14:06:00,000 | - | 26.04.2023 | 14:06:05,000 | E | 26.04.2023 | 14:06:45,000 | - | 26.04.2023 | 14:06:50,000 | E | 26.04.2023 | 14:07:39,000 | - | 26.04.2023 | 14:07:44,000 | B | 26.04.2023 | 14:12:53,000 | - | 26.04.2023 | 14:12:58,000 | C | 26.04.2023 | 14:48:38,000 | - | 26.04.2023 | 14:48:43,000 | C | 26.04.2023 | 13:57:52,000 | - | 26.04.2023 | 13:57:57,000 | E | 26.04.2023 | 13:58:51,000 | - | 26.04.2023 | 13:58:56,000 | E | 26.04.2023 | 13:59:58,000 | - | 26.04.2023 | 14:00:03,000 | E | 26.04.2023 | 14:01:36,000 | - | 26.04.2023 | 14:01:41,000 | E | 26.04.2023 | 14:02:03,000 | - | 26.04.2023 | 14:02:08,000 | E | 26.04.2023 | 14:02:58,000 | - | 26.04.2023 | 14:03:03,000 | E | 26.04.2023 | 14:06:10,000 | - | 26.04.2023 | 14:06:15,000 | E | 26.04.2023 | 14:06:55,000 | - | 26.04.2023 | 14:07:00,000 | 26.04.2023 | 14:07:49,000 | - | T | [s] | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | Laeq | [dB(A)] | 61,4 | 59,8 | 63,0 | 54,9 | 52,3 | 54,2 | 56,3 | 61,2 | 60,8 | 49,3 | 52,8 | 52,5 | 55,6 | 54,8 | 63,4 | 63,5 | 53,9 | 54,8 | 53,5 | 53,0 | 52,5 | 52,4 | LAFmax | LAFTeq | [dB(A)] | [dB(A)] | 67,0 | 67,0 | 62,2 | 62,2 | 72,9 | 72,9 | 60,7 | 60,7 | 57,7 | 57,7 | 60,1 | 60,1 | 62,0 | 62,0 | 71,6 | 71,6 | 67,4 | 67,4 | 51,2 | 51,2 | 54,5 | 54,5 | 56,9 | 56,9 | 60,1 | 60,1 | 61,0 | 61,0 | 73,0 | 73,0 | 72,5 | 72,5 | 60,4 | 60,4 | 59,0 | 59,0 | 58,1 | 58,1 | 59,1 | 59,1 | 58,6 | 58,6 | 59,3 | 59,3 | KI | [dB(A)] | 5,6 | 2,4 | 9,9 | 5,8 | 5,4 | 5,9 | 5,7 | 10,4 | 6,6 | 1,9 | 1,7 | 4,4 | 4,5 | 6,2 | 9,6 | 9,0 | 6,5 | 4,2 | 4,6 | 6,1 | 6,1 | 6,9 | r | [m] | 37,5 | 37,5 | 37,5 | 37,4 | 37,4 | 37,4 | 37,4 | 37,4 | 37,4 | 37,4 | 37,4 | 37,4 | 38,0 | 37,5 | 37,5 | 37,4 | 37,4 | 37,4 | 37,4 | 37,4 | 37,4 | 37,4 | LWA,5s | [dB(A)] | 100,9 | 99,3 | 102,5 | 94,3 | 91,7 | 93,6 | 95,7 | 100,6 | 100,2 | 88,7 | 92,2 | 91,9 | 95,2 | 94,3 | 102,9 | 102,9 | 93,3 | 94,2 | 92,9 | 92,4 | 91,9 | 91,8 | LWAmax | [dB(A)] | 106,5 | 101,7 | 112,4 | 100,1 | 97,1 | 99,5 | 101,4 | 111,0 | 106,8 | 90,6 | 93,9 | 96,3 | 99,7 | 100,5 | 112,5 | 111,9 | 99,8 | 98,4 | 97,5 | 98,5 | 98,0 | 98,7 | LWA,1h | [dB(A)] | 72,3 | 70,7 | 73,9 | 65,8 | 63,2 | 65,1 | 67,2 | 72,1 | 71,7 | 60,2 | 63,7 | 63,4 | 66,6 | 65,7 | 74,3 | 74,4 | 64,8 | 65,7 | 64,4 | 63,9 | 63,4 | 63,3 |\n|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|\n\n2-Q2\n\n## WB\n\n\n## E\n\n26.04.2023 14:07:54,000\n5,0\n66,4\n71,4\n71,4\n5,0\n37,4\n105,8\n110,8\n2-Q2\n|\n\n## Koffer\n\n\n## B\n\n26.04.2023 14:13:03,000 -\nEN 108.000. 26.04.2023 14:13:08,000\n5,0\n68,6\n81,0\n81,0\n|\n12,4\n38,0\n108,2\n|\n120,6\n2-Q2\n2-Q2\n|\n|\n\n## Koffer\n\n\n## Koffer\n\n\n## C\n\n\n## C\n\n2023 14.49:03.000 2023 1917:21.000\n26.04.2023 14:48:57,000 -\n26.04.2023 14:49:02,000\n26.04.2023 15:17:16,000 -\n26.04.2023 15:17:21,000\n5,0\n5,0\n58,1\n61,1\n66,7\n66,7\n69,2\n66,7\n69,2\n8,6\n8,1\n37,5\n37,5\n|\n97,6\n100,6\n|\n106,2\n108,7\n\n## Q2-innen\n\n|\n\n## Koffer\n\n\n## C\n\n26.04.2023 13:57:47,000 -\n26.04.2023 13:57:52,000\n5,0\n|\n59,6\n69,2\n69,2\n9,6\n37,5\n99,1\n108,7\nXXXVI\n77,3\n79,6\n69,0\n72,0\n70,5\nAnh\u00e4nge\n\n| Vorgang | Lkw- | Typ | Q2-innen | WB | Q2-innen | WB | Q2-innen | WB | Q2-innen | WB | Q2-innen | WB | Q2-innen | WB | Q2-innen | WB | Q2-innen | WB | Q2-innen | WB | Q2-innen | Koffer | Q2-innen | Koffer | Q2-innen | Koffer | Q2-innen | Koffer | 1-Q2 | Koffer | 1-Q2 | Koffer | 1-Q2 | Koffer | 1-Q2 | Koffer | 1-Q2 | Koffer | 1-Q2 | Koffer | 1-Q2 | Koffer | 1-Q2 | Koffer | 1-Q2 | Koffer | Zone | Datum | Uhrzeit | Start | - | Ende | E | 26.04.2023 | 13:58:35,000 | - | 26.04.2023 | 13:58:40,000 | E | 26.04.2023 | 13:59:51,000 | - | 26.04.2023 | 13:59:56,000 | E | 26.04.2023 | 14:01:58,000 | - | 26.04.2023 | 14:02:03,000 | E | 26.04.2023 | 14:02:53,000 | - | 26.04.2023 | 14:02:58,000 | E | 26.04.2023 | 14:03:55,000 | - | 26.04.2023 | 14:04:00,000 | E | 26.04.2023 | 14:04:45,000 | - | 26.04.2023 | 14:04:50,000 | E | 26.04.2023 | 14:06:05,000 | - | 26.04.2023 | 14:06:10,000 | E | 26.04.2023 | 14:06:50,000 | - | 26.04.2023 | 14:06:55,000 | E | 26.04.2023 | 14:07:44,000 | - | 26.04.2023 | 14:07:49,000 | B | 26.04.2023 | 14:12:58,000 | - | 26.04.2023 | 14:13:03,000 | C | 26.04.2023 | 14:48:47,000 | - | 26.04.2023 | 14:48:52,000 | C | 26.04.2023 | 14:48:52,000 | - | 26.04.2023 | 14:48:57,000 | C | 26.04.2023 | 14:49:02,000 | - | 26.04.2023 | 14:49:07,000 | C | 27.04.2023 | 14:14:58,000 | - | 27.04.2023 | 14:15:03,000 | C | 27.04.2023 | 14:19:21,000 | - | 27.04.2023 | 14:19:26,000 | C | 27.04.2023 | 14:19:59,000 | - | 27.04.2023 | 14:20:04,000 | C | 27.04.2023 | 14:20:42,000 | - | 27.04.2023 | 14:20:47,000 | C | 27.04.2023 | 14:21:07,000 | - | 27.04.2023 | 14:21:12,000 | C | 27.04.2023 | 14:23:21,000 | - | 27.04.2023 | 14:23:26,000 | C | 27.04.2023 | 14:24:22,000 | - | 27.04.2023 | 14:24:27,000 | C | 27.04.2023 | 14:24:38,000 | - | 27.04.2023 | 14:24:43,000 | C | 27.04.2023 | 14:25:13,000 | - | 27.04.2023 | 14:25:18,000 | 27.04.2023 | 14:28:10,000 | - | T | [s] | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | Laeq | [dB(A)] | 58,1 | 51,0 | 52,9 | 48,7 | 59,2 | 59,7 | 51,2 | 53,2 | 54,1 | 56,7 | 54,0 | 55,7 | 56,0 | 62,2 | 62,2 | 54,6 | 54,2 | 56,2 | 56,5 | 54,0 | 63,4 | 52,8 | LAFmax | LAFTeq | [dB(A)] | [dB(A)] | 65,1 | 65,1 | 52,8 | 52,8 | 55,8 | 55,8 | 52,2 | 52,2 | 61,8 | 61,8 | 63,2 | 63,2 | 55,2 | 55,2 | 59,1 | 59,1 | 56,9 | 56,9 | 62,1 | 62,1 | 58,2 | 58,2 | 63,8 | 63,8 | 60,6 | 60,6 | 70,0 | 70,0 | 70,0 | 70,0 | 61,2 | 61,2 | 59,9 | 59,9 | 65,4 | 65,4 | 61,2 | 61,2 | 56,0 | 56,0 | 74,1 | 74,1 | 58,5 | 58,5 | KI | [dB(A)] | 7,0 | 1,8 | 2,9 | 3,5 | 2,6 | 3,5 | 4,0 | 5,9 | 2,8 | 5,4 | 4,2 | 8,1 | 4,6 | 7,8 | 7,8 | 6,6 | 5,7 | 9,2 | 4,7 | 2,0 | 10,7 | 5,7 | r | [m] | 37,4 | 37,4 | 37,4 | 37,4 | 37,4 | 37,4 | 37,4 | 37,4 | 37,4 | 38,0 | 37,5 | 37,5 | 37,5 | 37,5 | 37,5 | 37,5 | 37,5 | 37,5 | 37,5 | 37,5 | 37,5 | 37,5 | LWA,5s | [dB(A)] | 97,5 | 90,4 | 92,3 | 88,1 | 98,6 | 99,1 | 90,6 | 92,6 | 93,5 | 96,3 | 93,5 | 95,2 | 95,5 | 101,7 | 101,7 | 94,1 | 93,7 | 95,7 | 96,0 | 93,5 | 102,9 | 92,3 | LWAmax | [dB(A)] | 104,5 | 92,2 | 95,2 | 91,6 | 101,2 | 102,6 | 94,6 | 98,5 | 96,3 | 101,7 | 97,7 | 103,3 | 100,1 | 109,5 | 109,5 | 100,7 | 99,4 | 104,9 | 100,7 | 95,5 | 113,6 | 98,0 | LWA,1h | [dB(A)] | 69,0 | 61,9 | 63,8 | 59,6 | 70,1 | 70,6 | 62,1 | 64,1 | 65,0 | 67,7 | 64,9 | 66,6 | 66,9 | 73,1 | 73,1 | 65,5 | 65,1 | 67,1 | 67,4 | 64,9 | 74,3 | 63,7 |\n|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|\n\n1-Q2\n\n## Koffer\n\n\n## C\n\n27.04.2023 14:28:15,000\n5,0\n54,5\n59,7\n59,7\n5,2\n37,5\n94,0\n99,2\n1-Q2\n|\n\n## Koffer\n\n\n## C\n\n04.2023 14:30:24.000\n27.04.2023 14:30:19,000 -\n5,0\n55,2\n61,9\n61,9\n6,7\n37,5\n94,7\n101,4\n1-Q2\n|\n\n## Koffer\n\n\n## C\n\n27.04.2023 14:31:33,000 -\n3000\n27.04.2023 14:31:38,000\n5,0\n60,5\n64,2\n64,2\n3,7\n37,5\n|\n100,0\n|\n103,7\n1-Q2\n|\n\n## Koffer\n\n\n## C\n\n2023 14:33:51.000\n27.04.2023 14:33:46,000 -\n27.04.2023 14:33:51,000\n5,0\n62,6\n74,8\n74,8\n|\n12,2\n37,5\n102,1\n|\n114,3\n2-Q2\n|\n\n## Koffer\n\n\n## C\n\n27.04.2023 14:19:31,000 -\n27.04.2023 14:19:36,000\n5,0\n|\n57,9\n68,4\n68,4\n68,4\n|\n10,5\n37,5\n|\n97,4\n107,9\nXXXVII\n65,4\n66,1\n71,4\n73,5\n68,8\nAnh\u00e4nge\n\n| Vorgang | 2-Q2 | 2-Q2 | 2-Q2 | 2-Q2 | 2-Q2 | 2-Q2 | 2-Q2 | 2-Q2 | 2-Q2 | 2-Q2 | 2-Q2 | Q2-innen | Q2-innen | Q2-innen | Q2-innen | Q2-innen | Q2-innen | Q2-innen | Q2-innen | Q2-innen | Q2-innen | Q2-innen | Lkw- | Typ | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Koffer | Zone | Datum | Uhrzeit | Start | - | Ende | C | 27.04.2023 | 14:20:57,000 | - | 27.04.2023 | 14:21:02,000 | C | 27.04.2023 | 14:21:15,000 | - | 27.04.2023 | 14:21:20,000 | C | 27.04.2023 | 14:23:33,000 | - | 27.04.2023 | 14:23:38,000 | C | 27.04.2023 | 14:24:32,000 | - | 27.04.2023 | 14:24:37,000 | C | 27.04.2023 | 14:24:52,000 | - | 27.04.2023 | 14:24:57,000 | C | 27.04.2023 | 14:25:27,000 | - | 27.04.2023 | 14:25:32,000 | C | 27.04.2023 | 14:25:53,000 | - | 27.04.2023 | 14:25:58,000 | C | 27.04.2023 | 14:28:28,000 | - | 27.04.2023 | 14:28:33,000 | C | 27.04.2023 | 14:30:43,000 | - | 27.04.2023 | 14:30:48,000 | C | 27.04.2023 | 14:31:43,000 | - | 27.04.2023 | 14:31:48,000 | C | 27.04.2023 | 14:33:59,000 | - | 27.04.2023 | 14:34:04,000 | C | 27.04.2023 | 14:15:03,000 | - | 27.04.2023 | 14:15:08,000 | C | 27.04.2023 | 14:19:26,000 | - | 27.04.2023 | 14:19:31,000 | C | 27.04.2023 | 14:20:08,000 | - | 27.04.2023 | 14:20:13,000 | C | 27.04.2023 | 14:20:28,000 | - | 27.04.2023 | 14:20:33,000 | C | 27.04.2023 | 14:20:47,000 | - | 27.04.2023 | 14:20:52,000 | C | 27.04.2023 | 14:20:52,000 | - | 27.04.2023 | 14:20:57,000 | C | 27.04.2023 | 14:23:28,000 | - | 27.04.2023 | 14:23:33,000 | C | 27.04.2023 | 14:24:27,000 | - | 27.04.2023 | 14:24:32,000 | C | 27.04.2023 | 14:24:47,000 | - | 27.04.2023 | 14:24:52,000 | C | 27.04.2023 | 14:25:18,000 | - | 27.04.2023 | 14:25:23,000 | C | 27.04.2023 | 14:25:48,000 | - | 27.04.2023 | 14:25:53,000 | 27.04.2023 | 14:28:18,000 | - | T | [s] | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | 5,0 | Laeq | [dB(A)] | 57,5 | 69,0 | 57,5 | 56,4 | 49,2 | 57,2 | 58,9 | 58,5 | 56,7 | 60,4 | 53,2 | 59,0 | 51,4 | 55,8 | 60,7 | 49,6 | 56,3 | 54,6 | 55,1 | 52,1 | 53,1 | 48,7 | LAFmax | LAFTeq | [dB(A)] | [dB(A)] | 68,5 | 68,5 | 75,4 | 75,4 | 68,9 | 68,9 | 66,1 | 66,1 | 55,3 | 55,3 | 67,0 | 67,0 | 68,0 | 68,0 | 66,8 | 66,8 | 66,0 | 66,0 | 66,2 | 66,2 | 58,0 | 58,0 | 65,3 | 65,3 | 54,3 | 54,3 | 62,4 | 62,4 | 65,4 | 65,4 | 51,7 | 51,7 | 66,6 | 66,6 | 64,0 | 64,0 | 60,0 | 60,0 | 61,3 | 61,3 | 61,3 | 61,3 | 50,1 | 50,1 | KI | [dB(A)] | 11,0 | 6,4 | 11,4 | 9,7 | 6,1 | 9,8 | 9,1 | 8,3 | 9,3 | 5,8 | 4,8 | 6,3 | 2,9 | 6,6 | 4,7 | 2,1 | 10,3 | 9,4 | 4,9 | 9,2 | 8,2 | 1,4 | r | [m] | 37,5 | 37,5 | 37,5 | 37,5 | 37,5 | 37,5 | 37,5 | 37,5 | 37,5 | 37,5 | 37,5 | 37,5 | 37,5 | 37,5 | 37,5 | 37,5 | 37,5 | 37,5 | 37,5 | 37,5 | 37,5 | 37,5 | LWA,5s | [dB(A)] | 97,0 | 108,5 | 97,0 | 95,9 | 88,7 | 96,7 | 98,4 | 98,0 | 96,2 | 99,9 | 92,7 | 98,5 | 90,9 | 95,3 | 100,2 | 89,1 | 95,8 | 94,1 | 94,6 | 91,6 | 92,6 | 88,2 | LWAmax | [dB(A)] | 108,0 | 114,9 | 108,4 | 105,6 | 94,8 | 106,5 | 107,5 | 106,3 | 105,5 | 105,7 | 97,5 | 104,8 | 93,8 | 101,9 | 104,9 | 91,2 | 106,1 | 103,5 | 99,5 | 100,8 | 100,8 | 89,6 | LWA,1h | [dB(A)] | 68,4 | 79,9 | 68,4 | 67,3 | 60,1 | 68,1 | 69,8 | 69,4 | 67,6 | 71,3 | 64,1 | 69,9 | 62,3 | 66,7 | 71,6 | 60,5 | 67,2 | 65,5 | 66,0 | 63,0 | 64,0 | 59,6 |\n|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|\n\n\n## Q2-innen\n\n\n## Koffer\n\n\n## C\n\n27.04.2023 14:28:23,000\n5,0\n58,5\n60,6\n60,6\n2,1\n37,5\n98,0\n100,1\n\n## Q2-innen\n\n\n## Koffer\n\n\n## C\n\n27.04.2023 14:31:38,000 -\n27.04.2023 14:31:43,000\n5,0\n60,1\n64,4\n64,4\n4,3\n37,5\n99,6\n103,9\nXXXVIII\n69,4\n71,0\nAnh\u00e4nge\n\n## Anhang 4: Richtcharakteristik\n\n\n## Gabelhubwagen 07.04.2023:\n\n\n| Mit | Messpunkte | vom | 27.04.23 | Vorgang | Datum | Start | - | Ende | 1-Q2 | 27.04.2023 | 14:14:58,000 | - | 27.04.2023 | 14:15:03,000 | 1-Q2 | 27.04.2023 | 14:19:21,000 | - | 27.04.2023 | 14:19:26,000 | 1-Q2 | 27.04.2023 | 14:19:59,000 | - | 27.04.2023 | 14:20:04,000 | 1-Q2 | 27.04.2023 | 14:20:42,000 | - | 27.04.2023 | 14:20:47,000 | 1-Q2 | 27.04.2023 | 14:21:07,000 | - | 27.04.2023 | 14:21:12,000 | 1-Q2 | 27.04.2023 | 14:23:21,000 | - | 27.04.2023 | 14:23:26,000 | 1-Q2 | 27.04.2023 | 14:24:22,000 | - | 27.04.2023 | 14:24:27,000 | 1-Q2 | 27.04.2023 | 14:24:38,000 | - | 27.04.2023 | 14:24:43,000 | 1-Q2 | 27.04.2023 | 14:25:13,000 | - | 27.04.2023 | 14:25:18,000 | 1-Q2 | 27.04.2023 | 14:28:10,000 | - | 27.04.2023 | 14:28:15,000 | 1-Q2 | 27.04.2023 | 14:30:19,000 | - | 27.04.2023 | 14:30:24,000 | 1-Q2 | 27.04.2023 | 14:31:33,000 | - | 27.04.2023 | 14:31:38,000 | 1-Q2 | 27.04.2023 | 14:33:46,000 | - | 27.04.2023 | 14:33:51,000 | 2-Q2 | 27.04.2023 | 14:19:31,000 | - | 27.04.2023 | 14:19:36,000 | 2-Q2 | 27.04.2023 | 14:20:57,000 | - | 27.04.2023 | 14:21:02,000 | 2-Q2 | 27.04.2023 | 14:21:15,000 | - | 27.04.2023 | 14:21:20,000 | 2-Q2 | 27.04.2023 | 14:23:33,000 | - | 27.04.2023 | 14:23:38,000 | 2-Q2 | 27.04.2023 | 14:24:32,000 | - | 27.04.2023 | 14:24:37,000 | 2-Q2 | 27.04.2023 | 14:24:52,000 | - | 27.04.2023 | 14:24:57,000 | 2-Q2 | 27.04.2023 | 14:25:27,000 | - | 27.04.2023 | 14:25:32,000 | 2-Q2 | 27.04.2023 | 14:25:53,000 | - | 27.04.2023 | 14:25:58,000 | 2-Q2 | 27.04.2023 | 14:28:28,000 | - | 27.04.2023 | 14:28:33,000 | 2-Q2 | 27.04.2023 | 14:30:43,000 | - | 27.04.2023 | 14:30:48,000 | 2-Q2 | 27.04.2023 | 14:31:43,000 | - | 27.04.2023 | 14:31:48,000 | 1 | LAeq | [dB(A)] | 62,2 | 62,2 | 54,6 | 54,2 | 56,2 | 56,5 | 54,0 | 63,4 | 52,8 | 54,5 | 55,2 | 60,5 | 62,6 | 57,9 | 57,5 | 69,0 | 57,5 | 56,4 | 49,2 | 57,2 | 58,9 | 58,5 | 56,7 | 60,4 | x/y | 3,3/4,8 | Ortsfest | LAmax | [dB(A)] | 70,0 | 70,0 | 61,2 | 59,9 | 65,4 | 61,2 | 56,0 | 74,1 | 58,5 | 59,7 | 61,9 | 64,2 | 74,8 | 68,4 | 68,5 | 75,4 | 68,9 | 66,1 | 55,3 | 67,0 | 68,0 | 66,8 | 66,0 | 66,2 | 2 | r | [m] | 40,5 | 40,5 | 40,5 | 40,5 | 40,5 | 40,5 | 40,5 | 40,5 | 40,5 | 40,5 | 40,5 | 40,5 | 40,5 | 40,5 | 40,5 | 40,5 | 40,5 | 40,5 | 40,5 | 40,5 | 40,5 | 40,5 | 40,5 | 40,5 | x/y | 3,2/18,5 | LAeq | [dB(A)] | 63,7 | 69,7 | 59,8 | 65,7 | 67,2 | 64,2 | 64,1 | 68,1 | 54,0 | 56,6 | 58,0 | 60,0 | 73,4 | 65,3 | 68,9 | 80,6 | 53,4 | 62,9 | 52,0 | 60,8 | 67,3 | 66,7 | 63,7 | 65,8 | 3 | Variabel | LAmax | [dB(A)] | 72,4 | 78,3 | 68,8 | 72,4 | 77,4 | 71,8 | 79,2 | 78,9 | 61,8 | 64,4 | 67,8 | 64,2 | 86,7 | 76,8 | 81,0 | 87,1 | 60,9 | 71,4 | 59,9 | 70,5 | 77,2 | 75,1 | 74,4 | 75,3 | x/y | -7,2/18,7 | r | [m] | 22,9 | 22,9 | 8,4 | 8,4 | 8,4 | 8,4 | 22,9 | 22,9 | 22,9 | 20,6 | 20,6 | 20,6 | 20,6 | 20,6 | 20,6 | 20,6 | 20,6 | 20,6 | 20,6 | 20,6 | 20,6 | 20,6 | 20,6 | 20,6 | 4 | \u03c6 | [\u00b0] | 158,9 | 158,9 | 55,2 | 55,2 | 55,2 | 55,2 | 158,9 | 158,9 | 158,9 | 70,0 | 70,0 | 70,0 | 70,0 | 70,0 | 70,0 | 70,0 | 70,0 | 70,0 | 70,0 | 70,0 | 70,0 | 70,0 | 70,0 | 70,0 | x/y | 6,7/18,4 | DI | [dB(A)] | 1,5 | 7,5 | 5,2 | 11,5 | 11,0 | 7,7 | 10,1 | 4,7 | 1,2 | 2,1 | 2,8 | -0,5 | 10,8 | 7,4 | 11,4 | 11,6 | -4,1 | 6,5 | 2,8 | 3,6 | 8,4 | 8,2 | 7,0 | 5,4 |\n|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|\n\n2-Q2\n\n## Q2-innen\n\n\n## Q2-innen\n\n\n## Q2-innen\n\n\n## Q2-innen\n\n2 06.2023 193404000 06.2023 19508.000 06.2023 102032.000\n27.04.2023 14:33:59,000 -\n27.04.2023 14:15:03,000 -\n27.04.2023 14:19:26,000 -\n53,2\n59,0\n59,0\n51,4\n58,0\n65,3\n54,3\n40,5\n40,5\n40,5\n56,5\n63,0\n51,4\n62,9\n73,9\n53,7\n21,8\n22,9\n22,9\n9,8\n158,9\n158,9\n\n## Q2-innen\n\n|\n27.04.2023 14:20:08,000 -\n27.04.2023 14:20:13,000\n55,8\n62,4\n40,5\n65,6\n76,2\n8,4\n55,2\nXXXIX\n3,3\n4,0\n0,0\n9,8\nAnh\u00e4nge\n\n| Q2-innen | 27.04.2023 | 14:20:28,000 | - | 27.04.2023 | 14:20:33,000 | Q2-innen | 27.04.2023 | 14:20:47,000 | - | 27.04.2023 | 14:20:52,000 | Q2-innen | 27.04.2023 | 14:20:52,000 | - | 27.04.2023 | 14:20:57,000 | Q2-innen | 27.04.2023 | 14:23:28,000 | - | 27.04.2023 | 14:23:33,000 | Q2-innen | 27.04.2023 | 14:24:27,000 | - | 27.04.2023 | 14:24:32,000 | Q2-innen | 27.04.2023 | 14:24:47,000 | - | 27.04.2023 | 14:24:52,000 | Q2-innen | 27.04.2023 | 14:25:18,000 | - | 27.04.2023 | 14:25:23,000 | Q2-innen | 27.04.2023 | 14:25:48,000 | - | 27.04.2023 | 14:25:53,000 | Q2-innen | 27.04.2023 | 14:28:18,000 | - | 27.04.2023 | 14:28:23,000 | Q2-innen | 27.04.2023 | 14:31:38,000 | - | 27.04.2023 | 14:31:43,000 | Mit | Messpunkte | vom | 27.04.23 | 60,7 | 49,6 | 56,3 | 54,6 | 55,1 | 52,1 | 53,1 | 48,7 | 58,5 | 60,1 | 1 | 65,4 | 51,7 | 66,6 | 64,0 | 60,0 | 61,3 | 61,3 | 50,1 | 60,6 | 64,4 | x/y | 3,5/4,5 | 40,5 | 40,5 | 40,5 | 40,5 | 40,5 | 40,5 | 40,5 | 40,5 | 40,5 | 40,5 | 2 | 59,5 | 55,7 | 65,6 | 69,8 | 56,4 | 64,0 | 54,8 | 54,2 | 54,4 | 57,0 | x/y | 3,5/9,4 | 68,1 | 63,6 | 75,3 | 81,1 | 59,1 | 78,7 | 64,2 | 61,7 | 57,3 | 59,9 | 3 | 8,4 | 8,4 | 8,4 | 8,4 | 8,4 | 8,4 | 22,9 | 22,9 | 20,6 | 20,6 | x/y | 3,5/17,1 | 55,2 | 55,2 | 55,2 | 55,2 | 55,2 | 55,2 | 158,9 | 158,9 | 70,0 | 70,0 | 4 | -1,2 | 6,1 | 9,3 | 15,2 | 1,3 | 11,9 | 1,7 | 5,5 | -4,1 | -3,1 | x/y | 0/17,2 |\n|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|\n\n\n## Gabelstapler 03.05.2023:\n\n\n## Ortsfest\n\n\n## Variabel\n\n\n| Vorgang | Datum | Start | - | Ende | 1-Q1 | 03.05.2023 | 15:07:07,000 | - | 03.05.2023 | 15:07:12,000 | 1-Q1 | 03.05.2023 | 15:08:42,000 | - | 03.05.2023 | 15:08:47,000 | 1-Q1 | 03.05.2023 | 15:09:52,000 | - | 03.05.2023 | 15:09:57,000 | 1-Q1 | 03.05.2023 | 15:12:55,000 | - | 03.05.2023 | 15:13:00,000 | 1-Q1 | 03.05.2023 | 15:16:57,000 | - | 03.05.2023 | 15:17:02,000 | 1-Q1 | 03.05.2023 | 15:17:48,000 | - | 03.05.2023 | 15:17:53,000 | 1-Q1 | 03.05.2023 | 15:19:08,000 | - | 03.05.2023 | 15:19:13,000 | 1-Q1 | 03.05.2023 | 15:23:57,000 | - | 03.05.2023 | 15:24:03,000 | 1-Q1 | 03.05.2023 | 15:26:12,000 | - | 03.05.2023 | 15:26:17,000 | 1-Q1 | 03.05.2023 | 15:29:17,000 | - | 03.05.2023 | 15:29:22,000 | 1-Q1 | 03.05.2023 | 15:29:28,000 | - | 03.05.2023 | 15:29:33,000 | 1-Q1 | 03.05.2023 | 15:32:16,000 | - | 03.05.2023 | 15:32:21,000 | 1-Q1 | 03.05.2023 | 15:33:05,000 | - | 03.05.2023 | 15:33:10,000 | 1-Q1 | 03.05.2023 | 15:36:15,000 | - | 03.05.2023 | 15:36:20,000 | 1-Q1 | 03.05.2023 | 15:38:06,000 | - | 03.05.2023 | 15:38:11,000 | 1-Q1 | 03.05.2023 | 15:41:24,000 | - | 03.05.2023 | 15:41:29,000 | 1-Q1 | 03.05.2023 | 15:43:22,000 | - | 03.05.2023 | 15:43:27,000 | 1-Q1 | 03.05.2023 | 15:44:52,000 | - | 03.05.2023 | 15:44:57,000 | 1-Q1 | 03.05.2023 | 15:47:38,000 | - | 03.05.2023 | 15:47:43,000 | LAeq | [dB(A)] | 55,3 | 66,9 | 56,2 | 56,8 | 56,9 | 58,1 | 53,5 | 55,4 | 62,0 | 53,1 | 52,9 | 52,7 | 59,3 | 58,2 | 70,0 | 56,1 | 52,8 | 50,4 | 53,6 | LAmax | [dB(A)] | 62,8 | 70,5 | 60,2 | 59,7 | 60,3 | 62,8 | 57,1 | 60,9 | 64,8 | 55,7 | 57,1 | 60,1 | 64,7 | 62,3 | 79,3 | 59,6 | 61,5 | 54,2 | 57,1 | r | [m] | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | LAeq | [dB(A)] | 56,2 | 66,9 | 63,0 | 58,7 | 62,7 | 64,4 | 58,9 | 60,3 | 63,9 | 57,7 | 56,0 | 58,3 | 66,1 | 62,6 | 66,3 | 59,3 | 62,2 | 58,0 | 63,8 | LAmax | [dB(A)] | 66,7 | 74,3 | 67,9 | 63,9 | 70,3 | 71,2 | 65,2 | 71,0 | 67,2 | 64,8 | 58,4 | 68,9 | 74,5 | 72,8 | 73,7 | 67,1 | 72,7 | 68,5 | 73,3 | r | [m] | 5,7 | 5,7 | 5,7 | 10,1 | 10,1 | 10,1 | 17,5 | 17,2 | 17,2 | 17,2 | 17,2 | 17,2 | 17,2 | 17,2 | 17,2 | 17,2 | 17,2 | 17,2 | 17,2 | \u03c6 | [\u00b0] | 52,5 | 52,5 | 52,5 | 69,9 | 69,9 | 69,9 | 78,6 | 90,0 | 90,0 | 90,0 | 90,0 | 90,0 | 90,0 | 90,0 | 90,0 | 90,0 | 90,0 | 90,0 | 90,0 | DI | [dB(A)] | 0,9 | 0,0 | 6,8 | 1,9 | 5,8 | 6,3 | 5,4 | 4,9 | 1,9 | 4,6 | 3,1 | 5,6 | 6,8 | 4,4 | -3,7 | 3,2 | 9,4 | 7,6 | 10,2 |\n|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|\n\n\n## XL\n\nAnh\u00e4nge\n\n| 1-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | 2-Q1 | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | 03.05.2023 | 15:51:10,000 | - | 03.05.2023 | 15:51:15,000 | 03.05.2023 | 15:07:23,000 | - | 03.05.2023 | 15:07:28,000 | 03.05.2023 | 15:09:15,000 | - | 03.05.2023 | 15:09:20,000 | 03.05.2023 | 15:10:17,000 | - | 03.05.2023 | 15:10:22,000 | 03.05.2023 | 15:13:18,000 | - | 03.05.2023 | 15:13:23,000 | 03.05.2023 | 15:16:10,000 | - | 03.05.2023 | 15:16:15,000 | 03.05.2023 | 15:18:36,000 | - | 03.05.2023 | 15:18:41,000 | 03.05.2023 | 15:19:24,000 | - | 03.05.2023 | 15:19:29,000 | 03.05.2023 | 15:24:22,000 | - | 03.05.2023 | 15:24:27,000 | 03.05.2023 | 15:25:48,000 | - | 03.05.2023 | 15:25:53,000 | 03.05.2023 | 15:27:06,000 | - | 03.05.2023 | 15:27:11,000 | 03.05.2023 | 15:29:38,000 | - | 03.05.2023 | 15:29:43,000 | 03.05.2023 | 15:30:30,000 | - | 03.05.2023 | 15:30:35,000 | 03.05.2023 | 15:32:37,000 | - | 03.05.2023 | 15:32:42,000 | 03.05.2023 | 15:34:44,000 | - | 03.05.2023 | 15:34:49,000 | 03.05.2023 | 15:36:28,000 | - | 03.05.2023 | 15:36:33,000 | 03.05.2023 | 15:38:22,000 | - | 03.05.2023 | 15:38:27,000 | 03.05.2023 | 15:40:46,000 | - | 03.05.2023 | 15:40:51,000 | 03.05.2023 | 15:41:44,000 | - | 03.05.2023 | 15:41:49,000 | 03.05.2023 | 15:45:07,000 | - | 03.05.2023 | 15:45:12,000 | 03.05.2023 | 15:50:50,000 | - | 03.05.2023 | 15:50:56,000 | 03.05.2023 | 15:51:27,000 | - | 03.05.2023 | 15:51:32,000 | 03.05.2023 | 15:07:17,000 | - | 03.05.2023 | 15:07:22,000 | 03.05.2023 | 15:08:48,000 | - | 03.05.2023 | 15:08:53,000 | 03.05.2023 | 15:08:53,000 | - | 03.05.2023 | 15:08:58,000 | 03.05.2023 | 15:09:57,000 | - | 03.05.2023 | 15:10:02,000 | 03.05.2023 | 15:10:02,000 | - | 03.05.2023 | 15:10:07,000 | 53,8 | 51,4 | 49,9 | 53,4 | 56,3 | 57,7 | 54,2 | 54,8 | 55,8 | 58,3 | 57,1 | 54,4 | 57,7 | 58,8 | 60,6 | 53,4 | 63,8 | 71,9 | 62,8 | 51,4 | 56,8 | 53,0 | 56,9 | 58,7 | 55,1 | 55,0 | 53,1 | 62,5 | 55,1 | 53,2 | 59,6 | 60,7 | 60,9 | 57,8 | 59,6 | 61,5 | 61,6 | 64,0 | 62,4 | 60,0 | 65,1 | 64,2 | 57,4 | 66,3 | 75,6 | 64,7 | 53,8 | 64,2 | 55,9 | 66,9 | 61,7 | 63,3 | 61,7 | 56,9 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 37,9 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 68,3 | 51,3 | 58,6 | 63,1 | 61,6 | 66,5 | 62,0 | 63,4 | 62,5 | 59,0 | 60,1 | 58,8 | 64,1 | 63,3 | 62,6 | 57,8 | 67,9 | 70,2 | 67,4 | 66,2 | 71,3 | 65,6 | 55,4 | 64,3 | 65,8 | 66,7 | 60,9 | 77,6 | 54,2 | 63,7 | 66,9 | 67,9 | 74,3 | 68,9 | 72,9 | 73,6 | 63,3 | 65,3 | 67,8 | 66,7 | 69,6 | 66,2 | 65,0 | 72,6 | 76,4 | 72,3 | 75,3 | 80,1 | 74,3 | 64,8 | 73,4 | 75,3 | 75,5 | 67,6 | 17,2 | 5,7 | 5,7 | 5,7 | 5,7 | 10,1 | 17,5 | 17,5 | 17,2 | 17,2 | 17,2 | 17,2 | 17,2 | 17,2 | 17,2 | 17,2 | 17,2 | 17,2 | 17,2 | 17,2 | 17,2 | 17,2 | 5,7 | 5,7 | 5,7 | 5,7 | 5,7 | 90,0 | 52,5 | 52,5 | 52,5 | 52,5 | 69,9 | 78,6 | 78,6 | 90,0 | 90,0 | 90,0 | 90,0 | 90,0 | 90,0 | 90,0 | 90,0 | 90,0 | 90,0 | 90,0 | 90,0 | 90,0 | 90,0 | 52,5 | 52,5 | 52,5 | 52,5 | 52,5 | 14,5 | -0,1 | 8,7 | 9,7 | 5,3 | 8,8 | 7,8 | 8,6 | 6,7 | 0,7 | 3,0 | 4,4 | 6,4 | 4,5 | 2,0 | 4,4 | 4,1 | -1,7 | 4,6 | 14,8 | 14,5 | 12,6 | -1,5 | 5,6 | 10,7 | 11,7 | 7,8 |\n|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|\n\nQl-innen 05.08 2003 13:10:12.000 Q1-innen 05.08 2023 13:10.12.000 Q1-innen 5.03 2023 13:13:06.000 Q1-innen 05.08 2003 18:13:11.000 Ql-innen 05.09 2003 15:13.12.000 |\n03.05.2023 15:10:07,000 -\n03.05.2023 15:10:12,000 -\n03.05.2023 15:13:01,000 -\n03.05.2023 15:13:06,000 -\n03.05.2023 15:13:12,000 -\n03.05.2023 15:15:45,000 -\n03.05.2023 15:15:50,000\n52,9\n54,5\n60,8\n64,9\n57,2\n63,3\n57,1\n61,6\n65,2\n65,2\n68,1\n59,8\n65,3\n38,0\n38,0\n38,0\n38,0\n38,0\n38,0\n61,4\n62,6\n69,9\n66,5\n61,5\n68,3\n70,4\n71,1\n77,1\n72,5\n65,7\n74,2\n5,7\n5,7\n5,7\n5,7\n5,7\n5,7\n52,5\n52,5\n52,5\n52,5\n52,5\n52,5\n8,5\n8,1\n9,1\n1,6\n4,3\n5,0\nXLI\nAnh\u00e4nge\n\n| Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | Q1-innen | 03.05.2023 | 15:15:50,000 | - | 03.05.2023 | 15:15:55,000 | 03.05.2023 | 15:15:55,000 | - | 03.05.2023 | 15:16:00,000 | 03.05.2023 | 15:16:00,000 | - | 03.05.2023 | 15:16:05,000 | 03.05.2023 | 15:16:05,000 | - | 03.05.2023 | 15:16:10,000 | 03.05.2023 | 15:17:02,000 | - | 03.05.2023 | 15:17:07,000 | 03.05.2023 | 15:17:53,000 | - | 03.05.2023 | 15:17:58,000 | 03.05.2023 | 15:17:58,000 | - | 03.05.2023 | 15:18:03,000 | 03.05.2023 | 15:18:31,000 | - | 03.05.2023 | 15:18:36,000 | 03.05.2023 | 15:19:13,000 | - | 03.05.2023 | 15:19:18,000 | 03.05.2023 | 15:19:18,000 | - | 03.05.2023 | 15:19:23,000 | 03.05.2023 | 15:24:11,000 | - | 03.05.2023 | 15:24:16,000 | 03.05.2023 | 15:24:16,000 | - | 03.05.2023 | 15:24:21,000 | 03.05.2023 | 15:29:22,000 | - | 03.05.2023 | 15:29:27,000 | 03.05.2023 | 15:30:24,000 | - | 03.05.2023 | 15:30:29,000 | 03.05.2023 | 15:32:21,000 | - | 03.05.2023 | 15:32:26,000 | 03.05.2023 | 15:32:26,000 | - | 03.05.2023 | 15:32:31,000 | 03.05.2023 | 15:32:31,000 | - | 03.05.2023 | 15:32:36,000 | 03.05.2023 | 15:33:10,000 | - | 03.05.2023 | 15:33:15,000 | 03.05.2023 | 15:34:38,000 | - | 03.05.2023 | 15:34:43,000 | 03.05.2023 | 15:36:20,000 | - | 03.05.2023 | 15:36:25,000 | 03.05.2023 | 15:38:11,000 | - | 03.05.2023 | 15:38:16,000 | 03.05.2023 | 15:38:16,000 | - | 03.05.2023 | 15:38:21,000 | 03.05.2023 | 15:41:29,000 | - | 03.05.2023 | 15:41:34,000 | 03.05.2023 | 15:41:34,000 | - | 03.05.2023 | 15:41:39,000 | 03.05.2023 | 15:41:39,000 | - | 03.05.2023 | 15:41:44,000 | 03.05.2023 | 15:43:27,000 | - | 03.05.2023 | 15:43:32,000 | 03.05.2023 | 15:44:57,000 | - | 03.05.2023 | 15:45:02,000 | 61,9 | 59,7 | 61,0 | 55,9 | 59,8 | 59,0 | 60,1 | 56,6 | 56,3 | 51,9 | 51,8 | 53,4 | 54,1 | 52,8 | 54,3 | 57,5 | 55,3 | 57,9 | 58,1 | 61,1 | 63,9 | 63,5 | 59,2 | 61,0 | 61,7 | 51,1 | 48,8 | 63,3 | 62,8 | 66,6 | 59,2 | 62,3 | 62,6 | 62,9 | 62,7 | 62,0 | 53,9 | 56,9 | 57,2 | 59,8 | 59,5 | 59,4 | 63,0 | 59,8 | 61,5 | 61,5 | 69,4 | 65,9 | 65,2 | 61,4 | 64,6 | 63,3 | 54,9 | 51,3 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 37,9 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 38,0 | 63,5 | 59,4 | 60,5 | 60,0 | 66,3 | 68,0 | 65,5 | 60,6 | 64,9 | 57,5 | 57,3 | 57,8 | 56,7 | 60,5 | 59,2 | 63,0 | 59,5 | 66,2 | 63,5 | 60,9 | 65,7 | 64,8 | 62,1 | 62,2 | 61,7 | 55,6 | 61,8 | 67,6 | 65,6 | 62,9 | 66,8 | 71,9 | 74,1 | 72,2 | 68,2 | 72,5 | 63,3 | 68,3 | 67,6 | 63,7 | 69,8 | 64,8 | 70,8 | 65,7 | 77,9 | 68,4 | 67,3 | 69,7 | 67,1 | 70,7 | 69,7 | 65,3 | 62,1 | 75,7 | 5,7 | 10,1 | 10,1 | 10,1 | 10,1 | 10,1 | 17,5 | 17,5 | 17,5 | 17,5 | 17,2 | 17,2 | 17,2 | 17,2 | 17,2 | 17,2 | 17,2 | 17,2 | 17,2 | 17,2 | 17,2 | 17,2 | 17,2 | 17,2 | 17,2 | 17,2 | 17,2 | 52,5 | 69,9 | 69,9 | 69,9 | 69,9 | 69,9 | 78,6 | 78,6 | 78,6 | 78,6 | 90,0 | 90,0 | 90,0 | 90,0 | 90,0 | 90,0 | 90,0 | 90,0 | 90,0 | 90,0 | 90,0 | 90,0 | 90,0 | 90,0 | 90,0 | 90,0 | 90,0 | 1,6 | -0,3 | -0,5 | 4,1 | 6,5 | 9,0 | 5,4 | 4,0 | 8,6 | 5,6 | 5,5 | 4,4 | 2,6 | 7,7 | 4,9 | 5,5 | 4,2 | 8,3 | 5,4 | -0,2 | 1,8 | 1,3 | 2,9 | 1,2 | 0,0 | 4,5 | 13,0 |\n|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|\n\nQ1-innen 5.03 2023 15:45.07.000 Q1-innen 5.08 2003 15:47.49.000 Q1-innen 5.0 2003 18:91.20.000 |\n03.05.2023 15:45:02,000 -\n03.05.2023 15:47:43,000 -\n03.05.2023 15:51:15,000 -\n03.05.2023 15:51:20,000 -\n03.05.2023 15:51:25,000\n55,6\n53,7\n50,6\n50,4\n65,8\n59,0\n54,8\n53,5\n38,0\n38,0\n38,0\n38,0\n61,5\n60,0\n59,2\n54,9\n75,0\n68,3\n68,3\n69,1\n62,8\n17,2\n17,2\n17,2\n17,2\n90,0\n90,0\n90,0\n90,0\n5,9\n6,3\n8,6\n4,5\nXLII\nAnh\u00e4nge\n\n## Anhang 5: Rechenmodell SoundPlan 9.0 \u2013 Gabelhubwagen 27.04.23\n\n\n[IMAGE: Schalltechnische Untersuchung Anlage A5 Bachelor Thesis: Verladeger\u00e4usche in Speditionen - Eingangsdaten- Projekt-Info Projekttitel: Bachelor Thesis: Verladeger\u00e4usche in Speditionen Projekt Nr. : Projektbearbeiter: Selin Karag\u00f6z Auftraggeber: Rechenlaufparameter Reflexionsordnung 3 Maximaler Reflexionsabstand zum Empf\u00e4nger 200 m Maximaler Reflexionsabstand zur Quelle 50m Suchradius 5000 m Filter: dB(A) Zul\u00e4ssige Toleranz (f\u00fcr einzelne Quelle): 0,100 dB Bodeneffektgebiete aus Stra\u00dfenoberfl\u00e4chen erzeugen: Nein Stra\u00dfen als gel\u00e4ndefolgend behandeln: Nein Richtlinien: Gewerbe: ISO 9613-2: 1996 Luftabsorption: ISO 9613-1 regul\u00e4rer Bodeneffekt (Kapitel 7.3.1), f\u00fcr Quellen ohne Spektrum automatisch alternativer Bodeneffekt Begrenzung des Beugungsverlusts: einfach/mehrfach 20,0 dB /25,0 dB Seitenbeugung: ISO/TR 17534-3:2015 konform: keine Seitenbeugung, wenn das Gel\u00e4nde die Sichtverbindung unterbricht Verwende Glg (Abar=Dz-Max(Agr,O)) statt Glg (12) (Abar=Dz-Agr) f\u00fcr die Einf\u00fcged\u00e4mpfung Umgebung: Luftdruck 1013,3 mbar relative Feuchte 70,0% Temperatur 10,0\u00b0C Meteo. Korr. C0(6-22h)[dB]=0,0; C0(22-6h)[dB]=0,0; Cmet f\u00fcr Lmax Gewerbe Berechnungen ignorieren: Nein Beugungsparameter: C2=20,0 Zerlegungsparameter: Faktor Abstand / Durchmesser 8 Minimale Distanz [m] 1m Max. Differenz Bodend\u00e4mpfung + Beugung 1,0 dB Max. Iterationszahl 4 Minderung Bewuchs: ISO 9613-2 Bebauung: ISO 9613-2 Industriegel\u00e4nde: ISO 9613-2 Bewertung: TA-L\u00e4rm 1998/2017 - Werktag Reflexion der \"eigenen\" Fassade wird unterdr\u00fcckt Geometriedaten Gabelhubwagen 27-04-23.sil 19.06.2023 13:41:12 - enth\u00e4lt: F001 Bodeneffekt.geo 01.06.2023 12:27:46 G001 Bebauung.geo 01.06.2023 11:59:38 MP003 Messpunkte.geo 19.06.2023 13:41:12 0003 Lkws.geo 01.06.2023 09:47:10 Q001 Schallquelle Gabelhubwagen 27.04.geo 19.06.2023 12:49:02 RG001 Rechengebiet.geo 01.06.2023 12:31:18 RDGM9999.dgm 18.04.2023 12:15:40 Ergebnisi Heine + Jud - Ingenieurb\u00fcro f\u00fcr Umweltakustik SoundPLAN 9.0]\n\nXLIII\nAnh\u00e4nge\n\n[IMAGE: jyden le\u00dfsds\u00dfunjeunsg (war N41 Be je\u00dfeds\u00dfunjsuneg (war 141 Yu) Beiyosnzueyezeuny gap (LIDAZ USNIeZsqeLJEg INPIaLIOy sp {NITAIP uSNEZSgELER Inplauoy ap (map uUSUORXEJS4 Yp\u0131np Bunyayusje\u00dfed (var yar\u0131p uondlosgeynT pun\u00dfjne Bunydweg Sue ep uney Bunwunpsgy puns\u00dfyne Bunydweg BON 2193 JegV Pleysuepog punu\u00dfjne Bunydweg auan\u0131\u0131 gp bw Bunyaugsny JsyosisWwosd puns\u00dfyne Bunydweg Sala gp NPY Bunyeysgyw 32449UOB any Beiyosnz gr o4 yay\u00f6nleyuoL an) Beiyosnz gp 44 ep IM (We MI (ver a ven-wwep| gp NY 1a6aduauu\u0131 (ver 7 Yosuoissiuu - ajenbjleyog Bunuenug auan\u0131y) w Ss (ay9e|4 1opo SBUFT) SIIoENd J2p sYQ19 zwi $.40p0 | SWweujend Send Spushs] -b87 Bunysugsny Son - usuopsdg ul ayosne1s\u00dfspenen :s\u0131sey | Jofsyseg Ss obejuy Bunyonsigjun syas\u0131uyosyjeyas]\n\nXLIV\nAnh\u00e4nge\n\n[IMAGE: gg \u2018eg 0'0 erz_ | Erz g\u0131 v\u20190- 00 Sr sor \u20ac 00 29 E77 621 03 B3 (vIap 9\u2019 xew'nT (wWIap grz xew'L1 (Waps'san.T (WIaprseg LIT 93 ZOrL wer | (war ap Ei ap (wap ap ap ap ap ap ap a | (wer | (War ap | (war wu zu N 11 | (umaz |inDarp|asmanp| year | wiew | Jeaw dv APY O4 a IM m m\u0131 mg a) s | s.epo ayend -b87 Bunysugsny SapuN - usuonpadg ul ayadsne4s\u00dfapenaN !s\u0131say | Jofaydeg S obejuy Bunyansusjun sy9s\u0131uyoayjeyas GUIEEIED)]\n\nXLV\nAnh\u00e4nge\n\n## Anhang 6: Rechenmodell SoundPlan 9.0 \u2013 Gabelstapler 03.05.2023\n\n\n[IMAGE: Schalltechnische Untersuchung Anlage A6 Bachelor Thesis: Verladeger\u00e4usche in Speditionen - Eingangsdaten- Projekt-Info Projekttitel: Bachelor Thesis: Verladeger\u00e4usche in Speditionen Projekt Nr. Projektbearbeiter: Selin Karag\u00f6z Auftraggeber: Rechenlaufparameter Reflexionsordnung 3 Maximaler Reflexionsabstand zum Empf\u00e4nger 200 m Maximaler Reflexionsabstand zur Quelle 50m Suchradius 5000 m Filter: dB(A) Zul\u00e4ssige Toleranz (f\u00fcr einzelne Quelle): 0,100 dB Bodeneffektgebiete aus Stra\u00dfenoberfl\u00e4chen erzeugen: Nein Stra\u00dfen als gel\u00e4ndefolgend behandeln: Nein Richtlinien: Gewerbe: ISO 9613-2: 1996 Luftabsorption: ISO 9613-1 regul\u00e4rer Bodeneffekt (Kapitel 7.3.1), f\u00fcr Quellen ohne Spektrum automatisch altemativer Bodeneffekt Begrenzung des Beugungsverlusts: einfach/mehrfach 20,0 dB /25,0 dB Seitenbeugung: ISO/TR 17534-3:2015 konform: keine Seitenbeugung, wenn das Gel\u00e4nde die Sichtverbindung unterbricht Verwende Glg (Abar=Dz-Max(Agr,0)) statt Glg (12) (Abar=Dz-Agr) f\u00fcr die Einf\u00fcged\u00e4mpfung Umgebung: Luftdruck 1013,3 mbar relative Feuchte 70,0% Temperatur 10,0\u00b0C Meteo. Korr. C0(6-22h)[dB]=0,0; C0(22-6h)[dB]=0,0; Cmet f\u00fcr Lmax Gewerbe Berechnungen ignorieren: Beugungsparameter: c2=20,0 Zerlegungsparameter: Faktor Abstand / Durchmesser Minimale Distanz [m] Max. Differenz Bodend\u00e4mpfung + Beugung Max. Iterationszahl 4 Minderung Bewuchs: ISO 9613-2 Bebauung: ISO 9613-2 Industriegel\u00e4nde: ISO 9613-2 Bewertung: TA-L\u00e4rm 1998/2017 - Werktag Reflexion der \"eigenen\" Fassade wird unterdr\u00fcckt Geometriedaten Gabelstapler 03-05-23.sit 19.06.2023 13:55:18 - enth\u00e4lt: F001 Bodeneffekt.geo 01.06.2023 12:27:46 G001 Bebauung.geo 01.06.2023 11 MP004 Messpunkte.geo 19.06.2023 13:16:02 0004 Lkws.geo 19.06.2023 10:26:00 Q001 Schallquelle Gabelstapler 03.05.geo 19.06.2023 12:14:38 RG001 Rechengebiet.geo 01.06.2023 12:31:18 RDGM9999.dgm 18.04.2023 12:15:40 | Ergebnisnr. : 1 Heine + Jud - Ingenieurb\u00fcro f\u00fcr Umweltakustik SoundPLAN 9.0]\n\nXLVI\nAnh\u00e4nge\n\n[IMAGE: yden le\u00dfsds\u00dfunjeunsg (War NAT Be jo\u00dfadsfunjounag {var 141 usjlezsqeueg \u0131myaLLoy Ep {NATANIP (neyuy) Beiyosnzusyiezayng gap (LVaZ ueyezsgeueg Inpauoy.", + "embedding": [ + 0.002736680954730076, + 0.009008438080013647, + 0.0001318682850990784, + -0.01987536485203241, + -0.020465488894509484, + 0.012272019514703785, + -0.017666178251030885, + -0.01862732107281702, + -0.03115559780761183, + -0.01950463247157844, + 0.020556978088866345, + 0.02912658847604875, + -0.019333671587751736, + 0.002899098110176513, + 0.0004151437279559833, + 0.01754518372241903, + 0.016803069249717553, + 0.0036131949802611857, + 0.017977906527544395, + -0.012344361481317227, + -0.004976333406232433, + 0.00787859550051678, + -0.01296930315405204, + 0.010676665373998875, + -0.00309097632073784, + 0.0065346063137127, + 0.003038800467748051, + -0.0129494090212267, + -0.0023200580104184134, + 0.0024253354997870223, + 0.010457987376834132, + -0.007294802818141722, + -0.03425327411810895, + 0.0018273880478193389, + -0.0046625491652710115, + -0.035121761220065724, + -0.011436186976555586, + -0.009358452718604192, + 0.01887190294389273, + 0.006465426512289243, + 0.017523052378070572, + 0.024447957658202582, + 0.0012122343292954943, + -0.008118514130482635, + -0.019706639925777165, + 0.021668387482809366, + 0.01423177962011629, + -0.009265621012225531, + -0.00592957254824679, + 0.016247682666788422, + 0.01075029421132343, + 0.015312248796859352, + -0.0236615929052261, + -0.009779906196670093, + 0.007025786189336876, + -0.008538998717741704, + 0.009972866341953298, + 0.01632804933996681, + -0.023100829853475266, + 0.0011773617826588692, + -0.008539719534150976, + -0.021740048761153596, + -0.024457611813804455, + 0.006370357914910079, + -0.012034610347951981, + -0.03623111176693286, + -0.004968051625463212, + 0.0036240207448162624, + 0.0026813537191739422, + 0.0011236531694156018, + 0.010122027660814376, + 0.023714196071033547, + 0.010283941283530268, + -0.0030334150425581023, + 0.037675785772045486, + -0.016656220834729535, + -0.009048921884699891, + 0.011685708596203522, + 0.020679219174341353, + -0.007116922597509713, + 0.024393056378002848, + -0.013544448732336074, + -0.026745696704385688, + 0.012432964990729533, + 0.0228343224741612, + -0.007950760284530121, + 0.0005671302859954411, + 0.03418416791595709, + -0.014443477408636534, + -0.0022472843793908464, + 0.02123074191098202, + 0.03872600140456452, + 0.01762260037280984, + 0.013599298483026054, + 0.0180737622591527, + -0.010731102118958129, + -0.011355114724280201, + 0.02131773657165124, + -0.0018751207696187417, + -0.01731080104047886, + -0.004472596057878315, + -0.0074189948351251036, + 0.0012039254328635098, + 0.0011871009799020254, + -0.016916212183596322, + -0.007806256259718055, + 0.012524477691476745, + 0.0007716367912623217, + -0.01732900949593941, + -0.012831820882338894, + 0.01508688354428858, + 0.022244348810335855, + 0.0049433501642297106, + 0.011258226162312696, + 0.014300021233770695, + -0.017742314599704778, + 0.031564045495084916, + -0.027706194809975642, + -0.023034171791626132, + -0.030504405821042902, + 0.03650278251759318, + 0.025761539406922936, + 0.01166118999474351, + -0.04428787249824834, + 0.02167334496811915, + 0.01725605457732062, + 0.005856821776682341, + -0.016029380958252924, + -0.028032758828653175, + -0.02271511744110838, + 0.022584302407723283, + 0.009139229627006909, + 0.020145099237582956, + 0.03219366303965456, + 0.001956719516769421, + 0.024927633876646427, + -0.03753122411793984, + 0.009008782457687143, + -0.026797029472292868, + -0.021783825580974057, + 0.017523601714083327, + 0.013827639330862986, + -0.015945105201672465, + -0.0243682185291904, + -0.0053091875247519345, + 0.009900966411899479, + -0.0010213626431039061, + 0.01193214847461169, + 0.001807061668950729, + -0.02014650632942354, + 0.02041110444532771, + -0.011565157758862831, + 0.02095030800412297, + 0.011057915990116069, + 0.006715765494144419, + 0.0044227550105823835, + -0.01350234933905209, + 0.005288808805941706, + -0.024217270210019515, + -0.01877977150866253, + -0.017099881039210847, + 0.015153723704634048, + 0.0033759012934930356, + -0.006020713604231853, + 0.03906408414437056, + 0.007030586559338627, + -0.0034832145990588456, + -0.020490223426832207, + -0.001648794376257593, + -0.02126268681102314, + -0.017491458449873463, + 0.007444731464602105, + -0.0038537856465077343, + 0.018266419566582266, + 0.004995096906081252, + 0.0108597259436681, + 0.025713615641194582, + -0.009073814483718372, + -0.038353632808687275, + -0.0164832408774249, + -0.006403865039583006, + 0.010104953080311263, + 0.014705861577479612, + 0.026426439369239607, + -0.023786409863912134, + -0.008605299189287036, + 0.019314259141378888, + 0.013343244813940532, + 0.0032314519495258375, + -0.004421378630064691, + 0.024305978259473043, + 0.012794428217418108, + 0.004791929800867111, + -0.012438093443034572, + -0.6452803753307718, + -0.0252718478851261, + -0.014797375011518711, + 0.003038499745773322, + 0.005275262995988452, + 0.02703833573907864, + 0.020392161279579744, + 0.016831557284429786, + -0.01969873453780851, + 0.04533416749270093, + -0.0023763504566475494, + 0.020100931268676573, + -0.0018824740126960487, + -0.00249019715493142, + -0.010129612211317675, + -0.02324033939198377, + 0.005131263033000096, + -0.009881341940033074, + 0.01967013885086434, + 0.03171490122012411, + -0.023142937995711124, + 0.010987983614481644, + 0.014159810941011132, + 0.02378922109966724, + 0.004848787389907022, + -0.0024102649672797074, + 0.009980715129994142, + -0.02586380022002545, + 0.012321828813169382, + -0.00693053929264772, + -0.03945252696516401, + 0.003181856744296377, + -0.004936640341488887, + -0.009308879588441458, + 0.03814771248822186, + -0.016555597418171954, + -0.016583854996840952, + 0.011504237009902255, + 0.02707567321072529, + 0.020989744066626317, + -0.011649320779636535, + -0.031543567725213516, + 0.005939666882597016, + 0.0004765496672762731, + 0.000681104279890256, + -0.010190711797414946, + 0.023654723424555397, + 0.004678571623690057, + 0.007660036340849743, + -0.047052318725706525, + 0.011643786127705698, + 0.0071806854766496035, + -0.007038942559947158, + -0.011695863894961092, + -0.00010058531197041368, + 0.005430490351599759, + 0.009311838337644264, + -0.029505403631431826, + 0.009302537962930155, + -0.02285043902114234, + -0.009128851613153303, + -0.004228818639421169, + 0.000580175016416284, + -0.013256237307113918, + -0.020674565566326297, + 0.0034034048205140274, + -0.018636486915157943, + -0.01505602698521703, + 0.013253277916076302, + 0.0007393605492926935, + -0.009191001772424264, + 0.02640039046421713, + -0.003010775175016002, + -0.0007162769041686726, + 0.03035237450792842, + 0.018892519511166873, + 0.01448246087038795, + -0.022395619030850262, + 0.006754046736940041, + 0.019709538919977967, + -0.0038636954776561255, + -0.013340294963411796, + -0.021238089981641985, + 0.0013888666487349894, + 0.027647158735544443, + -0.015281505670781506, + -0.010487380487916472, + 0.007562672132235032, + -0.006129112990265451, + 0.010336715707212441, + 0.015930591156727205, + 0.023114481545999252, + 0.003194218470987367, + -0.002765000543518923, + -0.004717615005745677, + 0.025664692554985668, + -0.014105431969627444, + 0.018850230101674994, + 0.0038797614501732483, + -0.050413101305321395, + -0.0005476623037790873, + 0.00011425160533380961, + 0.015551369118930233, + -0.01825602191997134, + 0.024013535298635095, + 0.012742895034054569, + -0.0025778128782457904, + 0.010924666330093868, + 0.01694414756577247, + -0.02986237063580823, + -0.023929707188742072, + -0.01616350765425914, + -0.003751213731243369, + -0.011433481135703208, + -0.013482653830083709, + -0.03793853618073653, + 0.018348020346767347, + -0.0018755581243841556, + 0.01127280284771811, + -0.0025957536116424543, + 0.01767083274245159, + 0.0058314165557920425, + 0.018830048845986255, + -0.02420850163358707, + -0.011594643006748765, + 0.02985418319037455, + 0.015624292340175074, + 0.009830193111001789, + -0.005304013921586681, + -0.009016982305445105, + 0.0255191712543137, + 0.006338624102093313, + 0.025144409258193716, + -0.0006358344785097116, + 0.008958273470103277, + -0.0018205580036676665, + 0.023228529710512497, + -0.0013001285871002972, + 0.003207457450819416, + -0.017674352342449837, + -0.007051554675338058, + -0.012980698142628132, + 0.009577934865856555, + -0.020446984042201195, + -0.009777984241396932, + -0.03176256732890559, + -0.03164406180525058, + 0.02323127333622204, + -0.0008036726510566352, + 0.01879493250163569, + -0.010905560210638857, + -0.008240136418728599, + -0.011212731430130764, + 0.009324912433099544, + -0.00012043202036913681, + -0.009385634488612586, + -0.023759164406263595, + -0.015167038881095017, + -0.0134006529165338, + -0.022985607369834925, + 0.013253512762234989, + 0.027993682890037702, + -0.031731559010798466, + -0.02892765089489526, + -0.002208815943545751, + 0.0052650046088398555, + 0.016384091089243283, + 0.007478123845819331, + -0.013016768512065437, + -0.02850597595623696, + 0.005129721947622762, + 0.0013035158549412687, + -0.008155613945833674, + -0.0008256529551154984, + -0.019568917269645, + -0.001241178517088683, + -0.025239007503057957, + 0.010277023503846867, + -0.007009198238419328, + -0.011136263520483821, + 0.01092348573870733, + 0.003273981025130175, + -0.015272000965822473, + -0.01297735344029039, + 0.018689801676561285, + 0.019403072096424254, + 0.00014387234541944302, + 0.0028996503829550315, + -0.020233652435649046, + 0.029052549265723204, + -0.013885526673599232, + 0.008528261812582587, + -0.011432569977841863, + 0.000674933419019698, + -0.011806709871639287, + 0.02632027731347331, + -0.0073614874082274144, + 0.0023428199960052, + -0.012539071787507905, + 0.013056635434765346, + 0.029837097411077387, + 0.003092228596737047, + 0.012023927831183721, + -0.02909256267824777, + 0.011198483952554943, + -0.026871768132168055, + 0.01971655668410383, + -0.023642482761597385, + 0.05217876932336874, + 0.025251372354158634, + 0.020220572116449276, + -0.02711719049902189, + -0.03145899911171597, + 0.012531840576494422, + 0.004763210503734894, + 0.03771032368507143, + -0.00968067946347065, + 0.0002500704561796135, + 0.014245391969919488, + 0.011672384506382425, + 0.015420114717510864, + 8.088684847164517e-06, + 0.0307257916330546, + 0.013485200849650726, + -0.011673459347087349, + 0.0029311018036121328, + 0.01512844436831409, + 0.021457799728193918, + 0.0003483842104135707, + -0.012102095447242462, + -0.009874791304257594, + -0.000824129284207269, + 0.013322544780246694, + 0.0073983399050823045, + 0.01766198025313669, + 0.014246447829706922, + 0.040702807658738474, + 0.007364332896553915, + 0.030916689670730253, + 0.016548818653791358, + -0.007341554021760121, + -0.000749292896264511, + 0.031163807505473855, + -0.01352464421616616, + 0.002718236682108075, + -0.018054581427751373, + 0.02210503537346062, + 0.0520445192931788, + 0.011386244102047744, + -0.001955947706284053, + -0.011971861660303972, + -0.0075693096323283995, + -0.019534883071372848, + 0.0022821507202951297, + 0.0257341277216623, + -0.012366202966314691, + 0.011130264065582776, + 0.002809056363363409, + 0.010766282640791868, + 0.012844431292286332, + 0.01659972155015595, + 0.00415665730274653, + -0.007762571266814927, + -0.012913869755842362, + 0.013596186686547284, + -0.01612986520670995, + -0.027550101168015102, + -0.024484458482120844, + 5.611380131863844e-05, + -0.01050545798927408, + 0.005408015585576811, + -0.02521206132389589, + -0.023173903083891827, + 0.011898747642128943, + 0.014307678331546416, + -0.010607368757600523, + 0.009144180482040267, + 0.009810262597696915, + 0.021306294433060743, + 0.008671332535394602, + -0.002499747025452247, + -0.03179553943253425, + 0.00961697969234656, + 0.019826091832373542, + -0.0035241523458813913, + -0.006360665111588452, + -0.0003543659518042344, + 0.026553491854164554, + -0.024071483196266938, + -0.0007110339653129833, + -0.016587216984534848, + 0.0219456636124209, + -0.013631597192482987, + 0.0040160700976760244, + 0.0038698985288757506, + -0.003211648210976789, + 0.00888957190809819, + -0.010487882901300271, + -0.010567023328845581, + -0.002380042735984229, + -0.026113968395010623, + -0.002367359301693068, + -0.00382144957593722, + -0.021345901671517363, + 0.04166808878018641, + -0.007401470434120637, + -0.00395611550187985, + -0.014967580104945552, + 0.01855914824148327, + -0.00010565447740392386, + 0.004788869054761543, + -0.006570665532136409, + -0.018758583231427258, + 0.019239620909356665, + -0.01691176131061567, + -0.002140656723513841, + -0.001786695192666511, + -0.016831771789975507, + 0.016226318640495233, + 0.00015239645986051022, + -0.018901156840753337, + -0.022517706661136703, + -0.012768329678224152, + 0.007148335623511538, + 0.0018499326361761175, + 0.04185989612750059, + 0.016373163542316604, + 0.008483650767908352, + 0.004315367886580979, + 0.0014366291325705208, + -0.0005750812754053478, + -0.031395906845063465, + 0.007254583445938035, + -0.004611539817177032, + 0.0018464713346455382, + 0.008406737792089081, + 0.02118871557965739, + -0.013905899982489851, + 0.011392836828095306, + -0.013404855484468738, + 0.010540711663625996, + -0.00019019242688478473, + 0.02316680799988937, + 0.01926449171330164, + -0.013410102215546043, + 0.001759717693026837, + -0.016664331290358877, + 0.05162045824158261, + 0.0071393150054762265, + -0.006107801583713806, + 0.010640605215814223, + 0.016032205574845422, + 0.04469273090086972, + -0.021596026221912125, + -0.0012573952198528158, + 0.03378022759733434, + 0.021292274250303726, + 0.024833761724655717, + -0.013213198409409153, + -0.0128122726741296, + 0.01515715871059137, + -0.015619231561292978, + 0.0313935739658387, + 6.881229481623229e-05, + -0.0050188716124432075, + 0.02182568289388785, + 0.0076335701258346544, + -0.0050316470793893555, + 0.029283099239994014, + -0.0021478428028793768, + -0.00491710330090071, + 0.010191848733700515, + 0.013451570394666112, + -0.018802548454686173, + 0.006225612296381893, + -0.00983981423543622, + -0.013527566709345722, + -0.018532553694413215, + -0.007354080449833833, + 0.007092801689374917, + -0.017766839089399612, + -0.02905274147323732, + -0.018470754035004016, + -0.013420271428170247, + -0.01430231648124077, + -0.04177406324958125, + 0.025529523853555034, + -0.0034238022095048793, + -0.014199091888284335, + -0.007952294902184768, + -0.057215322784834766, + -0.014186600526605605, + -0.02576951093704588, + -0.008151647976034319, + -0.0038198090111236714, + -0.02192851562571761, + -0.012831986995532937, + 0.01764979589220331, + 0.007337404629158052, + 0.011884134456587326, + 0.02955802068623069, + -0.009213107605772227, + -0.00235683647460356, + 0.0003494584830173561, + -0.015175156702225455, + -0.02313361464775622, + 0.001969135888323025, + -0.004489410283516403, + -0.01586120118602116, + 0.015431003969161515, + 0.007244930149912118, + 0.0005888745219821621, + 0.0037014638442134473, + 0.007648298385432149, + 0.008686788764002985, + 0.009749863208587322, + 0.01848385569159385, + 0.005215692399739527, + 0.01555096555349807, + -0.0016383822068236824, + 0.0042165597283532795, + 0.0111846641877489, + 0.010995735716808551, + -0.003580352685913662, + 0.03326884896151119, + -0.014137450495271216, + -0.0010820643978664707, + 0.006592059733753023, + 0.009428574583281168, + 0.008360369398006516, + 0.006015415226203018, + -0.00803681042892142, + -0.012381589176883862, + -0.002067176444448432, + -0.002913848379684955, + -0.009044289894261317, + 0.0012156113511031855, + 0.00011749928435949047, + -0.017295732655440283, + 0.008318364644548753, + 0.011487577374301425, + -0.005356095464214897, + 0.012916577970422652, + 0.0018936521217859067, + -0.011700347768371791, + -0.021311089648651697, + 0.05251877080398484, + -0.012073720192395143, + 0.008338316698311294, + 0.030751030053072583, + -0.023826615218228795, + -0.0030345059111689322, + -0.01070242313718168, + 0.00933486760412339, + 0.015054515132204373, + -0.0019665614466531775, + -0.0004313465337386054, + -0.009748350922955971, + -0.016022397804292158, + -0.020671034826053973, + -0.005959371224555001, + 0.03035950061067079, + -0.0013341626021883342, + 0.005123100881085793, + -0.008807211121844278, + 0.008394657477726363, + -0.00517696013893653, + 0.014656894648395568, + -0.013740349995957713, + -0.020143246282773995, + -0.025378491259231035, + -0.0021875957013071786, + -0.014408570843675732, + 0.028497655002601673, + -0.007532050305114553, + 0.002475771611548949, + -0.021294968897212555, + -0.020483828038192264, + -0.010397030571893028, + -0.02359554280287431, + -0.023742443443405616, + -0.006269780560002486, + 0.008633127405360739, + 0.03645886882265266, + 0.030863648717345288, + 0.003629089651197738, + 0.009777785742353322, + 0.005451880145147315, + 0.010079582477869848, + -0.004291016020658973, + -0.00965210127978959, + -0.005396003367517427, + -0.03324398790564239, + 0.005571208654450603, + -0.003206541820628148, + 0.00986666873523147, + 0.0023542723547787447, + 0.006627039904874789, + -0.010513312607285066, + 0.03606720811244353, + -0.017026243685122282, + -0.010714282207693764, + -0.006120290655143472, + -0.033552406299618975, + 0.0008198928427077287, + -0.02059075266851155, + -0.009550842187183058, + 0.004250358419594317, + -0.03414793461780007, + -0.009282834112145122, + 0.01953439806846645, + 0.006309439952551054, + -0.0001725117947811032, + 0.012400755053421574, + 0.003660401976881831, + -0.02399935981969243, + 0.033826640137501945, + -0.001392032168068598, + 0.005778461023532962, + -0.007145892788569092, + -0.009090283944869569, + -0.015865179975662374, + -0.02635294077736522, + 0.01477308256860057, + -0.021193601904139416, + 0.005970431118479389, + -0.015490427507810742, + -0.024175947702294406, + -0.0024981813803088425, + -0.01617397462147049, + -0.01055826187295175, + -0.02149422079836626, + 0.009964263578107894, + -0.00620829291198989, + -0.013777781770743226, + -0.023534268041483876, + -0.013775146518630049, + -0.0179375560099191, + 0.02405897621851063, + -0.0006747498329264395, + 0.007094410318950338, + 0.020764745490374617, + -0.016085615692314217, + -0.03146014558918272, + 0.0015829200074923896, + -0.025805314680626544, + 0.04661422677979335, + 0.010878669881881116, + 0.06071512432347036, + 0.025284775707673138, + -0.02690183756636692, + -0.015795091120842188, + -0.04401438875434262, + 0.009125406008232539, + -0.009589961732827423, + 0.011069440414335776, + 0.026524628461560153, + -0.023059632834145045, + 0.004371803285780954, + 0.005261286986096018, + -0.0030066354124791855, + -0.021928212955832475, + -0.010605527455886459, + 0.04739931727408985, + 0.010755620150076937, + 0.018605359062077904, + -0.02154547665003736, + -0.006978202560253888, + -0.03099715259942503, + 0.0031149469887748345, + -0.015214099824695031, + 0.00526675785358666, + -0.004025449582250734, + -0.008281394412902422, + -0.016159370192139255, + 0.036554178254387185, + -0.012560001350201622, + 0.026633616834926755, + 0.021599342868116895, + -0.0198970914162806, + 0.013940613785475902, + -0.009956784837663903, + 0.0014084167369937807, + 0.012097434547901747, + -0.028382984054211528, + 0.026964695657544568, + -0.0076403157610528145, + -0.004315703119345673, + 0.011268506199724334, + -0.015235765001454965, + -0.023894240178684627, + -0.024863383232552536, + 0.010846808151535502, + 0.02030759453233916, + -0.02141304578906666, + 0.0001789165089980439, + 0.0007481745051242421, + -0.0009858725900449674, + 0.0092476945281808, + 0.020863712656488446, + -0.00945265807857424, + -0.005790110810657178, + -0.0017793847946069885, + -0.0018160561559092223, + 0.0036971571730787718, + 0.013032168753394573, + 0.007081666683519905, + -0.026117484251997676, + -0.005255277569356525, + -0.016229011833326028, + -0.004406570413597834, + -0.008839439263906429, + 0.024200409396354386, + -0.0429475613345906, + -0.00423912104136823, + 4.8084578365180065e-05, + 0.01102344118276434, + 0.03657402017839761, + 0.00983253989511148, + -0.02329550565021625, + 0.006266774323071579, + 0.021843805486350648, + -0.02172619159590016, + 0.026280739320592578, + 0.02012962381361379, + -0.009696845692719705, + -0.039054009102717634, + -0.010331385089081997, + -0.001565850585450211, + 0.0026570007881926167, + 0.03223044619762348, + -0.008146972477260442, + 0.0012151414873363964, + -0.009565519938522365, + 0.013506745286077046, + 0.02304239913721588, + -0.018973127205756776, + -0.0066060433226514895, + 0.005726740515957999, + 0.02025159656090622, + 0.007894609996923018, + -0.006830162422108517, + -0.000597366805346725, + 0.02846597298283693, + 0.017239912648481258, + 0.01027856564526925, + 0.008597420809783216, + -0.01935506469950055, + 0.027292520838812676, + 0.013354911275097085, + -0.018469955957855645, + 0.008429593784844338, + -0.0295586644358658, + -0.0018617973912752072, + 0.03407240815664677, + 0.00868261861869463, + -0.016004239826466926, + -0.0013402507347751742, + -0.013971447486883438, + -0.024453828104351618, + -0.01631609146880412, + 0.03143205112710418, + -0.00881126708602639, + 0.005347629766086126, + 0.025554798721868176, + 0.012835549389226049, + -0.008669761128694366, + 0.01400729931737596, + 0.01270762686636476, + -0.01898142928738838, + 0.018410210003595714, + -0.019999722670549915, + -0.014945202477319406, + -0.006821487298915831, + 0.0024930553619015874, + 0.021292275439912047, + 0.024856805446389296, + -0.033170354745797, + -0.010292010935181626, + -0.0037824878952270003, + -0.010836130739382652, + -0.005543797322045742, + -0.008000473500358705, + 0.010931499618902683, + 0.01550659813567311, + 0.02292925941777865, + -0.017080928730933725, + 0.05320949988459418, + 0.00026128665758483994, + 0.022453709210602225, + -0.024958645925970323, + -0.01089640625154334, + 0.012670775942242824, + 0.002401747715232102, + 0.015206617355829953, + 0.008808803859882664, + -0.03309325694966088, + 0.0009053555313996584, + 0.01539996808912248, + 0.018578886981137046, + 0.014620581308613894, + 0.018363224587102527, + -0.011914855326759372, + -0.04046734092687327, + 0.00047879926817289277, + -0.0021029779325485846, + 0.01650915986669537, + 0.0067168049910768845, + 0.010303535170100617, + -0.025661390441812877, + 0.009933314851371167, + -0.00043970140275015275, + 0.011211934806096198, + -0.021314324552845838, + -0.007667711779812723, + 0.021482120012499873, + -0.012489028944798683, + -0.01495978470560279, + 0.01394991151768653, + -0.012313419996135028, + -0.0069329600472149665, + -0.03578896510294424, + 0.03309029816562268, + 0.017744408865789388, + -0.0196090122537985, + 0.017826918352482603, + 0.02001945233834492, + -0.006056951728352297, + -0.02013543080924794, + -0.011241861718897824, + -0.04109918869305981, + -0.02682047491109608, + 0.006022287470855618, + -0.008879704423003553, + 0.021237952105903832, + -0.02244302010308938, + 0.02295992788000813, + -0.01395065442877412, + -0.006953915708298726, + -0.019960263003918236, + -0.03392686564524894, + -0.02876913771980248, + 0.03167714915650275, + 0.021109641871879876, + -0.03236117037533033, + 0.008687002004699374, + 0.009959562303197984, + -0.018409033861631598, + 0.014394150817385253, + -0.01575384081389478, + -0.019661388080559936, + -0.01475977433276457, + -0.015513849155092673, + 0.019169639158061715, + -0.014787443106695611, + -0.004296297616871709, + 0.009070627705920594, + -0.008248520852091318, + -0.0012942785643280412, + -0.00991074819262222, + 0.17412304209127397, + -0.019397106263440468, + -0.009542983858826954, + 0.040692127757591, + -0.01919135251688409, + -0.008236165008462953, + 0.010401797412168236, + 0.0081935441247068, + 0.006218845311648272, + 0.028476821434414844, + -0.0034590581654770046, + 0.01694055414102323, + 0.0002478004531905069, + -0.002943987180419128, + 0.029692346715835715, + -0.006794097945503186, + -0.04466515664876761, + -0.026810344002438095, + -0.034647422942438284, + 0.003919162404348672, + 0.009853037313372812, + -0.002971301325752464, + -0.014413590044336393, + -0.02496757693432971, + 0.030050198606732453, + 0.004147652363411516, + -0.0028408636513133014, + 0.005723705443978583, + 0.01788849002186411, + -0.002812447016896111, + -0.018711354126365508, + -0.00028822635256709584, + 0.004594836621249785, + 0.001320346371540106, + -0.021783510406650518, + 0.003852227653648408, + 0.014287712936018953, + -0.00951076859713446, + 0.027202514909763817, + 0.021133537954557132, + 0.009245377175562569, + -0.03360157853563392, + 0.01520348169757019, + -0.029189319150042393, + -0.0014121208581180402, + 0.008206299944270808, + 0.008904030726796849, + -0.004742651023325079, + -0.02697734750767247, + -0.000813513665576104, + -0.024116188697483228, + -0.00446048549897084, + 0.0005034938773867682, + 0.02667213782756035, + 0.00638796896716951, + -0.016260462946306505, + 0.02375107012854913, + -0.010429163958025643, + -0.0027718141822903357, + 0.011156414568078164, + -0.008227889033739525, + 0.021165724132141173, + -0.012958050422020534, + -0.008278186785904265, + -0.01938035083994831, + 0.01795491200484024, + -0.027131538847371295, + 0.006219249599924424, + 0.013257367919316247, + -0.0219435352962872, + -0.003921371655400841, + -0.023188011471709964, + -0.021056119734238536, + 0.008655404398175295, + -0.03600981846471068, + -0.026431443523047868, + 0.021271187883572927, + 0.012098775580738288, + 0.02087432049751247, + 0.02460369957918892, + -0.012373313041024804, + -0.006685459150748174, + -0.005093092483248439, + -0.030870272894451965, + -0.01698210677676121, + -0.025599137306394674, + 0.019520808487138903, + 0.014671899264892199, + -0.00584576055519189, + -0.0231335253880246, + -0.005197428096169348, + -0.008258082476774144, + 0.0012470765874930672, + -0.0036693376077564783, + -0.0016128294891916278, + -0.004529877994537129, + 0.014376965203155663, + 0.015887701442664656, + -0.006867106702928041, + -0.004464887253550471, + -0.01654405930990666, + 0.02820086266147327, + 0.027884574172158037, + -0.020802753143979925, + -0.019414461393316113, + -0.010199697405191289, + 0.0038075764513968895, + 0.023692408886656358, + 0.019514968234550872, + -0.02087152215460861, + -0.015304013385245546, + -0.02225184753050985, + -0.0010820707110567767, + -0.010213738388302978, + 0.0016900394067485066, + 0.01699234539687186, + 0.003437673007610242, + 0.00501518569557722, + -0.0009780544272024435, + -0.0009920005014679384, + 0.000764570421524355, + -0.021410031974635157, + 0.015024272267886125, + 0.010431114973486793, + 0.0068760486032793874, + -0.03832716079852579, + -0.027962529394646555, + -0.001363795025773346, + -0.006576339288044928, + -0.02993733649712831, + 0.016026231585174824, + -0.009896665987199077, + 0.027826119516119636, + 0.008438469077895047, + 0.006094827953365237, + 0.01001524401393957, + 0.008528883743735165, + -0.0231692474158153, + 0.004876830201154767, + 0.009712727687354447, + 0.029561752294952726, + -0.004753362745686996, + 0.003656282713728566, + -0.010167303425664293, + 0.03111488228246651, + -0.016794375493558743, + 0.007548022110014744, + -0.01857002572444025, + -0.050178810116421106, + -0.03064604207911751, + -0.013414729847762694, + -0.026448960816186563, + 0.015156538600901041, + -0.007499146905704579, + 0.037886074255081094, + 0.0038258827378326076, + -0.02511993308984597, + -0.03643692816665867, + -0.0029644227566196766, + 0.001834657171114011, + -0.036775609065489406, + -0.020313267274864134, + -0.00814813233793808, + -0.0292069771214199, + -0.0023199621547875774, + 0.01642400705187197, + -0.18263816990064982, + 0.018010129438040492, + 0.01644216896152314, + -0.007189270041593504, + 0.013918162184379614, + 0.015536277583651052, + 0.038971176014700286, + 0.009631630258851257, + -0.013048331574432937, + -0.007377275465232511, + 0.012173279617624506, + 0.007231124934185577, + -0.027309043582979056, + -0.0071812181933956845, + -0.008724921120758615, + -0.007187277915304852, + -0.040543119981931316, + 0.018685974783375647, + 0.036782429467692945, + 0.009891887986970499, + 0.018509506246023575, + -0.027863458540727665, + 0.014486873731903936, + 0.016229992792530533, + -0.0027960925455816216, + 0.025674537860326283, + 0.0005084193240253706, + 0.020937742519073366, + 0.0020332100677055934, + 0.00028174417125984095, + -0.011490921767954321, + -0.0131679671723066, + 0.014193248607639269, + -0.011093471191179911, + -0.008653019427657243, + -0.011832202145445711, + -0.013075677017325597, + -0.0030333267087658848, + -0.015514394832666907, + 0.01777740928955501, + 0.01847594531978841, + 0.01594452925193562, + -0.007309809425218778, + 0.025365877815925204, + -0.020328366412599774, + 0.03748265927765992, + 0.006862506172118898, + -0.01426767611007787, + -0.00763927671775365, + -0.007222978790235911, + 0.0011920583174467602, + -0.02432280561421569, + 0.015128733483478535, + 0.0015605805264908195, + 0.00775314366066546, + 0.013121540176530496, + -0.0100234718083216, + 0.0212264402523219, + -0.0004082785361546679, + -0.006666643567988908, + -0.00608930515604554, + -0.020933638784766243, + 0.016715541749418236, + -0.012627777501075034, + -0.004429636815965004, + -0.012095374852770499, + -0.014143562852431634, + 0.017294743648533496, + -0.01846051472467988, + 0.004597406656616795, + -0.012594488262788195, + -0.029405159581211773, + 0.020341457301431415, + -0.003516131665800697, + 0.01031340852420013, + -0.00013154140315473807, + -0.019717255672324394, + 0.00208162317824184, + 0.017553498758502584, + 0.002171941503323401, + -0.021985602155532014, + 0.0769835959250437, + -0.00286349424704792, + 0.00464549676321766, + 0.0105040168845808, + -0.017773231750507802, + -0.003346464756663316, + 0.010089648844076638, + 0.016795101897245684, + -0.012748756264627112, + 0.002270079002428077, + -0.015064925744069193, + -0.02234210950124663, + -0.03154423193006896, + 0.022127184774576345, + -0.005768609199149759, + -0.008860314909657776, + 0.009963544365131445, + -0.005751881647984099, + -0.008521479613912945, + 0.0034425545828196597, + -0.025753868675460367, + -0.023686160545079705, + 0.012907323477625137, + 0.011772684541089066, + -0.0030412293255659365, + -0.01439975212704721, + 0.009366453584643455, + 0.037768266262425784, + -8.366797846770298e-05, + -0.014292189146485938, + -0.003232362992696372, + 0.00590878211253504, + 0.01179028085342259, + -0.009371472410706244, + 0.008245316742973179, + -0.026912305651948278, + -0.023038562897917947, + 0.013446815115603528, + 0.019401604609871972, + 0.030764672787772923, + -0.02586787161117761, + -0.010439964583863351, + 0.008586804311646901, + -0.006711995105899435, + -0.0247223077405806, + -0.08856128854125095, + -0.006646140087965977, + 0.0216131443209535, + 0.0355493585494011, + -9.969256703643505e-05, + 0.007356561888787279, + -0.006378112488086651, + 0.012356593697165415, + 0.007471278230512772, + 0.042065345852785783, + -0.004894026632557482, + -0.030466975219239113, + -0.02418017148299408, + 0.008313237425723905, + 0.007832884614779498, + 0.006265576465165123, + -0.009128537801057001, + -0.030471514699124028, + -0.024176074515332036, + 0.036924494380737714, + -0.00909816207892577, + 0.0020132820563916226, + 0.0006306000126510592, + -0.0066936671594621504, + -0.020371196375602644, + -0.026306751118424246, + -0.038619539430914694, + 0.01877899688050919, + 0.018566450150398147, + 0.005472271050571028, + 0.00852479874847671, + -0.023001717675946685, + -0.0010448078262282896, + -0.016513202825298612, + -0.01741244584152435, + -0.024544849643009046, + -0.019387902958929348, + -0.024952946942858115, + 0.028546837187943826, + -0.04825926912972154, + -0.001983645392561922, + 0.010367854268293166, + -0.014529935368850236, + -0.015015417491758217, + 0.01799943209226544, + -0.012454958716749414, + -0.004495950635930257, + 0.021667821038257856, + -0.01838319236000441, + -0.001732910736808607, + -0.026104056292011273, + -0.026660150423205405, + -0.017171417080254797, + -0.01438426150189529, + 0.02463725441539314, + 0.005571440805213629, + 0.005011329558382977, + 0.01620817635123623, + -0.010555423640013717, + -0.015608257981559731, + -0.013836278594575504, + 0.009226753402858076, + -0.023825015944837744, + 0.021066957998600696, + 0.002040809095328562, + 0.002448755104619237, + -0.02280456663785166, + 0.007133020617731693, + 0.011678698612757334, + 0.0039415071831091905, + -0.021019632038134586, + 0.016101643191460825, + -0.003187588357422857, + 0.008154978815161446, + -0.02641891334447256, + 0.006546151046833828, + -0.023610317857568064, + -0.03517946201511435, + 0.010546023533433037, + -0.0151285289147228, + -0.01541079938898319, + -0.023277785397019128, + 0.0054998542378014515, + -0.0018664752645135422, + 0.027391882785514448, + 0.026095045461208048, + -0.01283287347680625, + -0.012979601635601929, + 0.014890520974488296, + -0.020960329205908578, + -0.0028918655867556523, + 0.023615245797642133, + 0.0293101637416122, + -0.0236519036263237, + -0.01915797396517201, + 0.011524636887755029, + 0.004275742314284171, + -0.0006393337342256374, + 0.009595769234555176, + -0.007175229524766616, + -0.039782450415610064, + -0.011886747452980994, + -0.06867129008679487, + 0.030000736143932283, + 0.007113555569447041, + -0.003273309276527749, + -0.023858836684651444, + 0.003927706354224611, + 0.021285625661263304, + 0.027469528122852967, + 0.006108961285873828, + 0.02689343631100305, + -0.0006271425144759781, + 0.02133066855208683, + -0.03284623918111797, + -0.015208963708415632, + -0.015879209305699, + 0.00702958850397088, + 0.0006127882065758043, + 0.01810723500425152, + 0.011698513221728529, + -0.000779361545027712, + -0.01303010827493855, + 0.01803787949407615, + 0.006118079477358298, + 0.018527795810202224, + -0.009856079550384441, + 0.014756736278207514, + 0.0018891478630171281, + 0.0017734742774588434, + -0.004736293279325329, + -0.008142013711816285, + 0.021661695834162102, + 0.00910276656462907, + -0.00840123545346976, + 0.015522145243141076, + -0.010986947570719307, + -0.014087882506026876, + 0.011275128049185896, + 0.02391932401384359, + 0.0012137346383612137, + 0.03223773147164813, + -0.018799517080705364, + -0.025516629567276336, + 0.01157543215278651, + 0.0071228726180119425, + 0.0009482701593229838, + -0.0026660106407673414, + 0.01903455188055254, + 0.019408809519822177, + 0.013713925653922683, + -0.01234583151531167, + 0.009422831843021132, + 0.01138239763307577, + 0.011121392357524905, + -0.013322593127067552, + 0.025737553348261027, + -0.006475829205995743, + 0.0012981889648897317, + 0.017720171963005515, + 0.03403539952816572, + -0.0225614877649657, + 0.04673760246152078, + 0.015062208612444753, + 0.02979338911453563, + -0.006411351883529042, + 0.009895052886872691, + -0.008758071696059116, + -0.013588019365699783, + -0.006700064172055548, + 0.0033144285960356058, + -0.021546902996671193, + -0.013273286041238399, + 0.0025004053048480043, + 0.0012680186578646144, + 0.03821648883943502, + 0.008433736672576705, + 0.004159898983559297, + 0.004259843437054512, + 0.009810730242766191, + -0.00436159627699957, + 0.010173774627729606, + 0.04154522614909275, + -0.00034133732119386663, + -0.011379194876807285, + -0.002167909016062721, + 0.030481167997435693, + 0.0038637767550792792, + -0.006333738517640753, + 0.008714759069442983, + 0.0016896639853862495, + -0.0005027502044105346, + 0.0016143411136148355, + 0.0038656600428809418, + 0.001854181031292066, + -0.008818070943001561, + 0.018528483319293115, + 0.009909146184154574, + 0.009217667163542137, + -0.013611475546617945, + 0.010702278179607167, + 0.023163302605379597, + -0.007243545192581937, + 0.00819384178508129, + -0.019345561275602174, + -0.015153605543731425, + -0.010132128457563722, + 0.005440998325038645, + -0.0022509178865281047, + -0.026317449240310844, + 0.031357636795894005, + 0.015635954983121463, + 0.002131867996600995, + -0.0037164870682069064, + -0.008762103668126114, + 0.008159430430151781, + -0.020012581765510642, + 0.016214058063368782, + -0.017562908478566598, + -0.02873009816978579, + -0.03817091336228305, + 0.0357888708245771, + -0.00012386914953028217, + 0.005423910162435681, + 0.011547945138342683, + -0.008290928410942592, + 0.03659869336744893, + -0.00291610239609791, + 0.016679973470717434, + -0.013617604739572912, + 0.005867385560110229, + -0.01445900455059007, + 0.0031995551225548736, + -0.010711076046368085, + -0.02065200197050794, + -0.013518373110707778, + -0.03219763644495786, + 0.012052928066838178, + 0.026432477342742393, + 0.0020759597023706855, + 0.0017933538988387863, + 0.12396333808570564, + 0.025866045305626296, + -0.013691605964804522, + 0.025022258699259618, + -0.01997315857504899, + 0.01548901720712774, + 0.011782853985214399, + -0.0028267068333187872, + -0.00973741780953639, + -0.06508875334089427, + -0.0026037990725508563, + -0.016437288769118947, + 0.00010226585629995858, + -0.028211575235251144, + -0.0008338398085143955, + -0.007239101560997122, + 0.016772578833768512, + 0.024352409763245018, + -0.012194561919870492, + 0.001125501360978729, + 0.029800730632041653, + -0.002197866797453633, + 0.01558650871165267, + 0.04074952261153516, + -0.014617490291887367, + -0.015349131316010395, + 0.022572028476454453, + -0.012388282377790452, + -0.0063517501832675355, + -0.025170595202625493, + 0.003197217062690023, + -0.005052458425413463, + -0.036589962768441384, + -0.01836691275371795, + 0.010757748959961502, + -0.04439467263959372, + -0.002789908830469524, + -0.030806439332027733, + 0.03667124565894744, + 0.004302611322259042, + -0.008760150451178212, + 0.024595724319836323, + -0.022028365830703358, + 0.013190002544765447, + 0.00871577569716044, + -0.02241306055500382, + 0.0022288964619773858, + -0.00970506107549647, + -0.02618154838365742 + ], + "metadata": { + "source": "Thesis_Verladegeraeusche_in_Speditionen.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 41, + "has_images": true, + "image_count": 51, + "coordinates": "CoordinatesMetadata(points=((204.16666666666666, 189.02777777777797), (204.16666666666666, 642.3611111111111), (936.1666666666666, 642.3611111111111), (936.1666666666666, 189.02777777777797)), system=)", + "links": [], + "last_modified": "2025-05-05T22:59:16", + "_known_field_names": "frozenset({'cc_recipient', 'link_texts', 'url', 'filetype', 'category_depth', 'page_number', 'filename', 'orig_elements', 'detection_origin', 'email_message_id', 'page_name', 'coordinates', 'table_as_cells', 'link_start_indexes', 'sent_to', 'bcc_recipient', 'languages', 'last_modified', 'link_urls', 'file_directory', 'subject', 'data_source', 'detection_class_prob', 'image_base64', 'text_as_html', 'attached_to_filename', 'key_value_pairs', 'signature', 'sent_from', 'header_footer_type', 'parent_id', 'links', 'emphasized_text_contents', 'emphasized_text_tags', 'image_mime_type', 'is_continuation', 'image_path'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "Thesis_Verladegeraeusche_in_Speditionen.pdf", + "detection_class_prob": 0.2568194270133972, + "parent_id": "d45475a34bc527cde6987546fa6dd2f5", + "text_as_html": "
Flurf\u00f6rderger\u00e4t |Anzahl Einzelereignisse ElMax-PegelSchallleistungspegel
LAFmaxLWA,5sLWAmaxLWA,1hKlLWAT,1h
[dB(A)][dB(A)][dB(A)][dB(A)][dB(A)][dB(A)]
Gabelstapler29769,3100,7108,872,15,777,8
STABW [dB]6,54,96,54,92,9-
Gabelhubwagen9968,6100,7108,172,16,279,5
STABW [dB]6,45,16,4512,7-
", + "id": "5ba44de7-0ff3-4c0c-b018-67e92171e1c2", + "processing_timestamp": "2025-05-06T14:18:19.298665", + "chunk_number": 47, + "total_chunks": 49, + "chunking_strategy": "hybrid", + "word_count": 19603 + } +} \ No newline at end of file diff --git a/data/processed/85fd305f-83de-70b0-47e8-2dc000000048.json b/data/processed/85fd305f-83de-70b0-47e8-2dc000000048.json new file mode 100644 index 0000000000000000000000000000000000000000..58ac860ebc575e807de76c7b86d68f4d42e9cb5f --- /dev/null +++ b/data/processed/85fd305f-83de-70b0-47e8-2dc000000048.json @@ -0,0 +1,1570 @@ +{ + "id": "85fd305f-83de-70b0-47e8-2dc000000048", + "content": "Iterationszahl 4 Minderung Bewuchs: ISO 9613-2 Bebauung: ISO 9613-2 Industriegel\u00e4nde: ISO 9613-2 Bewertung: TA-L\u00e4rm 1998/2017 - Werktag Reflexion der \"eigenen\" Fassade wird unterdr\u00fcckt Geometriedaten Gabelstapler 03-05-23.sit 19.06.2023 13:55:18 - enth\u00e4lt: F001 Bodeneffekt.geo 01.06.2023 12:27:46 G001 Bebauung.geo 01.06.2023 11 MP004 Messpunkte.geo 19.06.2023 13:16:02 0004 Lkws.geo 19.06.2023 10:26:00 Q001 Schallquelle Gabelstapler 03.05.geo 19.06.2023 12:14:38 RG001 Rechengebiet.geo 01.06.2023 12:31:18 RDGM9999.dgm 18.04.2023 12:15:40 | Ergebnisnr. : 1 Heine + Jud - Ingenieurb\u00fcro f\u00fcr Umweltakustik SoundPLAN 9.0]\n\nXLVI\nAnh\u00e4nge\n\n[IMAGE: yden le\u00dfsds\u00dfunjeunsg (War NAT Be jo\u00dfadsfunjounag {var 141 usjlezsqeueg \u0131myaLLoy Ep {NATANIP (neyuy) Beiyosnzusyiezayng gap (LVaZ ueyezsgeueg Inpauoy. ar (Tarp ueUONXE]JBY Yo\u0131np Bunyayusje\u00dfed (Warp SAP uondiosgqeynT pun\u00dfjne Bunydweg Sala sp uney Bunuuyosqy punJ\u00dfyne Bunydwea Samy ap Jegw Pleysuspog punu\u00dfjne Bunydweg Sana sp by Bunyaugsny JsyosisWwos\u00df punu\u00dfjne Bunydweg Samy ep NIPYW Bunyensgy 3}3jyoue\u00df un Beiyosnz 1:1 o4 NSy\u00d6nIeyuoL Any Beiyasnz gp 4a oyd\u0131yeysindwi any Beiyosnz gp I zu (wer m shejuy od je\u00dfsdshunisi: (WER Lie) yen-wwepjeuog gp ma je\u00dfsdusuu] (WER u Yosuo\u0131ssiuu - ajanbjleysg Bunuenug aran\u0131y w Ss (aypei4 Jspo sBueT) aan Jap ago\u0131g zur S.opo| Sweujendg Sand Spusks] -b87 Bunysugsny S1o\u0131N - usuopsdg ul syasne1s\u00dfapenag :s\u0131soy] Jofsyseg \\ gv obejuy Bunyansisjun Syos\u0131uyosyjeyos NXaNr+3NI3H]\n\nXLVII\nAnh\u00e4nge\n\n[IMAGE: vzr 122 E4 00 EX Ey 2 00 go gor- \u20ac 00 vg 3'939 E73 [173 ce Jouoz Zr z'gr 4] 00 es ri 1r\u20190- 00 go vor \u20ac co vs g'95 E74 [13 R4 aeuoz 20r 2'0p go v0 go o v0 00 go Sor- \u20ac 00 vs s'95 E73 0\u20ac we 9 auoZ gs gs su 00 Sul 2 1\u00b00- 00 go Lor- \u00a9 00 vs S'95 SL 53 3 gauoz (vIgp g\u2019ez xew'nT (WIgP gez xewL1 (WIAPEESNIT (VIAPEESLIT DI Zorn (wer | (war ap ap &p (Wa ap gap ap ap ap ap a | (Wer | (War ap | (war w u N 17 [ind] (1Ddaz |GsDamp| yar\u0131p | wiew | Jegw dw NPY 4 1a m MT Mm MA a] s S4Jopo | Elle) -b87 Bunnsugsny S1oUN - usuoy\u0131padg ul ayadsne1s\u00dfapenan :s\u0131say | Jofayseg gy abejuy Bunyansusjun Sy9s\u0131uyoayjeyas]\n\n\n| vzr 122 E4 00 EX Ey 2 00 go gor- \u20ac 00 vg 3'939 E73 [173 ce Zr z'gr 4] 00 es ri 1r\u20190- 00 go vor \u20ac co vs g'95 E74 [13 R4 20r 2'0p go v0 go o v0 00 go Sor- \u20ac 00 vs s'95 E73 0\u20ac we gs gs su 00 Sul 2 1\u00b00- 00 go Lor- \u00a9 00 vs S'95 SL 53 3 (vIgp g\u2019ez xew'nT (WIgP gez xewL1 (WIAPEESNIT (wer | (war ap ap &p (Wa ap gap ap ap ap ap a | (Wer | (War ap | (war w u N 17 [ind] (1Ddaz |GsDamp| yar\u0131p | wiew | Jegw dw NPY 4 1a m MT Mm MA a] s S4Jopo | -b87 Bunnsugsny S1oUN - usuoy\u0131padg ul ayadsne1s\u00dfapenan :s\u0131say | Jofayseg gy abejuy Bunyansusjun Sy9s\u0131uyoayjeyas |\n\nXLVIII", + "embedding": [ + 0.003202893305569887, + 0.004757995717227459, + 0.004679039120674133, + -0.025787925347685814, + 0.006350859999656677, + 0.017260607331991196, + -0.030648907646536827, + -0.02010304667055607, + -0.02900111675262451, + -0.025018956512212753, + 0.03734992444515228, + 0.02269831672310829, + -0.004953670781105757, + 0.0006908705690875649, + -0.011610059067606926, + 0.03174743428826332, + 0.01687612384557724, + 0.0062993667088449, + 0.03276357427239418, + 0.009639576077461243, + -0.0066701197065413, + 0.044682592153549194, + -0.01434951089322567, + -0.009001056663691998, + -0.014006221666932106, + 0.007854469120502472, + 0.01984214596450329, + -0.035372573882341385, + -0.006567132659256458, + 0.011081392876803875, + 0.015145943500101566, + -0.019334077835083008, + -0.03402687981724739, + 0.026048826053738594, + -0.014473095536231995, + -0.031610120087862015, + -0.0025695236399769783, + -0.015228332951664925, + 0.02695511095225811, + -0.0008135966490954161, + 0.012461417354643345, + 0.0069962446577847, + -0.0009852414950728416, + 0.0008856875356286764, + -0.0025643743574619293, + -0.000970651744864881, + 0.018565108999609947, + 0.013189191929996014, + -0.01710955984890461, + 0.014459364116191864, + 0.015338185243308544, + 0.021572327241301537, + 0.004806056153029203, + -0.006213544402271509, + -0.0033831202890723944, + 0.0027789303567260504, + 0.01635432243347168, + 0.010896015912294388, + -0.015612817369401455, + -0.007161024026572704, + -0.020789626985788345, + -0.012516343966126442, + -0.026117483153939247, + 0.006752509158104658, + -0.032159384340047836, + -0.01960870996117592, + -0.0008968444308266044, + 0.004830086603760719, + -0.0019224225543439388, + -0.015681475400924683, + 0.024002818390727043, + 0.03196714073419571, + 0.014912506565451622, + -0.004449035041034222, + 0.043721381574869156, + -0.00427395710721612, + -0.0007741183508187532, + -0.012976352125406265, + 0.03193967789411545, + -0.00471680099144578, + 0.02415386587381363, + -0.033614929765462875, + -0.0326811820268631, + 0.028259610757231712, + 0.03095100261271, + 0.010024060495197773, + -0.007765213958919048, + 0.013813978992402554, + -0.009261957369744778, + -0.002758332993835211, + 0.02722974121570587, + 0.028039906173944473, + 0.011335426941514015, + 0.010484068654477596, + 0.005341588519513607, + -0.022011738270521164, + -0.01892212964594364, + 0.014500558376312256, + 0.003886039834469557, + -0.01007212046533823, + -0.014582947827875614, + 0.00996226817369461, + 0.0013928981497883797, + -0.0023978787939995527, + -0.028287073597311974, + -0.019800951704382896, + 0.0053244237788021564, + 0.02567807212471962, + -0.006237574387341738, + -0.004953670781105757, + -0.015599085949361324, + 0.020556189119815826, + -0.015324453823268414, + -0.015461769886314869, + 0.034658532589673996, + -0.014871311374008656, + 0.03751470148563385, + 0.0017507777083665133, + -0.011390353552997112, + -0.006089959759265184, + 0.005276363343000412, + 0.014486826956272125, + 0.018688693642616272, + -0.014926237985491753, + 0.028589168563485146, + 0.015393111854791641, + -0.0015705504920333624, + -0.01761762984097004, + -0.04188134893774986, + -0.035180334001779556, + 0.0050120302475988865, + 0.009941671043634415, + 0.014116073958575726, + 0.01474772673100233, + -0.00996226817369461, + 0.005382783245295286, + -0.010401679202914238, + 0.007840737700462341, + -0.03883293643593788, + -0.0326811820268631, + 0.003748724004253745, + 0.001399763859808445, + -0.01684866100549698, + -0.016917318105697632, + 0.016450444236397743, + 0.004225896671414375, + -0.009982865303754807, + 0.010861687362194061, + -0.012832170352339745, + -0.030813686549663544, + -0.01462414301931858, + -0.036141544580459595, + 0.02968769706785679, + 0.026872720569372177, + 0.013827710412442684, + 0.01372472383081913, + -0.0022691451013088226, + 0.022712048143148422, + -0.02695511095225811, + -0.007957455702126026, + -0.0059801070019602776, + -0.00967390462756157, + 0.009110909886658192, + -0.011630656197667122, + 0.013916965574026108, + -0.0027978112921118736, + 0.00022850223467685282, + -0.005798163823783398, + -0.000970651744864881, + -0.016711344942450523, + -0.004682471975684166, + 0.010326155461370945, + 0.0010822209296748042, + 0.00447649834677577, + -0.01160319335758686, + 0.023989086970686913, + 0.01786479726433754, + 0.0017816737527027726, + -0.016271933913230896, + -0.018002113327383995, + -0.05610727518796921, + 0.014637874439358711, + 0.028808875009417534, + 0.017040902748703957, + -0.03119817189872265, + 0.020336484536528587, + 0.019732294604182243, + 0.013257849961519241, + 0.0021009331103414297, + -0.005066956393420696, + 0.007648495491594076, + 0.005458306986838579, + 0.00653966935351491, + -0.0078064086847007275, + -0.6129781603813171, + -0.009639576077461243, + 0.0005582749145105481, + -0.010532129555940628, + 0.00012927004718221724, + 0.037432312965393066, + 0.014637874439358711, + -0.010291825979948044, + -0.015571622177958488, + 0.023604601621627808, + 0.0015877149999141693, + 0.026254799216985703, + -0.001917273155413568, + -0.00016681734996382147, + 0.010401679202914238, + -0.028396926820278168, + -0.010772432200610638, + -0.002674227114766836, + 0.04020609334111214, + 0.006251306273043156, + -0.021544864401221275, + -0.0007689690100960433, + -3.5455392207950354e-05, + 0.01734299771487713, + 0.007984919473528862, + 0.00021691620349884033, + 0.024085208773612976, + -0.034356437623500824, + 0.011005869135260582, + -0.013621736317873001, + -0.017768677324056625, + 0.0013285313034430146, + -0.01335397083312273, + 0.007799542974680662, + 0.05569532513618469, + -0.004565753508359194, + -0.0024201925843954086, + 0.012962620705366135, + 0.03699290379881859, + 0.005410246085375547, + -0.034878239035606384, + 0.004363212734460831, + 0.0002551071811467409, + -0.004026788752526045, + 0.0010178540833294392, + -0.0078064086847007275, + 0.03910756856203079, + -0.023343702778220177, + 0.012289772741496563, + -0.050230152904987335, + 0.007195353042334318, + -0.009502260014414787, + -0.010779297910630703, + 0.013010680675506592, + 0.03699290379881859, + 0.015914911404252052, + 0.019938267767429352, + -0.016464175656437874, + 0.006951617076992989, + -0.008314477279782295, + 0.02619987353682518, + -0.009351212531328201, + -0.005911449436098337, + -0.0075661055743694305, + -0.020556189119815826, + 0.016917318105697632, + -0.026790330186486244, + -0.016079692170023918, + 0.0198696106672287, + 0.022588465362787247, + -0.019938267767429352, + 0.03597676381468773, + 0.005276363343000412, + -0.018304208293557167, + 0.026337187737226486, + 0.028589168563485146, + 0.012962620705366135, + -0.017933456227183342, + 0.010394813492894173, + 0.02315145917236805, + 0.004521125927567482, + -0.008108503185212612, + -0.0020185436587780714, + 0.017672555521130562, + 0.017219413071870804, + -0.0284793172031641, + -0.018688693642616272, + 0.00018290906155016273, + 0.006083094049245119, + 0.001150020631030202, + 0.02240995317697525, + 0.01709582842886448, + -0.003312746062874794, + -0.0008028688607737422, + -0.002691391622647643, + 0.026749135926365852, + -0.019594978541135788, + 0.011527669616043568, + 0.020720968022942543, + -0.028918728232383728, + -0.02470313012599945, + 0.003930667415261269, + 0.014541753567755222, + -0.027504373341798782, + 0.025279855355620384, + 0.009653307497501373, + -0.01888093538582325, + 0.002603852655738592, + 0.028342001140117645, + -0.02640584670007229, + 0.005331289488822222, + 0.01082735788077116, + -0.007442521397024393, + 0.000534244638402015, + -0.005104718264192343, + -0.025128807872533798, + 0.0402335561811924, + 0.005269497632980347, + -0.00018805840227287263, + -0.004967402666807175, + -0.003353940788656473, + -0.003189161652699113, + 0.031610120087862015, + -0.0169035866856575, + -0.009145238436758518, + 0.032159384340047836, + -0.0016683881403878331, + 0.014253390021622181, + -0.009364943951368332, + -0.009667038917541504, + 0.0037796199321746826, + 0.019320346415042877, + 0.032900888472795486, + -0.010181973688304424, + 0.023302506655454636, + 0.010978405363857746, + 0.02998979203402996, + -0.004792324732989073, + 0.018208088353276253, + -0.03751470148563385, + -0.015681475400924683, + -0.011898422613739967, + 0.004280822817236185, + -0.03295581415295601, + 0.0022811603266745806, + -0.04155179113149643, + -0.018510183319449425, + 0.033367764204740524, + 0.00490217749029398, + 0.02245114929974079, + -0.011287366971373558, + -0.013614870607852936, + 0.007586703170090914, + 0.002521463204175234, + 0.014225926250219345, + 3.097653461736627e-05, + -0.01632685959339142, + -0.015750132501125336, + -0.021077990531921387, + 0.004239628091454506, + 0.00075523741543293, + 0.0036457369569689035, + -0.02489537186920643, + -0.03202206641435623, + -0.004981134086847305, + 0.006615193095058203, + 0.019485125318169594, + 0.021105453372001648, + -0.005499501712620258, + -0.034658532589673996, + -0.012042604386806488, + -0.0031222200486809015, + -0.006385189015418291, + 0.005448007956147194, + -0.012001409195363522, + 0.009385541081428528, + -0.0071884868666529655, + -0.016230739653110504, + -0.01739792339503765, + 0.0008638027939014137, + 0.026364652439951897, + 0.008994190953671932, + -0.019320346415042877, + -0.0019035416189581156, + 0.016011033207178116, + 0.005520098842680454, + -0.0003025240730494261, + 0.003496405901387334, + -0.01635432243347168, + 0.016271933913230896, + 0.001377450069412589, + 0.022258905693888664, + -0.009618978016078472, + 0.025238661095499992, + -0.030346812680363655, + 0.026570625603199005, + 0.007607300765812397, + -0.003340209135785699, + -0.01632685959339142, + 0.02089947834610939, + 0.04465512931346893, + 0.013175460509955883, + 0.032324161380529404, + -0.0066838511265814304, + 0.021077990531921387, + -0.0341641940176487, + 0.022972948849201202, + -0.01892212964594364, + 0.03191221505403519, + 0.016944780945777893, + 0.02161352150142193, + -0.015530427917838097, + -0.037899188697338104, + 0.005156212020665407, + -0.008472390472888947, + 0.03696543723344803, + -0.01033302117139101, + 0.018208088353276253, + 0.010978405363857746, + -0.032159384340047836, + 0.02823214791715145, + 0.012159322388470173, + 0.02087201550602913, + -0.009255091659724712, + -0.017988381907343864, + -0.003940965980291367, + 0.01936154067516327, + 0.0056024882942438126, + 0.0023927295114845037, + -0.02010304667055607, + -0.024991493672132492, + -0.002748034428805113, + 0.01511847972869873, + 0.001992797013372183, + 0.003724693553522229, + 0.03507047891616821, + 0.02669421024620533, + -0.014019953086972237, + 0.03545496240258217, + 0.008973593823611736, + 0.005554427858442068, + 0.01662895455956459, + 0.024744324386119843, + -0.018057040870189667, + 0.019540050998330116, + -0.013491286896169186, + 0.023604601621627808, + 0.04454527795314789, + -0.004782026167958975, + 0.0024253420997411013, + 0.002179889939725399, + -0.0034552111756056547, + -0.014555484987795353, + -0.011610059067606926, + 0.027257205918431282, + -0.017425386235117912, + 0.02289056032896042, + 0.01686239242553711, + 0.010964673943817616, + 0.012790975160896778, + 0.02389296516776085, + 0.003055278677493334, + 0.00904911756515503, + -0.01107452716678381, + 0.012022006325423717, + -0.0035942434333264828, + -0.037404850125312805, + -0.03171997144818306, + 0.013937563635408878, + -0.02088574692606926, + 0.001597155467607081, + 0.0001585569407325238, + -0.015242064371705055, + 0.015200869180262089, + 0.015187137760221958, + 0.0015319304075092077, + 0.007133560720831156, + 0.021229038015007973, + 0.026996305212378502, + 0.0017936888616532087, + -0.008520451374351978, + -0.02419506013393402, + -0.0005698609747923911, + 0.02670794166624546, + -0.011307964101433754, + 0.004133208654820919, + -0.008046711795032024, + 0.011513938196003437, + -0.01307933870702982, + -0.0036869316827505827, + -0.008108503185212612, + -0.009900475852191448, + -0.012104395776987076, + 0.001678686821833253, + 0.011816033162176609, + -0.0010015477892011404, + 0.0066735525615513325, + -0.01738419197499752, + -0.03070383332669735, + 0.007140426430851221, + 0.005393081810325384, + -0.010902881622314453, + 0.0024545216001570225, + -0.014198463410139084, + 0.03325790911912918, + -0.013813978992402554, + -0.0038482779636979103, + -0.00843806192278862, + -0.013525615446269512, + -0.022492343559861183, + -0.0035770791582763195, + 0.005585324019193649, + 0.005513233132660389, + 0.014074878767132759, + -0.019691098481416702, + -0.013038144446909428, + -0.017933456227183342, + -0.03984907269477844, + 0.03597676381468773, + -0.0014512573834508657, + 0.005090986844152212, + -0.026543162763118744, + 0.008554779924452305, + 0.02365952916443348, + -0.012639927677810192, + 0.0226571224629879, + 0.016175812110304832, + 0.01862003467977047, + 0.010436007753014565, + -0.017040902748703957, + -0.016793733462691307, + -0.049735818058252335, + -0.0027926620095968246, + 0.005956077016890049, + -0.008863740600645542, + -0.0002377281489316374, + 0.02919335849583149, + -0.016766270622611046, + -0.0016134617617353797, + -0.00535875279456377, + 0.01472026389092207, + -0.015008627437055111, + 0.01962244138121605, + 0.01688985526561737, + -0.031115781515836716, + -0.0006295075290836394, + -0.005997271742671728, + 0.04366645589470863, + -0.00048189295921474695, + -0.02595270425081253, + 0.02216278575360775, + 0.02320638671517372, + 0.01309307012706995, + -0.0326811820268631, + 0.016038496047258377, + 0.02138008549809456, + 0.0024768353905528784, + 0.012028872035443783, + -0.0018932429375126958, + -0.008431196212768555, + 0.03803650289773941, + -0.006316530983895063, + 0.02188815362751484, + -0.012770378030836582, + 0.00893239863216877, + 0.024044012650847435, + 0.010923479683697224, + -0.009371809661388397, + 0.02622733637690544, + 0.00806730892509222, + -0.012550672516226768, + 0.02592524141073227, + -0.005588756874203682, + 0.002260562963783741, + 0.015187137760221958, + -0.02545836754143238, + -0.004668740555644035, + -0.011170648038387299, + -0.014418168924748898, + -0.009213896468281746, + -0.013278447091579437, + -0.013422628864645958, + 0.00775148207321763, + -0.027875127270817757, + -0.02187442220747471, + -0.04751129820942879, + -0.00541367894038558, + -0.016999708488583565, + -0.03018203377723694, + -0.013662931509315968, + -0.017425386235117912, + -0.0008221789030358195, + -0.03048412874341011, + -0.01587371714413166, + 0.01682119630277157, + -0.013381433673202991, + -0.018510183319449425, + 0.00014149973867461085, + 0.01712329126894474, + -0.009069714695215225, + 0.01816689223051071, + -0.017246875911951065, + -0.015612817369401455, + -9.756937652127817e-05, + -0.03100592829287052, + -0.013292178511619568, + -0.018345404416322708, + -0.0007646778831258416, + -0.002899081911891699, + 0.013429494574666023, + -0.02722974121570587, + -0.010669444687664509, + -0.008486121892929077, + 0.00031625566771253943, + -0.004126342479139566, + 0.015036090277135372, + -0.003910070285201073, + 0.000714900903403759, + 0.02037767879664898, + -0.009639576077461243, + 0.010127047076821327, + 0.010861687362194061, + 0.018510183319449425, + -0.01258500199764967, + -0.0010942360386252403, + 0.0007466551614925265, + -0.00567114632576704, + -0.0012289772275835276, + -0.0028887831140309572, + 0.005894284695386887, + 0.0030672939028590918, + 0.003731559496372938, + 0.00427395710721612, + 0.015818791463971138, + -0.022355027496814728, + -0.0037555897142738104, + 0.001319090835750103, + -0.005956077016890049, + -0.016464175656437874, + 0.025279855355620384, + 0.0008968444308266044, + -0.006340561434626579, + 0.012282907031476498, + -0.008012382313609123, + 0.005015463102608919, + -0.02996232733130455, + 0.028053637593984604, + -0.005557860713452101, + 0.0022399656008929014, + 0.03883293643593788, + -0.019718563184142113, + 0.005938912276178598, + -0.02517000399529934, + -0.0022365327458828688, + -0.022080395370721817, + 0.012859633192420006, + 0.031390413641929626, + -0.020844552665948868, + -0.021544864401221275, + -0.008472390472888947, + 0.003992459736764431, + 0.014431900344789028, + -0.017466582357883453, + -0.0060041374526917934, + -0.019993193447589874, + 0.010861687362194061, + 0.0028012441471219063, + 0.002440789947286248, + 0.00222966680303216, + -0.027531836181879044, + -0.024469692260026932, + 0.01866123080253601, + -0.006491608917713165, + 0.03240654990077019, + -0.03199460357427597, + -0.0002452376065775752, + -0.008891204372048378, + 0.007875066250562668, + -0.022780707105994225, + -0.03196714073419571, + -0.012763512320816517, + -0.007909395731985569, + 0.02640584670007229, + 0.016299396753311157, + 0.01783733442425728, + -0.007847603410482407, + 0.016491638496518135, + 0.01682119630277157, + -0.005331289488822222, + -0.007724019233137369, + -0.004541723057627678, + 0.0014246524078771472, + -0.04210105165839195, + 0.03303820267319679, + 0.01813942939043045, + 0.024346107617020607, + -0.002027125796303153, + -0.01119811087846756, + 0.013196057640016079, + 0.028589168563485146, + -0.019237956032156944, + -0.006477877497673035, + -0.006443548481911421, + -0.018221819773316383, + 0.00515964487567544, + -0.013065607286989689, + 0.01614834927022457, + -0.0002144488098565489, + -0.03751470148563385, + -0.004847250878810883, + 0.006481310352683067, + 0.002224517520517111, + 0.005643683485686779, + 0.005722640082240105, + 0.006089959759265184, + -0.020569920539855957, + 0.037871722131967545, + 0.010889150202274323, + 0.014912506565451622, + 0.001341404626145959, + -0.014418168924748898, + -0.010298691689968109, + -0.025362245738506317, + 0.023000411689281464, + -0.011548266746103764, + -0.0010942360386252403, + -0.009152104146778584, + -0.03204952925443649, + -0.0039443993009626865, + 0.00397529499605298, + 0.0025884045753628016, + -0.0183865986764431, + -7.986849959706888e-05, + -0.005423977971076965, + -0.014953700825572014, + -0.02722974121570587, + -0.008664633147418499, + -0.010916613973677158, + 0.015928644686937332, + 0.023288775235414505, + 0.008877472952008247, + 0.014225926250219345, + 0.0054754712618887424, + -0.011294232681393623, + 0.014528021216392517, + 0.0026450473815202713, + 0.02869902178645134, + 0.0034586440306156874, + 0.04078282043337822, + -0.00031518290052190423, + -0.001423794194124639, + -0.02647450380027294, + -0.011781703680753708, + 0.017590167000889778, + -0.015310722403228283, + 0.017191950231790543, + 0.024002818390727043, + -0.0010916613973677158, + -0.020995600149035454, + 0.012179919518530369, + 0.028369463980197906, + -0.01583252288401127, + -0.01886720396578312, + 0.02538970857858658, + 0.02442849799990654, + 0.011919019743800163, + -0.03018203377723694, + 0.008142832666635513, + -0.019004520028829575, + -0.0003351366030983627, + -0.00473053241148591, + -0.005369051359593868, + -0.014198463410139084, + -0.0011165498290210962, + 0.0061345878057181835, + 0.046220529824495316, + -0.008211490698158741, + 0.009344346821308136, + 0.0063714575953781605, + -0.011026466265320778, + 0.011932751163840294, + -0.04561633989214897, + -0.00585652282461524, + 0.026804063469171524, + -0.025842851027846336, + 0.038887862116098404, + -0.008225222118198872, + -0.013745320960879326, + 0.008444927632808685, + -0.005207705311477184, + -0.008815680630505085, + 0.0011920735705643892, + 0.011692448519170284, + 0.023563407361507416, + 0.0005119308480061591, + -0.010387947782874107, + -0.0151047483086586, + -0.004555454943329096, + 0.01988334208726883, + 0.02441476657986641, + -0.008101637475192547, + -0.0034243150148540735, + -0.012893962673842907, + -0.008211490698158741, + 0.0017713750712573528, + -0.0012847618199884892, + -0.00933748111128807, + -0.002399595221504569, + -0.017754945904016495, + -0.031637582927942276, + -0.0017241727327927947, + -0.012536941096186638, + 0.03240654990077019, + -0.04578112065792084, + -0.00042074447264894843, + 0.005684878211468458, + 0.0007350691594183445, + 0.03935473412275314, + 0.009900475852191448, + -0.013367702253162861, + -0.008492988534271717, + 0.03356000408530235, + -0.031610120087862015, + 0.023302506655454636, + 0.03649856522679329, + -0.008122235536575317, + -0.0030466963071376085, + 0.00458978395909071, + 0.0032612525392323732, + -0.0064332494512200356, + 0.046467699110507965, + -0.013985623605549335, + -0.005640250165015459, + -0.007724019233137369, + 0.024812981486320496, + 0.007799542974680662, + -0.0347958467900753, + -0.0007050312706269324, + -0.004627545829862356, + 0.007675958331674337, + 0.0029437094926834106, + -0.007229682058095932, + -0.0008444927516393363, + 0.02968769706785679, + 0.022478612139821053, + 0.003432897385209799, + 0.0276691522449255, + -0.02440103515982628, + 0.030017254874110222, + 0.013669797219336033, + -0.008589109405875206, + -0.004466199316084385, + -0.022355027496814728, + -0.021846959367394447, + 0.029275748878717422, + 0.013930697925388813, + -0.030264422297477722, + -0.018263014033436775, + -0.025252392515540123, + -0.0026931080501526594, + -0.004754562862217426, + 0.01207006722688675, + 0.0035942434333264828, + -0.005156212020665407, + 0.022492343559861183, + 0.008870607241988182, + -0.029275748878717422, + 0.03144533932209015, + -0.007696555927395821, + -0.025884045287966728, + 0.006007570307701826, + 0.0005805887631140649, + -0.024799250066280365, + 0.0018915263935923576, + -0.008767619729042053, + 0.022808169946074486, + 0.012131859548389912, + -0.03427404910326004, + -0.009975999593734741, + -0.017466582357883453, + -0.04600082337856293, + -0.03699290379881859, + -0.010696908459067345, + -0.009474797174334526, + -0.0018743620021268725, + 0.01069004274904728, + -0.022025469690561295, + 0.04300733655691147, + -0.005636817310005426, + 0.01322352048009634, + -0.03910756856203079, + -0.01936154067516327, + 0.006635790690779686, + -0.015805060043931007, + 0.03902517631649971, + -0.010470337234437466, + -0.02717481553554535, + -0.005252332892268896, + 0.019224224612116814, + 0.0129694864153862, + 0.008801949210464954, + 0.025018956512212753, + -0.0034243150148540735, + -0.020020658150315285, + 0.009186433628201485, + -0.011967080645263195, + 0.003927234560251236, + -0.000702885736245662, + -0.0017010006122291088, + -0.015942376106977463, + 0.0069619156420230865, + -0.0010418843012303114, + 0.019993193447589874, + -0.00843806192278862, + -0.021242769435048103, + 0.020583651959896088, + -0.014692801050841808, + -0.023014143109321594, + 0.030648907646536827, + -0.011898422613739967, + 0.002909380476921797, + -0.015296990983188152, + 0.02393416129052639, + 0.017562702298164368, + -0.027339594438672066, + -0.009550320915877819, + 0.006934452801942825, + -0.009502260014414787, + -0.025609415024518967, + -0.005523531697690487, + -0.04226583242416382, + 0.014898774214088917, + 0.023577138781547546, + -0.004425004590302706, + 0.0343015119433403, + -0.03693797439336777, + 0.022492343559861183, + -0.007929992862045765, + 7.43973214412108e-05, + -0.01585998572409153, + -0.017796140164136887, + -0.04034341126680374, + 0.026858989149332047, + 0.033395227044820786, + -0.013566810637712479, + -0.004562320653349161, + -0.010470337234437466, + -0.012076932936906815, + 0.004287688992917538, + -0.01710955984890461, + -0.014054281637072563, + -0.026556894183158875, + -0.010806760750710964, + 0.021970544010400772, + -0.016203274950385094, + 0.004126342479139566, + 0.0019104073289781809, + -0.01989707350730896, + -0.014418168924748898, + 0.02114664763212204, + 0.19443930685520172, + -0.01687612384557724, + 0.008650901727378368, + 0.02239622175693512, + -0.010127047076821327, + -0.008328208699822426, + 0.040398336946964264, + 0.0005943203577771783, + -0.002389296656474471, + 0.038942787796258926, + 0.0037521568592637777, + -0.0033247610554099083, + 0.0096876360476017, + 0.0015353633789345622, + 0.01537938043475151, + -0.033807173371315, + -0.048499975353479385, + -0.016670148819684982, + -0.011369756422936916, + 0.02393416129052639, + 0.02442849799990654, + -0.027257205918431282, + -0.0019310048082843423, + -0.010051523335278034, + 0.035152867436409, + 0.009900475852191448, + -0.010250631719827652, + 0.010030926205217838, + 0.03353254124522209, + 0.008122235536575317, + -0.013196057640016079, + -0.0032543865963816643, + 0.024291181936860085, + -0.010930345393717289, + -0.012681122869253159, + -0.0007372146937996149, + 0.008486121892929077, + -0.012646794319152832, + 0.018070772290229797, + 0.032598793506622314, + -0.010298691689968109, + -0.03855830430984497, + -0.01383457612246275, + -0.01587371714413166, + -0.0025128808338195086, + 0.018235551193356514, + -0.005959509871900082, + 0.009742562659084797, + -0.0031119214836508036, + -0.005255765747278929, + -0.016175812110304832, + 0.017274338752031326, + 0.013944429345428944, + 0.030401738360524178, + 0.02441476657986641, + -0.027408253401517868, + -0.0025832552928477526, + -0.001563684782013297, + -0.0015027507906779647, + 0.00996226817369461, + -0.021489936858415604, + 0.01536564901471138, + -0.020707236602902412, + 0.009090311825275421, + -0.015324453823268414, + -0.005166510585695505, + -0.018441524356603622, + 0.0016083123628050089, + -0.006666686851531267, + -0.03405434265732765, + 0.00624100724235177, + -0.003666334319859743, + -0.037157680839300156, + 0.013930697925388813, + -0.03180235996842384, + -0.026735404506325722, + 0.0143632423132658, + 0.009275688789784908, + 0.009104044176638126, + 0.03391702473163605, + -0.01665641739964485, + -0.0183865986764431, + 0.0028269910253584385, + -0.0024133268743753433, + -0.013161728158593178, + -0.026048826053738594, + 0.01862003467977047, + 0.002097500255331397, + 0.001132856123149395, + -0.03553735464811325, + -0.02949545346200466, + -0.01632685959339142, + -0.014939969405531883, + 0.0013070757267996669, + 0.01787852868437767, + -0.009234493598341942, + 0.004023355897516012, + -0.00933748111128807, + -0.00882254634052515, + 0.0056814453564584255, + -0.01509101688861847, + 0.06409905850887299, + 0.04133208468556404, + -0.011177513748407364, + -0.01610715501010418, + -0.00655683409422636, + 0.010456605814397335, + 0.013772783800959587, + 0.01640924997627735, + -0.00041688248165883124, + -0.008266417309641838, + -0.032626256346702576, + 0.003074159612879157, + -0.013779650442302227, + 0.01866123080253601, + -0.0026004198007285595, + 0.0011483042035251856, + -0.00816342979669571, + 0.008877472952008247, + -0.005894284695386887, + -0.016999708488583565, + 0.011225574649870396, + 0.017947187647223473, + 0.01587371714413166, + -0.014761459082365036, + -0.03770694509148598, + -0.05761775001883507, + 0.0062822019681334496, + -0.005266064777970314, + -0.023041607812047005, + 0.011651253327727318, + -0.010017194785177708, + 0.022959217429161072, + -0.006141453515738249, + -0.010683177039027214, + 0.02118784189224243, + -0.005437709391117096, + -0.015708938241004944, + -0.023371165618300438, + 0.032076992094516754, + 0.020720968022942543, + -0.0035427501425147057, + -0.0052248695865273476, + -0.001330247730948031, + 0.009824952110648155, + 0.0002643330954015255, + 0.0010676310630515218, + 0.004297987557947636, + -0.03073129802942276, + -0.035372573882341385, + -0.01373845525085926, + -0.026598088443279266, + 0.006337128579616547, + -0.0004050818970426917, + 0.03191221505403519, + 0.002457954455167055, + -0.026117483153939247, + -0.020583651959896088, + 0.014967432245612144, + 0.0027754975017160177, + -0.027037499472498894, + -0.002179889939725399, + 0.012646794319152832, + -0.02213532291352749, + -0.012276041321456432, + 0.008911801502108574, + -0.17565448582172394, + 0.008287014439702034, + 0.012509478256106377, + -0.01682119630277157, + 0.02493656612932682, + 0.0025540755596011877, + -0.0025695236399769783, + 0.018468987196683884, + -0.012571270577609539, + -0.009097178466618061, + 0.0198696106672287, + 0.024002818390727043, + -0.01809823513031006, + -0.009474797174334526, + -0.026543162763118744, + 0.003717827843502164, + -0.030539054423570633, + 0.014129805378615856, + 0.04784085601568222, + 0.02998979203402996, + -0.02345355413854122, + -0.019498856738209724, + -0.0008638027939014137, + 0.004613813944160938, + -0.003127369564026594, + 0.01809823513031006, + -0.0029145297594368458, + 0.024222522974014282, + 0.006192946806550026, + 0.008115369826555252, + -0.01835913583636284, + 0.002993486588820815, + 0.0037384252063930035, + -0.015599085949361324, + -0.012433954514563084, + -0.004727099556475878, + -0.00580159667879343, + 0.00622727582231164, + -0.014322048053145409, + 0.026529431343078613, + 0.003159981919452548, + 0.012900828383862972, + -0.021558595821261406, + 0.0023395195603370667, + -0.045231856405735016, + 0.022052932530641556, + 0.04377630725502968, + -0.025499561801552773, + 0.00274288491345942, + -0.011987677775323391, + -0.015750132501125336, + -0.015708938241004944, + 0.00478889187797904, + 0.007133560720831156, + 0.0053003933280706406, + 0.04550648853182793, + -0.01564028114080429, + 0.01082735788077116, + -0.010278094559907913, + 0.012591867707669735, + 0.005523531697690487, + -0.008657767437398434, + 0.03240654990077019, + -0.008211490698158741, + -0.00617234967648983, + -0.028287073597311974, + 0.006186081096529961, + 0.0072022187523543835, + -0.01282530464231968, + -0.007758348248898983, + -0.006618625950068235, + -0.015708938241004944, + 0.007778945378959179, + -0.017974650487303734, + 0.008740156888961792, + 0.0072777424938976765, + -0.006968781817704439, + -0.01033302117139101, + 0.017452850937843323, + -0.004297987557947636, + -0.015310722403228283, + 0.05267437547445297, + -0.010772432200610638, + -0.013086204417049885, + 0.013676662929356098, + -0.009879878722131252, + -0.006203245371580124, + 0.022533537819981575, + 0.016985977068543434, + 0.004782026167958975, + 0.0062066782265901566, + -0.022533537819981575, + -0.010799895040690899, + -0.027023768052458763, + 0.011266768909990788, + 0.01614834927022457, + -0.003340209135785699, + 0.0053896489553153515, + -0.02394789271056652, + 0.0037967844400554895, + -0.012365296483039856, + -0.024359839037060738, + -0.01311366818845272, + 0.011246171779930592, + 0.009900475852191448, + 0.019045714288949966, + -0.017672555521130562, + 0.017672555521130562, + 0.0448199063539505, + 0.003055278677493334, + -0.008046711795032024, + -0.014143536798655987, + 0.003312746062874794, + -0.002655346179381013, + -0.008513585664331913, + -0.015475501306355, + -0.01298321783542633, + -0.027284668758511543, + -4.0148806874640286e-05, + 0.009969133883714676, + 0.024098940193653107, + -0.003700663335621357, + -0.010230034589767456, + -0.011026466265320778, + -0.02010304667055607, + -0.030044717714190483, + -0.07832498848438263, + -0.017040902748703957, + 0.01739792339503765, + 0.01735672913491726, + 0.0005145054892636836, + 0.022519806399941444, + -0.0046241129748523235, + -0.0011191245866939425, + -0.003927234560251236, + 0.046934571117162704, + -0.01639551855623722, + -0.020446335896849632, + -0.015187137760221958, + -0.012770378030836582, + 0.019732294604182243, + -0.0012341266265138984, + -0.018070772290229797, + -0.011012734845280647, + -0.019993193447589874, + 0.04303480312228203, + 0.012090664356946945, + 0.0015473784878849983, + 0.011637521907687187, + -0.0015130494721233845, + -0.023851770907640457, + -0.013051875866949558, + -0.031335487961769104, + 0.019855879247188568, + 0.007250279188156128, + 0.0031822959426790476, + 0.01209753006696701, + -0.010024060495197773, + 0.0033264774829149246, + -0.0075043137185275555, + -0.015805060043931007, + -0.0027394520584493876, + -0.003230356378480792, + -0.019265420734882355, + 0.024469692260026932, + -0.02463447116315365, + 0.0016486489912495017, + 0.016052227467298508, + 0.011678717099130154, + -0.021544864401221275, + -0.00904911756515503, + -0.025897778570652008, + 0.002380714286118746, + 0.02669421024620533, + -0.009186433628201485, + -0.019732294604182243, + -0.022876828908920288, + -0.03125309944152832, + 0.0008247536025010049, + -0.0036937976256012917, + 0.022217711433768272, + 0.004675606265664101, + 0.022052932530641556, + 0.026543162763118744, + -0.016244471073150635, + 0.014225926250219345, + -4.12484077969566e-05, + 0.010154510848224163, + -0.013024413026869297, + 0.031857289373874664, + 0.013477555476129055, + 0.00642638374119997, + -0.004249927122145891, + -0.015448038466274738, + 0.012907694093883038, + -0.004122909624129534, + -0.04179895669221878, + 0.000639377161860466, + -0.011211843229830265, + 0.00981808640062809, + -0.024840446189045906, + -0.001568834064528346, + -0.028561705723404884, + -0.016519101336598396, + 0.010985272005200386, + -0.012523209676146507, + -0.010896015912294388, + -0.035345111042261124, + 0.018949594348669052, + -0.002875051461160183, + 0.022313833236694336, + 0.02293175458908081, + 0.00641265232115984, + -0.010291825979948044, + 0.015475501306355, + -0.031170707195997238, + -0.005005164537578821, + 0.03402687981724739, + 0.02162725292146206, + -0.009941671043634415, + -0.022821901366114616, + 0.004606948234140873, + 0.003432897385209799, + 0.01590117998421192, + -0.003656035754829645, + 0.004153805784881115, + -0.020487532019615173, + -0.006275336258113384, + -0.06256112456321716, + 0.03301073983311653, + 0.01433577947318554, + -0.01472026389092207, + -0.01765882410109043, + 0.003161698579788208, + 0.02315145917236805, + 0.01938900351524353, + 0.0037281266413629055, + 0.0226571224629879, + -0.021215306594967842, + 0.0387505441904068, + -0.022725781425833702, + -0.03345015272498131, + -0.026776598766446114, + -0.020226631313562393, + 0.015063554048538208, + 0.014843848533928394, + 0.01915556751191616, + 0.009097178466618061, + -0.019018251448869705, + 0.0075661055743694305, + -0.016258202493190765, + 0.01358054205775261, + -0.018990788608789444, + -0.014280852861702442, + -0.013402031734585762, + -0.004723666701465845, + -0.01069004274904728, + 0.00011221283057238907, + -0.004098879639059305, + 0.006865794770419598, + -0.0018760784296318889, + 0.01992453634738922, + -0.022245174273848534, + -0.016230739653110504, + 0.024867909029126167, + 0.006471011321991682, + 0.029605306684970856, + 0.032626256346702576, + -0.028589168563485146, + -0.015571622177958488, + 0.021572327241301537, + -0.02243741787970066, + 0.008980459533631802, + -0.008410598151385784, + 0.016944780945777893, + -0.002713705413043499, + 0.013923831284046173, + -0.0014770041452720761, + 0.03581198677420616, + 0.012234846130013466, + 0.025032687932252884, + 0.004184701945632696, + 0.009859281592071056, + -0.0072022187523543835, + 0.02262965962290764, + 0.01564028114080429, + -0.010580189526081085, + -0.013793381862342358, + 0.04929640516638756, + -0.002102649537846446, + 0.020309021696448326, + -0.0186337660998106, + 0.004328883718699217, + 0.0003347074962221086, + -0.022986680269241333, + 0.0015490949153900146, + -0.0052317357622087, + -0.014514289796352386, + -0.012832170352339745, + -0.011465877294540405, + 0.015818791463971138, + 0.04981820657849312, + -0.018427792936563492, + -0.020830821245908737, + -0.012797841802239418, + 0.010779297910630703, + -0.008225222118198872, + 0.029056042432785034, + 0.024867909029126167, + -0.011877824552357197, + -0.008472390472888947, + 7.47593867345131e-06, + 0.021270232275128365, + -0.004071416333317757, + -0.03122563473880291, + 0.0045691863633692265, + 0.00036753457970917225, + -0.0027651989366859198, + 0.009275688789784908, + 0.02289056032896042, + 0.008966728113591671, + -0.0042567928321659565, + 0.020844552665948868, + 0.008156564086675644, + 0.012832170352339745, + -0.004102312494069338, + 0.0241401344537735, + 0.0443255715072155, + 0.0017052917974069715, + 0.0016374920960515738, + -0.007531777024269104, + -0.017027171328663826, + -0.03751470148563385, + 0.03213191777467728, + -0.016313128173351288, + -0.002828707452863455, + 0.009763159789144993, + 0.01866123080253601, + -0.0040199230425059795, + -0.009941671043634415, + -0.004092013463377953, + 0.0069619156420230865, + -0.007360131945461035, + 0.019594978541135788, + -0.014486826956272125, + 0.0017001423984766006, + -0.026598088443279266, + 0.042705241590738297, + 0.003765888512134552, + -0.001092519611120224, + 0.024332376196980476, + -0.008026113733649254, + 0.004061117768287659, + -0.017178218811750412, + 0.022780707105994225, + -0.023082802072167397, + -0.0003548757522366941, + -0.022794438526034355, + 0.01195334829390049, + 0.004534857347607613, + -0.03800904005765915, + -0.015681475400924683, + -0.0104291420429945, + -0.008541048504412174, + 0.002909380476921797, + -0.003882606979459524, + 0.028753947466611862, + 0.11226947605609894, + 0.03243401274085045, + -0.014459364116191864, + 0.016752539202570915, + -0.00021627252863254398, + 0.01911437325179577, + -0.02617240883409977, + -0.0009946819627657533, + 0.01587371714413166, + -0.07925873249769211, + -0.009598380886018276, + -0.009770025499165058, + 0.030896076932549477, + -0.016519101336598396, + -0.03150026500225067, + -0.006525937933474779, + -0.0025884045753628016, + 0.0175764337182045, + -0.00624100724235177, + -0.0026707942597568035, + 0.024263719096779823, + -0.00993480533361435, + 0.013882637023925781, + 0.01171304564923048, + -0.029358137398958206, + -0.01686239242553711, + 0.012433954514563084, + -0.004287688992917538, + -0.018468987196683884, + -0.01710955984890461, + -0.025128807872533798, + 0.0052248695865273476, + -0.04866475239396095, + -0.03265371918678284, + 0.02040514163672924, + -0.03523525968194008, + 0.01960870996117592, + -0.024263719096779823, + 0.02845185250043869, + -0.0004913334269076586, + 0.004963969811797142, + 0.00854791421443224, + -0.019814683124423027, + -0.020254094153642654, + 0.014706532470881939, + -0.009969133883714676, + -0.006474444642663002, + -0.014775190502405167, + -0.03798157721757889 + ], + "metadata": { + "source": "Thesis_Verladegeraeusche_in_Speditionen.pdf", + "file_type": "pdf", + "has_tables": true, + "table_count": 41, + "has_images": true, + "image_count": 51, + "coordinates": "CoordinatesMetadata(points=((204.16666666666666, 189.02777777777797), (204.16666666666666, 642.3611111111111), (936.1666666666666, 642.3611111111111), (936.1666666666666, 189.02777777777797)), system=)", + "links": [], + "last_modified": "2025-05-05T22:59:16", + "_known_field_names": "frozenset({'cc_recipient', 'link_texts', 'url', 'filetype', 'category_depth', 'page_number', 'filename', 'orig_elements', 'detection_origin', 'email_message_id', 'page_name', 'coordinates', 'table_as_cells', 'link_start_indexes', 'sent_to', 'bcc_recipient', 'languages', 'last_modified', 'link_urls', 'file_directory', 'subject', 'data_source', 'detection_class_prob', 'image_base64', 'text_as_html', 'attached_to_filename', 'key_value_pairs', 'signature', 'sent_from', 'header_footer_type', 'parent_id', 'links', 'emphasized_text_contents', 'emphasized_text_tags', 'image_mime_type', 'is_continuation', 'image_path'})", + "filetype": "application/pdf", + "languages": [ + "de" + ], + "page_number": 1, + "file_directory": "data/raw", + "filename": "Thesis_Verladegeraeusche_in_Speditionen.pdf", + "detection_class_prob": 0.2568194270133972, + "parent_id": "d45475a34bc527cde6987546fa6dd2f5", + "text_as_html": "
Flurf\u00f6rderger\u00e4t |Anzahl Einzelereignisse ElMax-PegelSchallleistungspegel
LAFmaxLWA,5sLWAmaxLWA,1hKlLWAT,1h
[dB(A)][dB(A)][dB(A)][dB(A)][dB(A)][dB(A)]
Gabelstapler29769,3100,7108,872,15,777,8
STABW [dB]6,54,96,54,92,9-
Gabelhubwagen9968,6100,7108,172,16,279,5
STABW [dB]6,45,16,4512,7-
", + "id": "5ba44de7-0ff3-4c0c-b018-67e92171e1c2", + "processing_timestamp": "2025-05-06T14:18:19.298665", + "chunk_number": 48, + "total_chunks": 49, + "chunking_strategy": "hybrid", + "word_count": 471 + } +} \ No newline at end of file diff --git a/data/qdrant_db/aliases/data.json b/data/qdrant_db/aliases/data.json new file mode 100644 index 0000000000000000000000000000000000000000..9e26dfeeb6e641a33dae4961196235bdb965b21b --- /dev/null +++ b/data/qdrant_db/aliases/data.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/qdrant_db/collections/transfer_rag/0/newest_clocks.json b/data/qdrant_db/collections/transfer_rag/0/newest_clocks.json new file mode 100644 index 0000000000000000000000000000000000000000..664b16d4f829f8bec87674042184431e0d683885 --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/newest_clocks.json @@ -0,0 +1 @@ +{"clocks":[{"peer_id":5245814135951757,"clock_id":0,"current_tick":19,"token":13278801028746596634}]} \ No newline at end of file diff --git a/data/qdrant_db/collections/transfer_rag/0/replica_state.json b/data/qdrant_db/collections/transfer_rag/0/replica_state.json new file mode 100644 index 0000000000000000000000000000000000000000..f83aea96e158f15383ca50ffc6599d0d13da93dd --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/replica_state.json @@ -0,0 +1 @@ +{"is_local":true,"this_peer_id":5245814135951757,"peers":{"5245814135951757":"Active"}} \ No newline at end of file diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/000017.sst b/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/000017.sst new file mode 100644 index 0000000000000000000000000000000000000000..f711817a72c4adde468254edf118c568b4dce899 Binary files /dev/null and b/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/000017.sst differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/000018.log b/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/000018.log new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/000019.sst b/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/000019.sst new file mode 100644 index 0000000000000000000000000000000000000000..b634513db3ca8fb77b60bde06cd96c5abd290aea Binary files /dev/null and b/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/000019.sst differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/CURRENT b/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/CURRENT new file mode 100644 index 0000000000000000000000000000000000000000..625d147412870471b19d90716ccc20a7f207a5c3 --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/CURRENT @@ -0,0 +1 @@ +MANIFEST-000013 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/IDENTITY b/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/IDENTITY new file mode 100644 index 0000000000000000000000000000000000000000..bacae40008506e0d39adea3d0cf08aeb24ade822 --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/IDENTITY @@ -0,0 +1 @@ +d2bd01b6-641f-4103-9dd2-06b671a2ed0e \ No newline at end of file diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/LOCK b/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/LOCK new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/LOG b/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/LOG new file mode 100644 index 0000000000000000000000000000000000000000..06074cb5391a5ef30fbdae05c098dcc24280d57e --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/LOG @@ -0,0 +1,787 @@ +2025/05/04-10:09:55.600987 40 RocksDB version: 9.9.3 +2025/05/04-10:09:55.601216 40 Compile date 2024-12-05 01:25:31 +2025/05/04-10:09:55.601217 40 DB SUMMARY +2025/05/04-10:09:55.601218 40 Host name (Env): c5f2a9d061bb +2025/05/04-10:09:55.601219 40 DB Session ID: CD0SHR3DDC5AMRBDXMDP +2025/05/04-10:09:55.603995 40 CURRENT file: CURRENT +2025/05/04-10:09:55.603997 40 IDENTITY file: IDENTITY +2025/05/04-10:09:55.604239 40 MANIFEST file: MANIFEST-000009 size: 497 Bytes +2025/05/04-10:09:55.604247 40 SST files in ./storage/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566 dir, Total Num: 0, files: +2025/05/04-10:09:55.604250 40 Write Ahead Log file in ./storage/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566: 000008.log size: 0 ; +2025/05/04-10:09:55.604252 40 Options.error_if_exists: 0 +2025/05/04-10:09:55.604253 40 Options.create_if_missing: 1 +2025/05/04-10:09:55.604255 40 Options.paranoid_checks: 1 +2025/05/04-10:09:55.604256 40 Options.flush_verify_memtable_count: 1 +2025/05/04-10:09:55.604257 40 Options.compaction_verify_record_count: 1 +2025/05/04-10:09:55.604258 40 Options.track_and_verify_wals_in_manifest: 0 +2025/05/04-10:09:55.604260 40 Options.verify_sst_unique_id_in_manifest: 1 +2025/05/04-10:09:55.604261 40 Options.env: 0xffff86034000 +2025/05/04-10:09:55.604263 40 Options.fs: PosixFileSystem +2025/05/04-10:09:55.604264 40 Options.info_log: 0xffff840a1000 +2025/05/04-10:09:55.604265 40 Options.max_file_opening_threads: 16 +2025/05/04-10:09:55.604266 40 Options.statistics: (nil) +2025/05/04-10:09:55.604267 40 Options.use_fsync: 0 +2025/05/04-10:09:55.604268 40 Options.max_log_file_size: 1048576 +2025/05/04-10:09:55.604269 40 Options.max_manifest_file_size: 1073741824 +2025/05/04-10:09:55.604271 40 Options.log_file_time_to_roll: 0 +2025/05/04-10:09:55.604272 40 Options.keep_log_file_num: 1 +2025/05/04-10:09:55.604273 40 Options.recycle_log_file_num: 0 +2025/05/04-10:09:55.604274 40 Options.allow_fallocate: 1 +2025/05/04-10:09:55.604275 40 Options.allow_mmap_reads: 0 +2025/05/04-10:09:55.604276 40 Options.allow_mmap_writes: 0 +2025/05/04-10:09:55.604278 40 Options.use_direct_reads: 0 +2025/05/04-10:09:55.604279 40 Options.use_direct_io_for_flush_and_compaction: 0 +2025/05/04-10:09:55.604280 40 Options.create_missing_column_families: 1 +2025/05/04-10:09:55.604281 40 Options.db_log_dir: +2025/05/04-10:09:55.604282 40 Options.wal_dir: +2025/05/04-10:09:55.604283 40 Options.table_cache_numshardbits: 6 +2025/05/04-10:09:55.604284 40 Options.WAL_ttl_seconds: 0 +2025/05/04-10:09:55.604286 40 Options.WAL_size_limit_MB: 0 +2025/05/04-10:09:55.604287 40 Options.max_write_batch_group_size_bytes: 1048576 +2025/05/04-10:09:55.604288 40 Options.manifest_preallocation_size: 4194304 +2025/05/04-10:09:55.604289 40 Options.is_fd_close_on_exec: 1 +2025/05/04-10:09:55.604291 40 Options.advise_random_on_open: 1 +2025/05/04-10:09:55.604292 40 Options.db_write_buffer_size: 0 +2025/05/04-10:09:55.604294 40 Options.write_buffer_manager: 0xffff840090c0 +2025/05/04-10:09:55.604295 40 Options.random_access_max_buffer_size: 1048576 +2025/05/04-10:09:55.604296 40 Options.use_adaptive_mutex: 0 +2025/05/04-10:09:55.604298 40 Options.rate_limiter: (nil) +2025/05/04-10:09:55.604299 40 Options.sst_file_manager.rate_bytes_per_sec: 0 +2025/05/04-10:09:55.604301 40 Options.wal_recovery_mode: 0 +2025/05/04-10:09:55.604302 40 Options.enable_thread_tracking: 0 +2025/05/04-10:09:55.604303 40 Options.enable_pipelined_write: 0 +2025/05/04-10:09:55.604305 40 Options.unordered_write: 0 +2025/05/04-10:09:55.604308 40 Options.allow_concurrent_memtable_write: 1 +2025/05/04-10:09:55.604309 40 Options.enable_write_thread_adaptive_yield: 1 +2025/05/04-10:09:55.604310 40 Options.write_thread_max_yield_usec: 100 +2025/05/04-10:09:55.604311 40 Options.write_thread_slow_yield_usec: 3 +2025/05/04-10:09:55.604312 40 Options.row_cache: None +2025/05/04-10:09:55.604313 40 Options.wal_filter: None +2025/05/04-10:09:55.604318 40 Options.avoid_flush_during_recovery: 0 +2025/05/04-10:09:55.604320 40 Options.allow_ingest_behind: 0 +2025/05/04-10:09:55.604321 40 Options.two_write_queues: 0 +2025/05/04-10:09:55.604322 40 Options.manual_wal_flush: 0 +2025/05/04-10:09:55.604323 40 Options.wal_compression: 0 +2025/05/04-10:09:55.604324 40 Options.background_close_inactive_wals: 0 +2025/05/04-10:09:55.604325 40 Options.atomic_flush: 0 +2025/05/04-10:09:55.604326 40 Options.avoid_unnecessary_blocking_io: 0 +2025/05/04-10:09:55.604327 40 Options.prefix_seek_opt_in_only: 0 +2025/05/04-10:09:55.604329 40 Options.persist_stats_to_disk: 0 +2025/05/04-10:09:55.604330 40 Options.write_dbid_to_manifest: 1 +2025/05/04-10:09:55.604331 40 Options.write_identity_file: 1 +2025/05/04-10:09:55.604332 40 Options.log_readahead_size: 0 +2025/05/04-10:09:55.604335 40 Options.file_checksum_gen_factory: Unknown +2025/05/04-10:09:55.604336 40 Options.best_efforts_recovery: 0 +2025/05/04-10:09:55.604337 40 Options.max_bgerror_resume_count: 2147483647 +2025/05/04-10:09:55.604338 40 Options.bgerror_resume_retry_interval: 1000000 +2025/05/04-10:09:55.604339 40 Options.allow_data_in_errors: 0 +2025/05/04-10:09:55.604340 40 Options.db_host_id: __hostname__ +2025/05/04-10:09:55.604342 40 Options.enforce_single_del_contracts: true +2025/05/04-10:09:55.604343 40 Options.metadata_write_temperature: kUnknown +2025/05/04-10:09:55.604345 40 Options.wal_write_temperature: kUnknown +2025/05/04-10:09:55.604370 40 Options.max_background_jobs: 2 +2025/05/04-10:09:55.604380 40 Options.max_background_compactions: -1 +2025/05/04-10:09:55.604382 40 Options.max_subcompactions: 1 +2025/05/04-10:09:55.604382 40 Options.avoid_flush_during_shutdown: 0 +2025/05/04-10:09:55.604383 40 Options.writable_file_max_buffer_size: 1048576 +2025/05/04-10:09:55.604384 40 Options.delayed_write_rate : 16777216 +2025/05/04-10:09:55.604384 40 Options.max_total_wal_size: 0 +2025/05/04-10:09:55.604385 40 Options.delete_obsolete_files_period_micros: 180000000 +2025/05/04-10:09:55.604386 40 Options.stats_dump_period_sec: 600 +2025/05/04-10:09:55.604387 40 Options.stats_persist_period_sec: 600 +2025/05/04-10:09:55.604387 40 Options.stats_history_buffer_size: 1048576 +2025/05/04-10:09:55.604388 40 Options.max_open_files: 256 +2025/05/04-10:09:55.604389 40 Options.bytes_per_sync: 0 +2025/05/04-10:09:55.604389 40 Options.wal_bytes_per_sync: 0 +2025/05/04-10:09:55.604390 40 Options.strict_bytes_per_sync: 0 +2025/05/04-10:09:55.604391 40 Options.compaction_readahead_size: 2097152 +2025/05/04-10:09:55.604392 40 Options.max_background_flushes: -1 +2025/05/04-10:09:55.604392 40 Options.daily_offpeak_time_utc: +2025/05/04-10:09:55.604393 40 Compression algorithms supported: +2025/05/04-10:09:55.604394 40 kZSTD supported: 0 +2025/05/04-10:09:55.604395 40 kXpressCompression supported: 0 +2025/05/04-10:09:55.604396 40 kBZip2Compression supported: 0 +2025/05/04-10:09:55.604396 40 kZSTDNotFinalCompression supported: 0 +2025/05/04-10:09:55.604397 40 kLZ4Compression supported: 1 +2025/05/04-10:09:55.604398 40 kZlibCompression supported: 0 +2025/05/04-10:09:55.604398 40 kLZ4HCCompression supported: 1 +2025/05/04-10:09:55.604399 40 kSnappyCompression supported: 1 +2025/05/04-10:09:55.604402 40 Fast CRC32 supported: Not supported on x86 +2025/05/04-10:09:55.604404 40 DMutex implementation: pthread_mutex_t +2025/05/04-10:09:55.604404 40 Jemalloc supported: 0 +2025/05/04-10:09:55.610713 40 Options.comparator: leveldb.BytewiseComparator +2025/05/04-10:09:55.610983 40 Options.merge_operator: None +2025/05/04-10:09:55.610984 40 Options.compaction_filter: None +2025/05/04-10:09:55.610985 40 Options.compaction_filter_factory: None +2025/05/04-10:09:55.610986 40 Options.sst_partitioner_factory: None +2025/05/04-10:09:55.610987 40 Options.memtable_factory: SkipListFactory +2025/05/04-10:09:55.610988 40 Options.table_factory: BlockBasedTable +2025/05/04-10:09:55.611007 40 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff84000060) + cache_index_and_filter_blocks: 0 + cache_index_and_filter_blocks_with_high_priority: 1 + pin_l0_filter_and_index_blocks_in_cache: 0 + pin_top_level_index_and_filter: 1 + index_type: 0 + data_block_index_type: 0 + index_shortening: 1 + data_block_hash_table_util_ratio: 0.750000 + checksum: 4 + no_block_cache: 0 + block_cache: 0xffff84009010 + block_cache_name: LRUCache + block_cache_options: + capacity : 33554432 + num_shard_bits : 6 + strict_capacity_limit : 0 + memory_allocator : None + high_pri_pool_ratio: 0.500 + low_pri_pool_ratio: 0.000 + persistent_cache: (nil) + block_size: 4096 + block_size_deviation: 10 + block_restart_interval: 16 + index_block_restart_interval: 1 + metadata_block_size: 4096 + partition_filters: 0 + use_delta_encoding: 1 + filter_policy: nullptr + whole_key_filtering: 1 + verify_compression: 0 + read_amp_bytes_per_bit: 0 + format_version: 6 + enable_index_compression: 1 + block_align: 0 + max_auto_readahead_size: 262144 + prepopulate_block_cache: 0 + initial_auto_readahead_size: 8192 + num_file_reads_for_auto_readahead: 2 +2025/05/04-10:09:55.611009 40 Options.write_buffer_size: 10485760 +2025/05/04-10:09:55.611011 40 Options.max_write_buffer_number: 2 +2025/05/04-10:09:55.611011 40 Options.compression: LZ4 +2025/05/04-10:09:55.611012 40 Options.bottommost_compression: Disabled +2025/05/04-10:09:55.611013 40 Options.prefix_extractor: nullptr +2025/05/04-10:09:55.611014 40 Options.memtable_insert_with_hint_prefix_extractor: nullptr +2025/05/04-10:09:55.611014 40 Options.num_levels: 7 +2025/05/04-10:09:55.611015 40 Options.min_write_buffer_number_to_merge: 1 +2025/05/04-10:09:55.611015 40 Options.max_write_buffer_number_to_maintain: 0 +2025/05/04-10:09:55.611016 40 Options.max_write_buffer_size_to_maintain: 0 +2025/05/04-10:09:55.611017 40 Options.bottommost_compression_opts.window_bits: -14 +2025/05/04-10:09:55.611018 40 Options.bottommost_compression_opts.level: 32767 +2025/05/04-10:09:55.611018 40 Options.bottommost_compression_opts.strategy: 0 +2025/05/04-10:09:55.611019 40 Options.bottommost_compression_opts.max_dict_bytes: 0 +2025/05/04-10:09:55.611020 40 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 +2025/05/04-10:09:55.611020 40 Options.bottommost_compression_opts.parallel_threads: 1 +2025/05/04-10:09:55.611021 40 Options.bottommost_compression_opts.enabled: false +2025/05/04-10:09:55.611022 40 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 +2025/05/04-10:09:55.611023 40 Options.bottommost_compression_opts.use_zstd_dict_trainer: true +2025/05/04-10:09:55.611023 40 Options.compression_opts.window_bits: -14 +2025/05/04-10:09:55.611025 40 Options.compression_opts.level: 32767 +2025/05/04-10:09:55.611026 40 Options.compression_opts.strategy: 0 +2025/05/04-10:09:55.611027 40 Options.compression_opts.max_dict_bytes: 0 +2025/05/04-10:09:55.611027 40 Options.compression_opts.zstd_max_train_bytes: 0 +2025/05/04-10:09:55.611028 40 Options.compression_opts.use_zstd_dict_trainer: true +2025/05/04-10:09:55.611028 40 Options.compression_opts.parallel_threads: 1 +2025/05/04-10:09:55.611029 40 Options.compression_opts.enabled: false +2025/05/04-10:09:55.611030 40 Options.compression_opts.max_dict_buffer_bytes: 0 +2025/05/04-10:09:55.611030 40 Options.level0_file_num_compaction_trigger: 4 +2025/05/04-10:09:55.611031 40 Options.level0_slowdown_writes_trigger: 20 +2025/05/04-10:09:55.611031 40 Options.level0_stop_writes_trigger: 36 +2025/05/04-10:09:55.611032 40 Options.target_file_size_base: 67108864 +2025/05/04-10:09:55.611033 40 Options.target_file_size_multiplier: 1 +2025/05/04-10:09:55.611033 40 Options.max_bytes_for_level_base: 268435456 +2025/05/04-10:09:55.611034 40 Options.level_compaction_dynamic_level_bytes: 1 +2025/05/04-10:09:55.611035 40 Options.max_bytes_for_level_multiplier: 10.000000 +2025/05/04-10:09:55.611036 40 Options.max_bytes_for_level_multiplier_addtl[0]: 1 +2025/05/04-10:09:55.611036 40 Options.max_bytes_for_level_multiplier_addtl[1]: 1 +2025/05/04-10:09:55.611037 40 Options.max_bytes_for_level_multiplier_addtl[2]: 1 +2025/05/04-10:09:55.611037 40 Options.max_bytes_for_level_multiplier_addtl[3]: 1 +2025/05/04-10:09:55.611038 40 Options.max_bytes_for_level_multiplier_addtl[4]: 1 +2025/05/04-10:09:55.611038 40 Options.max_bytes_for_level_multiplier_addtl[5]: 1 +2025/05/04-10:09:55.611040 40 Options.max_bytes_for_level_multiplier_addtl[6]: 1 +2025/05/04-10:09:55.611042 40 Options.max_sequential_skip_in_iterations: 8 +2025/05/04-10:09:55.611043 40 Options.max_compaction_bytes: 1677721600 +2025/05/04-10:09:55.611043 40 Options.arena_block_size: 1048576 +2025/05/04-10:09:55.611044 40 Options.soft_pending_compaction_bytes_limit: 68719476736 +2025/05/04-10:09:55.611045 40 Options.hard_pending_compaction_bytes_limit: 274877906944 +2025/05/04-10:09:55.611045 40 Options.disable_auto_compactions: 0 +2025/05/04-10:09:55.611046 40 Options.compaction_style: kCompactionStyleLevel +2025/05/04-10:09:55.611047 40 Options.compaction_pri: kMinOverlappingRatio +2025/05/04-10:09:55.611048 40 Options.compaction_options_universal.size_ratio: 1 +2025/05/04-10:09:55.611048 40 Options.compaction_options_universal.min_merge_width: 2 +2025/05/04-10:09:55.611049 40 Options.compaction_options_universal.max_merge_width: 4294967295 +2025/05/04-10:09:55.611050 40 Options.compaction_options_universal.max_size_amplification_percent: 200 +2025/05/04-10:09:55.611051 40 Options.compaction_options_universal.compression_size_percent: -1 +2025/05/04-10:09:55.611051 40 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize +2025/05/04-10:09:55.611052 40 Options.compaction_options_universal.max_read_amp: -1 +2025/05/04-10:09:55.611053 40 Options.compaction_options_fifo.max_table_files_size: 1073741824 +2025/05/04-10:09:55.611053 40 Options.compaction_options_fifo.allow_compaction: 0 +2025/05/04-10:09:55.611055 40 Options.table_properties_collectors: +2025/05/04-10:09:55.611056 40 Options.inplace_update_support: 0 +2025/05/04-10:09:55.611057 40 Options.inplace_update_num_locks: 10000 +2025/05/04-10:09:55.611057 40 Options.memtable_prefix_bloom_size_ratio: 0.000000 +2025/05/04-10:09:55.611058 40 Options.memtable_whole_key_filtering: 0 +2025/05/04-10:09:55.611059 40 Options.memtable_huge_page_size: 0 +2025/05/04-10:09:55.611059 40 Options.bloom_locality: 0 +2025/05/04-10:09:55.611060 40 Options.max_successive_merges: 0 +2025/05/04-10:09:55.611061 40 Options.strict_max_successive_merges: 0 +2025/05/04-10:09:55.611061 40 Options.optimize_filters_for_hits: 0 +2025/05/04-10:09:55.611062 40 Options.paranoid_file_checks: 0 +2025/05/04-10:09:55.611062 40 Options.force_consistency_checks: 1 +2025/05/04-10:09:55.611063 40 Options.report_bg_io_stats: 0 +2025/05/04-10:09:55.611064 40 Options.ttl: 2592000 +2025/05/04-10:09:55.611064 40 Options.periodic_compaction_seconds: 0 +2025/05/04-10:09:55.611065 40 Options.default_temperature: kUnknown +2025/05/04-10:09:55.611066 40 Options.preclude_last_level_data_seconds: 0 +2025/05/04-10:09:55.611066 40 Options.preserve_internal_time_seconds: 0 +2025/05/04-10:09:55.611067 40 Options.enable_blob_files: false +2025/05/04-10:09:55.611068 40 Options.min_blob_size: 0 +2025/05/04-10:09:55.611068 40 Options.blob_file_size: 268435456 +2025/05/04-10:09:55.611069 40 Options.blob_compression_type: NoCompression +2025/05/04-10:09:55.611069 40 Options.enable_blob_garbage_collection: false +2025/05/04-10:09:55.611070 40 Options.blob_garbage_collection_age_cutoff: 0.250000 +2025/05/04-10:09:55.611071 40 Options.blob_garbage_collection_force_threshold: 1.000000 +2025/05/04-10:09:55.611072 40 Options.blob_compaction_readahead_size: 0 +2025/05/04-10:09:55.611072 40 Options.blob_file_starting_level: 0 +2025/05/04-10:09:55.611073 40 Options.experimental_mempurge_threshold: 0.000000 +2025/05/04-10:09:55.611073 40 Options.memtable_max_range_deletions: 0 +2025/05/04-10:09:55.611264 40 Options.comparator: leveldb.BytewiseComparator +2025/05/04-10:09:55.611265 40 Options.merge_operator: None +2025/05/04-10:09:55.611266 40 Options.compaction_filter: None +2025/05/04-10:09:55.611266 40 Options.compaction_filter_factory: None +2025/05/04-10:09:55.611267 40 Options.sst_partitioner_factory: None +2025/05/04-10:09:55.611268 40 Options.memtable_factory: SkipListFactory +2025/05/04-10:09:55.611268 40 Options.table_factory: BlockBasedTable +2025/05/04-10:09:55.611276 40 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff84000060) + cache_index_and_filter_blocks: 0 + cache_index_and_filter_blocks_with_high_priority: 1 + pin_l0_filter_and_index_blocks_in_cache: 0 + pin_top_level_index_and_filter: 1 + index_type: 0 + data_block_index_type: 0 + index_shortening: 1 + data_block_hash_table_util_ratio: 0.750000 + checksum: 4 + no_block_cache: 0 + block_cache: 0xffff84009010 + block_cache_name: LRUCache + block_cache_options: + capacity : 33554432 + num_shard_bits : 6 + strict_capacity_limit : 0 + memory_allocator : None + high_pri_pool_ratio: 0.500 + low_pri_pool_ratio: 0.000 + persistent_cache: (nil) + block_size: 4096 + block_size_deviation: 10 + block_restart_interval: 16 + index_block_restart_interval: 1 + metadata_block_size: 4096 + partition_filters: 0 + use_delta_encoding: 1 + filter_policy: nullptr + whole_key_filtering: 1 + verify_compression: 0 + read_amp_bytes_per_bit: 0 + format_version: 6 + enable_index_compression: 1 + block_align: 0 + max_auto_readahead_size: 262144 + prepopulate_block_cache: 0 + initial_auto_readahead_size: 8192 + num_file_reads_for_auto_readahead: 2 +2025/05/04-10:09:55.611277 40 Options.write_buffer_size: 10485760 +2025/05/04-10:09:55.611278 40 Options.max_write_buffer_number: 2 +2025/05/04-10:09:55.611279 40 Options.compression: LZ4 +2025/05/04-10:09:55.611280 40 Options.bottommost_compression: Disabled +2025/05/04-10:09:55.611280 40 Options.prefix_extractor: nullptr +2025/05/04-10:09:55.611281 40 Options.memtable_insert_with_hint_prefix_extractor: nullptr +2025/05/04-10:09:55.611281 40 Options.num_levels: 7 +2025/05/04-10:09:55.611282 40 Options.min_write_buffer_number_to_merge: 1 +2025/05/04-10:09:55.611283 40 Options.max_write_buffer_number_to_maintain: 0 +2025/05/04-10:09:55.611283 40 Options.max_write_buffer_size_to_maintain: 0 +2025/05/04-10:09:55.611284 40 Options.bottommost_compression_opts.window_bits: -14 +2025/05/04-10:09:55.611285 40 Options.bottommost_compression_opts.level: 32767 +2025/05/04-10:09:55.611285 40 Options.bottommost_compression_opts.strategy: 0 +2025/05/04-10:09:55.611286 40 Options.bottommost_compression_opts.max_dict_bytes: 0 +2025/05/04-10:09:55.611287 40 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 +2025/05/04-10:09:55.611287 40 Options.bottommost_compression_opts.parallel_threads: 1 +2025/05/04-10:09:55.611288 40 Options.bottommost_compression_opts.enabled: false +2025/05/04-10:09:55.611289 40 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 +2025/05/04-10:09:55.611289 40 Options.bottommost_compression_opts.use_zstd_dict_trainer: true +2025/05/04-10:09:55.611291 40 Options.compression_opts.window_bits: -14 +2025/05/04-10:09:55.611292 40 Options.compression_opts.level: 32767 +2025/05/04-10:09:55.611293 40 Options.compression_opts.strategy: 0 +2025/05/04-10:09:55.611294 40 Options.compression_opts.max_dict_bytes: 0 +2025/05/04-10:09:55.611295 40 Options.compression_opts.zstd_max_train_bytes: 0 +2025/05/04-10:09:55.611295 40 Options.compression_opts.use_zstd_dict_trainer: true +2025/05/04-10:09:55.611296 40 Options.compression_opts.parallel_threads: 1 +2025/05/04-10:09:55.611297 40 Options.compression_opts.enabled: false +2025/05/04-10:09:55.611298 40 Options.compression_opts.max_dict_buffer_bytes: 0 +2025/05/04-10:09:55.611299 40 Options.level0_file_num_compaction_trigger: 4 +2025/05/04-10:09:55.611299 40 Options.level0_slowdown_writes_trigger: 20 +2025/05/04-10:09:55.611301 40 Options.level0_stop_writes_trigger: 36 +2025/05/04-10:09:55.611301 40 Options.target_file_size_base: 67108864 +2025/05/04-10:09:55.611302 40 Options.target_file_size_multiplier: 1 +2025/05/04-10:09:55.611303 40 Options.max_bytes_for_level_base: 268435456 +2025/05/04-10:09:55.611304 40 Options.level_compaction_dynamic_level_bytes: 1 +2025/05/04-10:09:55.611305 40 Options.max_bytes_for_level_multiplier: 10.000000 +2025/05/04-10:09:55.611306 40 Options.max_bytes_for_level_multiplier_addtl[0]: 1 +2025/05/04-10:09:55.611306 40 Options.max_bytes_for_level_multiplier_addtl[1]: 1 +2025/05/04-10:09:55.611307 40 Options.max_bytes_for_level_multiplier_addtl[2]: 1 +2025/05/04-10:09:55.611307 40 Options.max_bytes_for_level_multiplier_addtl[3]: 1 +2025/05/04-10:09:55.611308 40 Options.max_bytes_for_level_multiplier_addtl[4]: 1 +2025/05/04-10:09:55.611309 40 Options.max_bytes_for_level_multiplier_addtl[5]: 1 +2025/05/04-10:09:55.611309 40 Options.max_bytes_for_level_multiplier_addtl[6]: 1 +2025/05/04-10:09:55.611310 40 Options.max_sequential_skip_in_iterations: 8 +2025/05/04-10:09:55.611310 40 Options.max_compaction_bytes: 1677721600 +2025/05/04-10:09:55.611311 40 Options.arena_block_size: 1048576 +2025/05/04-10:09:55.611312 40 Options.soft_pending_compaction_bytes_limit: 68719476736 +2025/05/04-10:09:55.611312 40 Options.hard_pending_compaction_bytes_limit: 274877906944 +2025/05/04-10:09:55.611313 40 Options.disable_auto_compactions: 0 +2025/05/04-10:09:55.611314 40 Options.compaction_style: kCompactionStyleLevel +2025/05/04-10:09:55.611315 40 Options.compaction_pri: kMinOverlappingRatio +2025/05/04-10:09:55.611315 40 Options.compaction_options_universal.size_ratio: 1 +2025/05/04-10:09:55.611316 40 Options.compaction_options_universal.min_merge_width: 2 +2025/05/04-10:09:55.611316 40 Options.compaction_options_universal.max_merge_width: 4294967295 +2025/05/04-10:09:55.611317 40 Options.compaction_options_universal.max_size_amplification_percent: 200 +2025/05/04-10:09:55.611318 40 Options.compaction_options_universal.compression_size_percent: -1 +2025/05/04-10:09:55.611318 40 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize +2025/05/04-10:09:55.611319 40 Options.compaction_options_universal.max_read_amp: -1 +2025/05/04-10:09:55.611319 40 Options.compaction_options_fifo.max_table_files_size: 1073741824 +2025/05/04-10:09:55.611320 40 Options.compaction_options_fifo.allow_compaction: 0 +2025/05/04-10:09:55.611321 40 Options.table_properties_collectors: +2025/05/04-10:09:55.611323 40 Options.inplace_update_support: 0 +2025/05/04-10:09:55.611323 40 Options.inplace_update_num_locks: 10000 +2025/05/04-10:09:55.611324 40 Options.memtable_prefix_bloom_size_ratio: 0.000000 +2025/05/04-10:09:55.611325 40 Options.memtable_whole_key_filtering: 0 +2025/05/04-10:09:55.611326 40 Options.memtable_huge_page_size: 0 +2025/05/04-10:09:55.611327 40 Options.bloom_locality: 0 +2025/05/04-10:09:55.611328 40 Options.max_successive_merges: 0 +2025/05/04-10:09:55.611329 40 Options.strict_max_successive_merges: 0 +2025/05/04-10:09:55.611330 40 Options.optimize_filters_for_hits: 0 +2025/05/04-10:09:55.611331 40 Options.paranoid_file_checks: 0 +2025/05/04-10:09:55.611332 40 Options.force_consistency_checks: 1 +2025/05/04-10:09:55.611332 40 Options.report_bg_io_stats: 0 +2025/05/04-10:09:55.611333 40 Options.ttl: 2592000 +2025/05/04-10:09:55.611333 40 Options.periodic_compaction_seconds: 0 +2025/05/04-10:09:55.611334 40 Options.default_temperature: kUnknown +2025/05/04-10:09:55.611335 40 Options.preclude_last_level_data_seconds: 0 +2025/05/04-10:09:55.611335 40 Options.preserve_internal_time_seconds: 0 +2025/05/04-10:09:55.611336 40 Options.enable_blob_files: false +2025/05/04-10:09:55.611336 40 Options.min_blob_size: 0 +2025/05/04-10:09:55.611337 40 Options.blob_file_size: 268435456 +2025/05/04-10:09:55.611338 40 Options.blob_compression_type: NoCompression +2025/05/04-10:09:55.611338 40 Options.enable_blob_garbage_collection: false +2025/05/04-10:09:55.611339 40 Options.blob_garbage_collection_age_cutoff: 0.250000 +2025/05/04-10:09:55.611339 40 Options.blob_garbage_collection_force_threshold: 1.000000 +2025/05/04-10:09:55.611340 40 Options.blob_compaction_readahead_size: 0 +2025/05/04-10:09:55.611341 40 Options.blob_file_starting_level: 0 +2025/05/04-10:09:55.611341 40 Options.experimental_mempurge_threshold: 0.000000 +2025/05/04-10:09:55.611342 40 Options.memtable_max_range_deletions: 0 +2025/05/04-10:09:55.611363 40 Options.comparator: leveldb.BytewiseComparator +2025/05/04-10:09:55.611364 40 Options.merge_operator: None +2025/05/04-10:09:55.611364 40 Options.compaction_filter: None +2025/05/04-10:09:55.611365 40 Options.compaction_filter_factory: None +2025/05/04-10:09:55.611365 40 Options.sst_partitioner_factory: None +2025/05/04-10:09:55.611366 40 Options.memtable_factory: SkipListFactory +2025/05/04-10:09:55.611366 40 Options.table_factory: BlockBasedTable +2025/05/04-10:09:55.611372 40 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff84000060) + cache_index_and_filter_blocks: 0 + cache_index_and_filter_blocks_with_high_priority: 1 + pin_l0_filter_and_index_blocks_in_cache: 0 + pin_top_level_index_and_filter: 1 + index_type: 0 + data_block_index_type: 0 + index_shortening: 1 + data_block_hash_table_util_ratio: 0.750000 + checksum: 4 + no_block_cache: 0 + block_cache: 0xffff84009010 + block_cache_name: LRUCache + block_cache_options: + capacity : 33554432 + num_shard_bits : 6 + strict_capacity_limit : 0 + memory_allocator : None + high_pri_pool_ratio: 0.500 + low_pri_pool_ratio: 0.000 + persistent_cache: (nil) + block_size: 4096 + block_size_deviation: 10 + block_restart_interval: 16 + index_block_restart_interval: 1 + metadata_block_size: 4096 + partition_filters: 0 + use_delta_encoding: 1 + filter_policy: nullptr + whole_key_filtering: 1 + verify_compression: 0 + read_amp_bytes_per_bit: 0 + format_version: 6 + enable_index_compression: 1 + block_align: 0 + max_auto_readahead_size: 262144 + prepopulate_block_cache: 0 + initial_auto_readahead_size: 8192 + num_file_reads_for_auto_readahead: 2 +2025/05/04-10:09:55.611373 40 Options.write_buffer_size: 10485760 +2025/05/04-10:09:55.611374 40 Options.max_write_buffer_number: 2 +2025/05/04-10:09:55.611374 40 Options.compression: LZ4 +2025/05/04-10:09:55.611375 40 Options.bottommost_compression: Disabled +2025/05/04-10:09:55.611375 40 Options.prefix_extractor: nullptr +2025/05/04-10:09:55.611376 40 Options.memtable_insert_with_hint_prefix_extractor: nullptr +2025/05/04-10:09:55.611377 40 Options.num_levels: 7 +2025/05/04-10:09:55.611377 40 Options.min_write_buffer_number_to_merge: 1 +2025/05/04-10:09:55.611378 40 Options.max_write_buffer_number_to_maintain: 0 +2025/05/04-10:09:55.611378 40 Options.max_write_buffer_size_to_maintain: 0 +2025/05/04-10:09:55.611379 40 Options.bottommost_compression_opts.window_bits: -14 +2025/05/04-10:09:55.611379 40 Options.bottommost_compression_opts.level: 32767 +2025/05/04-10:09:55.611380 40 Options.bottommost_compression_opts.strategy: 0 +2025/05/04-10:09:55.611380 40 Options.bottommost_compression_opts.max_dict_bytes: 0 +2025/05/04-10:09:55.611381 40 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 +2025/05/04-10:09:55.611382 40 Options.bottommost_compression_opts.parallel_threads: 1 +2025/05/04-10:09:55.611382 40 Options.bottommost_compression_opts.enabled: false +2025/05/04-10:09:55.611383 40 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 +2025/05/04-10:09:55.611383 40 Options.bottommost_compression_opts.use_zstd_dict_trainer: true +2025/05/04-10:09:55.611384 40 Options.compression_opts.window_bits: -14 +2025/05/04-10:09:55.611384 40 Options.compression_opts.level: 32767 +2025/05/04-10:09:55.611385 40 Options.compression_opts.strategy: 0 +2025/05/04-10:09:55.611385 40 Options.compression_opts.max_dict_bytes: 0 +2025/05/04-10:09:55.611386 40 Options.compression_opts.zstd_max_train_bytes: 0 +2025/05/04-10:09:55.611386 40 Options.compression_opts.use_zstd_dict_trainer: true +2025/05/04-10:09:55.611387 40 Options.compression_opts.parallel_threads: 1 +2025/05/04-10:09:55.611387 40 Options.compression_opts.enabled: false +2025/05/04-10:09:55.611388 40 Options.compression_opts.max_dict_buffer_bytes: 0 +2025/05/04-10:09:55.611388 40 Options.level0_file_num_compaction_trigger: 4 +2025/05/04-10:09:55.611389 40 Options.level0_slowdown_writes_trigger: 20 +2025/05/04-10:09:55.611389 40 Options.level0_stop_writes_trigger: 36 +2025/05/04-10:09:55.611390 40 Options.target_file_size_base: 67108864 +2025/05/04-10:09:55.611390 40 Options.target_file_size_multiplier: 1 +2025/05/04-10:09:55.611391 40 Options.max_bytes_for_level_base: 268435456 +2025/05/04-10:09:55.611391 40 Options.level_compaction_dynamic_level_bytes: 1 +2025/05/04-10:09:55.611392 40 Options.max_bytes_for_level_multiplier: 10.000000 +2025/05/04-10:09:55.611393 40 Options.max_bytes_for_level_multiplier_addtl[0]: 1 +2025/05/04-10:09:55.611393 40 Options.max_bytes_for_level_multiplier_addtl[1]: 1 +2025/05/04-10:09:55.611394 40 Options.max_bytes_for_level_multiplier_addtl[2]: 1 +2025/05/04-10:09:55.611394 40 Options.max_bytes_for_level_multiplier_addtl[3]: 1 +2025/05/04-10:09:55.611395 40 Options.max_bytes_for_level_multiplier_addtl[4]: 1 +2025/05/04-10:09:55.611395 40 Options.max_bytes_for_level_multiplier_addtl[5]: 1 +2025/05/04-10:09:55.611396 40 Options.max_bytes_for_level_multiplier_addtl[6]: 1 +2025/05/04-10:09:55.611397 40 Options.max_sequential_skip_in_iterations: 8 +2025/05/04-10:09:55.611399 40 Options.max_compaction_bytes: 1677721600 +2025/05/04-10:09:55.611399 40 Options.arena_block_size: 1048576 +2025/05/04-10:09:55.611400 40 Options.soft_pending_compaction_bytes_limit: 68719476736 +2025/05/04-10:09:55.611400 40 Options.hard_pending_compaction_bytes_limit: 274877906944 +2025/05/04-10:09:55.611401 40 Options.disable_auto_compactions: 0 +2025/05/04-10:09:55.611401 40 Options.compaction_style: kCompactionStyleLevel +2025/05/04-10:09:55.611402 40 Options.compaction_pri: kMinOverlappingRatio +2025/05/04-10:09:55.611403 40 Options.compaction_options_universal.size_ratio: 1 +2025/05/04-10:09:55.611403 40 Options.compaction_options_universal.min_merge_width: 2 +2025/05/04-10:09:55.611404 40 Options.compaction_options_universal.max_merge_width: 4294967295 +2025/05/04-10:09:55.611406 40 Options.compaction_options_universal.max_size_amplification_percent: 200 +2025/05/04-10:09:55.611406 40 Options.compaction_options_universal.compression_size_percent: -1 +2025/05/04-10:09:55.611407 40 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize +2025/05/04-10:09:55.611408 40 Options.compaction_options_universal.max_read_amp: -1 +2025/05/04-10:09:55.611408 40 Options.compaction_options_fifo.max_table_files_size: 1073741824 +2025/05/04-10:09:55.611409 40 Options.compaction_options_fifo.allow_compaction: 0 +2025/05/04-10:09:55.611410 40 Options.table_properties_collectors: +2025/05/04-10:09:55.611411 40 Options.inplace_update_support: 0 +2025/05/04-10:09:55.611411 40 Options.inplace_update_num_locks: 10000 +2025/05/04-10:09:55.611412 40 Options.memtable_prefix_bloom_size_ratio: 0.000000 +2025/05/04-10:09:55.611412 40 Options.memtable_whole_key_filtering: 0 +2025/05/04-10:09:55.611413 40 Options.memtable_huge_page_size: 0 +2025/05/04-10:09:55.611414 40 Options.bloom_locality: 0 +2025/05/04-10:09:55.611414 40 Options.max_successive_merges: 0 +2025/05/04-10:09:55.611415 40 Options.strict_max_successive_merges: 0 +2025/05/04-10:09:55.611415 40 Options.optimize_filters_for_hits: 0 +2025/05/04-10:09:55.611416 40 Options.paranoid_file_checks: 0 +2025/05/04-10:09:55.611416 40 Options.force_consistency_checks: 1 +2025/05/04-10:09:55.611417 40 Options.report_bg_io_stats: 0 +2025/05/04-10:09:55.611417 40 Options.ttl: 2592000 +2025/05/04-10:09:55.611418 40 Options.periodic_compaction_seconds: 0 +2025/05/04-10:09:55.611418 40 Options.default_temperature: kUnknown +2025/05/04-10:09:55.611419 40 Options.preclude_last_level_data_seconds: 0 +2025/05/04-10:09:55.611420 40 Options.preserve_internal_time_seconds: 0 +2025/05/04-10:09:55.611420 40 Options.enable_blob_files: false +2025/05/04-10:09:55.611421 40 Options.min_blob_size: 0 +2025/05/04-10:09:55.611421 40 Options.blob_file_size: 268435456 +2025/05/04-10:09:55.611422 40 Options.blob_compression_type: NoCompression +2025/05/04-10:09:55.611422 40 Options.enable_blob_garbage_collection: false +2025/05/04-10:09:55.611423 40 Options.blob_garbage_collection_age_cutoff: 0.250000 +2025/05/04-10:09:55.611423 40 Options.blob_garbage_collection_force_threshold: 1.000000 +2025/05/04-10:09:55.611425 40 Options.blob_compaction_readahead_size: 0 +2025/05/04-10:09:55.611426 40 Options.blob_file_starting_level: 0 +2025/05/04-10:09:55.611427 40 Options.experimental_mempurge_threshold: 0.000000 +2025/05/04-10:09:55.611427 40 Options.memtable_max_range_deletions: 0 +2025/05/04-10:09:55.611443 40 Options.comparator: leveldb.BytewiseComparator +2025/05/04-10:09:55.611443 40 Options.merge_operator: None +2025/05/04-10:09:55.611444 40 Options.compaction_filter: None +2025/05/04-10:09:55.611444 40 Options.compaction_filter_factory: None +2025/05/04-10:09:55.611445 40 Options.sst_partitioner_factory: None +2025/05/04-10:09:55.611446 40 Options.memtable_factory: SkipListFactory +2025/05/04-10:09:55.611446 40 Options.table_factory: BlockBasedTable +2025/05/04-10:09:55.611453 40 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff84000060) + cache_index_and_filter_blocks: 0 + cache_index_and_filter_blocks_with_high_priority: 1 + pin_l0_filter_and_index_blocks_in_cache: 0 + pin_top_level_index_and_filter: 1 + index_type: 0 + data_block_index_type: 0 + index_shortening: 1 + data_block_hash_table_util_ratio: 0.750000 + checksum: 4 + no_block_cache: 0 + block_cache: 0xffff84009010 + block_cache_name: LRUCache + block_cache_options: + capacity : 33554432 + num_shard_bits : 6 + strict_capacity_limit : 0 + memory_allocator : None + high_pri_pool_ratio: 0.500 + low_pri_pool_ratio: 0.000 + persistent_cache: (nil) + block_size: 4096 + block_size_deviation: 10 + block_restart_interval: 16 + index_block_restart_interval: 1 + metadata_block_size: 4096 + partition_filters: 0 + use_delta_encoding: 1 + filter_policy: nullptr + whole_key_filtering: 1 + verify_compression: 0 + read_amp_bytes_per_bit: 0 + format_version: 6 + enable_index_compression: 1 + block_align: 0 + max_auto_readahead_size: 262144 + prepopulate_block_cache: 0 + initial_auto_readahead_size: 8192 + num_file_reads_for_auto_readahead: 2 +2025/05/04-10:09:55.611454 40 Options.write_buffer_size: 10485760 +2025/05/04-10:09:55.611455 40 Options.max_write_buffer_number: 2 +2025/05/04-10:09:55.611456 40 Options.compression: LZ4 +2025/05/04-10:09:55.611456 40 Options.bottommost_compression: Disabled +2025/05/04-10:09:55.611457 40 Options.prefix_extractor: nullptr +2025/05/04-10:09:55.611457 40 Options.memtable_insert_with_hint_prefix_extractor: nullptr +2025/05/04-10:09:55.611458 40 Options.num_levels: 7 +2025/05/04-10:09:55.611458 40 Options.min_write_buffer_number_to_merge: 1 +2025/05/04-10:09:55.611459 40 Options.max_write_buffer_number_to_maintain: 0 +2025/05/04-10:09:55.611459 40 Options.max_write_buffer_size_to_maintain: 0 +2025/05/04-10:09:55.611460 40 Options.bottommost_compression_opts.window_bits: -14 +2025/05/04-10:09:55.611460 40 Options.bottommost_compression_opts.level: 32767 +2025/05/04-10:09:55.611461 40 Options.bottommost_compression_opts.strategy: 0 +2025/05/04-10:09:55.611461 40 Options.bottommost_compression_opts.max_dict_bytes: 0 +2025/05/04-10:09:55.611462 40 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 +2025/05/04-10:09:55.611462 40 Options.bottommost_compression_opts.parallel_threads: 1 +2025/05/04-10:09:55.611463 40 Options.bottommost_compression_opts.enabled: false +2025/05/04-10:09:55.611463 40 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 +2025/05/04-10:09:55.611464 40 Options.bottommost_compression_opts.use_zstd_dict_trainer: true +2025/05/04-10:09:55.611465 40 Options.compression_opts.window_bits: -14 +2025/05/04-10:09:55.611465 40 Options.compression_opts.level: 32767 +2025/05/04-10:09:55.611466 40 Options.compression_opts.strategy: 0 +2025/05/04-10:09:55.611466 40 Options.compression_opts.max_dict_bytes: 0 +2025/05/04-10:09:55.611467 40 Options.compression_opts.zstd_max_train_bytes: 0 +2025/05/04-10:09:55.611467 40 Options.compression_opts.use_zstd_dict_trainer: true +2025/05/04-10:09:55.611468 40 Options.compression_opts.parallel_threads: 1 +2025/05/04-10:09:55.611468 40 Options.compression_opts.enabled: false +2025/05/04-10:09:55.611469 40 Options.compression_opts.max_dict_buffer_bytes: 0 +2025/05/04-10:09:55.611469 40 Options.level0_file_num_compaction_trigger: 4 +2025/05/04-10:09:55.611471 40 Options.level0_slowdown_writes_trigger: 20 +2025/05/04-10:09:55.611472 40 Options.level0_stop_writes_trigger: 36 +2025/05/04-10:09:55.611472 40 Options.target_file_size_base: 67108864 +2025/05/04-10:09:55.611473 40 Options.target_file_size_multiplier: 1 +2025/05/04-10:09:55.611473 40 Options.max_bytes_for_level_base: 268435456 +2025/05/04-10:09:55.611474 40 Options.level_compaction_dynamic_level_bytes: 1 +2025/05/04-10:09:55.611475 40 Options.max_bytes_for_level_multiplier: 10.000000 +2025/05/04-10:09:55.611475 40 Options.max_bytes_for_level_multiplier_addtl[0]: 1 +2025/05/04-10:09:55.611476 40 Options.max_bytes_for_level_multiplier_addtl[1]: 1 +2025/05/04-10:09:55.611477 40 Options.max_bytes_for_level_multiplier_addtl[2]: 1 +2025/05/04-10:09:55.611477 40 Options.max_bytes_for_level_multiplier_addtl[3]: 1 +2025/05/04-10:09:55.611478 40 Options.max_bytes_for_level_multiplier_addtl[4]: 1 +2025/05/04-10:09:55.611478 40 Options.max_bytes_for_level_multiplier_addtl[5]: 1 +2025/05/04-10:09:55.611480 40 Options.max_bytes_for_level_multiplier_addtl[6]: 1 +2025/05/04-10:09:55.611481 40 Options.max_sequential_skip_in_iterations: 8 +2025/05/04-10:09:55.611482 40 Options.max_compaction_bytes: 1677721600 +2025/05/04-10:09:55.611484 40 Options.arena_block_size: 1048576 +2025/05/04-10:09:55.611484 40 Options.soft_pending_compaction_bytes_limit: 68719476736 +2025/05/04-10:09:55.611485 40 Options.hard_pending_compaction_bytes_limit: 274877906944 +2025/05/04-10:09:55.611486 40 Options.disable_auto_compactions: 0 +2025/05/04-10:09:55.611486 40 Options.compaction_style: kCompactionStyleLevel +2025/05/04-10:09:55.611487 40 Options.compaction_pri: kMinOverlappingRatio +2025/05/04-10:09:55.611487 40 Options.compaction_options_universal.size_ratio: 1 +2025/05/04-10:09:55.611488 40 Options.compaction_options_universal.min_merge_width: 2 +2025/05/04-10:09:55.611488 40 Options.compaction_options_universal.max_merge_width: 4294967295 +2025/05/04-10:09:55.611489 40 Options.compaction_options_universal.max_size_amplification_percent: 200 +2025/05/04-10:09:55.611490 40 Options.compaction_options_universal.compression_size_percent: -1 +2025/05/04-10:09:55.611490 40 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize +2025/05/04-10:09:55.611491 40 Options.compaction_options_universal.max_read_amp: -1 +2025/05/04-10:09:55.611491 40 Options.compaction_options_fifo.max_table_files_size: 1073741824 +2025/05/04-10:09:55.611492 40 Options.compaction_options_fifo.allow_compaction: 0 +2025/05/04-10:09:55.611493 40 Options.table_properties_collectors: +2025/05/04-10:09:55.611493 40 Options.inplace_update_support: 0 +2025/05/04-10:09:55.611495 40 Options.inplace_update_num_locks: 10000 +2025/05/04-10:09:55.611497 40 Options.memtable_prefix_bloom_size_ratio: 0.000000 +2025/05/04-10:09:55.611498 40 Options.memtable_whole_key_filtering: 0 +2025/05/04-10:09:55.611498 40 Options.memtable_huge_page_size: 0 +2025/05/04-10:09:55.611499 40 Options.bloom_locality: 0 +2025/05/04-10:09:55.611499 40 Options.max_successive_merges: 0 +2025/05/04-10:09:55.611500 40 Options.strict_max_successive_merges: 0 +2025/05/04-10:09:55.611500 40 Options.optimize_filters_for_hits: 0 +2025/05/04-10:09:55.611501 40 Options.paranoid_file_checks: 0 +2025/05/04-10:09:55.611502 40 Options.force_consistency_checks: 1 +2025/05/04-10:09:55.611502 40 Options.report_bg_io_stats: 0 +2025/05/04-10:09:55.611503 40 Options.ttl: 2592000 +2025/05/04-10:09:55.611503 40 Options.periodic_compaction_seconds: 0 +2025/05/04-10:09:55.611504 40 Options.default_temperature: kUnknown +2025/05/04-10:09:55.611505 40 Options.preclude_last_level_data_seconds: 0 +2025/05/04-10:09:55.611505 40 Options.preserve_internal_time_seconds: 0 +2025/05/04-10:09:55.611506 40 Options.enable_blob_files: false +2025/05/04-10:09:55.611506 40 Options.min_blob_size: 0 +2025/05/04-10:09:55.611507 40 Options.blob_file_size: 268435456 +2025/05/04-10:09:55.611507 40 Options.blob_compression_type: NoCompression +2025/05/04-10:09:55.611508 40 Options.enable_blob_garbage_collection: false +2025/05/04-10:09:55.611508 40 Options.blob_garbage_collection_age_cutoff: 0.250000 +2025/05/04-10:09:55.611509 40 Options.blob_garbage_collection_force_threshold: 1.000000 +2025/05/04-10:09:55.611510 40 Options.blob_compaction_readahead_size: 0 +2025/05/04-10:09:55.611510 40 Options.blob_file_starting_level: 0 +2025/05/04-10:09:55.611511 40 Options.experimental_mempurge_threshold: 0.000000 +2025/05/04-10:09:55.611511 40 Options.memtable_max_range_deletions: 0 +2025/05/04-10:09:55.611527 40 Options.comparator: leveldb.BytewiseComparator +2025/05/04-10:09:55.611528 40 Options.merge_operator: None +2025/05/04-10:09:55.611529 40 Options.compaction_filter: None +2025/05/04-10:09:55.611529 40 Options.compaction_filter_factory: None +2025/05/04-10:09:55.611530 40 Options.sst_partitioner_factory: None +2025/05/04-10:09:55.611530 40 Options.memtable_factory: SkipListFactory +2025/05/04-10:09:55.611531 40 Options.table_factory: BlockBasedTable +2025/05/04-10:09:55.611536 40 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff84000060) + cache_index_and_filter_blocks: 0 + cache_index_and_filter_blocks_with_high_priority: 1 + pin_l0_filter_and_index_blocks_in_cache: 0 + pin_top_level_index_and_filter: 1 + index_type: 0 + data_block_index_type: 0 + index_shortening: 1 + data_block_hash_table_util_ratio: 0.750000 + checksum: 4 + no_block_cache: 0 + block_cache: 0xffff84009010 + block_cache_name: LRUCache + block_cache_options: + capacity : 33554432 + num_shard_bits : 6 + strict_capacity_limit : 0 + memory_allocator : None + high_pri_pool_ratio: 0.500 + low_pri_pool_ratio: 0.000 + persistent_cache: (nil) + block_size: 4096 + block_size_deviation: 10 + block_restart_interval: 16 + index_block_restart_interval: 1 + metadata_block_size: 4096 + partition_filters: 0 + use_delta_encoding: 1 + filter_policy: nullptr + whole_key_filtering: 1 + verify_compression: 0 + read_amp_bytes_per_bit: 0 + format_version: 6 + enable_index_compression: 1 + block_align: 0 + max_auto_readahead_size: 262144 + prepopulate_block_cache: 0 + initial_auto_readahead_size: 8192 + num_file_reads_for_auto_readahead: 2 +2025/05/04-10:09:55.611537 40 Options.write_buffer_size: 10485760 +2025/05/04-10:09:55.611538 40 Options.max_write_buffer_number: 2 +2025/05/04-10:09:55.611538 40 Options.compression: LZ4 +2025/05/04-10:09:55.611539 40 Options.bottommost_compression: Disabled +2025/05/04-10:09:55.611539 40 Options.prefix_extractor: nullptr +2025/05/04-10:09:55.611540 40 Options.memtable_insert_with_hint_prefix_extractor: nullptr +2025/05/04-10:09:55.611540 40 Options.num_levels: 7 +2025/05/04-10:09:55.611541 40 Options.min_write_buffer_number_to_merge: 1 +2025/05/04-10:09:55.611541 40 Options.max_write_buffer_number_to_maintain: 0 +2025/05/04-10:09:55.611542 40 Options.max_write_buffer_size_to_maintain: 0 +2025/05/04-10:09:55.611542 40 Options.bottommost_compression_opts.window_bits: -14 +2025/05/04-10:09:55.611543 40 Options.bottommost_compression_opts.level: 32767 +2025/05/04-10:09:55.611543 40 Options.bottommost_compression_opts.strategy: 0 +2025/05/04-10:09:55.611544 40 Options.bottommost_compression_opts.max_dict_bytes: 0 +2025/05/04-10:09:55.611544 40 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 +2025/05/04-10:09:55.611545 40 Options.bottommost_compression_opts.parallel_threads: 1 +2025/05/04-10:09:55.611545 40 Options.bottommost_compression_opts.enabled: false +2025/05/04-10:09:55.611546 40 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 +2025/05/04-10:09:55.611546 40 Options.bottommost_compression_opts.use_zstd_dict_trainer: true +2025/05/04-10:09:55.611547 40 Options.compression_opts.window_bits: -14 +2025/05/04-10:09:55.611548 40 Options.compression_opts.level: 32767 +2025/05/04-10:09:55.611548 40 Options.compression_opts.strategy: 0 +2025/05/04-10:09:55.611549 40 Options.compression_opts.max_dict_bytes: 0 +2025/05/04-10:09:55.611549 40 Options.compression_opts.zstd_max_train_bytes: 0 +2025/05/04-10:09:55.611550 40 Options.compression_opts.use_zstd_dict_trainer: true +2025/05/04-10:09:55.611550 40 Options.compression_opts.parallel_threads: 1 +2025/05/04-10:09:55.611551 40 Options.compression_opts.enabled: false +2025/05/04-10:09:55.611551 40 Options.compression_opts.max_dict_buffer_bytes: 0 +2025/05/04-10:09:55.611552 40 Options.level0_file_num_compaction_trigger: 4 +2025/05/04-10:09:55.611552 40 Options.level0_slowdown_writes_trigger: 20 +2025/05/04-10:09:55.611553 40 Options.level0_stop_writes_trigger: 36 +2025/05/04-10:09:55.611553 40 Options.target_file_size_base: 67108864 +2025/05/04-10:09:55.611554 40 Options.target_file_size_multiplier: 1 +2025/05/04-10:09:55.611555 40 Options.max_bytes_for_level_base: 268435456 +2025/05/04-10:09:55.611555 40 Options.level_compaction_dynamic_level_bytes: 1 +2025/05/04-10:09:55.611556 40 Options.max_bytes_for_level_multiplier: 10.000000 +2025/05/04-10:09:55.611556 40 Options.max_bytes_for_level_multiplier_addtl[0]: 1 +2025/05/04-10:09:55.611557 40 Options.max_bytes_for_level_multiplier_addtl[1]: 1 +2025/05/04-10:09:55.611557 40 Options.max_bytes_for_level_multiplier_addtl[2]: 1 +2025/05/04-10:09:55.611558 40 Options.max_bytes_for_level_multiplier_addtl[3]: 1 +2025/05/04-10:09:55.611559 40 Options.max_bytes_for_level_multiplier_addtl[4]: 1 +2025/05/04-10:09:55.611559 40 Options.max_bytes_for_level_multiplier_addtl[5]: 1 +2025/05/04-10:09:55.611560 40 Options.max_bytes_for_level_multiplier_addtl[6]: 1 +2025/05/04-10:09:55.611560 40 Options.max_sequential_skip_in_iterations: 8 +2025/05/04-10:09:55.611561 40 Options.max_compaction_bytes: 1677721600 +2025/05/04-10:09:55.611561 40 Options.arena_block_size: 1048576 +2025/05/04-10:09:55.611562 40 Options.soft_pending_compaction_bytes_limit: 68719476736 +2025/05/04-10:09:55.611563 40 Options.hard_pending_compaction_bytes_limit: 274877906944 +2025/05/04-10:09:55.611563 40 Options.disable_auto_compactions: 0 +2025/05/04-10:09:55.611564 40 Options.compaction_style: kCompactionStyleLevel +2025/05/04-10:09:55.611564 40 Options.compaction_pri: kMinOverlappingRatio +2025/05/04-10:09:55.611565 40 Options.compaction_options_universal.size_ratio: 1 +2025/05/04-10:09:55.611565 40 Options.compaction_options_universal.min_merge_width: 2 +2025/05/04-10:09:55.611566 40 Options.compaction_options_universal.max_merge_width: 4294967295 +2025/05/04-10:09:55.611566 40 Options.compaction_options_universal.max_size_amplification_percent: 200 +2025/05/04-10:09:55.611567 40 Options.compaction_options_universal.compression_size_percent: -1 +2025/05/04-10:09:55.611568 40 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize +2025/05/04-10:09:55.611568 40 Options.compaction_options_universal.max_read_amp: -1 +2025/05/04-10:09:55.611569 40 Options.compaction_options_fifo.max_table_files_size: 1073741824 +2025/05/04-10:09:55.611569 40 Options.compaction_options_fifo.allow_compaction: 0 +2025/05/04-10:09:55.611570 40 Options.table_properties_collectors: +2025/05/04-10:09:55.611571 40 Options.inplace_update_support: 0 +2025/05/04-10:09:55.611571 40 Options.inplace_update_num_locks: 10000 +2025/05/04-10:09:55.611572 40 Options.memtable_prefix_bloom_size_ratio: 0.000000 +2025/05/04-10:09:55.611572 40 Options.memtable_whole_key_filtering: 0 +2025/05/04-10:09:55.611573 40 Options.memtable_huge_page_size: 0 +2025/05/04-10:09:55.611573 40 Options.bloom_locality: 0 +2025/05/04-10:09:55.611574 40 Options.max_successive_merges: 0 +2025/05/04-10:09:55.611574 40 Options.strict_max_successive_merges: 0 +2025/05/04-10:09:55.611575 40 Options.optimize_filters_for_hits: 0 +2025/05/04-10:09:55.611575 40 Options.paranoid_file_checks: 0 +2025/05/04-10:09:55.611576 40 Options.force_consistency_checks: 1 +2025/05/04-10:09:55.611576 40 Options.report_bg_io_stats: 0 +2025/05/04-10:09:55.611577 40 Options.ttl: 2592000 +2025/05/04-10:09:55.611577 40 Options.periodic_compaction_seconds: 0 +2025/05/04-10:09:55.611578 40 Options.default_temperature: kUnknown +2025/05/04-10:09:55.611578 40 Options.preclude_last_level_data_seconds: 0 +2025/05/04-10:09:55.611579 40 Options.preserve_internal_time_seconds: 0 +2025/05/04-10:09:55.611579 40 Options.enable_blob_files: false +2025/05/04-10:09:55.611580 40 Options.min_blob_size: 0 +2025/05/04-10:09:55.611580 40 Options.blob_file_size: 268435456 +2025/05/04-10:09:55.611581 40 Options.blob_compression_type: NoCompression +2025/05/04-10:09:55.611582 40 Options.enable_blob_garbage_collection: false +2025/05/04-10:09:55.611582 40 Options.blob_garbage_collection_age_cutoff: 0.250000 +2025/05/04-10:09:55.611583 40 Options.blob_garbage_collection_force_threshold: 1.000000 +2025/05/04-10:09:55.611583 40 Options.blob_compaction_readahead_size: 0 +2025/05/04-10:09:55.611584 40 Options.blob_file_starting_level: 0 +2025/05/04-10:09:55.611584 40 Options.experimental_mempurge_threshold: 0.000000 +2025/05/04-10:09:55.611585 40 Options.memtable_max_range_deletions: 0 +2025/05/04-10:09:55.669831 40 DB pointer 0xffff84063c00 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/MANIFEST-000013 b/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/MANIFEST-000013 new file mode 100644 index 0000000000000000000000000000000000000000..63688824d99900367e08c5cc47a369e124f8c192 Binary files /dev/null and b/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/MANIFEST-000013 differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/OPTIONS-000011 b/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/OPTIONS-000011 new file mode 100644 index 0000000000000000000000000000000000000000..ad2b181add715408dc69839970eebfd4c1a28b4b --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/OPTIONS-000011 @@ -0,0 +1,670 @@ +# This is a RocksDB option file. +# +# For detailed file format spec, please refer to the example file +# in examples/rocksdb_option_file_example.ini +# + +[Version] + rocksdb_version=9.9.3 + options_file_version=1.1 + +[DBOptions] + compaction_readahead_size=2097152 + strict_bytes_per_sync=false + bytes_per_sync=0 + max_background_jobs=2 + avoid_flush_during_shutdown=false + max_background_flushes=-1 + delayed_write_rate=16777216 + max_open_files=256 + max_subcompactions=1 + writable_file_max_buffer_size=1048576 + wal_bytes_per_sync=0 + max_background_compactions=-1 + max_total_wal_size=0 + delete_obsolete_files_period_micros=180000000 + stats_dump_period_sec=600 + stats_history_buffer_size=1048576 + stats_persist_period_sec=600 + follower_refresh_catchup_period_ms=10000 + enforce_single_del_contracts=true + lowest_used_cache_tier=kNonVolatileBlockTier + bgerror_resume_retry_interval=1000000 + metadata_write_temperature=kUnknown + best_efforts_recovery=false + log_readahead_size=0 + write_identity_file=true + write_dbid_to_manifest=true + prefix_seek_opt_in_only=false + wal_compression=kNoCompression + manual_wal_flush=false + db_host_id=__hostname__ + two_write_queues=false + random_access_max_buffer_size=1048576 + avoid_unnecessary_blocking_io=false + skip_checking_sst_file_sizes_on_db_open=false + flush_verify_memtable_count=true + fail_if_options_file_error=true + atomic_flush=false + verify_sst_unique_id_in_manifest=true + skip_stats_update_on_db_open=false + track_and_verify_wals_in_manifest=false + compaction_verify_record_count=true + paranoid_checks=true + create_if_missing=true + max_write_batch_group_size_bytes=1048576 + follower_catchup_retry_count=10 + avoid_flush_during_recovery=false + file_checksum_gen_factory=nullptr + enable_thread_tracking=false + allow_fallocate=true + allow_data_in_errors=false + error_if_exists=false + use_direct_io_for_flush_and_compaction=false + background_close_inactive_wals=false + create_missing_column_families=true + WAL_size_limit_MB=0 + use_direct_reads=false + persist_stats_to_disk=false + allow_2pc=false + is_fd_close_on_exec=true + max_log_file_size=1048576 + max_file_opening_threads=16 + wal_filter=nullptr + wal_write_temperature=kUnknown + follower_catchup_retry_wait_ms=100 + allow_mmap_reads=false + allow_mmap_writes=false + use_adaptive_mutex=false + use_fsync=false + table_cache_numshardbits=6 + dump_malloc_stats=false + db_write_buffer_size=0 + allow_ingest_behind=false + keep_log_file_num=1 + max_bgerror_resume_count=2147483647 + allow_concurrent_memtable_write=true + recycle_log_file_num=0 + log_file_time_to_roll=0 + manifest_preallocation_size=4194304 + enable_write_thread_adaptive_yield=true + WAL_ttl_seconds=0 + max_manifest_file_size=1073741824 + wal_recovery_mode=kTolerateCorruptedTailRecords + enable_pipelined_write=false + write_thread_slow_yield_usec=3 + unordered_write=false + write_thread_max_yield_usec=100 + advise_random_on_open=true + info_log_level=ERROR_LEVEL + + +[CFOptions "default"] + memtable_max_range_deletions=0 + compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_memory_checks=false + block_protection_bytes_per_key=0 + uncache_aggressiveness=0 + bottommost_file_compaction_delay=0 + memtable_protection_bytes_per_key=0 + experimental_mempurge_threshold=0.000000 + bottommost_compression=kDisableCompressionOption + sample_for_compression=0 + prepopulate_blob_cache=kDisable + blob_file_starting_level=0 + blob_compaction_readahead_size=0 + table_factory=BlockBasedTable + max_successive_merges=0 + max_write_buffer_number=2 + prefix_extractor=nullptr + memtable_huge_page_size=0 + write_buffer_size=10485760 + strict_max_successive_merges=false + arena_block_size=1048576 + level0_file_num_compaction_trigger=4 + report_bg_io_stats=false + inplace_update_num_locks=10000 + memtable_prefix_bloom_size_ratio=0.000000 + level0_stop_writes_trigger=36 + blob_compression_type=kNoCompression + level0_slowdown_writes_trigger=20 + hard_pending_compaction_bytes_limit=274877906944 + target_file_size_multiplier=1 + bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_file_checks=false + blob_garbage_collection_force_threshold=1.000000 + enable_blob_files=false + soft_pending_compaction_bytes_limit=68719476736 + target_file_size_base=67108864 + max_compaction_bytes=1677721600 + disable_auto_compactions=false + min_blob_size=0 + memtable_whole_key_filtering=false + max_bytes_for_level_base=268435456 + last_level_temperature=kUnknown + preserve_internal_time_seconds=0 + compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} + max_bytes_for_level_multiplier=10.000000 + max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 + max_sequential_skip_in_iterations=8 + compression=kLZ4Compression + default_write_temperature=kUnknown + compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} + blob_garbage_collection_age_cutoff=0.250000 + ttl=2592000 + periodic_compaction_seconds=0 + preclude_last_level_data_seconds=0 + blob_file_size=268435456 + enable_blob_garbage_collection=false + persist_user_defined_timestamps=true + compaction_pri=kMinOverlappingRatio + compaction_filter_factory=nullptr + comparator=leveldb.BytewiseComparator + bloom_locality=0 + merge_operator=nullptr + compaction_filter=nullptr + level_compaction_dynamic_level_bytes=true + optimize_filters_for_hits=false + inplace_update_support=false + max_write_buffer_number_to_maintain=0 + max_write_buffer_size_to_maintain=0 + sst_partitioner_factory=nullptr + default_temperature=kUnknown + compaction_style=kCompactionStyleLevel + min_write_buffer_number_to_merge=1 + memtable_factory=SkipListFactory + memtable_insert_with_hint_prefix_extractor=nullptr + force_consistency_checks=true + num_levels=7 + +[TableOptions/BlockBasedTable "default"] + num_file_reads_for_auto_readahead=2 + initial_auto_readahead_size=8192 + metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} + enable_index_compression=true + verify_compression=false + prepopulate_block_cache=kDisable + format_version=6 + use_delta_encoding=true + pin_top_level_index_and_filter=true + read_amp_bytes_per_bit=0 + decouple_partitioned_filters=false + partition_filters=false + metadata_block_size=4096 + max_auto_readahead_size=262144 + index_block_restart_interval=1 + block_size_deviation=10 + block_size=4096 + detect_filter_construct_corruption=false + no_block_cache=false + checksum=kXXH3 + filter_policy=nullptr + data_block_hash_table_util_ratio=0.750000 + block_restart_interval=16 + index_type=kBinarySearch + pin_l0_filter_and_index_blocks_in_cache=false + data_block_index_type=kDataBlockBinarySearch + cache_index_and_filter_blocks_with_high_priority=true + whole_key_filtering=true + index_shortening=kShortenSeparators + cache_index_and_filter_blocks=false + block_align=false + optimize_filters_for_memory=true + flush_block_policy_factory=FlushBlockBySizePolicyFactory + + +[CFOptions "payload"] + memtable_max_range_deletions=0 + compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_memory_checks=false + block_protection_bytes_per_key=0 + uncache_aggressiveness=0 + bottommost_file_compaction_delay=0 + memtable_protection_bytes_per_key=0 + experimental_mempurge_threshold=0.000000 + bottommost_compression=kDisableCompressionOption + sample_for_compression=0 + prepopulate_blob_cache=kDisable + blob_file_starting_level=0 + blob_compaction_readahead_size=0 + table_factory=BlockBasedTable + max_successive_merges=0 + max_write_buffer_number=2 + prefix_extractor=nullptr + memtable_huge_page_size=0 + write_buffer_size=10485760 + strict_max_successive_merges=false + arena_block_size=1048576 + level0_file_num_compaction_trigger=4 + report_bg_io_stats=false + inplace_update_num_locks=10000 + memtable_prefix_bloom_size_ratio=0.000000 + level0_stop_writes_trigger=36 + blob_compression_type=kNoCompression + level0_slowdown_writes_trigger=20 + hard_pending_compaction_bytes_limit=274877906944 + target_file_size_multiplier=1 + bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_file_checks=false + blob_garbage_collection_force_threshold=1.000000 + enable_blob_files=false + soft_pending_compaction_bytes_limit=68719476736 + target_file_size_base=67108864 + max_compaction_bytes=1677721600 + disable_auto_compactions=false + min_blob_size=0 + memtable_whole_key_filtering=false + max_bytes_for_level_base=268435456 + last_level_temperature=kUnknown + preserve_internal_time_seconds=0 + compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} + max_bytes_for_level_multiplier=10.000000 + max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 + max_sequential_skip_in_iterations=8 + compression=kLZ4Compression + default_write_temperature=kUnknown + compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} + blob_garbage_collection_age_cutoff=0.250000 + ttl=2592000 + periodic_compaction_seconds=0 + preclude_last_level_data_seconds=0 + blob_file_size=268435456 + enable_blob_garbage_collection=false + persist_user_defined_timestamps=true + compaction_pri=kMinOverlappingRatio + compaction_filter_factory=nullptr + comparator=leveldb.BytewiseComparator + bloom_locality=0 + merge_operator=nullptr + compaction_filter=nullptr + level_compaction_dynamic_level_bytes=true + optimize_filters_for_hits=false + inplace_update_support=false + max_write_buffer_number_to_maintain=0 + max_write_buffer_size_to_maintain=0 + sst_partitioner_factory=nullptr + default_temperature=kUnknown + compaction_style=kCompactionStyleLevel + min_write_buffer_number_to_merge=1 + memtable_factory=SkipListFactory + memtable_insert_with_hint_prefix_extractor=nullptr + force_consistency_checks=true + num_levels=7 + +[TableOptions/BlockBasedTable "payload"] + num_file_reads_for_auto_readahead=2 + initial_auto_readahead_size=8192 + metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} + enable_index_compression=true + verify_compression=false + prepopulate_block_cache=kDisable + format_version=6 + use_delta_encoding=true + pin_top_level_index_and_filter=true + read_amp_bytes_per_bit=0 + decouple_partitioned_filters=false + partition_filters=false + metadata_block_size=4096 + max_auto_readahead_size=262144 + index_block_restart_interval=1 + block_size_deviation=10 + block_size=4096 + detect_filter_construct_corruption=false + no_block_cache=false + checksum=kXXH3 + filter_policy=nullptr + data_block_hash_table_util_ratio=0.750000 + block_restart_interval=16 + index_type=kBinarySearch + pin_l0_filter_and_index_blocks_in_cache=false + data_block_index_type=kDataBlockBinarySearch + cache_index_and_filter_blocks_with_high_priority=true + whole_key_filtering=true + index_shortening=kShortenSeparators + cache_index_and_filter_blocks=false + block_align=false + optimize_filters_for_memory=true + flush_block_policy_factory=FlushBlockBySizePolicyFactory + + +[CFOptions "mapping"] + memtable_max_range_deletions=0 + compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_memory_checks=false + block_protection_bytes_per_key=0 + uncache_aggressiveness=0 + bottommost_file_compaction_delay=0 + memtable_protection_bytes_per_key=0 + experimental_mempurge_threshold=0.000000 + bottommost_compression=kDisableCompressionOption + sample_for_compression=0 + prepopulate_blob_cache=kDisable + blob_file_starting_level=0 + blob_compaction_readahead_size=0 + table_factory=BlockBasedTable + max_successive_merges=0 + max_write_buffer_number=2 + prefix_extractor=nullptr + memtable_huge_page_size=0 + write_buffer_size=10485760 + strict_max_successive_merges=false + arena_block_size=1048576 + level0_file_num_compaction_trigger=4 + report_bg_io_stats=false + inplace_update_num_locks=10000 + memtable_prefix_bloom_size_ratio=0.000000 + level0_stop_writes_trigger=36 + blob_compression_type=kNoCompression + level0_slowdown_writes_trigger=20 + hard_pending_compaction_bytes_limit=274877906944 + target_file_size_multiplier=1 + bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_file_checks=false + blob_garbage_collection_force_threshold=1.000000 + enable_blob_files=false + soft_pending_compaction_bytes_limit=68719476736 + target_file_size_base=67108864 + max_compaction_bytes=1677721600 + disable_auto_compactions=false + min_blob_size=0 + memtable_whole_key_filtering=false + max_bytes_for_level_base=268435456 + last_level_temperature=kUnknown + preserve_internal_time_seconds=0 + compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} + max_bytes_for_level_multiplier=10.000000 + max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 + max_sequential_skip_in_iterations=8 + compression=kLZ4Compression + default_write_temperature=kUnknown + compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} + blob_garbage_collection_age_cutoff=0.250000 + ttl=2592000 + periodic_compaction_seconds=0 + preclude_last_level_data_seconds=0 + blob_file_size=268435456 + enable_blob_garbage_collection=false + persist_user_defined_timestamps=true + compaction_pri=kMinOverlappingRatio + compaction_filter_factory=nullptr + comparator=leveldb.BytewiseComparator + bloom_locality=0 + merge_operator=nullptr + compaction_filter=nullptr + level_compaction_dynamic_level_bytes=true + optimize_filters_for_hits=false + inplace_update_support=false + max_write_buffer_number_to_maintain=0 + max_write_buffer_size_to_maintain=0 + sst_partitioner_factory=nullptr + default_temperature=kUnknown + compaction_style=kCompactionStyleLevel + min_write_buffer_number_to_merge=1 + memtable_factory=SkipListFactory + memtable_insert_with_hint_prefix_extractor=nullptr + force_consistency_checks=true + num_levels=7 + +[TableOptions/BlockBasedTable "mapping"] + num_file_reads_for_auto_readahead=2 + initial_auto_readahead_size=8192 + metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} + enable_index_compression=true + verify_compression=false + prepopulate_block_cache=kDisable + format_version=6 + use_delta_encoding=true + pin_top_level_index_and_filter=true + read_amp_bytes_per_bit=0 + decouple_partitioned_filters=false + partition_filters=false + metadata_block_size=4096 + max_auto_readahead_size=262144 + index_block_restart_interval=1 + block_size_deviation=10 + block_size=4096 + detect_filter_construct_corruption=false + no_block_cache=false + checksum=kXXH3 + filter_policy=nullptr + data_block_hash_table_util_ratio=0.750000 + block_restart_interval=16 + index_type=kBinarySearch + pin_l0_filter_and_index_blocks_in_cache=false + data_block_index_type=kDataBlockBinarySearch + cache_index_and_filter_blocks_with_high_priority=true + whole_key_filtering=true + index_shortening=kShortenSeparators + cache_index_and_filter_blocks=false + block_align=false + optimize_filters_for_memory=true + flush_block_policy_factory=FlushBlockBySizePolicyFactory + + +[CFOptions "version"] + memtable_max_range_deletions=0 + compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_memory_checks=false + block_protection_bytes_per_key=0 + uncache_aggressiveness=0 + bottommost_file_compaction_delay=0 + memtable_protection_bytes_per_key=0 + experimental_mempurge_threshold=0.000000 + bottommost_compression=kDisableCompressionOption + sample_for_compression=0 + prepopulate_blob_cache=kDisable + blob_file_starting_level=0 + blob_compaction_readahead_size=0 + table_factory=BlockBasedTable + max_successive_merges=0 + max_write_buffer_number=2 + prefix_extractor=nullptr + memtable_huge_page_size=0 + write_buffer_size=10485760 + strict_max_successive_merges=false + arena_block_size=1048576 + level0_file_num_compaction_trigger=4 + report_bg_io_stats=false + inplace_update_num_locks=10000 + memtable_prefix_bloom_size_ratio=0.000000 + level0_stop_writes_trigger=36 + blob_compression_type=kNoCompression + level0_slowdown_writes_trigger=20 + hard_pending_compaction_bytes_limit=274877906944 + target_file_size_multiplier=1 + bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_file_checks=false + blob_garbage_collection_force_threshold=1.000000 + enable_blob_files=false + soft_pending_compaction_bytes_limit=68719476736 + target_file_size_base=67108864 + max_compaction_bytes=1677721600 + disable_auto_compactions=false + min_blob_size=0 + memtable_whole_key_filtering=false + max_bytes_for_level_base=268435456 + last_level_temperature=kUnknown + preserve_internal_time_seconds=0 + compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} + max_bytes_for_level_multiplier=10.000000 + max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 + max_sequential_skip_in_iterations=8 + compression=kLZ4Compression + default_write_temperature=kUnknown + compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} + blob_garbage_collection_age_cutoff=0.250000 + ttl=2592000 + periodic_compaction_seconds=0 + preclude_last_level_data_seconds=0 + blob_file_size=268435456 + enable_blob_garbage_collection=false + persist_user_defined_timestamps=true + compaction_pri=kMinOverlappingRatio + compaction_filter_factory=nullptr + comparator=leveldb.BytewiseComparator + bloom_locality=0 + merge_operator=nullptr + compaction_filter=nullptr + level_compaction_dynamic_level_bytes=true + optimize_filters_for_hits=false + inplace_update_support=false + max_write_buffer_number_to_maintain=0 + max_write_buffer_size_to_maintain=0 + sst_partitioner_factory=nullptr + default_temperature=kUnknown + compaction_style=kCompactionStyleLevel + min_write_buffer_number_to_merge=1 + memtable_factory=SkipListFactory + memtable_insert_with_hint_prefix_extractor=nullptr + force_consistency_checks=true + num_levels=7 + +[TableOptions/BlockBasedTable "version"] + num_file_reads_for_auto_readahead=2 + initial_auto_readahead_size=8192 + metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} + enable_index_compression=true + verify_compression=false + prepopulate_block_cache=kDisable + format_version=6 + use_delta_encoding=true + pin_top_level_index_and_filter=true + read_amp_bytes_per_bit=0 + decouple_partitioned_filters=false + partition_filters=false + metadata_block_size=4096 + max_auto_readahead_size=262144 + index_block_restart_interval=1 + block_size_deviation=10 + block_size=4096 + detect_filter_construct_corruption=false + no_block_cache=false + checksum=kXXH3 + filter_policy=nullptr + data_block_hash_table_util_ratio=0.750000 + block_restart_interval=16 + index_type=kBinarySearch + pin_l0_filter_and_index_blocks_in_cache=false + data_block_index_type=kDataBlockBinarySearch + cache_index_and_filter_blocks_with_high_priority=true + whole_key_filtering=true + index_shortening=kShortenSeparators + cache_index_and_filter_blocks=false + block_align=false + optimize_filters_for_memory=true + flush_block_policy_factory=FlushBlockBySizePolicyFactory + + +[CFOptions "vector"] + memtable_max_range_deletions=0 + compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_memory_checks=false + block_protection_bytes_per_key=0 + uncache_aggressiveness=0 + bottommost_file_compaction_delay=0 + memtable_protection_bytes_per_key=0 + experimental_mempurge_threshold=0.000000 + bottommost_compression=kDisableCompressionOption + sample_for_compression=0 + prepopulate_blob_cache=kDisable + blob_file_starting_level=0 + blob_compaction_readahead_size=0 + table_factory=BlockBasedTable + max_successive_merges=0 + max_write_buffer_number=2 + prefix_extractor=nullptr + memtable_huge_page_size=0 + write_buffer_size=10485760 + strict_max_successive_merges=false + arena_block_size=1048576 + level0_file_num_compaction_trigger=4 + report_bg_io_stats=false + inplace_update_num_locks=10000 + memtable_prefix_bloom_size_ratio=0.000000 + level0_stop_writes_trigger=36 + blob_compression_type=kNoCompression + level0_slowdown_writes_trigger=20 + hard_pending_compaction_bytes_limit=274877906944 + target_file_size_multiplier=1 + bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_file_checks=false + blob_garbage_collection_force_threshold=1.000000 + enable_blob_files=false + soft_pending_compaction_bytes_limit=68719476736 + target_file_size_base=67108864 + max_compaction_bytes=1677721600 + disable_auto_compactions=false + min_blob_size=0 + memtable_whole_key_filtering=false + max_bytes_for_level_base=268435456 + last_level_temperature=kUnknown + preserve_internal_time_seconds=0 + compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} + max_bytes_for_level_multiplier=10.000000 + max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 + max_sequential_skip_in_iterations=8 + compression=kLZ4Compression + default_write_temperature=kUnknown + compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} + blob_garbage_collection_age_cutoff=0.250000 + ttl=2592000 + periodic_compaction_seconds=0 + preclude_last_level_data_seconds=0 + blob_file_size=268435456 + enable_blob_garbage_collection=false + persist_user_defined_timestamps=true + compaction_pri=kMinOverlappingRatio + compaction_filter_factory=nullptr + comparator=leveldb.BytewiseComparator + bloom_locality=0 + merge_operator=nullptr + compaction_filter=nullptr + level_compaction_dynamic_level_bytes=true + optimize_filters_for_hits=false + inplace_update_support=false + max_write_buffer_number_to_maintain=0 + max_write_buffer_size_to_maintain=0 + sst_partitioner_factory=nullptr + default_temperature=kUnknown + compaction_style=kCompactionStyleLevel + min_write_buffer_number_to_merge=1 + memtable_factory=SkipListFactory + memtable_insert_with_hint_prefix_extractor=nullptr + force_consistency_checks=true + num_levels=7 + +[TableOptions/BlockBasedTable "vector"] + num_file_reads_for_auto_readahead=2 + initial_auto_readahead_size=8192 + metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} + enable_index_compression=true + verify_compression=false + prepopulate_block_cache=kDisable + format_version=6 + use_delta_encoding=true + pin_top_level_index_and_filter=true + read_amp_bytes_per_bit=0 + decouple_partitioned_filters=false + partition_filters=false + metadata_block_size=4096 + max_auto_readahead_size=262144 + index_block_restart_interval=1 + block_size_deviation=10 + block_size=4096 + detect_filter_construct_corruption=false + no_block_cache=false + checksum=kXXH3 + filter_policy=nullptr + data_block_hash_table_util_ratio=0.750000 + block_restart_interval=16 + index_type=kBinarySearch + pin_l0_filter_and_index_blocks_in_cache=false + data_block_index_type=kDataBlockBinarySearch + cache_index_and_filter_blocks_with_high_priority=true + whole_key_filtering=true + index_shortening=kShortenSeparators + cache_index_and_filter_blocks=false + block_align=false + optimize_filters_for_memory=true + flush_block_policy_factory=FlushBlockBySizePolicyFactory + diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/OPTIONS-000015 b/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/OPTIONS-000015 new file mode 100644 index 0000000000000000000000000000000000000000..ad2b181add715408dc69839970eebfd4c1a28b4b --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/OPTIONS-000015 @@ -0,0 +1,670 @@ +# This is a RocksDB option file. +# +# For detailed file format spec, please refer to the example file +# in examples/rocksdb_option_file_example.ini +# + +[Version] + rocksdb_version=9.9.3 + options_file_version=1.1 + +[DBOptions] + compaction_readahead_size=2097152 + strict_bytes_per_sync=false + bytes_per_sync=0 + max_background_jobs=2 + avoid_flush_during_shutdown=false + max_background_flushes=-1 + delayed_write_rate=16777216 + max_open_files=256 + max_subcompactions=1 + writable_file_max_buffer_size=1048576 + wal_bytes_per_sync=0 + max_background_compactions=-1 + max_total_wal_size=0 + delete_obsolete_files_period_micros=180000000 + stats_dump_period_sec=600 + stats_history_buffer_size=1048576 + stats_persist_period_sec=600 + follower_refresh_catchup_period_ms=10000 + enforce_single_del_contracts=true + lowest_used_cache_tier=kNonVolatileBlockTier + bgerror_resume_retry_interval=1000000 + metadata_write_temperature=kUnknown + best_efforts_recovery=false + log_readahead_size=0 + write_identity_file=true + write_dbid_to_manifest=true + prefix_seek_opt_in_only=false + wal_compression=kNoCompression + manual_wal_flush=false + db_host_id=__hostname__ + two_write_queues=false + random_access_max_buffer_size=1048576 + avoid_unnecessary_blocking_io=false + skip_checking_sst_file_sizes_on_db_open=false + flush_verify_memtable_count=true + fail_if_options_file_error=true + atomic_flush=false + verify_sst_unique_id_in_manifest=true + skip_stats_update_on_db_open=false + track_and_verify_wals_in_manifest=false + compaction_verify_record_count=true + paranoid_checks=true + create_if_missing=true + max_write_batch_group_size_bytes=1048576 + follower_catchup_retry_count=10 + avoid_flush_during_recovery=false + file_checksum_gen_factory=nullptr + enable_thread_tracking=false + allow_fallocate=true + allow_data_in_errors=false + error_if_exists=false + use_direct_io_for_flush_and_compaction=false + background_close_inactive_wals=false + create_missing_column_families=true + WAL_size_limit_MB=0 + use_direct_reads=false + persist_stats_to_disk=false + allow_2pc=false + is_fd_close_on_exec=true + max_log_file_size=1048576 + max_file_opening_threads=16 + wal_filter=nullptr + wal_write_temperature=kUnknown + follower_catchup_retry_wait_ms=100 + allow_mmap_reads=false + allow_mmap_writes=false + use_adaptive_mutex=false + use_fsync=false + table_cache_numshardbits=6 + dump_malloc_stats=false + db_write_buffer_size=0 + allow_ingest_behind=false + keep_log_file_num=1 + max_bgerror_resume_count=2147483647 + allow_concurrent_memtable_write=true + recycle_log_file_num=0 + log_file_time_to_roll=0 + manifest_preallocation_size=4194304 + enable_write_thread_adaptive_yield=true + WAL_ttl_seconds=0 + max_manifest_file_size=1073741824 + wal_recovery_mode=kTolerateCorruptedTailRecords + enable_pipelined_write=false + write_thread_slow_yield_usec=3 + unordered_write=false + write_thread_max_yield_usec=100 + advise_random_on_open=true + info_log_level=ERROR_LEVEL + + +[CFOptions "default"] + memtable_max_range_deletions=0 + compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_memory_checks=false + block_protection_bytes_per_key=0 + uncache_aggressiveness=0 + bottommost_file_compaction_delay=0 + memtable_protection_bytes_per_key=0 + experimental_mempurge_threshold=0.000000 + bottommost_compression=kDisableCompressionOption + sample_for_compression=0 + prepopulate_blob_cache=kDisable + blob_file_starting_level=0 + blob_compaction_readahead_size=0 + table_factory=BlockBasedTable + max_successive_merges=0 + max_write_buffer_number=2 + prefix_extractor=nullptr + memtable_huge_page_size=0 + write_buffer_size=10485760 + strict_max_successive_merges=false + arena_block_size=1048576 + level0_file_num_compaction_trigger=4 + report_bg_io_stats=false + inplace_update_num_locks=10000 + memtable_prefix_bloom_size_ratio=0.000000 + level0_stop_writes_trigger=36 + blob_compression_type=kNoCompression + level0_slowdown_writes_trigger=20 + hard_pending_compaction_bytes_limit=274877906944 + target_file_size_multiplier=1 + bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_file_checks=false + blob_garbage_collection_force_threshold=1.000000 + enable_blob_files=false + soft_pending_compaction_bytes_limit=68719476736 + target_file_size_base=67108864 + max_compaction_bytes=1677721600 + disable_auto_compactions=false + min_blob_size=0 + memtable_whole_key_filtering=false + max_bytes_for_level_base=268435456 + last_level_temperature=kUnknown + preserve_internal_time_seconds=0 + compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} + max_bytes_for_level_multiplier=10.000000 + max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 + max_sequential_skip_in_iterations=8 + compression=kLZ4Compression + default_write_temperature=kUnknown + compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} + blob_garbage_collection_age_cutoff=0.250000 + ttl=2592000 + periodic_compaction_seconds=0 + preclude_last_level_data_seconds=0 + blob_file_size=268435456 + enable_blob_garbage_collection=false + persist_user_defined_timestamps=true + compaction_pri=kMinOverlappingRatio + compaction_filter_factory=nullptr + comparator=leveldb.BytewiseComparator + bloom_locality=0 + merge_operator=nullptr + compaction_filter=nullptr + level_compaction_dynamic_level_bytes=true + optimize_filters_for_hits=false + inplace_update_support=false + max_write_buffer_number_to_maintain=0 + max_write_buffer_size_to_maintain=0 + sst_partitioner_factory=nullptr + default_temperature=kUnknown + compaction_style=kCompactionStyleLevel + min_write_buffer_number_to_merge=1 + memtable_factory=SkipListFactory + memtable_insert_with_hint_prefix_extractor=nullptr + force_consistency_checks=true + num_levels=7 + +[TableOptions/BlockBasedTable "default"] + num_file_reads_for_auto_readahead=2 + initial_auto_readahead_size=8192 + metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} + enable_index_compression=true + verify_compression=false + prepopulate_block_cache=kDisable + format_version=6 + use_delta_encoding=true + pin_top_level_index_and_filter=true + read_amp_bytes_per_bit=0 + decouple_partitioned_filters=false + partition_filters=false + metadata_block_size=4096 + max_auto_readahead_size=262144 + index_block_restart_interval=1 + block_size_deviation=10 + block_size=4096 + detect_filter_construct_corruption=false + no_block_cache=false + checksum=kXXH3 + filter_policy=nullptr + data_block_hash_table_util_ratio=0.750000 + block_restart_interval=16 + index_type=kBinarySearch + pin_l0_filter_and_index_blocks_in_cache=false + data_block_index_type=kDataBlockBinarySearch + cache_index_and_filter_blocks_with_high_priority=true + whole_key_filtering=true + index_shortening=kShortenSeparators + cache_index_and_filter_blocks=false + block_align=false + optimize_filters_for_memory=true + flush_block_policy_factory=FlushBlockBySizePolicyFactory + + +[CFOptions "payload"] + memtable_max_range_deletions=0 + compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_memory_checks=false + block_protection_bytes_per_key=0 + uncache_aggressiveness=0 + bottommost_file_compaction_delay=0 + memtable_protection_bytes_per_key=0 + experimental_mempurge_threshold=0.000000 + bottommost_compression=kDisableCompressionOption + sample_for_compression=0 + prepopulate_blob_cache=kDisable + blob_file_starting_level=0 + blob_compaction_readahead_size=0 + table_factory=BlockBasedTable + max_successive_merges=0 + max_write_buffer_number=2 + prefix_extractor=nullptr + memtable_huge_page_size=0 + write_buffer_size=10485760 + strict_max_successive_merges=false + arena_block_size=1048576 + level0_file_num_compaction_trigger=4 + report_bg_io_stats=false + inplace_update_num_locks=10000 + memtable_prefix_bloom_size_ratio=0.000000 + level0_stop_writes_trigger=36 + blob_compression_type=kNoCompression + level0_slowdown_writes_trigger=20 + hard_pending_compaction_bytes_limit=274877906944 + target_file_size_multiplier=1 + bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_file_checks=false + blob_garbage_collection_force_threshold=1.000000 + enable_blob_files=false + soft_pending_compaction_bytes_limit=68719476736 + target_file_size_base=67108864 + max_compaction_bytes=1677721600 + disable_auto_compactions=false + min_blob_size=0 + memtable_whole_key_filtering=false + max_bytes_for_level_base=268435456 + last_level_temperature=kUnknown + preserve_internal_time_seconds=0 + compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} + max_bytes_for_level_multiplier=10.000000 + max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 + max_sequential_skip_in_iterations=8 + compression=kLZ4Compression + default_write_temperature=kUnknown + compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} + blob_garbage_collection_age_cutoff=0.250000 + ttl=2592000 + periodic_compaction_seconds=0 + preclude_last_level_data_seconds=0 + blob_file_size=268435456 + enable_blob_garbage_collection=false + persist_user_defined_timestamps=true + compaction_pri=kMinOverlappingRatio + compaction_filter_factory=nullptr + comparator=leveldb.BytewiseComparator + bloom_locality=0 + merge_operator=nullptr + compaction_filter=nullptr + level_compaction_dynamic_level_bytes=true + optimize_filters_for_hits=false + inplace_update_support=false + max_write_buffer_number_to_maintain=0 + max_write_buffer_size_to_maintain=0 + sst_partitioner_factory=nullptr + default_temperature=kUnknown + compaction_style=kCompactionStyleLevel + min_write_buffer_number_to_merge=1 + memtable_factory=SkipListFactory + memtable_insert_with_hint_prefix_extractor=nullptr + force_consistency_checks=true + num_levels=7 + +[TableOptions/BlockBasedTable "payload"] + num_file_reads_for_auto_readahead=2 + initial_auto_readahead_size=8192 + metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} + enable_index_compression=true + verify_compression=false + prepopulate_block_cache=kDisable + format_version=6 + use_delta_encoding=true + pin_top_level_index_and_filter=true + read_amp_bytes_per_bit=0 + decouple_partitioned_filters=false + partition_filters=false + metadata_block_size=4096 + max_auto_readahead_size=262144 + index_block_restart_interval=1 + block_size_deviation=10 + block_size=4096 + detect_filter_construct_corruption=false + no_block_cache=false + checksum=kXXH3 + filter_policy=nullptr + data_block_hash_table_util_ratio=0.750000 + block_restart_interval=16 + index_type=kBinarySearch + pin_l0_filter_and_index_blocks_in_cache=false + data_block_index_type=kDataBlockBinarySearch + cache_index_and_filter_blocks_with_high_priority=true + whole_key_filtering=true + index_shortening=kShortenSeparators + cache_index_and_filter_blocks=false + block_align=false + optimize_filters_for_memory=true + flush_block_policy_factory=FlushBlockBySizePolicyFactory + + +[CFOptions "mapping"] + memtable_max_range_deletions=0 + compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_memory_checks=false + block_protection_bytes_per_key=0 + uncache_aggressiveness=0 + bottommost_file_compaction_delay=0 + memtable_protection_bytes_per_key=0 + experimental_mempurge_threshold=0.000000 + bottommost_compression=kDisableCompressionOption + sample_for_compression=0 + prepopulate_blob_cache=kDisable + blob_file_starting_level=0 + blob_compaction_readahead_size=0 + table_factory=BlockBasedTable + max_successive_merges=0 + max_write_buffer_number=2 + prefix_extractor=nullptr + memtable_huge_page_size=0 + write_buffer_size=10485760 + strict_max_successive_merges=false + arena_block_size=1048576 + level0_file_num_compaction_trigger=4 + report_bg_io_stats=false + inplace_update_num_locks=10000 + memtable_prefix_bloom_size_ratio=0.000000 + level0_stop_writes_trigger=36 + blob_compression_type=kNoCompression + level0_slowdown_writes_trigger=20 + hard_pending_compaction_bytes_limit=274877906944 + target_file_size_multiplier=1 + bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_file_checks=false + blob_garbage_collection_force_threshold=1.000000 + enable_blob_files=false + soft_pending_compaction_bytes_limit=68719476736 + target_file_size_base=67108864 + max_compaction_bytes=1677721600 + disable_auto_compactions=false + min_blob_size=0 + memtable_whole_key_filtering=false + max_bytes_for_level_base=268435456 + last_level_temperature=kUnknown + preserve_internal_time_seconds=0 + compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} + max_bytes_for_level_multiplier=10.000000 + max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 + max_sequential_skip_in_iterations=8 + compression=kLZ4Compression + default_write_temperature=kUnknown + compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} + blob_garbage_collection_age_cutoff=0.250000 + ttl=2592000 + periodic_compaction_seconds=0 + preclude_last_level_data_seconds=0 + blob_file_size=268435456 + enable_blob_garbage_collection=false + persist_user_defined_timestamps=true + compaction_pri=kMinOverlappingRatio + compaction_filter_factory=nullptr + comparator=leveldb.BytewiseComparator + bloom_locality=0 + merge_operator=nullptr + compaction_filter=nullptr + level_compaction_dynamic_level_bytes=true + optimize_filters_for_hits=false + inplace_update_support=false + max_write_buffer_number_to_maintain=0 + max_write_buffer_size_to_maintain=0 + sst_partitioner_factory=nullptr + default_temperature=kUnknown + compaction_style=kCompactionStyleLevel + min_write_buffer_number_to_merge=1 + memtable_factory=SkipListFactory + memtable_insert_with_hint_prefix_extractor=nullptr + force_consistency_checks=true + num_levels=7 + +[TableOptions/BlockBasedTable "mapping"] + num_file_reads_for_auto_readahead=2 + initial_auto_readahead_size=8192 + metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} + enable_index_compression=true + verify_compression=false + prepopulate_block_cache=kDisable + format_version=6 + use_delta_encoding=true + pin_top_level_index_and_filter=true + read_amp_bytes_per_bit=0 + decouple_partitioned_filters=false + partition_filters=false + metadata_block_size=4096 + max_auto_readahead_size=262144 + index_block_restart_interval=1 + block_size_deviation=10 + block_size=4096 + detect_filter_construct_corruption=false + no_block_cache=false + checksum=kXXH3 + filter_policy=nullptr + data_block_hash_table_util_ratio=0.750000 + block_restart_interval=16 + index_type=kBinarySearch + pin_l0_filter_and_index_blocks_in_cache=false + data_block_index_type=kDataBlockBinarySearch + cache_index_and_filter_blocks_with_high_priority=true + whole_key_filtering=true + index_shortening=kShortenSeparators + cache_index_and_filter_blocks=false + block_align=false + optimize_filters_for_memory=true + flush_block_policy_factory=FlushBlockBySizePolicyFactory + + +[CFOptions "version"] + memtable_max_range_deletions=0 + compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_memory_checks=false + block_protection_bytes_per_key=0 + uncache_aggressiveness=0 + bottommost_file_compaction_delay=0 + memtable_protection_bytes_per_key=0 + experimental_mempurge_threshold=0.000000 + bottommost_compression=kDisableCompressionOption + sample_for_compression=0 + prepopulate_blob_cache=kDisable + blob_file_starting_level=0 + blob_compaction_readahead_size=0 + table_factory=BlockBasedTable + max_successive_merges=0 + max_write_buffer_number=2 + prefix_extractor=nullptr + memtable_huge_page_size=0 + write_buffer_size=10485760 + strict_max_successive_merges=false + arena_block_size=1048576 + level0_file_num_compaction_trigger=4 + report_bg_io_stats=false + inplace_update_num_locks=10000 + memtable_prefix_bloom_size_ratio=0.000000 + level0_stop_writes_trigger=36 + blob_compression_type=kNoCompression + level0_slowdown_writes_trigger=20 + hard_pending_compaction_bytes_limit=274877906944 + target_file_size_multiplier=1 + bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_file_checks=false + blob_garbage_collection_force_threshold=1.000000 + enable_blob_files=false + soft_pending_compaction_bytes_limit=68719476736 + target_file_size_base=67108864 + max_compaction_bytes=1677721600 + disable_auto_compactions=false + min_blob_size=0 + memtable_whole_key_filtering=false + max_bytes_for_level_base=268435456 + last_level_temperature=kUnknown + preserve_internal_time_seconds=0 + compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} + max_bytes_for_level_multiplier=10.000000 + max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 + max_sequential_skip_in_iterations=8 + compression=kLZ4Compression + default_write_temperature=kUnknown + compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} + blob_garbage_collection_age_cutoff=0.250000 + ttl=2592000 + periodic_compaction_seconds=0 + preclude_last_level_data_seconds=0 + blob_file_size=268435456 + enable_blob_garbage_collection=false + persist_user_defined_timestamps=true + compaction_pri=kMinOverlappingRatio + compaction_filter_factory=nullptr + comparator=leveldb.BytewiseComparator + bloom_locality=0 + merge_operator=nullptr + compaction_filter=nullptr + level_compaction_dynamic_level_bytes=true + optimize_filters_for_hits=false + inplace_update_support=false + max_write_buffer_number_to_maintain=0 + max_write_buffer_size_to_maintain=0 + sst_partitioner_factory=nullptr + default_temperature=kUnknown + compaction_style=kCompactionStyleLevel + min_write_buffer_number_to_merge=1 + memtable_factory=SkipListFactory + memtable_insert_with_hint_prefix_extractor=nullptr + force_consistency_checks=true + num_levels=7 + +[TableOptions/BlockBasedTable "version"] + num_file_reads_for_auto_readahead=2 + initial_auto_readahead_size=8192 + metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} + enable_index_compression=true + verify_compression=false + prepopulate_block_cache=kDisable + format_version=6 + use_delta_encoding=true + pin_top_level_index_and_filter=true + read_amp_bytes_per_bit=0 + decouple_partitioned_filters=false + partition_filters=false + metadata_block_size=4096 + max_auto_readahead_size=262144 + index_block_restart_interval=1 + block_size_deviation=10 + block_size=4096 + detect_filter_construct_corruption=false + no_block_cache=false + checksum=kXXH3 + filter_policy=nullptr + data_block_hash_table_util_ratio=0.750000 + block_restart_interval=16 + index_type=kBinarySearch + pin_l0_filter_and_index_blocks_in_cache=false + data_block_index_type=kDataBlockBinarySearch + cache_index_and_filter_blocks_with_high_priority=true + whole_key_filtering=true + index_shortening=kShortenSeparators + cache_index_and_filter_blocks=false + block_align=false + optimize_filters_for_memory=true + flush_block_policy_factory=FlushBlockBySizePolicyFactory + + +[CFOptions "vector"] + memtable_max_range_deletions=0 + compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_memory_checks=false + block_protection_bytes_per_key=0 + uncache_aggressiveness=0 + bottommost_file_compaction_delay=0 + memtable_protection_bytes_per_key=0 + experimental_mempurge_threshold=0.000000 + bottommost_compression=kDisableCompressionOption + sample_for_compression=0 + prepopulate_blob_cache=kDisable + blob_file_starting_level=0 + blob_compaction_readahead_size=0 + table_factory=BlockBasedTable + max_successive_merges=0 + max_write_buffer_number=2 + prefix_extractor=nullptr + memtable_huge_page_size=0 + write_buffer_size=10485760 + strict_max_successive_merges=false + arena_block_size=1048576 + level0_file_num_compaction_trigger=4 + report_bg_io_stats=false + inplace_update_num_locks=10000 + memtable_prefix_bloom_size_ratio=0.000000 + level0_stop_writes_trigger=36 + blob_compression_type=kNoCompression + level0_slowdown_writes_trigger=20 + hard_pending_compaction_bytes_limit=274877906944 + target_file_size_multiplier=1 + bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_file_checks=false + blob_garbage_collection_force_threshold=1.000000 + enable_blob_files=false + soft_pending_compaction_bytes_limit=68719476736 + target_file_size_base=67108864 + max_compaction_bytes=1677721600 + disable_auto_compactions=false + min_blob_size=0 + memtable_whole_key_filtering=false + max_bytes_for_level_base=268435456 + last_level_temperature=kUnknown + preserve_internal_time_seconds=0 + compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} + max_bytes_for_level_multiplier=10.000000 + max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 + max_sequential_skip_in_iterations=8 + compression=kLZ4Compression + default_write_temperature=kUnknown + compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} + blob_garbage_collection_age_cutoff=0.250000 + ttl=2592000 + periodic_compaction_seconds=0 + preclude_last_level_data_seconds=0 + blob_file_size=268435456 + enable_blob_garbage_collection=false + persist_user_defined_timestamps=true + compaction_pri=kMinOverlappingRatio + compaction_filter_factory=nullptr + comparator=leveldb.BytewiseComparator + bloom_locality=0 + merge_operator=nullptr + compaction_filter=nullptr + level_compaction_dynamic_level_bytes=true + optimize_filters_for_hits=false + inplace_update_support=false + max_write_buffer_number_to_maintain=0 + max_write_buffer_size_to_maintain=0 + sst_partitioner_factory=nullptr + default_temperature=kUnknown + compaction_style=kCompactionStyleLevel + min_write_buffer_number_to_merge=1 + memtable_factory=SkipListFactory + memtable_insert_with_hint_prefix_extractor=nullptr + force_consistency_checks=true + num_levels=7 + +[TableOptions/BlockBasedTable "vector"] + num_file_reads_for_auto_readahead=2 + initial_auto_readahead_size=8192 + metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} + enable_index_compression=true + verify_compression=false + prepopulate_block_cache=kDisable + format_version=6 + use_delta_encoding=true + pin_top_level_index_and_filter=true + read_amp_bytes_per_bit=0 + decouple_partitioned_filters=false + partition_filters=false + metadata_block_size=4096 + max_auto_readahead_size=262144 + index_block_restart_interval=1 + block_size_deviation=10 + block_size=4096 + detect_filter_construct_corruption=false + no_block_cache=false + checksum=kXXH3 + filter_policy=nullptr + data_block_hash_table_util_ratio=0.750000 + block_restart_interval=16 + index_type=kBinarySearch + pin_l0_filter_and_index_blocks_in_cache=false + data_block_index_type=kDataBlockBinarySearch + cache_index_and_filter_blocks_with_high_priority=true + whole_key_filtering=true + index_shortening=kShortenSeparators + cache_index_and_filter_blocks=false + block_align=false + optimize_filters_for_memory=true + flush_block_policy_factory=FlushBlockBySizePolicyFactory + diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/payload_index/000012.log b/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/payload_index/000012.log new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/payload_index/CURRENT b/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/payload_index/CURRENT new file mode 100644 index 0000000000000000000000000000000000000000..625d147412870471b19d90716ccc20a7f207a5c3 --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/payload_index/CURRENT @@ -0,0 +1 @@ +MANIFEST-000013 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/payload_index/IDENTITY b/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/payload_index/IDENTITY new file mode 100644 index 0000000000000000000000000000000000000000..b0367a77ffae8e9a56ff41c60ece90c4cfd80fd4 --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/payload_index/IDENTITY @@ -0,0 +1 @@ +69f0dd99-f7dc-4b88-af4f-aa4df62bc737 \ No newline at end of file diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/payload_index/LOCK b/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/payload_index/LOCK new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/payload_index/LOG b/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/payload_index/LOG new file mode 100644 index 0000000000000000000000000000000000000000..d582234817762d0593220bffe12522c382a98a2b --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/payload_index/LOG @@ -0,0 +1,247 @@ +2025/05/04-10:09:55.798935 40 RocksDB version: 9.9.3 +2025/05/04-10:09:55.799025 40 Compile date 2024-12-05 01:25:31 +2025/05/04-10:09:55.799026 40 DB SUMMARY +2025/05/04-10:09:55.799028 40 Host name (Env): c5f2a9d061bb +2025/05/04-10:09:55.799028 40 DB Session ID: CD0SHR3DDC5AMRBDXMDG +2025/05/04-10:09:55.799666 40 CURRENT file: CURRENT +2025/05/04-10:09:55.799668 40 IDENTITY file: IDENTITY +2025/05/04-10:09:55.799673 40 MANIFEST file: MANIFEST-000009 size: 159 Bytes +2025/05/04-10:09:55.799674 40 SST files in ./storage/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/payload_index dir, Total Num: 0, files: +2025/05/04-10:09:55.799675 40 Write Ahead Log file in ./storage/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/payload_index: 000008.log size: 0 ; +2025/05/04-10:09:55.799676 40 Options.error_if_exists: 0 +2025/05/04-10:09:55.799677 40 Options.create_if_missing: 1 +2025/05/04-10:09:55.799677 40 Options.paranoid_checks: 1 +2025/05/04-10:09:55.799678 40 Options.flush_verify_memtable_count: 1 +2025/05/04-10:09:55.799680 40 Options.compaction_verify_record_count: 1 +2025/05/04-10:09:55.799681 40 Options.track_and_verify_wals_in_manifest: 0 +2025/05/04-10:09:55.799682 40 Options.verify_sst_unique_id_in_manifest: 1 +2025/05/04-10:09:55.799683 40 Options.env: 0xffff86034000 +2025/05/04-10:09:55.799684 40 Options.fs: PosixFileSystem +2025/05/04-10:09:55.799684 40 Options.info_log: 0xffff840a2800 +2025/05/04-10:09:55.799686 40 Options.max_file_opening_threads: 16 +2025/05/04-10:09:55.799689 40 Options.statistics: (nil) +2025/05/04-10:09:55.799691 40 Options.use_fsync: 0 +2025/05/04-10:09:55.799692 40 Options.max_log_file_size: 1048576 +2025/05/04-10:09:55.799692 40 Options.max_manifest_file_size: 1073741824 +2025/05/04-10:09:55.799693 40 Options.log_file_time_to_roll: 0 +2025/05/04-10:09:55.799693 40 Options.keep_log_file_num: 1 +2025/05/04-10:09:55.799694 40 Options.recycle_log_file_num: 0 +2025/05/04-10:09:55.799695 40 Options.allow_fallocate: 1 +2025/05/04-10:09:55.799695 40 Options.allow_mmap_reads: 0 +2025/05/04-10:09:55.799696 40 Options.allow_mmap_writes: 0 +2025/05/04-10:09:55.799696 40 Options.use_direct_reads: 0 +2025/05/04-10:09:55.799697 40 Options.use_direct_io_for_flush_and_compaction: 0 +2025/05/04-10:09:55.799698 40 Options.create_missing_column_families: 1 +2025/05/04-10:09:55.799698 40 Options.db_log_dir: +2025/05/04-10:09:55.799699 40 Options.wal_dir: +2025/05/04-10:09:55.799699 40 Options.table_cache_numshardbits: 6 +2025/05/04-10:09:55.799700 40 Options.WAL_ttl_seconds: 0 +2025/05/04-10:09:55.799700 40 Options.WAL_size_limit_MB: 0 +2025/05/04-10:09:55.799701 40 Options.max_write_batch_group_size_bytes: 1048576 +2025/05/04-10:09:55.799702 40 Options.manifest_preallocation_size: 4194304 +2025/05/04-10:09:55.799702 40 Options.is_fd_close_on_exec: 1 +2025/05/04-10:09:55.799703 40 Options.advise_random_on_open: 1 +2025/05/04-10:09:55.799704 40 Options.db_write_buffer_size: 0 +2025/05/04-10:09:55.799704 40 Options.write_buffer_manager: 0xffff8400a200 +2025/05/04-10:09:55.799705 40 Options.random_access_max_buffer_size: 1048576 +2025/05/04-10:09:55.799707 40 Options.use_adaptive_mutex: 0 +2025/05/04-10:09:55.799708 40 Options.rate_limiter: (nil) +2025/05/04-10:09:55.799708 40 Options.sst_file_manager.rate_bytes_per_sec: 0 +2025/05/04-10:09:55.799709 40 Options.wal_recovery_mode: 0 +2025/05/04-10:09:55.799710 40 Options.enable_thread_tracking: 0 +2025/05/04-10:09:55.799711 40 Options.enable_pipelined_write: 0 +2025/05/04-10:09:55.799712 40 Options.unordered_write: 0 +2025/05/04-10:09:55.799714 40 Options.allow_concurrent_memtable_write: 1 +2025/05/04-10:09:55.799714 40 Options.enable_write_thread_adaptive_yield: 1 +2025/05/04-10:09:55.799715 40 Options.write_thread_max_yield_usec: 100 +2025/05/04-10:09:55.799715 40 Options.write_thread_slow_yield_usec: 3 +2025/05/04-10:09:55.799716 40 Options.row_cache: None +2025/05/04-10:09:55.799717 40 Options.wal_filter: None +2025/05/04-10:09:55.799718 40 Options.avoid_flush_during_recovery: 0 +2025/05/04-10:09:55.799719 40 Options.allow_ingest_behind: 0 +2025/05/04-10:09:55.799719 40 Options.two_write_queues: 0 +2025/05/04-10:09:55.799720 40 Options.manual_wal_flush: 0 +2025/05/04-10:09:55.799721 40 Options.wal_compression: 0 +2025/05/04-10:09:55.799721 40 Options.background_close_inactive_wals: 0 +2025/05/04-10:09:55.799722 40 Options.atomic_flush: 0 +2025/05/04-10:09:55.799722 40 Options.avoid_unnecessary_blocking_io: 0 +2025/05/04-10:09:55.799723 40 Options.prefix_seek_opt_in_only: 0 +2025/05/04-10:09:55.799724 40 Options.persist_stats_to_disk: 0 +2025/05/04-10:09:55.799725 40 Options.write_dbid_to_manifest: 1 +2025/05/04-10:09:55.799728 40 Options.write_identity_file: 1 +2025/05/04-10:09:55.799728 40 Options.log_readahead_size: 0 +2025/05/04-10:09:55.799729 40 Options.file_checksum_gen_factory: Unknown +2025/05/04-10:09:55.799730 40 Options.best_efforts_recovery: 0 +2025/05/04-10:09:55.799730 40 Options.max_bgerror_resume_count: 2147483647 +2025/05/04-10:09:55.799732 40 Options.bgerror_resume_retry_interval: 1000000 +2025/05/04-10:09:55.799733 40 Options.allow_data_in_errors: 0 +2025/05/04-10:09:55.799734 40 Options.db_host_id: __hostname__ +2025/05/04-10:09:55.799735 40 Options.enforce_single_del_contracts: true +2025/05/04-10:09:55.799735 40 Options.metadata_write_temperature: kUnknown +2025/05/04-10:09:55.799736 40 Options.wal_write_temperature: kUnknown +2025/05/04-10:09:55.799737 40 Options.max_background_jobs: 2 +2025/05/04-10:09:55.799737 40 Options.max_background_compactions: -1 +2025/05/04-10:09:55.799738 40 Options.max_subcompactions: 1 +2025/05/04-10:09:55.799738 40 Options.avoid_flush_during_shutdown: 0 +2025/05/04-10:09:55.799739 40 Options.writable_file_max_buffer_size: 1048576 +2025/05/04-10:09:55.799739 40 Options.delayed_write_rate : 16777216 +2025/05/04-10:09:55.799740 40 Options.max_total_wal_size: 0 +2025/05/04-10:09:55.799741 40 Options.delete_obsolete_files_period_micros: 180000000 +2025/05/04-10:09:55.799742 40 Options.stats_dump_period_sec: 600 +2025/05/04-10:09:55.799744 40 Options.stats_persist_period_sec: 600 +2025/05/04-10:09:55.799744 40 Options.stats_history_buffer_size: 1048576 +2025/05/04-10:09:55.799745 40 Options.max_open_files: 256 +2025/05/04-10:09:55.799746 40 Options.bytes_per_sync: 0 +2025/05/04-10:09:55.799746 40 Options.wal_bytes_per_sync: 0 +2025/05/04-10:09:55.799747 40 Options.strict_bytes_per_sync: 0 +2025/05/04-10:09:55.799747 40 Options.compaction_readahead_size: 2097152 +2025/05/04-10:09:55.799749 40 Options.max_background_flushes: -1 +2025/05/04-10:09:55.799751 40 Options.daily_offpeak_time_utc: +2025/05/04-10:09:55.799751 40 Compression algorithms supported: +2025/05/04-10:09:55.799752 40 kZSTD supported: 0 +2025/05/04-10:09:55.799754 40 kXpressCompression supported: 0 +2025/05/04-10:09:55.799755 40 kBZip2Compression supported: 0 +2025/05/04-10:09:55.799756 40 kZSTDNotFinalCompression supported: 0 +2025/05/04-10:09:55.799757 40 kLZ4Compression supported: 1 +2025/05/04-10:09:55.799757 40 kZlibCompression supported: 0 +2025/05/04-10:09:55.799758 40 kLZ4HCCompression supported: 1 +2025/05/04-10:09:55.799758 40 kSnappyCompression supported: 1 +2025/05/04-10:09:55.799759 40 Fast CRC32 supported: Not supported on x86 +2025/05/04-10:09:55.799760 40 DMutex implementation: pthread_mutex_t +2025/05/04-10:09:55.799761 40 Jemalloc supported: 0 +2025/05/04-10:09:55.801172 40 Options.comparator: leveldb.BytewiseComparator +2025/05/04-10:09:55.801173 40 Options.merge_operator: None +2025/05/04-10:09:55.801173 40 Options.compaction_filter: None +2025/05/04-10:09:55.801174 40 Options.compaction_filter_factory: None +2025/05/04-10:09:55.801174 40 Options.sst_partitioner_factory: None +2025/05/04-10:09:55.801175 40 Options.memtable_factory: SkipListFactory +2025/05/04-10:09:55.801176 40 Options.table_factory: BlockBasedTable +2025/05/04-10:09:55.801197 40 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff84132c40) + cache_index_and_filter_blocks: 0 + cache_index_and_filter_blocks_with_high_priority: 1 + pin_l0_filter_and_index_blocks_in_cache: 0 + pin_top_level_index_and_filter: 1 + index_type: 0 + data_block_index_type: 0 + index_shortening: 1 + data_block_hash_table_util_ratio: 0.750000 + checksum: 4 + no_block_cache: 0 + block_cache: 0xffff8400a150 + block_cache_name: LRUCache + block_cache_options: + capacity : 33554432 + num_shard_bits : 6 + strict_capacity_limit : 0 + memory_allocator : None + high_pri_pool_ratio: 0.500 + low_pri_pool_ratio: 0.000 + persistent_cache: (nil) + block_size: 4096 + block_size_deviation: 10 + block_restart_interval: 16 + index_block_restart_interval: 1 + metadata_block_size: 4096 + partition_filters: 0 + use_delta_encoding: 1 + filter_policy: nullptr + whole_key_filtering: 1 + verify_compression: 0 + read_amp_bytes_per_bit: 0 + format_version: 6 + enable_index_compression: 1 + block_align: 0 + max_auto_readahead_size: 262144 + prepopulate_block_cache: 0 + initial_auto_readahead_size: 8192 + num_file_reads_for_auto_readahead: 2 +2025/05/04-10:09:55.801200 40 Options.write_buffer_size: 10485760 +2025/05/04-10:09:55.801201 40 Options.max_write_buffer_number: 2 +2025/05/04-10:09:55.801202 40 Options.compression: LZ4 +2025/05/04-10:09:55.801203 40 Options.bottommost_compression: Disabled +2025/05/04-10:09:55.801203 40 Options.prefix_extractor: nullptr +2025/05/04-10:09:55.801204 40 Options.memtable_insert_with_hint_prefix_extractor: nullptr +2025/05/04-10:09:55.801205 40 Options.num_levels: 7 +2025/05/04-10:09:55.801205 40 Options.min_write_buffer_number_to_merge: 1 +2025/05/04-10:09:55.801206 40 Options.max_write_buffer_number_to_maintain: 0 +2025/05/04-10:09:55.801206 40 Options.max_write_buffer_size_to_maintain: 0 +2025/05/04-10:09:55.801207 40 Options.bottommost_compression_opts.window_bits: -14 +2025/05/04-10:09:55.801208 40 Options.bottommost_compression_opts.level: 32767 +2025/05/04-10:09:55.801209 40 Options.bottommost_compression_opts.strategy: 0 +2025/05/04-10:09:55.801209 40 Options.bottommost_compression_opts.max_dict_bytes: 0 +2025/05/04-10:09:55.801210 40 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 +2025/05/04-10:09:55.801210 40 Options.bottommost_compression_opts.parallel_threads: 1 +2025/05/04-10:09:55.801211 40 Options.bottommost_compression_opts.enabled: false +2025/05/04-10:09:55.801212 40 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 +2025/05/04-10:09:55.801212 40 Options.bottommost_compression_opts.use_zstd_dict_trainer: true +2025/05/04-10:09:55.801213 40 Options.compression_opts.window_bits: -14 +2025/05/04-10:09:55.801213 40 Options.compression_opts.level: 32767 +2025/05/04-10:09:55.801214 40 Options.compression_opts.strategy: 0 +2025/05/04-10:09:55.801215 40 Options.compression_opts.max_dict_bytes: 0 +2025/05/04-10:09:55.801216 40 Options.compression_opts.zstd_max_train_bytes: 0 +2025/05/04-10:09:55.801216 40 Options.compression_opts.use_zstd_dict_trainer: true +2025/05/04-10:09:55.801217 40 Options.compression_opts.parallel_threads: 1 +2025/05/04-10:09:55.801217 40 Options.compression_opts.enabled: false +2025/05/04-10:09:55.801218 40 Options.compression_opts.max_dict_buffer_bytes: 0 +2025/05/04-10:09:55.801218 40 Options.level0_file_num_compaction_trigger: 4 +2025/05/04-10:09:55.801219 40 Options.level0_slowdown_writes_trigger: 20 +2025/05/04-10:09:55.801219 40 Options.level0_stop_writes_trigger: 36 +2025/05/04-10:09:55.801220 40 Options.target_file_size_base: 67108864 +2025/05/04-10:09:55.801221 40 Options.target_file_size_multiplier: 1 +2025/05/04-10:09:55.801222 40 Options.max_bytes_for_level_base: 268435456 +2025/05/04-10:09:55.801222 40 Options.level_compaction_dynamic_level_bytes: 1 +2025/05/04-10:09:55.801225 40 Options.max_bytes_for_level_multiplier: 10.000000 +2025/05/04-10:09:55.801226 40 Options.max_bytes_for_level_multiplier_addtl[0]: 1 +2025/05/04-10:09:55.801227 40 Options.max_bytes_for_level_multiplier_addtl[1]: 1 +2025/05/04-10:09:55.801227 40 Options.max_bytes_for_level_multiplier_addtl[2]: 1 +2025/05/04-10:09:55.801228 40 Options.max_bytes_for_level_multiplier_addtl[3]: 1 +2025/05/04-10:09:55.801234 40 Options.max_bytes_for_level_multiplier_addtl[4]: 1 +2025/05/04-10:09:55.801234 40 Options.max_bytes_for_level_multiplier_addtl[5]: 1 +2025/05/04-10:09:55.801235 40 Options.max_bytes_for_level_multiplier_addtl[6]: 1 +2025/05/04-10:09:55.801236 40 Options.max_sequential_skip_in_iterations: 8 +2025/05/04-10:09:55.801236 40 Options.max_compaction_bytes: 1677721600 +2025/05/04-10:09:55.801237 40 Options.arena_block_size: 1048576 +2025/05/04-10:09:55.801237 40 Options.soft_pending_compaction_bytes_limit: 68719476736 +2025/05/04-10:09:55.801238 40 Options.hard_pending_compaction_bytes_limit: 274877906944 +2025/05/04-10:09:55.801239 40 Options.disable_auto_compactions: 0 +2025/05/04-10:09:55.801240 40 Options.compaction_style: kCompactionStyleLevel +2025/05/04-10:09:55.801241 40 Options.compaction_pri: kMinOverlappingRatio +2025/05/04-10:09:55.801243 40 Options.compaction_options_universal.size_ratio: 1 +2025/05/04-10:09:55.801243 40 Options.compaction_options_universal.min_merge_width: 2 +2025/05/04-10:09:55.801244 40 Options.compaction_options_universal.max_merge_width: 4294967295 +2025/05/04-10:09:55.801245 40 Options.compaction_options_universal.max_size_amplification_percent: 200 +2025/05/04-10:09:55.801245 40 Options.compaction_options_universal.compression_size_percent: -1 +2025/05/04-10:09:55.801248 40 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize +2025/05/04-10:09:55.801248 40 Options.compaction_options_universal.max_read_amp: -1 +2025/05/04-10:09:55.801249 40 Options.compaction_options_fifo.max_table_files_size: 1073741824 +2025/05/04-10:09:55.801249 40 Options.compaction_options_fifo.allow_compaction: 0 +2025/05/04-10:09:55.801251 40 Options.table_properties_collectors: +2025/05/04-10:09:55.801252 40 Options.inplace_update_support: 0 +2025/05/04-10:09:55.801252 40 Options.inplace_update_num_locks: 10000 +2025/05/04-10:09:55.801253 40 Options.memtable_prefix_bloom_size_ratio: 0.000000 +2025/05/04-10:09:55.801254 40 Options.memtable_whole_key_filtering: 0 +2025/05/04-10:09:55.801254 40 Options.memtable_huge_page_size: 0 +2025/05/04-10:09:55.801255 40 Options.bloom_locality: 0 +2025/05/04-10:09:55.801255 40 Options.max_successive_merges: 0 +2025/05/04-10:09:55.801256 40 Options.strict_max_successive_merges: 0 +2025/05/04-10:09:55.801256 40 Options.optimize_filters_for_hits: 0 +2025/05/04-10:09:55.801257 40 Options.paranoid_file_checks: 0 +2025/05/04-10:09:55.801258 40 Options.force_consistency_checks: 1 +2025/05/04-10:09:55.801258 40 Options.report_bg_io_stats: 0 +2025/05/04-10:09:55.801259 40 Options.ttl: 2592000 +2025/05/04-10:09:55.801259 40 Options.periodic_compaction_seconds: 0 +2025/05/04-10:09:55.801260 40 Options.default_temperature: kUnknown +2025/05/04-10:09:55.801261 40 Options.preclude_last_level_data_seconds: 0 +2025/05/04-10:09:55.801261 40 Options.preserve_internal_time_seconds: 0 +2025/05/04-10:09:55.801262 40 Options.enable_blob_files: false +2025/05/04-10:09:55.801264 40 Options.min_blob_size: 0 +2025/05/04-10:09:55.801265 40 Options.blob_file_size: 268435456 +2025/05/04-10:09:55.801266 40 Options.blob_compression_type: NoCompression +2025/05/04-10:09:55.801267 40 Options.enable_blob_garbage_collection: false +2025/05/04-10:09:55.801268 40 Options.blob_garbage_collection_age_cutoff: 0.250000 +2025/05/04-10:09:55.801268 40 Options.blob_garbage_collection_force_threshold: 1.000000 +2025/05/04-10:09:55.801269 40 Options.blob_compaction_readahead_size: 0 +2025/05/04-10:09:55.801270 40 Options.blob_file_starting_level: 0 +2025/05/04-10:09:55.801270 40 Options.experimental_mempurge_threshold: 0.000000 +2025/05/04-10:09:55.801271 40 Options.memtable_max_range_deletions: 0 +2025/05/04-10:09:55.813376 40 DB pointer 0xffff84062000 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/payload_index/MANIFEST-000013 b/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/payload_index/MANIFEST-000013 new file mode 100644 index 0000000000000000000000000000000000000000..0c8140e76b2c025af16cadac10b2540239f606a4 Binary files /dev/null and b/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/payload_index/MANIFEST-000013 differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/payload_index/OPTIONS-000011 b/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/payload_index/OPTIONS-000011 new file mode 100644 index 0000000000000000000000000000000000000000..1ff6c6ffcc08e04f8a99e1f459e7b0caa1822cb2 --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/payload_index/OPTIONS-000011 @@ -0,0 +1,214 @@ +# This is a RocksDB option file. +# +# For detailed file format spec, please refer to the example file +# in examples/rocksdb_option_file_example.ini +# + +[Version] + rocksdb_version=9.9.3 + options_file_version=1.1 + +[DBOptions] + compaction_readahead_size=2097152 + strict_bytes_per_sync=false + bytes_per_sync=0 + max_background_jobs=2 + avoid_flush_during_shutdown=false + max_background_flushes=-1 + delayed_write_rate=16777216 + max_open_files=256 + max_subcompactions=1 + writable_file_max_buffer_size=1048576 + wal_bytes_per_sync=0 + max_background_compactions=-1 + max_total_wal_size=0 + delete_obsolete_files_period_micros=180000000 + stats_dump_period_sec=600 + stats_history_buffer_size=1048576 + stats_persist_period_sec=600 + follower_refresh_catchup_period_ms=10000 + enforce_single_del_contracts=true + lowest_used_cache_tier=kNonVolatileBlockTier + bgerror_resume_retry_interval=1000000 + metadata_write_temperature=kUnknown + best_efforts_recovery=false + log_readahead_size=0 + write_identity_file=true + write_dbid_to_manifest=true + prefix_seek_opt_in_only=false + wal_compression=kNoCompression + manual_wal_flush=false + db_host_id=__hostname__ + two_write_queues=false + random_access_max_buffer_size=1048576 + avoid_unnecessary_blocking_io=false + skip_checking_sst_file_sizes_on_db_open=false + flush_verify_memtable_count=true + fail_if_options_file_error=true + atomic_flush=false + verify_sst_unique_id_in_manifest=true + skip_stats_update_on_db_open=false + track_and_verify_wals_in_manifest=false + compaction_verify_record_count=true + paranoid_checks=true + create_if_missing=true + max_write_batch_group_size_bytes=1048576 + follower_catchup_retry_count=10 + avoid_flush_during_recovery=false + file_checksum_gen_factory=nullptr + enable_thread_tracking=false + allow_fallocate=true + allow_data_in_errors=false + error_if_exists=false + use_direct_io_for_flush_and_compaction=false + background_close_inactive_wals=false + create_missing_column_families=true + WAL_size_limit_MB=0 + use_direct_reads=false + persist_stats_to_disk=false + allow_2pc=false + is_fd_close_on_exec=true + max_log_file_size=1048576 + max_file_opening_threads=16 + wal_filter=nullptr + wal_write_temperature=kUnknown + follower_catchup_retry_wait_ms=100 + allow_mmap_reads=false + allow_mmap_writes=false + use_adaptive_mutex=false + use_fsync=false + table_cache_numshardbits=6 + dump_malloc_stats=false + db_write_buffer_size=0 + allow_ingest_behind=false + keep_log_file_num=1 + max_bgerror_resume_count=2147483647 + allow_concurrent_memtable_write=true + recycle_log_file_num=0 + log_file_time_to_roll=0 + manifest_preallocation_size=4194304 + enable_write_thread_adaptive_yield=true + WAL_ttl_seconds=0 + max_manifest_file_size=1073741824 + wal_recovery_mode=kTolerateCorruptedTailRecords + enable_pipelined_write=false + write_thread_slow_yield_usec=3 + unordered_write=false + write_thread_max_yield_usec=100 + advise_random_on_open=true + info_log_level=ERROR_LEVEL + + +[CFOptions "default"] + memtable_max_range_deletions=0 + compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_memory_checks=false + block_protection_bytes_per_key=0 + uncache_aggressiveness=0 + bottommost_file_compaction_delay=0 + memtable_protection_bytes_per_key=0 + experimental_mempurge_threshold=0.000000 + bottommost_compression=kDisableCompressionOption + sample_for_compression=0 + prepopulate_blob_cache=kDisable + blob_file_starting_level=0 + blob_compaction_readahead_size=0 + table_factory=BlockBasedTable + max_successive_merges=0 + max_write_buffer_number=2 + prefix_extractor=nullptr + memtable_huge_page_size=0 + write_buffer_size=10485760 + strict_max_successive_merges=false + arena_block_size=1048576 + level0_file_num_compaction_trigger=4 + report_bg_io_stats=false + inplace_update_num_locks=10000 + memtable_prefix_bloom_size_ratio=0.000000 + level0_stop_writes_trigger=36 + blob_compression_type=kNoCompression + level0_slowdown_writes_trigger=20 + hard_pending_compaction_bytes_limit=274877906944 + target_file_size_multiplier=1 + bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_file_checks=false + blob_garbage_collection_force_threshold=1.000000 + enable_blob_files=false + soft_pending_compaction_bytes_limit=68719476736 + target_file_size_base=67108864 + max_compaction_bytes=1677721600 + disable_auto_compactions=false + min_blob_size=0 + memtable_whole_key_filtering=false + max_bytes_for_level_base=268435456 + last_level_temperature=kUnknown + preserve_internal_time_seconds=0 + compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} + max_bytes_for_level_multiplier=10.000000 + max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 + max_sequential_skip_in_iterations=8 + compression=kLZ4Compression + default_write_temperature=kUnknown + compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} + blob_garbage_collection_age_cutoff=0.250000 + ttl=2592000 + periodic_compaction_seconds=0 + preclude_last_level_data_seconds=0 + blob_file_size=268435456 + enable_blob_garbage_collection=false + persist_user_defined_timestamps=true + compaction_pri=kMinOverlappingRatio + compaction_filter_factory=nullptr + comparator=leveldb.BytewiseComparator + bloom_locality=0 + merge_operator=nullptr + compaction_filter=nullptr + level_compaction_dynamic_level_bytes=true + optimize_filters_for_hits=false + inplace_update_support=false + max_write_buffer_number_to_maintain=0 + max_write_buffer_size_to_maintain=0 + sst_partitioner_factory=nullptr + default_temperature=kUnknown + compaction_style=kCompactionStyleLevel + min_write_buffer_number_to_merge=1 + memtable_factory=SkipListFactory + memtable_insert_with_hint_prefix_extractor=nullptr + force_consistency_checks=true + num_levels=7 + +[TableOptions/BlockBasedTable "default"] + num_file_reads_for_auto_readahead=2 + initial_auto_readahead_size=8192 + metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} + enable_index_compression=true + verify_compression=false + prepopulate_block_cache=kDisable + format_version=6 + use_delta_encoding=true + pin_top_level_index_and_filter=true + read_amp_bytes_per_bit=0 + decouple_partitioned_filters=false + partition_filters=false + metadata_block_size=4096 + max_auto_readahead_size=262144 + index_block_restart_interval=1 + block_size_deviation=10 + block_size=4096 + detect_filter_construct_corruption=false + no_block_cache=false + checksum=kXXH3 + filter_policy=nullptr + data_block_hash_table_util_ratio=0.750000 + block_restart_interval=16 + index_type=kBinarySearch + pin_l0_filter_and_index_blocks_in_cache=false + data_block_index_type=kDataBlockBinarySearch + cache_index_and_filter_blocks_with_high_priority=true + whole_key_filtering=true + index_shortening=kShortenSeparators + cache_index_and_filter_blocks=false + block_align=false + optimize_filters_for_memory=true + flush_block_policy_factory=FlushBlockBySizePolicyFactory + diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/payload_index/OPTIONS-000015 b/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/payload_index/OPTIONS-000015 new file mode 100644 index 0000000000000000000000000000000000000000..1ff6c6ffcc08e04f8a99e1f459e7b0caa1822cb2 --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/payload_index/OPTIONS-000015 @@ -0,0 +1,214 @@ +# This is a RocksDB option file. +# +# For detailed file format spec, please refer to the example file +# in examples/rocksdb_option_file_example.ini +# + +[Version] + rocksdb_version=9.9.3 + options_file_version=1.1 + +[DBOptions] + compaction_readahead_size=2097152 + strict_bytes_per_sync=false + bytes_per_sync=0 + max_background_jobs=2 + avoid_flush_during_shutdown=false + max_background_flushes=-1 + delayed_write_rate=16777216 + max_open_files=256 + max_subcompactions=1 + writable_file_max_buffer_size=1048576 + wal_bytes_per_sync=0 + max_background_compactions=-1 + max_total_wal_size=0 + delete_obsolete_files_period_micros=180000000 + stats_dump_period_sec=600 + stats_history_buffer_size=1048576 + stats_persist_period_sec=600 + follower_refresh_catchup_period_ms=10000 + enforce_single_del_contracts=true + lowest_used_cache_tier=kNonVolatileBlockTier + bgerror_resume_retry_interval=1000000 + metadata_write_temperature=kUnknown + best_efforts_recovery=false + log_readahead_size=0 + write_identity_file=true + write_dbid_to_manifest=true + prefix_seek_opt_in_only=false + wal_compression=kNoCompression + manual_wal_flush=false + db_host_id=__hostname__ + two_write_queues=false + random_access_max_buffer_size=1048576 + avoid_unnecessary_blocking_io=false + skip_checking_sst_file_sizes_on_db_open=false + flush_verify_memtable_count=true + fail_if_options_file_error=true + atomic_flush=false + verify_sst_unique_id_in_manifest=true + skip_stats_update_on_db_open=false + track_and_verify_wals_in_manifest=false + compaction_verify_record_count=true + paranoid_checks=true + create_if_missing=true + max_write_batch_group_size_bytes=1048576 + follower_catchup_retry_count=10 + avoid_flush_during_recovery=false + file_checksum_gen_factory=nullptr + enable_thread_tracking=false + allow_fallocate=true + allow_data_in_errors=false + error_if_exists=false + use_direct_io_for_flush_and_compaction=false + background_close_inactive_wals=false + create_missing_column_families=true + WAL_size_limit_MB=0 + use_direct_reads=false + persist_stats_to_disk=false + allow_2pc=false + is_fd_close_on_exec=true + max_log_file_size=1048576 + max_file_opening_threads=16 + wal_filter=nullptr + wal_write_temperature=kUnknown + follower_catchup_retry_wait_ms=100 + allow_mmap_reads=false + allow_mmap_writes=false + use_adaptive_mutex=false + use_fsync=false + table_cache_numshardbits=6 + dump_malloc_stats=false + db_write_buffer_size=0 + allow_ingest_behind=false + keep_log_file_num=1 + max_bgerror_resume_count=2147483647 + allow_concurrent_memtable_write=true + recycle_log_file_num=0 + log_file_time_to_roll=0 + manifest_preallocation_size=4194304 + enable_write_thread_adaptive_yield=true + WAL_ttl_seconds=0 + max_manifest_file_size=1073741824 + wal_recovery_mode=kTolerateCorruptedTailRecords + enable_pipelined_write=false + write_thread_slow_yield_usec=3 + unordered_write=false + write_thread_max_yield_usec=100 + advise_random_on_open=true + info_log_level=ERROR_LEVEL + + +[CFOptions "default"] + memtable_max_range_deletions=0 + compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_memory_checks=false + block_protection_bytes_per_key=0 + uncache_aggressiveness=0 + bottommost_file_compaction_delay=0 + memtable_protection_bytes_per_key=0 + experimental_mempurge_threshold=0.000000 + bottommost_compression=kDisableCompressionOption + sample_for_compression=0 + prepopulate_blob_cache=kDisable + blob_file_starting_level=0 + blob_compaction_readahead_size=0 + table_factory=BlockBasedTable + max_successive_merges=0 + max_write_buffer_number=2 + prefix_extractor=nullptr + memtable_huge_page_size=0 + write_buffer_size=10485760 + strict_max_successive_merges=false + arena_block_size=1048576 + level0_file_num_compaction_trigger=4 + report_bg_io_stats=false + inplace_update_num_locks=10000 + memtable_prefix_bloom_size_ratio=0.000000 + level0_stop_writes_trigger=36 + blob_compression_type=kNoCompression + level0_slowdown_writes_trigger=20 + hard_pending_compaction_bytes_limit=274877906944 + target_file_size_multiplier=1 + bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_file_checks=false + blob_garbage_collection_force_threshold=1.000000 + enable_blob_files=false + soft_pending_compaction_bytes_limit=68719476736 + target_file_size_base=67108864 + max_compaction_bytes=1677721600 + disable_auto_compactions=false + min_blob_size=0 + memtable_whole_key_filtering=false + max_bytes_for_level_base=268435456 + last_level_temperature=kUnknown + preserve_internal_time_seconds=0 + compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} + max_bytes_for_level_multiplier=10.000000 + max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 + max_sequential_skip_in_iterations=8 + compression=kLZ4Compression + default_write_temperature=kUnknown + compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} + blob_garbage_collection_age_cutoff=0.250000 + ttl=2592000 + periodic_compaction_seconds=0 + preclude_last_level_data_seconds=0 + blob_file_size=268435456 + enable_blob_garbage_collection=false + persist_user_defined_timestamps=true + compaction_pri=kMinOverlappingRatio + compaction_filter_factory=nullptr + comparator=leveldb.BytewiseComparator + bloom_locality=0 + merge_operator=nullptr + compaction_filter=nullptr + level_compaction_dynamic_level_bytes=true + optimize_filters_for_hits=false + inplace_update_support=false + max_write_buffer_number_to_maintain=0 + max_write_buffer_size_to_maintain=0 + sst_partitioner_factory=nullptr + default_temperature=kUnknown + compaction_style=kCompactionStyleLevel + min_write_buffer_number_to_merge=1 + memtable_factory=SkipListFactory + memtable_insert_with_hint_prefix_extractor=nullptr + force_consistency_checks=true + num_levels=7 + +[TableOptions/BlockBasedTable "default"] + num_file_reads_for_auto_readahead=2 + initial_auto_readahead_size=8192 + metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} + enable_index_compression=true + verify_compression=false + prepopulate_block_cache=kDisable + format_version=6 + use_delta_encoding=true + pin_top_level_index_and_filter=true + read_amp_bytes_per_bit=0 + decouple_partitioned_filters=false + partition_filters=false + metadata_block_size=4096 + max_auto_readahead_size=262144 + index_block_restart_interval=1 + block_size_deviation=10 + block_size=4096 + detect_filter_construct_corruption=false + no_block_cache=false + checksum=kXXH3 + filter_policy=nullptr + data_block_hash_table_util_ratio=0.750000 + block_restart_interval=16 + index_type=kBinarySearch + pin_l0_filter_and_index_blocks_in_cache=false + data_block_index_type=kDataBlockBinarySearch + cache_index_and_filter_blocks_with_high_priority=true + whole_key_filtering=true + index_shortening=kShortenSeparators + cache_index_and_filter_blocks=false + block_align=false + optimize_filters_for_memory=true + flush_block_policy_factory=FlushBlockBySizePolicyFactory + diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/payload_index/config.json b/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/payload_index/config.json new file mode 100644 index 0000000000000000000000000000000000000000..7d0db25a817fdb0c73414e2809921889f6ff065f --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/payload_index/config.json @@ -0,0 +1 @@ +{"indexed_fields":{},"skip_rocksdb":null} \ No newline at end of file diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/payload_storage/bitmask.dat b/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/payload_storage/bitmask.dat new file mode 100644 index 0000000000000000000000000000000000000000..f1312a1c6f09b2e4b9a9a336997d0d3e2a625a74 Binary files /dev/null and b/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/payload_storage/bitmask.dat differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/payload_storage/config.json b/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/payload_storage/config.json new file mode 100644 index 0000000000000000000000000000000000000000..9477c128b4ebf57927ba47096ca8af9166799c4f --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/payload_storage/config.json @@ -0,0 +1 @@ +{"page_size_bytes":33554432,"block_size_bytes":128,"region_size_blocks":8192,"compression":"LZ4"} \ No newline at end of file diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/payload_storage/gaps.dat b/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/payload_storage/gaps.dat new file mode 100644 index 0000000000000000000000000000000000000000..5e2c5fd3ba69863ff681e77f442a6671a54347ac Binary files /dev/null and b/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/payload_storage/gaps.dat differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/payload_storage/page_0.dat b/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/payload_storage/page_0.dat new file mode 100644 index 0000000000000000000000000000000000000000..7be3f0a5ba3ff20eb27e03c3730701e3f13777ad Binary files /dev/null and b/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/payload_storage/page_0.dat differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/payload_storage/tracker.dat b/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/payload_storage/tracker.dat new file mode 100644 index 0000000000000000000000000000000000000000..fe4426833f0f850db8ff74ae6fb6b8dbe0834548 Binary files /dev/null and b/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/payload_storage/tracker.dat differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/segment.json b/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/segment.json new file mode 100644 index 0000000000000000000000000000000000000000..07e16843334c60ab193cb34a1a4f41a217af5a1a --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/segment.json @@ -0,0 +1 @@ +{"version":17,"config":{"vector_data":{"":{"size":1536,"distance":"Cosine","storage_type":"InRamChunkedMmap","index":{"type":"plain","options":{}},"quantization_config":null}},"payload_storage_type":{"type":"mmap"}}} \ No newline at end of file diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/vector_storage/deleted/flags_a.dat b/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/vector_storage/deleted/flags_a.dat new file mode 100644 index 0000000000000000000000000000000000000000..9e0f96a2a253b173cb45b41868209a5d043e1437 Binary files /dev/null and b/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/vector_storage/deleted/flags_a.dat differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/vector_storage/deleted/status.dat b/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/vector_storage/deleted/status.dat new file mode 100644 index 0000000000000000000000000000000000000000..0768089c8f09596abc2a0a0a230c806c72fe5238 Binary files /dev/null and b/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/vector_storage/deleted/status.dat differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/vector_storage/vectors/chunk_0.mmap b/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/vector_storage/vectors/chunk_0.mmap new file mode 100644 index 0000000000000000000000000000000000000000..7a6f24489709a77d918855dae53b5a712eb7a12d Binary files /dev/null and b/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/vector_storage/vectors/chunk_0.mmap differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/vector_storage/vectors/config.json b/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/vector_storage/vectors/config.json new file mode 100644 index 0000000000000000000000000000000000000000..ff57a41ff8c6af2be033c6652e21559c49b5a9fa --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/vector_storage/vectors/config.json @@ -0,0 +1 @@ +{"chunk_size_bytes":33552384,"chunk_size_vectors":5461,"dim":1536,"mlock":false,"populate":true} \ No newline at end of file diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/vector_storage/vectors/status.dat b/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/vector_storage/vectors/status.dat new file mode 100644 index 0000000000000000000000000000000000000000..19deb614d434474ab4941b2980006ae5f9b49324 Binary files /dev/null and b/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/vector_storage/vectors/status.dat differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/version.info b/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/version.info new file mode 100644 index 0000000000000000000000000000000000000000..09a3acfa138db01dc50a688796b2861638c369ec --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/3d6fe38a-5307-4e23-8f1d-e0666d781566/version.info @@ -0,0 +1 @@ +0.6.0 \ No newline at end of file diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/000009.sst b/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/000009.sst new file mode 100644 index 0000000000000000000000000000000000000000..9cff37cea0a1e1bafa80e035f0c7702b249a446c Binary files /dev/null and b/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/000009.sst differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/000018.sst b/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/000018.sst new file mode 100644 index 0000000000000000000000000000000000000000..48822faea92357eba6f4692ba59463bacfd9fc01 Binary files /dev/null and b/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/000018.sst differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/000020.sst b/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/000020.sst new file mode 100644 index 0000000000000000000000000000000000000000..4029e568d1432c202d51a66098eb887e3e77da82 Binary files /dev/null and b/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/000020.sst differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/000027.log b/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/000027.log new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/CURRENT b/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/CURRENT new file mode 100644 index 0000000000000000000000000000000000000000..5d0fffb388756bcfd7a9678d1870ed253ccc5176 --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/CURRENT @@ -0,0 +1 @@ +MANIFEST-000028 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/IDENTITY b/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/IDENTITY new file mode 100644 index 0000000000000000000000000000000000000000..fe3290d0bad5617f1192eae17fb4442ed0983f10 --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/IDENTITY @@ -0,0 +1 @@ +49040e8e-49f8-4023-9ca0-f283c92cea93 \ No newline at end of file diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/LOCK b/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/LOCK new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/LOG b/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/LOG new file mode 100644 index 0000000000000000000000000000000000000000..5f81dbabdd9b4df8e5560fe1b1faecd949b05fed --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/LOG @@ -0,0 +1,787 @@ +2025/05/04-10:09:55.610821 43 RocksDB version: 9.9.3 +2025/05/04-10:09:55.611107 43 Compile date 2024-12-05 01:25:31 +2025/05/04-10:09:55.611108 43 DB SUMMARY +2025/05/04-10:09:55.611109 43 Host name (Env): c5f2a9d061bb +2025/05/04-10:09:55.611109 43 DB Session ID: CD0SHR3DDC5AMRBDXMDL +2025/05/04-10:09:55.612385 43 CURRENT file: CURRENT +2025/05/04-10:09:55.612386 43 IDENTITY file: IDENTITY +2025/05/04-10:09:55.612474 43 MANIFEST file: MANIFEST-000024 size: 899 Bytes +2025/05/04-10:09:55.612487 43 SST files in ./storage/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222 dir, Total Num: 3, files: 000009.sst 000018.sst 000020.sst +2025/05/04-10:09:55.612490 43 Write Ahead Log file in ./storage/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222: 000023.log size: 0 ; +2025/05/04-10:09:55.612493 43 Options.error_if_exists: 0 +2025/05/04-10:09:55.612495 43 Options.create_if_missing: 1 +2025/05/04-10:09:55.612498 43 Options.paranoid_checks: 1 +2025/05/04-10:09:55.612499 43 Options.flush_verify_memtable_count: 1 +2025/05/04-10:09:55.612500 43 Options.compaction_verify_record_count: 1 +2025/05/04-10:09:55.612503 43 Options.track_and_verify_wals_in_manifest: 0 +2025/05/04-10:09:55.612504 43 Options.verify_sst_unique_id_in_manifest: 1 +2025/05/04-10:09:55.612517 43 Options.env: 0xffff86034000 +2025/05/04-10:09:55.612520 43 Options.fs: PosixFileSystem +2025/05/04-10:09:55.612521 43 Options.info_log: 0xffff9abfd000 +2025/05/04-10:09:55.612522 43 Options.max_file_opening_threads: 16 +2025/05/04-10:09:55.612523 43 Options.statistics: (nil) +2025/05/04-10:09:55.612523 43 Options.use_fsync: 0 +2025/05/04-10:09:55.612524 43 Options.max_log_file_size: 1048576 +2025/05/04-10:09:55.612524 43 Options.max_manifest_file_size: 1073741824 +2025/05/04-10:09:55.612525 43 Options.log_file_time_to_roll: 0 +2025/05/04-10:09:55.612525 43 Options.keep_log_file_num: 1 +2025/05/04-10:09:55.612526 43 Options.recycle_log_file_num: 0 +2025/05/04-10:09:55.612527 43 Options.allow_fallocate: 1 +2025/05/04-10:09:55.612528 43 Options.allow_mmap_reads: 0 +2025/05/04-10:09:55.612531 43 Options.allow_mmap_writes: 0 +2025/05/04-10:09:55.612532 43 Options.use_direct_reads: 0 +2025/05/04-10:09:55.612532 43 Options.use_direct_io_for_flush_and_compaction: 0 +2025/05/04-10:09:55.612533 43 Options.create_missing_column_families: 1 +2025/05/04-10:09:55.612534 43 Options.db_log_dir: +2025/05/04-10:09:55.612534 43 Options.wal_dir: +2025/05/04-10:09:55.612536 43 Options.table_cache_numshardbits: 6 +2025/05/04-10:09:55.612536 43 Options.WAL_ttl_seconds: 0 +2025/05/04-10:09:55.612537 43 Options.WAL_size_limit_MB: 0 +2025/05/04-10:09:55.612538 43 Options.max_write_batch_group_size_bytes: 1048576 +2025/05/04-10:09:55.612538 43 Options.manifest_preallocation_size: 4194304 +2025/05/04-10:09:55.612539 43 Options.is_fd_close_on_exec: 1 +2025/05/04-10:09:55.612539 43 Options.advise_random_on_open: 1 +2025/05/04-10:09:55.612540 43 Options.db_write_buffer_size: 0 +2025/05/04-10:09:55.612540 43 Options.write_buffer_manager: 0xffff9bc36640 +2025/05/04-10:09:55.612541 43 Options.random_access_max_buffer_size: 1048576 +2025/05/04-10:09:55.612541 43 Options.use_adaptive_mutex: 0 +2025/05/04-10:09:55.612542 43 Options.rate_limiter: (nil) +2025/05/04-10:09:55.612542 43 Options.sst_file_manager.rate_bytes_per_sec: 0 +2025/05/04-10:09:55.612543 43 Options.wal_recovery_mode: 0 +2025/05/04-10:09:55.612545 43 Options.enable_thread_tracking: 0 +2025/05/04-10:09:55.612546 43 Options.enable_pipelined_write: 0 +2025/05/04-10:09:55.612547 43 Options.unordered_write: 0 +2025/05/04-10:09:55.612548 43 Options.allow_concurrent_memtable_write: 1 +2025/05/04-10:09:55.612548 43 Options.enable_write_thread_adaptive_yield: 1 +2025/05/04-10:09:55.612549 43 Options.write_thread_max_yield_usec: 100 +2025/05/04-10:09:55.612550 43 Options.write_thread_slow_yield_usec: 3 +2025/05/04-10:09:55.612550 43 Options.row_cache: None +2025/05/04-10:09:55.612551 43 Options.wal_filter: None +2025/05/04-10:09:55.612552 43 Options.avoid_flush_during_recovery: 0 +2025/05/04-10:09:55.612552 43 Options.allow_ingest_behind: 0 +2025/05/04-10:09:55.612553 43 Options.two_write_queues: 0 +2025/05/04-10:09:55.612553 43 Options.manual_wal_flush: 0 +2025/05/04-10:09:55.612554 43 Options.wal_compression: 0 +2025/05/04-10:09:55.612554 43 Options.background_close_inactive_wals: 0 +2025/05/04-10:09:55.612555 43 Options.atomic_flush: 0 +2025/05/04-10:09:55.612555 43 Options.avoid_unnecessary_blocking_io: 0 +2025/05/04-10:09:55.612556 43 Options.prefix_seek_opt_in_only: 0 +2025/05/04-10:09:55.612556 43 Options.persist_stats_to_disk: 0 +2025/05/04-10:09:55.612557 43 Options.write_dbid_to_manifest: 1 +2025/05/04-10:09:55.612558 43 Options.write_identity_file: 1 +2025/05/04-10:09:55.612558 43 Options.log_readahead_size: 0 +2025/05/04-10:09:55.612559 43 Options.file_checksum_gen_factory: Unknown +2025/05/04-10:09:55.612561 43 Options.best_efforts_recovery: 0 +2025/05/04-10:09:55.612561 43 Options.max_bgerror_resume_count: 2147483647 +2025/05/04-10:09:55.612562 43 Options.bgerror_resume_retry_interval: 1000000 +2025/05/04-10:09:55.612563 43 Options.allow_data_in_errors: 0 +2025/05/04-10:09:55.612563 43 Options.db_host_id: __hostname__ +2025/05/04-10:09:55.612564 43 Options.enforce_single_del_contracts: true +2025/05/04-10:09:55.612564 43 Options.metadata_write_temperature: kUnknown +2025/05/04-10:09:55.612565 43 Options.wal_write_temperature: kUnknown +2025/05/04-10:09:55.612566 43 Options.max_background_jobs: 2 +2025/05/04-10:09:55.612566 43 Options.max_background_compactions: -1 +2025/05/04-10:09:55.612567 43 Options.max_subcompactions: 1 +2025/05/04-10:09:55.612567 43 Options.avoid_flush_during_shutdown: 0 +2025/05/04-10:09:55.612568 43 Options.writable_file_max_buffer_size: 1048576 +2025/05/04-10:09:55.612568 43 Options.delayed_write_rate : 16777216 +2025/05/04-10:09:55.612569 43 Options.max_total_wal_size: 0 +2025/05/04-10:09:55.612569 43 Options.delete_obsolete_files_period_micros: 180000000 +2025/05/04-10:09:55.612570 43 Options.stats_dump_period_sec: 600 +2025/05/04-10:09:55.612570 43 Options.stats_persist_period_sec: 600 +2025/05/04-10:09:55.612571 43 Options.stats_history_buffer_size: 1048576 +2025/05/04-10:09:55.612571 43 Options.max_open_files: 256 +2025/05/04-10:09:55.612572 43 Options.bytes_per_sync: 0 +2025/05/04-10:09:55.612573 43 Options.wal_bytes_per_sync: 0 +2025/05/04-10:09:55.612573 43 Options.strict_bytes_per_sync: 0 +2025/05/04-10:09:55.612574 43 Options.compaction_readahead_size: 2097152 +2025/05/04-10:09:55.612574 43 Options.max_background_flushes: -1 +2025/05/04-10:09:55.612575 43 Options.daily_offpeak_time_utc: +2025/05/04-10:09:55.612575 43 Compression algorithms supported: +2025/05/04-10:09:55.612576 43 kZSTD supported: 0 +2025/05/04-10:09:55.612576 43 kXpressCompression supported: 0 +2025/05/04-10:09:55.612579 43 kBZip2Compression supported: 0 +2025/05/04-10:09:55.612579 43 kZSTDNotFinalCompression supported: 0 +2025/05/04-10:09:55.612580 43 kLZ4Compression supported: 1 +2025/05/04-10:09:55.612580 43 kZlibCompression supported: 0 +2025/05/04-10:09:55.612581 43 kLZ4HCCompression supported: 1 +2025/05/04-10:09:55.612582 43 kSnappyCompression supported: 1 +2025/05/04-10:09:55.612582 43 Fast CRC32 supported: Not supported on x86 +2025/05/04-10:09:55.612583 43 DMutex implementation: pthread_mutex_t +2025/05/04-10:09:55.612584 43 Jemalloc supported: 0 +2025/05/04-10:09:55.631546 43 Options.comparator: leveldb.BytewiseComparator +2025/05/04-10:09:55.631548 43 Options.merge_operator: None +2025/05/04-10:09:55.631550 43 Options.compaction_filter: None +2025/05/04-10:09:55.631552 43 Options.compaction_filter_factory: None +2025/05/04-10:09:55.631552 43 Options.sst_partitioner_factory: None +2025/05/04-10:09:55.631553 43 Options.memtable_factory: SkipListFactory +2025/05/04-10:09:55.631554 43 Options.table_factory: BlockBasedTable +2025/05/04-10:09:55.631568 43 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff9bca9700) + cache_index_and_filter_blocks: 0 + cache_index_and_filter_blocks_with_high_priority: 1 + pin_l0_filter_and_index_blocks_in_cache: 0 + pin_top_level_index_and_filter: 1 + index_type: 0 + data_block_index_type: 0 + index_shortening: 1 + data_block_hash_table_util_ratio: 0.750000 + checksum: 4 + no_block_cache: 0 + block_cache: 0xffff9bc36590 + block_cache_name: LRUCache + block_cache_options: + capacity : 33554432 + num_shard_bits : 6 + strict_capacity_limit : 0 + memory_allocator : None + high_pri_pool_ratio: 0.500 + low_pri_pool_ratio: 0.000 + persistent_cache: (nil) + block_size: 4096 + block_size_deviation: 10 + block_restart_interval: 16 + index_block_restart_interval: 1 + metadata_block_size: 4096 + partition_filters: 0 + use_delta_encoding: 1 + filter_policy: nullptr + whole_key_filtering: 1 + verify_compression: 0 + read_amp_bytes_per_bit: 0 + format_version: 6 + enable_index_compression: 1 + block_align: 0 + max_auto_readahead_size: 262144 + prepopulate_block_cache: 0 + initial_auto_readahead_size: 8192 + num_file_reads_for_auto_readahead: 2 +2025/05/04-10:09:55.631571 43 Options.write_buffer_size: 10485760 +2025/05/04-10:09:55.631572 43 Options.max_write_buffer_number: 2 +2025/05/04-10:09:55.631573 43 Options.compression: LZ4 +2025/05/04-10:09:55.631574 43 Options.bottommost_compression: Disabled +2025/05/04-10:09:55.631575 43 Options.prefix_extractor: nullptr +2025/05/04-10:09:55.631575 43 Options.memtable_insert_with_hint_prefix_extractor: nullptr +2025/05/04-10:09:55.631576 43 Options.num_levels: 7 +2025/05/04-10:09:55.631576 43 Options.min_write_buffer_number_to_merge: 1 +2025/05/04-10:09:55.631577 43 Options.max_write_buffer_number_to_maintain: 0 +2025/05/04-10:09:55.631578 43 Options.max_write_buffer_size_to_maintain: 0 +2025/05/04-10:09:55.631578 43 Options.bottommost_compression_opts.window_bits: -14 +2025/05/04-10:09:55.631579 43 Options.bottommost_compression_opts.level: 32767 +2025/05/04-10:09:55.631580 43 Options.bottommost_compression_opts.strategy: 0 +2025/05/04-10:09:55.631580 43 Options.bottommost_compression_opts.max_dict_bytes: 0 +2025/05/04-10:09:55.631581 43 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 +2025/05/04-10:09:55.631582 43 Options.bottommost_compression_opts.parallel_threads: 1 +2025/05/04-10:09:55.631582 43 Options.bottommost_compression_opts.enabled: false +2025/05/04-10:09:55.631583 43 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 +2025/05/04-10:09:55.631583 43 Options.bottommost_compression_opts.use_zstd_dict_trainer: true +2025/05/04-10:09:55.631584 43 Options.compression_opts.window_bits: -14 +2025/05/04-10:09:55.631585 43 Options.compression_opts.level: 32767 +2025/05/04-10:09:55.631587 43 Options.compression_opts.strategy: 0 +2025/05/04-10:09:55.631587 43 Options.compression_opts.max_dict_bytes: 0 +2025/05/04-10:09:55.631588 43 Options.compression_opts.zstd_max_train_bytes: 0 +2025/05/04-10:09:55.631588 43 Options.compression_opts.use_zstd_dict_trainer: true +2025/05/04-10:09:55.631589 43 Options.compression_opts.parallel_threads: 1 +2025/05/04-10:09:55.631589 43 Options.compression_opts.enabled: false +2025/05/04-10:09:55.631590 43 Options.compression_opts.max_dict_buffer_bytes: 0 +2025/05/04-10:09:55.631590 43 Options.level0_file_num_compaction_trigger: 4 +2025/05/04-10:09:55.631591 43 Options.level0_slowdown_writes_trigger: 20 +2025/05/04-10:09:55.631591 43 Options.level0_stop_writes_trigger: 36 +2025/05/04-10:09:55.631592 43 Options.target_file_size_base: 67108864 +2025/05/04-10:09:55.631593 43 Options.target_file_size_multiplier: 1 +2025/05/04-10:09:55.631595 43 Options.max_bytes_for_level_base: 268435456 +2025/05/04-10:09:55.631596 43 Options.level_compaction_dynamic_level_bytes: 1 +2025/05/04-10:09:55.631597 43 Options.max_bytes_for_level_multiplier: 10.000000 +2025/05/04-10:09:55.631598 43 Options.max_bytes_for_level_multiplier_addtl[0]: 1 +2025/05/04-10:09:55.631598 43 Options.max_bytes_for_level_multiplier_addtl[1]: 1 +2025/05/04-10:09:55.631599 43 Options.max_bytes_for_level_multiplier_addtl[2]: 1 +2025/05/04-10:09:55.631599 43 Options.max_bytes_for_level_multiplier_addtl[3]: 1 +2025/05/04-10:09:55.631600 43 Options.max_bytes_for_level_multiplier_addtl[4]: 1 +2025/05/04-10:09:55.631601 43 Options.max_bytes_for_level_multiplier_addtl[5]: 1 +2025/05/04-10:09:55.631602 43 Options.max_bytes_for_level_multiplier_addtl[6]: 1 +2025/05/04-10:09:55.631603 43 Options.max_sequential_skip_in_iterations: 8 +2025/05/04-10:09:55.631604 43 Options.max_compaction_bytes: 1677721600 +2025/05/04-10:09:55.631604 43 Options.arena_block_size: 1048576 +2025/05/04-10:09:55.631605 43 Options.soft_pending_compaction_bytes_limit: 68719476736 +2025/05/04-10:09:55.631606 43 Options.hard_pending_compaction_bytes_limit: 274877906944 +2025/05/04-10:09:55.631606 43 Options.disable_auto_compactions: 0 +2025/05/04-10:09:55.631607 43 Options.compaction_style: kCompactionStyleLevel +2025/05/04-10:09:55.631607 43 Options.compaction_pri: kMinOverlappingRatio +2025/05/04-10:09:55.631609 43 Options.compaction_options_universal.size_ratio: 1 +2025/05/04-10:09:55.631610 43 Options.compaction_options_universal.min_merge_width: 2 +2025/05/04-10:09:55.631611 43 Options.compaction_options_universal.max_merge_width: 4294967295 +2025/05/04-10:09:55.631611 43 Options.compaction_options_universal.max_size_amplification_percent: 200 +2025/05/04-10:09:55.631612 43 Options.compaction_options_universal.compression_size_percent: -1 +2025/05/04-10:09:55.631614 43 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize +2025/05/04-10:09:55.631615 43 Options.compaction_options_universal.max_read_amp: -1 +2025/05/04-10:09:55.631616 43 Options.compaction_options_fifo.max_table_files_size: 1073741824 +2025/05/04-10:09:55.631616 43 Options.compaction_options_fifo.allow_compaction: 0 +2025/05/04-10:09:55.631617 43 Options.table_properties_collectors: +2025/05/04-10:09:55.631618 43 Options.inplace_update_support: 0 +2025/05/04-10:09:55.631618 43 Options.inplace_update_num_locks: 10000 +2025/05/04-10:09:55.631619 43 Options.memtable_prefix_bloom_size_ratio: 0.000000 +2025/05/04-10:09:55.631627 43 Options.memtable_whole_key_filtering: 0 +2025/05/04-10:09:55.631734 43 Options.memtable_huge_page_size: 0 +2025/05/04-10:09:55.631741 43 Options.bloom_locality: 0 +2025/05/04-10:09:55.631742 43 Options.max_successive_merges: 0 +2025/05/04-10:09:55.631746 43 Options.strict_max_successive_merges: 0 +2025/05/04-10:09:55.631748 43 Options.optimize_filters_for_hits: 0 +2025/05/04-10:09:55.631749 43 Options.paranoid_file_checks: 0 +2025/05/04-10:09:55.631750 43 Options.force_consistency_checks: 1 +2025/05/04-10:09:55.631751 43 Options.report_bg_io_stats: 0 +2025/05/04-10:09:55.631752 43 Options.ttl: 2592000 +2025/05/04-10:09:55.631753 43 Options.periodic_compaction_seconds: 0 +2025/05/04-10:09:55.631755 43 Options.default_temperature: kUnknown +2025/05/04-10:09:55.631756 43 Options.preclude_last_level_data_seconds: 0 +2025/05/04-10:09:55.631757 43 Options.preserve_internal_time_seconds: 0 +2025/05/04-10:09:55.631759 43 Options.enable_blob_files: false +2025/05/04-10:09:55.631760 43 Options.min_blob_size: 0 +2025/05/04-10:09:55.631762 43 Options.blob_file_size: 268435456 +2025/05/04-10:09:55.631764 43 Options.blob_compression_type: NoCompression +2025/05/04-10:09:55.631765 43 Options.enable_blob_garbage_collection: false +2025/05/04-10:09:55.631781 43 Options.blob_garbage_collection_age_cutoff: 0.250000 +2025/05/04-10:09:55.631783 43 Options.blob_garbage_collection_force_threshold: 1.000000 +2025/05/04-10:09:55.631784 43 Options.blob_compaction_readahead_size: 0 +2025/05/04-10:09:55.631785 43 Options.blob_file_starting_level: 0 +2025/05/04-10:09:55.631785 43 Options.experimental_mempurge_threshold: 0.000000 +2025/05/04-10:09:55.631786 43 Options.memtable_max_range_deletions: 0 +2025/05/04-10:09:55.634855 43 Options.comparator: leveldb.BytewiseComparator +2025/05/04-10:09:55.634858 43 Options.merge_operator: None +2025/05/04-10:09:55.634858 43 Options.compaction_filter: None +2025/05/04-10:09:55.634859 43 Options.compaction_filter_factory: None +2025/05/04-10:09:55.634872 43 Options.sst_partitioner_factory: None +2025/05/04-10:09:55.634874 43 Options.memtable_factory: SkipListFactory +2025/05/04-10:09:55.634874 43 Options.table_factory: BlockBasedTable +2025/05/04-10:09:55.634906 43 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff9bca9700) + cache_index_and_filter_blocks: 0 + cache_index_and_filter_blocks_with_high_priority: 1 + pin_l0_filter_and_index_blocks_in_cache: 0 + pin_top_level_index_and_filter: 1 + index_type: 0 + data_block_index_type: 0 + index_shortening: 1 + data_block_hash_table_util_ratio: 0.750000 + checksum: 4 + no_block_cache: 0 + block_cache: 0xffff9bc36590 + block_cache_name: LRUCache + block_cache_options: + capacity : 33554432 + num_shard_bits : 6 + strict_capacity_limit : 0 + memory_allocator : None + high_pri_pool_ratio: 0.500 + low_pri_pool_ratio: 0.000 + persistent_cache: (nil) + block_size: 4096 + block_size_deviation: 10 + block_restart_interval: 16 + index_block_restart_interval: 1 + metadata_block_size: 4096 + partition_filters: 0 + use_delta_encoding: 1 + filter_policy: nullptr + whole_key_filtering: 1 + verify_compression: 0 + read_amp_bytes_per_bit: 0 + format_version: 6 + enable_index_compression: 1 + block_align: 0 + max_auto_readahead_size: 262144 + prepopulate_block_cache: 0 + initial_auto_readahead_size: 8192 + num_file_reads_for_auto_readahead: 2 +2025/05/04-10:09:55.634909 43 Options.write_buffer_size: 10485760 +2025/05/04-10:09:55.634910 43 Options.max_write_buffer_number: 2 +2025/05/04-10:09:55.634911 43 Options.compression: LZ4 +2025/05/04-10:09:55.634912 43 Options.bottommost_compression: Disabled +2025/05/04-10:09:55.634913 43 Options.prefix_extractor: nullptr +2025/05/04-10:09:55.634913 43 Options.memtable_insert_with_hint_prefix_extractor: nullptr +2025/05/04-10:09:55.634914 43 Options.num_levels: 7 +2025/05/04-10:09:55.634915 43 Options.min_write_buffer_number_to_merge: 1 +2025/05/04-10:09:55.634919 43 Options.max_write_buffer_number_to_maintain: 0 +2025/05/04-10:09:55.634920 43 Options.max_write_buffer_size_to_maintain: 0 +2025/05/04-10:09:55.634921 43 Options.bottommost_compression_opts.window_bits: -14 +2025/05/04-10:09:55.634921 43 Options.bottommost_compression_opts.level: 32767 +2025/05/04-10:09:55.634922 43 Options.bottommost_compression_opts.strategy: 0 +2025/05/04-10:09:55.634923 43 Options.bottommost_compression_opts.max_dict_bytes: 0 +2025/05/04-10:09:55.634924 43 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 +2025/05/04-10:09:55.634925 43 Options.bottommost_compression_opts.parallel_threads: 1 +2025/05/04-10:09:55.634926 43 Options.bottommost_compression_opts.enabled: false +2025/05/04-10:09:55.634927 43 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 +2025/05/04-10:09:55.634928 43 Options.bottommost_compression_opts.use_zstd_dict_trainer: true +2025/05/04-10:09:55.634928 43 Options.compression_opts.window_bits: -14 +2025/05/04-10:09:55.634929 43 Options.compression_opts.level: 32767 +2025/05/04-10:09:55.634929 43 Options.compression_opts.strategy: 0 +2025/05/04-10:09:55.634930 43 Options.compression_opts.max_dict_bytes: 0 +2025/05/04-10:09:55.634931 43 Options.compression_opts.zstd_max_train_bytes: 0 +2025/05/04-10:09:55.634931 43 Options.compression_opts.use_zstd_dict_trainer: true +2025/05/04-10:09:55.634932 43 Options.compression_opts.parallel_threads: 1 +2025/05/04-10:09:55.634934 43 Options.compression_opts.enabled: false +2025/05/04-10:09:55.634935 43 Options.compression_opts.max_dict_buffer_bytes: 0 +2025/05/04-10:09:55.634936 43 Options.level0_file_num_compaction_trigger: 4 +2025/05/04-10:09:55.634936 43 Options.level0_slowdown_writes_trigger: 20 +2025/05/04-10:09:55.634937 43 Options.level0_stop_writes_trigger: 36 +2025/05/04-10:09:55.634937 43 Options.target_file_size_base: 67108864 +2025/05/04-10:09:55.634938 43 Options.target_file_size_multiplier: 1 +2025/05/04-10:09:55.634939 43 Options.max_bytes_for_level_base: 268435456 +2025/05/04-10:09:55.634939 43 Options.level_compaction_dynamic_level_bytes: 1 +2025/05/04-10:09:55.634940 43 Options.max_bytes_for_level_multiplier: 10.000000 +2025/05/04-10:09:55.634941 43 Options.max_bytes_for_level_multiplier_addtl[0]: 1 +2025/05/04-10:09:55.634941 43 Options.max_bytes_for_level_multiplier_addtl[1]: 1 +2025/05/04-10:09:55.634942 43 Options.max_bytes_for_level_multiplier_addtl[2]: 1 +2025/05/04-10:09:55.634943 43 Options.max_bytes_for_level_multiplier_addtl[3]: 1 +2025/05/04-10:09:55.634943 43 Options.max_bytes_for_level_multiplier_addtl[4]: 1 +2025/05/04-10:09:55.634944 43 Options.max_bytes_for_level_multiplier_addtl[5]: 1 +2025/05/04-10:09:55.634944 43 Options.max_bytes_for_level_multiplier_addtl[6]: 1 +2025/05/04-10:09:55.634945 43 Options.max_sequential_skip_in_iterations: 8 +2025/05/04-10:09:55.634945 43 Options.max_compaction_bytes: 1677721600 +2025/05/04-10:09:55.634946 43 Options.arena_block_size: 1048576 +2025/05/04-10:09:55.634947 43 Options.soft_pending_compaction_bytes_limit: 68719476736 +2025/05/04-10:09:55.634947 43 Options.hard_pending_compaction_bytes_limit: 274877906944 +2025/05/04-10:09:55.634948 43 Options.disable_auto_compactions: 0 +2025/05/04-10:09:55.634949 43 Options.compaction_style: kCompactionStyleLevel +2025/05/04-10:09:55.634950 43 Options.compaction_pri: kMinOverlappingRatio +2025/05/04-10:09:55.634950 43 Options.compaction_options_universal.size_ratio: 1 +2025/05/04-10:09:55.634951 43 Options.compaction_options_universal.min_merge_width: 2 +2025/05/04-10:09:55.634952 43 Options.compaction_options_universal.max_merge_width: 4294967295 +2025/05/04-10:09:55.634953 43 Options.compaction_options_universal.max_size_amplification_percent: 200 +2025/05/04-10:09:55.634954 43 Options.compaction_options_universal.compression_size_percent: -1 +2025/05/04-10:09:55.634955 43 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize +2025/05/04-10:09:55.634955 43 Options.compaction_options_universal.max_read_amp: -1 +2025/05/04-10:09:55.634956 43 Options.compaction_options_fifo.max_table_files_size: 1073741824 +2025/05/04-10:09:55.634956 43 Options.compaction_options_fifo.allow_compaction: 0 +2025/05/04-10:09:55.634959 43 Options.table_properties_collectors: +2025/05/04-10:09:55.634959 43 Options.inplace_update_support: 0 +2025/05/04-10:09:55.634960 43 Options.inplace_update_num_locks: 10000 +2025/05/04-10:09:55.634961 43 Options.memtable_prefix_bloom_size_ratio: 0.000000 +2025/05/04-10:09:55.634961 43 Options.memtable_whole_key_filtering: 0 +2025/05/04-10:09:55.634962 43 Options.memtable_huge_page_size: 0 +2025/05/04-10:09:55.634963 43 Options.bloom_locality: 0 +2025/05/04-10:09:55.634963 43 Options.max_successive_merges: 0 +2025/05/04-10:09:55.634964 43 Options.strict_max_successive_merges: 0 +2025/05/04-10:09:55.634964 43 Options.optimize_filters_for_hits: 0 +2025/05/04-10:09:55.634965 43 Options.paranoid_file_checks: 0 +2025/05/04-10:09:55.634966 43 Options.force_consistency_checks: 1 +2025/05/04-10:09:55.634966 43 Options.report_bg_io_stats: 0 +2025/05/04-10:09:55.634967 43 Options.ttl: 2592000 +2025/05/04-10:09:55.634968 43 Options.periodic_compaction_seconds: 0 +2025/05/04-10:09:55.634968 43 Options.default_temperature: kUnknown +2025/05/04-10:09:55.634969 43 Options.preclude_last_level_data_seconds: 0 +2025/05/04-10:09:55.634970 43 Options.preserve_internal_time_seconds: 0 +2025/05/04-10:09:55.634970 43 Options.enable_blob_files: false +2025/05/04-10:09:55.634971 43 Options.min_blob_size: 0 +2025/05/04-10:09:55.634971 43 Options.blob_file_size: 268435456 +2025/05/04-10:09:55.634972 43 Options.blob_compression_type: NoCompression +2025/05/04-10:09:55.634973 43 Options.enable_blob_garbage_collection: false +2025/05/04-10:09:55.634974 43 Options.blob_garbage_collection_age_cutoff: 0.250000 +2025/05/04-10:09:55.634974 43 Options.blob_garbage_collection_force_threshold: 1.000000 +2025/05/04-10:09:55.634975 43 Options.blob_compaction_readahead_size: 0 +2025/05/04-10:09:55.634976 43 Options.blob_file_starting_level: 0 +2025/05/04-10:09:55.634976 43 Options.experimental_mempurge_threshold: 0.000000 +2025/05/04-10:09:55.634977 43 Options.memtable_max_range_deletions: 0 +2025/05/04-10:09:55.635009 43 Options.comparator: leveldb.BytewiseComparator +2025/05/04-10:09:55.635010 43 Options.merge_operator: None +2025/05/04-10:09:55.635011 43 Options.compaction_filter: None +2025/05/04-10:09:55.635013 43 Options.compaction_filter_factory: None +2025/05/04-10:09:55.635014 43 Options.sst_partitioner_factory: None +2025/05/04-10:09:55.635015 43 Options.memtable_factory: SkipListFactory +2025/05/04-10:09:55.635015 43 Options.table_factory: BlockBasedTable +2025/05/04-10:09:55.635022 43 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff9bca9700) + cache_index_and_filter_blocks: 0 + cache_index_and_filter_blocks_with_high_priority: 1 + pin_l0_filter_and_index_blocks_in_cache: 0 + pin_top_level_index_and_filter: 1 + index_type: 0 + data_block_index_type: 0 + index_shortening: 1 + data_block_hash_table_util_ratio: 0.750000 + checksum: 4 + no_block_cache: 0 + block_cache: 0xffff9bc36590 + block_cache_name: LRUCache + block_cache_options: + capacity : 33554432 + num_shard_bits : 6 + strict_capacity_limit : 0 + memory_allocator : None + high_pri_pool_ratio: 0.500 + low_pri_pool_ratio: 0.000 + persistent_cache: (nil) + block_size: 4096 + block_size_deviation: 10 + block_restart_interval: 16 + index_block_restart_interval: 1 + metadata_block_size: 4096 + partition_filters: 0 + use_delta_encoding: 1 + filter_policy: nullptr + whole_key_filtering: 1 + verify_compression: 0 + read_amp_bytes_per_bit: 0 + format_version: 6 + enable_index_compression: 1 + block_align: 0 + max_auto_readahead_size: 262144 + prepopulate_block_cache: 0 + initial_auto_readahead_size: 8192 + num_file_reads_for_auto_readahead: 2 +2025/05/04-10:09:55.635025 43 Options.write_buffer_size: 10485760 +2025/05/04-10:09:55.635025 43 Options.max_write_buffer_number: 2 +2025/05/04-10:09:55.635026 43 Options.compression: LZ4 +2025/05/04-10:09:55.635027 43 Options.bottommost_compression: Disabled +2025/05/04-10:09:55.635027 43 Options.prefix_extractor: nullptr +2025/05/04-10:09:55.635029 43 Options.memtable_insert_with_hint_prefix_extractor: nullptr +2025/05/04-10:09:55.635029 43 Options.num_levels: 7 +2025/05/04-10:09:55.635030 43 Options.min_write_buffer_number_to_merge: 1 +2025/05/04-10:09:55.635030 43 Options.max_write_buffer_number_to_maintain: 0 +2025/05/04-10:09:55.635031 43 Options.max_write_buffer_size_to_maintain: 0 +2025/05/04-10:09:55.635031 43 Options.bottommost_compression_opts.window_bits: -14 +2025/05/04-10:09:55.635032 43 Options.bottommost_compression_opts.level: 32767 +2025/05/04-10:09:55.635033 43 Options.bottommost_compression_opts.strategy: 0 +2025/05/04-10:09:55.635033 43 Options.bottommost_compression_opts.max_dict_bytes: 0 +2025/05/04-10:09:55.635034 43 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 +2025/05/04-10:09:55.635034 43 Options.bottommost_compression_opts.parallel_threads: 1 +2025/05/04-10:09:55.635035 43 Options.bottommost_compression_opts.enabled: false +2025/05/04-10:09:55.635035 43 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 +2025/05/04-10:09:55.635036 43 Options.bottommost_compression_opts.use_zstd_dict_trainer: true +2025/05/04-10:09:55.635037 43 Options.compression_opts.window_bits: -14 +2025/05/04-10:09:55.635037 43 Options.compression_opts.level: 32767 +2025/05/04-10:09:55.635038 43 Options.compression_opts.strategy: 0 +2025/05/04-10:09:55.635038 43 Options.compression_opts.max_dict_bytes: 0 +2025/05/04-10:09:55.635039 43 Options.compression_opts.zstd_max_train_bytes: 0 +2025/05/04-10:09:55.635039 43 Options.compression_opts.use_zstd_dict_trainer: true +2025/05/04-10:09:55.635040 43 Options.compression_opts.parallel_threads: 1 +2025/05/04-10:09:55.635040 43 Options.compression_opts.enabled: false +2025/05/04-10:09:55.635041 43 Options.compression_opts.max_dict_buffer_bytes: 0 +2025/05/04-10:09:55.635041 43 Options.level0_file_num_compaction_trigger: 4 +2025/05/04-10:09:55.635042 43 Options.level0_slowdown_writes_trigger: 20 +2025/05/04-10:09:55.635043 43 Options.level0_stop_writes_trigger: 36 +2025/05/04-10:09:55.635043 43 Options.target_file_size_base: 67108864 +2025/05/04-10:09:55.635044 43 Options.target_file_size_multiplier: 1 +2025/05/04-10:09:55.635044 43 Options.max_bytes_for_level_base: 268435456 +2025/05/04-10:09:55.635045 43 Options.level_compaction_dynamic_level_bytes: 1 +2025/05/04-10:09:55.635045 43 Options.max_bytes_for_level_multiplier: 10.000000 +2025/05/04-10:09:55.635046 43 Options.max_bytes_for_level_multiplier_addtl[0]: 1 +2025/05/04-10:09:55.635047 43 Options.max_bytes_for_level_multiplier_addtl[1]: 1 +2025/05/04-10:09:55.635047 43 Options.max_bytes_for_level_multiplier_addtl[2]: 1 +2025/05/04-10:09:55.635048 43 Options.max_bytes_for_level_multiplier_addtl[3]: 1 +2025/05/04-10:09:55.635048 43 Options.max_bytes_for_level_multiplier_addtl[4]: 1 +2025/05/04-10:09:55.635049 43 Options.max_bytes_for_level_multiplier_addtl[5]: 1 +2025/05/04-10:09:55.635050 43 Options.max_bytes_for_level_multiplier_addtl[6]: 1 +2025/05/04-10:09:55.635051 43 Options.max_sequential_skip_in_iterations: 8 +2025/05/04-10:09:55.635051 43 Options.max_compaction_bytes: 1677721600 +2025/05/04-10:09:55.635052 43 Options.arena_block_size: 1048576 +2025/05/04-10:09:55.635052 43 Options.soft_pending_compaction_bytes_limit: 68719476736 +2025/05/04-10:09:55.635053 43 Options.hard_pending_compaction_bytes_limit: 274877906944 +2025/05/04-10:09:55.635054 43 Options.disable_auto_compactions: 0 +2025/05/04-10:09:55.635054 43 Options.compaction_style: kCompactionStyleLevel +2025/05/04-10:09:55.635055 43 Options.compaction_pri: kMinOverlappingRatio +2025/05/04-10:09:55.635056 43 Options.compaction_options_universal.size_ratio: 1 +2025/05/04-10:09:55.635056 43 Options.compaction_options_universal.min_merge_width: 2 +2025/05/04-10:09:55.635057 43 Options.compaction_options_universal.max_merge_width: 4294967295 +2025/05/04-10:09:55.635057 43 Options.compaction_options_universal.max_size_amplification_percent: 200 +2025/05/04-10:09:55.635058 43 Options.compaction_options_universal.compression_size_percent: -1 +2025/05/04-10:09:55.635058 43 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize +2025/05/04-10:09:55.635059 43 Options.compaction_options_universal.max_read_amp: -1 +2025/05/04-10:09:55.635060 43 Options.compaction_options_fifo.max_table_files_size: 1073741824 +2025/05/04-10:09:55.635060 43 Options.compaction_options_fifo.allow_compaction: 0 +2025/05/04-10:09:55.635061 43 Options.table_properties_collectors: +2025/05/04-10:09:55.635062 43 Options.inplace_update_support: 0 +2025/05/04-10:09:55.635063 43 Options.inplace_update_num_locks: 10000 +2025/05/04-10:09:55.635064 43 Options.memtable_prefix_bloom_size_ratio: 0.000000 +2025/05/04-10:09:55.635064 43 Options.memtable_whole_key_filtering: 0 +2025/05/04-10:09:55.635065 43 Options.memtable_huge_page_size: 0 +2025/05/04-10:09:55.635066 43 Options.bloom_locality: 0 +2025/05/04-10:09:55.635066 43 Options.max_successive_merges: 0 +2025/05/04-10:09:55.635067 43 Options.strict_max_successive_merges: 0 +2025/05/04-10:09:55.635068 43 Options.optimize_filters_for_hits: 0 +2025/05/04-10:09:55.635068 43 Options.paranoid_file_checks: 0 +2025/05/04-10:09:55.635069 43 Options.force_consistency_checks: 1 +2025/05/04-10:09:55.635069 43 Options.report_bg_io_stats: 0 +2025/05/04-10:09:55.635070 43 Options.ttl: 2592000 +2025/05/04-10:09:55.635070 43 Options.periodic_compaction_seconds: 0 +2025/05/04-10:09:55.635071 43 Options.default_temperature: kUnknown +2025/05/04-10:09:55.635071 43 Options.preclude_last_level_data_seconds: 0 +2025/05/04-10:09:55.635072 43 Options.preserve_internal_time_seconds: 0 +2025/05/04-10:09:55.635072 43 Options.enable_blob_files: false +2025/05/04-10:09:55.635073 43 Options.min_blob_size: 0 +2025/05/04-10:09:55.635073 43 Options.blob_file_size: 268435456 +2025/05/04-10:09:55.635074 43 Options.blob_compression_type: NoCompression +2025/05/04-10:09:55.635075 43 Options.enable_blob_garbage_collection: false +2025/05/04-10:09:55.635075 43 Options.blob_garbage_collection_age_cutoff: 0.250000 +2025/05/04-10:09:55.635076 43 Options.blob_garbage_collection_force_threshold: 1.000000 +2025/05/04-10:09:55.635076 43 Options.blob_compaction_readahead_size: 0 +2025/05/04-10:09:55.635077 43 Options.blob_file_starting_level: 0 +2025/05/04-10:09:55.635077 43 Options.experimental_mempurge_threshold: 0.000000 +2025/05/04-10:09:55.635078 43 Options.memtable_max_range_deletions: 0 +2025/05/04-10:09:55.635098 43 Options.comparator: leveldb.BytewiseComparator +2025/05/04-10:09:55.635101 43 Options.merge_operator: None +2025/05/04-10:09:55.635102 43 Options.compaction_filter: None +2025/05/04-10:09:55.635102 43 Options.compaction_filter_factory: None +2025/05/04-10:09:55.635103 43 Options.sst_partitioner_factory: None +2025/05/04-10:09:55.635104 43 Options.memtable_factory: SkipListFactory +2025/05/04-10:09:55.635105 43 Options.table_factory: BlockBasedTable +2025/05/04-10:09:55.635112 43 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff9bca9700) + cache_index_and_filter_blocks: 0 + cache_index_and_filter_blocks_with_high_priority: 1 + pin_l0_filter_and_index_blocks_in_cache: 0 + pin_top_level_index_and_filter: 1 + index_type: 0 + data_block_index_type: 0 + index_shortening: 1 + data_block_hash_table_util_ratio: 0.750000 + checksum: 4 + no_block_cache: 0 + block_cache: 0xffff9bc36590 + block_cache_name: LRUCache + block_cache_options: + capacity : 33554432 + num_shard_bits : 6 + strict_capacity_limit : 0 + memory_allocator : None + high_pri_pool_ratio: 0.500 + low_pri_pool_ratio: 0.000 + persistent_cache: (nil) + block_size: 4096 + block_size_deviation: 10 + block_restart_interval: 16 + index_block_restart_interval: 1 + metadata_block_size: 4096 + partition_filters: 0 + use_delta_encoding: 1 + filter_policy: nullptr + whole_key_filtering: 1 + verify_compression: 0 + read_amp_bytes_per_bit: 0 + format_version: 6 + enable_index_compression: 1 + block_align: 0 + max_auto_readahead_size: 262144 + prepopulate_block_cache: 0 + initial_auto_readahead_size: 8192 + num_file_reads_for_auto_readahead: 2 +2025/05/04-10:09:55.635113 43 Options.write_buffer_size: 10485760 +2025/05/04-10:09:55.635114 43 Options.max_write_buffer_number: 2 +2025/05/04-10:09:55.635114 43 Options.compression: LZ4 +2025/05/04-10:09:55.635115 43 Options.bottommost_compression: Disabled +2025/05/04-10:09:55.635116 43 Options.prefix_extractor: nullptr +2025/05/04-10:09:55.635118 43 Options.memtable_insert_with_hint_prefix_extractor: nullptr +2025/05/04-10:09:55.635118 43 Options.num_levels: 7 +2025/05/04-10:09:55.635119 43 Options.min_write_buffer_number_to_merge: 1 +2025/05/04-10:09:55.635121 43 Options.max_write_buffer_number_to_maintain: 0 +2025/05/04-10:09:55.635122 43 Options.max_write_buffer_size_to_maintain: 0 +2025/05/04-10:09:55.635122 43 Options.bottommost_compression_opts.window_bits: -14 +2025/05/04-10:09:55.635123 43 Options.bottommost_compression_opts.level: 32767 +2025/05/04-10:09:55.635124 43 Options.bottommost_compression_opts.strategy: 0 +2025/05/04-10:09:55.635124 43 Options.bottommost_compression_opts.max_dict_bytes: 0 +2025/05/04-10:09:55.635125 43 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 +2025/05/04-10:09:55.635125 43 Options.bottommost_compression_opts.parallel_threads: 1 +2025/05/04-10:09:55.635126 43 Options.bottommost_compression_opts.enabled: false +2025/05/04-10:09:55.635127 43 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 +2025/05/04-10:09:55.635129 43 Options.bottommost_compression_opts.use_zstd_dict_trainer: true +2025/05/04-10:09:55.635130 43 Options.compression_opts.window_bits: -14 +2025/05/04-10:09:55.635130 43 Options.compression_opts.level: 32767 +2025/05/04-10:09:55.635131 43 Options.compression_opts.strategy: 0 +2025/05/04-10:09:55.635131 43 Options.compression_opts.max_dict_bytes: 0 +2025/05/04-10:09:55.635132 43 Options.compression_opts.zstd_max_train_bytes: 0 +2025/05/04-10:09:55.635132 43 Options.compression_opts.use_zstd_dict_trainer: true +2025/05/04-10:09:55.635133 43 Options.compression_opts.parallel_threads: 1 +2025/05/04-10:09:55.635134 43 Options.compression_opts.enabled: false +2025/05/04-10:09:55.635134 43 Options.compression_opts.max_dict_buffer_bytes: 0 +2025/05/04-10:09:55.635135 43 Options.level0_file_num_compaction_trigger: 4 +2025/05/04-10:09:55.635137 43 Options.level0_slowdown_writes_trigger: 20 +2025/05/04-10:09:55.635137 43 Options.level0_stop_writes_trigger: 36 +2025/05/04-10:09:55.635138 43 Options.target_file_size_base: 67108864 +2025/05/04-10:09:55.635138 43 Options.target_file_size_multiplier: 1 +2025/05/04-10:09:55.635139 43 Options.max_bytes_for_level_base: 268435456 +2025/05/04-10:09:55.635140 43 Options.level_compaction_dynamic_level_bytes: 1 +2025/05/04-10:09:55.635140 43 Options.max_bytes_for_level_multiplier: 10.000000 +2025/05/04-10:09:55.635141 43 Options.max_bytes_for_level_multiplier_addtl[0]: 1 +2025/05/04-10:09:55.635142 43 Options.max_bytes_for_level_multiplier_addtl[1]: 1 +2025/05/04-10:09:55.635142 43 Options.max_bytes_for_level_multiplier_addtl[2]: 1 +2025/05/04-10:09:55.635143 43 Options.max_bytes_for_level_multiplier_addtl[3]: 1 +2025/05/04-10:09:55.635143 43 Options.max_bytes_for_level_multiplier_addtl[4]: 1 +2025/05/04-10:09:55.635144 43 Options.max_bytes_for_level_multiplier_addtl[5]: 1 +2025/05/04-10:09:55.635145 43 Options.max_bytes_for_level_multiplier_addtl[6]: 1 +2025/05/04-10:09:55.635146 43 Options.max_sequential_skip_in_iterations: 8 +2025/05/04-10:09:55.635146 43 Options.max_compaction_bytes: 1677721600 +2025/05/04-10:09:55.635147 43 Options.arena_block_size: 1048576 +2025/05/04-10:09:55.635147 43 Options.soft_pending_compaction_bytes_limit: 68719476736 +2025/05/04-10:09:55.635148 43 Options.hard_pending_compaction_bytes_limit: 274877906944 +2025/05/04-10:09:55.635149 43 Options.disable_auto_compactions: 0 +2025/05/04-10:09:55.635149 43 Options.compaction_style: kCompactionStyleLevel +2025/05/04-10:09:55.635150 43 Options.compaction_pri: kMinOverlappingRatio +2025/05/04-10:09:55.635150 43 Options.compaction_options_universal.size_ratio: 1 +2025/05/04-10:09:55.635151 43 Options.compaction_options_universal.min_merge_width: 2 +2025/05/04-10:09:55.635152 43 Options.compaction_options_universal.max_merge_width: 4294967295 +2025/05/04-10:09:55.635152 43 Options.compaction_options_universal.max_size_amplification_percent: 200 +2025/05/04-10:09:55.635153 43 Options.compaction_options_universal.compression_size_percent: -1 +2025/05/04-10:09:55.635153 43 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize +2025/05/04-10:09:55.635154 43 Options.compaction_options_universal.max_read_amp: -1 +2025/05/04-10:09:55.635154 43 Options.compaction_options_fifo.max_table_files_size: 1073741824 +2025/05/04-10:09:55.635155 43 Options.compaction_options_fifo.allow_compaction: 0 +2025/05/04-10:09:55.635156 43 Options.table_properties_collectors: +2025/05/04-10:09:55.635156 43 Options.inplace_update_support: 0 +2025/05/04-10:09:55.635157 43 Options.inplace_update_num_locks: 10000 +2025/05/04-10:09:55.635157 43 Options.memtable_prefix_bloom_size_ratio: 0.000000 +2025/05/04-10:09:55.635158 43 Options.memtable_whole_key_filtering: 0 +2025/05/04-10:09:55.635159 43 Options.memtable_huge_page_size: 0 +2025/05/04-10:09:55.635159 43 Options.bloom_locality: 0 +2025/05/04-10:09:55.635160 43 Options.max_successive_merges: 0 +2025/05/04-10:09:55.635160 43 Options.strict_max_successive_merges: 0 +2025/05/04-10:09:55.635161 43 Options.optimize_filters_for_hits: 0 +2025/05/04-10:09:55.635161 43 Options.paranoid_file_checks: 0 +2025/05/04-10:09:55.635163 43 Options.force_consistency_checks: 1 +2025/05/04-10:09:55.635164 43 Options.report_bg_io_stats: 0 +2025/05/04-10:09:55.635165 43 Options.ttl: 2592000 +2025/05/04-10:09:55.635167 43 Options.periodic_compaction_seconds: 0 +2025/05/04-10:09:55.635169 43 Options.default_temperature: kUnknown +2025/05/04-10:09:55.635172 43 Options.preclude_last_level_data_seconds: 0 +2025/05/04-10:09:55.635173 43 Options.preserve_internal_time_seconds: 0 +2025/05/04-10:09:55.635174 43 Options.enable_blob_files: false +2025/05/04-10:09:55.635174 43 Options.min_blob_size: 0 +2025/05/04-10:09:55.635175 43 Options.blob_file_size: 268435456 +2025/05/04-10:09:55.635175 43 Options.blob_compression_type: NoCompression +2025/05/04-10:09:55.635176 43 Options.enable_blob_garbage_collection: false +2025/05/04-10:09:55.635177 43 Options.blob_garbage_collection_age_cutoff: 0.250000 +2025/05/04-10:09:55.635177 43 Options.blob_garbage_collection_force_threshold: 1.000000 +2025/05/04-10:09:55.635178 43 Options.blob_compaction_readahead_size: 0 +2025/05/04-10:09:55.635178 43 Options.blob_file_starting_level: 0 +2025/05/04-10:09:55.635179 43 Options.experimental_mempurge_threshold: 0.000000 +2025/05/04-10:09:55.635179 43 Options.memtable_max_range_deletions: 0 +2025/05/04-10:09:55.635203 43 Options.comparator: leveldb.BytewiseComparator +2025/05/04-10:09:55.635204 43 Options.merge_operator: None +2025/05/04-10:09:55.635206 43 Options.compaction_filter: None +2025/05/04-10:09:55.635207 43 Options.compaction_filter_factory: None +2025/05/04-10:09:55.635208 43 Options.sst_partitioner_factory: None +2025/05/04-10:09:55.635208 43 Options.memtable_factory: SkipListFactory +2025/05/04-10:09:55.635209 43 Options.table_factory: BlockBasedTable +2025/05/04-10:09:55.635215 43 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff9bca9700) + cache_index_and_filter_blocks: 0 + cache_index_and_filter_blocks_with_high_priority: 1 + pin_l0_filter_and_index_blocks_in_cache: 0 + pin_top_level_index_and_filter: 1 + index_type: 0 + data_block_index_type: 0 + index_shortening: 1 + data_block_hash_table_util_ratio: 0.750000 + checksum: 4 + no_block_cache: 0 + block_cache: 0xffff9bc36590 + block_cache_name: LRUCache + block_cache_options: + capacity : 33554432 + num_shard_bits : 6 + strict_capacity_limit : 0 + memory_allocator : None + high_pri_pool_ratio: 0.500 + low_pri_pool_ratio: 0.000 + persistent_cache: (nil) + block_size: 4096 + block_size_deviation: 10 + block_restart_interval: 16 + index_block_restart_interval: 1 + metadata_block_size: 4096 + partition_filters: 0 + use_delta_encoding: 1 + filter_policy: nullptr + whole_key_filtering: 1 + verify_compression: 0 + read_amp_bytes_per_bit: 0 + format_version: 6 + enable_index_compression: 1 + block_align: 0 + max_auto_readahead_size: 262144 + prepopulate_block_cache: 0 + initial_auto_readahead_size: 8192 + num_file_reads_for_auto_readahead: 2 +2025/05/04-10:09:55.635217 43 Options.write_buffer_size: 10485760 +2025/05/04-10:09:55.635218 43 Options.max_write_buffer_number: 2 +2025/05/04-10:09:55.635219 43 Options.compression: LZ4 +2025/05/04-10:09:55.635219 43 Options.bottommost_compression: Disabled +2025/05/04-10:09:55.635220 43 Options.prefix_extractor: nullptr +2025/05/04-10:09:55.635220 43 Options.memtable_insert_with_hint_prefix_extractor: nullptr +2025/05/04-10:09:55.635221 43 Options.num_levels: 7 +2025/05/04-10:09:55.635221 43 Options.min_write_buffer_number_to_merge: 1 +2025/05/04-10:09:55.635222 43 Options.max_write_buffer_number_to_maintain: 0 +2025/05/04-10:09:55.635222 43 Options.max_write_buffer_size_to_maintain: 0 +2025/05/04-10:09:55.635223 43 Options.bottommost_compression_opts.window_bits: -14 +2025/05/04-10:09:55.635224 43 Options.bottommost_compression_opts.level: 32767 +2025/05/04-10:09:55.635224 43 Options.bottommost_compression_opts.strategy: 0 +2025/05/04-10:09:55.635225 43 Options.bottommost_compression_opts.max_dict_bytes: 0 +2025/05/04-10:09:55.635225 43 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 +2025/05/04-10:09:55.635227 43 Options.bottommost_compression_opts.parallel_threads: 1 +2025/05/04-10:09:55.635229 43 Options.bottommost_compression_opts.enabled: false +2025/05/04-10:09:55.635230 43 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 +2025/05/04-10:09:55.635231 43 Options.bottommost_compression_opts.use_zstd_dict_trainer: true +2025/05/04-10:09:55.635231 43 Options.compression_opts.window_bits: -14 +2025/05/04-10:09:55.635232 43 Options.compression_opts.level: 32767 +2025/05/04-10:09:55.635232 43 Options.compression_opts.strategy: 0 +2025/05/04-10:09:55.635233 43 Options.compression_opts.max_dict_bytes: 0 +2025/05/04-10:09:55.635234 43 Options.compression_opts.zstd_max_train_bytes: 0 +2025/05/04-10:09:55.635234 43 Options.compression_opts.use_zstd_dict_trainer: true +2025/05/04-10:09:55.635235 43 Options.compression_opts.parallel_threads: 1 +2025/05/04-10:09:55.635235 43 Options.compression_opts.enabled: false +2025/05/04-10:09:55.635236 43 Options.compression_opts.max_dict_buffer_bytes: 0 +2025/05/04-10:09:55.635237 43 Options.level0_file_num_compaction_trigger: 4 +2025/05/04-10:09:55.635237 43 Options.level0_slowdown_writes_trigger: 20 +2025/05/04-10:09:55.635238 43 Options.level0_stop_writes_trigger: 36 +2025/05/04-10:09:55.635238 43 Options.target_file_size_base: 67108864 +2025/05/04-10:09:55.635239 43 Options.target_file_size_multiplier: 1 +2025/05/04-10:09:55.635239 43 Options.max_bytes_for_level_base: 268435456 +2025/05/04-10:09:55.635240 43 Options.level_compaction_dynamic_level_bytes: 1 +2025/05/04-10:09:55.635242 43 Options.max_bytes_for_level_multiplier: 10.000000 +2025/05/04-10:09:55.635243 43 Options.max_bytes_for_level_multiplier_addtl[0]: 1 +2025/05/04-10:09:55.635244 43 Options.max_bytes_for_level_multiplier_addtl[1]: 1 +2025/05/04-10:09:55.635244 43 Options.max_bytes_for_level_multiplier_addtl[2]: 1 +2025/05/04-10:09:55.635245 43 Options.max_bytes_for_level_multiplier_addtl[3]: 1 +2025/05/04-10:09:55.635245 43 Options.max_bytes_for_level_multiplier_addtl[4]: 1 +2025/05/04-10:09:55.635246 43 Options.max_bytes_for_level_multiplier_addtl[5]: 1 +2025/05/04-10:09:55.635246 43 Options.max_bytes_for_level_multiplier_addtl[6]: 1 +2025/05/04-10:09:55.635247 43 Options.max_sequential_skip_in_iterations: 8 +2025/05/04-10:09:55.635247 43 Options.max_compaction_bytes: 1677721600 +2025/05/04-10:09:55.635248 43 Options.arena_block_size: 1048576 +2025/05/04-10:09:55.635249 43 Options.soft_pending_compaction_bytes_limit: 68719476736 +2025/05/04-10:09:55.635249 43 Options.hard_pending_compaction_bytes_limit: 274877906944 +2025/05/04-10:09:55.635250 43 Options.disable_auto_compactions: 0 +2025/05/04-10:09:55.635252 43 Options.compaction_style: kCompactionStyleLevel +2025/05/04-10:09:55.635253 43 Options.compaction_pri: kMinOverlappingRatio +2025/05/04-10:09:55.635253 43 Options.compaction_options_universal.size_ratio: 1 +2025/05/04-10:09:55.635254 43 Options.compaction_options_universal.min_merge_width: 2 +2025/05/04-10:09:55.635254 43 Options.compaction_options_universal.max_merge_width: 4294967295 +2025/05/04-10:09:55.635255 43 Options.compaction_options_universal.max_size_amplification_percent: 200 +2025/05/04-10:09:55.635256 43 Options.compaction_options_universal.compression_size_percent: -1 +2025/05/04-10:09:55.635256 43 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize +2025/05/04-10:09:55.635257 43 Options.compaction_options_universal.max_read_amp: -1 +2025/05/04-10:09:55.635257 43 Options.compaction_options_fifo.max_table_files_size: 1073741824 +2025/05/04-10:09:55.635258 43 Options.compaction_options_fifo.allow_compaction: 0 +2025/05/04-10:09:55.635259 43 Options.table_properties_collectors: +2025/05/04-10:09:55.635259 43 Options.inplace_update_support: 0 +2025/05/04-10:09:55.635260 43 Options.inplace_update_num_locks: 10000 +2025/05/04-10:09:55.635262 43 Options.memtable_prefix_bloom_size_ratio: 0.000000 +2025/05/04-10:09:55.635262 43 Options.memtable_whole_key_filtering: 0 +2025/05/04-10:09:55.635263 43 Options.memtable_huge_page_size: 0 +2025/05/04-10:09:55.635263 43 Options.bloom_locality: 0 +2025/05/04-10:09:55.635264 43 Options.max_successive_merges: 0 +2025/05/04-10:09:55.635264 43 Options.strict_max_successive_merges: 0 +2025/05/04-10:09:55.635265 43 Options.optimize_filters_for_hits: 0 +2025/05/04-10:09:55.635265 43 Options.paranoid_file_checks: 0 +2025/05/04-10:09:55.635266 43 Options.force_consistency_checks: 1 +2025/05/04-10:09:55.635267 43 Options.report_bg_io_stats: 0 +2025/05/04-10:09:55.635267 43 Options.ttl: 2592000 +2025/05/04-10:09:55.635268 43 Options.periodic_compaction_seconds: 0 +2025/05/04-10:09:55.635268 43 Options.default_temperature: kUnknown +2025/05/04-10:09:55.635269 43 Options.preclude_last_level_data_seconds: 0 +2025/05/04-10:09:55.635269 43 Options.preserve_internal_time_seconds: 0 +2025/05/04-10:09:55.635270 43 Options.enable_blob_files: false +2025/05/04-10:09:55.635270 43 Options.min_blob_size: 0 +2025/05/04-10:09:55.635271 43 Options.blob_file_size: 268435456 +2025/05/04-10:09:55.635271 43 Options.blob_compression_type: NoCompression +2025/05/04-10:09:55.635272 43 Options.enable_blob_garbage_collection: false +2025/05/04-10:09:55.635272 43 Options.blob_garbage_collection_age_cutoff: 0.250000 +2025/05/04-10:09:55.635273 43 Options.blob_garbage_collection_force_threshold: 1.000000 +2025/05/04-10:09:55.635274 43 Options.blob_compaction_readahead_size: 0 +2025/05/04-10:09:55.635274 43 Options.blob_file_starting_level: 0 +2025/05/04-10:09:55.635275 43 Options.experimental_mempurge_threshold: 0.000000 +2025/05/04-10:09:55.635276 43 Options.memtable_max_range_deletions: 0 +2025/05/04-10:09:55.669042 43 DB pointer 0xffff9aabb400 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/MANIFEST-000028 b/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/MANIFEST-000028 new file mode 100644 index 0000000000000000000000000000000000000000..4a5b001b2b3f982af3d710930e02fed19f07165b Binary files /dev/null and b/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/MANIFEST-000028 differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/OPTIONS-000026 b/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/OPTIONS-000026 new file mode 100644 index 0000000000000000000000000000000000000000..ad2b181add715408dc69839970eebfd4c1a28b4b --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/OPTIONS-000026 @@ -0,0 +1,670 @@ +# This is a RocksDB option file. +# +# For detailed file format spec, please refer to the example file +# in examples/rocksdb_option_file_example.ini +# + +[Version] + rocksdb_version=9.9.3 + options_file_version=1.1 + +[DBOptions] + compaction_readahead_size=2097152 + strict_bytes_per_sync=false + bytes_per_sync=0 + max_background_jobs=2 + avoid_flush_during_shutdown=false + max_background_flushes=-1 + delayed_write_rate=16777216 + max_open_files=256 + max_subcompactions=1 + writable_file_max_buffer_size=1048576 + wal_bytes_per_sync=0 + max_background_compactions=-1 + max_total_wal_size=0 + delete_obsolete_files_period_micros=180000000 + stats_dump_period_sec=600 + stats_history_buffer_size=1048576 + stats_persist_period_sec=600 + follower_refresh_catchup_period_ms=10000 + enforce_single_del_contracts=true + lowest_used_cache_tier=kNonVolatileBlockTier + bgerror_resume_retry_interval=1000000 + metadata_write_temperature=kUnknown + best_efforts_recovery=false + log_readahead_size=0 + write_identity_file=true + write_dbid_to_manifest=true + prefix_seek_opt_in_only=false + wal_compression=kNoCompression + manual_wal_flush=false + db_host_id=__hostname__ + two_write_queues=false + random_access_max_buffer_size=1048576 + avoid_unnecessary_blocking_io=false + skip_checking_sst_file_sizes_on_db_open=false + flush_verify_memtable_count=true + fail_if_options_file_error=true + atomic_flush=false + verify_sst_unique_id_in_manifest=true + skip_stats_update_on_db_open=false + track_and_verify_wals_in_manifest=false + compaction_verify_record_count=true + paranoid_checks=true + create_if_missing=true + max_write_batch_group_size_bytes=1048576 + follower_catchup_retry_count=10 + avoid_flush_during_recovery=false + file_checksum_gen_factory=nullptr + enable_thread_tracking=false + allow_fallocate=true + allow_data_in_errors=false + error_if_exists=false + use_direct_io_for_flush_and_compaction=false + background_close_inactive_wals=false + create_missing_column_families=true + WAL_size_limit_MB=0 + use_direct_reads=false + persist_stats_to_disk=false + allow_2pc=false + is_fd_close_on_exec=true + max_log_file_size=1048576 + max_file_opening_threads=16 + wal_filter=nullptr + wal_write_temperature=kUnknown + follower_catchup_retry_wait_ms=100 + allow_mmap_reads=false + allow_mmap_writes=false + use_adaptive_mutex=false + use_fsync=false + table_cache_numshardbits=6 + dump_malloc_stats=false + db_write_buffer_size=0 + allow_ingest_behind=false + keep_log_file_num=1 + max_bgerror_resume_count=2147483647 + allow_concurrent_memtable_write=true + recycle_log_file_num=0 + log_file_time_to_roll=0 + manifest_preallocation_size=4194304 + enable_write_thread_adaptive_yield=true + WAL_ttl_seconds=0 + max_manifest_file_size=1073741824 + wal_recovery_mode=kTolerateCorruptedTailRecords + enable_pipelined_write=false + write_thread_slow_yield_usec=3 + unordered_write=false + write_thread_max_yield_usec=100 + advise_random_on_open=true + info_log_level=ERROR_LEVEL + + +[CFOptions "default"] + memtable_max_range_deletions=0 + compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_memory_checks=false + block_protection_bytes_per_key=0 + uncache_aggressiveness=0 + bottommost_file_compaction_delay=0 + memtable_protection_bytes_per_key=0 + experimental_mempurge_threshold=0.000000 + bottommost_compression=kDisableCompressionOption + sample_for_compression=0 + prepopulate_blob_cache=kDisable + blob_file_starting_level=0 + blob_compaction_readahead_size=0 + table_factory=BlockBasedTable + max_successive_merges=0 + max_write_buffer_number=2 + prefix_extractor=nullptr + memtable_huge_page_size=0 + write_buffer_size=10485760 + strict_max_successive_merges=false + arena_block_size=1048576 + level0_file_num_compaction_trigger=4 + report_bg_io_stats=false + inplace_update_num_locks=10000 + memtable_prefix_bloom_size_ratio=0.000000 + level0_stop_writes_trigger=36 + blob_compression_type=kNoCompression + level0_slowdown_writes_trigger=20 + hard_pending_compaction_bytes_limit=274877906944 + target_file_size_multiplier=1 + bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_file_checks=false + blob_garbage_collection_force_threshold=1.000000 + enable_blob_files=false + soft_pending_compaction_bytes_limit=68719476736 + target_file_size_base=67108864 + max_compaction_bytes=1677721600 + disable_auto_compactions=false + min_blob_size=0 + memtable_whole_key_filtering=false + max_bytes_for_level_base=268435456 + last_level_temperature=kUnknown + preserve_internal_time_seconds=0 + compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} + max_bytes_for_level_multiplier=10.000000 + max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 + max_sequential_skip_in_iterations=8 + compression=kLZ4Compression + default_write_temperature=kUnknown + compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} + blob_garbage_collection_age_cutoff=0.250000 + ttl=2592000 + periodic_compaction_seconds=0 + preclude_last_level_data_seconds=0 + blob_file_size=268435456 + enable_blob_garbage_collection=false + persist_user_defined_timestamps=true + compaction_pri=kMinOverlappingRatio + compaction_filter_factory=nullptr + comparator=leveldb.BytewiseComparator + bloom_locality=0 + merge_operator=nullptr + compaction_filter=nullptr + level_compaction_dynamic_level_bytes=true + optimize_filters_for_hits=false + inplace_update_support=false + max_write_buffer_number_to_maintain=0 + max_write_buffer_size_to_maintain=0 + sst_partitioner_factory=nullptr + default_temperature=kUnknown + compaction_style=kCompactionStyleLevel + min_write_buffer_number_to_merge=1 + memtable_factory=SkipListFactory + memtable_insert_with_hint_prefix_extractor=nullptr + force_consistency_checks=true + num_levels=7 + +[TableOptions/BlockBasedTable "default"] + num_file_reads_for_auto_readahead=2 + initial_auto_readahead_size=8192 + metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} + enable_index_compression=true + verify_compression=false + prepopulate_block_cache=kDisable + format_version=6 + use_delta_encoding=true + pin_top_level_index_and_filter=true + read_amp_bytes_per_bit=0 + decouple_partitioned_filters=false + partition_filters=false + metadata_block_size=4096 + max_auto_readahead_size=262144 + index_block_restart_interval=1 + block_size_deviation=10 + block_size=4096 + detect_filter_construct_corruption=false + no_block_cache=false + checksum=kXXH3 + filter_policy=nullptr + data_block_hash_table_util_ratio=0.750000 + block_restart_interval=16 + index_type=kBinarySearch + pin_l0_filter_and_index_blocks_in_cache=false + data_block_index_type=kDataBlockBinarySearch + cache_index_and_filter_blocks_with_high_priority=true + whole_key_filtering=true + index_shortening=kShortenSeparators + cache_index_and_filter_blocks=false + block_align=false + optimize_filters_for_memory=true + flush_block_policy_factory=FlushBlockBySizePolicyFactory + + +[CFOptions "payload"] + memtable_max_range_deletions=0 + compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_memory_checks=false + block_protection_bytes_per_key=0 + uncache_aggressiveness=0 + bottommost_file_compaction_delay=0 + memtable_protection_bytes_per_key=0 + experimental_mempurge_threshold=0.000000 + bottommost_compression=kDisableCompressionOption + sample_for_compression=0 + prepopulate_blob_cache=kDisable + blob_file_starting_level=0 + blob_compaction_readahead_size=0 + table_factory=BlockBasedTable + max_successive_merges=0 + max_write_buffer_number=2 + prefix_extractor=nullptr + memtable_huge_page_size=0 + write_buffer_size=10485760 + strict_max_successive_merges=false + arena_block_size=1048576 + level0_file_num_compaction_trigger=4 + report_bg_io_stats=false + inplace_update_num_locks=10000 + memtable_prefix_bloom_size_ratio=0.000000 + level0_stop_writes_trigger=36 + blob_compression_type=kNoCompression + level0_slowdown_writes_trigger=20 + hard_pending_compaction_bytes_limit=274877906944 + target_file_size_multiplier=1 + bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_file_checks=false + blob_garbage_collection_force_threshold=1.000000 + enable_blob_files=false + soft_pending_compaction_bytes_limit=68719476736 + target_file_size_base=67108864 + max_compaction_bytes=1677721600 + disable_auto_compactions=false + min_blob_size=0 + memtable_whole_key_filtering=false + max_bytes_for_level_base=268435456 + last_level_temperature=kUnknown + preserve_internal_time_seconds=0 + compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} + max_bytes_for_level_multiplier=10.000000 + max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 + max_sequential_skip_in_iterations=8 + compression=kLZ4Compression + default_write_temperature=kUnknown + compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} + blob_garbage_collection_age_cutoff=0.250000 + ttl=2592000 + periodic_compaction_seconds=0 + preclude_last_level_data_seconds=0 + blob_file_size=268435456 + enable_blob_garbage_collection=false + persist_user_defined_timestamps=true + compaction_pri=kMinOverlappingRatio + compaction_filter_factory=nullptr + comparator=leveldb.BytewiseComparator + bloom_locality=0 + merge_operator=nullptr + compaction_filter=nullptr + level_compaction_dynamic_level_bytes=true + optimize_filters_for_hits=false + inplace_update_support=false + max_write_buffer_number_to_maintain=0 + max_write_buffer_size_to_maintain=0 + sst_partitioner_factory=nullptr + default_temperature=kUnknown + compaction_style=kCompactionStyleLevel + min_write_buffer_number_to_merge=1 + memtable_factory=SkipListFactory + memtable_insert_with_hint_prefix_extractor=nullptr + force_consistency_checks=true + num_levels=7 + +[TableOptions/BlockBasedTable "payload"] + num_file_reads_for_auto_readahead=2 + initial_auto_readahead_size=8192 + metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} + enable_index_compression=true + verify_compression=false + prepopulate_block_cache=kDisable + format_version=6 + use_delta_encoding=true + pin_top_level_index_and_filter=true + read_amp_bytes_per_bit=0 + decouple_partitioned_filters=false + partition_filters=false + metadata_block_size=4096 + max_auto_readahead_size=262144 + index_block_restart_interval=1 + block_size_deviation=10 + block_size=4096 + detect_filter_construct_corruption=false + no_block_cache=false + checksum=kXXH3 + filter_policy=nullptr + data_block_hash_table_util_ratio=0.750000 + block_restart_interval=16 + index_type=kBinarySearch + pin_l0_filter_and_index_blocks_in_cache=false + data_block_index_type=kDataBlockBinarySearch + cache_index_and_filter_blocks_with_high_priority=true + whole_key_filtering=true + index_shortening=kShortenSeparators + cache_index_and_filter_blocks=false + block_align=false + optimize_filters_for_memory=true + flush_block_policy_factory=FlushBlockBySizePolicyFactory + + +[CFOptions "mapping"] + memtable_max_range_deletions=0 + compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_memory_checks=false + block_protection_bytes_per_key=0 + uncache_aggressiveness=0 + bottommost_file_compaction_delay=0 + memtable_protection_bytes_per_key=0 + experimental_mempurge_threshold=0.000000 + bottommost_compression=kDisableCompressionOption + sample_for_compression=0 + prepopulate_blob_cache=kDisable + blob_file_starting_level=0 + blob_compaction_readahead_size=0 + table_factory=BlockBasedTable + max_successive_merges=0 + max_write_buffer_number=2 + prefix_extractor=nullptr + memtable_huge_page_size=0 + write_buffer_size=10485760 + strict_max_successive_merges=false + arena_block_size=1048576 + level0_file_num_compaction_trigger=4 + report_bg_io_stats=false + inplace_update_num_locks=10000 + memtable_prefix_bloom_size_ratio=0.000000 + level0_stop_writes_trigger=36 + blob_compression_type=kNoCompression + level0_slowdown_writes_trigger=20 + hard_pending_compaction_bytes_limit=274877906944 + target_file_size_multiplier=1 + bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_file_checks=false + blob_garbage_collection_force_threshold=1.000000 + enable_blob_files=false + soft_pending_compaction_bytes_limit=68719476736 + target_file_size_base=67108864 + max_compaction_bytes=1677721600 + disable_auto_compactions=false + min_blob_size=0 + memtable_whole_key_filtering=false + max_bytes_for_level_base=268435456 + last_level_temperature=kUnknown + preserve_internal_time_seconds=0 + compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} + max_bytes_for_level_multiplier=10.000000 + max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 + max_sequential_skip_in_iterations=8 + compression=kLZ4Compression + default_write_temperature=kUnknown + compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} + blob_garbage_collection_age_cutoff=0.250000 + ttl=2592000 + periodic_compaction_seconds=0 + preclude_last_level_data_seconds=0 + blob_file_size=268435456 + enable_blob_garbage_collection=false + persist_user_defined_timestamps=true + compaction_pri=kMinOverlappingRatio + compaction_filter_factory=nullptr + comparator=leveldb.BytewiseComparator + bloom_locality=0 + merge_operator=nullptr + compaction_filter=nullptr + level_compaction_dynamic_level_bytes=true + optimize_filters_for_hits=false + inplace_update_support=false + max_write_buffer_number_to_maintain=0 + max_write_buffer_size_to_maintain=0 + sst_partitioner_factory=nullptr + default_temperature=kUnknown + compaction_style=kCompactionStyleLevel + min_write_buffer_number_to_merge=1 + memtable_factory=SkipListFactory + memtable_insert_with_hint_prefix_extractor=nullptr + force_consistency_checks=true + num_levels=7 + +[TableOptions/BlockBasedTable "mapping"] + num_file_reads_for_auto_readahead=2 + initial_auto_readahead_size=8192 + metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} + enable_index_compression=true + verify_compression=false + prepopulate_block_cache=kDisable + format_version=6 + use_delta_encoding=true + pin_top_level_index_and_filter=true + read_amp_bytes_per_bit=0 + decouple_partitioned_filters=false + partition_filters=false + metadata_block_size=4096 + max_auto_readahead_size=262144 + index_block_restart_interval=1 + block_size_deviation=10 + block_size=4096 + detect_filter_construct_corruption=false + no_block_cache=false + checksum=kXXH3 + filter_policy=nullptr + data_block_hash_table_util_ratio=0.750000 + block_restart_interval=16 + index_type=kBinarySearch + pin_l0_filter_and_index_blocks_in_cache=false + data_block_index_type=kDataBlockBinarySearch + cache_index_and_filter_blocks_with_high_priority=true + whole_key_filtering=true + index_shortening=kShortenSeparators + cache_index_and_filter_blocks=false + block_align=false + optimize_filters_for_memory=true + flush_block_policy_factory=FlushBlockBySizePolicyFactory + + +[CFOptions "version"] + memtable_max_range_deletions=0 + compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_memory_checks=false + block_protection_bytes_per_key=0 + uncache_aggressiveness=0 + bottommost_file_compaction_delay=0 + memtable_protection_bytes_per_key=0 + experimental_mempurge_threshold=0.000000 + bottommost_compression=kDisableCompressionOption + sample_for_compression=0 + prepopulate_blob_cache=kDisable + blob_file_starting_level=0 + blob_compaction_readahead_size=0 + table_factory=BlockBasedTable + max_successive_merges=0 + max_write_buffer_number=2 + prefix_extractor=nullptr + memtable_huge_page_size=0 + write_buffer_size=10485760 + strict_max_successive_merges=false + arena_block_size=1048576 + level0_file_num_compaction_trigger=4 + report_bg_io_stats=false + inplace_update_num_locks=10000 + memtable_prefix_bloom_size_ratio=0.000000 + level0_stop_writes_trigger=36 + blob_compression_type=kNoCompression + level0_slowdown_writes_trigger=20 + hard_pending_compaction_bytes_limit=274877906944 + target_file_size_multiplier=1 + bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_file_checks=false + blob_garbage_collection_force_threshold=1.000000 + enable_blob_files=false + soft_pending_compaction_bytes_limit=68719476736 + target_file_size_base=67108864 + max_compaction_bytes=1677721600 + disable_auto_compactions=false + min_blob_size=0 + memtable_whole_key_filtering=false + max_bytes_for_level_base=268435456 + last_level_temperature=kUnknown + preserve_internal_time_seconds=0 + compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} + max_bytes_for_level_multiplier=10.000000 + max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 + max_sequential_skip_in_iterations=8 + compression=kLZ4Compression + default_write_temperature=kUnknown + compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} + blob_garbage_collection_age_cutoff=0.250000 + ttl=2592000 + periodic_compaction_seconds=0 + preclude_last_level_data_seconds=0 + blob_file_size=268435456 + enable_blob_garbage_collection=false + persist_user_defined_timestamps=true + compaction_pri=kMinOverlappingRatio + compaction_filter_factory=nullptr + comparator=leveldb.BytewiseComparator + bloom_locality=0 + merge_operator=nullptr + compaction_filter=nullptr + level_compaction_dynamic_level_bytes=true + optimize_filters_for_hits=false + inplace_update_support=false + max_write_buffer_number_to_maintain=0 + max_write_buffer_size_to_maintain=0 + sst_partitioner_factory=nullptr + default_temperature=kUnknown + compaction_style=kCompactionStyleLevel + min_write_buffer_number_to_merge=1 + memtable_factory=SkipListFactory + memtable_insert_with_hint_prefix_extractor=nullptr + force_consistency_checks=true + num_levels=7 + +[TableOptions/BlockBasedTable "version"] + num_file_reads_for_auto_readahead=2 + initial_auto_readahead_size=8192 + metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} + enable_index_compression=true + verify_compression=false + prepopulate_block_cache=kDisable + format_version=6 + use_delta_encoding=true + pin_top_level_index_and_filter=true + read_amp_bytes_per_bit=0 + decouple_partitioned_filters=false + partition_filters=false + metadata_block_size=4096 + max_auto_readahead_size=262144 + index_block_restart_interval=1 + block_size_deviation=10 + block_size=4096 + detect_filter_construct_corruption=false + no_block_cache=false + checksum=kXXH3 + filter_policy=nullptr + data_block_hash_table_util_ratio=0.750000 + block_restart_interval=16 + index_type=kBinarySearch + pin_l0_filter_and_index_blocks_in_cache=false + data_block_index_type=kDataBlockBinarySearch + cache_index_and_filter_blocks_with_high_priority=true + whole_key_filtering=true + index_shortening=kShortenSeparators + cache_index_and_filter_blocks=false + block_align=false + optimize_filters_for_memory=true + flush_block_policy_factory=FlushBlockBySizePolicyFactory + + +[CFOptions "vector"] + memtable_max_range_deletions=0 + compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_memory_checks=false + block_protection_bytes_per_key=0 + uncache_aggressiveness=0 + bottommost_file_compaction_delay=0 + memtable_protection_bytes_per_key=0 + experimental_mempurge_threshold=0.000000 + bottommost_compression=kDisableCompressionOption + sample_for_compression=0 + prepopulate_blob_cache=kDisable + blob_file_starting_level=0 + blob_compaction_readahead_size=0 + table_factory=BlockBasedTable + max_successive_merges=0 + max_write_buffer_number=2 + prefix_extractor=nullptr + memtable_huge_page_size=0 + write_buffer_size=10485760 + strict_max_successive_merges=false + arena_block_size=1048576 + level0_file_num_compaction_trigger=4 + report_bg_io_stats=false + inplace_update_num_locks=10000 + memtable_prefix_bloom_size_ratio=0.000000 + level0_stop_writes_trigger=36 + blob_compression_type=kNoCompression + level0_slowdown_writes_trigger=20 + hard_pending_compaction_bytes_limit=274877906944 + target_file_size_multiplier=1 + bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_file_checks=false + blob_garbage_collection_force_threshold=1.000000 + enable_blob_files=false + soft_pending_compaction_bytes_limit=68719476736 + target_file_size_base=67108864 + max_compaction_bytes=1677721600 + disable_auto_compactions=false + min_blob_size=0 + memtable_whole_key_filtering=false + max_bytes_for_level_base=268435456 + last_level_temperature=kUnknown + preserve_internal_time_seconds=0 + compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} + max_bytes_for_level_multiplier=10.000000 + max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 + max_sequential_skip_in_iterations=8 + compression=kLZ4Compression + default_write_temperature=kUnknown + compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} + blob_garbage_collection_age_cutoff=0.250000 + ttl=2592000 + periodic_compaction_seconds=0 + preclude_last_level_data_seconds=0 + blob_file_size=268435456 + enable_blob_garbage_collection=false + persist_user_defined_timestamps=true + compaction_pri=kMinOverlappingRatio + compaction_filter_factory=nullptr + comparator=leveldb.BytewiseComparator + bloom_locality=0 + merge_operator=nullptr + compaction_filter=nullptr + level_compaction_dynamic_level_bytes=true + optimize_filters_for_hits=false + inplace_update_support=false + max_write_buffer_number_to_maintain=0 + max_write_buffer_size_to_maintain=0 + sst_partitioner_factory=nullptr + default_temperature=kUnknown + compaction_style=kCompactionStyleLevel + min_write_buffer_number_to_merge=1 + memtable_factory=SkipListFactory + memtable_insert_with_hint_prefix_extractor=nullptr + force_consistency_checks=true + num_levels=7 + +[TableOptions/BlockBasedTable "vector"] + num_file_reads_for_auto_readahead=2 + initial_auto_readahead_size=8192 + metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} + enable_index_compression=true + verify_compression=false + prepopulate_block_cache=kDisable + format_version=6 + use_delta_encoding=true + pin_top_level_index_and_filter=true + read_amp_bytes_per_bit=0 + decouple_partitioned_filters=false + partition_filters=false + metadata_block_size=4096 + max_auto_readahead_size=262144 + index_block_restart_interval=1 + block_size_deviation=10 + block_size=4096 + detect_filter_construct_corruption=false + no_block_cache=false + checksum=kXXH3 + filter_policy=nullptr + data_block_hash_table_util_ratio=0.750000 + block_restart_interval=16 + index_type=kBinarySearch + pin_l0_filter_and_index_blocks_in_cache=false + data_block_index_type=kDataBlockBinarySearch + cache_index_and_filter_blocks_with_high_priority=true + whole_key_filtering=true + index_shortening=kShortenSeparators + cache_index_and_filter_blocks=false + block_align=false + optimize_filters_for_memory=true + flush_block_policy_factory=FlushBlockBySizePolicyFactory + diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/OPTIONS-000030 b/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/OPTIONS-000030 new file mode 100644 index 0000000000000000000000000000000000000000..ad2b181add715408dc69839970eebfd4c1a28b4b --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/OPTIONS-000030 @@ -0,0 +1,670 @@ +# This is a RocksDB option file. +# +# For detailed file format spec, please refer to the example file +# in examples/rocksdb_option_file_example.ini +# + +[Version] + rocksdb_version=9.9.3 + options_file_version=1.1 + +[DBOptions] + compaction_readahead_size=2097152 + strict_bytes_per_sync=false + bytes_per_sync=0 + max_background_jobs=2 + avoid_flush_during_shutdown=false + max_background_flushes=-1 + delayed_write_rate=16777216 + max_open_files=256 + max_subcompactions=1 + writable_file_max_buffer_size=1048576 + wal_bytes_per_sync=0 + max_background_compactions=-1 + max_total_wal_size=0 + delete_obsolete_files_period_micros=180000000 + stats_dump_period_sec=600 + stats_history_buffer_size=1048576 + stats_persist_period_sec=600 + follower_refresh_catchup_period_ms=10000 + enforce_single_del_contracts=true + lowest_used_cache_tier=kNonVolatileBlockTier + bgerror_resume_retry_interval=1000000 + metadata_write_temperature=kUnknown + best_efforts_recovery=false + log_readahead_size=0 + write_identity_file=true + write_dbid_to_manifest=true + prefix_seek_opt_in_only=false + wal_compression=kNoCompression + manual_wal_flush=false + db_host_id=__hostname__ + two_write_queues=false + random_access_max_buffer_size=1048576 + avoid_unnecessary_blocking_io=false + skip_checking_sst_file_sizes_on_db_open=false + flush_verify_memtable_count=true + fail_if_options_file_error=true + atomic_flush=false + verify_sst_unique_id_in_manifest=true + skip_stats_update_on_db_open=false + track_and_verify_wals_in_manifest=false + compaction_verify_record_count=true + paranoid_checks=true + create_if_missing=true + max_write_batch_group_size_bytes=1048576 + follower_catchup_retry_count=10 + avoid_flush_during_recovery=false + file_checksum_gen_factory=nullptr + enable_thread_tracking=false + allow_fallocate=true + allow_data_in_errors=false + error_if_exists=false + use_direct_io_for_flush_and_compaction=false + background_close_inactive_wals=false + create_missing_column_families=true + WAL_size_limit_MB=0 + use_direct_reads=false + persist_stats_to_disk=false + allow_2pc=false + is_fd_close_on_exec=true + max_log_file_size=1048576 + max_file_opening_threads=16 + wal_filter=nullptr + wal_write_temperature=kUnknown + follower_catchup_retry_wait_ms=100 + allow_mmap_reads=false + allow_mmap_writes=false + use_adaptive_mutex=false + use_fsync=false + table_cache_numshardbits=6 + dump_malloc_stats=false + db_write_buffer_size=0 + allow_ingest_behind=false + keep_log_file_num=1 + max_bgerror_resume_count=2147483647 + allow_concurrent_memtable_write=true + recycle_log_file_num=0 + log_file_time_to_roll=0 + manifest_preallocation_size=4194304 + enable_write_thread_adaptive_yield=true + WAL_ttl_seconds=0 + max_manifest_file_size=1073741824 + wal_recovery_mode=kTolerateCorruptedTailRecords + enable_pipelined_write=false + write_thread_slow_yield_usec=3 + unordered_write=false + write_thread_max_yield_usec=100 + advise_random_on_open=true + info_log_level=ERROR_LEVEL + + +[CFOptions "default"] + memtable_max_range_deletions=0 + compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_memory_checks=false + block_protection_bytes_per_key=0 + uncache_aggressiveness=0 + bottommost_file_compaction_delay=0 + memtable_protection_bytes_per_key=0 + experimental_mempurge_threshold=0.000000 + bottommost_compression=kDisableCompressionOption + sample_for_compression=0 + prepopulate_blob_cache=kDisable + blob_file_starting_level=0 + blob_compaction_readahead_size=0 + table_factory=BlockBasedTable + max_successive_merges=0 + max_write_buffer_number=2 + prefix_extractor=nullptr + memtable_huge_page_size=0 + write_buffer_size=10485760 + strict_max_successive_merges=false + arena_block_size=1048576 + level0_file_num_compaction_trigger=4 + report_bg_io_stats=false + inplace_update_num_locks=10000 + memtable_prefix_bloom_size_ratio=0.000000 + level0_stop_writes_trigger=36 + blob_compression_type=kNoCompression + level0_slowdown_writes_trigger=20 + hard_pending_compaction_bytes_limit=274877906944 + target_file_size_multiplier=1 + bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_file_checks=false + blob_garbage_collection_force_threshold=1.000000 + enable_blob_files=false + soft_pending_compaction_bytes_limit=68719476736 + target_file_size_base=67108864 + max_compaction_bytes=1677721600 + disable_auto_compactions=false + min_blob_size=0 + memtable_whole_key_filtering=false + max_bytes_for_level_base=268435456 + last_level_temperature=kUnknown + preserve_internal_time_seconds=0 + compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} + max_bytes_for_level_multiplier=10.000000 + max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 + max_sequential_skip_in_iterations=8 + compression=kLZ4Compression + default_write_temperature=kUnknown + compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} + blob_garbage_collection_age_cutoff=0.250000 + ttl=2592000 + periodic_compaction_seconds=0 + preclude_last_level_data_seconds=0 + blob_file_size=268435456 + enable_blob_garbage_collection=false + persist_user_defined_timestamps=true + compaction_pri=kMinOverlappingRatio + compaction_filter_factory=nullptr + comparator=leveldb.BytewiseComparator + bloom_locality=0 + merge_operator=nullptr + compaction_filter=nullptr + level_compaction_dynamic_level_bytes=true + optimize_filters_for_hits=false + inplace_update_support=false + max_write_buffer_number_to_maintain=0 + max_write_buffer_size_to_maintain=0 + sst_partitioner_factory=nullptr + default_temperature=kUnknown + compaction_style=kCompactionStyleLevel + min_write_buffer_number_to_merge=1 + memtable_factory=SkipListFactory + memtable_insert_with_hint_prefix_extractor=nullptr + force_consistency_checks=true + num_levels=7 + +[TableOptions/BlockBasedTable "default"] + num_file_reads_for_auto_readahead=2 + initial_auto_readahead_size=8192 + metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} + enable_index_compression=true + verify_compression=false + prepopulate_block_cache=kDisable + format_version=6 + use_delta_encoding=true + pin_top_level_index_and_filter=true + read_amp_bytes_per_bit=0 + decouple_partitioned_filters=false + partition_filters=false + metadata_block_size=4096 + max_auto_readahead_size=262144 + index_block_restart_interval=1 + block_size_deviation=10 + block_size=4096 + detect_filter_construct_corruption=false + no_block_cache=false + checksum=kXXH3 + filter_policy=nullptr + data_block_hash_table_util_ratio=0.750000 + block_restart_interval=16 + index_type=kBinarySearch + pin_l0_filter_and_index_blocks_in_cache=false + data_block_index_type=kDataBlockBinarySearch + cache_index_and_filter_blocks_with_high_priority=true + whole_key_filtering=true + index_shortening=kShortenSeparators + cache_index_and_filter_blocks=false + block_align=false + optimize_filters_for_memory=true + flush_block_policy_factory=FlushBlockBySizePolicyFactory + + +[CFOptions "payload"] + memtable_max_range_deletions=0 + compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_memory_checks=false + block_protection_bytes_per_key=0 + uncache_aggressiveness=0 + bottommost_file_compaction_delay=0 + memtable_protection_bytes_per_key=0 + experimental_mempurge_threshold=0.000000 + bottommost_compression=kDisableCompressionOption + sample_for_compression=0 + prepopulate_blob_cache=kDisable + blob_file_starting_level=0 + blob_compaction_readahead_size=0 + table_factory=BlockBasedTable + max_successive_merges=0 + max_write_buffer_number=2 + prefix_extractor=nullptr + memtable_huge_page_size=0 + write_buffer_size=10485760 + strict_max_successive_merges=false + arena_block_size=1048576 + level0_file_num_compaction_trigger=4 + report_bg_io_stats=false + inplace_update_num_locks=10000 + memtable_prefix_bloom_size_ratio=0.000000 + level0_stop_writes_trigger=36 + blob_compression_type=kNoCompression + level0_slowdown_writes_trigger=20 + hard_pending_compaction_bytes_limit=274877906944 + target_file_size_multiplier=1 + bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_file_checks=false + blob_garbage_collection_force_threshold=1.000000 + enable_blob_files=false + soft_pending_compaction_bytes_limit=68719476736 + target_file_size_base=67108864 + max_compaction_bytes=1677721600 + disable_auto_compactions=false + min_blob_size=0 + memtable_whole_key_filtering=false + max_bytes_for_level_base=268435456 + last_level_temperature=kUnknown + preserve_internal_time_seconds=0 + compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} + max_bytes_for_level_multiplier=10.000000 + max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 + max_sequential_skip_in_iterations=8 + compression=kLZ4Compression + default_write_temperature=kUnknown + compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} + blob_garbage_collection_age_cutoff=0.250000 + ttl=2592000 + periodic_compaction_seconds=0 + preclude_last_level_data_seconds=0 + blob_file_size=268435456 + enable_blob_garbage_collection=false + persist_user_defined_timestamps=true + compaction_pri=kMinOverlappingRatio + compaction_filter_factory=nullptr + comparator=leveldb.BytewiseComparator + bloom_locality=0 + merge_operator=nullptr + compaction_filter=nullptr + level_compaction_dynamic_level_bytes=true + optimize_filters_for_hits=false + inplace_update_support=false + max_write_buffer_number_to_maintain=0 + max_write_buffer_size_to_maintain=0 + sst_partitioner_factory=nullptr + default_temperature=kUnknown + compaction_style=kCompactionStyleLevel + min_write_buffer_number_to_merge=1 + memtable_factory=SkipListFactory + memtable_insert_with_hint_prefix_extractor=nullptr + force_consistency_checks=true + num_levels=7 + +[TableOptions/BlockBasedTable "payload"] + num_file_reads_for_auto_readahead=2 + initial_auto_readahead_size=8192 + metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} + enable_index_compression=true + verify_compression=false + prepopulate_block_cache=kDisable + format_version=6 + use_delta_encoding=true + pin_top_level_index_and_filter=true + read_amp_bytes_per_bit=0 + decouple_partitioned_filters=false + partition_filters=false + metadata_block_size=4096 + max_auto_readahead_size=262144 + index_block_restart_interval=1 + block_size_deviation=10 + block_size=4096 + detect_filter_construct_corruption=false + no_block_cache=false + checksum=kXXH3 + filter_policy=nullptr + data_block_hash_table_util_ratio=0.750000 + block_restart_interval=16 + index_type=kBinarySearch + pin_l0_filter_and_index_blocks_in_cache=false + data_block_index_type=kDataBlockBinarySearch + cache_index_and_filter_blocks_with_high_priority=true + whole_key_filtering=true + index_shortening=kShortenSeparators + cache_index_and_filter_blocks=false + block_align=false + optimize_filters_for_memory=true + flush_block_policy_factory=FlushBlockBySizePolicyFactory + + +[CFOptions "mapping"] + memtable_max_range_deletions=0 + compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_memory_checks=false + block_protection_bytes_per_key=0 + uncache_aggressiveness=0 + bottommost_file_compaction_delay=0 + memtable_protection_bytes_per_key=0 + experimental_mempurge_threshold=0.000000 + bottommost_compression=kDisableCompressionOption + sample_for_compression=0 + prepopulate_blob_cache=kDisable + blob_file_starting_level=0 + blob_compaction_readahead_size=0 + table_factory=BlockBasedTable + max_successive_merges=0 + max_write_buffer_number=2 + prefix_extractor=nullptr + memtable_huge_page_size=0 + write_buffer_size=10485760 + strict_max_successive_merges=false + arena_block_size=1048576 + level0_file_num_compaction_trigger=4 + report_bg_io_stats=false + inplace_update_num_locks=10000 + memtable_prefix_bloom_size_ratio=0.000000 + level0_stop_writes_trigger=36 + blob_compression_type=kNoCompression + level0_slowdown_writes_trigger=20 + hard_pending_compaction_bytes_limit=274877906944 + target_file_size_multiplier=1 + bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_file_checks=false + blob_garbage_collection_force_threshold=1.000000 + enable_blob_files=false + soft_pending_compaction_bytes_limit=68719476736 + target_file_size_base=67108864 + max_compaction_bytes=1677721600 + disable_auto_compactions=false + min_blob_size=0 + memtable_whole_key_filtering=false + max_bytes_for_level_base=268435456 + last_level_temperature=kUnknown + preserve_internal_time_seconds=0 + compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} + max_bytes_for_level_multiplier=10.000000 + max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 + max_sequential_skip_in_iterations=8 + compression=kLZ4Compression + default_write_temperature=kUnknown + compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} + blob_garbage_collection_age_cutoff=0.250000 + ttl=2592000 + periodic_compaction_seconds=0 + preclude_last_level_data_seconds=0 + blob_file_size=268435456 + enable_blob_garbage_collection=false + persist_user_defined_timestamps=true + compaction_pri=kMinOverlappingRatio + compaction_filter_factory=nullptr + comparator=leveldb.BytewiseComparator + bloom_locality=0 + merge_operator=nullptr + compaction_filter=nullptr + level_compaction_dynamic_level_bytes=true + optimize_filters_for_hits=false + inplace_update_support=false + max_write_buffer_number_to_maintain=0 + max_write_buffer_size_to_maintain=0 + sst_partitioner_factory=nullptr + default_temperature=kUnknown + compaction_style=kCompactionStyleLevel + min_write_buffer_number_to_merge=1 + memtable_factory=SkipListFactory + memtable_insert_with_hint_prefix_extractor=nullptr + force_consistency_checks=true + num_levels=7 + +[TableOptions/BlockBasedTable "mapping"] + num_file_reads_for_auto_readahead=2 + initial_auto_readahead_size=8192 + metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} + enable_index_compression=true + verify_compression=false + prepopulate_block_cache=kDisable + format_version=6 + use_delta_encoding=true + pin_top_level_index_and_filter=true + read_amp_bytes_per_bit=0 + decouple_partitioned_filters=false + partition_filters=false + metadata_block_size=4096 + max_auto_readahead_size=262144 + index_block_restart_interval=1 + block_size_deviation=10 + block_size=4096 + detect_filter_construct_corruption=false + no_block_cache=false + checksum=kXXH3 + filter_policy=nullptr + data_block_hash_table_util_ratio=0.750000 + block_restart_interval=16 + index_type=kBinarySearch + pin_l0_filter_and_index_blocks_in_cache=false + data_block_index_type=kDataBlockBinarySearch + cache_index_and_filter_blocks_with_high_priority=true + whole_key_filtering=true + index_shortening=kShortenSeparators + cache_index_and_filter_blocks=false + block_align=false + optimize_filters_for_memory=true + flush_block_policy_factory=FlushBlockBySizePolicyFactory + + +[CFOptions "version"] + memtable_max_range_deletions=0 + compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_memory_checks=false + block_protection_bytes_per_key=0 + uncache_aggressiveness=0 + bottommost_file_compaction_delay=0 + memtable_protection_bytes_per_key=0 + experimental_mempurge_threshold=0.000000 + bottommost_compression=kDisableCompressionOption + sample_for_compression=0 + prepopulate_blob_cache=kDisable + blob_file_starting_level=0 + blob_compaction_readahead_size=0 + table_factory=BlockBasedTable + max_successive_merges=0 + max_write_buffer_number=2 + prefix_extractor=nullptr + memtable_huge_page_size=0 + write_buffer_size=10485760 + strict_max_successive_merges=false + arena_block_size=1048576 + level0_file_num_compaction_trigger=4 + report_bg_io_stats=false + inplace_update_num_locks=10000 + memtable_prefix_bloom_size_ratio=0.000000 + level0_stop_writes_trigger=36 + blob_compression_type=kNoCompression + level0_slowdown_writes_trigger=20 + hard_pending_compaction_bytes_limit=274877906944 + target_file_size_multiplier=1 + bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_file_checks=false + blob_garbage_collection_force_threshold=1.000000 + enable_blob_files=false + soft_pending_compaction_bytes_limit=68719476736 + target_file_size_base=67108864 + max_compaction_bytes=1677721600 + disable_auto_compactions=false + min_blob_size=0 + memtable_whole_key_filtering=false + max_bytes_for_level_base=268435456 + last_level_temperature=kUnknown + preserve_internal_time_seconds=0 + compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} + max_bytes_for_level_multiplier=10.000000 + max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 + max_sequential_skip_in_iterations=8 + compression=kLZ4Compression + default_write_temperature=kUnknown + compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} + blob_garbage_collection_age_cutoff=0.250000 + ttl=2592000 + periodic_compaction_seconds=0 + preclude_last_level_data_seconds=0 + blob_file_size=268435456 + enable_blob_garbage_collection=false + persist_user_defined_timestamps=true + compaction_pri=kMinOverlappingRatio + compaction_filter_factory=nullptr + comparator=leveldb.BytewiseComparator + bloom_locality=0 + merge_operator=nullptr + compaction_filter=nullptr + level_compaction_dynamic_level_bytes=true + optimize_filters_for_hits=false + inplace_update_support=false + max_write_buffer_number_to_maintain=0 + max_write_buffer_size_to_maintain=0 + sst_partitioner_factory=nullptr + default_temperature=kUnknown + compaction_style=kCompactionStyleLevel + min_write_buffer_number_to_merge=1 + memtable_factory=SkipListFactory + memtable_insert_with_hint_prefix_extractor=nullptr + force_consistency_checks=true + num_levels=7 + +[TableOptions/BlockBasedTable "version"] + num_file_reads_for_auto_readahead=2 + initial_auto_readahead_size=8192 + metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} + enable_index_compression=true + verify_compression=false + prepopulate_block_cache=kDisable + format_version=6 + use_delta_encoding=true + pin_top_level_index_and_filter=true + read_amp_bytes_per_bit=0 + decouple_partitioned_filters=false + partition_filters=false + metadata_block_size=4096 + max_auto_readahead_size=262144 + index_block_restart_interval=1 + block_size_deviation=10 + block_size=4096 + detect_filter_construct_corruption=false + no_block_cache=false + checksum=kXXH3 + filter_policy=nullptr + data_block_hash_table_util_ratio=0.750000 + block_restart_interval=16 + index_type=kBinarySearch + pin_l0_filter_and_index_blocks_in_cache=false + data_block_index_type=kDataBlockBinarySearch + cache_index_and_filter_blocks_with_high_priority=true + whole_key_filtering=true + index_shortening=kShortenSeparators + cache_index_and_filter_blocks=false + block_align=false + optimize_filters_for_memory=true + flush_block_policy_factory=FlushBlockBySizePolicyFactory + + +[CFOptions "vector"] + memtable_max_range_deletions=0 + compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_memory_checks=false + block_protection_bytes_per_key=0 + uncache_aggressiveness=0 + bottommost_file_compaction_delay=0 + memtable_protection_bytes_per_key=0 + experimental_mempurge_threshold=0.000000 + bottommost_compression=kDisableCompressionOption + sample_for_compression=0 + prepopulate_blob_cache=kDisable + blob_file_starting_level=0 + blob_compaction_readahead_size=0 + table_factory=BlockBasedTable + max_successive_merges=0 + max_write_buffer_number=2 + prefix_extractor=nullptr + memtable_huge_page_size=0 + write_buffer_size=10485760 + strict_max_successive_merges=false + arena_block_size=1048576 + level0_file_num_compaction_trigger=4 + report_bg_io_stats=false + inplace_update_num_locks=10000 + memtable_prefix_bloom_size_ratio=0.000000 + level0_stop_writes_trigger=36 + blob_compression_type=kNoCompression + level0_slowdown_writes_trigger=20 + hard_pending_compaction_bytes_limit=274877906944 + target_file_size_multiplier=1 + bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_file_checks=false + blob_garbage_collection_force_threshold=1.000000 + enable_blob_files=false + soft_pending_compaction_bytes_limit=68719476736 + target_file_size_base=67108864 + max_compaction_bytes=1677721600 + disable_auto_compactions=false + min_blob_size=0 + memtable_whole_key_filtering=false + max_bytes_for_level_base=268435456 + last_level_temperature=kUnknown + preserve_internal_time_seconds=0 + compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} + max_bytes_for_level_multiplier=10.000000 + max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 + max_sequential_skip_in_iterations=8 + compression=kLZ4Compression + default_write_temperature=kUnknown + compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} + blob_garbage_collection_age_cutoff=0.250000 + ttl=2592000 + periodic_compaction_seconds=0 + preclude_last_level_data_seconds=0 + blob_file_size=268435456 + enable_blob_garbage_collection=false + persist_user_defined_timestamps=true + compaction_pri=kMinOverlappingRatio + compaction_filter_factory=nullptr + comparator=leveldb.BytewiseComparator + bloom_locality=0 + merge_operator=nullptr + compaction_filter=nullptr + level_compaction_dynamic_level_bytes=true + optimize_filters_for_hits=false + inplace_update_support=false + max_write_buffer_number_to_maintain=0 + max_write_buffer_size_to_maintain=0 + sst_partitioner_factory=nullptr + default_temperature=kUnknown + compaction_style=kCompactionStyleLevel + min_write_buffer_number_to_merge=1 + memtable_factory=SkipListFactory + memtable_insert_with_hint_prefix_extractor=nullptr + force_consistency_checks=true + num_levels=7 + +[TableOptions/BlockBasedTable "vector"] + num_file_reads_for_auto_readahead=2 + initial_auto_readahead_size=8192 + metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} + enable_index_compression=true + verify_compression=false + prepopulate_block_cache=kDisable + format_version=6 + use_delta_encoding=true + pin_top_level_index_and_filter=true + read_amp_bytes_per_bit=0 + decouple_partitioned_filters=false + partition_filters=false + metadata_block_size=4096 + max_auto_readahead_size=262144 + index_block_restart_interval=1 + block_size_deviation=10 + block_size=4096 + detect_filter_construct_corruption=false + no_block_cache=false + checksum=kXXH3 + filter_policy=nullptr + data_block_hash_table_util_ratio=0.750000 + block_restart_interval=16 + index_type=kBinarySearch + pin_l0_filter_and_index_blocks_in_cache=false + data_block_index_type=kDataBlockBinarySearch + cache_index_and_filter_blocks_with_high_priority=true + whole_key_filtering=true + index_shortening=kShortenSeparators + cache_index_and_filter_blocks=false + block_align=false + optimize_filters_for_memory=true + flush_block_policy_factory=FlushBlockBySizePolicyFactory + diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/payload_index/000012.log b/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/payload_index/000012.log new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/payload_index/CURRENT b/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/payload_index/CURRENT new file mode 100644 index 0000000000000000000000000000000000000000..625d147412870471b19d90716ccc20a7f207a5c3 --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/payload_index/CURRENT @@ -0,0 +1 @@ +MANIFEST-000013 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/payload_index/IDENTITY b/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/payload_index/IDENTITY new file mode 100644 index 0000000000000000000000000000000000000000..e16f5b85e2625e7fbacf516e8b00aeb11584301a --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/payload_index/IDENTITY @@ -0,0 +1 @@ +a5f9315e-85ed-4d0f-b839-9eb17ff3b866 \ No newline at end of file diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/payload_index/LOCK b/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/payload_index/LOCK new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/payload_index/LOG b/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/payload_index/LOG new file mode 100644 index 0000000000000000000000000000000000000000..c7ea8774483be37ee550d1168c62add2c67b1b0b --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/payload_index/LOG @@ -0,0 +1,247 @@ +2025/05/04-10:09:55.816784 43 RocksDB version: 9.9.3 +2025/05/04-10:09:55.816871 43 Compile date 2024-12-05 01:25:31 +2025/05/04-10:09:55.816873 43 DB SUMMARY +2025/05/04-10:09:55.816874 43 Host name (Env): c5f2a9d061bb +2025/05/04-10:09:55.816875 43 DB Session ID: CD0SHR3DDC5AMRBDXMDF +2025/05/04-10:09:55.817455 43 CURRENT file: CURRENT +2025/05/04-10:09:55.817456 43 IDENTITY file: IDENTITY +2025/05/04-10:09:55.817459 43 MANIFEST file: MANIFEST-000009 size: 159 Bytes +2025/05/04-10:09:55.817460 43 SST files in ./storage/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/payload_index dir, Total Num: 0, files: +2025/05/04-10:09:55.817461 43 Write Ahead Log file in ./storage/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/payload_index: 000008.log size: 0 ; +2025/05/04-10:09:55.817462 43 Options.error_if_exists: 0 +2025/05/04-10:09:55.817463 43 Options.create_if_missing: 1 +2025/05/04-10:09:55.817464 43 Options.paranoid_checks: 1 +2025/05/04-10:09:55.817465 43 Options.flush_verify_memtable_count: 1 +2025/05/04-10:09:55.817465 43 Options.compaction_verify_record_count: 1 +2025/05/04-10:09:55.817466 43 Options.track_and_verify_wals_in_manifest: 0 +2025/05/04-10:09:55.817467 43 Options.verify_sst_unique_id_in_manifest: 1 +2025/05/04-10:09:55.817468 43 Options.env: 0xffff86034000 +2025/05/04-10:09:55.817468 43 Options.fs: PosixFileSystem +2025/05/04-10:09:55.817469 43 Options.info_log: 0xffff9abfe500 +2025/05/04-10:09:55.817470 43 Options.max_file_opening_threads: 16 +2025/05/04-10:09:55.817470 43 Options.statistics: (nil) +2025/05/04-10:09:55.817471 43 Options.use_fsync: 0 +2025/05/04-10:09:55.817471 43 Options.max_log_file_size: 1048576 +2025/05/04-10:09:55.817472 43 Options.max_manifest_file_size: 1073741824 +2025/05/04-10:09:55.817473 43 Options.log_file_time_to_roll: 0 +2025/05/04-10:09:55.817473 43 Options.keep_log_file_num: 1 +2025/05/04-10:09:55.817474 43 Options.recycle_log_file_num: 0 +2025/05/04-10:09:55.817474 43 Options.allow_fallocate: 1 +2025/05/04-10:09:55.817475 43 Options.allow_mmap_reads: 0 +2025/05/04-10:09:55.817476 43 Options.allow_mmap_writes: 0 +2025/05/04-10:09:55.817476 43 Options.use_direct_reads: 0 +2025/05/04-10:09:55.817477 43 Options.use_direct_io_for_flush_and_compaction: 0 +2025/05/04-10:09:55.817477 43 Options.create_missing_column_families: 1 +2025/05/04-10:09:55.817478 43 Options.db_log_dir: +2025/05/04-10:09:55.817478 43 Options.wal_dir: +2025/05/04-10:09:55.817479 43 Options.table_cache_numshardbits: 6 +2025/05/04-10:09:55.817479 43 Options.WAL_ttl_seconds: 0 +2025/05/04-10:09:55.817480 43 Options.WAL_size_limit_MB: 0 +2025/05/04-10:09:55.817480 43 Options.max_write_batch_group_size_bytes: 1048576 +2025/05/04-10:09:55.817481 43 Options.manifest_preallocation_size: 4194304 +2025/05/04-10:09:55.817482 43 Options.is_fd_close_on_exec: 1 +2025/05/04-10:09:55.817485 43 Options.advise_random_on_open: 1 +2025/05/04-10:09:55.817486 43 Options.db_write_buffer_size: 0 +2025/05/04-10:09:55.817486 43 Options.write_buffer_manager: 0xffff9ab73780 +2025/05/04-10:09:55.817487 43 Options.random_access_max_buffer_size: 1048576 +2025/05/04-10:09:55.817488 43 Options.use_adaptive_mutex: 0 +2025/05/04-10:09:55.817489 43 Options.rate_limiter: (nil) +2025/05/04-10:09:55.817490 43 Options.sst_file_manager.rate_bytes_per_sec: 0 +2025/05/04-10:09:55.817490 43 Options.wal_recovery_mode: 0 +2025/05/04-10:09:55.817491 43 Options.enable_thread_tracking: 0 +2025/05/04-10:09:55.817491 43 Options.enable_pipelined_write: 0 +2025/05/04-10:09:55.817492 43 Options.unordered_write: 0 +2025/05/04-10:09:55.817492 43 Options.allow_concurrent_memtable_write: 1 +2025/05/04-10:09:55.817493 43 Options.enable_write_thread_adaptive_yield: 1 +2025/05/04-10:09:55.817493 43 Options.write_thread_max_yield_usec: 100 +2025/05/04-10:09:55.817494 43 Options.write_thread_slow_yield_usec: 3 +2025/05/04-10:09:55.817495 43 Options.row_cache: None +2025/05/04-10:09:55.817495 43 Options.wal_filter: None +2025/05/04-10:09:55.817496 43 Options.avoid_flush_during_recovery: 0 +2025/05/04-10:09:55.817496 43 Options.allow_ingest_behind: 0 +2025/05/04-10:09:55.817497 43 Options.two_write_queues: 0 +2025/05/04-10:09:55.817498 43 Options.manual_wal_flush: 0 +2025/05/04-10:09:55.817498 43 Options.wal_compression: 0 +2025/05/04-10:09:55.817499 43 Options.background_close_inactive_wals: 0 +2025/05/04-10:09:55.817500 43 Options.atomic_flush: 0 +2025/05/04-10:09:55.817500 43 Options.avoid_unnecessary_blocking_io: 0 +2025/05/04-10:09:55.817501 43 Options.prefix_seek_opt_in_only: 0 +2025/05/04-10:09:55.817502 43 Options.persist_stats_to_disk: 0 +2025/05/04-10:09:55.817503 43 Options.write_dbid_to_manifest: 1 +2025/05/04-10:09:55.817503 43 Options.write_identity_file: 1 +2025/05/04-10:09:55.817504 43 Options.log_readahead_size: 0 +2025/05/04-10:09:55.817504 43 Options.file_checksum_gen_factory: Unknown +2025/05/04-10:09:55.817506 43 Options.best_efforts_recovery: 0 +2025/05/04-10:09:55.817507 43 Options.max_bgerror_resume_count: 2147483647 +2025/05/04-10:09:55.817508 43 Options.bgerror_resume_retry_interval: 1000000 +2025/05/04-10:09:55.817508 43 Options.allow_data_in_errors: 0 +2025/05/04-10:09:55.817509 43 Options.db_host_id: __hostname__ +2025/05/04-10:09:55.817509 43 Options.enforce_single_del_contracts: true +2025/05/04-10:09:55.817510 43 Options.metadata_write_temperature: kUnknown +2025/05/04-10:09:55.817511 43 Options.wal_write_temperature: kUnknown +2025/05/04-10:09:55.817511 43 Options.max_background_jobs: 2 +2025/05/04-10:09:55.817512 43 Options.max_background_compactions: -1 +2025/05/04-10:09:55.817513 43 Options.max_subcompactions: 1 +2025/05/04-10:09:55.817513 43 Options.avoid_flush_during_shutdown: 0 +2025/05/04-10:09:55.817514 43 Options.writable_file_max_buffer_size: 1048576 +2025/05/04-10:09:55.817514 43 Options.delayed_write_rate : 16777216 +2025/05/04-10:09:55.817515 43 Options.max_total_wal_size: 0 +2025/05/04-10:09:55.817516 43 Options.delete_obsolete_files_period_micros: 180000000 +2025/05/04-10:09:55.817516 43 Options.stats_dump_period_sec: 600 +2025/05/04-10:09:55.817517 43 Options.stats_persist_period_sec: 600 +2025/05/04-10:09:55.817518 43 Options.stats_history_buffer_size: 1048576 +2025/05/04-10:09:55.817518 43 Options.max_open_files: 256 +2025/05/04-10:09:55.817519 43 Options.bytes_per_sync: 0 +2025/05/04-10:09:55.817520 43 Options.wal_bytes_per_sync: 0 +2025/05/04-10:09:55.817520 43 Options.strict_bytes_per_sync: 0 +2025/05/04-10:09:55.817521 43 Options.compaction_readahead_size: 2097152 +2025/05/04-10:09:55.817521 43 Options.max_background_flushes: -1 +2025/05/04-10:09:55.817522 43 Options.daily_offpeak_time_utc: +2025/05/04-10:09:55.817522 43 Compression algorithms supported: +2025/05/04-10:09:55.817523 43 kZSTD supported: 0 +2025/05/04-10:09:55.817524 43 kXpressCompression supported: 0 +2025/05/04-10:09:55.817524 43 kBZip2Compression supported: 0 +2025/05/04-10:09:55.817525 43 kZSTDNotFinalCompression supported: 0 +2025/05/04-10:09:55.817526 43 kLZ4Compression supported: 1 +2025/05/04-10:09:55.817526 43 kZlibCompression supported: 0 +2025/05/04-10:09:55.817527 43 kLZ4HCCompression supported: 1 +2025/05/04-10:09:55.817527 43 kSnappyCompression supported: 1 +2025/05/04-10:09:55.817528 43 Fast CRC32 supported: Not supported on x86 +2025/05/04-10:09:55.817529 43 DMutex implementation: pthread_mutex_t +2025/05/04-10:09:55.817529 43 Jemalloc supported: 0 +2025/05/04-10:09:55.818815 43 Options.comparator: leveldb.BytewiseComparator +2025/05/04-10:09:55.818816 43 Options.merge_operator: None +2025/05/04-10:09:55.818817 43 Options.compaction_filter: None +2025/05/04-10:09:55.818818 43 Options.compaction_filter_factory: None +2025/05/04-10:09:55.818818 43 Options.sst_partitioner_factory: None +2025/05/04-10:09:55.818819 43 Options.memtable_factory: SkipListFactory +2025/05/04-10:09:55.818820 43 Options.table_factory: BlockBasedTable +2025/05/04-10:09:55.818858 43 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff9bda9ce0) + cache_index_and_filter_blocks: 0 + cache_index_and_filter_blocks_with_high_priority: 1 + pin_l0_filter_and_index_blocks_in_cache: 0 + pin_top_level_index_and_filter: 1 + index_type: 0 + data_block_index_type: 0 + index_shortening: 1 + data_block_hash_table_util_ratio: 0.750000 + checksum: 4 + no_block_cache: 0 + block_cache: 0xffff9ab736d0 + block_cache_name: LRUCache + block_cache_options: + capacity : 33554432 + num_shard_bits : 6 + strict_capacity_limit : 0 + memory_allocator : None + high_pri_pool_ratio: 0.500 + low_pri_pool_ratio: 0.000 + persistent_cache: (nil) + block_size: 4096 + block_size_deviation: 10 + block_restart_interval: 16 + index_block_restart_interval: 1 + metadata_block_size: 4096 + partition_filters: 0 + use_delta_encoding: 1 + filter_policy: nullptr + whole_key_filtering: 1 + verify_compression: 0 + read_amp_bytes_per_bit: 0 + format_version: 6 + enable_index_compression: 1 + block_align: 0 + max_auto_readahead_size: 262144 + prepopulate_block_cache: 0 + initial_auto_readahead_size: 8192 + num_file_reads_for_auto_readahead: 2 +2025/05/04-10:09:55.818868 43 Options.write_buffer_size: 10485760 +2025/05/04-10:09:55.818869 43 Options.max_write_buffer_number: 2 +2025/05/04-10:09:55.818878 43 Options.compression: LZ4 +2025/05/04-10:09:55.818879 43 Options.bottommost_compression: Disabled +2025/05/04-10:09:55.818879 43 Options.prefix_extractor: nullptr +2025/05/04-10:09:55.818880 43 Options.memtable_insert_with_hint_prefix_extractor: nullptr +2025/05/04-10:09:55.818880 43 Options.num_levels: 7 +2025/05/04-10:09:55.818881 43 Options.min_write_buffer_number_to_merge: 1 +2025/05/04-10:09:55.818882 43 Options.max_write_buffer_number_to_maintain: 0 +2025/05/04-10:09:55.818883 43 Options.max_write_buffer_size_to_maintain: 0 +2025/05/04-10:09:55.818884 43 Options.bottommost_compression_opts.window_bits: -14 +2025/05/04-10:09:55.818885 43 Options.bottommost_compression_opts.level: 32767 +2025/05/04-10:09:55.818886 43 Options.bottommost_compression_opts.strategy: 0 +2025/05/04-10:09:55.818886 43 Options.bottommost_compression_opts.max_dict_bytes: 0 +2025/05/04-10:09:55.818887 43 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 +2025/05/04-10:09:55.818888 43 Options.bottommost_compression_opts.parallel_threads: 1 +2025/05/04-10:09:55.818889 43 Options.bottommost_compression_opts.enabled: false +2025/05/04-10:09:55.818889 43 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 +2025/05/04-10:09:55.818890 43 Options.bottommost_compression_opts.use_zstd_dict_trainer: true +2025/05/04-10:09:55.818891 43 Options.compression_opts.window_bits: -14 +2025/05/04-10:09:55.818891 43 Options.compression_opts.level: 32767 +2025/05/04-10:09:55.818892 43 Options.compression_opts.strategy: 0 +2025/05/04-10:09:55.818892 43 Options.compression_opts.max_dict_bytes: 0 +2025/05/04-10:09:55.818893 43 Options.compression_opts.zstd_max_train_bytes: 0 +2025/05/04-10:09:55.818893 43 Options.compression_opts.use_zstd_dict_trainer: true +2025/05/04-10:09:55.818894 43 Options.compression_opts.parallel_threads: 1 +2025/05/04-10:09:55.818895 43 Options.compression_opts.enabled: false +2025/05/04-10:09:55.818895 43 Options.compression_opts.max_dict_buffer_bytes: 0 +2025/05/04-10:09:55.818896 43 Options.level0_file_num_compaction_trigger: 4 +2025/05/04-10:09:55.818896 43 Options.level0_slowdown_writes_trigger: 20 +2025/05/04-10:09:55.818897 43 Options.level0_stop_writes_trigger: 36 +2025/05/04-10:09:55.818898 43 Options.target_file_size_base: 67108864 +2025/05/04-10:09:55.818898 43 Options.target_file_size_multiplier: 1 +2025/05/04-10:09:55.818899 43 Options.max_bytes_for_level_base: 268435456 +2025/05/04-10:09:55.818900 43 Options.level_compaction_dynamic_level_bytes: 1 +2025/05/04-10:09:55.818901 43 Options.max_bytes_for_level_multiplier: 10.000000 +2025/05/04-10:09:55.818902 43 Options.max_bytes_for_level_multiplier_addtl[0]: 1 +2025/05/04-10:09:55.818902 43 Options.max_bytes_for_level_multiplier_addtl[1]: 1 +2025/05/04-10:09:55.818903 43 Options.max_bytes_for_level_multiplier_addtl[2]: 1 +2025/05/04-10:09:55.818903 43 Options.max_bytes_for_level_multiplier_addtl[3]: 1 +2025/05/04-10:09:55.818904 43 Options.max_bytes_for_level_multiplier_addtl[4]: 1 +2025/05/04-10:09:55.818904 43 Options.max_bytes_for_level_multiplier_addtl[5]: 1 +2025/05/04-10:09:55.818905 43 Options.max_bytes_for_level_multiplier_addtl[6]: 1 +2025/05/04-10:09:55.818905 43 Options.max_sequential_skip_in_iterations: 8 +2025/05/04-10:09:55.818906 43 Options.max_compaction_bytes: 1677721600 +2025/05/04-10:09:55.818907 43 Options.arena_block_size: 1048576 +2025/05/04-10:09:55.818907 43 Options.soft_pending_compaction_bytes_limit: 68719476736 +2025/05/04-10:09:55.818908 43 Options.hard_pending_compaction_bytes_limit: 274877906944 +2025/05/04-10:09:55.818908 43 Options.disable_auto_compactions: 0 +2025/05/04-10:09:55.818909 43 Options.compaction_style: kCompactionStyleLevel +2025/05/04-10:09:55.818910 43 Options.compaction_pri: kMinOverlappingRatio +2025/05/04-10:09:55.818911 43 Options.compaction_options_universal.size_ratio: 1 +2025/05/04-10:09:55.818911 43 Options.compaction_options_universal.min_merge_width: 2 +2025/05/04-10:09:55.818912 43 Options.compaction_options_universal.max_merge_width: 4294967295 +2025/05/04-10:09:55.818912 43 Options.compaction_options_universal.max_size_amplification_percent: 200 +2025/05/04-10:09:55.818913 43 Options.compaction_options_universal.compression_size_percent: -1 +2025/05/04-10:09:55.818914 43 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize +2025/05/04-10:09:55.818914 43 Options.compaction_options_universal.max_read_amp: -1 +2025/05/04-10:09:55.818915 43 Options.compaction_options_fifo.max_table_files_size: 1073741824 +2025/05/04-10:09:55.818915 43 Options.compaction_options_fifo.allow_compaction: 0 +2025/05/04-10:09:55.818917 43 Options.table_properties_collectors: +2025/05/04-10:09:55.818918 43 Options.inplace_update_support: 0 +2025/05/04-10:09:55.818918 43 Options.inplace_update_num_locks: 10000 +2025/05/04-10:09:55.818919 43 Options.memtable_prefix_bloom_size_ratio: 0.000000 +2025/05/04-10:09:55.818919 43 Options.memtable_whole_key_filtering: 0 +2025/05/04-10:09:55.818920 43 Options.memtable_huge_page_size: 0 +2025/05/04-10:09:55.818921 43 Options.bloom_locality: 0 +2025/05/04-10:09:55.818921 43 Options.max_successive_merges: 0 +2025/05/04-10:09:55.818922 43 Options.strict_max_successive_merges: 0 +2025/05/04-10:09:55.818922 43 Options.optimize_filters_for_hits: 0 +2025/05/04-10:09:55.818923 43 Options.paranoid_file_checks: 0 +2025/05/04-10:09:55.818923 43 Options.force_consistency_checks: 1 +2025/05/04-10:09:55.818924 43 Options.report_bg_io_stats: 0 +2025/05/04-10:09:55.818925 43 Options.ttl: 2592000 +2025/05/04-10:09:55.818925 43 Options.periodic_compaction_seconds: 0 +2025/05/04-10:09:55.818926 43 Options.default_temperature: kUnknown +2025/05/04-10:09:55.818927 43 Options.preclude_last_level_data_seconds: 0 +2025/05/04-10:09:55.818927 43 Options.preserve_internal_time_seconds: 0 +2025/05/04-10:09:55.818928 43 Options.enable_blob_files: false +2025/05/04-10:09:55.818928 43 Options.min_blob_size: 0 +2025/05/04-10:09:55.818929 43 Options.blob_file_size: 268435456 +2025/05/04-10:09:55.818930 43 Options.blob_compression_type: NoCompression +2025/05/04-10:09:55.818930 43 Options.enable_blob_garbage_collection: false +2025/05/04-10:09:55.818931 43 Options.blob_garbage_collection_age_cutoff: 0.250000 +2025/05/04-10:09:55.818932 43 Options.blob_garbage_collection_force_threshold: 1.000000 +2025/05/04-10:09:55.818932 43 Options.blob_compaction_readahead_size: 0 +2025/05/04-10:09:55.818933 43 Options.blob_file_starting_level: 0 +2025/05/04-10:09:55.818933 43 Options.experimental_mempurge_threshold: 0.000000 +2025/05/04-10:09:55.818934 43 Options.memtable_max_range_deletions: 0 +2025/05/04-10:09:55.826880 43 DB pointer 0xffff9aab9800 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/payload_index/MANIFEST-000013 b/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/payload_index/MANIFEST-000013 new file mode 100644 index 0000000000000000000000000000000000000000..53a7cc89afe14862cd0a65124683d562306f2e1a Binary files /dev/null and b/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/payload_index/MANIFEST-000013 differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/payload_index/OPTIONS-000011 b/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/payload_index/OPTIONS-000011 new file mode 100644 index 0000000000000000000000000000000000000000..1ff6c6ffcc08e04f8a99e1f459e7b0caa1822cb2 --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/payload_index/OPTIONS-000011 @@ -0,0 +1,214 @@ +# This is a RocksDB option file. +# +# For detailed file format spec, please refer to the example file +# in examples/rocksdb_option_file_example.ini +# + +[Version] + rocksdb_version=9.9.3 + options_file_version=1.1 + +[DBOptions] + compaction_readahead_size=2097152 + strict_bytes_per_sync=false + bytes_per_sync=0 + max_background_jobs=2 + avoid_flush_during_shutdown=false + max_background_flushes=-1 + delayed_write_rate=16777216 + max_open_files=256 + max_subcompactions=1 + writable_file_max_buffer_size=1048576 + wal_bytes_per_sync=0 + max_background_compactions=-1 + max_total_wal_size=0 + delete_obsolete_files_period_micros=180000000 + stats_dump_period_sec=600 + stats_history_buffer_size=1048576 + stats_persist_period_sec=600 + follower_refresh_catchup_period_ms=10000 + enforce_single_del_contracts=true + lowest_used_cache_tier=kNonVolatileBlockTier + bgerror_resume_retry_interval=1000000 + metadata_write_temperature=kUnknown + best_efforts_recovery=false + log_readahead_size=0 + write_identity_file=true + write_dbid_to_manifest=true + prefix_seek_opt_in_only=false + wal_compression=kNoCompression + manual_wal_flush=false + db_host_id=__hostname__ + two_write_queues=false + random_access_max_buffer_size=1048576 + avoid_unnecessary_blocking_io=false + skip_checking_sst_file_sizes_on_db_open=false + flush_verify_memtable_count=true + fail_if_options_file_error=true + atomic_flush=false + verify_sst_unique_id_in_manifest=true + skip_stats_update_on_db_open=false + track_and_verify_wals_in_manifest=false + compaction_verify_record_count=true + paranoid_checks=true + create_if_missing=true + max_write_batch_group_size_bytes=1048576 + follower_catchup_retry_count=10 + avoid_flush_during_recovery=false + file_checksum_gen_factory=nullptr + enable_thread_tracking=false + allow_fallocate=true + allow_data_in_errors=false + error_if_exists=false + use_direct_io_for_flush_and_compaction=false + background_close_inactive_wals=false + create_missing_column_families=true + WAL_size_limit_MB=0 + use_direct_reads=false + persist_stats_to_disk=false + allow_2pc=false + is_fd_close_on_exec=true + max_log_file_size=1048576 + max_file_opening_threads=16 + wal_filter=nullptr + wal_write_temperature=kUnknown + follower_catchup_retry_wait_ms=100 + allow_mmap_reads=false + allow_mmap_writes=false + use_adaptive_mutex=false + use_fsync=false + table_cache_numshardbits=6 + dump_malloc_stats=false + db_write_buffer_size=0 + allow_ingest_behind=false + keep_log_file_num=1 + max_bgerror_resume_count=2147483647 + allow_concurrent_memtable_write=true + recycle_log_file_num=0 + log_file_time_to_roll=0 + manifest_preallocation_size=4194304 + enable_write_thread_adaptive_yield=true + WAL_ttl_seconds=0 + max_manifest_file_size=1073741824 + wal_recovery_mode=kTolerateCorruptedTailRecords + enable_pipelined_write=false + write_thread_slow_yield_usec=3 + unordered_write=false + write_thread_max_yield_usec=100 + advise_random_on_open=true + info_log_level=ERROR_LEVEL + + +[CFOptions "default"] + memtable_max_range_deletions=0 + compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_memory_checks=false + block_protection_bytes_per_key=0 + uncache_aggressiveness=0 + bottommost_file_compaction_delay=0 + memtable_protection_bytes_per_key=0 + experimental_mempurge_threshold=0.000000 + bottommost_compression=kDisableCompressionOption + sample_for_compression=0 + prepopulate_blob_cache=kDisable + blob_file_starting_level=0 + blob_compaction_readahead_size=0 + table_factory=BlockBasedTable + max_successive_merges=0 + max_write_buffer_number=2 + prefix_extractor=nullptr + memtable_huge_page_size=0 + write_buffer_size=10485760 + strict_max_successive_merges=false + arena_block_size=1048576 + level0_file_num_compaction_trigger=4 + report_bg_io_stats=false + inplace_update_num_locks=10000 + memtable_prefix_bloom_size_ratio=0.000000 + level0_stop_writes_trigger=36 + blob_compression_type=kNoCompression + level0_slowdown_writes_trigger=20 + hard_pending_compaction_bytes_limit=274877906944 + target_file_size_multiplier=1 + bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_file_checks=false + blob_garbage_collection_force_threshold=1.000000 + enable_blob_files=false + soft_pending_compaction_bytes_limit=68719476736 + target_file_size_base=67108864 + max_compaction_bytes=1677721600 + disable_auto_compactions=false + min_blob_size=0 + memtable_whole_key_filtering=false + max_bytes_for_level_base=268435456 + last_level_temperature=kUnknown + preserve_internal_time_seconds=0 + compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} + max_bytes_for_level_multiplier=10.000000 + max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 + max_sequential_skip_in_iterations=8 + compression=kLZ4Compression + default_write_temperature=kUnknown + compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} + blob_garbage_collection_age_cutoff=0.250000 + ttl=2592000 + periodic_compaction_seconds=0 + preclude_last_level_data_seconds=0 + blob_file_size=268435456 + enable_blob_garbage_collection=false + persist_user_defined_timestamps=true + compaction_pri=kMinOverlappingRatio + compaction_filter_factory=nullptr + comparator=leveldb.BytewiseComparator + bloom_locality=0 + merge_operator=nullptr + compaction_filter=nullptr + level_compaction_dynamic_level_bytes=true + optimize_filters_for_hits=false + inplace_update_support=false + max_write_buffer_number_to_maintain=0 + max_write_buffer_size_to_maintain=0 + sst_partitioner_factory=nullptr + default_temperature=kUnknown + compaction_style=kCompactionStyleLevel + min_write_buffer_number_to_merge=1 + memtable_factory=SkipListFactory + memtable_insert_with_hint_prefix_extractor=nullptr + force_consistency_checks=true + num_levels=7 + +[TableOptions/BlockBasedTable "default"] + num_file_reads_for_auto_readahead=2 + initial_auto_readahead_size=8192 + metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} + enable_index_compression=true + verify_compression=false + prepopulate_block_cache=kDisable + format_version=6 + use_delta_encoding=true + pin_top_level_index_and_filter=true + read_amp_bytes_per_bit=0 + decouple_partitioned_filters=false + partition_filters=false + metadata_block_size=4096 + max_auto_readahead_size=262144 + index_block_restart_interval=1 + block_size_deviation=10 + block_size=4096 + detect_filter_construct_corruption=false + no_block_cache=false + checksum=kXXH3 + filter_policy=nullptr + data_block_hash_table_util_ratio=0.750000 + block_restart_interval=16 + index_type=kBinarySearch + pin_l0_filter_and_index_blocks_in_cache=false + data_block_index_type=kDataBlockBinarySearch + cache_index_and_filter_blocks_with_high_priority=true + whole_key_filtering=true + index_shortening=kShortenSeparators + cache_index_and_filter_blocks=false + block_align=false + optimize_filters_for_memory=true + flush_block_policy_factory=FlushBlockBySizePolicyFactory + diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/payload_index/OPTIONS-000015 b/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/payload_index/OPTIONS-000015 new file mode 100644 index 0000000000000000000000000000000000000000..1ff6c6ffcc08e04f8a99e1f459e7b0caa1822cb2 --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/payload_index/OPTIONS-000015 @@ -0,0 +1,214 @@ +# This is a RocksDB option file. +# +# For detailed file format spec, please refer to the example file +# in examples/rocksdb_option_file_example.ini +# + +[Version] + rocksdb_version=9.9.3 + options_file_version=1.1 + +[DBOptions] + compaction_readahead_size=2097152 + strict_bytes_per_sync=false + bytes_per_sync=0 + max_background_jobs=2 + avoid_flush_during_shutdown=false + max_background_flushes=-1 + delayed_write_rate=16777216 + max_open_files=256 + max_subcompactions=1 + writable_file_max_buffer_size=1048576 + wal_bytes_per_sync=0 + max_background_compactions=-1 + max_total_wal_size=0 + delete_obsolete_files_period_micros=180000000 + stats_dump_period_sec=600 + stats_history_buffer_size=1048576 + stats_persist_period_sec=600 + follower_refresh_catchup_period_ms=10000 + enforce_single_del_contracts=true + lowest_used_cache_tier=kNonVolatileBlockTier + bgerror_resume_retry_interval=1000000 + metadata_write_temperature=kUnknown + best_efforts_recovery=false + log_readahead_size=0 + write_identity_file=true + write_dbid_to_manifest=true + prefix_seek_opt_in_only=false + wal_compression=kNoCompression + manual_wal_flush=false + db_host_id=__hostname__ + two_write_queues=false + random_access_max_buffer_size=1048576 + avoid_unnecessary_blocking_io=false + skip_checking_sst_file_sizes_on_db_open=false + flush_verify_memtable_count=true + fail_if_options_file_error=true + atomic_flush=false + verify_sst_unique_id_in_manifest=true + skip_stats_update_on_db_open=false + track_and_verify_wals_in_manifest=false + compaction_verify_record_count=true + paranoid_checks=true + create_if_missing=true + max_write_batch_group_size_bytes=1048576 + follower_catchup_retry_count=10 + avoid_flush_during_recovery=false + file_checksum_gen_factory=nullptr + enable_thread_tracking=false + allow_fallocate=true + allow_data_in_errors=false + error_if_exists=false + use_direct_io_for_flush_and_compaction=false + background_close_inactive_wals=false + create_missing_column_families=true + WAL_size_limit_MB=0 + use_direct_reads=false + persist_stats_to_disk=false + allow_2pc=false + is_fd_close_on_exec=true + max_log_file_size=1048576 + max_file_opening_threads=16 + wal_filter=nullptr + wal_write_temperature=kUnknown + follower_catchup_retry_wait_ms=100 + allow_mmap_reads=false + allow_mmap_writes=false + use_adaptive_mutex=false + use_fsync=false + table_cache_numshardbits=6 + dump_malloc_stats=false + db_write_buffer_size=0 + allow_ingest_behind=false + keep_log_file_num=1 + max_bgerror_resume_count=2147483647 + allow_concurrent_memtable_write=true + recycle_log_file_num=0 + log_file_time_to_roll=0 + manifest_preallocation_size=4194304 + enable_write_thread_adaptive_yield=true + WAL_ttl_seconds=0 + max_manifest_file_size=1073741824 + wal_recovery_mode=kTolerateCorruptedTailRecords + enable_pipelined_write=false + write_thread_slow_yield_usec=3 + unordered_write=false + write_thread_max_yield_usec=100 + advise_random_on_open=true + info_log_level=ERROR_LEVEL + + +[CFOptions "default"] + memtable_max_range_deletions=0 + compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_memory_checks=false + block_protection_bytes_per_key=0 + uncache_aggressiveness=0 + bottommost_file_compaction_delay=0 + memtable_protection_bytes_per_key=0 + experimental_mempurge_threshold=0.000000 + bottommost_compression=kDisableCompressionOption + sample_for_compression=0 + prepopulate_blob_cache=kDisable + blob_file_starting_level=0 + blob_compaction_readahead_size=0 + table_factory=BlockBasedTable + max_successive_merges=0 + max_write_buffer_number=2 + prefix_extractor=nullptr + memtable_huge_page_size=0 + write_buffer_size=10485760 + strict_max_successive_merges=false + arena_block_size=1048576 + level0_file_num_compaction_trigger=4 + report_bg_io_stats=false + inplace_update_num_locks=10000 + memtable_prefix_bloom_size_ratio=0.000000 + level0_stop_writes_trigger=36 + blob_compression_type=kNoCompression + level0_slowdown_writes_trigger=20 + hard_pending_compaction_bytes_limit=274877906944 + target_file_size_multiplier=1 + bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_file_checks=false + blob_garbage_collection_force_threshold=1.000000 + enable_blob_files=false + soft_pending_compaction_bytes_limit=68719476736 + target_file_size_base=67108864 + max_compaction_bytes=1677721600 + disable_auto_compactions=false + min_blob_size=0 + memtable_whole_key_filtering=false + max_bytes_for_level_base=268435456 + last_level_temperature=kUnknown + preserve_internal_time_seconds=0 + compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} + max_bytes_for_level_multiplier=10.000000 + max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 + max_sequential_skip_in_iterations=8 + compression=kLZ4Compression + default_write_temperature=kUnknown + compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} + blob_garbage_collection_age_cutoff=0.250000 + ttl=2592000 + periodic_compaction_seconds=0 + preclude_last_level_data_seconds=0 + blob_file_size=268435456 + enable_blob_garbage_collection=false + persist_user_defined_timestamps=true + compaction_pri=kMinOverlappingRatio + compaction_filter_factory=nullptr + comparator=leveldb.BytewiseComparator + bloom_locality=0 + merge_operator=nullptr + compaction_filter=nullptr + level_compaction_dynamic_level_bytes=true + optimize_filters_for_hits=false + inplace_update_support=false + max_write_buffer_number_to_maintain=0 + max_write_buffer_size_to_maintain=0 + sst_partitioner_factory=nullptr + default_temperature=kUnknown + compaction_style=kCompactionStyleLevel + min_write_buffer_number_to_merge=1 + memtable_factory=SkipListFactory + memtable_insert_with_hint_prefix_extractor=nullptr + force_consistency_checks=true + num_levels=7 + +[TableOptions/BlockBasedTable "default"] + num_file_reads_for_auto_readahead=2 + initial_auto_readahead_size=8192 + metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} + enable_index_compression=true + verify_compression=false + prepopulate_block_cache=kDisable + format_version=6 + use_delta_encoding=true + pin_top_level_index_and_filter=true + read_amp_bytes_per_bit=0 + decouple_partitioned_filters=false + partition_filters=false + metadata_block_size=4096 + max_auto_readahead_size=262144 + index_block_restart_interval=1 + block_size_deviation=10 + block_size=4096 + detect_filter_construct_corruption=false + no_block_cache=false + checksum=kXXH3 + filter_policy=nullptr + data_block_hash_table_util_ratio=0.750000 + block_restart_interval=16 + index_type=kBinarySearch + pin_l0_filter_and_index_blocks_in_cache=false + data_block_index_type=kDataBlockBinarySearch + cache_index_and_filter_blocks_with_high_priority=true + whole_key_filtering=true + index_shortening=kShortenSeparators + cache_index_and_filter_blocks=false + block_align=false + optimize_filters_for_memory=true + flush_block_policy_factory=FlushBlockBySizePolicyFactory + diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/payload_index/config.json b/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/payload_index/config.json new file mode 100644 index 0000000000000000000000000000000000000000..7d0db25a817fdb0c73414e2809921889f6ff065f --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/payload_index/config.json @@ -0,0 +1 @@ +{"indexed_fields":{},"skip_rocksdb":null} \ No newline at end of file diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/payload_storage/bitmask.dat b/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/payload_storage/bitmask.dat new file mode 100644 index 0000000000000000000000000000000000000000..21300480e0ef01a03fce15171943e674b838ecbf Binary files /dev/null and b/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/payload_storage/bitmask.dat differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/payload_storage/config.json b/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/payload_storage/config.json new file mode 100644 index 0000000000000000000000000000000000000000..9477c128b4ebf57927ba47096ca8af9166799c4f --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/payload_storage/config.json @@ -0,0 +1 @@ +{"page_size_bytes":33554432,"block_size_bytes":128,"region_size_blocks":8192,"compression":"LZ4"} \ No newline at end of file diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/payload_storage/gaps.dat b/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/payload_storage/gaps.dat new file mode 100644 index 0000000000000000000000000000000000000000..160a92047e6ff294cf6daf098b799a2828eb4c8d Binary files /dev/null and b/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/payload_storage/gaps.dat differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/payload_storage/page_0.dat b/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/payload_storage/page_0.dat new file mode 100644 index 0000000000000000000000000000000000000000..9f17c1b49c408afce5f3e242be373fdcb2eeec62 Binary files /dev/null and b/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/payload_storage/page_0.dat differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/payload_storage/tracker.dat b/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/payload_storage/tracker.dat new file mode 100644 index 0000000000000000000000000000000000000000..90d0f677c9f168dc0c49b0caaa2ccfaa70d89c25 Binary files /dev/null and b/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/payload_storage/tracker.dat differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/segment.json b/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/segment.json new file mode 100644 index 0000000000000000000000000000000000000000..00dbc0b169f31b62bb08c31a5ab28c5b70cfdfda --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/segment.json @@ -0,0 +1 @@ +{"version":15,"config":{"vector_data":{"":{"size":1536,"distance":"Cosine","storage_type":"InRamChunkedMmap","index":{"type":"plain","options":{}},"quantization_config":null}},"payload_storage_type":{"type":"mmap"}}} \ No newline at end of file diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/vector_storage/deleted/flags_a.dat b/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/vector_storage/deleted/flags_a.dat new file mode 100644 index 0000000000000000000000000000000000000000..9e0f96a2a253b173cb45b41868209a5d043e1437 Binary files /dev/null and b/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/vector_storage/deleted/flags_a.dat differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/vector_storage/deleted/status.dat b/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/vector_storage/deleted/status.dat new file mode 100644 index 0000000000000000000000000000000000000000..2ae625c2a69481b83a6bb2f17119e6a4bbed4638 Binary files /dev/null and b/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/vector_storage/deleted/status.dat differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/vector_storage/vectors/chunk_0.mmap b/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/vector_storage/vectors/chunk_0.mmap new file mode 100644 index 0000000000000000000000000000000000000000..f8cb7e54ba849cbd6f279f2a5aeaaee53441ee64 Binary files /dev/null and b/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/vector_storage/vectors/chunk_0.mmap differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/vector_storage/vectors/config.json b/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/vector_storage/vectors/config.json new file mode 100644 index 0000000000000000000000000000000000000000..ff57a41ff8c6af2be033c6652e21559c49b5a9fa --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/vector_storage/vectors/config.json @@ -0,0 +1 @@ +{"chunk_size_bytes":33552384,"chunk_size_vectors":5461,"dim":1536,"mlock":false,"populate":true} \ No newline at end of file diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/vector_storage/vectors/status.dat b/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/vector_storage/vectors/status.dat new file mode 100644 index 0000000000000000000000000000000000000000..71c2a58453e27ee89ad7d15b1a5f12433409fff4 Binary files /dev/null and b/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/vector_storage/vectors/status.dat differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/version.info b/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/version.info new file mode 100644 index 0000000000000000000000000000000000000000..09a3acfa138db01dc50a688796b2861638c369ec --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/66c5caa2-a500-444a-aba1-114a56d4c222/version.info @@ -0,0 +1 @@ +0.6.0 \ No newline at end of file diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/000009.sst b/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/000009.sst new file mode 100644 index 0000000000000000000000000000000000000000..8f70a30933b247acd2e3a20fde132d1bdb771793 Binary files /dev/null and b/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/000009.sst differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/000018.sst b/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/000018.sst new file mode 100644 index 0000000000000000000000000000000000000000..5881c6a5f32f0a48d7ddafd6375876774be8a3da Binary files /dev/null and b/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/000018.sst differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/000020.sst b/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/000020.sst new file mode 100644 index 0000000000000000000000000000000000000000..a4ba987b95bc08d38471e295b2a159c26032899f Binary files /dev/null and b/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/000020.sst differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/000022.sst b/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/000022.sst new file mode 100644 index 0000000000000000000000000000000000000000..90464d481fdfb1d346493f37885b68998335ac51 Binary files /dev/null and b/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/000022.sst differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/000029.log b/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/000029.log new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/CURRENT b/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/CURRENT new file mode 100644 index 0000000000000000000000000000000000000000..caa721af8539c91200b4080d85b372d3b85f1c88 --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/CURRENT @@ -0,0 +1 @@ +MANIFEST-000030 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/IDENTITY b/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/IDENTITY new file mode 100644 index 0000000000000000000000000000000000000000..e4e621703c0a9aed0dcf97204d9c7ee1f6fb1fd7 --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/IDENTITY @@ -0,0 +1 @@ +ab11c936-ffd8-4035-85d7-5b02bdd8f67b \ No newline at end of file diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/LOCK b/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/LOCK new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/LOG b/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/LOG new file mode 100644 index 0000000000000000000000000000000000000000..66b4a6a1e89e19b50cde6d41ae0420a6be96472a --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/LOG @@ -0,0 +1,787 @@ +2025/05/04-10:09:55.602313 41 RocksDB version: 9.9.3 +2025/05/04-10:09:55.603785 41 Compile date 2024-12-05 01:25:31 +2025/05/04-10:09:55.603787 41 DB SUMMARY +2025/05/04-10:09:55.603789 41 Host name (Env): c5f2a9d061bb +2025/05/04-10:09:55.603790 41 DB Session ID: CD0SHR3DDC5AMRBDXMDM +2025/05/04-10:09:55.605655 41 CURRENT file: CURRENT +2025/05/04-10:09:55.605662 41 IDENTITY file: IDENTITY +2025/05/04-10:09:55.606178 41 MANIFEST file: MANIFEST-000026 size: 1031 Bytes +2025/05/04-10:09:55.606183 41 SST files in ./storage/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557 dir, Total Num: 4, files: 000009.sst 000018.sst 000020.sst 000022.sst +2025/05/04-10:09:55.606186 41 Write Ahead Log file in ./storage/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557: 000025.log size: 0 ; +2025/05/04-10:09:55.606188 41 Options.error_if_exists: 0 +2025/05/04-10:09:55.606190 41 Options.create_if_missing: 1 +2025/05/04-10:09:55.606191 41 Options.paranoid_checks: 1 +2025/05/04-10:09:55.606192 41 Options.flush_verify_memtable_count: 1 +2025/05/04-10:09:55.606193 41 Options.compaction_verify_record_count: 1 +2025/05/04-10:09:55.606195 41 Options.track_and_verify_wals_in_manifest: 0 +2025/05/04-10:09:55.606196 41 Options.verify_sst_unique_id_in_manifest: 1 +2025/05/04-10:09:55.606197 41 Options.env: 0xffff86034000 +2025/05/04-10:09:55.606199 41 Options.fs: PosixFileSystem +2025/05/04-10:09:55.606200 41 Options.info_log: 0xffff83ca1000 +2025/05/04-10:09:55.606201 41 Options.max_file_opening_threads: 16 +2025/05/04-10:09:55.606202 41 Options.statistics: (nil) +2025/05/04-10:09:55.606203 41 Options.use_fsync: 0 +2025/05/04-10:09:55.606204 41 Options.max_log_file_size: 1048576 +2025/05/04-10:09:55.606205 41 Options.max_manifest_file_size: 1073741824 +2025/05/04-10:09:55.606206 41 Options.log_file_time_to_roll: 0 +2025/05/04-10:09:55.606207 41 Options.keep_log_file_num: 1 +2025/05/04-10:09:55.606208 41 Options.recycle_log_file_num: 0 +2025/05/04-10:09:55.606209 41 Options.allow_fallocate: 1 +2025/05/04-10:09:55.606210 41 Options.allow_mmap_reads: 0 +2025/05/04-10:09:55.606212 41 Options.allow_mmap_writes: 0 +2025/05/04-10:09:55.606214 41 Options.use_direct_reads: 0 +2025/05/04-10:09:55.606215 41 Options.use_direct_io_for_flush_and_compaction: 0 +2025/05/04-10:09:55.606216 41 Options.create_missing_column_families: 1 +2025/05/04-10:09:55.606218 41 Options.db_log_dir: +2025/05/04-10:09:55.606219 41 Options.wal_dir: +2025/05/04-10:09:55.606220 41 Options.table_cache_numshardbits: 6 +2025/05/04-10:09:55.606221 41 Options.WAL_ttl_seconds: 0 +2025/05/04-10:09:55.606222 41 Options.WAL_size_limit_MB: 0 +2025/05/04-10:09:55.606223 41 Options.max_write_batch_group_size_bytes: 1048576 +2025/05/04-10:09:55.606224 41 Options.manifest_preallocation_size: 4194304 +2025/05/04-10:09:55.606225 41 Options.is_fd_close_on_exec: 1 +2025/05/04-10:09:55.606226 41 Options.advise_random_on_open: 1 +2025/05/04-10:09:55.606227 41 Options.db_write_buffer_size: 0 +2025/05/04-10:09:55.606228 41 Options.write_buffer_manager: 0xffff83c090c0 +2025/05/04-10:09:55.606229 41 Options.random_access_max_buffer_size: 1048576 +2025/05/04-10:09:55.606230 41 Options.use_adaptive_mutex: 0 +2025/05/04-10:09:55.606231 41 Options.rate_limiter: (nil) +2025/05/04-10:09:55.606245 41 Options.sst_file_manager.rate_bytes_per_sec: 0 +2025/05/04-10:09:55.606247 41 Options.wal_recovery_mode: 0 +2025/05/04-10:09:55.606247 41 Options.enable_thread_tracking: 0 +2025/05/04-10:09:55.606248 41 Options.enable_pipelined_write: 0 +2025/05/04-10:09:55.606249 41 Options.unordered_write: 0 +2025/05/04-10:09:55.606250 41 Options.allow_concurrent_memtable_write: 1 +2025/05/04-10:09:55.606250 41 Options.enable_write_thread_adaptive_yield: 1 +2025/05/04-10:09:55.606251 41 Options.write_thread_max_yield_usec: 100 +2025/05/04-10:09:55.606252 41 Options.write_thread_slow_yield_usec: 3 +2025/05/04-10:09:55.606252 41 Options.row_cache: None +2025/05/04-10:09:55.606253 41 Options.wal_filter: None +2025/05/04-10:09:55.606254 41 Options.avoid_flush_during_recovery: 0 +2025/05/04-10:09:55.606255 41 Options.allow_ingest_behind: 0 +2025/05/04-10:09:55.606255 41 Options.two_write_queues: 0 +2025/05/04-10:09:55.606257 41 Options.manual_wal_flush: 0 +2025/05/04-10:09:55.606258 41 Options.wal_compression: 0 +2025/05/04-10:09:55.606259 41 Options.background_close_inactive_wals: 0 +2025/05/04-10:09:55.606259 41 Options.atomic_flush: 0 +2025/05/04-10:09:55.606260 41 Options.avoid_unnecessary_blocking_io: 0 +2025/05/04-10:09:55.606260 41 Options.prefix_seek_opt_in_only: 0 +2025/05/04-10:09:55.606261 41 Options.persist_stats_to_disk: 0 +2025/05/04-10:09:55.606262 41 Options.write_dbid_to_manifest: 1 +2025/05/04-10:09:55.606263 41 Options.write_identity_file: 1 +2025/05/04-10:09:55.606263 41 Options.log_readahead_size: 0 +2025/05/04-10:09:55.606264 41 Options.file_checksum_gen_factory: Unknown +2025/05/04-10:09:55.606265 41 Options.best_efforts_recovery: 0 +2025/05/04-10:09:55.606266 41 Options.max_bgerror_resume_count: 2147483647 +2025/05/04-10:09:55.606267 41 Options.bgerror_resume_retry_interval: 1000000 +2025/05/04-10:09:55.606268 41 Options.allow_data_in_errors: 0 +2025/05/04-10:09:55.606269 41 Options.db_host_id: __hostname__ +2025/05/04-10:09:55.606270 41 Options.enforce_single_del_contracts: true +2025/05/04-10:09:55.606271 41 Options.metadata_write_temperature: kUnknown +2025/05/04-10:09:55.606272 41 Options.wal_write_temperature: kUnknown +2025/05/04-10:09:55.606272 41 Options.max_background_jobs: 2 +2025/05/04-10:09:55.606273 41 Options.max_background_compactions: -1 +2025/05/04-10:09:55.606273 41 Options.max_subcompactions: 1 +2025/05/04-10:09:55.606274 41 Options.avoid_flush_during_shutdown: 0 +2025/05/04-10:09:55.606274 41 Options.writable_file_max_buffer_size: 1048576 +2025/05/04-10:09:55.606275 41 Options.delayed_write_rate : 16777216 +2025/05/04-10:09:55.606276 41 Options.max_total_wal_size: 0 +2025/05/04-10:09:55.606276 41 Options.delete_obsolete_files_period_micros: 180000000 +2025/05/04-10:09:55.606278 41 Options.stats_dump_period_sec: 600 +2025/05/04-10:09:55.606279 41 Options.stats_persist_period_sec: 600 +2025/05/04-10:09:55.606279 41 Options.stats_history_buffer_size: 1048576 +2025/05/04-10:09:55.606280 41 Options.max_open_files: 256 +2025/05/04-10:09:55.606281 41 Options.bytes_per_sync: 0 +2025/05/04-10:09:55.606281 41 Options.wal_bytes_per_sync: 0 +2025/05/04-10:09:55.606282 41 Options.strict_bytes_per_sync: 0 +2025/05/04-10:09:55.606282 41 Options.compaction_readahead_size: 2097152 +2025/05/04-10:09:55.606283 41 Options.max_background_flushes: -1 +2025/05/04-10:09:55.606283 41 Options.daily_offpeak_time_utc: +2025/05/04-10:09:55.606284 41 Compression algorithms supported: +2025/05/04-10:09:55.606285 41 kZSTD supported: 0 +2025/05/04-10:09:55.606286 41 kXpressCompression supported: 0 +2025/05/04-10:09:55.606286 41 kBZip2Compression supported: 0 +2025/05/04-10:09:55.606287 41 kZSTDNotFinalCompression supported: 0 +2025/05/04-10:09:55.606287 41 kLZ4Compression supported: 1 +2025/05/04-10:09:55.606288 41 kZlibCompression supported: 0 +2025/05/04-10:09:55.606288 41 kLZ4HCCompression supported: 1 +2025/05/04-10:09:55.606289 41 kSnappyCompression supported: 1 +2025/05/04-10:09:55.606290 41 Fast CRC32 supported: Not supported on x86 +2025/05/04-10:09:55.606290 41 DMutex implementation: pthread_mutex_t +2025/05/04-10:09:55.606291 41 Jemalloc supported: 0 +2025/05/04-10:09:55.611742 41 Options.comparator: leveldb.BytewiseComparator +2025/05/04-10:09:55.611750 41 Options.merge_operator: None +2025/05/04-10:09:55.611751 41 Options.compaction_filter: None +2025/05/04-10:09:55.611752 41 Options.compaction_filter_factory: None +2025/05/04-10:09:55.611754 41 Options.sst_partitioner_factory: None +2025/05/04-10:09:55.611756 41 Options.memtable_factory: SkipListFactory +2025/05/04-10:09:55.611758 41 Options.table_factory: BlockBasedTable +2025/05/04-10:09:55.611779 41 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff83c00060) + cache_index_and_filter_blocks: 0 + cache_index_and_filter_blocks_with_high_priority: 1 + pin_l0_filter_and_index_blocks_in_cache: 0 + pin_top_level_index_and_filter: 1 + index_type: 0 + data_block_index_type: 0 + index_shortening: 1 + data_block_hash_table_util_ratio: 0.750000 + checksum: 4 + no_block_cache: 0 + block_cache: 0xffff83c09010 + block_cache_name: LRUCache + block_cache_options: + capacity : 33554432 + num_shard_bits : 6 + strict_capacity_limit : 0 + memory_allocator : None + high_pri_pool_ratio: 0.500 + low_pri_pool_ratio: 0.000 + persistent_cache: (nil) + block_size: 4096 + block_size_deviation: 10 + block_restart_interval: 16 + index_block_restart_interval: 1 + metadata_block_size: 4096 + partition_filters: 0 + use_delta_encoding: 1 + filter_policy: nullptr + whole_key_filtering: 1 + verify_compression: 0 + read_amp_bytes_per_bit: 0 + format_version: 6 + enable_index_compression: 1 + block_align: 0 + max_auto_readahead_size: 262144 + prepopulate_block_cache: 0 + initial_auto_readahead_size: 8192 + num_file_reads_for_auto_readahead: 2 +2025/05/04-10:09:55.611784 41 Options.write_buffer_size: 10485760 +2025/05/04-10:09:55.611787 41 Options.max_write_buffer_number: 2 +2025/05/04-10:09:55.611788 41 Options.compression: LZ4 +2025/05/04-10:09:55.611792 41 Options.bottommost_compression: Disabled +2025/05/04-10:09:55.611793 41 Options.prefix_extractor: nullptr +2025/05/04-10:09:55.611794 41 Options.memtable_insert_with_hint_prefix_extractor: nullptr +2025/05/04-10:09:55.611795 41 Options.num_levels: 7 +2025/05/04-10:09:55.611796 41 Options.min_write_buffer_number_to_merge: 1 +2025/05/04-10:09:55.611797 41 Options.max_write_buffer_number_to_maintain: 0 +2025/05/04-10:09:55.611798 41 Options.max_write_buffer_size_to_maintain: 0 +2025/05/04-10:09:55.611799 41 Options.bottommost_compression_opts.window_bits: -14 +2025/05/04-10:09:55.611801 41 Options.bottommost_compression_opts.level: 32767 +2025/05/04-10:09:55.611802 41 Options.bottommost_compression_opts.strategy: 0 +2025/05/04-10:09:55.611803 41 Options.bottommost_compression_opts.max_dict_bytes: 0 +2025/05/04-10:09:55.611804 41 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 +2025/05/04-10:09:55.611805 41 Options.bottommost_compression_opts.parallel_threads: 1 +2025/05/04-10:09:55.611806 41 Options.bottommost_compression_opts.enabled: false +2025/05/04-10:09:55.611807 41 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 +2025/05/04-10:09:55.611810 41 Options.bottommost_compression_opts.use_zstd_dict_trainer: true +2025/05/04-10:09:55.611811 41 Options.compression_opts.window_bits: -14 +2025/05/04-10:09:55.611812 41 Options.compression_opts.level: 32767 +2025/05/04-10:09:55.611813 41 Options.compression_opts.strategy: 0 +2025/05/04-10:09:55.611815 41 Options.compression_opts.max_dict_bytes: 0 +2025/05/04-10:09:55.611816 41 Options.compression_opts.zstd_max_train_bytes: 0 +2025/05/04-10:09:55.611817 41 Options.compression_opts.use_zstd_dict_trainer: true +2025/05/04-10:09:55.611818 41 Options.compression_opts.parallel_threads: 1 +2025/05/04-10:09:55.611819 41 Options.compression_opts.enabled: false +2025/05/04-10:09:55.611820 41 Options.compression_opts.max_dict_buffer_bytes: 0 +2025/05/04-10:09:55.611822 41 Options.level0_file_num_compaction_trigger: 4 +2025/05/04-10:09:55.611823 41 Options.level0_slowdown_writes_trigger: 20 +2025/05/04-10:09:55.611824 41 Options.level0_stop_writes_trigger: 36 +2025/05/04-10:09:55.611825 41 Options.target_file_size_base: 67108864 +2025/05/04-10:09:55.611827 41 Options.target_file_size_multiplier: 1 +2025/05/04-10:09:55.611838 41 Options.max_bytes_for_level_base: 268435456 +2025/05/04-10:09:55.611840 41 Options.level_compaction_dynamic_level_bytes: 1 +2025/05/04-10:09:55.611841 41 Options.max_bytes_for_level_multiplier: 10.000000 +2025/05/04-10:09:55.611842 41 Options.max_bytes_for_level_multiplier_addtl[0]: 1 +2025/05/04-10:09:55.611843 41 Options.max_bytes_for_level_multiplier_addtl[1]: 1 +2025/05/04-10:09:55.611845 41 Options.max_bytes_for_level_multiplier_addtl[2]: 1 +2025/05/04-10:09:55.611845 41 Options.max_bytes_for_level_multiplier_addtl[3]: 1 +2025/05/04-10:09:55.611846 41 Options.max_bytes_for_level_multiplier_addtl[4]: 1 +2025/05/04-10:09:55.611846 41 Options.max_bytes_for_level_multiplier_addtl[5]: 1 +2025/05/04-10:09:55.611849 41 Options.max_bytes_for_level_multiplier_addtl[6]: 1 +2025/05/04-10:09:55.611849 41 Options.max_sequential_skip_in_iterations: 8 +2025/05/04-10:09:55.611850 41 Options.max_compaction_bytes: 1677721600 +2025/05/04-10:09:55.611850 41 Options.arena_block_size: 1048576 +2025/05/04-10:09:55.611851 41 Options.soft_pending_compaction_bytes_limit: 68719476736 +2025/05/04-10:09:55.611851 41 Options.hard_pending_compaction_bytes_limit: 274877906944 +2025/05/04-10:09:55.611852 41 Options.disable_auto_compactions: 0 +2025/05/04-10:09:55.611853 41 Options.compaction_style: kCompactionStyleLevel +2025/05/04-10:09:55.611854 41 Options.compaction_pri: kMinOverlappingRatio +2025/05/04-10:09:55.611854 41 Options.compaction_options_universal.size_ratio: 1 +2025/05/04-10:09:55.611855 41 Options.compaction_options_universal.min_merge_width: 2 +2025/05/04-10:09:55.611855 41 Options.compaction_options_universal.max_merge_width: 4294967295 +2025/05/04-10:09:55.611856 41 Options.compaction_options_universal.max_size_amplification_percent: 200 +2025/05/04-10:09:55.611857 41 Options.compaction_options_universal.compression_size_percent: -1 +2025/05/04-10:09:55.611857 41 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize +2025/05/04-10:09:55.611858 41 Options.compaction_options_universal.max_read_amp: -1 +2025/05/04-10:09:55.611859 41 Options.compaction_options_fifo.max_table_files_size: 1073741824 +2025/05/04-10:09:55.611859 41 Options.compaction_options_fifo.allow_compaction: 0 +2025/05/04-10:09:55.611873 41 Options.table_properties_collectors: +2025/05/04-10:09:55.611874 41 Options.inplace_update_support: 0 +2025/05/04-10:09:55.611874 41 Options.inplace_update_num_locks: 10000 +2025/05/04-10:09:55.611875 41 Options.memtable_prefix_bloom_size_ratio: 0.000000 +2025/05/04-10:09:55.611876 41 Options.memtable_whole_key_filtering: 0 +2025/05/04-10:09:55.611877 41 Options.memtable_huge_page_size: 0 +2025/05/04-10:09:55.611877 41 Options.bloom_locality: 0 +2025/05/04-10:09:55.611878 41 Options.max_successive_merges: 0 +2025/05/04-10:09:55.611880 41 Options.strict_max_successive_merges: 0 +2025/05/04-10:09:55.611880 41 Options.optimize_filters_for_hits: 0 +2025/05/04-10:09:55.611881 41 Options.paranoid_file_checks: 0 +2025/05/04-10:09:55.611881 41 Options.force_consistency_checks: 1 +2025/05/04-10:09:55.611882 41 Options.report_bg_io_stats: 0 +2025/05/04-10:09:55.611882 41 Options.ttl: 2592000 +2025/05/04-10:09:55.611885 41 Options.periodic_compaction_seconds: 0 +2025/05/04-10:09:55.611886 41 Options.default_temperature: kUnknown +2025/05/04-10:09:55.611887 41 Options.preclude_last_level_data_seconds: 0 +2025/05/04-10:09:55.611887 41 Options.preserve_internal_time_seconds: 0 +2025/05/04-10:09:55.611888 41 Options.enable_blob_files: false +2025/05/04-10:09:55.611889 41 Options.min_blob_size: 0 +2025/05/04-10:09:55.611889 41 Options.blob_file_size: 268435456 +2025/05/04-10:09:55.611892 41 Options.blob_compression_type: NoCompression +2025/05/04-10:09:55.611893 41 Options.enable_blob_garbage_collection: false +2025/05/04-10:09:55.611893 41 Options.blob_garbage_collection_age_cutoff: 0.250000 +2025/05/04-10:09:55.611894 41 Options.blob_garbage_collection_force_threshold: 1.000000 +2025/05/04-10:09:55.611895 41 Options.blob_compaction_readahead_size: 0 +2025/05/04-10:09:55.611895 41 Options.blob_file_starting_level: 0 +2025/05/04-10:09:55.611896 41 Options.experimental_mempurge_threshold: 0.000000 +2025/05/04-10:09:55.611896 41 Options.memtable_max_range_deletions: 0 +2025/05/04-10:09:55.612124 41 Options.comparator: leveldb.BytewiseComparator +2025/05/04-10:09:55.612125 41 Options.merge_operator: None +2025/05/04-10:09:55.612126 41 Options.compaction_filter: None +2025/05/04-10:09:55.612127 41 Options.compaction_filter_factory: None +2025/05/04-10:09:55.612127 41 Options.sst_partitioner_factory: None +2025/05/04-10:09:55.612128 41 Options.memtable_factory: SkipListFactory +2025/05/04-10:09:55.612128 41 Options.table_factory: BlockBasedTable +2025/05/04-10:09:55.612137 41 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff83c00060) + cache_index_and_filter_blocks: 0 + cache_index_and_filter_blocks_with_high_priority: 1 + pin_l0_filter_and_index_blocks_in_cache: 0 + pin_top_level_index_and_filter: 1 + index_type: 0 + data_block_index_type: 0 + index_shortening: 1 + data_block_hash_table_util_ratio: 0.750000 + checksum: 4 + no_block_cache: 0 + block_cache: 0xffff83c09010 + block_cache_name: LRUCache + block_cache_options: + capacity : 33554432 + num_shard_bits : 6 + strict_capacity_limit : 0 + memory_allocator : None + high_pri_pool_ratio: 0.500 + low_pri_pool_ratio: 0.000 + persistent_cache: (nil) + block_size: 4096 + block_size_deviation: 10 + block_restart_interval: 16 + index_block_restart_interval: 1 + metadata_block_size: 4096 + partition_filters: 0 + use_delta_encoding: 1 + filter_policy: nullptr + whole_key_filtering: 1 + verify_compression: 0 + read_amp_bytes_per_bit: 0 + format_version: 6 + enable_index_compression: 1 + block_align: 0 + max_auto_readahead_size: 262144 + prepopulate_block_cache: 0 + initial_auto_readahead_size: 8192 + num_file_reads_for_auto_readahead: 2 +2025/05/04-10:09:55.612139 41 Options.write_buffer_size: 10485760 +2025/05/04-10:09:55.612139 41 Options.max_write_buffer_number: 2 +2025/05/04-10:09:55.612140 41 Options.compression: LZ4 +2025/05/04-10:09:55.612141 41 Options.bottommost_compression: Disabled +2025/05/04-10:09:55.612141 41 Options.prefix_extractor: nullptr +2025/05/04-10:09:55.612142 41 Options.memtable_insert_with_hint_prefix_extractor: nullptr +2025/05/04-10:09:55.612142 41 Options.num_levels: 7 +2025/05/04-10:09:55.612143 41 Options.min_write_buffer_number_to_merge: 1 +2025/05/04-10:09:55.612143 41 Options.max_write_buffer_number_to_maintain: 0 +2025/05/04-10:09:55.612144 41 Options.max_write_buffer_size_to_maintain: 0 +2025/05/04-10:09:55.612144 41 Options.bottommost_compression_opts.window_bits: -14 +2025/05/04-10:09:55.612145 41 Options.bottommost_compression_opts.level: 32767 +2025/05/04-10:09:55.612145 41 Options.bottommost_compression_opts.strategy: 0 +2025/05/04-10:09:55.612146 41 Options.bottommost_compression_opts.max_dict_bytes: 0 +2025/05/04-10:09:55.612146 41 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 +2025/05/04-10:09:55.612147 41 Options.bottommost_compression_opts.parallel_threads: 1 +2025/05/04-10:09:55.612148 41 Options.bottommost_compression_opts.enabled: false +2025/05/04-10:09:55.612148 41 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 +2025/05/04-10:09:55.612149 41 Options.bottommost_compression_opts.use_zstd_dict_trainer: true +2025/05/04-10:09:55.612149 41 Options.compression_opts.window_bits: -14 +2025/05/04-10:09:55.612150 41 Options.compression_opts.level: 32767 +2025/05/04-10:09:55.612151 41 Options.compression_opts.strategy: 0 +2025/05/04-10:09:55.612152 41 Options.compression_opts.max_dict_bytes: 0 +2025/05/04-10:09:55.612152 41 Options.compression_opts.zstd_max_train_bytes: 0 +2025/05/04-10:09:55.612153 41 Options.compression_opts.use_zstd_dict_trainer: true +2025/05/04-10:09:55.612153 41 Options.compression_opts.parallel_threads: 1 +2025/05/04-10:09:55.612154 41 Options.compression_opts.enabled: false +2025/05/04-10:09:55.612155 41 Options.compression_opts.max_dict_buffer_bytes: 0 +2025/05/04-10:09:55.612156 41 Options.level0_file_num_compaction_trigger: 4 +2025/05/04-10:09:55.612156 41 Options.level0_slowdown_writes_trigger: 20 +2025/05/04-10:09:55.612157 41 Options.level0_stop_writes_trigger: 36 +2025/05/04-10:09:55.612157 41 Options.target_file_size_base: 67108864 +2025/05/04-10:09:55.612158 41 Options.target_file_size_multiplier: 1 +2025/05/04-10:09:55.612158 41 Options.max_bytes_for_level_base: 268435456 +2025/05/04-10:09:55.612159 41 Options.level_compaction_dynamic_level_bytes: 1 +2025/05/04-10:09:55.612159 41 Options.max_bytes_for_level_multiplier: 10.000000 +2025/05/04-10:09:55.612160 41 Options.max_bytes_for_level_multiplier_addtl[0]: 1 +2025/05/04-10:09:55.612161 41 Options.max_bytes_for_level_multiplier_addtl[1]: 1 +2025/05/04-10:09:55.612161 41 Options.max_bytes_for_level_multiplier_addtl[2]: 1 +2025/05/04-10:09:55.612162 41 Options.max_bytes_for_level_multiplier_addtl[3]: 1 +2025/05/04-10:09:55.612162 41 Options.max_bytes_for_level_multiplier_addtl[4]: 1 +2025/05/04-10:09:55.612163 41 Options.max_bytes_for_level_multiplier_addtl[5]: 1 +2025/05/04-10:09:55.612163 41 Options.max_bytes_for_level_multiplier_addtl[6]: 1 +2025/05/04-10:09:55.612164 41 Options.max_sequential_skip_in_iterations: 8 +2025/05/04-10:09:55.612164 41 Options.max_compaction_bytes: 1677721600 +2025/05/04-10:09:55.612165 41 Options.arena_block_size: 1048576 +2025/05/04-10:09:55.612165 41 Options.soft_pending_compaction_bytes_limit: 68719476736 +2025/05/04-10:09:55.612166 41 Options.hard_pending_compaction_bytes_limit: 274877906944 +2025/05/04-10:09:55.612166 41 Options.disable_auto_compactions: 0 +2025/05/04-10:09:55.612167 41 Options.compaction_style: kCompactionStyleLevel +2025/05/04-10:09:55.612168 41 Options.compaction_pri: kMinOverlappingRatio +2025/05/04-10:09:55.612168 41 Options.compaction_options_universal.size_ratio: 1 +2025/05/04-10:09:55.612169 41 Options.compaction_options_universal.min_merge_width: 2 +2025/05/04-10:09:55.612170 41 Options.compaction_options_universal.max_merge_width: 4294967295 +2025/05/04-10:09:55.612170 41 Options.compaction_options_universal.max_size_amplification_percent: 200 +2025/05/04-10:09:55.612171 41 Options.compaction_options_universal.compression_size_percent: -1 +2025/05/04-10:09:55.612171 41 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize +2025/05/04-10:09:55.612172 41 Options.compaction_options_universal.max_read_amp: -1 +2025/05/04-10:09:55.612172 41 Options.compaction_options_fifo.max_table_files_size: 1073741824 +2025/05/04-10:09:55.612173 41 Options.compaction_options_fifo.allow_compaction: 0 +2025/05/04-10:09:55.612174 41 Options.table_properties_collectors: +2025/05/04-10:09:55.612174 41 Options.inplace_update_support: 0 +2025/05/04-10:09:55.612175 41 Options.inplace_update_num_locks: 10000 +2025/05/04-10:09:55.612176 41 Options.memtable_prefix_bloom_size_ratio: 0.000000 +2025/05/04-10:09:55.612176 41 Options.memtable_whole_key_filtering: 0 +2025/05/04-10:09:55.612177 41 Options.memtable_huge_page_size: 0 +2025/05/04-10:09:55.612177 41 Options.bloom_locality: 0 +2025/05/04-10:09:55.612178 41 Options.max_successive_merges: 0 +2025/05/04-10:09:55.612178 41 Options.strict_max_successive_merges: 0 +2025/05/04-10:09:55.612179 41 Options.optimize_filters_for_hits: 0 +2025/05/04-10:09:55.612179 41 Options.paranoid_file_checks: 0 +2025/05/04-10:09:55.612180 41 Options.force_consistency_checks: 1 +2025/05/04-10:09:55.612180 41 Options.report_bg_io_stats: 0 +2025/05/04-10:09:55.612181 41 Options.ttl: 2592000 +2025/05/04-10:09:55.612182 41 Options.periodic_compaction_seconds: 0 +2025/05/04-10:09:55.612182 41 Options.default_temperature: kUnknown +2025/05/04-10:09:55.612183 41 Options.preclude_last_level_data_seconds: 0 +2025/05/04-10:09:55.612183 41 Options.preserve_internal_time_seconds: 0 +2025/05/04-10:09:55.612184 41 Options.enable_blob_files: false +2025/05/04-10:09:55.612184 41 Options.min_blob_size: 0 +2025/05/04-10:09:55.612185 41 Options.blob_file_size: 268435456 +2025/05/04-10:09:55.612187 41 Options.blob_compression_type: NoCompression +2025/05/04-10:09:55.612187 41 Options.enable_blob_garbage_collection: false +2025/05/04-10:09:55.612188 41 Options.blob_garbage_collection_age_cutoff: 0.250000 +2025/05/04-10:09:55.612189 41 Options.blob_garbage_collection_force_threshold: 1.000000 +2025/05/04-10:09:55.612189 41 Options.blob_compaction_readahead_size: 0 +2025/05/04-10:09:55.612190 41 Options.blob_file_starting_level: 0 +2025/05/04-10:09:55.612190 41 Options.experimental_mempurge_threshold: 0.000000 +2025/05/04-10:09:55.612191 41 Options.memtable_max_range_deletions: 0 +2025/05/04-10:09:55.612212 41 Options.comparator: leveldb.BytewiseComparator +2025/05/04-10:09:55.612212 41 Options.merge_operator: None +2025/05/04-10:09:55.612213 41 Options.compaction_filter: None +2025/05/04-10:09:55.612214 41 Options.compaction_filter_factory: None +2025/05/04-10:09:55.612214 41 Options.sst_partitioner_factory: None +2025/05/04-10:09:55.612215 41 Options.memtable_factory: SkipListFactory +2025/05/04-10:09:55.612215 41 Options.table_factory: BlockBasedTable +2025/05/04-10:09:55.612221 41 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff83c00060) + cache_index_and_filter_blocks: 0 + cache_index_and_filter_blocks_with_high_priority: 1 + pin_l0_filter_and_index_blocks_in_cache: 0 + pin_top_level_index_and_filter: 1 + index_type: 0 + data_block_index_type: 0 + index_shortening: 1 + data_block_hash_table_util_ratio: 0.750000 + checksum: 4 + no_block_cache: 0 + block_cache: 0xffff83c09010 + block_cache_name: LRUCache + block_cache_options: + capacity : 33554432 + num_shard_bits : 6 + strict_capacity_limit : 0 + memory_allocator : None + high_pri_pool_ratio: 0.500 + low_pri_pool_ratio: 0.000 + persistent_cache: (nil) + block_size: 4096 + block_size_deviation: 10 + block_restart_interval: 16 + index_block_restart_interval: 1 + metadata_block_size: 4096 + partition_filters: 0 + use_delta_encoding: 1 + filter_policy: nullptr + whole_key_filtering: 1 + verify_compression: 0 + read_amp_bytes_per_bit: 0 + format_version: 6 + enable_index_compression: 1 + block_align: 0 + max_auto_readahead_size: 262144 + prepopulate_block_cache: 0 + initial_auto_readahead_size: 8192 + num_file_reads_for_auto_readahead: 2 +2025/05/04-10:09:55.612224 41 Options.write_buffer_size: 10485760 +2025/05/04-10:09:55.612224 41 Options.max_write_buffer_number: 2 +2025/05/04-10:09:55.612225 41 Options.compression: LZ4 +2025/05/04-10:09:55.612227 41 Options.bottommost_compression: Disabled +2025/05/04-10:09:55.612227 41 Options.prefix_extractor: nullptr +2025/05/04-10:09:55.612228 41 Options.memtable_insert_with_hint_prefix_extractor: nullptr +2025/05/04-10:09:55.612229 41 Options.num_levels: 7 +2025/05/04-10:09:55.612229 41 Options.min_write_buffer_number_to_merge: 1 +2025/05/04-10:09:55.612230 41 Options.max_write_buffer_number_to_maintain: 0 +2025/05/04-10:09:55.612231 41 Options.max_write_buffer_size_to_maintain: 0 +2025/05/04-10:09:55.612231 41 Options.bottommost_compression_opts.window_bits: -14 +2025/05/04-10:09:55.612232 41 Options.bottommost_compression_opts.level: 32767 +2025/05/04-10:09:55.612232 41 Options.bottommost_compression_opts.strategy: 0 +2025/05/04-10:09:55.612233 41 Options.bottommost_compression_opts.max_dict_bytes: 0 +2025/05/04-10:09:55.612233 41 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 +2025/05/04-10:09:55.612234 41 Options.bottommost_compression_opts.parallel_threads: 1 +2025/05/04-10:09:55.612234 41 Options.bottommost_compression_opts.enabled: false +2025/05/04-10:09:55.612235 41 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 +2025/05/04-10:09:55.612235 41 Options.bottommost_compression_opts.use_zstd_dict_trainer: true +2025/05/04-10:09:55.612236 41 Options.compression_opts.window_bits: -14 +2025/05/04-10:09:55.612236 41 Options.compression_opts.level: 32767 +2025/05/04-10:09:55.612237 41 Options.compression_opts.strategy: 0 +2025/05/04-10:09:55.612237 41 Options.compression_opts.max_dict_bytes: 0 +2025/05/04-10:09:55.612239 41 Options.compression_opts.zstd_max_train_bytes: 0 +2025/05/04-10:09:55.612240 41 Options.compression_opts.use_zstd_dict_trainer: true +2025/05/04-10:09:55.612240 41 Options.compression_opts.parallel_threads: 1 +2025/05/04-10:09:55.612241 41 Options.compression_opts.enabled: false +2025/05/04-10:09:55.612242 41 Options.compression_opts.max_dict_buffer_bytes: 0 +2025/05/04-10:09:55.612242 41 Options.level0_file_num_compaction_trigger: 4 +2025/05/04-10:09:55.612243 41 Options.level0_slowdown_writes_trigger: 20 +2025/05/04-10:09:55.612243 41 Options.level0_stop_writes_trigger: 36 +2025/05/04-10:09:55.612244 41 Options.target_file_size_base: 67108864 +2025/05/04-10:09:55.612244 41 Options.target_file_size_multiplier: 1 +2025/05/04-10:09:55.612245 41 Options.max_bytes_for_level_base: 268435456 +2025/05/04-10:09:55.612245 41 Options.level_compaction_dynamic_level_bytes: 1 +2025/05/04-10:09:55.612246 41 Options.max_bytes_for_level_multiplier: 10.000000 +2025/05/04-10:09:55.612247 41 Options.max_bytes_for_level_multiplier_addtl[0]: 1 +2025/05/04-10:09:55.612247 41 Options.max_bytes_for_level_multiplier_addtl[1]: 1 +2025/05/04-10:09:55.612249 41 Options.max_bytes_for_level_multiplier_addtl[2]: 1 +2025/05/04-10:09:55.612250 41 Options.max_bytes_for_level_multiplier_addtl[3]: 1 +2025/05/04-10:09:55.612250 41 Options.max_bytes_for_level_multiplier_addtl[4]: 1 +2025/05/04-10:09:55.612251 41 Options.max_bytes_for_level_multiplier_addtl[5]: 1 +2025/05/04-10:09:55.612251 41 Options.max_bytes_for_level_multiplier_addtl[6]: 1 +2025/05/04-10:09:55.612253 41 Options.max_sequential_skip_in_iterations: 8 +2025/05/04-10:09:55.612254 41 Options.max_compaction_bytes: 1677721600 +2025/05/04-10:09:55.612255 41 Options.arena_block_size: 1048576 +2025/05/04-10:09:55.612255 41 Options.soft_pending_compaction_bytes_limit: 68719476736 +2025/05/04-10:09:55.612256 41 Options.hard_pending_compaction_bytes_limit: 274877906944 +2025/05/04-10:09:55.612256 41 Options.disable_auto_compactions: 0 +2025/05/04-10:09:55.612257 41 Options.compaction_style: kCompactionStyleLevel +2025/05/04-10:09:55.612258 41 Options.compaction_pri: kMinOverlappingRatio +2025/05/04-10:09:55.612258 41 Options.compaction_options_universal.size_ratio: 1 +2025/05/04-10:09:55.612259 41 Options.compaction_options_universal.min_merge_width: 2 +2025/05/04-10:09:55.612259 41 Options.compaction_options_universal.max_merge_width: 4294967295 +2025/05/04-10:09:55.612260 41 Options.compaction_options_universal.max_size_amplification_percent: 200 +2025/05/04-10:09:55.612260 41 Options.compaction_options_universal.compression_size_percent: -1 +2025/05/04-10:09:55.612261 41 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize +2025/05/04-10:09:55.612261 41 Options.compaction_options_universal.max_read_amp: -1 +2025/05/04-10:09:55.612262 41 Options.compaction_options_fifo.max_table_files_size: 1073741824 +2025/05/04-10:09:55.612263 41 Options.compaction_options_fifo.allow_compaction: 0 +2025/05/04-10:09:55.612265 41 Options.table_properties_collectors: +2025/05/04-10:09:55.612266 41 Options.inplace_update_support: 0 +2025/05/04-10:09:55.612267 41 Options.inplace_update_num_locks: 10000 +2025/05/04-10:09:55.612268 41 Options.memtable_prefix_bloom_size_ratio: 0.000000 +2025/05/04-10:09:55.612269 41 Options.memtable_whole_key_filtering: 0 +2025/05/04-10:09:55.612269 41 Options.memtable_huge_page_size: 0 +2025/05/04-10:09:55.612270 41 Options.bloom_locality: 0 +2025/05/04-10:09:55.612270 41 Options.max_successive_merges: 0 +2025/05/04-10:09:55.612271 41 Options.strict_max_successive_merges: 0 +2025/05/04-10:09:55.612273 41 Options.optimize_filters_for_hits: 0 +2025/05/04-10:09:55.612273 41 Options.paranoid_file_checks: 0 +2025/05/04-10:09:55.612274 41 Options.force_consistency_checks: 1 +2025/05/04-10:09:55.612275 41 Options.report_bg_io_stats: 0 +2025/05/04-10:09:55.612276 41 Options.ttl: 2592000 +2025/05/04-10:09:55.612276 41 Options.periodic_compaction_seconds: 0 +2025/05/04-10:09:55.612277 41 Options.default_temperature: kUnknown +2025/05/04-10:09:55.612277 41 Options.preclude_last_level_data_seconds: 0 +2025/05/04-10:09:55.612278 41 Options.preserve_internal_time_seconds: 0 +2025/05/04-10:09:55.612279 41 Options.enable_blob_files: false +2025/05/04-10:09:55.612279 41 Options.min_blob_size: 0 +2025/05/04-10:09:55.612280 41 Options.blob_file_size: 268435456 +2025/05/04-10:09:55.612280 41 Options.blob_compression_type: NoCompression +2025/05/04-10:09:55.612281 41 Options.enable_blob_garbage_collection: false +2025/05/04-10:09:55.612281 41 Options.blob_garbage_collection_age_cutoff: 0.250000 +2025/05/04-10:09:55.612282 41 Options.blob_garbage_collection_force_threshold: 1.000000 +2025/05/04-10:09:55.612283 41 Options.blob_compaction_readahead_size: 0 +2025/05/04-10:09:55.612283 41 Options.blob_file_starting_level: 0 +2025/05/04-10:09:55.612284 41 Options.experimental_mempurge_threshold: 0.000000 +2025/05/04-10:09:55.612284 41 Options.memtable_max_range_deletions: 0 +2025/05/04-10:09:55.612308 41 Options.comparator: leveldb.BytewiseComparator +2025/05/04-10:09:55.612309 41 Options.merge_operator: None +2025/05/04-10:09:55.612310 41 Options.compaction_filter: None +2025/05/04-10:09:55.612310 41 Options.compaction_filter_factory: None +2025/05/04-10:09:55.612311 41 Options.sst_partitioner_factory: None +2025/05/04-10:09:55.612311 41 Options.memtable_factory: SkipListFactory +2025/05/04-10:09:55.612312 41 Options.table_factory: BlockBasedTable +2025/05/04-10:09:55.612318 41 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff83c00060) + cache_index_and_filter_blocks: 0 + cache_index_and_filter_blocks_with_high_priority: 1 + pin_l0_filter_and_index_blocks_in_cache: 0 + pin_top_level_index_and_filter: 1 + index_type: 0 + data_block_index_type: 0 + index_shortening: 1 + data_block_hash_table_util_ratio: 0.750000 + checksum: 4 + no_block_cache: 0 + block_cache: 0xffff83c09010 + block_cache_name: LRUCache + block_cache_options: + capacity : 33554432 + num_shard_bits : 6 + strict_capacity_limit : 0 + memory_allocator : None + high_pri_pool_ratio: 0.500 + low_pri_pool_ratio: 0.000 + persistent_cache: (nil) + block_size: 4096 + block_size_deviation: 10 + block_restart_interval: 16 + index_block_restart_interval: 1 + metadata_block_size: 4096 + partition_filters: 0 + use_delta_encoding: 1 + filter_policy: nullptr + whole_key_filtering: 1 + verify_compression: 0 + read_amp_bytes_per_bit: 0 + format_version: 6 + enable_index_compression: 1 + block_align: 0 + max_auto_readahead_size: 262144 + prepopulate_block_cache: 0 + initial_auto_readahead_size: 8192 + num_file_reads_for_auto_readahead: 2 +2025/05/04-10:09:55.612320 41 Options.write_buffer_size: 10485760 +2025/05/04-10:09:55.612320 41 Options.max_write_buffer_number: 2 +2025/05/04-10:09:55.612321 41 Options.compression: LZ4 +2025/05/04-10:09:55.612322 41 Options.bottommost_compression: Disabled +2025/05/04-10:09:55.612322 41 Options.prefix_extractor: nullptr +2025/05/04-10:09:55.612323 41 Options.memtable_insert_with_hint_prefix_extractor: nullptr +2025/05/04-10:09:55.612323 41 Options.num_levels: 7 +2025/05/04-10:09:55.612324 41 Options.min_write_buffer_number_to_merge: 1 +2025/05/04-10:09:55.612324 41 Options.max_write_buffer_number_to_maintain: 0 +2025/05/04-10:09:55.612325 41 Options.max_write_buffer_size_to_maintain: 0 +2025/05/04-10:09:55.612325 41 Options.bottommost_compression_opts.window_bits: -14 +2025/05/04-10:09:55.612326 41 Options.bottommost_compression_opts.level: 32767 +2025/05/04-10:09:55.612327 41 Options.bottommost_compression_opts.strategy: 0 +2025/05/04-10:09:55.612327 41 Options.bottommost_compression_opts.max_dict_bytes: 0 +2025/05/04-10:09:55.612328 41 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 +2025/05/04-10:09:55.612328 41 Options.bottommost_compression_opts.parallel_threads: 1 +2025/05/04-10:09:55.612329 41 Options.bottommost_compression_opts.enabled: false +2025/05/04-10:09:55.612329 41 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 +2025/05/04-10:09:55.612330 41 Options.bottommost_compression_opts.use_zstd_dict_trainer: true +2025/05/04-10:09:55.612330 41 Options.compression_opts.window_bits: -14 +2025/05/04-10:09:55.612331 41 Options.compression_opts.level: 32767 +2025/05/04-10:09:55.612331 41 Options.compression_opts.strategy: 0 +2025/05/04-10:09:55.612332 41 Options.compression_opts.max_dict_bytes: 0 +2025/05/04-10:09:55.612333 41 Options.compression_opts.zstd_max_train_bytes: 0 +2025/05/04-10:09:55.612333 41 Options.compression_opts.use_zstd_dict_trainer: true +2025/05/04-10:09:55.612334 41 Options.compression_opts.parallel_threads: 1 +2025/05/04-10:09:55.612334 41 Options.compression_opts.enabled: false +2025/05/04-10:09:55.612335 41 Options.compression_opts.max_dict_buffer_bytes: 0 +2025/05/04-10:09:55.612335 41 Options.level0_file_num_compaction_trigger: 4 +2025/05/04-10:09:55.612336 41 Options.level0_slowdown_writes_trigger: 20 +2025/05/04-10:09:55.612336 41 Options.level0_stop_writes_trigger: 36 +2025/05/04-10:09:55.612338 41 Options.target_file_size_base: 67108864 +2025/05/04-10:09:55.612339 41 Options.target_file_size_multiplier: 1 +2025/05/04-10:09:55.612339 41 Options.max_bytes_for_level_base: 268435456 +2025/05/04-10:09:55.612340 41 Options.level_compaction_dynamic_level_bytes: 1 +2025/05/04-10:09:55.612341 41 Options.max_bytes_for_level_multiplier: 10.000000 +2025/05/04-10:09:55.612341 41 Options.max_bytes_for_level_multiplier_addtl[0]: 1 +2025/05/04-10:09:55.612342 41 Options.max_bytes_for_level_multiplier_addtl[1]: 1 +2025/05/04-10:09:55.612342 41 Options.max_bytes_for_level_multiplier_addtl[2]: 1 +2025/05/04-10:09:55.612343 41 Options.max_bytes_for_level_multiplier_addtl[3]: 1 +2025/05/04-10:09:55.612343 41 Options.max_bytes_for_level_multiplier_addtl[4]: 1 +2025/05/04-10:09:55.612344 41 Options.max_bytes_for_level_multiplier_addtl[5]: 1 +2025/05/04-10:09:55.612345 41 Options.max_bytes_for_level_multiplier_addtl[6]: 1 +2025/05/04-10:09:55.612345 41 Options.max_sequential_skip_in_iterations: 8 +2025/05/04-10:09:55.612346 41 Options.max_compaction_bytes: 1677721600 +2025/05/04-10:09:55.612347 41 Options.arena_block_size: 1048576 +2025/05/04-10:09:55.612347 41 Options.soft_pending_compaction_bytes_limit: 68719476736 +2025/05/04-10:09:55.612348 41 Options.hard_pending_compaction_bytes_limit: 274877906944 +2025/05/04-10:09:55.612348 41 Options.disable_auto_compactions: 0 +2025/05/04-10:09:55.612349 41 Options.compaction_style: kCompactionStyleLevel +2025/05/04-10:09:55.612349 41 Options.compaction_pri: kMinOverlappingRatio +2025/05/04-10:09:55.612350 41 Options.compaction_options_universal.size_ratio: 1 +2025/05/04-10:09:55.612350 41 Options.compaction_options_universal.min_merge_width: 2 +2025/05/04-10:09:55.612351 41 Options.compaction_options_universal.max_merge_width: 4294967295 +2025/05/04-10:09:55.612353 41 Options.compaction_options_universal.max_size_amplification_percent: 200 +2025/05/04-10:09:55.612353 41 Options.compaction_options_universal.compression_size_percent: -1 +2025/05/04-10:09:55.612354 41 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize +2025/05/04-10:09:55.612354 41 Options.compaction_options_universal.max_read_amp: -1 +2025/05/04-10:09:55.612355 41 Options.compaction_options_fifo.max_table_files_size: 1073741824 +2025/05/04-10:09:55.612355 41 Options.compaction_options_fifo.allow_compaction: 0 +2025/05/04-10:09:55.612356 41 Options.table_properties_collectors: +2025/05/04-10:09:55.612357 41 Options.inplace_update_support: 0 +2025/05/04-10:09:55.612357 41 Options.inplace_update_num_locks: 10000 +2025/05/04-10:09:55.612358 41 Options.memtable_prefix_bloom_size_ratio: 0.000000 +2025/05/04-10:09:55.612360 41 Options.memtable_whole_key_filtering: 0 +2025/05/04-10:09:55.612361 41 Options.memtable_huge_page_size: 0 +2025/05/04-10:09:55.612361 41 Options.bloom_locality: 0 +2025/05/04-10:09:55.612362 41 Options.max_successive_merges: 0 +2025/05/04-10:09:55.612362 41 Options.strict_max_successive_merges: 0 +2025/05/04-10:09:55.612363 41 Options.optimize_filters_for_hits: 0 +2025/05/04-10:09:55.612363 41 Options.paranoid_file_checks: 0 +2025/05/04-10:09:55.612364 41 Options.force_consistency_checks: 1 +2025/05/04-10:09:55.612365 41 Options.report_bg_io_stats: 0 +2025/05/04-10:09:55.612365 41 Options.ttl: 2592000 +2025/05/04-10:09:55.612366 41 Options.periodic_compaction_seconds: 0 +2025/05/04-10:09:55.612367 41 Options.default_temperature: kUnknown +2025/05/04-10:09:55.612367 41 Options.preclude_last_level_data_seconds: 0 +2025/05/04-10:09:55.612368 41 Options.preserve_internal_time_seconds: 0 +2025/05/04-10:09:55.612368 41 Options.enable_blob_files: false +2025/05/04-10:09:55.612369 41 Options.min_blob_size: 0 +2025/05/04-10:09:55.612369 41 Options.blob_file_size: 268435456 +2025/05/04-10:09:55.612370 41 Options.blob_compression_type: NoCompression +2025/05/04-10:09:55.612370 41 Options.enable_blob_garbage_collection: false +2025/05/04-10:09:55.612371 41 Options.blob_garbage_collection_age_cutoff: 0.250000 +2025/05/04-10:09:55.612372 41 Options.blob_garbage_collection_force_threshold: 1.000000 +2025/05/04-10:09:55.612372 41 Options.blob_compaction_readahead_size: 0 +2025/05/04-10:09:55.612373 41 Options.blob_file_starting_level: 0 +2025/05/04-10:09:55.612373 41 Options.experimental_mempurge_threshold: 0.000000 +2025/05/04-10:09:55.612374 41 Options.memtable_max_range_deletions: 0 +2025/05/04-10:09:55.612391 41 Options.comparator: leveldb.BytewiseComparator +2025/05/04-10:09:55.612391 41 Options.merge_operator: None +2025/05/04-10:09:55.612392 41 Options.compaction_filter: None +2025/05/04-10:09:55.612393 41 Options.compaction_filter_factory: None +2025/05/04-10:09:55.612393 41 Options.sst_partitioner_factory: None +2025/05/04-10:09:55.612394 41 Options.memtable_factory: SkipListFactory +2025/05/04-10:09:55.612394 41 Options.table_factory: BlockBasedTable +2025/05/04-10:09:55.612400 41 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff83c00060) + cache_index_and_filter_blocks: 0 + cache_index_and_filter_blocks_with_high_priority: 1 + pin_l0_filter_and_index_blocks_in_cache: 0 + pin_top_level_index_and_filter: 1 + index_type: 0 + data_block_index_type: 0 + index_shortening: 1 + data_block_hash_table_util_ratio: 0.750000 + checksum: 4 + no_block_cache: 0 + block_cache: 0xffff83c09010 + block_cache_name: LRUCache + block_cache_options: + capacity : 33554432 + num_shard_bits : 6 + strict_capacity_limit : 0 + memory_allocator : None + high_pri_pool_ratio: 0.500 + low_pri_pool_ratio: 0.000 + persistent_cache: (nil) + block_size: 4096 + block_size_deviation: 10 + block_restart_interval: 16 + index_block_restart_interval: 1 + metadata_block_size: 4096 + partition_filters: 0 + use_delta_encoding: 1 + filter_policy: nullptr + whole_key_filtering: 1 + verify_compression: 0 + read_amp_bytes_per_bit: 0 + format_version: 6 + enable_index_compression: 1 + block_align: 0 + max_auto_readahead_size: 262144 + prepopulate_block_cache: 0 + initial_auto_readahead_size: 8192 + num_file_reads_for_auto_readahead: 2 +2025/05/04-10:09:55.612401 41 Options.write_buffer_size: 10485760 +2025/05/04-10:09:55.612402 41 Options.max_write_buffer_number: 2 +2025/05/04-10:09:55.612402 41 Options.compression: LZ4 +2025/05/04-10:09:55.612403 41 Options.bottommost_compression: Disabled +2025/05/04-10:09:55.612403 41 Options.prefix_extractor: nullptr +2025/05/04-10:09:55.612404 41 Options.memtable_insert_with_hint_prefix_extractor: nullptr +2025/05/04-10:09:55.612405 41 Options.num_levels: 7 +2025/05/04-10:09:55.612405 41 Options.min_write_buffer_number_to_merge: 1 +2025/05/04-10:09:55.612406 41 Options.max_write_buffer_number_to_maintain: 0 +2025/05/04-10:09:55.612406 41 Options.max_write_buffer_size_to_maintain: 0 +2025/05/04-10:09:55.612407 41 Options.bottommost_compression_opts.window_bits: -14 +2025/05/04-10:09:55.612407 41 Options.bottommost_compression_opts.level: 32767 +2025/05/04-10:09:55.612408 41 Options.bottommost_compression_opts.strategy: 0 +2025/05/04-10:09:55.612409 41 Options.bottommost_compression_opts.max_dict_bytes: 0 +2025/05/04-10:09:55.612409 41 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 +2025/05/04-10:09:55.612410 41 Options.bottommost_compression_opts.parallel_threads: 1 +2025/05/04-10:09:55.612410 41 Options.bottommost_compression_opts.enabled: false +2025/05/04-10:09:55.612411 41 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 +2025/05/04-10:09:55.612411 41 Options.bottommost_compression_opts.use_zstd_dict_trainer: true +2025/05/04-10:09:55.612412 41 Options.compression_opts.window_bits: -14 +2025/05/04-10:09:55.612413 41 Options.compression_opts.level: 32767 +2025/05/04-10:09:55.612413 41 Options.compression_opts.strategy: 0 +2025/05/04-10:09:55.612414 41 Options.compression_opts.max_dict_bytes: 0 +2025/05/04-10:09:55.612414 41 Options.compression_opts.zstd_max_train_bytes: 0 +2025/05/04-10:09:55.612415 41 Options.compression_opts.use_zstd_dict_trainer: true +2025/05/04-10:09:55.612416 41 Options.compression_opts.parallel_threads: 1 +2025/05/04-10:09:55.612416 41 Options.compression_opts.enabled: false +2025/05/04-10:09:55.612417 41 Options.compression_opts.max_dict_buffer_bytes: 0 +2025/05/04-10:09:55.612417 41 Options.level0_file_num_compaction_trigger: 4 +2025/05/04-10:09:55.612418 41 Options.level0_slowdown_writes_trigger: 20 +2025/05/04-10:09:55.612418 41 Options.level0_stop_writes_trigger: 36 +2025/05/04-10:09:55.612419 41 Options.target_file_size_base: 67108864 +2025/05/04-10:09:55.612419 41 Options.target_file_size_multiplier: 1 +2025/05/04-10:09:55.612420 41 Options.max_bytes_for_level_base: 268435456 +2025/05/04-10:09:55.612420 41 Options.level_compaction_dynamic_level_bytes: 1 +2025/05/04-10:09:55.612421 41 Options.max_bytes_for_level_multiplier: 10.000000 +2025/05/04-10:09:55.612422 41 Options.max_bytes_for_level_multiplier_addtl[0]: 1 +2025/05/04-10:09:55.612423 41 Options.max_bytes_for_level_multiplier_addtl[1]: 1 +2025/05/04-10:09:55.612425 41 Options.max_bytes_for_level_multiplier_addtl[2]: 1 +2025/05/04-10:09:55.612426 41 Options.max_bytes_for_level_multiplier_addtl[3]: 1 +2025/05/04-10:09:55.612426 41 Options.max_bytes_for_level_multiplier_addtl[4]: 1 +2025/05/04-10:09:55.612427 41 Options.max_bytes_for_level_multiplier_addtl[5]: 1 +2025/05/04-10:09:55.612427 41 Options.max_bytes_for_level_multiplier_addtl[6]: 1 +2025/05/04-10:09:55.612429 41 Options.max_sequential_skip_in_iterations: 8 +2025/05/04-10:09:55.612430 41 Options.max_compaction_bytes: 1677721600 +2025/05/04-10:09:55.612430 41 Options.arena_block_size: 1048576 +2025/05/04-10:09:55.612432 41 Options.soft_pending_compaction_bytes_limit: 68719476736 +2025/05/04-10:09:55.612432 41 Options.hard_pending_compaction_bytes_limit: 274877906944 +2025/05/04-10:09:55.612433 41 Options.disable_auto_compactions: 0 +2025/05/04-10:09:55.612434 41 Options.compaction_style: kCompactionStyleLevel +2025/05/04-10:09:55.612434 41 Options.compaction_pri: kMinOverlappingRatio +2025/05/04-10:09:55.612435 41 Options.compaction_options_universal.size_ratio: 1 +2025/05/04-10:09:55.612435 41 Options.compaction_options_universal.min_merge_width: 2 +2025/05/04-10:09:55.612436 41 Options.compaction_options_universal.max_merge_width: 4294967295 +2025/05/04-10:09:55.612436 41 Options.compaction_options_universal.max_size_amplification_percent: 200 +2025/05/04-10:09:55.612437 41 Options.compaction_options_universal.compression_size_percent: -1 +2025/05/04-10:09:55.612437 41 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize +2025/05/04-10:09:55.612438 41 Options.compaction_options_universal.max_read_amp: -1 +2025/05/04-10:09:55.612438 41 Options.compaction_options_fifo.max_table_files_size: 1073741824 +2025/05/04-10:09:55.612439 41 Options.compaction_options_fifo.allow_compaction: 0 +2025/05/04-10:09:55.612440 41 Options.table_properties_collectors: +2025/05/04-10:09:55.612440 41 Options.inplace_update_support: 0 +2025/05/04-10:09:55.612441 41 Options.inplace_update_num_locks: 10000 +2025/05/04-10:09:55.612442 41 Options.memtable_prefix_bloom_size_ratio: 0.000000 +2025/05/04-10:09:55.612442 41 Options.memtable_whole_key_filtering: 0 +2025/05/04-10:09:55.612443 41 Options.memtable_huge_page_size: 0 +2025/05/04-10:09:55.612443 41 Options.bloom_locality: 0 +2025/05/04-10:09:55.612444 41 Options.max_successive_merges: 0 +2025/05/04-10:09:55.612444 41 Options.strict_max_successive_merges: 0 +2025/05/04-10:09:55.612445 41 Options.optimize_filters_for_hits: 0 +2025/05/04-10:09:55.612445 41 Options.paranoid_file_checks: 0 +2025/05/04-10:09:55.612447 41 Options.force_consistency_checks: 1 +2025/05/04-10:09:55.612448 41 Options.report_bg_io_stats: 0 +2025/05/04-10:09:55.612448 41 Options.ttl: 2592000 +2025/05/04-10:09:55.612449 41 Options.periodic_compaction_seconds: 0 +2025/05/04-10:09:55.612450 41 Options.default_temperature: kUnknown +2025/05/04-10:09:55.612452 41 Options.preclude_last_level_data_seconds: 0 +2025/05/04-10:09:55.612452 41 Options.preserve_internal_time_seconds: 0 +2025/05/04-10:09:55.612453 41 Options.enable_blob_files: false +2025/05/04-10:09:55.612453 41 Options.min_blob_size: 0 +2025/05/04-10:09:55.612454 41 Options.blob_file_size: 268435456 +2025/05/04-10:09:55.612455 41 Options.blob_compression_type: NoCompression +2025/05/04-10:09:55.612455 41 Options.enable_blob_garbage_collection: false +2025/05/04-10:09:55.612456 41 Options.blob_garbage_collection_age_cutoff: 0.250000 +2025/05/04-10:09:55.612456 41 Options.blob_garbage_collection_force_threshold: 1.000000 +2025/05/04-10:09:55.612458 41 Options.blob_compaction_readahead_size: 0 +2025/05/04-10:09:55.612459 41 Options.blob_file_starting_level: 0 +2025/05/04-10:09:55.612460 41 Options.experimental_mempurge_threshold: 0.000000 +2025/05/04-10:09:55.612460 41 Options.memtable_max_range_deletions: 0 +2025/05/04-10:09:55.674021 41 DB pointer 0xffff83c63c00 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/MANIFEST-000030 b/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/MANIFEST-000030 new file mode 100644 index 0000000000000000000000000000000000000000..5378b1a464595e1ddfc781e22f9f4622a049c63e Binary files /dev/null and b/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/MANIFEST-000030 differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/OPTIONS-000028 b/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/OPTIONS-000028 new file mode 100644 index 0000000000000000000000000000000000000000..ad2b181add715408dc69839970eebfd4c1a28b4b --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/OPTIONS-000028 @@ -0,0 +1,670 @@ +# This is a RocksDB option file. +# +# For detailed file format spec, please refer to the example file +# in examples/rocksdb_option_file_example.ini +# + +[Version] + rocksdb_version=9.9.3 + options_file_version=1.1 + +[DBOptions] + compaction_readahead_size=2097152 + strict_bytes_per_sync=false + bytes_per_sync=0 + max_background_jobs=2 + avoid_flush_during_shutdown=false + max_background_flushes=-1 + delayed_write_rate=16777216 + max_open_files=256 + max_subcompactions=1 + writable_file_max_buffer_size=1048576 + wal_bytes_per_sync=0 + max_background_compactions=-1 + max_total_wal_size=0 + delete_obsolete_files_period_micros=180000000 + stats_dump_period_sec=600 + stats_history_buffer_size=1048576 + stats_persist_period_sec=600 + follower_refresh_catchup_period_ms=10000 + enforce_single_del_contracts=true + lowest_used_cache_tier=kNonVolatileBlockTier + bgerror_resume_retry_interval=1000000 + metadata_write_temperature=kUnknown + best_efforts_recovery=false + log_readahead_size=0 + write_identity_file=true + write_dbid_to_manifest=true + prefix_seek_opt_in_only=false + wal_compression=kNoCompression + manual_wal_flush=false + db_host_id=__hostname__ + two_write_queues=false + random_access_max_buffer_size=1048576 + avoid_unnecessary_blocking_io=false + skip_checking_sst_file_sizes_on_db_open=false + flush_verify_memtable_count=true + fail_if_options_file_error=true + atomic_flush=false + verify_sst_unique_id_in_manifest=true + skip_stats_update_on_db_open=false + track_and_verify_wals_in_manifest=false + compaction_verify_record_count=true + paranoid_checks=true + create_if_missing=true + max_write_batch_group_size_bytes=1048576 + follower_catchup_retry_count=10 + avoid_flush_during_recovery=false + file_checksum_gen_factory=nullptr + enable_thread_tracking=false + allow_fallocate=true + allow_data_in_errors=false + error_if_exists=false + use_direct_io_for_flush_and_compaction=false + background_close_inactive_wals=false + create_missing_column_families=true + WAL_size_limit_MB=0 + use_direct_reads=false + persist_stats_to_disk=false + allow_2pc=false + is_fd_close_on_exec=true + max_log_file_size=1048576 + max_file_opening_threads=16 + wal_filter=nullptr + wal_write_temperature=kUnknown + follower_catchup_retry_wait_ms=100 + allow_mmap_reads=false + allow_mmap_writes=false + use_adaptive_mutex=false + use_fsync=false + table_cache_numshardbits=6 + dump_malloc_stats=false + db_write_buffer_size=0 + allow_ingest_behind=false + keep_log_file_num=1 + max_bgerror_resume_count=2147483647 + allow_concurrent_memtable_write=true + recycle_log_file_num=0 + log_file_time_to_roll=0 + manifest_preallocation_size=4194304 + enable_write_thread_adaptive_yield=true + WAL_ttl_seconds=0 + max_manifest_file_size=1073741824 + wal_recovery_mode=kTolerateCorruptedTailRecords + enable_pipelined_write=false + write_thread_slow_yield_usec=3 + unordered_write=false + write_thread_max_yield_usec=100 + advise_random_on_open=true + info_log_level=ERROR_LEVEL + + +[CFOptions "default"] + memtable_max_range_deletions=0 + compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_memory_checks=false + block_protection_bytes_per_key=0 + uncache_aggressiveness=0 + bottommost_file_compaction_delay=0 + memtable_protection_bytes_per_key=0 + experimental_mempurge_threshold=0.000000 + bottommost_compression=kDisableCompressionOption + sample_for_compression=0 + prepopulate_blob_cache=kDisable + blob_file_starting_level=0 + blob_compaction_readahead_size=0 + table_factory=BlockBasedTable + max_successive_merges=0 + max_write_buffer_number=2 + prefix_extractor=nullptr + memtable_huge_page_size=0 + write_buffer_size=10485760 + strict_max_successive_merges=false + arena_block_size=1048576 + level0_file_num_compaction_trigger=4 + report_bg_io_stats=false + inplace_update_num_locks=10000 + memtable_prefix_bloom_size_ratio=0.000000 + level0_stop_writes_trigger=36 + blob_compression_type=kNoCompression + level0_slowdown_writes_trigger=20 + hard_pending_compaction_bytes_limit=274877906944 + target_file_size_multiplier=1 + bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_file_checks=false + blob_garbage_collection_force_threshold=1.000000 + enable_blob_files=false + soft_pending_compaction_bytes_limit=68719476736 + target_file_size_base=67108864 + max_compaction_bytes=1677721600 + disable_auto_compactions=false + min_blob_size=0 + memtable_whole_key_filtering=false + max_bytes_for_level_base=268435456 + last_level_temperature=kUnknown + preserve_internal_time_seconds=0 + compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} + max_bytes_for_level_multiplier=10.000000 + max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 + max_sequential_skip_in_iterations=8 + compression=kLZ4Compression + default_write_temperature=kUnknown + compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} + blob_garbage_collection_age_cutoff=0.250000 + ttl=2592000 + periodic_compaction_seconds=0 + preclude_last_level_data_seconds=0 + blob_file_size=268435456 + enable_blob_garbage_collection=false + persist_user_defined_timestamps=true + compaction_pri=kMinOverlappingRatio + compaction_filter_factory=nullptr + comparator=leveldb.BytewiseComparator + bloom_locality=0 + merge_operator=nullptr + compaction_filter=nullptr + level_compaction_dynamic_level_bytes=true + optimize_filters_for_hits=false + inplace_update_support=false + max_write_buffer_number_to_maintain=0 + max_write_buffer_size_to_maintain=0 + sst_partitioner_factory=nullptr + default_temperature=kUnknown + compaction_style=kCompactionStyleLevel + min_write_buffer_number_to_merge=1 + memtable_factory=SkipListFactory + memtable_insert_with_hint_prefix_extractor=nullptr + force_consistency_checks=true + num_levels=7 + +[TableOptions/BlockBasedTable "default"] + num_file_reads_for_auto_readahead=2 + initial_auto_readahead_size=8192 + metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} + enable_index_compression=true + verify_compression=false + prepopulate_block_cache=kDisable + format_version=6 + use_delta_encoding=true + pin_top_level_index_and_filter=true + read_amp_bytes_per_bit=0 + decouple_partitioned_filters=false + partition_filters=false + metadata_block_size=4096 + max_auto_readahead_size=262144 + index_block_restart_interval=1 + block_size_deviation=10 + block_size=4096 + detect_filter_construct_corruption=false + no_block_cache=false + checksum=kXXH3 + filter_policy=nullptr + data_block_hash_table_util_ratio=0.750000 + block_restart_interval=16 + index_type=kBinarySearch + pin_l0_filter_and_index_blocks_in_cache=false + data_block_index_type=kDataBlockBinarySearch + cache_index_and_filter_blocks_with_high_priority=true + whole_key_filtering=true + index_shortening=kShortenSeparators + cache_index_and_filter_blocks=false + block_align=false + optimize_filters_for_memory=true + flush_block_policy_factory=FlushBlockBySizePolicyFactory + + +[CFOptions "payload"] + memtable_max_range_deletions=0 + compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_memory_checks=false + block_protection_bytes_per_key=0 + uncache_aggressiveness=0 + bottommost_file_compaction_delay=0 + memtable_protection_bytes_per_key=0 + experimental_mempurge_threshold=0.000000 + bottommost_compression=kDisableCompressionOption + sample_for_compression=0 + prepopulate_blob_cache=kDisable + blob_file_starting_level=0 + blob_compaction_readahead_size=0 + table_factory=BlockBasedTable + max_successive_merges=0 + max_write_buffer_number=2 + prefix_extractor=nullptr + memtable_huge_page_size=0 + write_buffer_size=10485760 + strict_max_successive_merges=false + arena_block_size=1048576 + level0_file_num_compaction_trigger=4 + report_bg_io_stats=false + inplace_update_num_locks=10000 + memtable_prefix_bloom_size_ratio=0.000000 + level0_stop_writes_trigger=36 + blob_compression_type=kNoCompression + level0_slowdown_writes_trigger=20 + hard_pending_compaction_bytes_limit=274877906944 + target_file_size_multiplier=1 + bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_file_checks=false + blob_garbage_collection_force_threshold=1.000000 + enable_blob_files=false + soft_pending_compaction_bytes_limit=68719476736 + target_file_size_base=67108864 + max_compaction_bytes=1677721600 + disable_auto_compactions=false + min_blob_size=0 + memtable_whole_key_filtering=false + max_bytes_for_level_base=268435456 + last_level_temperature=kUnknown + preserve_internal_time_seconds=0 + compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} + max_bytes_for_level_multiplier=10.000000 + max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 + max_sequential_skip_in_iterations=8 + compression=kLZ4Compression + default_write_temperature=kUnknown + compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} + blob_garbage_collection_age_cutoff=0.250000 + ttl=2592000 + periodic_compaction_seconds=0 + preclude_last_level_data_seconds=0 + blob_file_size=268435456 + enable_blob_garbage_collection=false + persist_user_defined_timestamps=true + compaction_pri=kMinOverlappingRatio + compaction_filter_factory=nullptr + comparator=leveldb.BytewiseComparator + bloom_locality=0 + merge_operator=nullptr + compaction_filter=nullptr + level_compaction_dynamic_level_bytes=true + optimize_filters_for_hits=false + inplace_update_support=false + max_write_buffer_number_to_maintain=0 + max_write_buffer_size_to_maintain=0 + sst_partitioner_factory=nullptr + default_temperature=kUnknown + compaction_style=kCompactionStyleLevel + min_write_buffer_number_to_merge=1 + memtable_factory=SkipListFactory + memtable_insert_with_hint_prefix_extractor=nullptr + force_consistency_checks=true + num_levels=7 + +[TableOptions/BlockBasedTable "payload"] + num_file_reads_for_auto_readahead=2 + initial_auto_readahead_size=8192 + metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} + enable_index_compression=true + verify_compression=false + prepopulate_block_cache=kDisable + format_version=6 + use_delta_encoding=true + pin_top_level_index_and_filter=true + read_amp_bytes_per_bit=0 + decouple_partitioned_filters=false + partition_filters=false + metadata_block_size=4096 + max_auto_readahead_size=262144 + index_block_restart_interval=1 + block_size_deviation=10 + block_size=4096 + detect_filter_construct_corruption=false + no_block_cache=false + checksum=kXXH3 + filter_policy=nullptr + data_block_hash_table_util_ratio=0.750000 + block_restart_interval=16 + index_type=kBinarySearch + pin_l0_filter_and_index_blocks_in_cache=false + data_block_index_type=kDataBlockBinarySearch + cache_index_and_filter_blocks_with_high_priority=true + whole_key_filtering=true + index_shortening=kShortenSeparators + cache_index_and_filter_blocks=false + block_align=false + optimize_filters_for_memory=true + flush_block_policy_factory=FlushBlockBySizePolicyFactory + + +[CFOptions "mapping"] + memtable_max_range_deletions=0 + compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_memory_checks=false + block_protection_bytes_per_key=0 + uncache_aggressiveness=0 + bottommost_file_compaction_delay=0 + memtable_protection_bytes_per_key=0 + experimental_mempurge_threshold=0.000000 + bottommost_compression=kDisableCompressionOption + sample_for_compression=0 + prepopulate_blob_cache=kDisable + blob_file_starting_level=0 + blob_compaction_readahead_size=0 + table_factory=BlockBasedTable + max_successive_merges=0 + max_write_buffer_number=2 + prefix_extractor=nullptr + memtable_huge_page_size=0 + write_buffer_size=10485760 + strict_max_successive_merges=false + arena_block_size=1048576 + level0_file_num_compaction_trigger=4 + report_bg_io_stats=false + inplace_update_num_locks=10000 + memtable_prefix_bloom_size_ratio=0.000000 + level0_stop_writes_trigger=36 + blob_compression_type=kNoCompression + level0_slowdown_writes_trigger=20 + hard_pending_compaction_bytes_limit=274877906944 + target_file_size_multiplier=1 + bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_file_checks=false + blob_garbage_collection_force_threshold=1.000000 + enable_blob_files=false + soft_pending_compaction_bytes_limit=68719476736 + target_file_size_base=67108864 + max_compaction_bytes=1677721600 + disable_auto_compactions=false + min_blob_size=0 + memtable_whole_key_filtering=false + max_bytes_for_level_base=268435456 + last_level_temperature=kUnknown + preserve_internal_time_seconds=0 + compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} + max_bytes_for_level_multiplier=10.000000 + max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 + max_sequential_skip_in_iterations=8 + compression=kLZ4Compression + default_write_temperature=kUnknown + compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} + blob_garbage_collection_age_cutoff=0.250000 + ttl=2592000 + periodic_compaction_seconds=0 + preclude_last_level_data_seconds=0 + blob_file_size=268435456 + enable_blob_garbage_collection=false + persist_user_defined_timestamps=true + compaction_pri=kMinOverlappingRatio + compaction_filter_factory=nullptr + comparator=leveldb.BytewiseComparator + bloom_locality=0 + merge_operator=nullptr + compaction_filter=nullptr + level_compaction_dynamic_level_bytes=true + optimize_filters_for_hits=false + inplace_update_support=false + max_write_buffer_number_to_maintain=0 + max_write_buffer_size_to_maintain=0 + sst_partitioner_factory=nullptr + default_temperature=kUnknown + compaction_style=kCompactionStyleLevel + min_write_buffer_number_to_merge=1 + memtable_factory=SkipListFactory + memtable_insert_with_hint_prefix_extractor=nullptr + force_consistency_checks=true + num_levels=7 + +[TableOptions/BlockBasedTable "mapping"] + num_file_reads_for_auto_readahead=2 + initial_auto_readahead_size=8192 + metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} + enable_index_compression=true + verify_compression=false + prepopulate_block_cache=kDisable + format_version=6 + use_delta_encoding=true + pin_top_level_index_and_filter=true + read_amp_bytes_per_bit=0 + decouple_partitioned_filters=false + partition_filters=false + metadata_block_size=4096 + max_auto_readahead_size=262144 + index_block_restart_interval=1 + block_size_deviation=10 + block_size=4096 + detect_filter_construct_corruption=false + no_block_cache=false + checksum=kXXH3 + filter_policy=nullptr + data_block_hash_table_util_ratio=0.750000 + block_restart_interval=16 + index_type=kBinarySearch + pin_l0_filter_and_index_blocks_in_cache=false + data_block_index_type=kDataBlockBinarySearch + cache_index_and_filter_blocks_with_high_priority=true + whole_key_filtering=true + index_shortening=kShortenSeparators + cache_index_and_filter_blocks=false + block_align=false + optimize_filters_for_memory=true + flush_block_policy_factory=FlushBlockBySizePolicyFactory + + +[CFOptions "version"] + memtable_max_range_deletions=0 + compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_memory_checks=false + block_protection_bytes_per_key=0 + uncache_aggressiveness=0 + bottommost_file_compaction_delay=0 + memtable_protection_bytes_per_key=0 + experimental_mempurge_threshold=0.000000 + bottommost_compression=kDisableCompressionOption + sample_for_compression=0 + prepopulate_blob_cache=kDisable + blob_file_starting_level=0 + blob_compaction_readahead_size=0 + table_factory=BlockBasedTable + max_successive_merges=0 + max_write_buffer_number=2 + prefix_extractor=nullptr + memtable_huge_page_size=0 + write_buffer_size=10485760 + strict_max_successive_merges=false + arena_block_size=1048576 + level0_file_num_compaction_trigger=4 + report_bg_io_stats=false + inplace_update_num_locks=10000 + memtable_prefix_bloom_size_ratio=0.000000 + level0_stop_writes_trigger=36 + blob_compression_type=kNoCompression + level0_slowdown_writes_trigger=20 + hard_pending_compaction_bytes_limit=274877906944 + target_file_size_multiplier=1 + bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_file_checks=false + blob_garbage_collection_force_threshold=1.000000 + enable_blob_files=false + soft_pending_compaction_bytes_limit=68719476736 + target_file_size_base=67108864 + max_compaction_bytes=1677721600 + disable_auto_compactions=false + min_blob_size=0 + memtable_whole_key_filtering=false + max_bytes_for_level_base=268435456 + last_level_temperature=kUnknown + preserve_internal_time_seconds=0 + compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} + max_bytes_for_level_multiplier=10.000000 + max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 + max_sequential_skip_in_iterations=8 + compression=kLZ4Compression + default_write_temperature=kUnknown + compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} + blob_garbage_collection_age_cutoff=0.250000 + ttl=2592000 + periodic_compaction_seconds=0 + preclude_last_level_data_seconds=0 + blob_file_size=268435456 + enable_blob_garbage_collection=false + persist_user_defined_timestamps=true + compaction_pri=kMinOverlappingRatio + compaction_filter_factory=nullptr + comparator=leveldb.BytewiseComparator + bloom_locality=0 + merge_operator=nullptr + compaction_filter=nullptr + level_compaction_dynamic_level_bytes=true + optimize_filters_for_hits=false + inplace_update_support=false + max_write_buffer_number_to_maintain=0 + max_write_buffer_size_to_maintain=0 + sst_partitioner_factory=nullptr + default_temperature=kUnknown + compaction_style=kCompactionStyleLevel + min_write_buffer_number_to_merge=1 + memtable_factory=SkipListFactory + memtable_insert_with_hint_prefix_extractor=nullptr + force_consistency_checks=true + num_levels=7 + +[TableOptions/BlockBasedTable "version"] + num_file_reads_for_auto_readahead=2 + initial_auto_readahead_size=8192 + metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} + enable_index_compression=true + verify_compression=false + prepopulate_block_cache=kDisable + format_version=6 + use_delta_encoding=true + pin_top_level_index_and_filter=true + read_amp_bytes_per_bit=0 + decouple_partitioned_filters=false + partition_filters=false + metadata_block_size=4096 + max_auto_readahead_size=262144 + index_block_restart_interval=1 + block_size_deviation=10 + block_size=4096 + detect_filter_construct_corruption=false + no_block_cache=false + checksum=kXXH3 + filter_policy=nullptr + data_block_hash_table_util_ratio=0.750000 + block_restart_interval=16 + index_type=kBinarySearch + pin_l0_filter_and_index_blocks_in_cache=false + data_block_index_type=kDataBlockBinarySearch + cache_index_and_filter_blocks_with_high_priority=true + whole_key_filtering=true + index_shortening=kShortenSeparators + cache_index_and_filter_blocks=false + block_align=false + optimize_filters_for_memory=true + flush_block_policy_factory=FlushBlockBySizePolicyFactory + + +[CFOptions "vector"] + memtable_max_range_deletions=0 + compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_memory_checks=false + block_protection_bytes_per_key=0 + uncache_aggressiveness=0 + bottommost_file_compaction_delay=0 + memtable_protection_bytes_per_key=0 + experimental_mempurge_threshold=0.000000 + bottommost_compression=kDisableCompressionOption + sample_for_compression=0 + prepopulate_blob_cache=kDisable + blob_file_starting_level=0 + blob_compaction_readahead_size=0 + table_factory=BlockBasedTable + max_successive_merges=0 + max_write_buffer_number=2 + prefix_extractor=nullptr + memtable_huge_page_size=0 + write_buffer_size=10485760 + strict_max_successive_merges=false + arena_block_size=1048576 + level0_file_num_compaction_trigger=4 + report_bg_io_stats=false + inplace_update_num_locks=10000 + memtable_prefix_bloom_size_ratio=0.000000 + level0_stop_writes_trigger=36 + blob_compression_type=kNoCompression + level0_slowdown_writes_trigger=20 + hard_pending_compaction_bytes_limit=274877906944 + target_file_size_multiplier=1 + bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_file_checks=false + blob_garbage_collection_force_threshold=1.000000 + enable_blob_files=false + soft_pending_compaction_bytes_limit=68719476736 + target_file_size_base=67108864 + max_compaction_bytes=1677721600 + disable_auto_compactions=false + min_blob_size=0 + memtable_whole_key_filtering=false + max_bytes_for_level_base=268435456 + last_level_temperature=kUnknown + preserve_internal_time_seconds=0 + compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} + max_bytes_for_level_multiplier=10.000000 + max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 + max_sequential_skip_in_iterations=8 + compression=kLZ4Compression + default_write_temperature=kUnknown + compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} + blob_garbage_collection_age_cutoff=0.250000 + ttl=2592000 + periodic_compaction_seconds=0 + preclude_last_level_data_seconds=0 + blob_file_size=268435456 + enable_blob_garbage_collection=false + persist_user_defined_timestamps=true + compaction_pri=kMinOverlappingRatio + compaction_filter_factory=nullptr + comparator=leveldb.BytewiseComparator + bloom_locality=0 + merge_operator=nullptr + compaction_filter=nullptr + level_compaction_dynamic_level_bytes=true + optimize_filters_for_hits=false + inplace_update_support=false + max_write_buffer_number_to_maintain=0 + max_write_buffer_size_to_maintain=0 + sst_partitioner_factory=nullptr + default_temperature=kUnknown + compaction_style=kCompactionStyleLevel + min_write_buffer_number_to_merge=1 + memtable_factory=SkipListFactory + memtable_insert_with_hint_prefix_extractor=nullptr + force_consistency_checks=true + num_levels=7 + +[TableOptions/BlockBasedTable "vector"] + num_file_reads_for_auto_readahead=2 + initial_auto_readahead_size=8192 + metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} + enable_index_compression=true + verify_compression=false + prepopulate_block_cache=kDisable + format_version=6 + use_delta_encoding=true + pin_top_level_index_and_filter=true + read_amp_bytes_per_bit=0 + decouple_partitioned_filters=false + partition_filters=false + metadata_block_size=4096 + max_auto_readahead_size=262144 + index_block_restart_interval=1 + block_size_deviation=10 + block_size=4096 + detect_filter_construct_corruption=false + no_block_cache=false + checksum=kXXH3 + filter_policy=nullptr + data_block_hash_table_util_ratio=0.750000 + block_restart_interval=16 + index_type=kBinarySearch + pin_l0_filter_and_index_blocks_in_cache=false + data_block_index_type=kDataBlockBinarySearch + cache_index_and_filter_blocks_with_high_priority=true + whole_key_filtering=true + index_shortening=kShortenSeparators + cache_index_and_filter_blocks=false + block_align=false + optimize_filters_for_memory=true + flush_block_policy_factory=FlushBlockBySizePolicyFactory + diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/OPTIONS-000032 b/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/OPTIONS-000032 new file mode 100644 index 0000000000000000000000000000000000000000..ad2b181add715408dc69839970eebfd4c1a28b4b --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/OPTIONS-000032 @@ -0,0 +1,670 @@ +# This is a RocksDB option file. +# +# For detailed file format spec, please refer to the example file +# in examples/rocksdb_option_file_example.ini +# + +[Version] + rocksdb_version=9.9.3 + options_file_version=1.1 + +[DBOptions] + compaction_readahead_size=2097152 + strict_bytes_per_sync=false + bytes_per_sync=0 + max_background_jobs=2 + avoid_flush_during_shutdown=false + max_background_flushes=-1 + delayed_write_rate=16777216 + max_open_files=256 + max_subcompactions=1 + writable_file_max_buffer_size=1048576 + wal_bytes_per_sync=0 + max_background_compactions=-1 + max_total_wal_size=0 + delete_obsolete_files_period_micros=180000000 + stats_dump_period_sec=600 + stats_history_buffer_size=1048576 + stats_persist_period_sec=600 + follower_refresh_catchup_period_ms=10000 + enforce_single_del_contracts=true + lowest_used_cache_tier=kNonVolatileBlockTier + bgerror_resume_retry_interval=1000000 + metadata_write_temperature=kUnknown + best_efforts_recovery=false + log_readahead_size=0 + write_identity_file=true + write_dbid_to_manifest=true + prefix_seek_opt_in_only=false + wal_compression=kNoCompression + manual_wal_flush=false + db_host_id=__hostname__ + two_write_queues=false + random_access_max_buffer_size=1048576 + avoid_unnecessary_blocking_io=false + skip_checking_sst_file_sizes_on_db_open=false + flush_verify_memtable_count=true + fail_if_options_file_error=true + atomic_flush=false + verify_sst_unique_id_in_manifest=true + skip_stats_update_on_db_open=false + track_and_verify_wals_in_manifest=false + compaction_verify_record_count=true + paranoid_checks=true + create_if_missing=true + max_write_batch_group_size_bytes=1048576 + follower_catchup_retry_count=10 + avoid_flush_during_recovery=false + file_checksum_gen_factory=nullptr + enable_thread_tracking=false + allow_fallocate=true + allow_data_in_errors=false + error_if_exists=false + use_direct_io_for_flush_and_compaction=false + background_close_inactive_wals=false + create_missing_column_families=true + WAL_size_limit_MB=0 + use_direct_reads=false + persist_stats_to_disk=false + allow_2pc=false + is_fd_close_on_exec=true + max_log_file_size=1048576 + max_file_opening_threads=16 + wal_filter=nullptr + wal_write_temperature=kUnknown + follower_catchup_retry_wait_ms=100 + allow_mmap_reads=false + allow_mmap_writes=false + use_adaptive_mutex=false + use_fsync=false + table_cache_numshardbits=6 + dump_malloc_stats=false + db_write_buffer_size=0 + allow_ingest_behind=false + keep_log_file_num=1 + max_bgerror_resume_count=2147483647 + allow_concurrent_memtable_write=true + recycle_log_file_num=0 + log_file_time_to_roll=0 + manifest_preallocation_size=4194304 + enable_write_thread_adaptive_yield=true + WAL_ttl_seconds=0 + max_manifest_file_size=1073741824 + wal_recovery_mode=kTolerateCorruptedTailRecords + enable_pipelined_write=false + write_thread_slow_yield_usec=3 + unordered_write=false + write_thread_max_yield_usec=100 + advise_random_on_open=true + info_log_level=ERROR_LEVEL + + +[CFOptions "default"] + memtable_max_range_deletions=0 + compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_memory_checks=false + block_protection_bytes_per_key=0 + uncache_aggressiveness=0 + bottommost_file_compaction_delay=0 + memtable_protection_bytes_per_key=0 + experimental_mempurge_threshold=0.000000 + bottommost_compression=kDisableCompressionOption + sample_for_compression=0 + prepopulate_blob_cache=kDisable + blob_file_starting_level=0 + blob_compaction_readahead_size=0 + table_factory=BlockBasedTable + max_successive_merges=0 + max_write_buffer_number=2 + prefix_extractor=nullptr + memtable_huge_page_size=0 + write_buffer_size=10485760 + strict_max_successive_merges=false + arena_block_size=1048576 + level0_file_num_compaction_trigger=4 + report_bg_io_stats=false + inplace_update_num_locks=10000 + memtable_prefix_bloom_size_ratio=0.000000 + level0_stop_writes_trigger=36 + blob_compression_type=kNoCompression + level0_slowdown_writes_trigger=20 + hard_pending_compaction_bytes_limit=274877906944 + target_file_size_multiplier=1 + bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_file_checks=false + blob_garbage_collection_force_threshold=1.000000 + enable_blob_files=false + soft_pending_compaction_bytes_limit=68719476736 + target_file_size_base=67108864 + max_compaction_bytes=1677721600 + disable_auto_compactions=false + min_blob_size=0 + memtable_whole_key_filtering=false + max_bytes_for_level_base=268435456 + last_level_temperature=kUnknown + preserve_internal_time_seconds=0 + compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} + max_bytes_for_level_multiplier=10.000000 + max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 + max_sequential_skip_in_iterations=8 + compression=kLZ4Compression + default_write_temperature=kUnknown + compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} + blob_garbage_collection_age_cutoff=0.250000 + ttl=2592000 + periodic_compaction_seconds=0 + preclude_last_level_data_seconds=0 + blob_file_size=268435456 + enable_blob_garbage_collection=false + persist_user_defined_timestamps=true + compaction_pri=kMinOverlappingRatio + compaction_filter_factory=nullptr + comparator=leveldb.BytewiseComparator + bloom_locality=0 + merge_operator=nullptr + compaction_filter=nullptr + level_compaction_dynamic_level_bytes=true + optimize_filters_for_hits=false + inplace_update_support=false + max_write_buffer_number_to_maintain=0 + max_write_buffer_size_to_maintain=0 + sst_partitioner_factory=nullptr + default_temperature=kUnknown + compaction_style=kCompactionStyleLevel + min_write_buffer_number_to_merge=1 + memtable_factory=SkipListFactory + memtable_insert_with_hint_prefix_extractor=nullptr + force_consistency_checks=true + num_levels=7 + +[TableOptions/BlockBasedTable "default"] + num_file_reads_for_auto_readahead=2 + initial_auto_readahead_size=8192 + metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} + enable_index_compression=true + verify_compression=false + prepopulate_block_cache=kDisable + format_version=6 + use_delta_encoding=true + pin_top_level_index_and_filter=true + read_amp_bytes_per_bit=0 + decouple_partitioned_filters=false + partition_filters=false + metadata_block_size=4096 + max_auto_readahead_size=262144 + index_block_restart_interval=1 + block_size_deviation=10 + block_size=4096 + detect_filter_construct_corruption=false + no_block_cache=false + checksum=kXXH3 + filter_policy=nullptr + data_block_hash_table_util_ratio=0.750000 + block_restart_interval=16 + index_type=kBinarySearch + pin_l0_filter_and_index_blocks_in_cache=false + data_block_index_type=kDataBlockBinarySearch + cache_index_and_filter_blocks_with_high_priority=true + whole_key_filtering=true + index_shortening=kShortenSeparators + cache_index_and_filter_blocks=false + block_align=false + optimize_filters_for_memory=true + flush_block_policy_factory=FlushBlockBySizePolicyFactory + + +[CFOptions "payload"] + memtable_max_range_deletions=0 + compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_memory_checks=false + block_protection_bytes_per_key=0 + uncache_aggressiveness=0 + bottommost_file_compaction_delay=0 + memtable_protection_bytes_per_key=0 + experimental_mempurge_threshold=0.000000 + bottommost_compression=kDisableCompressionOption + sample_for_compression=0 + prepopulate_blob_cache=kDisable + blob_file_starting_level=0 + blob_compaction_readahead_size=0 + table_factory=BlockBasedTable + max_successive_merges=0 + max_write_buffer_number=2 + prefix_extractor=nullptr + memtable_huge_page_size=0 + write_buffer_size=10485760 + strict_max_successive_merges=false + arena_block_size=1048576 + level0_file_num_compaction_trigger=4 + report_bg_io_stats=false + inplace_update_num_locks=10000 + memtable_prefix_bloom_size_ratio=0.000000 + level0_stop_writes_trigger=36 + blob_compression_type=kNoCompression + level0_slowdown_writes_trigger=20 + hard_pending_compaction_bytes_limit=274877906944 + target_file_size_multiplier=1 + bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_file_checks=false + blob_garbage_collection_force_threshold=1.000000 + enable_blob_files=false + soft_pending_compaction_bytes_limit=68719476736 + target_file_size_base=67108864 + max_compaction_bytes=1677721600 + disable_auto_compactions=false + min_blob_size=0 + memtable_whole_key_filtering=false + max_bytes_for_level_base=268435456 + last_level_temperature=kUnknown + preserve_internal_time_seconds=0 + compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} + max_bytes_for_level_multiplier=10.000000 + max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 + max_sequential_skip_in_iterations=8 + compression=kLZ4Compression + default_write_temperature=kUnknown + compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} + blob_garbage_collection_age_cutoff=0.250000 + ttl=2592000 + periodic_compaction_seconds=0 + preclude_last_level_data_seconds=0 + blob_file_size=268435456 + enable_blob_garbage_collection=false + persist_user_defined_timestamps=true + compaction_pri=kMinOverlappingRatio + compaction_filter_factory=nullptr + comparator=leveldb.BytewiseComparator + bloom_locality=0 + merge_operator=nullptr + compaction_filter=nullptr + level_compaction_dynamic_level_bytes=true + optimize_filters_for_hits=false + inplace_update_support=false + max_write_buffer_number_to_maintain=0 + max_write_buffer_size_to_maintain=0 + sst_partitioner_factory=nullptr + default_temperature=kUnknown + compaction_style=kCompactionStyleLevel + min_write_buffer_number_to_merge=1 + memtable_factory=SkipListFactory + memtable_insert_with_hint_prefix_extractor=nullptr + force_consistency_checks=true + num_levels=7 + +[TableOptions/BlockBasedTable "payload"] + num_file_reads_for_auto_readahead=2 + initial_auto_readahead_size=8192 + metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} + enable_index_compression=true + verify_compression=false + prepopulate_block_cache=kDisable + format_version=6 + use_delta_encoding=true + pin_top_level_index_and_filter=true + read_amp_bytes_per_bit=0 + decouple_partitioned_filters=false + partition_filters=false + metadata_block_size=4096 + max_auto_readahead_size=262144 + index_block_restart_interval=1 + block_size_deviation=10 + block_size=4096 + detect_filter_construct_corruption=false + no_block_cache=false + checksum=kXXH3 + filter_policy=nullptr + data_block_hash_table_util_ratio=0.750000 + block_restart_interval=16 + index_type=kBinarySearch + pin_l0_filter_and_index_blocks_in_cache=false + data_block_index_type=kDataBlockBinarySearch + cache_index_and_filter_blocks_with_high_priority=true + whole_key_filtering=true + index_shortening=kShortenSeparators + cache_index_and_filter_blocks=false + block_align=false + optimize_filters_for_memory=true + flush_block_policy_factory=FlushBlockBySizePolicyFactory + + +[CFOptions "mapping"] + memtable_max_range_deletions=0 + compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_memory_checks=false + block_protection_bytes_per_key=0 + uncache_aggressiveness=0 + bottommost_file_compaction_delay=0 + memtable_protection_bytes_per_key=0 + experimental_mempurge_threshold=0.000000 + bottommost_compression=kDisableCompressionOption + sample_for_compression=0 + prepopulate_blob_cache=kDisable + blob_file_starting_level=0 + blob_compaction_readahead_size=0 + table_factory=BlockBasedTable + max_successive_merges=0 + max_write_buffer_number=2 + prefix_extractor=nullptr + memtable_huge_page_size=0 + write_buffer_size=10485760 + strict_max_successive_merges=false + arena_block_size=1048576 + level0_file_num_compaction_trigger=4 + report_bg_io_stats=false + inplace_update_num_locks=10000 + memtable_prefix_bloom_size_ratio=0.000000 + level0_stop_writes_trigger=36 + blob_compression_type=kNoCompression + level0_slowdown_writes_trigger=20 + hard_pending_compaction_bytes_limit=274877906944 + target_file_size_multiplier=1 + bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_file_checks=false + blob_garbage_collection_force_threshold=1.000000 + enable_blob_files=false + soft_pending_compaction_bytes_limit=68719476736 + target_file_size_base=67108864 + max_compaction_bytes=1677721600 + disable_auto_compactions=false + min_blob_size=0 + memtable_whole_key_filtering=false + max_bytes_for_level_base=268435456 + last_level_temperature=kUnknown + preserve_internal_time_seconds=0 + compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} + max_bytes_for_level_multiplier=10.000000 + max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 + max_sequential_skip_in_iterations=8 + compression=kLZ4Compression + default_write_temperature=kUnknown + compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} + blob_garbage_collection_age_cutoff=0.250000 + ttl=2592000 + periodic_compaction_seconds=0 + preclude_last_level_data_seconds=0 + blob_file_size=268435456 + enable_blob_garbage_collection=false + persist_user_defined_timestamps=true + compaction_pri=kMinOverlappingRatio + compaction_filter_factory=nullptr + comparator=leveldb.BytewiseComparator + bloom_locality=0 + merge_operator=nullptr + compaction_filter=nullptr + level_compaction_dynamic_level_bytes=true + optimize_filters_for_hits=false + inplace_update_support=false + max_write_buffer_number_to_maintain=0 + max_write_buffer_size_to_maintain=0 + sst_partitioner_factory=nullptr + default_temperature=kUnknown + compaction_style=kCompactionStyleLevel + min_write_buffer_number_to_merge=1 + memtable_factory=SkipListFactory + memtable_insert_with_hint_prefix_extractor=nullptr + force_consistency_checks=true + num_levels=7 + +[TableOptions/BlockBasedTable "mapping"] + num_file_reads_for_auto_readahead=2 + initial_auto_readahead_size=8192 + metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} + enable_index_compression=true + verify_compression=false + prepopulate_block_cache=kDisable + format_version=6 + use_delta_encoding=true + pin_top_level_index_and_filter=true + read_amp_bytes_per_bit=0 + decouple_partitioned_filters=false + partition_filters=false + metadata_block_size=4096 + max_auto_readahead_size=262144 + index_block_restart_interval=1 + block_size_deviation=10 + block_size=4096 + detect_filter_construct_corruption=false + no_block_cache=false + checksum=kXXH3 + filter_policy=nullptr + data_block_hash_table_util_ratio=0.750000 + block_restart_interval=16 + index_type=kBinarySearch + pin_l0_filter_and_index_blocks_in_cache=false + data_block_index_type=kDataBlockBinarySearch + cache_index_and_filter_blocks_with_high_priority=true + whole_key_filtering=true + index_shortening=kShortenSeparators + cache_index_and_filter_blocks=false + block_align=false + optimize_filters_for_memory=true + flush_block_policy_factory=FlushBlockBySizePolicyFactory + + +[CFOptions "version"] + memtable_max_range_deletions=0 + compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_memory_checks=false + block_protection_bytes_per_key=0 + uncache_aggressiveness=0 + bottommost_file_compaction_delay=0 + memtable_protection_bytes_per_key=0 + experimental_mempurge_threshold=0.000000 + bottommost_compression=kDisableCompressionOption + sample_for_compression=0 + prepopulate_blob_cache=kDisable + blob_file_starting_level=0 + blob_compaction_readahead_size=0 + table_factory=BlockBasedTable + max_successive_merges=0 + max_write_buffer_number=2 + prefix_extractor=nullptr + memtable_huge_page_size=0 + write_buffer_size=10485760 + strict_max_successive_merges=false + arena_block_size=1048576 + level0_file_num_compaction_trigger=4 + report_bg_io_stats=false + inplace_update_num_locks=10000 + memtable_prefix_bloom_size_ratio=0.000000 + level0_stop_writes_trigger=36 + blob_compression_type=kNoCompression + level0_slowdown_writes_trigger=20 + hard_pending_compaction_bytes_limit=274877906944 + target_file_size_multiplier=1 + bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_file_checks=false + blob_garbage_collection_force_threshold=1.000000 + enable_blob_files=false + soft_pending_compaction_bytes_limit=68719476736 + target_file_size_base=67108864 + max_compaction_bytes=1677721600 + disable_auto_compactions=false + min_blob_size=0 + memtable_whole_key_filtering=false + max_bytes_for_level_base=268435456 + last_level_temperature=kUnknown + preserve_internal_time_seconds=0 + compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} + max_bytes_for_level_multiplier=10.000000 + max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 + max_sequential_skip_in_iterations=8 + compression=kLZ4Compression + default_write_temperature=kUnknown + compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} + blob_garbage_collection_age_cutoff=0.250000 + ttl=2592000 + periodic_compaction_seconds=0 + preclude_last_level_data_seconds=0 + blob_file_size=268435456 + enable_blob_garbage_collection=false + persist_user_defined_timestamps=true + compaction_pri=kMinOverlappingRatio + compaction_filter_factory=nullptr + comparator=leveldb.BytewiseComparator + bloom_locality=0 + merge_operator=nullptr + compaction_filter=nullptr + level_compaction_dynamic_level_bytes=true + optimize_filters_for_hits=false + inplace_update_support=false + max_write_buffer_number_to_maintain=0 + max_write_buffer_size_to_maintain=0 + sst_partitioner_factory=nullptr + default_temperature=kUnknown + compaction_style=kCompactionStyleLevel + min_write_buffer_number_to_merge=1 + memtable_factory=SkipListFactory + memtable_insert_with_hint_prefix_extractor=nullptr + force_consistency_checks=true + num_levels=7 + +[TableOptions/BlockBasedTable "version"] + num_file_reads_for_auto_readahead=2 + initial_auto_readahead_size=8192 + metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} + enable_index_compression=true + verify_compression=false + prepopulate_block_cache=kDisable + format_version=6 + use_delta_encoding=true + pin_top_level_index_and_filter=true + read_amp_bytes_per_bit=0 + decouple_partitioned_filters=false + partition_filters=false + metadata_block_size=4096 + max_auto_readahead_size=262144 + index_block_restart_interval=1 + block_size_deviation=10 + block_size=4096 + detect_filter_construct_corruption=false + no_block_cache=false + checksum=kXXH3 + filter_policy=nullptr + data_block_hash_table_util_ratio=0.750000 + block_restart_interval=16 + index_type=kBinarySearch + pin_l0_filter_and_index_blocks_in_cache=false + data_block_index_type=kDataBlockBinarySearch + cache_index_and_filter_blocks_with_high_priority=true + whole_key_filtering=true + index_shortening=kShortenSeparators + cache_index_and_filter_blocks=false + block_align=false + optimize_filters_for_memory=true + flush_block_policy_factory=FlushBlockBySizePolicyFactory + + +[CFOptions "vector"] + memtable_max_range_deletions=0 + compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_memory_checks=false + block_protection_bytes_per_key=0 + uncache_aggressiveness=0 + bottommost_file_compaction_delay=0 + memtable_protection_bytes_per_key=0 + experimental_mempurge_threshold=0.000000 + bottommost_compression=kDisableCompressionOption + sample_for_compression=0 + prepopulate_blob_cache=kDisable + blob_file_starting_level=0 + blob_compaction_readahead_size=0 + table_factory=BlockBasedTable + max_successive_merges=0 + max_write_buffer_number=2 + prefix_extractor=nullptr + memtable_huge_page_size=0 + write_buffer_size=10485760 + strict_max_successive_merges=false + arena_block_size=1048576 + level0_file_num_compaction_trigger=4 + report_bg_io_stats=false + inplace_update_num_locks=10000 + memtable_prefix_bloom_size_ratio=0.000000 + level0_stop_writes_trigger=36 + blob_compression_type=kNoCompression + level0_slowdown_writes_trigger=20 + hard_pending_compaction_bytes_limit=274877906944 + target_file_size_multiplier=1 + bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_file_checks=false + blob_garbage_collection_force_threshold=1.000000 + enable_blob_files=false + soft_pending_compaction_bytes_limit=68719476736 + target_file_size_base=67108864 + max_compaction_bytes=1677721600 + disable_auto_compactions=false + min_blob_size=0 + memtable_whole_key_filtering=false + max_bytes_for_level_base=268435456 + last_level_temperature=kUnknown + preserve_internal_time_seconds=0 + compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} + max_bytes_for_level_multiplier=10.000000 + max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 + max_sequential_skip_in_iterations=8 + compression=kLZ4Compression + default_write_temperature=kUnknown + compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} + blob_garbage_collection_age_cutoff=0.250000 + ttl=2592000 + periodic_compaction_seconds=0 + preclude_last_level_data_seconds=0 + blob_file_size=268435456 + enable_blob_garbage_collection=false + persist_user_defined_timestamps=true + compaction_pri=kMinOverlappingRatio + compaction_filter_factory=nullptr + comparator=leveldb.BytewiseComparator + bloom_locality=0 + merge_operator=nullptr + compaction_filter=nullptr + level_compaction_dynamic_level_bytes=true + optimize_filters_for_hits=false + inplace_update_support=false + max_write_buffer_number_to_maintain=0 + max_write_buffer_size_to_maintain=0 + sst_partitioner_factory=nullptr + default_temperature=kUnknown + compaction_style=kCompactionStyleLevel + min_write_buffer_number_to_merge=1 + memtable_factory=SkipListFactory + memtable_insert_with_hint_prefix_extractor=nullptr + force_consistency_checks=true + num_levels=7 + +[TableOptions/BlockBasedTable "vector"] + num_file_reads_for_auto_readahead=2 + initial_auto_readahead_size=8192 + metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} + enable_index_compression=true + verify_compression=false + prepopulate_block_cache=kDisable + format_version=6 + use_delta_encoding=true + pin_top_level_index_and_filter=true + read_amp_bytes_per_bit=0 + decouple_partitioned_filters=false + partition_filters=false + metadata_block_size=4096 + max_auto_readahead_size=262144 + index_block_restart_interval=1 + block_size_deviation=10 + block_size=4096 + detect_filter_construct_corruption=false + no_block_cache=false + checksum=kXXH3 + filter_policy=nullptr + data_block_hash_table_util_ratio=0.750000 + block_restart_interval=16 + index_type=kBinarySearch + pin_l0_filter_and_index_blocks_in_cache=false + data_block_index_type=kDataBlockBinarySearch + cache_index_and_filter_blocks_with_high_priority=true + whole_key_filtering=true + index_shortening=kShortenSeparators + cache_index_and_filter_blocks=false + block_align=false + optimize_filters_for_memory=true + flush_block_policy_factory=FlushBlockBySizePolicyFactory + diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/payload_index/000012.log b/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/payload_index/000012.log new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/payload_index/CURRENT b/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/payload_index/CURRENT new file mode 100644 index 0000000000000000000000000000000000000000..625d147412870471b19d90716ccc20a7f207a5c3 --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/payload_index/CURRENT @@ -0,0 +1 @@ +MANIFEST-000013 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/payload_index/IDENTITY b/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/payload_index/IDENTITY new file mode 100644 index 0000000000000000000000000000000000000000..160798987b51c508aeca195440c4a3e6eb16fc20 --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/payload_index/IDENTITY @@ -0,0 +1 @@ +8382e1e7-f9b6-41f7-ba90-f41396784bd1 \ No newline at end of file diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/payload_index/LOCK b/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/payload_index/LOCK new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/payload_index/LOG b/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/payload_index/LOG new file mode 100644 index 0000000000000000000000000000000000000000..6cd1a70262738eac8233630a2b8e77b2624c70aa --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/payload_index/LOG @@ -0,0 +1,247 @@ +2025/05/04-10:09:55.818820 41 RocksDB version: 9.9.3 +2025/05/04-10:09:55.818986 41 Compile date 2024-12-05 01:25:31 +2025/05/04-10:09:55.818987 41 DB SUMMARY +2025/05/04-10:09:55.819021 41 Host name (Env): c5f2a9d061bb +2025/05/04-10:09:55.819022 41 DB Session ID: CD0SHR3DDC5AMRBDXMDD +2025/05/04-10:09:55.819579 41 CURRENT file: CURRENT +2025/05/04-10:09:55.819580 41 IDENTITY file: IDENTITY +2025/05/04-10:09:55.819584 41 MANIFEST file: MANIFEST-000009 size: 159 Bytes +2025/05/04-10:09:55.819585 41 SST files in ./storage/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/payload_index dir, Total Num: 0, files: +2025/05/04-10:09:55.819586 41 Write Ahead Log file in ./storage/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/payload_index: 000008.log size: 0 ; +2025/05/04-10:09:55.819587 41 Options.error_if_exists: 0 +2025/05/04-10:09:55.819588 41 Options.create_if_missing: 1 +2025/05/04-10:09:55.819589 41 Options.paranoid_checks: 1 +2025/05/04-10:09:55.819589 41 Options.flush_verify_memtable_count: 1 +2025/05/04-10:09:55.819590 41 Options.compaction_verify_record_count: 1 +2025/05/04-10:09:55.819591 41 Options.track_and_verify_wals_in_manifest: 0 +2025/05/04-10:09:55.819591 41 Options.verify_sst_unique_id_in_manifest: 1 +2025/05/04-10:09:55.819592 41 Options.env: 0xffff86034000 +2025/05/04-10:09:55.819592 41 Options.fs: PosixFileSystem +2025/05/04-10:09:55.819593 41 Options.info_log: 0xffff83ca2500 +2025/05/04-10:09:55.819594 41 Options.max_file_opening_threads: 16 +2025/05/04-10:09:55.819594 41 Options.statistics: (nil) +2025/05/04-10:09:55.819595 41 Options.use_fsync: 0 +2025/05/04-10:09:55.819596 41 Options.max_log_file_size: 1048576 +2025/05/04-10:09:55.819596 41 Options.max_manifest_file_size: 1073741824 +2025/05/04-10:09:55.819597 41 Options.log_file_time_to_roll: 0 +2025/05/04-10:09:55.819597 41 Options.keep_log_file_num: 1 +2025/05/04-10:09:55.819598 41 Options.recycle_log_file_num: 0 +2025/05/04-10:09:55.819599 41 Options.allow_fallocate: 1 +2025/05/04-10:09:55.819599 41 Options.allow_mmap_reads: 0 +2025/05/04-10:09:55.819600 41 Options.allow_mmap_writes: 0 +2025/05/04-10:09:55.819600 41 Options.use_direct_reads: 0 +2025/05/04-10:09:55.819601 41 Options.use_direct_io_for_flush_and_compaction: 0 +2025/05/04-10:09:55.819602 41 Options.create_missing_column_families: 1 +2025/05/04-10:09:55.819602 41 Options.db_log_dir: +2025/05/04-10:09:55.819603 41 Options.wal_dir: +2025/05/04-10:09:55.819603 41 Options.table_cache_numshardbits: 6 +2025/05/04-10:09:55.819604 41 Options.WAL_ttl_seconds: 0 +2025/05/04-10:09:55.819604 41 Options.WAL_size_limit_MB: 0 +2025/05/04-10:09:55.819606 41 Options.max_write_batch_group_size_bytes: 1048576 +2025/05/04-10:09:55.819607 41 Options.manifest_preallocation_size: 4194304 +2025/05/04-10:09:55.819608 41 Options.is_fd_close_on_exec: 1 +2025/05/04-10:09:55.819608 41 Options.advise_random_on_open: 1 +2025/05/04-10:09:55.819609 41 Options.db_write_buffer_size: 0 +2025/05/04-10:09:55.819610 41 Options.write_buffer_manager: 0xffff83c0a2c0 +2025/05/04-10:09:55.819610 41 Options.random_access_max_buffer_size: 1048576 +2025/05/04-10:09:55.819611 41 Options.use_adaptive_mutex: 0 +2025/05/04-10:09:55.819612 41 Options.rate_limiter: (nil) +2025/05/04-10:09:55.819613 41 Options.sst_file_manager.rate_bytes_per_sec: 0 +2025/05/04-10:09:55.819613 41 Options.wal_recovery_mode: 0 +2025/05/04-10:09:55.819615 41 Options.enable_thread_tracking: 0 +2025/05/04-10:09:55.819616 41 Options.enable_pipelined_write: 0 +2025/05/04-10:09:55.819617 41 Options.unordered_write: 0 +2025/05/04-10:09:55.819617 41 Options.allow_concurrent_memtable_write: 1 +2025/05/04-10:09:55.819618 41 Options.enable_write_thread_adaptive_yield: 1 +2025/05/04-10:09:55.819618 41 Options.write_thread_max_yield_usec: 100 +2025/05/04-10:09:55.819619 41 Options.write_thread_slow_yield_usec: 3 +2025/05/04-10:09:55.819619 41 Options.row_cache: None +2025/05/04-10:09:55.819620 41 Options.wal_filter: None +2025/05/04-10:09:55.819621 41 Options.avoid_flush_during_recovery: 0 +2025/05/04-10:09:55.819621 41 Options.allow_ingest_behind: 0 +2025/05/04-10:09:55.819622 41 Options.two_write_queues: 0 +2025/05/04-10:09:55.819622 41 Options.manual_wal_flush: 0 +2025/05/04-10:09:55.819624 41 Options.wal_compression: 0 +2025/05/04-10:09:55.819624 41 Options.background_close_inactive_wals: 0 +2025/05/04-10:09:55.819625 41 Options.atomic_flush: 0 +2025/05/04-10:09:55.819625 41 Options.avoid_unnecessary_blocking_io: 0 +2025/05/04-10:09:55.819627 41 Options.prefix_seek_opt_in_only: 0 +2025/05/04-10:09:55.819629 41 Options.persist_stats_to_disk: 0 +2025/05/04-10:09:55.819630 41 Options.write_dbid_to_manifest: 1 +2025/05/04-10:09:55.819631 41 Options.write_identity_file: 1 +2025/05/04-10:09:55.819631 41 Options.log_readahead_size: 0 +2025/05/04-10:09:55.819632 41 Options.file_checksum_gen_factory: Unknown +2025/05/04-10:09:55.819633 41 Options.best_efforts_recovery: 0 +2025/05/04-10:09:55.819633 41 Options.max_bgerror_resume_count: 2147483647 +2025/05/04-10:09:55.819634 41 Options.bgerror_resume_retry_interval: 1000000 +2025/05/04-10:09:55.819636 41 Options.allow_data_in_errors: 0 +2025/05/04-10:09:55.819637 41 Options.db_host_id: __hostname__ +2025/05/04-10:09:55.819638 41 Options.enforce_single_del_contracts: true +2025/05/04-10:09:55.819638 41 Options.metadata_write_temperature: kUnknown +2025/05/04-10:09:55.819639 41 Options.wal_write_temperature: kUnknown +2025/05/04-10:09:55.819639 41 Options.max_background_jobs: 2 +2025/05/04-10:09:55.819640 41 Options.max_background_compactions: -1 +2025/05/04-10:09:55.819641 41 Options.max_subcompactions: 1 +2025/05/04-10:09:55.819641 41 Options.avoid_flush_during_shutdown: 0 +2025/05/04-10:09:55.819642 41 Options.writable_file_max_buffer_size: 1048576 +2025/05/04-10:09:55.819642 41 Options.delayed_write_rate : 16777216 +2025/05/04-10:09:55.819643 41 Options.max_total_wal_size: 0 +2025/05/04-10:09:55.819644 41 Options.delete_obsolete_files_period_micros: 180000000 +2025/05/04-10:09:55.819644 41 Options.stats_dump_period_sec: 600 +2025/05/04-10:09:55.819645 41 Options.stats_persist_period_sec: 600 +2025/05/04-10:09:55.819646 41 Options.stats_history_buffer_size: 1048576 +2025/05/04-10:09:55.819646 41 Options.max_open_files: 256 +2025/05/04-10:09:55.819647 41 Options.bytes_per_sync: 0 +2025/05/04-10:09:55.819648 41 Options.wal_bytes_per_sync: 0 +2025/05/04-10:09:55.819648 41 Options.strict_bytes_per_sync: 0 +2025/05/04-10:09:55.819649 41 Options.compaction_readahead_size: 2097152 +2025/05/04-10:09:55.819649 41 Options.max_background_flushes: -1 +2025/05/04-10:09:55.819650 41 Options.daily_offpeak_time_utc: +2025/05/04-10:09:55.819651 41 Compression algorithms supported: +2025/05/04-10:09:55.819651 41 kZSTD supported: 0 +2025/05/04-10:09:55.819652 41 kXpressCompression supported: 0 +2025/05/04-10:09:55.819653 41 kBZip2Compression supported: 0 +2025/05/04-10:09:55.819653 41 kZSTDNotFinalCompression supported: 0 +2025/05/04-10:09:55.819654 41 kLZ4Compression supported: 1 +2025/05/04-10:09:55.819655 41 kZlibCompression supported: 0 +2025/05/04-10:09:55.819655 41 kLZ4HCCompression supported: 1 +2025/05/04-10:09:55.819656 41 kSnappyCompression supported: 1 +2025/05/04-10:09:55.819657 41 Fast CRC32 supported: Not supported on x86 +2025/05/04-10:09:55.819657 41 DMutex implementation: pthread_mutex_t +2025/05/04-10:09:55.819658 41 Jemalloc supported: 0 +2025/05/04-10:09:55.820890 41 Options.comparator: leveldb.BytewiseComparator +2025/05/04-10:09:55.820891 41 Options.merge_operator: None +2025/05/04-10:09:55.820892 41 Options.compaction_filter: None +2025/05/04-10:09:55.820892 41 Options.compaction_filter_factory: None +2025/05/04-10:09:55.820893 41 Options.sst_partitioner_factory: None +2025/05/04-10:09:55.820893 41 Options.memtable_factory: SkipListFactory +2025/05/04-10:09:55.820895 41 Options.table_factory: BlockBasedTable +2025/05/04-10:09:55.820905 41 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff83d32cc0) + cache_index_and_filter_blocks: 0 + cache_index_and_filter_blocks_with_high_priority: 1 + pin_l0_filter_and_index_blocks_in_cache: 0 + pin_top_level_index_and_filter: 1 + index_type: 0 + data_block_index_type: 0 + index_shortening: 1 + data_block_hash_table_util_ratio: 0.750000 + checksum: 4 + no_block_cache: 0 + block_cache: 0xffff83c0a210 + block_cache_name: LRUCache + block_cache_options: + capacity : 33554432 + num_shard_bits : 6 + strict_capacity_limit : 0 + memory_allocator : None + high_pri_pool_ratio: 0.500 + low_pri_pool_ratio: 0.000 + persistent_cache: (nil) + block_size: 4096 + block_size_deviation: 10 + block_restart_interval: 16 + index_block_restart_interval: 1 + metadata_block_size: 4096 + partition_filters: 0 + use_delta_encoding: 1 + filter_policy: nullptr + whole_key_filtering: 1 + verify_compression: 0 + read_amp_bytes_per_bit: 0 + format_version: 6 + enable_index_compression: 1 + block_align: 0 + max_auto_readahead_size: 262144 + prepopulate_block_cache: 0 + initial_auto_readahead_size: 8192 + num_file_reads_for_auto_readahead: 2 +2025/05/04-10:09:55.820907 41 Options.write_buffer_size: 10485760 +2025/05/04-10:09:55.820908 41 Options.max_write_buffer_number: 2 +2025/05/04-10:09:55.820908 41 Options.compression: LZ4 +2025/05/04-10:09:55.820909 41 Options.bottommost_compression: Disabled +2025/05/04-10:09:55.820910 41 Options.prefix_extractor: nullptr +2025/05/04-10:09:55.820910 41 Options.memtable_insert_with_hint_prefix_extractor: nullptr +2025/05/04-10:09:55.820911 41 Options.num_levels: 7 +2025/05/04-10:09:55.820911 41 Options.min_write_buffer_number_to_merge: 1 +2025/05/04-10:09:55.821029 41 Options.max_write_buffer_number_to_maintain: 0 +2025/05/04-10:09:55.821030 41 Options.max_write_buffer_size_to_maintain: 0 +2025/05/04-10:09:55.821030 41 Options.bottommost_compression_opts.window_bits: -14 +2025/05/04-10:09:55.821032 41 Options.bottommost_compression_opts.level: 32767 +2025/05/04-10:09:55.821034 41 Options.bottommost_compression_opts.strategy: 0 +2025/05/04-10:09:55.821036 41 Options.bottommost_compression_opts.max_dict_bytes: 0 +2025/05/04-10:09:55.821038 41 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 +2025/05/04-10:09:55.821039 41 Options.bottommost_compression_opts.parallel_threads: 1 +2025/05/04-10:09:55.821039 41 Options.bottommost_compression_opts.enabled: false +2025/05/04-10:09:55.821040 41 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 +2025/05/04-10:09:55.821040 41 Options.bottommost_compression_opts.use_zstd_dict_trainer: true +2025/05/04-10:09:55.821042 41 Options.compression_opts.window_bits: -14 +2025/05/04-10:09:55.821043 41 Options.compression_opts.level: 32767 +2025/05/04-10:09:55.821044 41 Options.compression_opts.strategy: 0 +2025/05/04-10:09:55.821044 41 Options.compression_opts.max_dict_bytes: 0 +2025/05/04-10:09:55.821045 41 Options.compression_opts.zstd_max_train_bytes: 0 +2025/05/04-10:09:55.821045 41 Options.compression_opts.use_zstd_dict_trainer: true +2025/05/04-10:09:55.821046 41 Options.compression_opts.parallel_threads: 1 +2025/05/04-10:09:55.821046 41 Options.compression_opts.enabled: false +2025/05/04-10:09:55.821047 41 Options.compression_opts.max_dict_buffer_bytes: 0 +2025/05/04-10:09:55.821048 41 Options.level0_file_num_compaction_trigger: 4 +2025/05/04-10:09:55.821049 41 Options.level0_slowdown_writes_trigger: 20 +2025/05/04-10:09:55.821049 41 Options.level0_stop_writes_trigger: 36 +2025/05/04-10:09:55.821050 41 Options.target_file_size_base: 67108864 +2025/05/04-10:09:55.821050 41 Options.target_file_size_multiplier: 1 +2025/05/04-10:09:55.821051 41 Options.max_bytes_for_level_base: 268435456 +2025/05/04-10:09:55.821053 41 Options.level_compaction_dynamic_level_bytes: 1 +2025/05/04-10:09:55.821129 41 Options.max_bytes_for_level_multiplier: 10.000000 +2025/05/04-10:09:55.821130 41 Options.max_bytes_for_level_multiplier_addtl[0]: 1 +2025/05/04-10:09:55.821131 41 Options.max_bytes_for_level_multiplier_addtl[1]: 1 +2025/05/04-10:09:55.821131 41 Options.max_bytes_for_level_multiplier_addtl[2]: 1 +2025/05/04-10:09:55.821132 41 Options.max_bytes_for_level_multiplier_addtl[3]: 1 +2025/05/04-10:09:55.821132 41 Options.max_bytes_for_level_multiplier_addtl[4]: 1 +2025/05/04-10:09:55.821133 41 Options.max_bytes_for_level_multiplier_addtl[5]: 1 +2025/05/04-10:09:55.821133 41 Options.max_bytes_for_level_multiplier_addtl[6]: 1 +2025/05/04-10:09:55.821134 41 Options.max_sequential_skip_in_iterations: 8 +2025/05/04-10:09:55.821134 41 Options.max_compaction_bytes: 1677721600 +2025/05/04-10:09:55.821135 41 Options.arena_block_size: 1048576 +2025/05/04-10:09:55.821136 41 Options.soft_pending_compaction_bytes_limit: 68719476736 +2025/05/04-10:09:55.821136 41 Options.hard_pending_compaction_bytes_limit: 274877906944 +2025/05/04-10:09:55.821137 41 Options.disable_auto_compactions: 0 +2025/05/04-10:09:55.821137 41 Options.compaction_style: kCompactionStyleLevel +2025/05/04-10:09:55.821138 41 Options.compaction_pri: kMinOverlappingRatio +2025/05/04-10:09:55.821139 41 Options.compaction_options_universal.size_ratio: 1 +2025/05/04-10:09:55.821139 41 Options.compaction_options_universal.min_merge_width: 2 +2025/05/04-10:09:55.821140 41 Options.compaction_options_universal.max_merge_width: 4294967295 +2025/05/04-10:09:55.821157 41 Options.compaction_options_universal.max_size_amplification_percent: 200 +2025/05/04-10:09:55.821158 41 Options.compaction_options_universal.compression_size_percent: -1 +2025/05/04-10:09:55.821159 41 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize +2025/05/04-10:09:55.821160 41 Options.compaction_options_universal.max_read_amp: -1 +2025/05/04-10:09:55.821160 41 Options.compaction_options_fifo.max_table_files_size: 1073741824 +2025/05/04-10:09:55.821161 41 Options.compaction_options_fifo.allow_compaction: 0 +2025/05/04-10:09:55.821162 41 Options.table_properties_collectors: +2025/05/04-10:09:55.821163 41 Options.inplace_update_support: 0 +2025/05/04-10:09:55.821163 41 Options.inplace_update_num_locks: 10000 +2025/05/04-10:09:55.821183 41 Options.memtable_prefix_bloom_size_ratio: 0.000000 +2025/05/04-10:09:55.821185 41 Options.memtable_whole_key_filtering: 0 +2025/05/04-10:09:55.821185 41 Options.memtable_huge_page_size: 0 +2025/05/04-10:09:55.821186 41 Options.bloom_locality: 0 +2025/05/04-10:09:55.821186 41 Options.max_successive_merges: 0 +2025/05/04-10:09:55.821187 41 Options.strict_max_successive_merges: 0 +2025/05/04-10:09:55.821188 41 Options.optimize_filters_for_hits: 0 +2025/05/04-10:09:55.821188 41 Options.paranoid_file_checks: 0 +2025/05/04-10:09:55.821189 41 Options.force_consistency_checks: 1 +2025/05/04-10:09:55.821189 41 Options.report_bg_io_stats: 0 +2025/05/04-10:09:55.821190 41 Options.ttl: 2592000 +2025/05/04-10:09:55.821191 41 Options.periodic_compaction_seconds: 0 +2025/05/04-10:09:55.821191 41 Options.default_temperature: kUnknown +2025/05/04-10:09:55.821192 41 Options.preclude_last_level_data_seconds: 0 +2025/05/04-10:09:55.821192 41 Options.preserve_internal_time_seconds: 0 +2025/05/04-10:09:55.821193 41 Options.enable_blob_files: false +2025/05/04-10:09:55.821193 41 Options.min_blob_size: 0 +2025/05/04-10:09:55.821194 41 Options.blob_file_size: 268435456 +2025/05/04-10:09:55.821195 41 Options.blob_compression_type: NoCompression +2025/05/04-10:09:55.821196 41 Options.enable_blob_garbage_collection: false +2025/05/04-10:09:55.821196 41 Options.blob_garbage_collection_age_cutoff: 0.250000 +2025/05/04-10:09:55.821197 41 Options.blob_garbage_collection_force_threshold: 1.000000 +2025/05/04-10:09:55.821198 41 Options.blob_compaction_readahead_size: 0 +2025/05/04-10:09:55.821198 41 Options.blob_file_starting_level: 0 +2025/05/04-10:09:55.821199 41 Options.experimental_mempurge_threshold: 0.000000 +2025/05/04-10:09:55.821199 41 Options.memtable_max_range_deletions: 0 +2025/05/04-10:09:55.828685 41 DB pointer 0xffff83c62000 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/payload_index/MANIFEST-000013 b/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/payload_index/MANIFEST-000013 new file mode 100644 index 0000000000000000000000000000000000000000..9eb8902264650ba28dfda66d8cfd0989d1a680cd Binary files /dev/null and b/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/payload_index/MANIFEST-000013 differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/payload_index/OPTIONS-000011 b/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/payload_index/OPTIONS-000011 new file mode 100644 index 0000000000000000000000000000000000000000..1ff6c6ffcc08e04f8a99e1f459e7b0caa1822cb2 --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/payload_index/OPTIONS-000011 @@ -0,0 +1,214 @@ +# This is a RocksDB option file. +# +# For detailed file format spec, please refer to the example file +# in examples/rocksdb_option_file_example.ini +# + +[Version] + rocksdb_version=9.9.3 + options_file_version=1.1 + +[DBOptions] + compaction_readahead_size=2097152 + strict_bytes_per_sync=false + bytes_per_sync=0 + max_background_jobs=2 + avoid_flush_during_shutdown=false + max_background_flushes=-1 + delayed_write_rate=16777216 + max_open_files=256 + max_subcompactions=1 + writable_file_max_buffer_size=1048576 + wal_bytes_per_sync=0 + max_background_compactions=-1 + max_total_wal_size=0 + delete_obsolete_files_period_micros=180000000 + stats_dump_period_sec=600 + stats_history_buffer_size=1048576 + stats_persist_period_sec=600 + follower_refresh_catchup_period_ms=10000 + enforce_single_del_contracts=true + lowest_used_cache_tier=kNonVolatileBlockTier + bgerror_resume_retry_interval=1000000 + metadata_write_temperature=kUnknown + best_efforts_recovery=false + log_readahead_size=0 + write_identity_file=true + write_dbid_to_manifest=true + prefix_seek_opt_in_only=false + wal_compression=kNoCompression + manual_wal_flush=false + db_host_id=__hostname__ + two_write_queues=false + random_access_max_buffer_size=1048576 + avoid_unnecessary_blocking_io=false + skip_checking_sst_file_sizes_on_db_open=false + flush_verify_memtable_count=true + fail_if_options_file_error=true + atomic_flush=false + verify_sst_unique_id_in_manifest=true + skip_stats_update_on_db_open=false + track_and_verify_wals_in_manifest=false + compaction_verify_record_count=true + paranoid_checks=true + create_if_missing=true + max_write_batch_group_size_bytes=1048576 + follower_catchup_retry_count=10 + avoid_flush_during_recovery=false + file_checksum_gen_factory=nullptr + enable_thread_tracking=false + allow_fallocate=true + allow_data_in_errors=false + error_if_exists=false + use_direct_io_for_flush_and_compaction=false + background_close_inactive_wals=false + create_missing_column_families=true + WAL_size_limit_MB=0 + use_direct_reads=false + persist_stats_to_disk=false + allow_2pc=false + is_fd_close_on_exec=true + max_log_file_size=1048576 + max_file_opening_threads=16 + wal_filter=nullptr + wal_write_temperature=kUnknown + follower_catchup_retry_wait_ms=100 + allow_mmap_reads=false + allow_mmap_writes=false + use_adaptive_mutex=false + use_fsync=false + table_cache_numshardbits=6 + dump_malloc_stats=false + db_write_buffer_size=0 + allow_ingest_behind=false + keep_log_file_num=1 + max_bgerror_resume_count=2147483647 + allow_concurrent_memtable_write=true + recycle_log_file_num=0 + log_file_time_to_roll=0 + manifest_preallocation_size=4194304 + enable_write_thread_adaptive_yield=true + WAL_ttl_seconds=0 + max_manifest_file_size=1073741824 + wal_recovery_mode=kTolerateCorruptedTailRecords + enable_pipelined_write=false + write_thread_slow_yield_usec=3 + unordered_write=false + write_thread_max_yield_usec=100 + advise_random_on_open=true + info_log_level=ERROR_LEVEL + + +[CFOptions "default"] + memtable_max_range_deletions=0 + compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_memory_checks=false + block_protection_bytes_per_key=0 + uncache_aggressiveness=0 + bottommost_file_compaction_delay=0 + memtable_protection_bytes_per_key=0 + experimental_mempurge_threshold=0.000000 + bottommost_compression=kDisableCompressionOption + sample_for_compression=0 + prepopulate_blob_cache=kDisable + blob_file_starting_level=0 + blob_compaction_readahead_size=0 + table_factory=BlockBasedTable + max_successive_merges=0 + max_write_buffer_number=2 + prefix_extractor=nullptr + memtable_huge_page_size=0 + write_buffer_size=10485760 + strict_max_successive_merges=false + arena_block_size=1048576 + level0_file_num_compaction_trigger=4 + report_bg_io_stats=false + inplace_update_num_locks=10000 + memtable_prefix_bloom_size_ratio=0.000000 + level0_stop_writes_trigger=36 + blob_compression_type=kNoCompression + level0_slowdown_writes_trigger=20 + hard_pending_compaction_bytes_limit=274877906944 + target_file_size_multiplier=1 + bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_file_checks=false + blob_garbage_collection_force_threshold=1.000000 + enable_blob_files=false + soft_pending_compaction_bytes_limit=68719476736 + target_file_size_base=67108864 + max_compaction_bytes=1677721600 + disable_auto_compactions=false + min_blob_size=0 + memtable_whole_key_filtering=false + max_bytes_for_level_base=268435456 + last_level_temperature=kUnknown + preserve_internal_time_seconds=0 + compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} + max_bytes_for_level_multiplier=10.000000 + max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 + max_sequential_skip_in_iterations=8 + compression=kLZ4Compression + default_write_temperature=kUnknown + compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} + blob_garbage_collection_age_cutoff=0.250000 + ttl=2592000 + periodic_compaction_seconds=0 + preclude_last_level_data_seconds=0 + blob_file_size=268435456 + enable_blob_garbage_collection=false + persist_user_defined_timestamps=true + compaction_pri=kMinOverlappingRatio + compaction_filter_factory=nullptr + comparator=leveldb.BytewiseComparator + bloom_locality=0 + merge_operator=nullptr + compaction_filter=nullptr + level_compaction_dynamic_level_bytes=true + optimize_filters_for_hits=false + inplace_update_support=false + max_write_buffer_number_to_maintain=0 + max_write_buffer_size_to_maintain=0 + sst_partitioner_factory=nullptr + default_temperature=kUnknown + compaction_style=kCompactionStyleLevel + min_write_buffer_number_to_merge=1 + memtable_factory=SkipListFactory + memtable_insert_with_hint_prefix_extractor=nullptr + force_consistency_checks=true + num_levels=7 + +[TableOptions/BlockBasedTable "default"] + num_file_reads_for_auto_readahead=2 + initial_auto_readahead_size=8192 + metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} + enable_index_compression=true + verify_compression=false + prepopulate_block_cache=kDisable + format_version=6 + use_delta_encoding=true + pin_top_level_index_and_filter=true + read_amp_bytes_per_bit=0 + decouple_partitioned_filters=false + partition_filters=false + metadata_block_size=4096 + max_auto_readahead_size=262144 + index_block_restart_interval=1 + block_size_deviation=10 + block_size=4096 + detect_filter_construct_corruption=false + no_block_cache=false + checksum=kXXH3 + filter_policy=nullptr + data_block_hash_table_util_ratio=0.750000 + block_restart_interval=16 + index_type=kBinarySearch + pin_l0_filter_and_index_blocks_in_cache=false + data_block_index_type=kDataBlockBinarySearch + cache_index_and_filter_blocks_with_high_priority=true + whole_key_filtering=true + index_shortening=kShortenSeparators + cache_index_and_filter_blocks=false + block_align=false + optimize_filters_for_memory=true + flush_block_policy_factory=FlushBlockBySizePolicyFactory + diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/payload_index/OPTIONS-000015 b/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/payload_index/OPTIONS-000015 new file mode 100644 index 0000000000000000000000000000000000000000..1ff6c6ffcc08e04f8a99e1f459e7b0caa1822cb2 --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/payload_index/OPTIONS-000015 @@ -0,0 +1,214 @@ +# This is a RocksDB option file. +# +# For detailed file format spec, please refer to the example file +# in examples/rocksdb_option_file_example.ini +# + +[Version] + rocksdb_version=9.9.3 + options_file_version=1.1 + +[DBOptions] + compaction_readahead_size=2097152 + strict_bytes_per_sync=false + bytes_per_sync=0 + max_background_jobs=2 + avoid_flush_during_shutdown=false + max_background_flushes=-1 + delayed_write_rate=16777216 + max_open_files=256 + max_subcompactions=1 + writable_file_max_buffer_size=1048576 + wal_bytes_per_sync=0 + max_background_compactions=-1 + max_total_wal_size=0 + delete_obsolete_files_period_micros=180000000 + stats_dump_period_sec=600 + stats_history_buffer_size=1048576 + stats_persist_period_sec=600 + follower_refresh_catchup_period_ms=10000 + enforce_single_del_contracts=true + lowest_used_cache_tier=kNonVolatileBlockTier + bgerror_resume_retry_interval=1000000 + metadata_write_temperature=kUnknown + best_efforts_recovery=false + log_readahead_size=0 + write_identity_file=true + write_dbid_to_manifest=true + prefix_seek_opt_in_only=false + wal_compression=kNoCompression + manual_wal_flush=false + db_host_id=__hostname__ + two_write_queues=false + random_access_max_buffer_size=1048576 + avoid_unnecessary_blocking_io=false + skip_checking_sst_file_sizes_on_db_open=false + flush_verify_memtable_count=true + fail_if_options_file_error=true + atomic_flush=false + verify_sst_unique_id_in_manifest=true + skip_stats_update_on_db_open=false + track_and_verify_wals_in_manifest=false + compaction_verify_record_count=true + paranoid_checks=true + create_if_missing=true + max_write_batch_group_size_bytes=1048576 + follower_catchup_retry_count=10 + avoid_flush_during_recovery=false + file_checksum_gen_factory=nullptr + enable_thread_tracking=false + allow_fallocate=true + allow_data_in_errors=false + error_if_exists=false + use_direct_io_for_flush_and_compaction=false + background_close_inactive_wals=false + create_missing_column_families=true + WAL_size_limit_MB=0 + use_direct_reads=false + persist_stats_to_disk=false + allow_2pc=false + is_fd_close_on_exec=true + max_log_file_size=1048576 + max_file_opening_threads=16 + wal_filter=nullptr + wal_write_temperature=kUnknown + follower_catchup_retry_wait_ms=100 + allow_mmap_reads=false + allow_mmap_writes=false + use_adaptive_mutex=false + use_fsync=false + table_cache_numshardbits=6 + dump_malloc_stats=false + db_write_buffer_size=0 + allow_ingest_behind=false + keep_log_file_num=1 + max_bgerror_resume_count=2147483647 + allow_concurrent_memtable_write=true + recycle_log_file_num=0 + log_file_time_to_roll=0 + manifest_preallocation_size=4194304 + enable_write_thread_adaptive_yield=true + WAL_ttl_seconds=0 + max_manifest_file_size=1073741824 + wal_recovery_mode=kTolerateCorruptedTailRecords + enable_pipelined_write=false + write_thread_slow_yield_usec=3 + unordered_write=false + write_thread_max_yield_usec=100 + advise_random_on_open=true + info_log_level=ERROR_LEVEL + + +[CFOptions "default"] + memtable_max_range_deletions=0 + compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_memory_checks=false + block_protection_bytes_per_key=0 + uncache_aggressiveness=0 + bottommost_file_compaction_delay=0 + memtable_protection_bytes_per_key=0 + experimental_mempurge_threshold=0.000000 + bottommost_compression=kDisableCompressionOption + sample_for_compression=0 + prepopulate_blob_cache=kDisable + blob_file_starting_level=0 + blob_compaction_readahead_size=0 + table_factory=BlockBasedTable + max_successive_merges=0 + max_write_buffer_number=2 + prefix_extractor=nullptr + memtable_huge_page_size=0 + write_buffer_size=10485760 + strict_max_successive_merges=false + arena_block_size=1048576 + level0_file_num_compaction_trigger=4 + report_bg_io_stats=false + inplace_update_num_locks=10000 + memtable_prefix_bloom_size_ratio=0.000000 + level0_stop_writes_trigger=36 + blob_compression_type=kNoCompression + level0_slowdown_writes_trigger=20 + hard_pending_compaction_bytes_limit=274877906944 + target_file_size_multiplier=1 + bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_file_checks=false + blob_garbage_collection_force_threshold=1.000000 + enable_blob_files=false + soft_pending_compaction_bytes_limit=68719476736 + target_file_size_base=67108864 + max_compaction_bytes=1677721600 + disable_auto_compactions=false + min_blob_size=0 + memtable_whole_key_filtering=false + max_bytes_for_level_base=268435456 + last_level_temperature=kUnknown + preserve_internal_time_seconds=0 + compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} + max_bytes_for_level_multiplier=10.000000 + max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 + max_sequential_skip_in_iterations=8 + compression=kLZ4Compression + default_write_temperature=kUnknown + compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} + blob_garbage_collection_age_cutoff=0.250000 + ttl=2592000 + periodic_compaction_seconds=0 + preclude_last_level_data_seconds=0 + blob_file_size=268435456 + enable_blob_garbage_collection=false + persist_user_defined_timestamps=true + compaction_pri=kMinOverlappingRatio + compaction_filter_factory=nullptr + comparator=leveldb.BytewiseComparator + bloom_locality=0 + merge_operator=nullptr + compaction_filter=nullptr + level_compaction_dynamic_level_bytes=true + optimize_filters_for_hits=false + inplace_update_support=false + max_write_buffer_number_to_maintain=0 + max_write_buffer_size_to_maintain=0 + sst_partitioner_factory=nullptr + default_temperature=kUnknown + compaction_style=kCompactionStyleLevel + min_write_buffer_number_to_merge=1 + memtable_factory=SkipListFactory + memtable_insert_with_hint_prefix_extractor=nullptr + force_consistency_checks=true + num_levels=7 + +[TableOptions/BlockBasedTable "default"] + num_file_reads_for_auto_readahead=2 + initial_auto_readahead_size=8192 + metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} + enable_index_compression=true + verify_compression=false + prepopulate_block_cache=kDisable + format_version=6 + use_delta_encoding=true + pin_top_level_index_and_filter=true + read_amp_bytes_per_bit=0 + decouple_partitioned_filters=false + partition_filters=false + metadata_block_size=4096 + max_auto_readahead_size=262144 + index_block_restart_interval=1 + block_size_deviation=10 + block_size=4096 + detect_filter_construct_corruption=false + no_block_cache=false + checksum=kXXH3 + filter_policy=nullptr + data_block_hash_table_util_ratio=0.750000 + block_restart_interval=16 + index_type=kBinarySearch + pin_l0_filter_and_index_blocks_in_cache=false + data_block_index_type=kDataBlockBinarySearch + cache_index_and_filter_blocks_with_high_priority=true + whole_key_filtering=true + index_shortening=kShortenSeparators + cache_index_and_filter_blocks=false + block_align=false + optimize_filters_for_memory=true + flush_block_policy_factory=FlushBlockBySizePolicyFactory + diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/payload_index/config.json b/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/payload_index/config.json new file mode 100644 index 0000000000000000000000000000000000000000..7d0db25a817fdb0c73414e2809921889f6ff065f --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/payload_index/config.json @@ -0,0 +1 @@ +{"indexed_fields":{},"skip_rocksdb":null} \ No newline at end of file diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/payload_storage/bitmask.dat b/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/payload_storage/bitmask.dat new file mode 100644 index 0000000000000000000000000000000000000000..92c825d0a9ed9381e64f332b01a389d1dad66291 Binary files /dev/null and b/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/payload_storage/bitmask.dat differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/payload_storage/config.json b/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/payload_storage/config.json new file mode 100644 index 0000000000000000000000000000000000000000..9477c128b4ebf57927ba47096ca8af9166799c4f --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/payload_storage/config.json @@ -0,0 +1 @@ +{"page_size_bytes":33554432,"block_size_bytes":128,"region_size_blocks":8192,"compression":"LZ4"} \ No newline at end of file diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/payload_storage/gaps.dat b/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/payload_storage/gaps.dat new file mode 100644 index 0000000000000000000000000000000000000000..14fd3b70f561e860dfadd9db6795008692ecb51f Binary files /dev/null and b/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/payload_storage/gaps.dat differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/payload_storage/page_0.dat b/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/payload_storage/page_0.dat new file mode 100644 index 0000000000000000000000000000000000000000..3055d67e0beb996177f67c44dea0e23ee95de08e Binary files /dev/null and b/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/payload_storage/page_0.dat differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/payload_storage/tracker.dat b/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/payload_storage/tracker.dat new file mode 100644 index 0000000000000000000000000000000000000000..029eba918e4fbf96e64cfb3812e378cc82f24e12 Binary files /dev/null and b/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/payload_storage/tracker.dat differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/segment.json b/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/segment.json new file mode 100644 index 0000000000000000000000000000000000000000..b6e43557791e1dc4a56c5570afe77d3744e3c6a0 --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/segment.json @@ -0,0 +1 @@ +{"version":6,"config":{"vector_data":{"":{"size":1536,"distance":"Cosine","storage_type":"InRamChunkedMmap","index":{"type":"plain","options":{}},"quantization_config":null}},"payload_storage_type":{"type":"mmap"}}} \ No newline at end of file diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/vector_storage/deleted/flags_a.dat b/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/vector_storage/deleted/flags_a.dat new file mode 100644 index 0000000000000000000000000000000000000000..9e0f96a2a253b173cb45b41868209a5d043e1437 Binary files /dev/null and b/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/vector_storage/deleted/flags_a.dat differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/vector_storage/deleted/status.dat b/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/vector_storage/deleted/status.dat new file mode 100644 index 0000000000000000000000000000000000000000..2ae625c2a69481b83a6bb2f17119e6a4bbed4638 Binary files /dev/null and b/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/vector_storage/deleted/status.dat differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/vector_storage/vectors/chunk_0.mmap b/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/vector_storage/vectors/chunk_0.mmap new file mode 100644 index 0000000000000000000000000000000000000000..a4eb57062a87fa66f7618aa1098b6abd8ed3fbdf Binary files /dev/null and b/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/vector_storage/vectors/chunk_0.mmap differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/vector_storage/vectors/config.json b/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/vector_storage/vectors/config.json new file mode 100644 index 0000000000000000000000000000000000000000..ff57a41ff8c6af2be033c6652e21559c49b5a9fa --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/vector_storage/vectors/config.json @@ -0,0 +1 @@ +{"chunk_size_bytes":33552384,"chunk_size_vectors":5461,"dim":1536,"mlock":false,"populate":true} \ No newline at end of file diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/vector_storage/vectors/status.dat b/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/vector_storage/vectors/status.dat new file mode 100644 index 0000000000000000000000000000000000000000..71c2a58453e27ee89ad7d15b1a5f12433409fff4 Binary files /dev/null and b/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/vector_storage/vectors/status.dat differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/version.info b/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/version.info new file mode 100644 index 0000000000000000000000000000000000000000..09a3acfa138db01dc50a688796b2861638c369ec --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/879291bf-c9d9-4654-aef3-63dd439a9557/version.info @@ -0,0 +1 @@ +0.6.0 \ No newline at end of file diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/000017.sst b/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/000017.sst new file mode 100644 index 0000000000000000000000000000000000000000..7c6e96b23171a4ca85b49bca2f9e210a44cc4e3d Binary files /dev/null and b/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/000017.sst differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/000018.log b/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/000018.log new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/000019.sst b/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/000019.sst new file mode 100644 index 0000000000000000000000000000000000000000..c4d158a68ffb1e6061e808b4af512b7fd5dcd254 Binary files /dev/null and b/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/000019.sst differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/CURRENT b/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/CURRENT new file mode 100644 index 0000000000000000000000000000000000000000..625d147412870471b19d90716ccc20a7f207a5c3 --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/CURRENT @@ -0,0 +1 @@ +MANIFEST-000013 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/IDENTITY b/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/IDENTITY new file mode 100644 index 0000000000000000000000000000000000000000..902fd9efe059c85c739171eb97b6bd324609fdc6 --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/IDENTITY @@ -0,0 +1 @@ +76584de6-ffc4-4cc4-ac16-d309a201a939 \ No newline at end of file diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/LOCK b/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/LOCK new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/LOG b/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/LOG new file mode 100644 index 0000000000000000000000000000000000000000..db965eb6126b0526b3502af18a7e30fb34f50641 --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/LOG @@ -0,0 +1,787 @@ +2025/05/04-10:09:55.594938 37 RocksDB version: 9.9.3 +2025/05/04-10:09:55.595104 37 Compile date 2024-12-05 01:25:31 +2025/05/04-10:09:55.595106 37 DB SUMMARY +2025/05/04-10:09:55.595107 37 Host name (Env): c5f2a9d061bb +2025/05/04-10:09:55.595109 37 DB Session ID: CD0SHR3DDC5AMRBDXMDQ +2025/05/04-10:09:55.595564 37 CURRENT file: CURRENT +2025/05/04-10:09:55.595566 37 IDENTITY file: IDENTITY +2025/05/04-10:09:55.595593 37 MANIFEST file: MANIFEST-000009 size: 497 Bytes +2025/05/04-10:09:55.595595 37 SST files in ./storage/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad dir, Total Num: 0, files: +2025/05/04-10:09:55.595596 37 Write Ahead Log file in ./storage/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad: 000008.log size: 0 ; +2025/05/04-10:09:55.595597 37 Options.error_if_exists: 0 +2025/05/04-10:09:55.595598 37 Options.create_if_missing: 1 +2025/05/04-10:09:55.595599 37 Options.paranoid_checks: 1 +2025/05/04-10:09:55.595599 37 Options.flush_verify_memtable_count: 1 +2025/05/04-10:09:55.595600 37 Options.compaction_verify_record_count: 1 +2025/05/04-10:09:55.595601 37 Options.track_and_verify_wals_in_manifest: 0 +2025/05/04-10:09:55.595602 37 Options.verify_sst_unique_id_in_manifest: 1 +2025/05/04-10:09:55.595603 37 Options.env: 0xffff86034000 +2025/05/04-10:09:55.595604 37 Options.fs: PosixFileSystem +2025/05/04-10:09:55.595604 37 Options.info_log: 0xffff860ac000 +2025/05/04-10:09:55.595605 37 Options.max_file_opening_threads: 16 +2025/05/04-10:09:55.595606 37 Options.statistics: (nil) +2025/05/04-10:09:55.595607 37 Options.use_fsync: 0 +2025/05/04-10:09:55.595607 37 Options.max_log_file_size: 1048576 +2025/05/04-10:09:55.595608 37 Options.max_manifest_file_size: 1073741824 +2025/05/04-10:09:55.595609 37 Options.log_file_time_to_roll: 0 +2025/05/04-10:09:55.595609 37 Options.keep_log_file_num: 1 +2025/05/04-10:09:55.595610 37 Options.recycle_log_file_num: 0 +2025/05/04-10:09:55.595611 37 Options.allow_fallocate: 1 +2025/05/04-10:09:55.595611 37 Options.allow_mmap_reads: 0 +2025/05/04-10:09:55.595612 37 Options.allow_mmap_writes: 0 +2025/05/04-10:09:55.595612 37 Options.use_direct_reads: 0 +2025/05/04-10:09:55.595613 37 Options.use_direct_io_for_flush_and_compaction: 0 +2025/05/04-10:09:55.595614 37 Options.create_missing_column_families: 1 +2025/05/04-10:09:55.595614 37 Options.db_log_dir: +2025/05/04-10:09:55.595615 37 Options.wal_dir: +2025/05/04-10:09:55.595615 37 Options.table_cache_numshardbits: 6 +2025/05/04-10:09:55.595616 37 Options.WAL_ttl_seconds: 0 +2025/05/04-10:09:55.595617 37 Options.WAL_size_limit_MB: 0 +2025/05/04-10:09:55.595618 37 Options.max_write_batch_group_size_bytes: 1048576 +2025/05/04-10:09:55.595618 37 Options.manifest_preallocation_size: 4194304 +2025/05/04-10:09:55.595619 37 Options.is_fd_close_on_exec: 1 +2025/05/04-10:09:55.595620 37 Options.advise_random_on_open: 1 +2025/05/04-10:09:55.595621 37 Options.db_write_buffer_size: 0 +2025/05/04-10:09:55.595621 37 Options.write_buffer_manager: 0xffff860090c0 +2025/05/04-10:09:55.595622 37 Options.random_access_max_buffer_size: 1048576 +2025/05/04-10:09:55.595623 37 Options.use_adaptive_mutex: 0 +2025/05/04-10:09:55.595624 37 Options.rate_limiter: (nil) +2025/05/04-10:09:55.595625 37 Options.sst_file_manager.rate_bytes_per_sec: 0 +2025/05/04-10:09:55.595625 37 Options.wal_recovery_mode: 0 +2025/05/04-10:09:55.595626 37 Options.enable_thread_tracking: 0 +2025/05/04-10:09:55.595627 37 Options.enable_pipelined_write: 0 +2025/05/04-10:09:55.595627 37 Options.unordered_write: 0 +2025/05/04-10:09:55.595629 37 Options.allow_concurrent_memtable_write: 1 +2025/05/04-10:09:55.595629 37 Options.enable_write_thread_adaptive_yield: 1 +2025/05/04-10:09:55.595630 37 Options.write_thread_max_yield_usec: 100 +2025/05/04-10:09:55.595631 37 Options.write_thread_slow_yield_usec: 3 +2025/05/04-10:09:55.595631 37 Options.row_cache: None +2025/05/04-10:09:55.595632 37 Options.wal_filter: None +2025/05/04-10:09:55.595632 37 Options.avoid_flush_during_recovery: 0 +2025/05/04-10:09:55.595633 37 Options.allow_ingest_behind: 0 +2025/05/04-10:09:55.595634 37 Options.two_write_queues: 0 +2025/05/04-10:09:55.595634 37 Options.manual_wal_flush: 0 +2025/05/04-10:09:55.595635 37 Options.wal_compression: 0 +2025/05/04-10:09:55.595635 37 Options.background_close_inactive_wals: 0 +2025/05/04-10:09:55.595636 37 Options.atomic_flush: 0 +2025/05/04-10:09:55.595637 37 Options.avoid_unnecessary_blocking_io: 0 +2025/05/04-10:09:55.595637 37 Options.prefix_seek_opt_in_only: 0 +2025/05/04-10:09:55.595638 37 Options.persist_stats_to_disk: 0 +2025/05/04-10:09:55.595638 37 Options.write_dbid_to_manifest: 1 +2025/05/04-10:09:55.595639 37 Options.write_identity_file: 1 +2025/05/04-10:09:55.595640 37 Options.log_readahead_size: 0 +2025/05/04-10:09:55.595641 37 Options.file_checksum_gen_factory: Unknown +2025/05/04-10:09:55.595641 37 Options.best_efforts_recovery: 0 +2025/05/04-10:09:55.595642 37 Options.max_bgerror_resume_count: 2147483647 +2025/05/04-10:09:55.595643 37 Options.bgerror_resume_retry_interval: 1000000 +2025/05/04-10:09:55.595643 37 Options.allow_data_in_errors: 0 +2025/05/04-10:09:55.595644 37 Options.db_host_id: __hostname__ +2025/05/04-10:09:55.595644 37 Options.enforce_single_del_contracts: true +2025/05/04-10:09:55.595646 37 Options.metadata_write_temperature: kUnknown +2025/05/04-10:09:55.595647 37 Options.wal_write_temperature: kUnknown +2025/05/04-10:09:55.595647 37 Options.max_background_jobs: 2 +2025/05/04-10:09:55.595648 37 Options.max_background_compactions: -1 +2025/05/04-10:09:55.595649 37 Options.max_subcompactions: 1 +2025/05/04-10:09:55.595649 37 Options.avoid_flush_during_shutdown: 0 +2025/05/04-10:09:55.595650 37 Options.writable_file_max_buffer_size: 1048576 +2025/05/04-10:09:55.595650 37 Options.delayed_write_rate : 16777216 +2025/05/04-10:09:55.595651 37 Options.max_total_wal_size: 0 +2025/05/04-10:09:55.595652 37 Options.delete_obsolete_files_period_micros: 180000000 +2025/05/04-10:09:55.595653 37 Options.stats_dump_period_sec: 600 +2025/05/04-10:09:55.595654 37 Options.stats_persist_period_sec: 600 +2025/05/04-10:09:55.595654 37 Options.stats_history_buffer_size: 1048576 +2025/05/04-10:09:55.595655 37 Options.max_open_files: 256 +2025/05/04-10:09:55.595656 37 Options.bytes_per_sync: 0 +2025/05/04-10:09:55.595656 37 Options.wal_bytes_per_sync: 0 +2025/05/04-10:09:55.595657 37 Options.strict_bytes_per_sync: 0 +2025/05/04-10:09:55.595657 37 Options.compaction_readahead_size: 2097152 +2025/05/04-10:09:55.595658 37 Options.max_background_flushes: -1 +2025/05/04-10:09:55.595658 37 Options.daily_offpeak_time_utc: +2025/05/04-10:09:55.595659 37 Compression algorithms supported: +2025/05/04-10:09:55.595660 37 kZSTD supported: 0 +2025/05/04-10:09:55.595661 37 kXpressCompression supported: 0 +2025/05/04-10:09:55.595661 37 kBZip2Compression supported: 0 +2025/05/04-10:09:55.595662 37 kZSTDNotFinalCompression supported: 0 +2025/05/04-10:09:55.595662 37 kLZ4Compression supported: 1 +2025/05/04-10:09:55.595663 37 kZlibCompression supported: 0 +2025/05/04-10:09:55.595664 37 kLZ4HCCompression supported: 1 +2025/05/04-10:09:55.595664 37 kSnappyCompression supported: 1 +2025/05/04-10:09:55.595665 37 Fast CRC32 supported: Not supported on x86 +2025/05/04-10:09:55.595666 37 DMutex implementation: pthread_mutex_t +2025/05/04-10:09:55.595667 37 Jemalloc supported: 0 +2025/05/04-10:09:55.598130 37 Options.comparator: leveldb.BytewiseComparator +2025/05/04-10:09:55.598132 37 Options.merge_operator: None +2025/05/04-10:09:55.598133 37 Options.compaction_filter: None +2025/05/04-10:09:55.598134 37 Options.compaction_filter_factory: None +2025/05/04-10:09:55.598135 37 Options.sst_partitioner_factory: None +2025/05/04-10:09:55.598136 37 Options.memtable_factory: SkipListFactory +2025/05/04-10:09:55.598137 37 Options.table_factory: BlockBasedTable +2025/05/04-10:09:55.598156 37 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff86000060) + cache_index_and_filter_blocks: 0 + cache_index_and_filter_blocks_with_high_priority: 1 + pin_l0_filter_and_index_blocks_in_cache: 0 + pin_top_level_index_and_filter: 1 + index_type: 0 + data_block_index_type: 0 + index_shortening: 1 + data_block_hash_table_util_ratio: 0.750000 + checksum: 4 + no_block_cache: 0 + block_cache: 0xffff86009010 + block_cache_name: LRUCache + block_cache_options: + capacity : 33554432 + num_shard_bits : 6 + strict_capacity_limit : 0 + memory_allocator : None + high_pri_pool_ratio: 0.500 + low_pri_pool_ratio: 0.000 + persistent_cache: (nil) + block_size: 4096 + block_size_deviation: 10 + block_restart_interval: 16 + index_block_restart_interval: 1 + metadata_block_size: 4096 + partition_filters: 0 + use_delta_encoding: 1 + filter_policy: nullptr + whole_key_filtering: 1 + verify_compression: 0 + read_amp_bytes_per_bit: 0 + format_version: 6 + enable_index_compression: 1 + block_align: 0 + max_auto_readahead_size: 262144 + prepopulate_block_cache: 0 + initial_auto_readahead_size: 8192 + num_file_reads_for_auto_readahead: 2 +2025/05/04-10:09:55.598157 37 Options.write_buffer_size: 10485760 +2025/05/04-10:09:55.598158 37 Options.max_write_buffer_number: 2 +2025/05/04-10:09:55.598160 37 Options.compression: LZ4 +2025/05/04-10:09:55.598161 37 Options.bottommost_compression: Disabled +2025/05/04-10:09:55.598162 37 Options.prefix_extractor: nullptr +2025/05/04-10:09:55.598163 37 Options.memtable_insert_with_hint_prefix_extractor: nullptr +2025/05/04-10:09:55.598164 37 Options.num_levels: 7 +2025/05/04-10:09:55.598164 37 Options.min_write_buffer_number_to_merge: 1 +2025/05/04-10:09:55.598165 37 Options.max_write_buffer_number_to_maintain: 0 +2025/05/04-10:09:55.598166 37 Options.max_write_buffer_size_to_maintain: 0 +2025/05/04-10:09:55.598166 37 Options.bottommost_compression_opts.window_bits: -14 +2025/05/04-10:09:55.598167 37 Options.bottommost_compression_opts.level: 32767 +2025/05/04-10:09:55.598168 37 Options.bottommost_compression_opts.strategy: 0 +2025/05/04-10:09:55.598169 37 Options.bottommost_compression_opts.max_dict_bytes: 0 +2025/05/04-10:09:55.598169 37 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 +2025/05/04-10:09:55.598170 37 Options.bottommost_compression_opts.parallel_threads: 1 +2025/05/04-10:09:55.598171 37 Options.bottommost_compression_opts.enabled: false +2025/05/04-10:09:55.598171 37 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 +2025/05/04-10:09:55.598172 37 Options.bottommost_compression_opts.use_zstd_dict_trainer: true +2025/05/04-10:09:55.598173 37 Options.compression_opts.window_bits: -14 +2025/05/04-10:09:55.598173 37 Options.compression_opts.level: 32767 +2025/05/04-10:09:55.598174 37 Options.compression_opts.strategy: 0 +2025/05/04-10:09:55.598175 37 Options.compression_opts.max_dict_bytes: 0 +2025/05/04-10:09:55.598176 37 Options.compression_opts.zstd_max_train_bytes: 0 +2025/05/04-10:09:55.598176 37 Options.compression_opts.use_zstd_dict_trainer: true +2025/05/04-10:09:55.598177 37 Options.compression_opts.parallel_threads: 1 +2025/05/04-10:09:55.598177 37 Options.compression_opts.enabled: false +2025/05/04-10:09:55.598178 37 Options.compression_opts.max_dict_buffer_bytes: 0 +2025/05/04-10:09:55.598179 37 Options.level0_file_num_compaction_trigger: 4 +2025/05/04-10:09:55.598179 37 Options.level0_slowdown_writes_trigger: 20 +2025/05/04-10:09:55.598180 37 Options.level0_stop_writes_trigger: 36 +2025/05/04-10:09:55.598181 37 Options.target_file_size_base: 67108864 +2025/05/04-10:09:55.598181 37 Options.target_file_size_multiplier: 1 +2025/05/04-10:09:55.598182 37 Options.max_bytes_for_level_base: 268435456 +2025/05/04-10:09:55.598183 37 Options.level_compaction_dynamic_level_bytes: 1 +2025/05/04-10:09:55.598184 37 Options.max_bytes_for_level_multiplier: 10.000000 +2025/05/04-10:09:55.598186 37 Options.max_bytes_for_level_multiplier_addtl[0]: 1 +2025/05/04-10:09:55.598186 37 Options.max_bytes_for_level_multiplier_addtl[1]: 1 +2025/05/04-10:09:55.598187 37 Options.max_bytes_for_level_multiplier_addtl[2]: 1 +2025/05/04-10:09:55.598187 37 Options.max_bytes_for_level_multiplier_addtl[3]: 1 +2025/05/04-10:09:55.598188 37 Options.max_bytes_for_level_multiplier_addtl[4]: 1 +2025/05/04-10:09:55.598188 37 Options.max_bytes_for_level_multiplier_addtl[5]: 1 +2025/05/04-10:09:55.598189 37 Options.max_bytes_for_level_multiplier_addtl[6]: 1 +2025/05/04-10:09:55.598190 37 Options.max_sequential_skip_in_iterations: 8 +2025/05/04-10:09:55.598190 37 Options.max_compaction_bytes: 1677721600 +2025/05/04-10:09:55.598191 37 Options.arena_block_size: 1048576 +2025/05/04-10:09:55.598192 37 Options.soft_pending_compaction_bytes_limit: 68719476736 +2025/05/04-10:09:55.598192 37 Options.hard_pending_compaction_bytes_limit: 274877906944 +2025/05/04-10:09:55.598193 37 Options.disable_auto_compactions: 0 +2025/05/04-10:09:55.598195 37 Options.compaction_style: kCompactionStyleLevel +2025/05/04-10:09:55.598196 37 Options.compaction_pri: kMinOverlappingRatio +2025/05/04-10:09:55.598197 37 Options.compaction_options_universal.size_ratio: 1 +2025/05/04-10:09:55.598197 37 Options.compaction_options_universal.min_merge_width: 2 +2025/05/04-10:09:55.598198 37 Options.compaction_options_universal.max_merge_width: 4294967295 +2025/05/04-10:09:55.598198 37 Options.compaction_options_universal.max_size_amplification_percent: 200 +2025/05/04-10:09:55.598199 37 Options.compaction_options_universal.compression_size_percent: -1 +2025/05/04-10:09:55.598200 37 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize +2025/05/04-10:09:55.598201 37 Options.compaction_options_universal.max_read_amp: -1 +2025/05/04-10:09:55.598201 37 Options.compaction_options_fifo.max_table_files_size: 1073741824 +2025/05/04-10:09:55.598202 37 Options.compaction_options_fifo.allow_compaction: 0 +2025/05/04-10:09:55.598205 37 Options.table_properties_collectors: +2025/05/04-10:09:55.598206 37 Options.inplace_update_support: 0 +2025/05/04-10:09:55.598206 37 Options.inplace_update_num_locks: 10000 +2025/05/04-10:09:55.598207 37 Options.memtable_prefix_bloom_size_ratio: 0.000000 +2025/05/04-10:09:55.598208 37 Options.memtable_whole_key_filtering: 0 +2025/05/04-10:09:55.598209 37 Options.memtable_huge_page_size: 0 +2025/05/04-10:09:55.598209 37 Options.bloom_locality: 0 +2025/05/04-10:09:55.598210 37 Options.max_successive_merges: 0 +2025/05/04-10:09:55.598211 37 Options.strict_max_successive_merges: 0 +2025/05/04-10:09:55.598211 37 Options.optimize_filters_for_hits: 0 +2025/05/04-10:09:55.598212 37 Options.paranoid_file_checks: 0 +2025/05/04-10:09:55.598212 37 Options.force_consistency_checks: 1 +2025/05/04-10:09:55.598213 37 Options.report_bg_io_stats: 0 +2025/05/04-10:09:55.598214 37 Options.ttl: 2592000 +2025/05/04-10:09:55.598215 37 Options.periodic_compaction_seconds: 0 +2025/05/04-10:09:55.598215 37 Options.default_temperature: kUnknown +2025/05/04-10:09:55.598216 37 Options.preclude_last_level_data_seconds: 0 +2025/05/04-10:09:55.598216 37 Options.preserve_internal_time_seconds: 0 +2025/05/04-10:09:55.598217 37 Options.enable_blob_files: false +2025/05/04-10:09:55.598218 37 Options.min_blob_size: 0 +2025/05/04-10:09:55.598218 37 Options.blob_file_size: 268435456 +2025/05/04-10:09:55.598219 37 Options.blob_compression_type: NoCompression +2025/05/04-10:09:55.598220 37 Options.enable_blob_garbage_collection: false +2025/05/04-10:09:55.598221 37 Options.blob_garbage_collection_age_cutoff: 0.250000 +2025/05/04-10:09:55.598221 37 Options.blob_garbage_collection_force_threshold: 1.000000 +2025/05/04-10:09:55.598222 37 Options.blob_compaction_readahead_size: 0 +2025/05/04-10:09:55.598223 37 Options.blob_file_starting_level: 0 +2025/05/04-10:09:55.598223 37 Options.experimental_mempurge_threshold: 0.000000 +2025/05/04-10:09:55.598224 37 Options.memtable_max_range_deletions: 0 +2025/05/04-10:09:55.598876 37 Options.comparator: leveldb.BytewiseComparator +2025/05/04-10:09:55.598878 37 Options.merge_operator: None +2025/05/04-10:09:55.598879 37 Options.compaction_filter: None +2025/05/04-10:09:55.598879 37 Options.compaction_filter_factory: None +2025/05/04-10:09:55.598880 37 Options.sst_partitioner_factory: None +2025/05/04-10:09:55.598880 37 Options.memtable_factory: SkipListFactory +2025/05/04-10:09:55.598881 37 Options.table_factory: BlockBasedTable +2025/05/04-10:09:55.598890 37 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff86000060) + cache_index_and_filter_blocks: 0 + cache_index_and_filter_blocks_with_high_priority: 1 + pin_l0_filter_and_index_blocks_in_cache: 0 + pin_top_level_index_and_filter: 1 + index_type: 0 + data_block_index_type: 0 + index_shortening: 1 + data_block_hash_table_util_ratio: 0.750000 + checksum: 4 + no_block_cache: 0 + block_cache: 0xffff86009010 + block_cache_name: LRUCache + block_cache_options: + capacity : 33554432 + num_shard_bits : 6 + strict_capacity_limit : 0 + memory_allocator : None + high_pri_pool_ratio: 0.500 + low_pri_pool_ratio: 0.000 + persistent_cache: (nil) + block_size: 4096 + block_size_deviation: 10 + block_restart_interval: 16 + index_block_restart_interval: 1 + metadata_block_size: 4096 + partition_filters: 0 + use_delta_encoding: 1 + filter_policy: nullptr + whole_key_filtering: 1 + verify_compression: 0 + read_amp_bytes_per_bit: 0 + format_version: 6 + enable_index_compression: 1 + block_align: 0 + max_auto_readahead_size: 262144 + prepopulate_block_cache: 0 + initial_auto_readahead_size: 8192 + num_file_reads_for_auto_readahead: 2 +2025/05/04-10:09:55.598892 37 Options.write_buffer_size: 10485760 +2025/05/04-10:09:55.598893 37 Options.max_write_buffer_number: 2 +2025/05/04-10:09:55.598894 37 Options.compression: LZ4 +2025/05/04-10:09:55.598894 37 Options.bottommost_compression: Disabled +2025/05/04-10:09:55.598895 37 Options.prefix_extractor: nullptr +2025/05/04-10:09:55.598896 37 Options.memtable_insert_with_hint_prefix_extractor: nullptr +2025/05/04-10:09:55.598897 37 Options.num_levels: 7 +2025/05/04-10:09:55.598898 37 Options.min_write_buffer_number_to_merge: 1 +2025/05/04-10:09:55.598899 37 Options.max_write_buffer_number_to_maintain: 0 +2025/05/04-10:09:55.598900 37 Options.max_write_buffer_size_to_maintain: 0 +2025/05/04-10:09:55.598901 37 Options.bottommost_compression_opts.window_bits: -14 +2025/05/04-10:09:55.598903 37 Options.bottommost_compression_opts.level: 32767 +2025/05/04-10:09:55.598903 37 Options.bottommost_compression_opts.strategy: 0 +2025/05/04-10:09:55.598904 37 Options.bottommost_compression_opts.max_dict_bytes: 0 +2025/05/04-10:09:55.598904 37 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 +2025/05/04-10:09:55.598905 37 Options.bottommost_compression_opts.parallel_threads: 1 +2025/05/04-10:09:55.598906 37 Options.bottommost_compression_opts.enabled: false +2025/05/04-10:09:55.598906 37 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 +2025/05/04-10:09:55.598907 37 Options.bottommost_compression_opts.use_zstd_dict_trainer: true +2025/05/04-10:09:55.598907 37 Options.compression_opts.window_bits: -14 +2025/05/04-10:09:55.598909 37 Options.compression_opts.level: 32767 +2025/05/04-10:09:55.598909 37 Options.compression_opts.strategy: 0 +2025/05/04-10:09:55.598910 37 Options.compression_opts.max_dict_bytes: 0 +2025/05/04-10:09:55.598910 37 Options.compression_opts.zstd_max_train_bytes: 0 +2025/05/04-10:09:55.598911 37 Options.compression_opts.use_zstd_dict_trainer: true +2025/05/04-10:09:55.598912 37 Options.compression_opts.parallel_threads: 1 +2025/05/04-10:09:55.598912 37 Options.compression_opts.enabled: false +2025/05/04-10:09:55.598913 37 Options.compression_opts.max_dict_buffer_bytes: 0 +2025/05/04-10:09:55.598913 37 Options.level0_file_num_compaction_trigger: 4 +2025/05/04-10:09:55.598914 37 Options.level0_slowdown_writes_trigger: 20 +2025/05/04-10:09:55.598914 37 Options.level0_stop_writes_trigger: 36 +2025/05/04-10:09:55.598915 37 Options.target_file_size_base: 67108864 +2025/05/04-10:09:55.598915 37 Options.target_file_size_multiplier: 1 +2025/05/04-10:09:55.598916 37 Options.max_bytes_for_level_base: 268435456 +2025/05/04-10:09:55.598917 37 Options.level_compaction_dynamic_level_bytes: 1 +2025/05/04-10:09:55.598920 37 Options.max_bytes_for_level_multiplier: 10.000000 +2025/05/04-10:09:55.598920 37 Options.max_bytes_for_level_multiplier_addtl[0]: 1 +2025/05/04-10:09:55.598921 37 Options.max_bytes_for_level_multiplier_addtl[1]: 1 +2025/05/04-10:09:55.598922 37 Options.max_bytes_for_level_multiplier_addtl[2]: 1 +2025/05/04-10:09:55.598922 37 Options.max_bytes_for_level_multiplier_addtl[3]: 1 +2025/05/04-10:09:55.598923 37 Options.max_bytes_for_level_multiplier_addtl[4]: 1 +2025/05/04-10:09:55.598923 37 Options.max_bytes_for_level_multiplier_addtl[5]: 1 +2025/05/04-10:09:55.598924 37 Options.max_bytes_for_level_multiplier_addtl[6]: 1 +2025/05/04-10:09:55.598924 37 Options.max_sequential_skip_in_iterations: 8 +2025/05/04-10:09:55.598925 37 Options.max_compaction_bytes: 1677721600 +2025/05/04-10:09:55.598926 37 Options.arena_block_size: 1048576 +2025/05/04-10:09:55.598927 37 Options.soft_pending_compaction_bytes_limit: 68719476736 +2025/05/04-10:09:55.598928 37 Options.hard_pending_compaction_bytes_limit: 274877906944 +2025/05/04-10:09:55.598928 37 Options.disable_auto_compactions: 0 +2025/05/04-10:09:55.598929 37 Options.compaction_style: kCompactionStyleLevel +2025/05/04-10:09:55.598930 37 Options.compaction_pri: kMinOverlappingRatio +2025/05/04-10:09:55.598930 37 Options.compaction_options_universal.size_ratio: 1 +2025/05/04-10:09:55.598931 37 Options.compaction_options_universal.min_merge_width: 2 +2025/05/04-10:09:55.598932 37 Options.compaction_options_universal.max_merge_width: 4294967295 +2025/05/04-10:09:55.598932 37 Options.compaction_options_universal.max_size_amplification_percent: 200 +2025/05/04-10:09:55.598933 37 Options.compaction_options_universal.compression_size_percent: -1 +2025/05/04-10:09:55.598933 37 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize +2025/05/04-10:09:55.598934 37 Options.compaction_options_universal.max_read_amp: -1 +2025/05/04-10:09:55.598935 37 Options.compaction_options_fifo.max_table_files_size: 1073741824 +2025/05/04-10:09:55.598935 37 Options.compaction_options_fifo.allow_compaction: 0 +2025/05/04-10:09:55.598937 37 Options.table_properties_collectors: +2025/05/04-10:09:55.598938 37 Options.inplace_update_support: 0 +2025/05/04-10:09:55.598939 37 Options.inplace_update_num_locks: 10000 +2025/05/04-10:09:55.598939 37 Options.memtable_prefix_bloom_size_ratio: 0.000000 +2025/05/04-10:09:55.598940 37 Options.memtable_whole_key_filtering: 0 +2025/05/04-10:09:55.598940 37 Options.memtable_huge_page_size: 0 +2025/05/04-10:09:55.598941 37 Options.bloom_locality: 0 +2025/05/04-10:09:55.598941 37 Options.max_successive_merges: 0 +2025/05/04-10:09:55.598942 37 Options.strict_max_successive_merges: 0 +2025/05/04-10:09:55.598943 37 Options.optimize_filters_for_hits: 0 +2025/05/04-10:09:55.598944 37 Options.paranoid_file_checks: 0 +2025/05/04-10:09:55.598944 37 Options.force_consistency_checks: 1 +2025/05/04-10:09:55.598945 37 Options.report_bg_io_stats: 0 +2025/05/04-10:09:55.598945 37 Options.ttl: 2592000 +2025/05/04-10:09:55.598946 37 Options.periodic_compaction_seconds: 0 +2025/05/04-10:09:55.598947 37 Options.default_temperature: kUnknown +2025/05/04-10:09:55.598947 37 Options.preclude_last_level_data_seconds: 0 +2025/05/04-10:09:55.598948 37 Options.preserve_internal_time_seconds: 0 +2025/05/04-10:09:55.598948 37 Options.enable_blob_files: false +2025/05/04-10:09:55.598949 37 Options.min_blob_size: 0 +2025/05/04-10:09:55.598949 37 Options.blob_file_size: 268435456 +2025/05/04-10:09:55.598951 37 Options.blob_compression_type: NoCompression +2025/05/04-10:09:55.598952 37 Options.enable_blob_garbage_collection: false +2025/05/04-10:09:55.598953 37 Options.blob_garbage_collection_age_cutoff: 0.250000 +2025/05/04-10:09:55.598956 37 Options.blob_garbage_collection_force_threshold: 1.000000 +2025/05/04-10:09:55.598958 37 Options.blob_compaction_readahead_size: 0 +2025/05/04-10:09:55.598959 37 Options.blob_file_starting_level: 0 +2025/05/04-10:09:55.598959 37 Options.experimental_mempurge_threshold: 0.000000 +2025/05/04-10:09:55.598960 37 Options.memtable_max_range_deletions: 0 +2025/05/04-10:09:55.598988 37 Options.comparator: leveldb.BytewiseComparator +2025/05/04-10:09:55.598989 37 Options.merge_operator: None +2025/05/04-10:09:55.598989 37 Options.compaction_filter: None +2025/05/04-10:09:55.598990 37 Options.compaction_filter_factory: None +2025/05/04-10:09:55.598991 37 Options.sst_partitioner_factory: None +2025/05/04-10:09:55.598991 37 Options.memtable_factory: SkipListFactory +2025/05/04-10:09:55.598992 37 Options.table_factory: BlockBasedTable +2025/05/04-10:09:55.598999 37 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff86000060) + cache_index_and_filter_blocks: 0 + cache_index_and_filter_blocks_with_high_priority: 1 + pin_l0_filter_and_index_blocks_in_cache: 0 + pin_top_level_index_and_filter: 1 + index_type: 0 + data_block_index_type: 0 + index_shortening: 1 + data_block_hash_table_util_ratio: 0.750000 + checksum: 4 + no_block_cache: 0 + block_cache: 0xffff86009010 + block_cache_name: LRUCache + block_cache_options: + capacity : 33554432 + num_shard_bits : 6 + strict_capacity_limit : 0 + memory_allocator : None + high_pri_pool_ratio: 0.500 + low_pri_pool_ratio: 0.000 + persistent_cache: (nil) + block_size: 4096 + block_size_deviation: 10 + block_restart_interval: 16 + index_block_restart_interval: 1 + metadata_block_size: 4096 + partition_filters: 0 + use_delta_encoding: 1 + filter_policy: nullptr + whole_key_filtering: 1 + verify_compression: 0 + read_amp_bytes_per_bit: 0 + format_version: 6 + enable_index_compression: 1 + block_align: 0 + max_auto_readahead_size: 262144 + prepopulate_block_cache: 0 + initial_auto_readahead_size: 8192 + num_file_reads_for_auto_readahead: 2 +2025/05/04-10:09:55.599001 37 Options.write_buffer_size: 10485760 +2025/05/04-10:09:55.599002 37 Options.max_write_buffer_number: 2 +2025/05/04-10:09:55.599002 37 Options.compression: LZ4 +2025/05/04-10:09:55.599003 37 Options.bottommost_compression: Disabled +2025/05/04-10:09:55.599003 37 Options.prefix_extractor: nullptr +2025/05/04-10:09:55.599004 37 Options.memtable_insert_with_hint_prefix_extractor: nullptr +2025/05/04-10:09:55.599005 37 Options.num_levels: 7 +2025/05/04-10:09:55.599005 37 Options.min_write_buffer_number_to_merge: 1 +2025/05/04-10:09:55.599006 37 Options.max_write_buffer_number_to_maintain: 0 +2025/05/04-10:09:55.599006 37 Options.max_write_buffer_size_to_maintain: 0 +2025/05/04-10:09:55.599007 37 Options.bottommost_compression_opts.window_bits: -14 +2025/05/04-10:09:55.599008 37 Options.bottommost_compression_opts.level: 32767 +2025/05/04-10:09:55.599009 37 Options.bottommost_compression_opts.strategy: 0 +2025/05/04-10:09:55.599009 37 Options.bottommost_compression_opts.max_dict_bytes: 0 +2025/05/04-10:09:55.599010 37 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 +2025/05/04-10:09:55.599011 37 Options.bottommost_compression_opts.parallel_threads: 1 +2025/05/04-10:09:55.599011 37 Options.bottommost_compression_opts.enabled: false +2025/05/04-10:09:55.599012 37 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 +2025/05/04-10:09:55.599013 37 Options.bottommost_compression_opts.use_zstd_dict_trainer: true +2025/05/04-10:09:55.599014 37 Options.compression_opts.window_bits: -14 +2025/05/04-10:09:55.599014 37 Options.compression_opts.level: 32767 +2025/05/04-10:09:55.599015 37 Options.compression_opts.strategy: 0 +2025/05/04-10:09:55.599015 37 Options.compression_opts.max_dict_bytes: 0 +2025/05/04-10:09:55.599016 37 Options.compression_opts.zstd_max_train_bytes: 0 +2025/05/04-10:09:55.599016 37 Options.compression_opts.use_zstd_dict_trainer: true +2025/05/04-10:09:55.599017 37 Options.compression_opts.parallel_threads: 1 +2025/05/04-10:09:55.599018 37 Options.compression_opts.enabled: false +2025/05/04-10:09:55.599018 37 Options.compression_opts.max_dict_buffer_bytes: 0 +2025/05/04-10:09:55.599019 37 Options.level0_file_num_compaction_trigger: 4 +2025/05/04-10:09:55.599019 37 Options.level0_slowdown_writes_trigger: 20 +2025/05/04-10:09:55.599020 37 Options.level0_stop_writes_trigger: 36 +2025/05/04-10:09:55.599021 37 Options.target_file_size_base: 67108864 +2025/05/04-10:09:55.599022 37 Options.target_file_size_multiplier: 1 +2025/05/04-10:09:55.599022 37 Options.max_bytes_for_level_base: 268435456 +2025/05/04-10:09:55.599023 37 Options.level_compaction_dynamic_level_bytes: 1 +2025/05/04-10:09:55.599023 37 Options.max_bytes_for_level_multiplier: 10.000000 +2025/05/04-10:09:55.599024 37 Options.max_bytes_for_level_multiplier_addtl[0]: 1 +2025/05/04-10:09:55.599025 37 Options.max_bytes_for_level_multiplier_addtl[1]: 1 +2025/05/04-10:09:55.599026 37 Options.max_bytes_for_level_multiplier_addtl[2]: 1 +2025/05/04-10:09:55.599027 37 Options.max_bytes_for_level_multiplier_addtl[3]: 1 +2025/05/04-10:09:55.599027 37 Options.max_bytes_for_level_multiplier_addtl[4]: 1 +2025/05/04-10:09:55.599028 37 Options.max_bytes_for_level_multiplier_addtl[5]: 1 +2025/05/04-10:09:55.599028 37 Options.max_bytes_for_level_multiplier_addtl[6]: 1 +2025/05/04-10:09:55.599029 37 Options.max_sequential_skip_in_iterations: 8 +2025/05/04-10:09:55.599029 37 Options.max_compaction_bytes: 1677721600 +2025/05/04-10:09:55.599030 37 Options.arena_block_size: 1048576 +2025/05/04-10:09:55.599031 37 Options.soft_pending_compaction_bytes_limit: 68719476736 +2025/05/04-10:09:55.599031 37 Options.hard_pending_compaction_bytes_limit: 274877906944 +2025/05/04-10:09:55.599032 37 Options.disable_auto_compactions: 0 +2025/05/04-10:09:55.599033 37 Options.compaction_style: kCompactionStyleLevel +2025/05/04-10:09:55.599034 37 Options.compaction_pri: kMinOverlappingRatio +2025/05/04-10:09:55.599034 37 Options.compaction_options_universal.size_ratio: 1 +2025/05/04-10:09:55.599035 37 Options.compaction_options_universal.min_merge_width: 2 +2025/05/04-10:09:55.599036 37 Options.compaction_options_universal.max_merge_width: 4294967295 +2025/05/04-10:09:55.599037 37 Options.compaction_options_universal.max_size_amplification_percent: 200 +2025/05/04-10:09:55.599037 37 Options.compaction_options_universal.compression_size_percent: -1 +2025/05/04-10:09:55.599038 37 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize +2025/05/04-10:09:55.599038 37 Options.compaction_options_universal.max_read_amp: -1 +2025/05/04-10:09:55.599039 37 Options.compaction_options_fifo.max_table_files_size: 1073741824 +2025/05/04-10:09:55.599040 37 Options.compaction_options_fifo.allow_compaction: 0 +2025/05/04-10:09:55.599041 37 Options.table_properties_collectors: +2025/05/04-10:09:55.599041 37 Options.inplace_update_support: 0 +2025/05/04-10:09:55.599042 37 Options.inplace_update_num_locks: 10000 +2025/05/04-10:09:55.599043 37 Options.memtable_prefix_bloom_size_ratio: 0.000000 +2025/05/04-10:09:55.599044 37 Options.memtable_whole_key_filtering: 0 +2025/05/04-10:09:55.599045 37 Options.memtable_huge_page_size: 0 +2025/05/04-10:09:55.599045 37 Options.bloom_locality: 0 +2025/05/04-10:09:55.599046 37 Options.max_successive_merges: 0 +2025/05/04-10:09:55.599046 37 Options.strict_max_successive_merges: 0 +2025/05/04-10:09:55.599047 37 Options.optimize_filters_for_hits: 0 +2025/05/04-10:09:55.599048 37 Options.paranoid_file_checks: 0 +2025/05/04-10:09:55.599048 37 Options.force_consistency_checks: 1 +2025/05/04-10:09:55.599049 37 Options.report_bg_io_stats: 0 +2025/05/04-10:09:55.599049 37 Options.ttl: 2592000 +2025/05/04-10:09:55.599050 37 Options.periodic_compaction_seconds: 0 +2025/05/04-10:09:55.599051 37 Options.default_temperature: kUnknown +2025/05/04-10:09:55.599051 37 Options.preclude_last_level_data_seconds: 0 +2025/05/04-10:09:55.599052 37 Options.preserve_internal_time_seconds: 0 +2025/05/04-10:09:55.599052 37 Options.enable_blob_files: false +2025/05/04-10:09:55.599053 37 Options.min_blob_size: 0 +2025/05/04-10:09:55.599054 37 Options.blob_file_size: 268435456 +2025/05/04-10:09:55.599054 37 Options.blob_compression_type: NoCompression +2025/05/04-10:09:55.599055 37 Options.enable_blob_garbage_collection: false +2025/05/04-10:09:55.599056 37 Options.blob_garbage_collection_age_cutoff: 0.250000 +2025/05/04-10:09:55.599057 37 Options.blob_garbage_collection_force_threshold: 1.000000 +2025/05/04-10:09:55.599058 37 Options.blob_compaction_readahead_size: 0 +2025/05/04-10:09:55.599058 37 Options.blob_file_starting_level: 0 +2025/05/04-10:09:55.599059 37 Options.experimental_mempurge_threshold: 0.000000 +2025/05/04-10:09:55.599060 37 Options.memtable_max_range_deletions: 0 +2025/05/04-10:09:55.599075 37 Options.comparator: leveldb.BytewiseComparator +2025/05/04-10:09:55.599076 37 Options.merge_operator: None +2025/05/04-10:09:55.599077 37 Options.compaction_filter: None +2025/05/04-10:09:55.599077 37 Options.compaction_filter_factory: None +2025/05/04-10:09:55.599078 37 Options.sst_partitioner_factory: None +2025/05/04-10:09:55.599078 37 Options.memtable_factory: SkipListFactory +2025/05/04-10:09:55.599079 37 Options.table_factory: BlockBasedTable +2025/05/04-10:09:55.599085 37 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff86000060) + cache_index_and_filter_blocks: 0 + cache_index_and_filter_blocks_with_high_priority: 1 + pin_l0_filter_and_index_blocks_in_cache: 0 + pin_top_level_index_and_filter: 1 + index_type: 0 + data_block_index_type: 0 + index_shortening: 1 + data_block_hash_table_util_ratio: 0.750000 + checksum: 4 + no_block_cache: 0 + block_cache: 0xffff86009010 + block_cache_name: LRUCache + block_cache_options: + capacity : 33554432 + num_shard_bits : 6 + strict_capacity_limit : 0 + memory_allocator : None + high_pri_pool_ratio: 0.500 + low_pri_pool_ratio: 0.000 + persistent_cache: (nil) + block_size: 4096 + block_size_deviation: 10 + block_restart_interval: 16 + index_block_restart_interval: 1 + metadata_block_size: 4096 + partition_filters: 0 + use_delta_encoding: 1 + filter_policy: nullptr + whole_key_filtering: 1 + verify_compression: 0 + read_amp_bytes_per_bit: 0 + format_version: 6 + enable_index_compression: 1 + block_align: 0 + max_auto_readahead_size: 262144 + prepopulate_block_cache: 0 + initial_auto_readahead_size: 8192 + num_file_reads_for_auto_readahead: 2 +2025/05/04-10:09:55.599087 37 Options.write_buffer_size: 10485760 +2025/05/04-10:09:55.599088 37 Options.max_write_buffer_number: 2 +2025/05/04-10:09:55.599088 37 Options.compression: LZ4 +2025/05/04-10:09:55.599089 37 Options.bottommost_compression: Disabled +2025/05/04-10:09:55.599089 37 Options.prefix_extractor: nullptr +2025/05/04-10:09:55.599090 37 Options.memtable_insert_with_hint_prefix_extractor: nullptr +2025/05/04-10:09:55.599090 37 Options.num_levels: 7 +2025/05/04-10:09:55.599091 37 Options.min_write_buffer_number_to_merge: 1 +2025/05/04-10:09:55.599091 37 Options.max_write_buffer_number_to_maintain: 0 +2025/05/04-10:09:55.599092 37 Options.max_write_buffer_size_to_maintain: 0 +2025/05/04-10:09:55.599093 37 Options.bottommost_compression_opts.window_bits: -14 +2025/05/04-10:09:55.599093 37 Options.bottommost_compression_opts.level: 32767 +2025/05/04-10:09:55.599094 37 Options.bottommost_compression_opts.strategy: 0 +2025/05/04-10:09:55.599094 37 Options.bottommost_compression_opts.max_dict_bytes: 0 +2025/05/04-10:09:55.599095 37 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 +2025/05/04-10:09:55.599095 37 Options.bottommost_compression_opts.parallel_threads: 1 +2025/05/04-10:09:55.599096 37 Options.bottommost_compression_opts.enabled: false +2025/05/04-10:09:55.599097 37 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 +2025/05/04-10:09:55.599097 37 Options.bottommost_compression_opts.use_zstd_dict_trainer: true +2025/05/04-10:09:55.599098 37 Options.compression_opts.window_bits: -14 +2025/05/04-10:09:55.599098 37 Options.compression_opts.level: 32767 +2025/05/04-10:09:55.599099 37 Options.compression_opts.strategy: 0 +2025/05/04-10:09:55.599099 37 Options.compression_opts.max_dict_bytes: 0 +2025/05/04-10:09:55.599100 37 Options.compression_opts.zstd_max_train_bytes: 0 +2025/05/04-10:09:55.599100 37 Options.compression_opts.use_zstd_dict_trainer: true +2025/05/04-10:09:55.599101 37 Options.compression_opts.parallel_threads: 1 +2025/05/04-10:09:55.599101 37 Options.compression_opts.enabled: false +2025/05/04-10:09:55.599102 37 Options.compression_opts.max_dict_buffer_bytes: 0 +2025/05/04-10:09:55.599102 37 Options.level0_file_num_compaction_trigger: 4 +2025/05/04-10:09:55.599103 37 Options.level0_slowdown_writes_trigger: 20 +2025/05/04-10:09:55.599104 37 Options.level0_stop_writes_trigger: 36 +2025/05/04-10:09:55.599104 37 Options.target_file_size_base: 67108864 +2025/05/04-10:09:55.599105 37 Options.target_file_size_multiplier: 1 +2025/05/04-10:09:55.599105 37 Options.max_bytes_for_level_base: 268435456 +2025/05/04-10:09:55.599106 37 Options.level_compaction_dynamic_level_bytes: 1 +2025/05/04-10:09:55.599107 37 Options.max_bytes_for_level_multiplier: 10.000000 +2025/05/04-10:09:55.599109 37 Options.max_bytes_for_level_multiplier_addtl[0]: 1 +2025/05/04-10:09:55.599110 37 Options.max_bytes_for_level_multiplier_addtl[1]: 1 +2025/05/04-10:09:55.599110 37 Options.max_bytes_for_level_multiplier_addtl[2]: 1 +2025/05/04-10:09:55.599111 37 Options.max_bytes_for_level_multiplier_addtl[3]: 1 +2025/05/04-10:09:55.599112 37 Options.max_bytes_for_level_multiplier_addtl[4]: 1 +2025/05/04-10:09:55.599112 37 Options.max_bytes_for_level_multiplier_addtl[5]: 1 +2025/05/04-10:09:55.599113 37 Options.max_bytes_for_level_multiplier_addtl[6]: 1 +2025/05/04-10:09:55.599113 37 Options.max_sequential_skip_in_iterations: 8 +2025/05/04-10:09:55.599114 37 Options.max_compaction_bytes: 1677721600 +2025/05/04-10:09:55.599115 37 Options.arena_block_size: 1048576 +2025/05/04-10:09:55.599115 37 Options.soft_pending_compaction_bytes_limit: 68719476736 +2025/05/04-10:09:55.599116 37 Options.hard_pending_compaction_bytes_limit: 274877906944 +2025/05/04-10:09:55.599116 37 Options.disable_auto_compactions: 0 +2025/05/04-10:09:55.599117 37 Options.compaction_style: kCompactionStyleLevel +2025/05/04-10:09:55.599118 37 Options.compaction_pri: kMinOverlappingRatio +2025/05/04-10:09:55.599118 37 Options.compaction_options_universal.size_ratio: 1 +2025/05/04-10:09:55.599119 37 Options.compaction_options_universal.min_merge_width: 2 +2025/05/04-10:09:55.599121 37 Options.compaction_options_universal.max_merge_width: 4294967295 +2025/05/04-10:09:55.599122 37 Options.compaction_options_universal.max_size_amplification_percent: 200 +2025/05/04-10:09:55.599122 37 Options.compaction_options_universal.compression_size_percent: -1 +2025/05/04-10:09:55.599123 37 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize +2025/05/04-10:09:55.599124 37 Options.compaction_options_universal.max_read_amp: -1 +2025/05/04-10:09:55.599124 37 Options.compaction_options_fifo.max_table_files_size: 1073741824 +2025/05/04-10:09:55.599125 37 Options.compaction_options_fifo.allow_compaction: 0 +2025/05/04-10:09:55.599126 37 Options.table_properties_collectors: +2025/05/04-10:09:55.599127 37 Options.inplace_update_support: 0 +2025/05/04-10:09:55.599128 37 Options.inplace_update_num_locks: 10000 +2025/05/04-10:09:55.599128 37 Options.memtable_prefix_bloom_size_ratio: 0.000000 +2025/05/04-10:09:55.599129 37 Options.memtable_whole_key_filtering: 0 +2025/05/04-10:09:55.599130 37 Options.memtable_huge_page_size: 0 +2025/05/04-10:09:55.599130 37 Options.bloom_locality: 0 +2025/05/04-10:09:55.599131 37 Options.max_successive_merges: 0 +2025/05/04-10:09:55.599131 37 Options.strict_max_successive_merges: 0 +2025/05/04-10:09:55.599132 37 Options.optimize_filters_for_hits: 0 +2025/05/04-10:09:55.599132 37 Options.paranoid_file_checks: 0 +2025/05/04-10:09:55.599133 37 Options.force_consistency_checks: 1 +2025/05/04-10:09:55.599133 37 Options.report_bg_io_stats: 0 +2025/05/04-10:09:55.599134 37 Options.ttl: 2592000 +2025/05/04-10:09:55.599134 37 Options.periodic_compaction_seconds: 0 +2025/05/04-10:09:55.599135 37 Options.default_temperature: kUnknown +2025/05/04-10:09:55.599135 37 Options.preclude_last_level_data_seconds: 0 +2025/05/04-10:09:55.599136 37 Options.preserve_internal_time_seconds: 0 +2025/05/04-10:09:55.599137 37 Options.enable_blob_files: false +2025/05/04-10:09:55.599137 37 Options.min_blob_size: 0 +2025/05/04-10:09:55.599138 37 Options.blob_file_size: 268435456 +2025/05/04-10:09:55.599138 37 Options.blob_compression_type: NoCompression +2025/05/04-10:09:55.599139 37 Options.enable_blob_garbage_collection: false +2025/05/04-10:09:55.599141 37 Options.blob_garbage_collection_age_cutoff: 0.250000 +2025/05/04-10:09:55.599142 37 Options.blob_garbage_collection_force_threshold: 1.000000 +2025/05/04-10:09:55.599143 37 Options.blob_compaction_readahead_size: 0 +2025/05/04-10:09:55.599143 37 Options.blob_file_starting_level: 0 +2025/05/04-10:09:55.599144 37 Options.experimental_mempurge_threshold: 0.000000 +2025/05/04-10:09:55.599144 37 Options.memtable_max_range_deletions: 0 +2025/05/04-10:09:55.599162 37 Options.comparator: leveldb.BytewiseComparator +2025/05/04-10:09:55.599163 37 Options.merge_operator: None +2025/05/04-10:09:55.599163 37 Options.compaction_filter: None +2025/05/04-10:09:55.599164 37 Options.compaction_filter_factory: None +2025/05/04-10:09:55.599164 37 Options.sst_partitioner_factory: None +2025/05/04-10:09:55.599165 37 Options.memtable_factory: SkipListFactory +2025/05/04-10:09:55.599165 37 Options.table_factory: BlockBasedTable +2025/05/04-10:09:55.599171 37 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff86000060) + cache_index_and_filter_blocks: 0 + cache_index_and_filter_blocks_with_high_priority: 1 + pin_l0_filter_and_index_blocks_in_cache: 0 + pin_top_level_index_and_filter: 1 + index_type: 0 + data_block_index_type: 0 + index_shortening: 1 + data_block_hash_table_util_ratio: 0.750000 + checksum: 4 + no_block_cache: 0 + block_cache: 0xffff86009010 + block_cache_name: LRUCache + block_cache_options: + capacity : 33554432 + num_shard_bits : 6 + strict_capacity_limit : 0 + memory_allocator : None + high_pri_pool_ratio: 0.500 + low_pri_pool_ratio: 0.000 + persistent_cache: (nil) + block_size: 4096 + block_size_deviation: 10 + block_restart_interval: 16 + index_block_restart_interval: 1 + metadata_block_size: 4096 + partition_filters: 0 + use_delta_encoding: 1 + filter_policy: nullptr + whole_key_filtering: 1 + verify_compression: 0 + read_amp_bytes_per_bit: 0 + format_version: 6 + enable_index_compression: 1 + block_align: 0 + max_auto_readahead_size: 262144 + prepopulate_block_cache: 0 + initial_auto_readahead_size: 8192 + num_file_reads_for_auto_readahead: 2 +2025/05/04-10:09:55.599172 37 Options.write_buffer_size: 10485760 +2025/05/04-10:09:55.599173 37 Options.max_write_buffer_number: 2 +2025/05/04-10:09:55.599174 37 Options.compression: LZ4 +2025/05/04-10:09:55.599174 37 Options.bottommost_compression: Disabled +2025/05/04-10:09:55.599175 37 Options.prefix_extractor: nullptr +2025/05/04-10:09:55.599175 37 Options.memtable_insert_with_hint_prefix_extractor: nullptr +2025/05/04-10:09:55.599176 37 Options.num_levels: 7 +2025/05/04-10:09:55.599176 37 Options.min_write_buffer_number_to_merge: 1 +2025/05/04-10:09:55.599177 37 Options.max_write_buffer_number_to_maintain: 0 +2025/05/04-10:09:55.599177 37 Options.max_write_buffer_size_to_maintain: 0 +2025/05/04-10:09:55.599178 37 Options.bottommost_compression_opts.window_bits: -14 +2025/05/04-10:09:55.599178 37 Options.bottommost_compression_opts.level: 32767 +2025/05/04-10:09:55.599179 37 Options.bottommost_compression_opts.strategy: 0 +2025/05/04-10:09:55.599180 37 Options.bottommost_compression_opts.max_dict_bytes: 0 +2025/05/04-10:09:55.599182 37 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 +2025/05/04-10:09:55.599182 37 Options.bottommost_compression_opts.parallel_threads: 1 +2025/05/04-10:09:55.599183 37 Options.bottommost_compression_opts.enabled: false +2025/05/04-10:09:55.599184 37 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 +2025/05/04-10:09:55.599184 37 Options.bottommost_compression_opts.use_zstd_dict_trainer: true +2025/05/04-10:09:55.599185 37 Options.compression_opts.window_bits: -14 +2025/05/04-10:09:55.599186 37 Options.compression_opts.level: 32767 +2025/05/04-10:09:55.599186 37 Options.compression_opts.strategy: 0 +2025/05/04-10:09:55.599187 37 Options.compression_opts.max_dict_bytes: 0 +2025/05/04-10:09:55.599188 37 Options.compression_opts.zstd_max_train_bytes: 0 +2025/05/04-10:09:55.599188 37 Options.compression_opts.use_zstd_dict_trainer: true +2025/05/04-10:09:55.599189 37 Options.compression_opts.parallel_threads: 1 +2025/05/04-10:09:55.599189 37 Options.compression_opts.enabled: false +2025/05/04-10:09:55.599190 37 Options.compression_opts.max_dict_buffer_bytes: 0 +2025/05/04-10:09:55.599190 37 Options.level0_file_num_compaction_trigger: 4 +2025/05/04-10:09:55.599191 37 Options.level0_slowdown_writes_trigger: 20 +2025/05/04-10:09:55.599191 37 Options.level0_stop_writes_trigger: 36 +2025/05/04-10:09:55.599192 37 Options.target_file_size_base: 67108864 +2025/05/04-10:09:55.599192 37 Options.target_file_size_multiplier: 1 +2025/05/04-10:09:55.599193 37 Options.max_bytes_for_level_base: 268435456 +2025/05/04-10:09:55.599193 37 Options.level_compaction_dynamic_level_bytes: 1 +2025/05/04-10:09:55.599194 37 Options.max_bytes_for_level_multiplier: 10.000000 +2025/05/04-10:09:55.599195 37 Options.max_bytes_for_level_multiplier_addtl[0]: 1 +2025/05/04-10:09:55.599195 37 Options.max_bytes_for_level_multiplier_addtl[1]: 1 +2025/05/04-10:09:55.599196 37 Options.max_bytes_for_level_multiplier_addtl[2]: 1 +2025/05/04-10:09:55.599197 37 Options.max_bytes_for_level_multiplier_addtl[3]: 1 +2025/05/04-10:09:55.599197 37 Options.max_bytes_for_level_multiplier_addtl[4]: 1 +2025/05/04-10:09:55.599198 37 Options.max_bytes_for_level_multiplier_addtl[5]: 1 +2025/05/04-10:09:55.599199 37 Options.max_bytes_for_level_multiplier_addtl[6]: 1 +2025/05/04-10:09:55.599199 37 Options.max_sequential_skip_in_iterations: 8 +2025/05/04-10:09:55.599200 37 Options.max_compaction_bytes: 1677721600 +2025/05/04-10:09:55.599200 37 Options.arena_block_size: 1048576 +2025/05/04-10:09:55.599201 37 Options.soft_pending_compaction_bytes_limit: 68719476736 +2025/05/04-10:09:55.599201 37 Options.hard_pending_compaction_bytes_limit: 274877906944 +2025/05/04-10:09:55.599202 37 Options.disable_auto_compactions: 0 +2025/05/04-10:09:55.599202 37 Options.compaction_style: kCompactionStyleLevel +2025/05/04-10:09:55.599203 37 Options.compaction_pri: kMinOverlappingRatio +2025/05/04-10:09:55.599204 37 Options.compaction_options_universal.size_ratio: 1 +2025/05/04-10:09:55.599204 37 Options.compaction_options_universal.min_merge_width: 2 +2025/05/04-10:09:55.599205 37 Options.compaction_options_universal.max_merge_width: 4294967295 +2025/05/04-10:09:55.599205 37 Options.compaction_options_universal.max_size_amplification_percent: 200 +2025/05/04-10:09:55.599206 37 Options.compaction_options_universal.compression_size_percent: -1 +2025/05/04-10:09:55.599206 37 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize +2025/05/04-10:09:55.599207 37 Options.compaction_options_universal.max_read_amp: -1 +2025/05/04-10:09:55.599207 37 Options.compaction_options_fifo.max_table_files_size: 1073741824 +2025/05/04-10:09:55.599208 37 Options.compaction_options_fifo.allow_compaction: 0 +2025/05/04-10:09:55.599209 37 Options.table_properties_collectors: +2025/05/04-10:09:55.599209 37 Options.inplace_update_support: 0 +2025/05/04-10:09:55.599210 37 Options.inplace_update_num_locks: 10000 +2025/05/04-10:09:55.599210 37 Options.memtable_prefix_bloom_size_ratio: 0.000000 +2025/05/04-10:09:55.599211 37 Options.memtable_whole_key_filtering: 0 +2025/05/04-10:09:55.599212 37 Options.memtable_huge_page_size: 0 +2025/05/04-10:09:55.599212 37 Options.bloom_locality: 0 +2025/05/04-10:09:55.599213 37 Options.max_successive_merges: 0 +2025/05/04-10:09:55.599213 37 Options.strict_max_successive_merges: 0 +2025/05/04-10:09:55.599214 37 Options.optimize_filters_for_hits: 0 +2025/05/04-10:09:55.599214 37 Options.paranoid_file_checks: 0 +2025/05/04-10:09:55.599215 37 Options.force_consistency_checks: 1 +2025/05/04-10:09:55.599216 37 Options.report_bg_io_stats: 0 +2025/05/04-10:09:55.599218 37 Options.ttl: 2592000 +2025/05/04-10:09:55.599219 37 Options.periodic_compaction_seconds: 0 +2025/05/04-10:09:55.599220 37 Options.default_temperature: kUnknown +2025/05/04-10:09:55.599220 37 Options.preclude_last_level_data_seconds: 0 +2025/05/04-10:09:55.599221 37 Options.preserve_internal_time_seconds: 0 +2025/05/04-10:09:55.599221 37 Options.enable_blob_files: false +2025/05/04-10:09:55.599222 37 Options.min_blob_size: 0 +2025/05/04-10:09:55.599222 37 Options.blob_file_size: 268435456 +2025/05/04-10:09:55.599223 37 Options.blob_compression_type: NoCompression +2025/05/04-10:09:55.599224 37 Options.enable_blob_garbage_collection: false +2025/05/04-10:09:55.599225 37 Options.blob_garbage_collection_age_cutoff: 0.250000 +2025/05/04-10:09:55.599225 37 Options.blob_garbage_collection_force_threshold: 1.000000 +2025/05/04-10:09:55.599226 37 Options.blob_compaction_readahead_size: 0 +2025/05/04-10:09:55.599227 37 Options.blob_file_starting_level: 0 +2025/05/04-10:09:55.599227 37 Options.experimental_mempurge_threshold: 0.000000 +2025/05/04-10:09:55.599228 37 Options.memtable_max_range_deletions: 0 +2025/05/04-10:09:55.645228 37 DB pointer 0xffff8606ec00 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/MANIFEST-000013 b/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/MANIFEST-000013 new file mode 100644 index 0000000000000000000000000000000000000000..b15aafbedd19eb76193718cbc4b5a576c93e99ea Binary files /dev/null and b/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/MANIFEST-000013 differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/OPTIONS-000011 b/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/OPTIONS-000011 new file mode 100644 index 0000000000000000000000000000000000000000..ad2b181add715408dc69839970eebfd4c1a28b4b --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/OPTIONS-000011 @@ -0,0 +1,670 @@ +# This is a RocksDB option file. +# +# For detailed file format spec, please refer to the example file +# in examples/rocksdb_option_file_example.ini +# + +[Version] + rocksdb_version=9.9.3 + options_file_version=1.1 + +[DBOptions] + compaction_readahead_size=2097152 + strict_bytes_per_sync=false + bytes_per_sync=0 + max_background_jobs=2 + avoid_flush_during_shutdown=false + max_background_flushes=-1 + delayed_write_rate=16777216 + max_open_files=256 + max_subcompactions=1 + writable_file_max_buffer_size=1048576 + wal_bytes_per_sync=0 + max_background_compactions=-1 + max_total_wal_size=0 + delete_obsolete_files_period_micros=180000000 + stats_dump_period_sec=600 + stats_history_buffer_size=1048576 + stats_persist_period_sec=600 + follower_refresh_catchup_period_ms=10000 + enforce_single_del_contracts=true + lowest_used_cache_tier=kNonVolatileBlockTier + bgerror_resume_retry_interval=1000000 + metadata_write_temperature=kUnknown + best_efforts_recovery=false + log_readahead_size=0 + write_identity_file=true + write_dbid_to_manifest=true + prefix_seek_opt_in_only=false + wal_compression=kNoCompression + manual_wal_flush=false + db_host_id=__hostname__ + two_write_queues=false + random_access_max_buffer_size=1048576 + avoid_unnecessary_blocking_io=false + skip_checking_sst_file_sizes_on_db_open=false + flush_verify_memtable_count=true + fail_if_options_file_error=true + atomic_flush=false + verify_sst_unique_id_in_manifest=true + skip_stats_update_on_db_open=false + track_and_verify_wals_in_manifest=false + compaction_verify_record_count=true + paranoid_checks=true + create_if_missing=true + max_write_batch_group_size_bytes=1048576 + follower_catchup_retry_count=10 + avoid_flush_during_recovery=false + file_checksum_gen_factory=nullptr + enable_thread_tracking=false + allow_fallocate=true + allow_data_in_errors=false + error_if_exists=false + use_direct_io_for_flush_and_compaction=false + background_close_inactive_wals=false + create_missing_column_families=true + WAL_size_limit_MB=0 + use_direct_reads=false + persist_stats_to_disk=false + allow_2pc=false + is_fd_close_on_exec=true + max_log_file_size=1048576 + max_file_opening_threads=16 + wal_filter=nullptr + wal_write_temperature=kUnknown + follower_catchup_retry_wait_ms=100 + allow_mmap_reads=false + allow_mmap_writes=false + use_adaptive_mutex=false + use_fsync=false + table_cache_numshardbits=6 + dump_malloc_stats=false + db_write_buffer_size=0 + allow_ingest_behind=false + keep_log_file_num=1 + max_bgerror_resume_count=2147483647 + allow_concurrent_memtable_write=true + recycle_log_file_num=0 + log_file_time_to_roll=0 + manifest_preallocation_size=4194304 + enable_write_thread_adaptive_yield=true + WAL_ttl_seconds=0 + max_manifest_file_size=1073741824 + wal_recovery_mode=kTolerateCorruptedTailRecords + enable_pipelined_write=false + write_thread_slow_yield_usec=3 + unordered_write=false + write_thread_max_yield_usec=100 + advise_random_on_open=true + info_log_level=ERROR_LEVEL + + +[CFOptions "default"] + memtable_max_range_deletions=0 + compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_memory_checks=false + block_protection_bytes_per_key=0 + uncache_aggressiveness=0 + bottommost_file_compaction_delay=0 + memtable_protection_bytes_per_key=0 + experimental_mempurge_threshold=0.000000 + bottommost_compression=kDisableCompressionOption + sample_for_compression=0 + prepopulate_blob_cache=kDisable + blob_file_starting_level=0 + blob_compaction_readahead_size=0 + table_factory=BlockBasedTable + max_successive_merges=0 + max_write_buffer_number=2 + prefix_extractor=nullptr + memtable_huge_page_size=0 + write_buffer_size=10485760 + strict_max_successive_merges=false + arena_block_size=1048576 + level0_file_num_compaction_trigger=4 + report_bg_io_stats=false + inplace_update_num_locks=10000 + memtable_prefix_bloom_size_ratio=0.000000 + level0_stop_writes_trigger=36 + blob_compression_type=kNoCompression + level0_slowdown_writes_trigger=20 + hard_pending_compaction_bytes_limit=274877906944 + target_file_size_multiplier=1 + bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_file_checks=false + blob_garbage_collection_force_threshold=1.000000 + enable_blob_files=false + soft_pending_compaction_bytes_limit=68719476736 + target_file_size_base=67108864 + max_compaction_bytes=1677721600 + disable_auto_compactions=false + min_blob_size=0 + memtable_whole_key_filtering=false + max_bytes_for_level_base=268435456 + last_level_temperature=kUnknown + preserve_internal_time_seconds=0 + compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} + max_bytes_for_level_multiplier=10.000000 + max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 + max_sequential_skip_in_iterations=8 + compression=kLZ4Compression + default_write_temperature=kUnknown + compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} + blob_garbage_collection_age_cutoff=0.250000 + ttl=2592000 + periodic_compaction_seconds=0 + preclude_last_level_data_seconds=0 + blob_file_size=268435456 + enable_blob_garbage_collection=false + persist_user_defined_timestamps=true + compaction_pri=kMinOverlappingRatio + compaction_filter_factory=nullptr + comparator=leveldb.BytewiseComparator + bloom_locality=0 + merge_operator=nullptr + compaction_filter=nullptr + level_compaction_dynamic_level_bytes=true + optimize_filters_for_hits=false + inplace_update_support=false + max_write_buffer_number_to_maintain=0 + max_write_buffer_size_to_maintain=0 + sst_partitioner_factory=nullptr + default_temperature=kUnknown + compaction_style=kCompactionStyleLevel + min_write_buffer_number_to_merge=1 + memtable_factory=SkipListFactory + memtable_insert_with_hint_prefix_extractor=nullptr + force_consistency_checks=true + num_levels=7 + +[TableOptions/BlockBasedTable "default"] + num_file_reads_for_auto_readahead=2 + initial_auto_readahead_size=8192 + metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} + enable_index_compression=true + verify_compression=false + prepopulate_block_cache=kDisable + format_version=6 + use_delta_encoding=true + pin_top_level_index_and_filter=true + read_amp_bytes_per_bit=0 + decouple_partitioned_filters=false + partition_filters=false + metadata_block_size=4096 + max_auto_readahead_size=262144 + index_block_restart_interval=1 + block_size_deviation=10 + block_size=4096 + detect_filter_construct_corruption=false + no_block_cache=false + checksum=kXXH3 + filter_policy=nullptr + data_block_hash_table_util_ratio=0.750000 + block_restart_interval=16 + index_type=kBinarySearch + pin_l0_filter_and_index_blocks_in_cache=false + data_block_index_type=kDataBlockBinarySearch + cache_index_and_filter_blocks_with_high_priority=true + whole_key_filtering=true + index_shortening=kShortenSeparators + cache_index_and_filter_blocks=false + block_align=false + optimize_filters_for_memory=true + flush_block_policy_factory=FlushBlockBySizePolicyFactory + + +[CFOptions "payload"] + memtable_max_range_deletions=0 + compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_memory_checks=false + block_protection_bytes_per_key=0 + uncache_aggressiveness=0 + bottommost_file_compaction_delay=0 + memtable_protection_bytes_per_key=0 + experimental_mempurge_threshold=0.000000 + bottommost_compression=kDisableCompressionOption + sample_for_compression=0 + prepopulate_blob_cache=kDisable + blob_file_starting_level=0 + blob_compaction_readahead_size=0 + table_factory=BlockBasedTable + max_successive_merges=0 + max_write_buffer_number=2 + prefix_extractor=nullptr + memtable_huge_page_size=0 + write_buffer_size=10485760 + strict_max_successive_merges=false + arena_block_size=1048576 + level0_file_num_compaction_trigger=4 + report_bg_io_stats=false + inplace_update_num_locks=10000 + memtable_prefix_bloom_size_ratio=0.000000 + level0_stop_writes_trigger=36 + blob_compression_type=kNoCompression + level0_slowdown_writes_trigger=20 + hard_pending_compaction_bytes_limit=274877906944 + target_file_size_multiplier=1 + bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_file_checks=false + blob_garbage_collection_force_threshold=1.000000 + enable_blob_files=false + soft_pending_compaction_bytes_limit=68719476736 + target_file_size_base=67108864 + max_compaction_bytes=1677721600 + disable_auto_compactions=false + min_blob_size=0 + memtable_whole_key_filtering=false + max_bytes_for_level_base=268435456 + last_level_temperature=kUnknown + preserve_internal_time_seconds=0 + compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} + max_bytes_for_level_multiplier=10.000000 + max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 + max_sequential_skip_in_iterations=8 + compression=kLZ4Compression + default_write_temperature=kUnknown + compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} + blob_garbage_collection_age_cutoff=0.250000 + ttl=2592000 + periodic_compaction_seconds=0 + preclude_last_level_data_seconds=0 + blob_file_size=268435456 + enable_blob_garbage_collection=false + persist_user_defined_timestamps=true + compaction_pri=kMinOverlappingRatio + compaction_filter_factory=nullptr + comparator=leveldb.BytewiseComparator + bloom_locality=0 + merge_operator=nullptr + compaction_filter=nullptr + level_compaction_dynamic_level_bytes=true + optimize_filters_for_hits=false + inplace_update_support=false + max_write_buffer_number_to_maintain=0 + max_write_buffer_size_to_maintain=0 + sst_partitioner_factory=nullptr + default_temperature=kUnknown + compaction_style=kCompactionStyleLevel + min_write_buffer_number_to_merge=1 + memtable_factory=SkipListFactory + memtable_insert_with_hint_prefix_extractor=nullptr + force_consistency_checks=true + num_levels=7 + +[TableOptions/BlockBasedTable "payload"] + num_file_reads_for_auto_readahead=2 + initial_auto_readahead_size=8192 + metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} + enable_index_compression=true + verify_compression=false + prepopulate_block_cache=kDisable + format_version=6 + use_delta_encoding=true + pin_top_level_index_and_filter=true + read_amp_bytes_per_bit=0 + decouple_partitioned_filters=false + partition_filters=false + metadata_block_size=4096 + max_auto_readahead_size=262144 + index_block_restart_interval=1 + block_size_deviation=10 + block_size=4096 + detect_filter_construct_corruption=false + no_block_cache=false + checksum=kXXH3 + filter_policy=nullptr + data_block_hash_table_util_ratio=0.750000 + block_restart_interval=16 + index_type=kBinarySearch + pin_l0_filter_and_index_blocks_in_cache=false + data_block_index_type=kDataBlockBinarySearch + cache_index_and_filter_blocks_with_high_priority=true + whole_key_filtering=true + index_shortening=kShortenSeparators + cache_index_and_filter_blocks=false + block_align=false + optimize_filters_for_memory=true + flush_block_policy_factory=FlushBlockBySizePolicyFactory + + +[CFOptions "mapping"] + memtable_max_range_deletions=0 + compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_memory_checks=false + block_protection_bytes_per_key=0 + uncache_aggressiveness=0 + bottommost_file_compaction_delay=0 + memtable_protection_bytes_per_key=0 + experimental_mempurge_threshold=0.000000 + bottommost_compression=kDisableCompressionOption + sample_for_compression=0 + prepopulate_blob_cache=kDisable + blob_file_starting_level=0 + blob_compaction_readahead_size=0 + table_factory=BlockBasedTable + max_successive_merges=0 + max_write_buffer_number=2 + prefix_extractor=nullptr + memtable_huge_page_size=0 + write_buffer_size=10485760 + strict_max_successive_merges=false + arena_block_size=1048576 + level0_file_num_compaction_trigger=4 + report_bg_io_stats=false + inplace_update_num_locks=10000 + memtable_prefix_bloom_size_ratio=0.000000 + level0_stop_writes_trigger=36 + blob_compression_type=kNoCompression + level0_slowdown_writes_trigger=20 + hard_pending_compaction_bytes_limit=274877906944 + target_file_size_multiplier=1 + bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_file_checks=false + blob_garbage_collection_force_threshold=1.000000 + enable_blob_files=false + soft_pending_compaction_bytes_limit=68719476736 + target_file_size_base=67108864 + max_compaction_bytes=1677721600 + disable_auto_compactions=false + min_blob_size=0 + memtable_whole_key_filtering=false + max_bytes_for_level_base=268435456 + last_level_temperature=kUnknown + preserve_internal_time_seconds=0 + compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} + max_bytes_for_level_multiplier=10.000000 + max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 + max_sequential_skip_in_iterations=8 + compression=kLZ4Compression + default_write_temperature=kUnknown + compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} + blob_garbage_collection_age_cutoff=0.250000 + ttl=2592000 + periodic_compaction_seconds=0 + preclude_last_level_data_seconds=0 + blob_file_size=268435456 + enable_blob_garbage_collection=false + persist_user_defined_timestamps=true + compaction_pri=kMinOverlappingRatio + compaction_filter_factory=nullptr + comparator=leveldb.BytewiseComparator + bloom_locality=0 + merge_operator=nullptr + compaction_filter=nullptr + level_compaction_dynamic_level_bytes=true + optimize_filters_for_hits=false + inplace_update_support=false + max_write_buffer_number_to_maintain=0 + max_write_buffer_size_to_maintain=0 + sst_partitioner_factory=nullptr + default_temperature=kUnknown + compaction_style=kCompactionStyleLevel + min_write_buffer_number_to_merge=1 + memtable_factory=SkipListFactory + memtable_insert_with_hint_prefix_extractor=nullptr + force_consistency_checks=true + num_levels=7 + +[TableOptions/BlockBasedTable "mapping"] + num_file_reads_for_auto_readahead=2 + initial_auto_readahead_size=8192 + metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} + enable_index_compression=true + verify_compression=false + prepopulate_block_cache=kDisable + format_version=6 + use_delta_encoding=true + pin_top_level_index_and_filter=true + read_amp_bytes_per_bit=0 + decouple_partitioned_filters=false + partition_filters=false + metadata_block_size=4096 + max_auto_readahead_size=262144 + index_block_restart_interval=1 + block_size_deviation=10 + block_size=4096 + detect_filter_construct_corruption=false + no_block_cache=false + checksum=kXXH3 + filter_policy=nullptr + data_block_hash_table_util_ratio=0.750000 + block_restart_interval=16 + index_type=kBinarySearch + pin_l0_filter_and_index_blocks_in_cache=false + data_block_index_type=kDataBlockBinarySearch + cache_index_and_filter_blocks_with_high_priority=true + whole_key_filtering=true + index_shortening=kShortenSeparators + cache_index_and_filter_blocks=false + block_align=false + optimize_filters_for_memory=true + flush_block_policy_factory=FlushBlockBySizePolicyFactory + + +[CFOptions "version"] + memtable_max_range_deletions=0 + compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_memory_checks=false + block_protection_bytes_per_key=0 + uncache_aggressiveness=0 + bottommost_file_compaction_delay=0 + memtable_protection_bytes_per_key=0 + experimental_mempurge_threshold=0.000000 + bottommost_compression=kDisableCompressionOption + sample_for_compression=0 + prepopulate_blob_cache=kDisable + blob_file_starting_level=0 + blob_compaction_readahead_size=0 + table_factory=BlockBasedTable + max_successive_merges=0 + max_write_buffer_number=2 + prefix_extractor=nullptr + memtable_huge_page_size=0 + write_buffer_size=10485760 + strict_max_successive_merges=false + arena_block_size=1048576 + level0_file_num_compaction_trigger=4 + report_bg_io_stats=false + inplace_update_num_locks=10000 + memtable_prefix_bloom_size_ratio=0.000000 + level0_stop_writes_trigger=36 + blob_compression_type=kNoCompression + level0_slowdown_writes_trigger=20 + hard_pending_compaction_bytes_limit=274877906944 + target_file_size_multiplier=1 + bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_file_checks=false + blob_garbage_collection_force_threshold=1.000000 + enable_blob_files=false + soft_pending_compaction_bytes_limit=68719476736 + target_file_size_base=67108864 + max_compaction_bytes=1677721600 + disable_auto_compactions=false + min_blob_size=0 + memtable_whole_key_filtering=false + max_bytes_for_level_base=268435456 + last_level_temperature=kUnknown + preserve_internal_time_seconds=0 + compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} + max_bytes_for_level_multiplier=10.000000 + max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 + max_sequential_skip_in_iterations=8 + compression=kLZ4Compression + default_write_temperature=kUnknown + compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} + blob_garbage_collection_age_cutoff=0.250000 + ttl=2592000 + periodic_compaction_seconds=0 + preclude_last_level_data_seconds=0 + blob_file_size=268435456 + enable_blob_garbage_collection=false + persist_user_defined_timestamps=true + compaction_pri=kMinOverlappingRatio + compaction_filter_factory=nullptr + comparator=leveldb.BytewiseComparator + bloom_locality=0 + merge_operator=nullptr + compaction_filter=nullptr + level_compaction_dynamic_level_bytes=true + optimize_filters_for_hits=false + inplace_update_support=false + max_write_buffer_number_to_maintain=0 + max_write_buffer_size_to_maintain=0 + sst_partitioner_factory=nullptr + default_temperature=kUnknown + compaction_style=kCompactionStyleLevel + min_write_buffer_number_to_merge=1 + memtable_factory=SkipListFactory + memtable_insert_with_hint_prefix_extractor=nullptr + force_consistency_checks=true + num_levels=7 + +[TableOptions/BlockBasedTable "version"] + num_file_reads_for_auto_readahead=2 + initial_auto_readahead_size=8192 + metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} + enable_index_compression=true + verify_compression=false + prepopulate_block_cache=kDisable + format_version=6 + use_delta_encoding=true + pin_top_level_index_and_filter=true + read_amp_bytes_per_bit=0 + decouple_partitioned_filters=false + partition_filters=false + metadata_block_size=4096 + max_auto_readahead_size=262144 + index_block_restart_interval=1 + block_size_deviation=10 + block_size=4096 + detect_filter_construct_corruption=false + no_block_cache=false + checksum=kXXH3 + filter_policy=nullptr + data_block_hash_table_util_ratio=0.750000 + block_restart_interval=16 + index_type=kBinarySearch + pin_l0_filter_and_index_blocks_in_cache=false + data_block_index_type=kDataBlockBinarySearch + cache_index_and_filter_blocks_with_high_priority=true + whole_key_filtering=true + index_shortening=kShortenSeparators + cache_index_and_filter_blocks=false + block_align=false + optimize_filters_for_memory=true + flush_block_policy_factory=FlushBlockBySizePolicyFactory + + +[CFOptions "vector"] + memtable_max_range_deletions=0 + compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_memory_checks=false + block_protection_bytes_per_key=0 + uncache_aggressiveness=0 + bottommost_file_compaction_delay=0 + memtable_protection_bytes_per_key=0 + experimental_mempurge_threshold=0.000000 + bottommost_compression=kDisableCompressionOption + sample_for_compression=0 + prepopulate_blob_cache=kDisable + blob_file_starting_level=0 + blob_compaction_readahead_size=0 + table_factory=BlockBasedTable + max_successive_merges=0 + max_write_buffer_number=2 + prefix_extractor=nullptr + memtable_huge_page_size=0 + write_buffer_size=10485760 + strict_max_successive_merges=false + arena_block_size=1048576 + level0_file_num_compaction_trigger=4 + report_bg_io_stats=false + inplace_update_num_locks=10000 + memtable_prefix_bloom_size_ratio=0.000000 + level0_stop_writes_trigger=36 + blob_compression_type=kNoCompression + level0_slowdown_writes_trigger=20 + hard_pending_compaction_bytes_limit=274877906944 + target_file_size_multiplier=1 + bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_file_checks=false + blob_garbage_collection_force_threshold=1.000000 + enable_blob_files=false + soft_pending_compaction_bytes_limit=68719476736 + target_file_size_base=67108864 + max_compaction_bytes=1677721600 + disable_auto_compactions=false + min_blob_size=0 + memtable_whole_key_filtering=false + max_bytes_for_level_base=268435456 + last_level_temperature=kUnknown + preserve_internal_time_seconds=0 + compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} + max_bytes_for_level_multiplier=10.000000 + max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 + max_sequential_skip_in_iterations=8 + compression=kLZ4Compression + default_write_temperature=kUnknown + compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} + blob_garbage_collection_age_cutoff=0.250000 + ttl=2592000 + periodic_compaction_seconds=0 + preclude_last_level_data_seconds=0 + blob_file_size=268435456 + enable_blob_garbage_collection=false + persist_user_defined_timestamps=true + compaction_pri=kMinOverlappingRatio + compaction_filter_factory=nullptr + comparator=leveldb.BytewiseComparator + bloom_locality=0 + merge_operator=nullptr + compaction_filter=nullptr + level_compaction_dynamic_level_bytes=true + optimize_filters_for_hits=false + inplace_update_support=false + max_write_buffer_number_to_maintain=0 + max_write_buffer_size_to_maintain=0 + sst_partitioner_factory=nullptr + default_temperature=kUnknown + compaction_style=kCompactionStyleLevel + min_write_buffer_number_to_merge=1 + memtable_factory=SkipListFactory + memtable_insert_with_hint_prefix_extractor=nullptr + force_consistency_checks=true + num_levels=7 + +[TableOptions/BlockBasedTable "vector"] + num_file_reads_for_auto_readahead=2 + initial_auto_readahead_size=8192 + metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} + enable_index_compression=true + verify_compression=false + prepopulate_block_cache=kDisable + format_version=6 + use_delta_encoding=true + pin_top_level_index_and_filter=true + read_amp_bytes_per_bit=0 + decouple_partitioned_filters=false + partition_filters=false + metadata_block_size=4096 + max_auto_readahead_size=262144 + index_block_restart_interval=1 + block_size_deviation=10 + block_size=4096 + detect_filter_construct_corruption=false + no_block_cache=false + checksum=kXXH3 + filter_policy=nullptr + data_block_hash_table_util_ratio=0.750000 + block_restart_interval=16 + index_type=kBinarySearch + pin_l0_filter_and_index_blocks_in_cache=false + data_block_index_type=kDataBlockBinarySearch + cache_index_and_filter_blocks_with_high_priority=true + whole_key_filtering=true + index_shortening=kShortenSeparators + cache_index_and_filter_blocks=false + block_align=false + optimize_filters_for_memory=true + flush_block_policy_factory=FlushBlockBySizePolicyFactory + diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/OPTIONS-000015 b/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/OPTIONS-000015 new file mode 100644 index 0000000000000000000000000000000000000000..ad2b181add715408dc69839970eebfd4c1a28b4b --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/OPTIONS-000015 @@ -0,0 +1,670 @@ +# This is a RocksDB option file. +# +# For detailed file format spec, please refer to the example file +# in examples/rocksdb_option_file_example.ini +# + +[Version] + rocksdb_version=9.9.3 + options_file_version=1.1 + +[DBOptions] + compaction_readahead_size=2097152 + strict_bytes_per_sync=false + bytes_per_sync=0 + max_background_jobs=2 + avoid_flush_during_shutdown=false + max_background_flushes=-1 + delayed_write_rate=16777216 + max_open_files=256 + max_subcompactions=1 + writable_file_max_buffer_size=1048576 + wal_bytes_per_sync=0 + max_background_compactions=-1 + max_total_wal_size=0 + delete_obsolete_files_period_micros=180000000 + stats_dump_period_sec=600 + stats_history_buffer_size=1048576 + stats_persist_period_sec=600 + follower_refresh_catchup_period_ms=10000 + enforce_single_del_contracts=true + lowest_used_cache_tier=kNonVolatileBlockTier + bgerror_resume_retry_interval=1000000 + metadata_write_temperature=kUnknown + best_efforts_recovery=false + log_readahead_size=0 + write_identity_file=true + write_dbid_to_manifest=true + prefix_seek_opt_in_only=false + wal_compression=kNoCompression + manual_wal_flush=false + db_host_id=__hostname__ + two_write_queues=false + random_access_max_buffer_size=1048576 + avoid_unnecessary_blocking_io=false + skip_checking_sst_file_sizes_on_db_open=false + flush_verify_memtable_count=true + fail_if_options_file_error=true + atomic_flush=false + verify_sst_unique_id_in_manifest=true + skip_stats_update_on_db_open=false + track_and_verify_wals_in_manifest=false + compaction_verify_record_count=true + paranoid_checks=true + create_if_missing=true + max_write_batch_group_size_bytes=1048576 + follower_catchup_retry_count=10 + avoid_flush_during_recovery=false + file_checksum_gen_factory=nullptr + enable_thread_tracking=false + allow_fallocate=true + allow_data_in_errors=false + error_if_exists=false + use_direct_io_for_flush_and_compaction=false + background_close_inactive_wals=false + create_missing_column_families=true + WAL_size_limit_MB=0 + use_direct_reads=false + persist_stats_to_disk=false + allow_2pc=false + is_fd_close_on_exec=true + max_log_file_size=1048576 + max_file_opening_threads=16 + wal_filter=nullptr + wal_write_temperature=kUnknown + follower_catchup_retry_wait_ms=100 + allow_mmap_reads=false + allow_mmap_writes=false + use_adaptive_mutex=false + use_fsync=false + table_cache_numshardbits=6 + dump_malloc_stats=false + db_write_buffer_size=0 + allow_ingest_behind=false + keep_log_file_num=1 + max_bgerror_resume_count=2147483647 + allow_concurrent_memtable_write=true + recycle_log_file_num=0 + log_file_time_to_roll=0 + manifest_preallocation_size=4194304 + enable_write_thread_adaptive_yield=true + WAL_ttl_seconds=0 + max_manifest_file_size=1073741824 + wal_recovery_mode=kTolerateCorruptedTailRecords + enable_pipelined_write=false + write_thread_slow_yield_usec=3 + unordered_write=false + write_thread_max_yield_usec=100 + advise_random_on_open=true + info_log_level=ERROR_LEVEL + + +[CFOptions "default"] + memtable_max_range_deletions=0 + compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_memory_checks=false + block_protection_bytes_per_key=0 + uncache_aggressiveness=0 + bottommost_file_compaction_delay=0 + memtable_protection_bytes_per_key=0 + experimental_mempurge_threshold=0.000000 + bottommost_compression=kDisableCompressionOption + sample_for_compression=0 + prepopulate_blob_cache=kDisable + blob_file_starting_level=0 + blob_compaction_readahead_size=0 + table_factory=BlockBasedTable + max_successive_merges=0 + max_write_buffer_number=2 + prefix_extractor=nullptr + memtable_huge_page_size=0 + write_buffer_size=10485760 + strict_max_successive_merges=false + arena_block_size=1048576 + level0_file_num_compaction_trigger=4 + report_bg_io_stats=false + inplace_update_num_locks=10000 + memtable_prefix_bloom_size_ratio=0.000000 + level0_stop_writes_trigger=36 + blob_compression_type=kNoCompression + level0_slowdown_writes_trigger=20 + hard_pending_compaction_bytes_limit=274877906944 + target_file_size_multiplier=1 + bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_file_checks=false + blob_garbage_collection_force_threshold=1.000000 + enable_blob_files=false + soft_pending_compaction_bytes_limit=68719476736 + target_file_size_base=67108864 + max_compaction_bytes=1677721600 + disable_auto_compactions=false + min_blob_size=0 + memtable_whole_key_filtering=false + max_bytes_for_level_base=268435456 + last_level_temperature=kUnknown + preserve_internal_time_seconds=0 + compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} + max_bytes_for_level_multiplier=10.000000 + max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 + max_sequential_skip_in_iterations=8 + compression=kLZ4Compression + default_write_temperature=kUnknown + compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} + blob_garbage_collection_age_cutoff=0.250000 + ttl=2592000 + periodic_compaction_seconds=0 + preclude_last_level_data_seconds=0 + blob_file_size=268435456 + enable_blob_garbage_collection=false + persist_user_defined_timestamps=true + compaction_pri=kMinOverlappingRatio + compaction_filter_factory=nullptr + comparator=leveldb.BytewiseComparator + bloom_locality=0 + merge_operator=nullptr + compaction_filter=nullptr + level_compaction_dynamic_level_bytes=true + optimize_filters_for_hits=false + inplace_update_support=false + max_write_buffer_number_to_maintain=0 + max_write_buffer_size_to_maintain=0 + sst_partitioner_factory=nullptr + default_temperature=kUnknown + compaction_style=kCompactionStyleLevel + min_write_buffer_number_to_merge=1 + memtable_factory=SkipListFactory + memtable_insert_with_hint_prefix_extractor=nullptr + force_consistency_checks=true + num_levels=7 + +[TableOptions/BlockBasedTable "default"] + num_file_reads_for_auto_readahead=2 + initial_auto_readahead_size=8192 + metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} + enable_index_compression=true + verify_compression=false + prepopulate_block_cache=kDisable + format_version=6 + use_delta_encoding=true + pin_top_level_index_and_filter=true + read_amp_bytes_per_bit=0 + decouple_partitioned_filters=false + partition_filters=false + metadata_block_size=4096 + max_auto_readahead_size=262144 + index_block_restart_interval=1 + block_size_deviation=10 + block_size=4096 + detect_filter_construct_corruption=false + no_block_cache=false + checksum=kXXH3 + filter_policy=nullptr + data_block_hash_table_util_ratio=0.750000 + block_restart_interval=16 + index_type=kBinarySearch + pin_l0_filter_and_index_blocks_in_cache=false + data_block_index_type=kDataBlockBinarySearch + cache_index_and_filter_blocks_with_high_priority=true + whole_key_filtering=true + index_shortening=kShortenSeparators + cache_index_and_filter_blocks=false + block_align=false + optimize_filters_for_memory=true + flush_block_policy_factory=FlushBlockBySizePolicyFactory + + +[CFOptions "payload"] + memtable_max_range_deletions=0 + compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_memory_checks=false + block_protection_bytes_per_key=0 + uncache_aggressiveness=0 + bottommost_file_compaction_delay=0 + memtable_protection_bytes_per_key=0 + experimental_mempurge_threshold=0.000000 + bottommost_compression=kDisableCompressionOption + sample_for_compression=0 + prepopulate_blob_cache=kDisable + blob_file_starting_level=0 + blob_compaction_readahead_size=0 + table_factory=BlockBasedTable + max_successive_merges=0 + max_write_buffer_number=2 + prefix_extractor=nullptr + memtable_huge_page_size=0 + write_buffer_size=10485760 + strict_max_successive_merges=false + arena_block_size=1048576 + level0_file_num_compaction_trigger=4 + report_bg_io_stats=false + inplace_update_num_locks=10000 + memtable_prefix_bloom_size_ratio=0.000000 + level0_stop_writes_trigger=36 + blob_compression_type=kNoCompression + level0_slowdown_writes_trigger=20 + hard_pending_compaction_bytes_limit=274877906944 + target_file_size_multiplier=1 + bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_file_checks=false + blob_garbage_collection_force_threshold=1.000000 + enable_blob_files=false + soft_pending_compaction_bytes_limit=68719476736 + target_file_size_base=67108864 + max_compaction_bytes=1677721600 + disable_auto_compactions=false + min_blob_size=0 + memtable_whole_key_filtering=false + max_bytes_for_level_base=268435456 + last_level_temperature=kUnknown + preserve_internal_time_seconds=0 + compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} + max_bytes_for_level_multiplier=10.000000 + max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 + max_sequential_skip_in_iterations=8 + compression=kLZ4Compression + default_write_temperature=kUnknown + compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} + blob_garbage_collection_age_cutoff=0.250000 + ttl=2592000 + periodic_compaction_seconds=0 + preclude_last_level_data_seconds=0 + blob_file_size=268435456 + enable_blob_garbage_collection=false + persist_user_defined_timestamps=true + compaction_pri=kMinOverlappingRatio + compaction_filter_factory=nullptr + comparator=leveldb.BytewiseComparator + bloom_locality=0 + merge_operator=nullptr + compaction_filter=nullptr + level_compaction_dynamic_level_bytes=true + optimize_filters_for_hits=false + inplace_update_support=false + max_write_buffer_number_to_maintain=0 + max_write_buffer_size_to_maintain=0 + sst_partitioner_factory=nullptr + default_temperature=kUnknown + compaction_style=kCompactionStyleLevel + min_write_buffer_number_to_merge=1 + memtable_factory=SkipListFactory + memtable_insert_with_hint_prefix_extractor=nullptr + force_consistency_checks=true + num_levels=7 + +[TableOptions/BlockBasedTable "payload"] + num_file_reads_for_auto_readahead=2 + initial_auto_readahead_size=8192 + metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} + enable_index_compression=true + verify_compression=false + prepopulate_block_cache=kDisable + format_version=6 + use_delta_encoding=true + pin_top_level_index_and_filter=true + read_amp_bytes_per_bit=0 + decouple_partitioned_filters=false + partition_filters=false + metadata_block_size=4096 + max_auto_readahead_size=262144 + index_block_restart_interval=1 + block_size_deviation=10 + block_size=4096 + detect_filter_construct_corruption=false + no_block_cache=false + checksum=kXXH3 + filter_policy=nullptr + data_block_hash_table_util_ratio=0.750000 + block_restart_interval=16 + index_type=kBinarySearch + pin_l0_filter_and_index_blocks_in_cache=false + data_block_index_type=kDataBlockBinarySearch + cache_index_and_filter_blocks_with_high_priority=true + whole_key_filtering=true + index_shortening=kShortenSeparators + cache_index_and_filter_blocks=false + block_align=false + optimize_filters_for_memory=true + flush_block_policy_factory=FlushBlockBySizePolicyFactory + + +[CFOptions "mapping"] + memtable_max_range_deletions=0 + compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_memory_checks=false + block_protection_bytes_per_key=0 + uncache_aggressiveness=0 + bottommost_file_compaction_delay=0 + memtable_protection_bytes_per_key=0 + experimental_mempurge_threshold=0.000000 + bottommost_compression=kDisableCompressionOption + sample_for_compression=0 + prepopulate_blob_cache=kDisable + blob_file_starting_level=0 + blob_compaction_readahead_size=0 + table_factory=BlockBasedTable + max_successive_merges=0 + max_write_buffer_number=2 + prefix_extractor=nullptr + memtable_huge_page_size=0 + write_buffer_size=10485760 + strict_max_successive_merges=false + arena_block_size=1048576 + level0_file_num_compaction_trigger=4 + report_bg_io_stats=false + inplace_update_num_locks=10000 + memtable_prefix_bloom_size_ratio=0.000000 + level0_stop_writes_trigger=36 + blob_compression_type=kNoCompression + level0_slowdown_writes_trigger=20 + hard_pending_compaction_bytes_limit=274877906944 + target_file_size_multiplier=1 + bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_file_checks=false + blob_garbage_collection_force_threshold=1.000000 + enable_blob_files=false + soft_pending_compaction_bytes_limit=68719476736 + target_file_size_base=67108864 + max_compaction_bytes=1677721600 + disable_auto_compactions=false + min_blob_size=0 + memtable_whole_key_filtering=false + max_bytes_for_level_base=268435456 + last_level_temperature=kUnknown + preserve_internal_time_seconds=0 + compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} + max_bytes_for_level_multiplier=10.000000 + max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 + max_sequential_skip_in_iterations=8 + compression=kLZ4Compression + default_write_temperature=kUnknown + compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} + blob_garbage_collection_age_cutoff=0.250000 + ttl=2592000 + periodic_compaction_seconds=0 + preclude_last_level_data_seconds=0 + blob_file_size=268435456 + enable_blob_garbage_collection=false + persist_user_defined_timestamps=true + compaction_pri=kMinOverlappingRatio + compaction_filter_factory=nullptr + comparator=leveldb.BytewiseComparator + bloom_locality=0 + merge_operator=nullptr + compaction_filter=nullptr + level_compaction_dynamic_level_bytes=true + optimize_filters_for_hits=false + inplace_update_support=false + max_write_buffer_number_to_maintain=0 + max_write_buffer_size_to_maintain=0 + sst_partitioner_factory=nullptr + default_temperature=kUnknown + compaction_style=kCompactionStyleLevel + min_write_buffer_number_to_merge=1 + memtable_factory=SkipListFactory + memtable_insert_with_hint_prefix_extractor=nullptr + force_consistency_checks=true + num_levels=7 + +[TableOptions/BlockBasedTable "mapping"] + num_file_reads_for_auto_readahead=2 + initial_auto_readahead_size=8192 + metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} + enable_index_compression=true + verify_compression=false + prepopulate_block_cache=kDisable + format_version=6 + use_delta_encoding=true + pin_top_level_index_and_filter=true + read_amp_bytes_per_bit=0 + decouple_partitioned_filters=false + partition_filters=false + metadata_block_size=4096 + max_auto_readahead_size=262144 + index_block_restart_interval=1 + block_size_deviation=10 + block_size=4096 + detect_filter_construct_corruption=false + no_block_cache=false + checksum=kXXH3 + filter_policy=nullptr + data_block_hash_table_util_ratio=0.750000 + block_restart_interval=16 + index_type=kBinarySearch + pin_l0_filter_and_index_blocks_in_cache=false + data_block_index_type=kDataBlockBinarySearch + cache_index_and_filter_blocks_with_high_priority=true + whole_key_filtering=true + index_shortening=kShortenSeparators + cache_index_and_filter_blocks=false + block_align=false + optimize_filters_for_memory=true + flush_block_policy_factory=FlushBlockBySizePolicyFactory + + +[CFOptions "version"] + memtable_max_range_deletions=0 + compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_memory_checks=false + block_protection_bytes_per_key=0 + uncache_aggressiveness=0 + bottommost_file_compaction_delay=0 + memtable_protection_bytes_per_key=0 + experimental_mempurge_threshold=0.000000 + bottommost_compression=kDisableCompressionOption + sample_for_compression=0 + prepopulate_blob_cache=kDisable + blob_file_starting_level=0 + blob_compaction_readahead_size=0 + table_factory=BlockBasedTable + max_successive_merges=0 + max_write_buffer_number=2 + prefix_extractor=nullptr + memtable_huge_page_size=0 + write_buffer_size=10485760 + strict_max_successive_merges=false + arena_block_size=1048576 + level0_file_num_compaction_trigger=4 + report_bg_io_stats=false + inplace_update_num_locks=10000 + memtable_prefix_bloom_size_ratio=0.000000 + level0_stop_writes_trigger=36 + blob_compression_type=kNoCompression + level0_slowdown_writes_trigger=20 + hard_pending_compaction_bytes_limit=274877906944 + target_file_size_multiplier=1 + bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_file_checks=false + blob_garbage_collection_force_threshold=1.000000 + enable_blob_files=false + soft_pending_compaction_bytes_limit=68719476736 + target_file_size_base=67108864 + max_compaction_bytes=1677721600 + disable_auto_compactions=false + min_blob_size=0 + memtable_whole_key_filtering=false + max_bytes_for_level_base=268435456 + last_level_temperature=kUnknown + preserve_internal_time_seconds=0 + compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} + max_bytes_for_level_multiplier=10.000000 + max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 + max_sequential_skip_in_iterations=8 + compression=kLZ4Compression + default_write_temperature=kUnknown + compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} + blob_garbage_collection_age_cutoff=0.250000 + ttl=2592000 + periodic_compaction_seconds=0 + preclude_last_level_data_seconds=0 + blob_file_size=268435456 + enable_blob_garbage_collection=false + persist_user_defined_timestamps=true + compaction_pri=kMinOverlappingRatio + compaction_filter_factory=nullptr + comparator=leveldb.BytewiseComparator + bloom_locality=0 + merge_operator=nullptr + compaction_filter=nullptr + level_compaction_dynamic_level_bytes=true + optimize_filters_for_hits=false + inplace_update_support=false + max_write_buffer_number_to_maintain=0 + max_write_buffer_size_to_maintain=0 + sst_partitioner_factory=nullptr + default_temperature=kUnknown + compaction_style=kCompactionStyleLevel + min_write_buffer_number_to_merge=1 + memtable_factory=SkipListFactory + memtable_insert_with_hint_prefix_extractor=nullptr + force_consistency_checks=true + num_levels=7 + +[TableOptions/BlockBasedTable "version"] + num_file_reads_for_auto_readahead=2 + initial_auto_readahead_size=8192 + metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} + enable_index_compression=true + verify_compression=false + prepopulate_block_cache=kDisable + format_version=6 + use_delta_encoding=true + pin_top_level_index_and_filter=true + read_amp_bytes_per_bit=0 + decouple_partitioned_filters=false + partition_filters=false + metadata_block_size=4096 + max_auto_readahead_size=262144 + index_block_restart_interval=1 + block_size_deviation=10 + block_size=4096 + detect_filter_construct_corruption=false + no_block_cache=false + checksum=kXXH3 + filter_policy=nullptr + data_block_hash_table_util_ratio=0.750000 + block_restart_interval=16 + index_type=kBinarySearch + pin_l0_filter_and_index_blocks_in_cache=false + data_block_index_type=kDataBlockBinarySearch + cache_index_and_filter_blocks_with_high_priority=true + whole_key_filtering=true + index_shortening=kShortenSeparators + cache_index_and_filter_blocks=false + block_align=false + optimize_filters_for_memory=true + flush_block_policy_factory=FlushBlockBySizePolicyFactory + + +[CFOptions "vector"] + memtable_max_range_deletions=0 + compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_memory_checks=false + block_protection_bytes_per_key=0 + uncache_aggressiveness=0 + bottommost_file_compaction_delay=0 + memtable_protection_bytes_per_key=0 + experimental_mempurge_threshold=0.000000 + bottommost_compression=kDisableCompressionOption + sample_for_compression=0 + prepopulate_blob_cache=kDisable + blob_file_starting_level=0 + blob_compaction_readahead_size=0 + table_factory=BlockBasedTable + max_successive_merges=0 + max_write_buffer_number=2 + prefix_extractor=nullptr + memtable_huge_page_size=0 + write_buffer_size=10485760 + strict_max_successive_merges=false + arena_block_size=1048576 + level0_file_num_compaction_trigger=4 + report_bg_io_stats=false + inplace_update_num_locks=10000 + memtable_prefix_bloom_size_ratio=0.000000 + level0_stop_writes_trigger=36 + blob_compression_type=kNoCompression + level0_slowdown_writes_trigger=20 + hard_pending_compaction_bytes_limit=274877906944 + target_file_size_multiplier=1 + bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_file_checks=false + blob_garbage_collection_force_threshold=1.000000 + enable_blob_files=false + soft_pending_compaction_bytes_limit=68719476736 + target_file_size_base=67108864 + max_compaction_bytes=1677721600 + disable_auto_compactions=false + min_blob_size=0 + memtable_whole_key_filtering=false + max_bytes_for_level_base=268435456 + last_level_temperature=kUnknown + preserve_internal_time_seconds=0 + compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} + max_bytes_for_level_multiplier=10.000000 + max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 + max_sequential_skip_in_iterations=8 + compression=kLZ4Compression + default_write_temperature=kUnknown + compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} + blob_garbage_collection_age_cutoff=0.250000 + ttl=2592000 + periodic_compaction_seconds=0 + preclude_last_level_data_seconds=0 + blob_file_size=268435456 + enable_blob_garbage_collection=false + persist_user_defined_timestamps=true + compaction_pri=kMinOverlappingRatio + compaction_filter_factory=nullptr + comparator=leveldb.BytewiseComparator + bloom_locality=0 + merge_operator=nullptr + compaction_filter=nullptr + level_compaction_dynamic_level_bytes=true + optimize_filters_for_hits=false + inplace_update_support=false + max_write_buffer_number_to_maintain=0 + max_write_buffer_size_to_maintain=0 + sst_partitioner_factory=nullptr + default_temperature=kUnknown + compaction_style=kCompactionStyleLevel + min_write_buffer_number_to_merge=1 + memtable_factory=SkipListFactory + memtable_insert_with_hint_prefix_extractor=nullptr + force_consistency_checks=true + num_levels=7 + +[TableOptions/BlockBasedTable "vector"] + num_file_reads_for_auto_readahead=2 + initial_auto_readahead_size=8192 + metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} + enable_index_compression=true + verify_compression=false + prepopulate_block_cache=kDisable + format_version=6 + use_delta_encoding=true + pin_top_level_index_and_filter=true + read_amp_bytes_per_bit=0 + decouple_partitioned_filters=false + partition_filters=false + metadata_block_size=4096 + max_auto_readahead_size=262144 + index_block_restart_interval=1 + block_size_deviation=10 + block_size=4096 + detect_filter_construct_corruption=false + no_block_cache=false + checksum=kXXH3 + filter_policy=nullptr + data_block_hash_table_util_ratio=0.750000 + block_restart_interval=16 + index_type=kBinarySearch + pin_l0_filter_and_index_blocks_in_cache=false + data_block_index_type=kDataBlockBinarySearch + cache_index_and_filter_blocks_with_high_priority=true + whole_key_filtering=true + index_shortening=kShortenSeparators + cache_index_and_filter_blocks=false + block_align=false + optimize_filters_for_memory=true + flush_block_policy_factory=FlushBlockBySizePolicyFactory + diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/payload_index/000012.log b/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/payload_index/000012.log new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/payload_index/CURRENT b/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/payload_index/CURRENT new file mode 100644 index 0000000000000000000000000000000000000000..625d147412870471b19d90716ccc20a7f207a5c3 --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/payload_index/CURRENT @@ -0,0 +1 @@ +MANIFEST-000013 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/payload_index/IDENTITY b/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/payload_index/IDENTITY new file mode 100644 index 0000000000000000000000000000000000000000..e796820d976ae41288af773c90b569890c136bd7 --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/payload_index/IDENTITY @@ -0,0 +1 @@ +b435d29e-706f-497d-b189-98f836c1786b \ No newline at end of file diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/payload_index/LOCK b/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/payload_index/LOCK new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/payload_index/LOG b/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/payload_index/LOG new file mode 100644 index 0000000000000000000000000000000000000000..6a0a1fe91cc75c03a2c10d3f3a93efb3dfea5bea --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/payload_index/LOG @@ -0,0 +1,247 @@ +2025/05/04-10:09:55.790520 37 RocksDB version: 9.9.3 +2025/05/04-10:09:55.790667 37 Compile date 2024-12-05 01:25:31 +2025/05/04-10:09:55.790670 37 DB SUMMARY +2025/05/04-10:09:55.790672 37 Host name (Env): c5f2a9d061bb +2025/05/04-10:09:55.790672 37 DB Session ID: CD0SHR3DDC5AMRBDXMDI +2025/05/04-10:09:55.791368 37 CURRENT file: CURRENT +2025/05/04-10:09:55.791372 37 IDENTITY file: IDENTITY +2025/05/04-10:09:55.791377 37 MANIFEST file: MANIFEST-000009 size: 159 Bytes +2025/05/04-10:09:55.791378 37 SST files in ./storage/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/payload_index dir, Total Num: 0, files: +2025/05/04-10:09:55.791379 37 Write Ahead Log file in ./storage/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/payload_index: 000008.log size: 0 ; +2025/05/04-10:09:55.791380 37 Options.error_if_exists: 0 +2025/05/04-10:09:55.791381 37 Options.create_if_missing: 1 +2025/05/04-10:09:55.791382 37 Options.paranoid_checks: 1 +2025/05/04-10:09:55.791383 37 Options.flush_verify_memtable_count: 1 +2025/05/04-10:09:55.791383 37 Options.compaction_verify_record_count: 1 +2025/05/04-10:09:55.791427 37 Options.track_and_verify_wals_in_manifest: 0 +2025/05/04-10:09:55.791428 37 Options.verify_sst_unique_id_in_manifest: 1 +2025/05/04-10:09:55.791429 37 Options.env: 0xffff86034000 +2025/05/04-10:09:55.791430 37 Options.fs: PosixFileSystem +2025/05/04-10:09:55.791431 37 Options.info_log: 0xffff860ad800 +2025/05/04-10:09:55.791432 37 Options.max_file_opening_threads: 16 +2025/05/04-10:09:55.791433 37 Options.statistics: (nil) +2025/05/04-10:09:55.791433 37 Options.use_fsync: 0 +2025/05/04-10:09:55.791434 37 Options.max_log_file_size: 1048576 +2025/05/04-10:09:55.791434 37 Options.max_manifest_file_size: 1073741824 +2025/05/04-10:09:55.791435 37 Options.log_file_time_to_roll: 0 +2025/05/04-10:09:55.791436 37 Options.keep_log_file_num: 1 +2025/05/04-10:09:55.791436 37 Options.recycle_log_file_num: 0 +2025/05/04-10:09:55.791437 37 Options.allow_fallocate: 1 +2025/05/04-10:09:55.791438 37 Options.allow_mmap_reads: 0 +2025/05/04-10:09:55.791438 37 Options.allow_mmap_writes: 0 +2025/05/04-10:09:55.791439 37 Options.use_direct_reads: 0 +2025/05/04-10:09:55.791439 37 Options.use_direct_io_for_flush_and_compaction: 0 +2025/05/04-10:09:55.791442 37 Options.create_missing_column_families: 1 +2025/05/04-10:09:55.791443 37 Options.db_log_dir: +2025/05/04-10:09:55.791444 37 Options.wal_dir: +2025/05/04-10:09:55.791499 37 Options.table_cache_numshardbits: 6 +2025/05/04-10:09:55.791500 37 Options.WAL_ttl_seconds: 0 +2025/05/04-10:09:55.791501 37 Options.WAL_size_limit_MB: 0 +2025/05/04-10:09:55.791501 37 Options.max_write_batch_group_size_bytes: 1048576 +2025/05/04-10:09:55.791502 37 Options.manifest_preallocation_size: 4194304 +2025/05/04-10:09:55.791503 37 Options.is_fd_close_on_exec: 1 +2025/05/04-10:09:55.791503 37 Options.advise_random_on_open: 1 +2025/05/04-10:09:55.791504 37 Options.db_write_buffer_size: 0 +2025/05/04-10:09:55.791505 37 Options.write_buffer_manager: 0xffff8600a200 +2025/05/04-10:09:55.791505 37 Options.random_access_max_buffer_size: 1048576 +2025/05/04-10:09:55.791506 37 Options.use_adaptive_mutex: 0 +2025/05/04-10:09:55.791507 37 Options.rate_limiter: (nil) +2025/05/04-10:09:55.791557 37 Options.sst_file_manager.rate_bytes_per_sec: 0 +2025/05/04-10:09:55.791558 37 Options.wal_recovery_mode: 0 +2025/05/04-10:09:55.791559 37 Options.enable_thread_tracking: 0 +2025/05/04-10:09:55.791559 37 Options.enable_pipelined_write: 0 +2025/05/04-10:09:55.791560 37 Options.unordered_write: 0 +2025/05/04-10:09:55.791561 37 Options.allow_concurrent_memtable_write: 1 +2025/05/04-10:09:55.791561 37 Options.enable_write_thread_adaptive_yield: 1 +2025/05/04-10:09:55.791562 37 Options.write_thread_max_yield_usec: 100 +2025/05/04-10:09:55.791562 37 Options.write_thread_slow_yield_usec: 3 +2025/05/04-10:09:55.791563 37 Options.row_cache: None +2025/05/04-10:09:55.791564 37 Options.wal_filter: None +2025/05/04-10:09:55.791564 37 Options.avoid_flush_during_recovery: 0 +2025/05/04-10:09:55.791565 37 Options.allow_ingest_behind: 0 +2025/05/04-10:09:55.791565 37 Options.two_write_queues: 0 +2025/05/04-10:09:55.791566 37 Options.manual_wal_flush: 0 +2025/05/04-10:09:55.791566 37 Options.wal_compression: 0 +2025/05/04-10:09:55.791567 37 Options.background_close_inactive_wals: 0 +2025/05/04-10:09:55.791568 37 Options.atomic_flush: 0 +2025/05/04-10:09:55.791635 37 Options.avoid_unnecessary_blocking_io: 0 +2025/05/04-10:09:55.791636 37 Options.prefix_seek_opt_in_only: 0 +2025/05/04-10:09:55.791638 37 Options.persist_stats_to_disk: 0 +2025/05/04-10:09:55.791638 37 Options.write_dbid_to_manifest: 1 +2025/05/04-10:09:55.791639 37 Options.write_identity_file: 1 +2025/05/04-10:09:55.791640 37 Options.log_readahead_size: 0 +2025/05/04-10:09:55.791640 37 Options.file_checksum_gen_factory: Unknown +2025/05/04-10:09:55.791641 37 Options.best_efforts_recovery: 0 +2025/05/04-10:09:55.791642 37 Options.max_bgerror_resume_count: 2147483647 +2025/05/04-10:09:55.791642 37 Options.bgerror_resume_retry_interval: 1000000 +2025/05/04-10:09:55.791643 37 Options.allow_data_in_errors: 0 +2025/05/04-10:09:55.791643 37 Options.db_host_id: __hostname__ +2025/05/04-10:09:55.791644 37 Options.enforce_single_del_contracts: true +2025/05/04-10:09:55.791645 37 Options.metadata_write_temperature: kUnknown +2025/05/04-10:09:55.791646 37 Options.wal_write_temperature: kUnknown +2025/05/04-10:09:55.791646 37 Options.max_background_jobs: 2 +2025/05/04-10:09:55.791647 37 Options.max_background_compactions: -1 +2025/05/04-10:09:55.791648 37 Options.max_subcompactions: 1 +2025/05/04-10:09:55.791648 37 Options.avoid_flush_during_shutdown: 0 +2025/05/04-10:09:55.791649 37 Options.writable_file_max_buffer_size: 1048576 +2025/05/04-10:09:55.791649 37 Options.delayed_write_rate : 16777216 +2025/05/04-10:09:55.791650 37 Options.max_total_wal_size: 0 +2025/05/04-10:09:55.791651 37 Options.delete_obsolete_files_period_micros: 180000000 +2025/05/04-10:09:55.791651 37 Options.stats_dump_period_sec: 600 +2025/05/04-10:09:55.791652 37 Options.stats_persist_period_sec: 600 +2025/05/04-10:09:55.791652 37 Options.stats_history_buffer_size: 1048576 +2025/05/04-10:09:55.791653 37 Options.max_open_files: 256 +2025/05/04-10:09:55.791654 37 Options.bytes_per_sync: 0 +2025/05/04-10:09:55.791654 37 Options.wal_bytes_per_sync: 0 +2025/05/04-10:09:55.791655 37 Options.strict_bytes_per_sync: 0 +2025/05/04-10:09:55.791655 37 Options.compaction_readahead_size: 2097152 +2025/05/04-10:09:55.791656 37 Options.max_background_flushes: -1 +2025/05/04-10:09:55.791657 37 Options.daily_offpeak_time_utc: +2025/05/04-10:09:55.791657 37 Compression algorithms supported: +2025/05/04-10:09:55.791658 37 kZSTD supported: 0 +2025/05/04-10:09:55.791659 37 kXpressCompression supported: 0 +2025/05/04-10:09:55.791659 37 kBZip2Compression supported: 0 +2025/05/04-10:09:55.791660 37 kZSTDNotFinalCompression supported: 0 +2025/05/04-10:09:55.791661 37 kLZ4Compression supported: 1 +2025/05/04-10:09:55.791661 37 kZlibCompression supported: 0 +2025/05/04-10:09:55.791662 37 kLZ4HCCompression supported: 1 +2025/05/04-10:09:55.791662 37 kSnappyCompression supported: 1 +2025/05/04-10:09:55.791663 37 Fast CRC32 supported: Not supported on x86 +2025/05/04-10:09:55.791664 37 DMutex implementation: pthread_mutex_t +2025/05/04-10:09:55.791665 37 Jemalloc supported: 0 +2025/05/04-10:09:55.793169 37 Options.comparator: leveldb.BytewiseComparator +2025/05/04-10:09:55.793171 37 Options.merge_operator: None +2025/05/04-10:09:55.793172 37 Options.compaction_filter: None +2025/05/04-10:09:55.793172 37 Options.compaction_filter_factory: None +2025/05/04-10:09:55.793173 37 Options.sst_partitioner_factory: None +2025/05/04-10:09:55.793174 37 Options.memtable_factory: SkipListFactory +2025/05/04-10:09:55.793175 37 Options.table_factory: BlockBasedTable +2025/05/04-10:09:55.793192 37 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff8613e9e0) + cache_index_and_filter_blocks: 0 + cache_index_and_filter_blocks_with_high_priority: 1 + pin_l0_filter_and_index_blocks_in_cache: 0 + pin_top_level_index_and_filter: 1 + index_type: 0 + data_block_index_type: 0 + index_shortening: 1 + data_block_hash_table_util_ratio: 0.750000 + checksum: 4 + no_block_cache: 0 + block_cache: 0xffff8600a150 + block_cache_name: LRUCache + block_cache_options: + capacity : 33554432 + num_shard_bits : 6 + strict_capacity_limit : 0 + memory_allocator : None + high_pri_pool_ratio: 0.500 + low_pri_pool_ratio: 0.000 + persistent_cache: (nil) + block_size: 4096 + block_size_deviation: 10 + block_restart_interval: 16 + index_block_restart_interval: 1 + metadata_block_size: 4096 + partition_filters: 0 + use_delta_encoding: 1 + filter_policy: nullptr + whole_key_filtering: 1 + verify_compression: 0 + read_amp_bytes_per_bit: 0 + format_version: 6 + enable_index_compression: 1 + block_align: 0 + max_auto_readahead_size: 262144 + prepopulate_block_cache: 0 + initial_auto_readahead_size: 8192 + num_file_reads_for_auto_readahead: 2 +2025/05/04-10:09:55.793194 37 Options.write_buffer_size: 10485760 +2025/05/04-10:09:55.793195 37 Options.max_write_buffer_number: 2 +2025/05/04-10:09:55.793195 37 Options.compression: LZ4 +2025/05/04-10:09:55.793196 37 Options.bottommost_compression: Disabled +2025/05/04-10:09:55.793197 37 Options.prefix_extractor: nullptr +2025/05/04-10:09:55.793198 37 Options.memtable_insert_with_hint_prefix_extractor: nullptr +2025/05/04-10:09:55.793198 37 Options.num_levels: 7 +2025/05/04-10:09:55.793199 37 Options.min_write_buffer_number_to_merge: 1 +2025/05/04-10:09:55.793199 37 Options.max_write_buffer_number_to_maintain: 0 +2025/05/04-10:09:55.793200 37 Options.max_write_buffer_size_to_maintain: 0 +2025/05/04-10:09:55.793201 37 Options.bottommost_compression_opts.window_bits: -14 +2025/05/04-10:09:55.793202 37 Options.bottommost_compression_opts.level: 32767 +2025/05/04-10:09:55.793202 37 Options.bottommost_compression_opts.strategy: 0 +2025/05/04-10:09:55.793203 37 Options.bottommost_compression_opts.max_dict_bytes: 0 +2025/05/04-10:09:55.793204 37 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 +2025/05/04-10:09:55.793204 37 Options.bottommost_compression_opts.parallel_threads: 1 +2025/05/04-10:09:55.793205 37 Options.bottommost_compression_opts.enabled: false +2025/05/04-10:09:55.793206 37 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 +2025/05/04-10:09:55.793206 37 Options.bottommost_compression_opts.use_zstd_dict_trainer: true +2025/05/04-10:09:55.793207 37 Options.compression_opts.window_bits: -14 +2025/05/04-10:09:55.793208 37 Options.compression_opts.level: 32767 +2025/05/04-10:09:55.793208 37 Options.compression_opts.strategy: 0 +2025/05/04-10:09:55.793209 37 Options.compression_opts.max_dict_bytes: 0 +2025/05/04-10:09:55.793209 37 Options.compression_opts.zstd_max_train_bytes: 0 +2025/05/04-10:09:55.793210 37 Options.compression_opts.use_zstd_dict_trainer: true +2025/05/04-10:09:55.793211 37 Options.compression_opts.parallel_threads: 1 +2025/05/04-10:09:55.793211 37 Options.compression_opts.enabled: false +2025/05/04-10:09:55.793212 37 Options.compression_opts.max_dict_buffer_bytes: 0 +2025/05/04-10:09:55.793212 37 Options.level0_file_num_compaction_trigger: 4 +2025/05/04-10:09:55.793213 37 Options.level0_slowdown_writes_trigger: 20 +2025/05/04-10:09:55.793214 37 Options.level0_stop_writes_trigger: 36 +2025/05/04-10:09:55.793215 37 Options.target_file_size_base: 67108864 +2025/05/04-10:09:55.793215 37 Options.target_file_size_multiplier: 1 +2025/05/04-10:09:55.793216 37 Options.max_bytes_for_level_base: 268435456 +2025/05/04-10:09:55.793217 37 Options.level_compaction_dynamic_level_bytes: 1 +2025/05/04-10:09:55.793220 37 Options.max_bytes_for_level_multiplier: 10.000000 +2025/05/04-10:09:55.793222 37 Options.max_bytes_for_level_multiplier_addtl[0]: 1 +2025/05/04-10:09:55.793222 37 Options.max_bytes_for_level_multiplier_addtl[1]: 1 +2025/05/04-10:09:55.793223 37 Options.max_bytes_for_level_multiplier_addtl[2]: 1 +2025/05/04-10:09:55.793223 37 Options.max_bytes_for_level_multiplier_addtl[3]: 1 +2025/05/04-10:09:55.793224 37 Options.max_bytes_for_level_multiplier_addtl[4]: 1 +2025/05/04-10:09:55.793225 37 Options.max_bytes_for_level_multiplier_addtl[5]: 1 +2025/05/04-10:09:55.793225 37 Options.max_bytes_for_level_multiplier_addtl[6]: 1 +2025/05/04-10:09:55.793226 37 Options.max_sequential_skip_in_iterations: 8 +2025/05/04-10:09:55.793226 37 Options.max_compaction_bytes: 1677721600 +2025/05/04-10:09:55.793227 37 Options.arena_block_size: 1048576 +2025/05/04-10:09:55.793228 37 Options.soft_pending_compaction_bytes_limit: 68719476736 +2025/05/04-10:09:55.793228 37 Options.hard_pending_compaction_bytes_limit: 274877906944 +2025/05/04-10:09:55.793229 37 Options.disable_auto_compactions: 0 +2025/05/04-10:09:55.793230 37 Options.compaction_style: kCompactionStyleLevel +2025/05/04-10:09:55.793231 37 Options.compaction_pri: kMinOverlappingRatio +2025/05/04-10:09:55.793232 37 Options.compaction_options_universal.size_ratio: 1 +2025/05/04-10:09:55.793232 37 Options.compaction_options_universal.min_merge_width: 2 +2025/05/04-10:09:55.793233 37 Options.compaction_options_universal.max_merge_width: 4294967295 +2025/05/04-10:09:55.793233 37 Options.compaction_options_universal.max_size_amplification_percent: 200 +2025/05/04-10:09:55.793234 37 Options.compaction_options_universal.compression_size_percent: -1 +2025/05/04-10:09:55.793235 37 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize +2025/05/04-10:09:55.793236 37 Options.compaction_options_universal.max_read_amp: -1 +2025/05/04-10:09:55.793236 37 Options.compaction_options_fifo.max_table_files_size: 1073741824 +2025/05/04-10:09:55.793237 37 Options.compaction_options_fifo.allow_compaction: 0 +2025/05/04-10:09:55.793244 37 Options.table_properties_collectors: +2025/05/04-10:09:55.793245 37 Options.inplace_update_support: 0 +2025/05/04-10:09:55.793246 37 Options.inplace_update_num_locks: 10000 +2025/05/04-10:09:55.793247 37 Options.memtable_prefix_bloom_size_ratio: 0.000000 +2025/05/04-10:09:55.793247 37 Options.memtable_whole_key_filtering: 0 +2025/05/04-10:09:55.793248 37 Options.memtable_huge_page_size: 0 +2025/05/04-10:09:55.793249 37 Options.bloom_locality: 0 +2025/05/04-10:09:55.793249 37 Options.max_successive_merges: 0 +2025/05/04-10:09:55.793250 37 Options.strict_max_successive_merges: 0 +2025/05/04-10:09:55.793250 37 Options.optimize_filters_for_hits: 0 +2025/05/04-10:09:55.793251 37 Options.paranoid_file_checks: 0 +2025/05/04-10:09:55.793251 37 Options.force_consistency_checks: 1 +2025/05/04-10:09:55.793252 37 Options.report_bg_io_stats: 0 +2025/05/04-10:09:55.793253 37 Options.ttl: 2592000 +2025/05/04-10:09:55.793254 37 Options.periodic_compaction_seconds: 0 +2025/05/04-10:09:55.793254 37 Options.default_temperature: kUnknown +2025/05/04-10:09:55.793255 37 Options.preclude_last_level_data_seconds: 0 +2025/05/04-10:09:55.793255 37 Options.preserve_internal_time_seconds: 0 +2025/05/04-10:09:55.793256 37 Options.enable_blob_files: false +2025/05/04-10:09:55.793257 37 Options.min_blob_size: 0 +2025/05/04-10:09:55.793257 37 Options.blob_file_size: 268435456 +2025/05/04-10:09:55.793258 37 Options.blob_compression_type: NoCompression +2025/05/04-10:09:55.793259 37 Options.enable_blob_garbage_collection: false +2025/05/04-10:09:55.793260 37 Options.blob_garbage_collection_age_cutoff: 0.250000 +2025/05/04-10:09:55.793260 37 Options.blob_garbage_collection_force_threshold: 1.000000 +2025/05/04-10:09:55.793261 37 Options.blob_compaction_readahead_size: 0 +2025/05/04-10:09:55.793262 37 Options.blob_file_starting_level: 0 +2025/05/04-10:09:55.793262 37 Options.experimental_mempurge_threshold: 0.000000 +2025/05/04-10:09:55.793263 37 Options.memtable_max_range_deletions: 0 +2025/05/04-10:09:55.804635 37 DB pointer 0xffff8606d000 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/payload_index/MANIFEST-000013 b/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/payload_index/MANIFEST-000013 new file mode 100644 index 0000000000000000000000000000000000000000..3d99bb56f0ae05b0f1b90f94d514081af12f11bc Binary files /dev/null and b/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/payload_index/MANIFEST-000013 differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/payload_index/OPTIONS-000011 b/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/payload_index/OPTIONS-000011 new file mode 100644 index 0000000000000000000000000000000000000000..1ff6c6ffcc08e04f8a99e1f459e7b0caa1822cb2 --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/payload_index/OPTIONS-000011 @@ -0,0 +1,214 @@ +# This is a RocksDB option file. +# +# For detailed file format spec, please refer to the example file +# in examples/rocksdb_option_file_example.ini +# + +[Version] + rocksdb_version=9.9.3 + options_file_version=1.1 + +[DBOptions] + compaction_readahead_size=2097152 + strict_bytes_per_sync=false + bytes_per_sync=0 + max_background_jobs=2 + avoid_flush_during_shutdown=false + max_background_flushes=-1 + delayed_write_rate=16777216 + max_open_files=256 + max_subcompactions=1 + writable_file_max_buffer_size=1048576 + wal_bytes_per_sync=0 + max_background_compactions=-1 + max_total_wal_size=0 + delete_obsolete_files_period_micros=180000000 + stats_dump_period_sec=600 + stats_history_buffer_size=1048576 + stats_persist_period_sec=600 + follower_refresh_catchup_period_ms=10000 + enforce_single_del_contracts=true + lowest_used_cache_tier=kNonVolatileBlockTier + bgerror_resume_retry_interval=1000000 + metadata_write_temperature=kUnknown + best_efforts_recovery=false + log_readahead_size=0 + write_identity_file=true + write_dbid_to_manifest=true + prefix_seek_opt_in_only=false + wal_compression=kNoCompression + manual_wal_flush=false + db_host_id=__hostname__ + two_write_queues=false + random_access_max_buffer_size=1048576 + avoid_unnecessary_blocking_io=false + skip_checking_sst_file_sizes_on_db_open=false + flush_verify_memtable_count=true + fail_if_options_file_error=true + atomic_flush=false + verify_sst_unique_id_in_manifest=true + skip_stats_update_on_db_open=false + track_and_verify_wals_in_manifest=false + compaction_verify_record_count=true + paranoid_checks=true + create_if_missing=true + max_write_batch_group_size_bytes=1048576 + follower_catchup_retry_count=10 + avoid_flush_during_recovery=false + file_checksum_gen_factory=nullptr + enable_thread_tracking=false + allow_fallocate=true + allow_data_in_errors=false + error_if_exists=false + use_direct_io_for_flush_and_compaction=false + background_close_inactive_wals=false + create_missing_column_families=true + WAL_size_limit_MB=0 + use_direct_reads=false + persist_stats_to_disk=false + allow_2pc=false + is_fd_close_on_exec=true + max_log_file_size=1048576 + max_file_opening_threads=16 + wal_filter=nullptr + wal_write_temperature=kUnknown + follower_catchup_retry_wait_ms=100 + allow_mmap_reads=false + allow_mmap_writes=false + use_adaptive_mutex=false + use_fsync=false + table_cache_numshardbits=6 + dump_malloc_stats=false + db_write_buffer_size=0 + allow_ingest_behind=false + keep_log_file_num=1 + max_bgerror_resume_count=2147483647 + allow_concurrent_memtable_write=true + recycle_log_file_num=0 + log_file_time_to_roll=0 + manifest_preallocation_size=4194304 + enable_write_thread_adaptive_yield=true + WAL_ttl_seconds=0 + max_manifest_file_size=1073741824 + wal_recovery_mode=kTolerateCorruptedTailRecords + enable_pipelined_write=false + write_thread_slow_yield_usec=3 + unordered_write=false + write_thread_max_yield_usec=100 + advise_random_on_open=true + info_log_level=ERROR_LEVEL + + +[CFOptions "default"] + memtable_max_range_deletions=0 + compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_memory_checks=false + block_protection_bytes_per_key=0 + uncache_aggressiveness=0 + bottommost_file_compaction_delay=0 + memtable_protection_bytes_per_key=0 + experimental_mempurge_threshold=0.000000 + bottommost_compression=kDisableCompressionOption + sample_for_compression=0 + prepopulate_blob_cache=kDisable + blob_file_starting_level=0 + blob_compaction_readahead_size=0 + table_factory=BlockBasedTable + max_successive_merges=0 + max_write_buffer_number=2 + prefix_extractor=nullptr + memtable_huge_page_size=0 + write_buffer_size=10485760 + strict_max_successive_merges=false + arena_block_size=1048576 + level0_file_num_compaction_trigger=4 + report_bg_io_stats=false + inplace_update_num_locks=10000 + memtable_prefix_bloom_size_ratio=0.000000 + level0_stop_writes_trigger=36 + blob_compression_type=kNoCompression + level0_slowdown_writes_trigger=20 + hard_pending_compaction_bytes_limit=274877906944 + target_file_size_multiplier=1 + bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_file_checks=false + blob_garbage_collection_force_threshold=1.000000 + enable_blob_files=false + soft_pending_compaction_bytes_limit=68719476736 + target_file_size_base=67108864 + max_compaction_bytes=1677721600 + disable_auto_compactions=false + min_blob_size=0 + memtable_whole_key_filtering=false + max_bytes_for_level_base=268435456 + last_level_temperature=kUnknown + preserve_internal_time_seconds=0 + compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} + max_bytes_for_level_multiplier=10.000000 + max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 + max_sequential_skip_in_iterations=8 + compression=kLZ4Compression + default_write_temperature=kUnknown + compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} + blob_garbage_collection_age_cutoff=0.250000 + ttl=2592000 + periodic_compaction_seconds=0 + preclude_last_level_data_seconds=0 + blob_file_size=268435456 + enable_blob_garbage_collection=false + persist_user_defined_timestamps=true + compaction_pri=kMinOverlappingRatio + compaction_filter_factory=nullptr + comparator=leveldb.BytewiseComparator + bloom_locality=0 + merge_operator=nullptr + compaction_filter=nullptr + level_compaction_dynamic_level_bytes=true + optimize_filters_for_hits=false + inplace_update_support=false + max_write_buffer_number_to_maintain=0 + max_write_buffer_size_to_maintain=0 + sst_partitioner_factory=nullptr + default_temperature=kUnknown + compaction_style=kCompactionStyleLevel + min_write_buffer_number_to_merge=1 + memtable_factory=SkipListFactory + memtable_insert_with_hint_prefix_extractor=nullptr + force_consistency_checks=true + num_levels=7 + +[TableOptions/BlockBasedTable "default"] + num_file_reads_for_auto_readahead=2 + initial_auto_readahead_size=8192 + metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} + enable_index_compression=true + verify_compression=false + prepopulate_block_cache=kDisable + format_version=6 + use_delta_encoding=true + pin_top_level_index_and_filter=true + read_amp_bytes_per_bit=0 + decouple_partitioned_filters=false + partition_filters=false + metadata_block_size=4096 + max_auto_readahead_size=262144 + index_block_restart_interval=1 + block_size_deviation=10 + block_size=4096 + detect_filter_construct_corruption=false + no_block_cache=false + checksum=kXXH3 + filter_policy=nullptr + data_block_hash_table_util_ratio=0.750000 + block_restart_interval=16 + index_type=kBinarySearch + pin_l0_filter_and_index_blocks_in_cache=false + data_block_index_type=kDataBlockBinarySearch + cache_index_and_filter_blocks_with_high_priority=true + whole_key_filtering=true + index_shortening=kShortenSeparators + cache_index_and_filter_blocks=false + block_align=false + optimize_filters_for_memory=true + flush_block_policy_factory=FlushBlockBySizePolicyFactory + diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/payload_index/OPTIONS-000015 b/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/payload_index/OPTIONS-000015 new file mode 100644 index 0000000000000000000000000000000000000000..1ff6c6ffcc08e04f8a99e1f459e7b0caa1822cb2 --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/payload_index/OPTIONS-000015 @@ -0,0 +1,214 @@ +# This is a RocksDB option file. +# +# For detailed file format spec, please refer to the example file +# in examples/rocksdb_option_file_example.ini +# + +[Version] + rocksdb_version=9.9.3 + options_file_version=1.1 + +[DBOptions] + compaction_readahead_size=2097152 + strict_bytes_per_sync=false + bytes_per_sync=0 + max_background_jobs=2 + avoid_flush_during_shutdown=false + max_background_flushes=-1 + delayed_write_rate=16777216 + max_open_files=256 + max_subcompactions=1 + writable_file_max_buffer_size=1048576 + wal_bytes_per_sync=0 + max_background_compactions=-1 + max_total_wal_size=0 + delete_obsolete_files_period_micros=180000000 + stats_dump_period_sec=600 + stats_history_buffer_size=1048576 + stats_persist_period_sec=600 + follower_refresh_catchup_period_ms=10000 + enforce_single_del_contracts=true + lowest_used_cache_tier=kNonVolatileBlockTier + bgerror_resume_retry_interval=1000000 + metadata_write_temperature=kUnknown + best_efforts_recovery=false + log_readahead_size=0 + write_identity_file=true + write_dbid_to_manifest=true + prefix_seek_opt_in_only=false + wal_compression=kNoCompression + manual_wal_flush=false + db_host_id=__hostname__ + two_write_queues=false + random_access_max_buffer_size=1048576 + avoid_unnecessary_blocking_io=false + skip_checking_sst_file_sizes_on_db_open=false + flush_verify_memtable_count=true + fail_if_options_file_error=true + atomic_flush=false + verify_sst_unique_id_in_manifest=true + skip_stats_update_on_db_open=false + track_and_verify_wals_in_manifest=false + compaction_verify_record_count=true + paranoid_checks=true + create_if_missing=true + max_write_batch_group_size_bytes=1048576 + follower_catchup_retry_count=10 + avoid_flush_during_recovery=false + file_checksum_gen_factory=nullptr + enable_thread_tracking=false + allow_fallocate=true + allow_data_in_errors=false + error_if_exists=false + use_direct_io_for_flush_and_compaction=false + background_close_inactive_wals=false + create_missing_column_families=true + WAL_size_limit_MB=0 + use_direct_reads=false + persist_stats_to_disk=false + allow_2pc=false + is_fd_close_on_exec=true + max_log_file_size=1048576 + max_file_opening_threads=16 + wal_filter=nullptr + wal_write_temperature=kUnknown + follower_catchup_retry_wait_ms=100 + allow_mmap_reads=false + allow_mmap_writes=false + use_adaptive_mutex=false + use_fsync=false + table_cache_numshardbits=6 + dump_malloc_stats=false + db_write_buffer_size=0 + allow_ingest_behind=false + keep_log_file_num=1 + max_bgerror_resume_count=2147483647 + allow_concurrent_memtable_write=true + recycle_log_file_num=0 + log_file_time_to_roll=0 + manifest_preallocation_size=4194304 + enable_write_thread_adaptive_yield=true + WAL_ttl_seconds=0 + max_manifest_file_size=1073741824 + wal_recovery_mode=kTolerateCorruptedTailRecords + enable_pipelined_write=false + write_thread_slow_yield_usec=3 + unordered_write=false + write_thread_max_yield_usec=100 + advise_random_on_open=true + info_log_level=ERROR_LEVEL + + +[CFOptions "default"] + memtable_max_range_deletions=0 + compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_memory_checks=false + block_protection_bytes_per_key=0 + uncache_aggressiveness=0 + bottommost_file_compaction_delay=0 + memtable_protection_bytes_per_key=0 + experimental_mempurge_threshold=0.000000 + bottommost_compression=kDisableCompressionOption + sample_for_compression=0 + prepopulate_blob_cache=kDisable + blob_file_starting_level=0 + blob_compaction_readahead_size=0 + table_factory=BlockBasedTable + max_successive_merges=0 + max_write_buffer_number=2 + prefix_extractor=nullptr + memtable_huge_page_size=0 + write_buffer_size=10485760 + strict_max_successive_merges=false + arena_block_size=1048576 + level0_file_num_compaction_trigger=4 + report_bg_io_stats=false + inplace_update_num_locks=10000 + memtable_prefix_bloom_size_ratio=0.000000 + level0_stop_writes_trigger=36 + blob_compression_type=kNoCompression + level0_slowdown_writes_trigger=20 + hard_pending_compaction_bytes_limit=274877906944 + target_file_size_multiplier=1 + bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_file_checks=false + blob_garbage_collection_force_threshold=1.000000 + enable_blob_files=false + soft_pending_compaction_bytes_limit=68719476736 + target_file_size_base=67108864 + max_compaction_bytes=1677721600 + disable_auto_compactions=false + min_blob_size=0 + memtable_whole_key_filtering=false + max_bytes_for_level_base=268435456 + last_level_temperature=kUnknown + preserve_internal_time_seconds=0 + compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} + max_bytes_for_level_multiplier=10.000000 + max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 + max_sequential_skip_in_iterations=8 + compression=kLZ4Compression + default_write_temperature=kUnknown + compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} + blob_garbage_collection_age_cutoff=0.250000 + ttl=2592000 + periodic_compaction_seconds=0 + preclude_last_level_data_seconds=0 + blob_file_size=268435456 + enable_blob_garbage_collection=false + persist_user_defined_timestamps=true + compaction_pri=kMinOverlappingRatio + compaction_filter_factory=nullptr + comparator=leveldb.BytewiseComparator + bloom_locality=0 + merge_operator=nullptr + compaction_filter=nullptr + level_compaction_dynamic_level_bytes=true + optimize_filters_for_hits=false + inplace_update_support=false + max_write_buffer_number_to_maintain=0 + max_write_buffer_size_to_maintain=0 + sst_partitioner_factory=nullptr + default_temperature=kUnknown + compaction_style=kCompactionStyleLevel + min_write_buffer_number_to_merge=1 + memtable_factory=SkipListFactory + memtable_insert_with_hint_prefix_extractor=nullptr + force_consistency_checks=true + num_levels=7 + +[TableOptions/BlockBasedTable "default"] + num_file_reads_for_auto_readahead=2 + initial_auto_readahead_size=8192 + metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} + enable_index_compression=true + verify_compression=false + prepopulate_block_cache=kDisable + format_version=6 + use_delta_encoding=true + pin_top_level_index_and_filter=true + read_amp_bytes_per_bit=0 + decouple_partitioned_filters=false + partition_filters=false + metadata_block_size=4096 + max_auto_readahead_size=262144 + index_block_restart_interval=1 + block_size_deviation=10 + block_size=4096 + detect_filter_construct_corruption=false + no_block_cache=false + checksum=kXXH3 + filter_policy=nullptr + data_block_hash_table_util_ratio=0.750000 + block_restart_interval=16 + index_type=kBinarySearch + pin_l0_filter_and_index_blocks_in_cache=false + data_block_index_type=kDataBlockBinarySearch + cache_index_and_filter_blocks_with_high_priority=true + whole_key_filtering=true + index_shortening=kShortenSeparators + cache_index_and_filter_blocks=false + block_align=false + optimize_filters_for_memory=true + flush_block_policy_factory=FlushBlockBySizePolicyFactory + diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/payload_index/config.json b/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/payload_index/config.json new file mode 100644 index 0000000000000000000000000000000000000000..7d0db25a817fdb0c73414e2809921889f6ff065f --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/payload_index/config.json @@ -0,0 +1 @@ +{"indexed_fields":{},"skip_rocksdb":null} \ No newline at end of file diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/payload_storage/bitmask.dat b/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/payload_storage/bitmask.dat new file mode 100644 index 0000000000000000000000000000000000000000..b5663827baa0b3c057499bbc6cba08c4a9d21e6e Binary files /dev/null and b/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/payload_storage/bitmask.dat differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/payload_storage/config.json b/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/payload_storage/config.json new file mode 100644 index 0000000000000000000000000000000000000000..9477c128b4ebf57927ba47096ca8af9166799c4f --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/payload_storage/config.json @@ -0,0 +1 @@ +{"page_size_bytes":33554432,"block_size_bytes":128,"region_size_blocks":8192,"compression":"LZ4"} \ No newline at end of file diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/payload_storage/gaps.dat b/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/payload_storage/gaps.dat new file mode 100644 index 0000000000000000000000000000000000000000..cd8e90451689ee93336ef6b2cea0e505274edfb7 Binary files /dev/null and b/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/payload_storage/gaps.dat differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/payload_storage/page_0.dat b/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/payload_storage/page_0.dat new file mode 100644 index 0000000000000000000000000000000000000000..e2204a284ae2bf666aa66041e1eeb9cd18750f70 Binary files /dev/null and b/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/payload_storage/page_0.dat differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/payload_storage/tracker.dat b/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/payload_storage/tracker.dat new file mode 100644 index 0000000000000000000000000000000000000000..9f2a722cad6049a84d45b3179549e9feade5ee4d Binary files /dev/null and b/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/payload_storage/tracker.dat differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/segment.json b/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/segment.json new file mode 100644 index 0000000000000000000000000000000000000000..e2faabcb87f93ccaf4c455b8eedd29c966646545 --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/segment.json @@ -0,0 +1 @@ +{"version":18,"config":{"vector_data":{"":{"size":1536,"distance":"Cosine","storage_type":"InRamChunkedMmap","index":{"type":"plain","options":{}},"quantization_config":null}},"payload_storage_type":{"type":"mmap"}}} \ No newline at end of file diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/vector_storage/deleted/flags_a.dat b/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/vector_storage/deleted/flags_a.dat new file mode 100644 index 0000000000000000000000000000000000000000..9e0f96a2a253b173cb45b41868209a5d043e1437 Binary files /dev/null and b/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/vector_storage/deleted/flags_a.dat differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/vector_storage/deleted/status.dat b/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/vector_storage/deleted/status.dat new file mode 100644 index 0000000000000000000000000000000000000000..5ab6bbe801385520c596726e531214d3b46f2148 Binary files /dev/null and b/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/vector_storage/deleted/status.dat differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/vector_storage/vectors/chunk_0.mmap b/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/vector_storage/vectors/chunk_0.mmap new file mode 100644 index 0000000000000000000000000000000000000000..31790b11b5d67a1adfd6eb489c8a4edf1ca4f354 Binary files /dev/null and b/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/vector_storage/vectors/chunk_0.mmap differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/vector_storage/vectors/config.json b/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/vector_storage/vectors/config.json new file mode 100644 index 0000000000000000000000000000000000000000..ff57a41ff8c6af2be033c6652e21559c49b5a9fa --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/vector_storage/vectors/config.json @@ -0,0 +1 @@ +{"chunk_size_bytes":33552384,"chunk_size_vectors":5461,"dim":1536,"mlock":false,"populate":true} \ No newline at end of file diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/vector_storage/vectors/status.dat b/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/vector_storage/vectors/status.dat new file mode 100644 index 0000000000000000000000000000000000000000..9fab1a0299d2a0e854626d9790d64c6cc2b60cbc Binary files /dev/null and b/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/vector_storage/vectors/status.dat differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/version.info b/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/version.info new file mode 100644 index 0000000000000000000000000000000000000000..09a3acfa138db01dc50a688796b2861638c369ec --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/8c5c0082-91cd-4e46-8b5a-0cca0acd0dad/version.info @@ -0,0 +1 @@ +0.6.0 \ No newline at end of file diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/000012.log b/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/000012.log new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/CURRENT b/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/CURRENT new file mode 100644 index 0000000000000000000000000000000000000000..625d147412870471b19d90716ccc20a7f207a5c3 --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/CURRENT @@ -0,0 +1 @@ +MANIFEST-000013 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/IDENTITY b/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/IDENTITY new file mode 100644 index 0000000000000000000000000000000000000000..0a1c4925a09f4ea8ec8ee66a82e60cd3fea14e19 --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/IDENTITY @@ -0,0 +1 @@ +2cb814d5-06fc-4d37-a3c1-640c37357362 \ No newline at end of file diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/LOCK b/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/LOCK new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/LOG b/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/LOG new file mode 100644 index 0000000000000000000000000000000000000000..fcaef86da51815c244eb6bfb4d27fb1673304ebb --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/LOG @@ -0,0 +1,787 @@ +2025/05/04-10:09:55.609946 44 RocksDB version: 9.9.3 +2025/05/04-10:09:55.610074 44 Compile date 2024-12-05 01:25:31 +2025/05/04-10:09:55.610075 44 DB SUMMARY +2025/05/04-10:09:55.610076 44 Host name (Env): c5f2a9d061bb +2025/05/04-10:09:55.610077 44 DB Session ID: CD0SHR3DDC5AMRBDXMDK +2025/05/04-10:09:55.611012 44 CURRENT file: CURRENT +2025/05/04-10:09:55.611013 44 IDENTITY file: IDENTITY +2025/05/04-10:09:55.611232 44 MANIFEST file: MANIFEST-000009 size: 497 Bytes +2025/05/04-10:09:55.611234 44 SST files in ./storage/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b dir, Total Num: 0, files: +2025/05/04-10:09:55.611235 44 Write Ahead Log file in ./storage/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b: 000008.log size: 0 ; +2025/05/04-10:09:55.611236 44 Options.error_if_exists: 0 +2025/05/04-10:09:55.611237 44 Options.create_if_missing: 1 +2025/05/04-10:09:55.611238 44 Options.paranoid_checks: 1 +2025/05/04-10:09:55.611238 44 Options.flush_verify_memtable_count: 1 +2025/05/04-10:09:55.611239 44 Options.compaction_verify_record_count: 1 +2025/05/04-10:09:55.611240 44 Options.track_and_verify_wals_in_manifest: 0 +2025/05/04-10:09:55.611242 44 Options.verify_sst_unique_id_in_manifest: 1 +2025/05/04-10:09:55.611242 44 Options.env: 0xffff86034000 +2025/05/04-10:09:55.611243 44 Options.fs: PosixFileSystem +2025/05/04-10:09:55.611244 44 Options.info_log: 0xffff99aa7000 +2025/05/04-10:09:55.611245 44 Options.max_file_opening_threads: 16 +2025/05/04-10:09:55.611246 44 Options.statistics: (nil) +2025/05/04-10:09:55.611246 44 Options.use_fsync: 0 +2025/05/04-10:09:55.611247 44 Options.max_log_file_size: 1048576 +2025/05/04-10:09:55.611248 44 Options.max_manifest_file_size: 1073741824 +2025/05/04-10:09:55.611248 44 Options.log_file_time_to_roll: 0 +2025/05/04-10:09:55.611249 44 Options.keep_log_file_num: 1 +2025/05/04-10:09:55.611250 44 Options.recycle_log_file_num: 0 +2025/05/04-10:09:55.611250 44 Options.allow_fallocate: 1 +2025/05/04-10:09:55.611251 44 Options.allow_mmap_reads: 0 +2025/05/04-10:09:55.611252 44 Options.allow_mmap_writes: 0 +2025/05/04-10:09:55.611252 44 Options.use_direct_reads: 0 +2025/05/04-10:09:55.611253 44 Options.use_direct_io_for_flush_and_compaction: 0 +2025/05/04-10:09:55.611254 44 Options.create_missing_column_families: 1 +2025/05/04-10:09:55.611254 44 Options.db_log_dir: +2025/05/04-10:09:55.611255 44 Options.wal_dir: +2025/05/04-10:09:55.611259 44 Options.table_cache_numshardbits: 6 +2025/05/04-10:09:55.611259 44 Options.WAL_ttl_seconds: 0 +2025/05/04-10:09:55.611260 44 Options.WAL_size_limit_MB: 0 +2025/05/04-10:09:55.611261 44 Options.max_write_batch_group_size_bytes: 1048576 +2025/05/04-10:09:55.611261 44 Options.manifest_preallocation_size: 4194304 +2025/05/04-10:09:55.611262 44 Options.is_fd_close_on_exec: 1 +2025/05/04-10:09:55.611263 44 Options.advise_random_on_open: 1 +2025/05/04-10:09:55.611263 44 Options.db_write_buffer_size: 0 +2025/05/04-10:09:55.611264 44 Options.write_buffer_manager: 0xffff99a0f0c0 +2025/05/04-10:09:55.611264 44 Options.random_access_max_buffer_size: 1048576 +2025/05/04-10:09:55.611265 44 Options.use_adaptive_mutex: 0 +2025/05/04-10:09:55.611266 44 Options.rate_limiter: (nil) +2025/05/04-10:09:55.611267 44 Options.sst_file_manager.rate_bytes_per_sec: 0 +2025/05/04-10:09:55.611268 44 Options.wal_recovery_mode: 0 +2025/05/04-10:09:55.611268 44 Options.enable_thread_tracking: 0 +2025/05/04-10:09:55.611269 44 Options.enable_pipelined_write: 0 +2025/05/04-10:09:55.611271 44 Options.unordered_write: 0 +2025/05/04-10:09:55.611271 44 Options.allow_concurrent_memtable_write: 1 +2025/05/04-10:09:55.611272 44 Options.enable_write_thread_adaptive_yield: 1 +2025/05/04-10:09:55.611273 44 Options.write_thread_max_yield_usec: 100 +2025/05/04-10:09:55.611273 44 Options.write_thread_slow_yield_usec: 3 +2025/05/04-10:09:55.611274 44 Options.row_cache: None +2025/05/04-10:09:55.611274 44 Options.wal_filter: None +2025/05/04-10:09:55.611276 44 Options.avoid_flush_during_recovery: 0 +2025/05/04-10:09:55.611276 44 Options.allow_ingest_behind: 0 +2025/05/04-10:09:55.611277 44 Options.two_write_queues: 0 +2025/05/04-10:09:55.611278 44 Options.manual_wal_flush: 0 +2025/05/04-10:09:55.611278 44 Options.wal_compression: 0 +2025/05/04-10:09:55.611279 44 Options.background_close_inactive_wals: 0 +2025/05/04-10:09:55.611280 44 Options.atomic_flush: 0 +2025/05/04-10:09:55.611281 44 Options.avoid_unnecessary_blocking_io: 0 +2025/05/04-10:09:55.611281 44 Options.prefix_seek_opt_in_only: 0 +2025/05/04-10:09:55.611282 44 Options.persist_stats_to_disk: 0 +2025/05/04-10:09:55.611283 44 Options.write_dbid_to_manifest: 1 +2025/05/04-10:09:55.611285 44 Options.write_identity_file: 1 +2025/05/04-10:09:55.611286 44 Options.log_readahead_size: 0 +2025/05/04-10:09:55.611287 44 Options.file_checksum_gen_factory: Unknown +2025/05/04-10:09:55.611288 44 Options.best_efforts_recovery: 0 +2025/05/04-10:09:55.611288 44 Options.max_bgerror_resume_count: 2147483647 +2025/05/04-10:09:55.611289 44 Options.bgerror_resume_retry_interval: 1000000 +2025/05/04-10:09:55.611291 44 Options.allow_data_in_errors: 0 +2025/05/04-10:09:55.611292 44 Options.db_host_id: __hostname__ +2025/05/04-10:09:55.611293 44 Options.enforce_single_del_contracts: true +2025/05/04-10:09:55.611294 44 Options.metadata_write_temperature: kUnknown +2025/05/04-10:09:55.611295 44 Options.wal_write_temperature: kUnknown +2025/05/04-10:09:55.611295 44 Options.max_background_jobs: 2 +2025/05/04-10:09:55.611296 44 Options.max_background_compactions: -1 +2025/05/04-10:09:55.611297 44 Options.max_subcompactions: 1 +2025/05/04-10:09:55.611297 44 Options.avoid_flush_during_shutdown: 0 +2025/05/04-10:09:55.611298 44 Options.writable_file_max_buffer_size: 1048576 +2025/05/04-10:09:55.611299 44 Options.delayed_write_rate : 16777216 +2025/05/04-10:09:55.611300 44 Options.max_total_wal_size: 0 +2025/05/04-10:09:55.611300 44 Options.delete_obsolete_files_period_micros: 180000000 +2025/05/04-10:09:55.611301 44 Options.stats_dump_period_sec: 600 +2025/05/04-10:09:55.611302 44 Options.stats_persist_period_sec: 600 +2025/05/04-10:09:55.611302 44 Options.stats_history_buffer_size: 1048576 +2025/05/04-10:09:55.611303 44 Options.max_open_files: 256 +2025/05/04-10:09:55.611304 44 Options.bytes_per_sync: 0 +2025/05/04-10:09:55.611305 44 Options.wal_bytes_per_sync: 0 +2025/05/04-10:09:55.611306 44 Options.strict_bytes_per_sync: 0 +2025/05/04-10:09:55.611306 44 Options.compaction_readahead_size: 2097152 +2025/05/04-10:09:55.611307 44 Options.max_background_flushes: -1 +2025/05/04-10:09:55.611308 44 Options.daily_offpeak_time_utc: +2025/05/04-10:09:55.611308 44 Compression algorithms supported: +2025/05/04-10:09:55.611309 44 kZSTD supported: 0 +2025/05/04-10:09:55.611310 44 kXpressCompression supported: 0 +2025/05/04-10:09:55.611311 44 kBZip2Compression supported: 0 +2025/05/04-10:09:55.611311 44 kZSTDNotFinalCompression supported: 0 +2025/05/04-10:09:55.611312 44 kLZ4Compression supported: 1 +2025/05/04-10:09:55.611312 44 kZlibCompression supported: 0 +2025/05/04-10:09:55.611313 44 kLZ4HCCompression supported: 1 +2025/05/04-10:09:55.611314 44 kSnappyCompression supported: 1 +2025/05/04-10:09:55.611315 44 Fast CRC32 supported: Not supported on x86 +2025/05/04-10:09:55.611316 44 DMutex implementation: pthread_mutex_t +2025/05/04-10:09:55.611317 44 Jemalloc supported: 0 +2025/05/04-10:09:55.628767 44 Options.comparator: leveldb.BytewiseComparator +2025/05/04-10:09:55.628772 44 Options.merge_operator: None +2025/05/04-10:09:55.628773 44 Options.compaction_filter: None +2025/05/04-10:09:55.628774 44 Options.compaction_filter_factory: None +2025/05/04-10:09:55.628775 44 Options.sst_partitioner_factory: None +2025/05/04-10:09:55.628776 44 Options.memtable_factory: SkipListFactory +2025/05/04-10:09:55.628777 44 Options.table_factory: BlockBasedTable +2025/05/04-10:09:55.628797 44 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff99a00ce0) + cache_index_and_filter_blocks: 0 + cache_index_and_filter_blocks_with_high_priority: 1 + pin_l0_filter_and_index_blocks_in_cache: 0 + pin_top_level_index_and_filter: 1 + index_type: 0 + data_block_index_type: 0 + index_shortening: 1 + data_block_hash_table_util_ratio: 0.750000 + checksum: 4 + no_block_cache: 0 + block_cache: 0xffff99a0f010 + block_cache_name: LRUCache + block_cache_options: + capacity : 33554432 + num_shard_bits : 6 + strict_capacity_limit : 0 + memory_allocator : None + high_pri_pool_ratio: 0.500 + low_pri_pool_ratio: 0.000 + persistent_cache: (nil) + block_size: 4096 + block_size_deviation: 10 + block_restart_interval: 16 + index_block_restart_interval: 1 + metadata_block_size: 4096 + partition_filters: 0 + use_delta_encoding: 1 + filter_policy: nullptr + whole_key_filtering: 1 + verify_compression: 0 + read_amp_bytes_per_bit: 0 + format_version: 6 + enable_index_compression: 1 + block_align: 0 + max_auto_readahead_size: 262144 + prepopulate_block_cache: 0 + initial_auto_readahead_size: 8192 + num_file_reads_for_auto_readahead: 2 +2025/05/04-10:09:55.628799 44 Options.write_buffer_size: 10485760 +2025/05/04-10:09:55.628801 44 Options.max_write_buffer_number: 2 +2025/05/04-10:09:55.628802 44 Options.compression: LZ4 +2025/05/04-10:09:55.628803 44 Options.bottommost_compression: Disabled +2025/05/04-10:09:55.628803 44 Options.prefix_extractor: nullptr +2025/05/04-10:09:55.628804 44 Options.memtable_insert_with_hint_prefix_extractor: nullptr +2025/05/04-10:09:55.628805 44 Options.num_levels: 7 +2025/05/04-10:09:55.628805 44 Options.min_write_buffer_number_to_merge: 1 +2025/05/04-10:09:55.628806 44 Options.max_write_buffer_number_to_maintain: 0 +2025/05/04-10:09:55.628807 44 Options.max_write_buffer_size_to_maintain: 0 +2025/05/04-10:09:55.628807 44 Options.bottommost_compression_opts.window_bits: -14 +2025/05/04-10:09:55.628808 44 Options.bottommost_compression_opts.level: 32767 +2025/05/04-10:09:55.628809 44 Options.bottommost_compression_opts.strategy: 0 +2025/05/04-10:09:55.628810 44 Options.bottommost_compression_opts.max_dict_bytes: 0 +2025/05/04-10:09:55.628810 44 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 +2025/05/04-10:09:55.628811 44 Options.bottommost_compression_opts.parallel_threads: 1 +2025/05/04-10:09:55.628812 44 Options.bottommost_compression_opts.enabled: false +2025/05/04-10:09:55.628813 44 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 +2025/05/04-10:09:55.628814 44 Options.bottommost_compression_opts.use_zstd_dict_trainer: true +2025/05/04-10:09:55.628814 44 Options.compression_opts.window_bits: -14 +2025/05/04-10:09:55.628815 44 Options.compression_opts.level: 32767 +2025/05/04-10:09:55.628816 44 Options.compression_opts.strategy: 0 +2025/05/04-10:09:55.628816 44 Options.compression_opts.max_dict_bytes: 0 +2025/05/04-10:09:55.628817 44 Options.compression_opts.zstd_max_train_bytes: 0 +2025/05/04-10:09:55.628818 44 Options.compression_opts.use_zstd_dict_trainer: true +2025/05/04-10:09:55.628818 44 Options.compression_opts.parallel_threads: 1 +2025/05/04-10:09:55.628819 44 Options.compression_opts.enabled: false +2025/05/04-10:09:55.628820 44 Options.compression_opts.max_dict_buffer_bytes: 0 +2025/05/04-10:09:55.628820 44 Options.level0_file_num_compaction_trigger: 4 +2025/05/04-10:09:55.628821 44 Options.level0_slowdown_writes_trigger: 20 +2025/05/04-10:09:55.628822 44 Options.level0_stop_writes_trigger: 36 +2025/05/04-10:09:55.628823 44 Options.target_file_size_base: 67108864 +2025/05/04-10:09:55.628823 44 Options.target_file_size_multiplier: 1 +2025/05/04-10:09:55.628824 44 Options.max_bytes_for_level_base: 268435456 +2025/05/04-10:09:55.628824 44 Options.level_compaction_dynamic_level_bytes: 1 +2025/05/04-10:09:55.628826 44 Options.max_bytes_for_level_multiplier: 10.000000 +2025/05/04-10:09:55.628827 44 Options.max_bytes_for_level_multiplier_addtl[0]: 1 +2025/05/04-10:09:55.628827 44 Options.max_bytes_for_level_multiplier_addtl[1]: 1 +2025/05/04-10:09:55.628828 44 Options.max_bytes_for_level_multiplier_addtl[2]: 1 +2025/05/04-10:09:55.628828 44 Options.max_bytes_for_level_multiplier_addtl[3]: 1 +2025/05/04-10:09:55.628829 44 Options.max_bytes_for_level_multiplier_addtl[4]: 1 +2025/05/04-10:09:55.628829 44 Options.max_bytes_for_level_multiplier_addtl[5]: 1 +2025/05/04-10:09:55.628831 44 Options.max_bytes_for_level_multiplier_addtl[6]: 1 +2025/05/04-10:09:55.628831 44 Options.max_sequential_skip_in_iterations: 8 +2025/05/04-10:09:55.628832 44 Options.max_compaction_bytes: 1677721600 +2025/05/04-10:09:55.628833 44 Options.arena_block_size: 1048576 +2025/05/04-10:09:55.628834 44 Options.soft_pending_compaction_bytes_limit: 68719476736 +2025/05/04-10:09:55.628834 44 Options.hard_pending_compaction_bytes_limit: 274877906944 +2025/05/04-10:09:55.628835 44 Options.disable_auto_compactions: 0 +2025/05/04-10:09:55.628837 44 Options.compaction_style: kCompactionStyleLevel +2025/05/04-10:09:55.628838 44 Options.compaction_pri: kMinOverlappingRatio +2025/05/04-10:09:55.628839 44 Options.compaction_options_universal.size_ratio: 1 +2025/05/04-10:09:55.628840 44 Options.compaction_options_universal.min_merge_width: 2 +2025/05/04-10:09:55.628840 44 Options.compaction_options_universal.max_merge_width: 4294967295 +2025/05/04-10:09:55.628841 44 Options.compaction_options_universal.max_size_amplification_percent: 200 +2025/05/04-10:09:55.628842 44 Options.compaction_options_universal.compression_size_percent: -1 +2025/05/04-10:09:55.628843 44 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize +2025/05/04-10:09:55.628843 44 Options.compaction_options_universal.max_read_amp: -1 +2025/05/04-10:09:55.628844 44 Options.compaction_options_fifo.max_table_files_size: 1073741824 +2025/05/04-10:09:55.628845 44 Options.compaction_options_fifo.allow_compaction: 0 +2025/05/04-10:09:55.628852 44 Options.table_properties_collectors: +2025/05/04-10:09:55.628853 44 Options.inplace_update_support: 0 +2025/05/04-10:09:55.628853 44 Options.inplace_update_num_locks: 10000 +2025/05/04-10:09:55.628854 44 Options.memtable_prefix_bloom_size_ratio: 0.000000 +2025/05/04-10:09:55.628855 44 Options.memtable_whole_key_filtering: 0 +2025/05/04-10:09:55.628856 44 Options.memtable_huge_page_size: 0 +2025/05/04-10:09:55.628856 44 Options.bloom_locality: 0 +2025/05/04-10:09:55.628857 44 Options.max_successive_merges: 0 +2025/05/04-10:09:55.628858 44 Options.strict_max_successive_merges: 0 +2025/05/04-10:09:55.628858 44 Options.optimize_filters_for_hits: 0 +2025/05/04-10:09:55.628859 44 Options.paranoid_file_checks: 0 +2025/05/04-10:09:55.628868 44 Options.force_consistency_checks: 1 +2025/05/04-10:09:55.628869 44 Options.report_bg_io_stats: 0 +2025/05/04-10:09:55.628869 44 Options.ttl: 2592000 +2025/05/04-10:09:55.628870 44 Options.periodic_compaction_seconds: 0 +2025/05/04-10:09:55.628871 44 Options.default_temperature: kUnknown +2025/05/04-10:09:55.628871 44 Options.preclude_last_level_data_seconds: 0 +2025/05/04-10:09:55.628872 44 Options.preserve_internal_time_seconds: 0 +2025/05/04-10:09:55.628872 44 Options.enable_blob_files: false +2025/05/04-10:09:55.628873 44 Options.min_blob_size: 0 +2025/05/04-10:09:55.628874 44 Options.blob_file_size: 268435456 +2025/05/04-10:09:55.628874 44 Options.blob_compression_type: NoCompression +2025/05/04-10:09:55.628875 44 Options.enable_blob_garbage_collection: false +2025/05/04-10:09:55.628876 44 Options.blob_garbage_collection_age_cutoff: 0.250000 +2025/05/04-10:09:55.628877 44 Options.blob_garbage_collection_force_threshold: 1.000000 +2025/05/04-10:09:55.628878 44 Options.blob_compaction_readahead_size: 0 +2025/05/04-10:09:55.628878 44 Options.blob_file_starting_level: 0 +2025/05/04-10:09:55.628879 44 Options.experimental_mempurge_threshold: 0.000000 +2025/05/04-10:09:55.628880 44 Options.memtable_max_range_deletions: 0 +2025/05/04-10:09:55.629394 44 Options.comparator: leveldb.BytewiseComparator +2025/05/04-10:09:55.629396 44 Options.merge_operator: None +2025/05/04-10:09:55.629396 44 Options.compaction_filter: None +2025/05/04-10:09:55.629397 44 Options.compaction_filter_factory: None +2025/05/04-10:09:55.629397 44 Options.sst_partitioner_factory: None +2025/05/04-10:09:55.629398 44 Options.memtable_factory: SkipListFactory +2025/05/04-10:09:55.629399 44 Options.table_factory: BlockBasedTable +2025/05/04-10:09:55.629408 44 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff99a00ce0) + cache_index_and_filter_blocks: 0 + cache_index_and_filter_blocks_with_high_priority: 1 + pin_l0_filter_and_index_blocks_in_cache: 0 + pin_top_level_index_and_filter: 1 + index_type: 0 + data_block_index_type: 0 + index_shortening: 1 + data_block_hash_table_util_ratio: 0.750000 + checksum: 4 + no_block_cache: 0 + block_cache: 0xffff99a0f010 + block_cache_name: LRUCache + block_cache_options: + capacity : 33554432 + num_shard_bits : 6 + strict_capacity_limit : 0 + memory_allocator : None + high_pri_pool_ratio: 0.500 + low_pri_pool_ratio: 0.000 + persistent_cache: (nil) + block_size: 4096 + block_size_deviation: 10 + block_restart_interval: 16 + index_block_restart_interval: 1 + metadata_block_size: 4096 + partition_filters: 0 + use_delta_encoding: 1 + filter_policy: nullptr + whole_key_filtering: 1 + verify_compression: 0 + read_amp_bytes_per_bit: 0 + format_version: 6 + enable_index_compression: 1 + block_align: 0 + max_auto_readahead_size: 262144 + prepopulate_block_cache: 0 + initial_auto_readahead_size: 8192 + num_file_reads_for_auto_readahead: 2 +2025/05/04-10:09:55.629410 44 Options.write_buffer_size: 10485760 +2025/05/04-10:09:55.629411 44 Options.max_write_buffer_number: 2 +2025/05/04-10:09:55.629412 44 Options.compression: LZ4 +2025/05/04-10:09:55.629413 44 Options.bottommost_compression: Disabled +2025/05/04-10:09:55.629414 44 Options.prefix_extractor: nullptr +2025/05/04-10:09:55.629414 44 Options.memtable_insert_with_hint_prefix_extractor: nullptr +2025/05/04-10:09:55.629415 44 Options.num_levels: 7 +2025/05/04-10:09:55.629416 44 Options.min_write_buffer_number_to_merge: 1 +2025/05/04-10:09:55.629416 44 Options.max_write_buffer_number_to_maintain: 0 +2025/05/04-10:09:55.629417 44 Options.max_write_buffer_size_to_maintain: 0 +2025/05/04-10:09:55.629417 44 Options.bottommost_compression_opts.window_bits: -14 +2025/05/04-10:09:55.629418 44 Options.bottommost_compression_opts.level: 32767 +2025/05/04-10:09:55.629419 44 Options.bottommost_compression_opts.strategy: 0 +2025/05/04-10:09:55.629419 44 Options.bottommost_compression_opts.max_dict_bytes: 0 +2025/05/04-10:09:55.629420 44 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 +2025/05/04-10:09:55.629421 44 Options.bottommost_compression_opts.parallel_threads: 1 +2025/05/04-10:09:55.629421 44 Options.bottommost_compression_opts.enabled: false +2025/05/04-10:09:55.629422 44 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 +2025/05/04-10:09:55.629422 44 Options.bottommost_compression_opts.use_zstd_dict_trainer: true +2025/05/04-10:09:55.629423 44 Options.compression_opts.window_bits: -14 +2025/05/04-10:09:55.629423 44 Options.compression_opts.level: 32767 +2025/05/04-10:09:55.629424 44 Options.compression_opts.strategy: 0 +2025/05/04-10:09:55.629425 44 Options.compression_opts.max_dict_bytes: 0 +2025/05/04-10:09:55.629425 44 Options.compression_opts.zstd_max_train_bytes: 0 +2025/05/04-10:09:55.629426 44 Options.compression_opts.use_zstd_dict_trainer: true +2025/05/04-10:09:55.629426 44 Options.compression_opts.parallel_threads: 1 +2025/05/04-10:09:55.629427 44 Options.compression_opts.enabled: false +2025/05/04-10:09:55.629428 44 Options.compression_opts.max_dict_buffer_bytes: 0 +2025/05/04-10:09:55.629429 44 Options.level0_file_num_compaction_trigger: 4 +2025/05/04-10:09:55.629429 44 Options.level0_slowdown_writes_trigger: 20 +2025/05/04-10:09:55.629430 44 Options.level0_stop_writes_trigger: 36 +2025/05/04-10:09:55.629430 44 Options.target_file_size_base: 67108864 +2025/05/04-10:09:55.629431 44 Options.target_file_size_multiplier: 1 +2025/05/04-10:09:55.629431 44 Options.max_bytes_for_level_base: 268435456 +2025/05/04-10:09:55.629432 44 Options.level_compaction_dynamic_level_bytes: 1 +2025/05/04-10:09:55.629433 44 Options.max_bytes_for_level_multiplier: 10.000000 +2025/05/04-10:09:55.629434 44 Options.max_bytes_for_level_multiplier_addtl[0]: 1 +2025/05/04-10:09:55.629434 44 Options.max_bytes_for_level_multiplier_addtl[1]: 1 +2025/05/04-10:09:55.629435 44 Options.max_bytes_for_level_multiplier_addtl[2]: 1 +2025/05/04-10:09:55.629435 44 Options.max_bytes_for_level_multiplier_addtl[3]: 1 +2025/05/04-10:09:55.629436 44 Options.max_bytes_for_level_multiplier_addtl[4]: 1 +2025/05/04-10:09:55.629436 44 Options.max_bytes_for_level_multiplier_addtl[5]: 1 +2025/05/04-10:09:55.629437 44 Options.max_bytes_for_level_multiplier_addtl[6]: 1 +2025/05/04-10:09:55.629437 44 Options.max_sequential_skip_in_iterations: 8 +2025/05/04-10:09:55.629440 44 Options.max_compaction_bytes: 1677721600 +2025/05/04-10:09:55.629441 44 Options.arena_block_size: 1048576 +2025/05/04-10:09:55.629442 44 Options.soft_pending_compaction_bytes_limit: 68719476736 +2025/05/04-10:09:55.629442 44 Options.hard_pending_compaction_bytes_limit: 274877906944 +2025/05/04-10:09:55.629443 44 Options.disable_auto_compactions: 0 +2025/05/04-10:09:55.629444 44 Options.compaction_style: kCompactionStyleLevel +2025/05/04-10:09:55.629444 44 Options.compaction_pri: kMinOverlappingRatio +2025/05/04-10:09:55.629445 44 Options.compaction_options_universal.size_ratio: 1 +2025/05/04-10:09:55.629445 44 Options.compaction_options_universal.min_merge_width: 2 +2025/05/04-10:09:55.629446 44 Options.compaction_options_universal.max_merge_width: 4294967295 +2025/05/04-10:09:55.629447 44 Options.compaction_options_universal.max_size_amplification_percent: 200 +2025/05/04-10:09:55.629447 44 Options.compaction_options_universal.compression_size_percent: -1 +2025/05/04-10:09:55.629448 44 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize +2025/05/04-10:09:55.629450 44 Options.compaction_options_universal.max_read_amp: -1 +2025/05/04-10:09:55.629450 44 Options.compaction_options_fifo.max_table_files_size: 1073741824 +2025/05/04-10:09:55.629451 44 Options.compaction_options_fifo.allow_compaction: 0 +2025/05/04-10:09:55.629452 44 Options.table_properties_collectors: +2025/05/04-10:09:55.629453 44 Options.inplace_update_support: 0 +2025/05/04-10:09:55.629454 44 Options.inplace_update_num_locks: 10000 +2025/05/04-10:09:55.629454 44 Options.memtable_prefix_bloom_size_ratio: 0.000000 +2025/05/04-10:09:55.629455 44 Options.memtable_whole_key_filtering: 0 +2025/05/04-10:09:55.629456 44 Options.memtable_huge_page_size: 0 +2025/05/04-10:09:55.629456 44 Options.bloom_locality: 0 +2025/05/04-10:09:55.629457 44 Options.max_successive_merges: 0 +2025/05/04-10:09:55.629457 44 Options.strict_max_successive_merges: 0 +2025/05/04-10:09:55.629458 44 Options.optimize_filters_for_hits: 0 +2025/05/04-10:09:55.629458 44 Options.paranoid_file_checks: 0 +2025/05/04-10:09:55.629459 44 Options.force_consistency_checks: 1 +2025/05/04-10:09:55.629460 44 Options.report_bg_io_stats: 0 +2025/05/04-10:09:55.629460 44 Options.ttl: 2592000 +2025/05/04-10:09:55.629461 44 Options.periodic_compaction_seconds: 0 +2025/05/04-10:09:55.629462 44 Options.default_temperature: kUnknown +2025/05/04-10:09:55.629462 44 Options.preclude_last_level_data_seconds: 0 +2025/05/04-10:09:55.629463 44 Options.preserve_internal_time_seconds: 0 +2025/05/04-10:09:55.629463 44 Options.enable_blob_files: false +2025/05/04-10:09:55.629464 44 Options.min_blob_size: 0 +2025/05/04-10:09:55.629464 44 Options.blob_file_size: 268435456 +2025/05/04-10:09:55.629465 44 Options.blob_compression_type: NoCompression +2025/05/04-10:09:55.629466 44 Options.enable_blob_garbage_collection: false +2025/05/04-10:09:55.629466 44 Options.blob_garbage_collection_age_cutoff: 0.250000 +2025/05/04-10:09:55.629467 44 Options.blob_garbage_collection_force_threshold: 1.000000 +2025/05/04-10:09:55.629468 44 Options.blob_compaction_readahead_size: 0 +2025/05/04-10:09:55.629468 44 Options.blob_file_starting_level: 0 +2025/05/04-10:09:55.629469 44 Options.experimental_mempurge_threshold: 0.000000 +2025/05/04-10:09:55.629470 44 Options.memtable_max_range_deletions: 0 +2025/05/04-10:09:55.629499 44 Options.comparator: leveldb.BytewiseComparator +2025/05/04-10:09:55.629501 44 Options.merge_operator: None +2025/05/04-10:09:55.629501 44 Options.compaction_filter: None +2025/05/04-10:09:55.629502 44 Options.compaction_filter_factory: None +2025/05/04-10:09:55.629502 44 Options.sst_partitioner_factory: None +2025/05/04-10:09:55.629503 44 Options.memtable_factory: SkipListFactory +2025/05/04-10:09:55.629503 44 Options.table_factory: BlockBasedTable +2025/05/04-10:09:55.629510 44 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff99a00ce0) + cache_index_and_filter_blocks: 0 + cache_index_and_filter_blocks_with_high_priority: 1 + pin_l0_filter_and_index_blocks_in_cache: 0 + pin_top_level_index_and_filter: 1 + index_type: 0 + data_block_index_type: 0 + index_shortening: 1 + data_block_hash_table_util_ratio: 0.750000 + checksum: 4 + no_block_cache: 0 + block_cache: 0xffff99a0f010 + block_cache_name: LRUCache + block_cache_options: + capacity : 33554432 + num_shard_bits : 6 + strict_capacity_limit : 0 + memory_allocator : None + high_pri_pool_ratio: 0.500 + low_pri_pool_ratio: 0.000 + persistent_cache: (nil) + block_size: 4096 + block_size_deviation: 10 + block_restart_interval: 16 + index_block_restart_interval: 1 + metadata_block_size: 4096 + partition_filters: 0 + use_delta_encoding: 1 + filter_policy: nullptr + whole_key_filtering: 1 + verify_compression: 0 + read_amp_bytes_per_bit: 0 + format_version: 6 + enable_index_compression: 1 + block_align: 0 + max_auto_readahead_size: 262144 + prepopulate_block_cache: 0 + initial_auto_readahead_size: 8192 + num_file_reads_for_auto_readahead: 2 +2025/05/04-10:09:55.629511 44 Options.write_buffer_size: 10485760 +2025/05/04-10:09:55.629511 44 Options.max_write_buffer_number: 2 +2025/05/04-10:09:55.629512 44 Options.compression: LZ4 +2025/05/04-10:09:55.629513 44 Options.bottommost_compression: Disabled +2025/05/04-10:09:55.629513 44 Options.prefix_extractor: nullptr +2025/05/04-10:09:55.629514 44 Options.memtable_insert_with_hint_prefix_extractor: nullptr +2025/05/04-10:09:55.629515 44 Options.num_levels: 7 +2025/05/04-10:09:55.629516 44 Options.min_write_buffer_number_to_merge: 1 +2025/05/04-10:09:55.629516 44 Options.max_write_buffer_number_to_maintain: 0 +2025/05/04-10:09:55.629517 44 Options.max_write_buffer_size_to_maintain: 0 +2025/05/04-10:09:55.629517 44 Options.bottommost_compression_opts.window_bits: -14 +2025/05/04-10:09:55.629518 44 Options.bottommost_compression_opts.level: 32767 +2025/05/04-10:09:55.629518 44 Options.bottommost_compression_opts.strategy: 0 +2025/05/04-10:09:55.629519 44 Options.bottommost_compression_opts.max_dict_bytes: 0 +2025/05/04-10:09:55.629520 44 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 +2025/05/04-10:09:55.629520 44 Options.bottommost_compression_opts.parallel_threads: 1 +2025/05/04-10:09:55.629521 44 Options.bottommost_compression_opts.enabled: false +2025/05/04-10:09:55.629521 44 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 +2025/05/04-10:09:55.629522 44 Options.bottommost_compression_opts.use_zstd_dict_trainer: true +2025/05/04-10:09:55.629522 44 Options.compression_opts.window_bits: -14 +2025/05/04-10:09:55.629523 44 Options.compression_opts.level: 32767 +2025/05/04-10:09:55.629523 44 Options.compression_opts.strategy: 0 +2025/05/04-10:09:55.629524 44 Options.compression_opts.max_dict_bytes: 0 +2025/05/04-10:09:55.629525 44 Options.compression_opts.zstd_max_train_bytes: 0 +2025/05/04-10:09:55.629525 44 Options.compression_opts.use_zstd_dict_trainer: true +2025/05/04-10:09:55.629526 44 Options.compression_opts.parallel_threads: 1 +2025/05/04-10:09:55.629526 44 Options.compression_opts.enabled: false +2025/05/04-10:09:55.629527 44 Options.compression_opts.max_dict_buffer_bytes: 0 +2025/05/04-10:09:55.629527 44 Options.level0_file_num_compaction_trigger: 4 +2025/05/04-10:09:55.629528 44 Options.level0_slowdown_writes_trigger: 20 +2025/05/04-10:09:55.629528 44 Options.level0_stop_writes_trigger: 36 +2025/05/04-10:09:55.629529 44 Options.target_file_size_base: 67108864 +2025/05/04-10:09:55.629529 44 Options.target_file_size_multiplier: 1 +2025/05/04-10:09:55.629530 44 Options.max_bytes_for_level_base: 268435456 +2025/05/04-10:09:55.629530 44 Options.level_compaction_dynamic_level_bytes: 1 +2025/05/04-10:09:55.629531 44 Options.max_bytes_for_level_multiplier: 10.000000 +2025/05/04-10:09:55.629532 44 Options.max_bytes_for_level_multiplier_addtl[0]: 1 +2025/05/04-10:09:55.629532 44 Options.max_bytes_for_level_multiplier_addtl[1]: 1 +2025/05/04-10:09:55.629533 44 Options.max_bytes_for_level_multiplier_addtl[2]: 1 +2025/05/04-10:09:55.629533 44 Options.max_bytes_for_level_multiplier_addtl[3]: 1 +2025/05/04-10:09:55.629534 44 Options.max_bytes_for_level_multiplier_addtl[4]: 1 +2025/05/04-10:09:55.629535 44 Options.max_bytes_for_level_multiplier_addtl[5]: 1 +2025/05/04-10:09:55.629535 44 Options.max_bytes_for_level_multiplier_addtl[6]: 1 +2025/05/04-10:09:55.629536 44 Options.max_sequential_skip_in_iterations: 8 +2025/05/04-10:09:55.629536 44 Options.max_compaction_bytes: 1677721600 +2025/05/04-10:09:55.629537 44 Options.arena_block_size: 1048576 +2025/05/04-10:09:55.629537 44 Options.soft_pending_compaction_bytes_limit: 68719476736 +2025/05/04-10:09:55.629538 44 Options.hard_pending_compaction_bytes_limit: 274877906944 +2025/05/04-10:09:55.629538 44 Options.disable_auto_compactions: 0 +2025/05/04-10:09:55.629539 44 Options.compaction_style: kCompactionStyleLevel +2025/05/04-10:09:55.629540 44 Options.compaction_pri: kMinOverlappingRatio +2025/05/04-10:09:55.629540 44 Options.compaction_options_universal.size_ratio: 1 +2025/05/04-10:09:55.629541 44 Options.compaction_options_universal.min_merge_width: 2 +2025/05/04-10:09:55.629542 44 Options.compaction_options_universal.max_merge_width: 4294967295 +2025/05/04-10:09:55.629542 44 Options.compaction_options_universal.max_size_amplification_percent: 200 +2025/05/04-10:09:55.629543 44 Options.compaction_options_universal.compression_size_percent: -1 +2025/05/04-10:09:55.629544 44 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize +2025/05/04-10:09:55.629544 44 Options.compaction_options_universal.max_read_amp: -1 +2025/05/04-10:09:55.629545 44 Options.compaction_options_fifo.max_table_files_size: 1073741824 +2025/05/04-10:09:55.629545 44 Options.compaction_options_fifo.allow_compaction: 0 +2025/05/04-10:09:55.629546 44 Options.table_properties_collectors: +2025/05/04-10:09:55.629548 44 Options.inplace_update_support: 0 +2025/05/04-10:09:55.629548 44 Options.inplace_update_num_locks: 10000 +2025/05/04-10:09:55.629549 44 Options.memtable_prefix_bloom_size_ratio: 0.000000 +2025/05/04-10:09:55.629550 44 Options.memtable_whole_key_filtering: 0 +2025/05/04-10:09:55.629550 44 Options.memtable_huge_page_size: 0 +2025/05/04-10:09:55.629551 44 Options.bloom_locality: 0 +2025/05/04-10:09:55.629551 44 Options.max_successive_merges: 0 +2025/05/04-10:09:55.629552 44 Options.strict_max_successive_merges: 0 +2025/05/04-10:09:55.629553 44 Options.optimize_filters_for_hits: 0 +2025/05/04-10:09:55.629553 44 Options.paranoid_file_checks: 0 +2025/05/04-10:09:55.629554 44 Options.force_consistency_checks: 1 +2025/05/04-10:09:55.629554 44 Options.report_bg_io_stats: 0 +2025/05/04-10:09:55.629555 44 Options.ttl: 2592000 +2025/05/04-10:09:55.629556 44 Options.periodic_compaction_seconds: 0 +2025/05/04-10:09:55.629556 44 Options.default_temperature: kUnknown +2025/05/04-10:09:55.629557 44 Options.preclude_last_level_data_seconds: 0 +2025/05/04-10:09:55.629558 44 Options.preserve_internal_time_seconds: 0 +2025/05/04-10:09:55.629558 44 Options.enable_blob_files: false +2025/05/04-10:09:55.629559 44 Options.min_blob_size: 0 +2025/05/04-10:09:55.629559 44 Options.blob_file_size: 268435456 +2025/05/04-10:09:55.629560 44 Options.blob_compression_type: NoCompression +2025/05/04-10:09:55.629561 44 Options.enable_blob_garbage_collection: false +2025/05/04-10:09:55.629561 44 Options.blob_garbage_collection_age_cutoff: 0.250000 +2025/05/04-10:09:55.629562 44 Options.blob_garbage_collection_force_threshold: 1.000000 +2025/05/04-10:09:55.629563 44 Options.blob_compaction_readahead_size: 0 +2025/05/04-10:09:55.629563 44 Options.blob_file_starting_level: 0 +2025/05/04-10:09:55.629564 44 Options.experimental_mempurge_threshold: 0.000000 +2025/05/04-10:09:55.629565 44 Options.memtable_max_range_deletions: 0 +2025/05/04-10:09:55.629580 44 Options.comparator: leveldb.BytewiseComparator +2025/05/04-10:09:55.629581 44 Options.merge_operator: None +2025/05/04-10:09:55.629582 44 Options.compaction_filter: None +2025/05/04-10:09:55.629582 44 Options.compaction_filter_factory: None +2025/05/04-10:09:55.629583 44 Options.sst_partitioner_factory: None +2025/05/04-10:09:55.629584 44 Options.memtable_factory: SkipListFactory +2025/05/04-10:09:55.629584 44 Options.table_factory: BlockBasedTable +2025/05/04-10:09:55.629590 44 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff99a00ce0) + cache_index_and_filter_blocks: 0 + cache_index_and_filter_blocks_with_high_priority: 1 + pin_l0_filter_and_index_blocks_in_cache: 0 + pin_top_level_index_and_filter: 1 + index_type: 0 + data_block_index_type: 0 + index_shortening: 1 + data_block_hash_table_util_ratio: 0.750000 + checksum: 4 + no_block_cache: 0 + block_cache: 0xffff99a0f010 + block_cache_name: LRUCache + block_cache_options: + capacity : 33554432 + num_shard_bits : 6 + strict_capacity_limit : 0 + memory_allocator : None + high_pri_pool_ratio: 0.500 + low_pri_pool_ratio: 0.000 + persistent_cache: (nil) + block_size: 4096 + block_size_deviation: 10 + block_restart_interval: 16 + index_block_restart_interval: 1 + metadata_block_size: 4096 + partition_filters: 0 + use_delta_encoding: 1 + filter_policy: nullptr + whole_key_filtering: 1 + verify_compression: 0 + read_amp_bytes_per_bit: 0 + format_version: 6 + enable_index_compression: 1 + block_align: 0 + max_auto_readahead_size: 262144 + prepopulate_block_cache: 0 + initial_auto_readahead_size: 8192 + num_file_reads_for_auto_readahead: 2 +2025/05/04-10:09:55.629592 44 Options.write_buffer_size: 10485760 +2025/05/04-10:09:55.629592 44 Options.max_write_buffer_number: 2 +2025/05/04-10:09:55.629593 44 Options.compression: LZ4 +2025/05/04-10:09:55.629594 44 Options.bottommost_compression: Disabled +2025/05/04-10:09:55.629594 44 Options.prefix_extractor: nullptr +2025/05/04-10:09:55.629595 44 Options.memtable_insert_with_hint_prefix_extractor: nullptr +2025/05/04-10:09:55.629595 44 Options.num_levels: 7 +2025/05/04-10:09:55.629596 44 Options.min_write_buffer_number_to_merge: 1 +2025/05/04-10:09:55.629597 44 Options.max_write_buffer_number_to_maintain: 0 +2025/05/04-10:09:55.629597 44 Options.max_write_buffer_size_to_maintain: 0 +2025/05/04-10:09:55.629598 44 Options.bottommost_compression_opts.window_bits: -14 +2025/05/04-10:09:55.629598 44 Options.bottommost_compression_opts.level: 32767 +2025/05/04-10:09:55.629599 44 Options.bottommost_compression_opts.strategy: 0 +2025/05/04-10:09:55.629600 44 Options.bottommost_compression_opts.max_dict_bytes: 0 +2025/05/04-10:09:55.629600 44 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 +2025/05/04-10:09:55.629601 44 Options.bottommost_compression_opts.parallel_threads: 1 +2025/05/04-10:09:55.629602 44 Options.bottommost_compression_opts.enabled: false +2025/05/04-10:09:55.629602 44 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 +2025/05/04-10:09:55.629603 44 Options.bottommost_compression_opts.use_zstd_dict_trainer: true +2025/05/04-10:09:55.629603 44 Options.compression_opts.window_bits: -14 +2025/05/04-10:09:55.629604 44 Options.compression_opts.level: 32767 +2025/05/04-10:09:55.629605 44 Options.compression_opts.strategy: 0 +2025/05/04-10:09:55.629605 44 Options.compression_opts.max_dict_bytes: 0 +2025/05/04-10:09:55.629606 44 Options.compression_opts.zstd_max_train_bytes: 0 +2025/05/04-10:09:55.629607 44 Options.compression_opts.use_zstd_dict_trainer: true +2025/05/04-10:09:55.629607 44 Options.compression_opts.parallel_threads: 1 +2025/05/04-10:09:55.629608 44 Options.compression_opts.enabled: false +2025/05/04-10:09:55.629608 44 Options.compression_opts.max_dict_buffer_bytes: 0 +2025/05/04-10:09:55.629609 44 Options.level0_file_num_compaction_trigger: 4 +2025/05/04-10:09:55.629609 44 Options.level0_slowdown_writes_trigger: 20 +2025/05/04-10:09:55.629610 44 Options.level0_stop_writes_trigger: 36 +2025/05/04-10:09:55.629610 44 Options.target_file_size_base: 67108864 +2025/05/04-10:09:55.629611 44 Options.target_file_size_multiplier: 1 +2025/05/04-10:09:55.629611 44 Options.max_bytes_for_level_base: 268435456 +2025/05/04-10:09:55.629612 44 Options.level_compaction_dynamic_level_bytes: 1 +2025/05/04-10:09:55.629613 44 Options.max_bytes_for_level_multiplier: 10.000000 +2025/05/04-10:09:55.629614 44 Options.max_bytes_for_level_multiplier_addtl[0]: 1 +2025/05/04-10:09:55.629615 44 Options.max_bytes_for_level_multiplier_addtl[1]: 1 +2025/05/04-10:09:55.629615 44 Options.max_bytes_for_level_multiplier_addtl[2]: 1 +2025/05/04-10:09:55.629616 44 Options.max_bytes_for_level_multiplier_addtl[3]: 1 +2025/05/04-10:09:55.629617 44 Options.max_bytes_for_level_multiplier_addtl[4]: 1 +2025/05/04-10:09:55.629617 44 Options.max_bytes_for_level_multiplier_addtl[5]: 1 +2025/05/04-10:09:55.629618 44 Options.max_bytes_for_level_multiplier_addtl[6]: 1 +2025/05/04-10:09:55.629619 44 Options.max_sequential_skip_in_iterations: 8 +2025/05/04-10:09:55.629619 44 Options.max_compaction_bytes: 1677721600 +2025/05/04-10:09:55.629620 44 Options.arena_block_size: 1048576 +2025/05/04-10:09:55.629621 44 Options.soft_pending_compaction_bytes_limit: 68719476736 +2025/05/04-10:09:55.629621 44 Options.hard_pending_compaction_bytes_limit: 274877906944 +2025/05/04-10:09:55.629622 44 Options.disable_auto_compactions: 0 +2025/05/04-10:09:55.629623 44 Options.compaction_style: kCompactionStyleLevel +2025/05/04-10:09:55.629623 44 Options.compaction_pri: kMinOverlappingRatio +2025/05/04-10:09:55.629624 44 Options.compaction_options_universal.size_ratio: 1 +2025/05/04-10:09:55.629624 44 Options.compaction_options_universal.min_merge_width: 2 +2025/05/04-10:09:55.629625 44 Options.compaction_options_universal.max_merge_width: 4294967295 +2025/05/04-10:09:55.629626 44 Options.compaction_options_universal.max_size_amplification_percent: 200 +2025/05/04-10:09:55.629626 44 Options.compaction_options_universal.compression_size_percent: -1 +2025/05/04-10:09:55.629627 44 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize +2025/05/04-10:09:55.629628 44 Options.compaction_options_universal.max_read_amp: -1 +2025/05/04-10:09:55.629628 44 Options.compaction_options_fifo.max_table_files_size: 1073741824 +2025/05/04-10:09:55.629629 44 Options.compaction_options_fifo.allow_compaction: 0 +2025/05/04-10:09:55.629630 44 Options.table_properties_collectors: +2025/05/04-10:09:55.629630 44 Options.inplace_update_support: 0 +2025/05/04-10:09:55.629631 44 Options.inplace_update_num_locks: 10000 +2025/05/04-10:09:55.629632 44 Options.memtable_prefix_bloom_size_ratio: 0.000000 +2025/05/04-10:09:55.629632 44 Options.memtable_whole_key_filtering: 0 +2025/05/04-10:09:55.629633 44 Options.memtable_huge_page_size: 0 +2025/05/04-10:09:55.629634 44 Options.bloom_locality: 0 +2025/05/04-10:09:55.629634 44 Options.max_successive_merges: 0 +2025/05/04-10:09:55.629635 44 Options.strict_max_successive_merges: 0 +2025/05/04-10:09:55.629635 44 Options.optimize_filters_for_hits: 0 +2025/05/04-10:09:55.629636 44 Options.paranoid_file_checks: 0 +2025/05/04-10:09:55.629637 44 Options.force_consistency_checks: 1 +2025/05/04-10:09:55.629637 44 Options.report_bg_io_stats: 0 +2025/05/04-10:09:55.629638 44 Options.ttl: 2592000 +2025/05/04-10:09:55.629640 44 Options.periodic_compaction_seconds: 0 +2025/05/04-10:09:55.629641 44 Options.default_temperature: kUnknown +2025/05/04-10:09:55.629641 44 Options.preclude_last_level_data_seconds: 0 +2025/05/04-10:09:55.629642 44 Options.preserve_internal_time_seconds: 0 +2025/05/04-10:09:55.629642 44 Options.enable_blob_files: false +2025/05/04-10:09:55.629643 44 Options.min_blob_size: 0 +2025/05/04-10:09:55.629643 44 Options.blob_file_size: 268435456 +2025/05/04-10:09:55.629644 44 Options.blob_compression_type: NoCompression +2025/05/04-10:09:55.629645 44 Options.enable_blob_garbage_collection: false +2025/05/04-10:09:55.629645 44 Options.blob_garbage_collection_age_cutoff: 0.250000 +2025/05/04-10:09:55.629646 44 Options.blob_garbage_collection_force_threshold: 1.000000 +2025/05/04-10:09:55.629646 44 Options.blob_compaction_readahead_size: 0 +2025/05/04-10:09:55.629647 44 Options.blob_file_starting_level: 0 +2025/05/04-10:09:55.629647 44 Options.experimental_mempurge_threshold: 0.000000 +2025/05/04-10:09:55.629648 44 Options.memtable_max_range_deletions: 0 +2025/05/04-10:09:55.629663 44 Options.comparator: leveldb.BytewiseComparator +2025/05/04-10:09:55.629664 44 Options.merge_operator: None +2025/05/04-10:09:55.629665 44 Options.compaction_filter: None +2025/05/04-10:09:55.629665 44 Options.compaction_filter_factory: None +2025/05/04-10:09:55.629666 44 Options.sst_partitioner_factory: None +2025/05/04-10:09:55.629666 44 Options.memtable_factory: SkipListFactory +2025/05/04-10:09:55.629667 44 Options.table_factory: BlockBasedTable +2025/05/04-10:09:55.629672 44 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff99a00ce0) + cache_index_and_filter_blocks: 0 + cache_index_and_filter_blocks_with_high_priority: 1 + pin_l0_filter_and_index_blocks_in_cache: 0 + pin_top_level_index_and_filter: 1 + index_type: 0 + data_block_index_type: 0 + index_shortening: 1 + data_block_hash_table_util_ratio: 0.750000 + checksum: 4 + no_block_cache: 0 + block_cache: 0xffff99a0f010 + block_cache_name: LRUCache + block_cache_options: + capacity : 33554432 + num_shard_bits : 6 + strict_capacity_limit : 0 + memory_allocator : None + high_pri_pool_ratio: 0.500 + low_pri_pool_ratio: 0.000 + persistent_cache: (nil) + block_size: 4096 + block_size_deviation: 10 + block_restart_interval: 16 + index_block_restart_interval: 1 + metadata_block_size: 4096 + partition_filters: 0 + use_delta_encoding: 1 + filter_policy: nullptr + whole_key_filtering: 1 + verify_compression: 0 + read_amp_bytes_per_bit: 0 + format_version: 6 + enable_index_compression: 1 + block_align: 0 + max_auto_readahead_size: 262144 + prepopulate_block_cache: 0 + initial_auto_readahead_size: 8192 + num_file_reads_for_auto_readahead: 2 +2025/05/04-10:09:55.629673 44 Options.write_buffer_size: 10485760 +2025/05/04-10:09:55.629674 44 Options.max_write_buffer_number: 2 +2025/05/04-10:09:55.629674 44 Options.compression: LZ4 +2025/05/04-10:09:55.629675 44 Options.bottommost_compression: Disabled +2025/05/04-10:09:55.629675 44 Options.prefix_extractor: nullptr +2025/05/04-10:09:55.629676 44 Options.memtable_insert_with_hint_prefix_extractor: nullptr +2025/05/04-10:09:55.629676 44 Options.num_levels: 7 +2025/05/04-10:09:55.629677 44 Options.min_write_buffer_number_to_merge: 1 +2025/05/04-10:09:55.629678 44 Options.max_write_buffer_number_to_maintain: 0 +2025/05/04-10:09:55.629678 44 Options.max_write_buffer_size_to_maintain: 0 +2025/05/04-10:09:55.629679 44 Options.bottommost_compression_opts.window_bits: -14 +2025/05/04-10:09:55.629679 44 Options.bottommost_compression_opts.level: 32767 +2025/05/04-10:09:55.629680 44 Options.bottommost_compression_opts.strategy: 0 +2025/05/04-10:09:55.629680 44 Options.bottommost_compression_opts.max_dict_bytes: 0 +2025/05/04-10:09:55.629681 44 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 +2025/05/04-10:09:55.629681 44 Options.bottommost_compression_opts.parallel_threads: 1 +2025/05/04-10:09:55.629682 44 Options.bottommost_compression_opts.enabled: false +2025/05/04-10:09:55.629682 44 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 +2025/05/04-10:09:55.629683 44 Options.bottommost_compression_opts.use_zstd_dict_trainer: true +2025/05/04-10:09:55.629683 44 Options.compression_opts.window_bits: -14 +2025/05/04-10:09:55.629684 44 Options.compression_opts.level: 32767 +2025/05/04-10:09:55.629684 44 Options.compression_opts.strategy: 0 +2025/05/04-10:09:55.629685 44 Options.compression_opts.max_dict_bytes: 0 +2025/05/04-10:09:55.629685 44 Options.compression_opts.zstd_max_train_bytes: 0 +2025/05/04-10:09:55.629686 44 Options.compression_opts.use_zstd_dict_trainer: true +2025/05/04-10:09:55.629686 44 Options.compression_opts.parallel_threads: 1 +2025/05/04-10:09:55.629687 44 Options.compression_opts.enabled: false +2025/05/04-10:09:55.629687 44 Options.compression_opts.max_dict_buffer_bytes: 0 +2025/05/04-10:09:55.629688 44 Options.level0_file_num_compaction_trigger: 4 +2025/05/04-10:09:55.629689 44 Options.level0_slowdown_writes_trigger: 20 +2025/05/04-10:09:55.629689 44 Options.level0_stop_writes_trigger: 36 +2025/05/04-10:09:55.629690 44 Options.target_file_size_base: 67108864 +2025/05/04-10:09:55.629690 44 Options.target_file_size_multiplier: 1 +2025/05/04-10:09:55.629691 44 Options.max_bytes_for_level_base: 268435456 +2025/05/04-10:09:55.629691 44 Options.level_compaction_dynamic_level_bytes: 1 +2025/05/04-10:09:55.629692 44 Options.max_bytes_for_level_multiplier: 10.000000 +2025/05/04-10:09:55.629693 44 Options.max_bytes_for_level_multiplier_addtl[0]: 1 +2025/05/04-10:09:55.629693 44 Options.max_bytes_for_level_multiplier_addtl[1]: 1 +2025/05/04-10:09:55.629694 44 Options.max_bytes_for_level_multiplier_addtl[2]: 1 +2025/05/04-10:09:55.629694 44 Options.max_bytes_for_level_multiplier_addtl[3]: 1 +2025/05/04-10:09:55.629695 44 Options.max_bytes_for_level_multiplier_addtl[4]: 1 +2025/05/04-10:09:55.629695 44 Options.max_bytes_for_level_multiplier_addtl[5]: 1 +2025/05/04-10:09:55.629696 44 Options.max_bytes_for_level_multiplier_addtl[6]: 1 +2025/05/04-10:09:55.629697 44 Options.max_sequential_skip_in_iterations: 8 +2025/05/04-10:09:55.629697 44 Options.max_compaction_bytes: 1677721600 +2025/05/04-10:09:55.629698 44 Options.arena_block_size: 1048576 +2025/05/04-10:09:55.629699 44 Options.soft_pending_compaction_bytes_limit: 68719476736 +2025/05/04-10:09:55.629700 44 Options.hard_pending_compaction_bytes_limit: 274877906944 +2025/05/04-10:09:55.629700 44 Options.disable_auto_compactions: 0 +2025/05/04-10:09:55.629701 44 Options.compaction_style: kCompactionStyleLevel +2025/05/04-10:09:55.629701 44 Options.compaction_pri: kMinOverlappingRatio +2025/05/04-10:09:55.629702 44 Options.compaction_options_universal.size_ratio: 1 +2025/05/04-10:09:55.629703 44 Options.compaction_options_universal.min_merge_width: 2 +2025/05/04-10:09:55.629703 44 Options.compaction_options_universal.max_merge_width: 4294967295 +2025/05/04-10:09:55.629704 44 Options.compaction_options_universal.max_size_amplification_percent: 200 +2025/05/04-10:09:55.629704 44 Options.compaction_options_universal.compression_size_percent: -1 +2025/05/04-10:09:55.629705 44 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize +2025/05/04-10:09:55.629706 44 Options.compaction_options_universal.max_read_amp: -1 +2025/05/04-10:09:55.629706 44 Options.compaction_options_fifo.max_table_files_size: 1073741824 +2025/05/04-10:09:55.629707 44 Options.compaction_options_fifo.allow_compaction: 0 +2025/05/04-10:09:55.629708 44 Options.table_properties_collectors: +2025/05/04-10:09:55.629791 44 Options.inplace_update_support: 0 +2025/05/04-10:09:55.629796 44 Options.inplace_update_num_locks: 10000 +2025/05/04-10:09:55.629799 44 Options.memtable_prefix_bloom_size_ratio: 0.000000 +2025/05/04-10:09:55.629800 44 Options.memtable_whole_key_filtering: 0 +2025/05/04-10:09:55.629801 44 Options.memtable_huge_page_size: 0 +2025/05/04-10:09:55.629803 44 Options.bloom_locality: 0 +2025/05/04-10:09:55.629804 44 Options.max_successive_merges: 0 +2025/05/04-10:09:55.629805 44 Options.strict_max_successive_merges: 0 +2025/05/04-10:09:55.629806 44 Options.optimize_filters_for_hits: 0 +2025/05/04-10:09:55.629807 44 Options.paranoid_file_checks: 0 +2025/05/04-10:09:55.629808 44 Options.force_consistency_checks: 1 +2025/05/04-10:09:55.629809 44 Options.report_bg_io_stats: 0 +2025/05/04-10:09:55.629810 44 Options.ttl: 2592000 +2025/05/04-10:09:55.629811 44 Options.periodic_compaction_seconds: 0 +2025/05/04-10:09:55.629813 44 Options.default_temperature: kUnknown +2025/05/04-10:09:55.629814 44 Options.preclude_last_level_data_seconds: 0 +2025/05/04-10:09:55.629815 44 Options.preserve_internal_time_seconds: 0 +2025/05/04-10:09:55.629816 44 Options.enable_blob_files: false +2025/05/04-10:09:55.629817 44 Options.min_blob_size: 0 +2025/05/04-10:09:55.629818 44 Options.blob_file_size: 268435456 +2025/05/04-10:09:55.629819 44 Options.blob_compression_type: NoCompression +2025/05/04-10:09:55.629820 44 Options.enable_blob_garbage_collection: false +2025/05/04-10:09:55.629821 44 Options.blob_garbage_collection_age_cutoff: 0.250000 +2025/05/04-10:09:55.629823 44 Options.blob_garbage_collection_force_threshold: 1.000000 +2025/05/04-10:09:55.629824 44 Options.blob_compaction_readahead_size: 0 +2025/05/04-10:09:55.629825 44 Options.blob_file_starting_level: 0 +2025/05/04-10:09:55.629826 44 Options.experimental_mempurge_threshold: 0.000000 +2025/05/04-10:09:55.629827 44 Options.memtable_max_range_deletions: 0 +2025/05/04-10:09:55.672934 44 DB pointer 0xffff99a69c00 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/MANIFEST-000013 b/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/MANIFEST-000013 new file mode 100644 index 0000000000000000000000000000000000000000..7cc75110f58d87b0443786187324a5131b7eec53 Binary files /dev/null and b/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/MANIFEST-000013 differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/OPTIONS-000011 b/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/OPTIONS-000011 new file mode 100644 index 0000000000000000000000000000000000000000..ad2b181add715408dc69839970eebfd4c1a28b4b --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/OPTIONS-000011 @@ -0,0 +1,670 @@ +# This is a RocksDB option file. +# +# For detailed file format spec, please refer to the example file +# in examples/rocksdb_option_file_example.ini +# + +[Version] + rocksdb_version=9.9.3 + options_file_version=1.1 + +[DBOptions] + compaction_readahead_size=2097152 + strict_bytes_per_sync=false + bytes_per_sync=0 + max_background_jobs=2 + avoid_flush_during_shutdown=false + max_background_flushes=-1 + delayed_write_rate=16777216 + max_open_files=256 + max_subcompactions=1 + writable_file_max_buffer_size=1048576 + wal_bytes_per_sync=0 + max_background_compactions=-1 + max_total_wal_size=0 + delete_obsolete_files_period_micros=180000000 + stats_dump_period_sec=600 + stats_history_buffer_size=1048576 + stats_persist_period_sec=600 + follower_refresh_catchup_period_ms=10000 + enforce_single_del_contracts=true + lowest_used_cache_tier=kNonVolatileBlockTier + bgerror_resume_retry_interval=1000000 + metadata_write_temperature=kUnknown + best_efforts_recovery=false + log_readahead_size=0 + write_identity_file=true + write_dbid_to_manifest=true + prefix_seek_opt_in_only=false + wal_compression=kNoCompression + manual_wal_flush=false + db_host_id=__hostname__ + two_write_queues=false + random_access_max_buffer_size=1048576 + avoid_unnecessary_blocking_io=false + skip_checking_sst_file_sizes_on_db_open=false + flush_verify_memtable_count=true + fail_if_options_file_error=true + atomic_flush=false + verify_sst_unique_id_in_manifest=true + skip_stats_update_on_db_open=false + track_and_verify_wals_in_manifest=false + compaction_verify_record_count=true + paranoid_checks=true + create_if_missing=true + max_write_batch_group_size_bytes=1048576 + follower_catchup_retry_count=10 + avoid_flush_during_recovery=false + file_checksum_gen_factory=nullptr + enable_thread_tracking=false + allow_fallocate=true + allow_data_in_errors=false + error_if_exists=false + use_direct_io_for_flush_and_compaction=false + background_close_inactive_wals=false + create_missing_column_families=true + WAL_size_limit_MB=0 + use_direct_reads=false + persist_stats_to_disk=false + allow_2pc=false + is_fd_close_on_exec=true + max_log_file_size=1048576 + max_file_opening_threads=16 + wal_filter=nullptr + wal_write_temperature=kUnknown + follower_catchup_retry_wait_ms=100 + allow_mmap_reads=false + allow_mmap_writes=false + use_adaptive_mutex=false + use_fsync=false + table_cache_numshardbits=6 + dump_malloc_stats=false + db_write_buffer_size=0 + allow_ingest_behind=false + keep_log_file_num=1 + max_bgerror_resume_count=2147483647 + allow_concurrent_memtable_write=true + recycle_log_file_num=0 + log_file_time_to_roll=0 + manifest_preallocation_size=4194304 + enable_write_thread_adaptive_yield=true + WAL_ttl_seconds=0 + max_manifest_file_size=1073741824 + wal_recovery_mode=kTolerateCorruptedTailRecords + enable_pipelined_write=false + write_thread_slow_yield_usec=3 + unordered_write=false + write_thread_max_yield_usec=100 + advise_random_on_open=true + info_log_level=ERROR_LEVEL + + +[CFOptions "default"] + memtable_max_range_deletions=0 + compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_memory_checks=false + block_protection_bytes_per_key=0 + uncache_aggressiveness=0 + bottommost_file_compaction_delay=0 + memtable_protection_bytes_per_key=0 + experimental_mempurge_threshold=0.000000 + bottommost_compression=kDisableCompressionOption + sample_for_compression=0 + prepopulate_blob_cache=kDisable + blob_file_starting_level=0 + blob_compaction_readahead_size=0 + table_factory=BlockBasedTable + max_successive_merges=0 + max_write_buffer_number=2 + prefix_extractor=nullptr + memtable_huge_page_size=0 + write_buffer_size=10485760 + strict_max_successive_merges=false + arena_block_size=1048576 + level0_file_num_compaction_trigger=4 + report_bg_io_stats=false + inplace_update_num_locks=10000 + memtable_prefix_bloom_size_ratio=0.000000 + level0_stop_writes_trigger=36 + blob_compression_type=kNoCompression + level0_slowdown_writes_trigger=20 + hard_pending_compaction_bytes_limit=274877906944 + target_file_size_multiplier=1 + bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_file_checks=false + blob_garbage_collection_force_threshold=1.000000 + enable_blob_files=false + soft_pending_compaction_bytes_limit=68719476736 + target_file_size_base=67108864 + max_compaction_bytes=1677721600 + disable_auto_compactions=false + min_blob_size=0 + memtable_whole_key_filtering=false + max_bytes_for_level_base=268435456 + last_level_temperature=kUnknown + preserve_internal_time_seconds=0 + compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} + max_bytes_for_level_multiplier=10.000000 + max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 + max_sequential_skip_in_iterations=8 + compression=kLZ4Compression + default_write_temperature=kUnknown + compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} + blob_garbage_collection_age_cutoff=0.250000 + ttl=2592000 + periodic_compaction_seconds=0 + preclude_last_level_data_seconds=0 + blob_file_size=268435456 + enable_blob_garbage_collection=false + persist_user_defined_timestamps=true + compaction_pri=kMinOverlappingRatio + compaction_filter_factory=nullptr + comparator=leveldb.BytewiseComparator + bloom_locality=0 + merge_operator=nullptr + compaction_filter=nullptr + level_compaction_dynamic_level_bytes=true + optimize_filters_for_hits=false + inplace_update_support=false + max_write_buffer_number_to_maintain=0 + max_write_buffer_size_to_maintain=0 + sst_partitioner_factory=nullptr + default_temperature=kUnknown + compaction_style=kCompactionStyleLevel + min_write_buffer_number_to_merge=1 + memtable_factory=SkipListFactory + memtable_insert_with_hint_prefix_extractor=nullptr + force_consistency_checks=true + num_levels=7 + +[TableOptions/BlockBasedTable "default"] + num_file_reads_for_auto_readahead=2 + initial_auto_readahead_size=8192 + metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} + enable_index_compression=true + verify_compression=false + prepopulate_block_cache=kDisable + format_version=6 + use_delta_encoding=true + pin_top_level_index_and_filter=true + read_amp_bytes_per_bit=0 + decouple_partitioned_filters=false + partition_filters=false + metadata_block_size=4096 + max_auto_readahead_size=262144 + index_block_restart_interval=1 + block_size_deviation=10 + block_size=4096 + detect_filter_construct_corruption=false + no_block_cache=false + checksum=kXXH3 + filter_policy=nullptr + data_block_hash_table_util_ratio=0.750000 + block_restart_interval=16 + index_type=kBinarySearch + pin_l0_filter_and_index_blocks_in_cache=false + data_block_index_type=kDataBlockBinarySearch + cache_index_and_filter_blocks_with_high_priority=true + whole_key_filtering=true + index_shortening=kShortenSeparators + cache_index_and_filter_blocks=false + block_align=false + optimize_filters_for_memory=true + flush_block_policy_factory=FlushBlockBySizePolicyFactory + + +[CFOptions "payload"] + memtable_max_range_deletions=0 + compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_memory_checks=false + block_protection_bytes_per_key=0 + uncache_aggressiveness=0 + bottommost_file_compaction_delay=0 + memtable_protection_bytes_per_key=0 + experimental_mempurge_threshold=0.000000 + bottommost_compression=kDisableCompressionOption + sample_for_compression=0 + prepopulate_blob_cache=kDisable + blob_file_starting_level=0 + blob_compaction_readahead_size=0 + table_factory=BlockBasedTable + max_successive_merges=0 + max_write_buffer_number=2 + prefix_extractor=nullptr + memtable_huge_page_size=0 + write_buffer_size=10485760 + strict_max_successive_merges=false + arena_block_size=1048576 + level0_file_num_compaction_trigger=4 + report_bg_io_stats=false + inplace_update_num_locks=10000 + memtable_prefix_bloom_size_ratio=0.000000 + level0_stop_writes_trigger=36 + blob_compression_type=kNoCompression + level0_slowdown_writes_trigger=20 + hard_pending_compaction_bytes_limit=274877906944 + target_file_size_multiplier=1 + bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_file_checks=false + blob_garbage_collection_force_threshold=1.000000 + enable_blob_files=false + soft_pending_compaction_bytes_limit=68719476736 + target_file_size_base=67108864 + max_compaction_bytes=1677721600 + disable_auto_compactions=false + min_blob_size=0 + memtable_whole_key_filtering=false + max_bytes_for_level_base=268435456 + last_level_temperature=kUnknown + preserve_internal_time_seconds=0 + compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} + max_bytes_for_level_multiplier=10.000000 + max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 + max_sequential_skip_in_iterations=8 + compression=kLZ4Compression + default_write_temperature=kUnknown + compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} + blob_garbage_collection_age_cutoff=0.250000 + ttl=2592000 + periodic_compaction_seconds=0 + preclude_last_level_data_seconds=0 + blob_file_size=268435456 + enable_blob_garbage_collection=false + persist_user_defined_timestamps=true + compaction_pri=kMinOverlappingRatio + compaction_filter_factory=nullptr + comparator=leveldb.BytewiseComparator + bloom_locality=0 + merge_operator=nullptr + compaction_filter=nullptr + level_compaction_dynamic_level_bytes=true + optimize_filters_for_hits=false + inplace_update_support=false + max_write_buffer_number_to_maintain=0 + max_write_buffer_size_to_maintain=0 + sst_partitioner_factory=nullptr + default_temperature=kUnknown + compaction_style=kCompactionStyleLevel + min_write_buffer_number_to_merge=1 + memtable_factory=SkipListFactory + memtable_insert_with_hint_prefix_extractor=nullptr + force_consistency_checks=true + num_levels=7 + +[TableOptions/BlockBasedTable "payload"] + num_file_reads_for_auto_readahead=2 + initial_auto_readahead_size=8192 + metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} + enable_index_compression=true + verify_compression=false + prepopulate_block_cache=kDisable + format_version=6 + use_delta_encoding=true + pin_top_level_index_and_filter=true + read_amp_bytes_per_bit=0 + decouple_partitioned_filters=false + partition_filters=false + metadata_block_size=4096 + max_auto_readahead_size=262144 + index_block_restart_interval=1 + block_size_deviation=10 + block_size=4096 + detect_filter_construct_corruption=false + no_block_cache=false + checksum=kXXH3 + filter_policy=nullptr + data_block_hash_table_util_ratio=0.750000 + block_restart_interval=16 + index_type=kBinarySearch + pin_l0_filter_and_index_blocks_in_cache=false + data_block_index_type=kDataBlockBinarySearch + cache_index_and_filter_blocks_with_high_priority=true + whole_key_filtering=true + index_shortening=kShortenSeparators + cache_index_and_filter_blocks=false + block_align=false + optimize_filters_for_memory=true + flush_block_policy_factory=FlushBlockBySizePolicyFactory + + +[CFOptions "mapping"] + memtable_max_range_deletions=0 + compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_memory_checks=false + block_protection_bytes_per_key=0 + uncache_aggressiveness=0 + bottommost_file_compaction_delay=0 + memtable_protection_bytes_per_key=0 + experimental_mempurge_threshold=0.000000 + bottommost_compression=kDisableCompressionOption + sample_for_compression=0 + prepopulate_blob_cache=kDisable + blob_file_starting_level=0 + blob_compaction_readahead_size=0 + table_factory=BlockBasedTable + max_successive_merges=0 + max_write_buffer_number=2 + prefix_extractor=nullptr + memtable_huge_page_size=0 + write_buffer_size=10485760 + strict_max_successive_merges=false + arena_block_size=1048576 + level0_file_num_compaction_trigger=4 + report_bg_io_stats=false + inplace_update_num_locks=10000 + memtable_prefix_bloom_size_ratio=0.000000 + level0_stop_writes_trigger=36 + blob_compression_type=kNoCompression + level0_slowdown_writes_trigger=20 + hard_pending_compaction_bytes_limit=274877906944 + target_file_size_multiplier=1 + bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_file_checks=false + blob_garbage_collection_force_threshold=1.000000 + enable_blob_files=false + soft_pending_compaction_bytes_limit=68719476736 + target_file_size_base=67108864 + max_compaction_bytes=1677721600 + disable_auto_compactions=false + min_blob_size=0 + memtable_whole_key_filtering=false + max_bytes_for_level_base=268435456 + last_level_temperature=kUnknown + preserve_internal_time_seconds=0 + compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} + max_bytes_for_level_multiplier=10.000000 + max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 + max_sequential_skip_in_iterations=8 + compression=kLZ4Compression + default_write_temperature=kUnknown + compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} + blob_garbage_collection_age_cutoff=0.250000 + ttl=2592000 + periodic_compaction_seconds=0 + preclude_last_level_data_seconds=0 + blob_file_size=268435456 + enable_blob_garbage_collection=false + persist_user_defined_timestamps=true + compaction_pri=kMinOverlappingRatio + compaction_filter_factory=nullptr + comparator=leveldb.BytewiseComparator + bloom_locality=0 + merge_operator=nullptr + compaction_filter=nullptr + level_compaction_dynamic_level_bytes=true + optimize_filters_for_hits=false + inplace_update_support=false + max_write_buffer_number_to_maintain=0 + max_write_buffer_size_to_maintain=0 + sst_partitioner_factory=nullptr + default_temperature=kUnknown + compaction_style=kCompactionStyleLevel + min_write_buffer_number_to_merge=1 + memtable_factory=SkipListFactory + memtable_insert_with_hint_prefix_extractor=nullptr + force_consistency_checks=true + num_levels=7 + +[TableOptions/BlockBasedTable "mapping"] + num_file_reads_for_auto_readahead=2 + initial_auto_readahead_size=8192 + metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} + enable_index_compression=true + verify_compression=false + prepopulate_block_cache=kDisable + format_version=6 + use_delta_encoding=true + pin_top_level_index_and_filter=true + read_amp_bytes_per_bit=0 + decouple_partitioned_filters=false + partition_filters=false + metadata_block_size=4096 + max_auto_readahead_size=262144 + index_block_restart_interval=1 + block_size_deviation=10 + block_size=4096 + detect_filter_construct_corruption=false + no_block_cache=false + checksum=kXXH3 + filter_policy=nullptr + data_block_hash_table_util_ratio=0.750000 + block_restart_interval=16 + index_type=kBinarySearch + pin_l0_filter_and_index_blocks_in_cache=false + data_block_index_type=kDataBlockBinarySearch + cache_index_and_filter_blocks_with_high_priority=true + whole_key_filtering=true + index_shortening=kShortenSeparators + cache_index_and_filter_blocks=false + block_align=false + optimize_filters_for_memory=true + flush_block_policy_factory=FlushBlockBySizePolicyFactory + + +[CFOptions "version"] + memtable_max_range_deletions=0 + compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_memory_checks=false + block_protection_bytes_per_key=0 + uncache_aggressiveness=0 + bottommost_file_compaction_delay=0 + memtable_protection_bytes_per_key=0 + experimental_mempurge_threshold=0.000000 + bottommost_compression=kDisableCompressionOption + sample_for_compression=0 + prepopulate_blob_cache=kDisable + blob_file_starting_level=0 + blob_compaction_readahead_size=0 + table_factory=BlockBasedTable + max_successive_merges=0 + max_write_buffer_number=2 + prefix_extractor=nullptr + memtable_huge_page_size=0 + write_buffer_size=10485760 + strict_max_successive_merges=false + arena_block_size=1048576 + level0_file_num_compaction_trigger=4 + report_bg_io_stats=false + inplace_update_num_locks=10000 + memtable_prefix_bloom_size_ratio=0.000000 + level0_stop_writes_trigger=36 + blob_compression_type=kNoCompression + level0_slowdown_writes_trigger=20 + hard_pending_compaction_bytes_limit=274877906944 + target_file_size_multiplier=1 + bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_file_checks=false + blob_garbage_collection_force_threshold=1.000000 + enable_blob_files=false + soft_pending_compaction_bytes_limit=68719476736 + target_file_size_base=67108864 + max_compaction_bytes=1677721600 + disable_auto_compactions=false + min_blob_size=0 + memtable_whole_key_filtering=false + max_bytes_for_level_base=268435456 + last_level_temperature=kUnknown + preserve_internal_time_seconds=0 + compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} + max_bytes_for_level_multiplier=10.000000 + max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 + max_sequential_skip_in_iterations=8 + compression=kLZ4Compression + default_write_temperature=kUnknown + compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} + blob_garbage_collection_age_cutoff=0.250000 + ttl=2592000 + periodic_compaction_seconds=0 + preclude_last_level_data_seconds=0 + blob_file_size=268435456 + enable_blob_garbage_collection=false + persist_user_defined_timestamps=true + compaction_pri=kMinOverlappingRatio + compaction_filter_factory=nullptr + comparator=leveldb.BytewiseComparator + bloom_locality=0 + merge_operator=nullptr + compaction_filter=nullptr + level_compaction_dynamic_level_bytes=true + optimize_filters_for_hits=false + inplace_update_support=false + max_write_buffer_number_to_maintain=0 + max_write_buffer_size_to_maintain=0 + sst_partitioner_factory=nullptr + default_temperature=kUnknown + compaction_style=kCompactionStyleLevel + min_write_buffer_number_to_merge=1 + memtable_factory=SkipListFactory + memtable_insert_with_hint_prefix_extractor=nullptr + force_consistency_checks=true + num_levels=7 + +[TableOptions/BlockBasedTable "version"] + num_file_reads_for_auto_readahead=2 + initial_auto_readahead_size=8192 + metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} + enable_index_compression=true + verify_compression=false + prepopulate_block_cache=kDisable + format_version=6 + use_delta_encoding=true + pin_top_level_index_and_filter=true + read_amp_bytes_per_bit=0 + decouple_partitioned_filters=false + partition_filters=false + metadata_block_size=4096 + max_auto_readahead_size=262144 + index_block_restart_interval=1 + block_size_deviation=10 + block_size=4096 + detect_filter_construct_corruption=false + no_block_cache=false + checksum=kXXH3 + filter_policy=nullptr + data_block_hash_table_util_ratio=0.750000 + block_restart_interval=16 + index_type=kBinarySearch + pin_l0_filter_and_index_blocks_in_cache=false + data_block_index_type=kDataBlockBinarySearch + cache_index_and_filter_blocks_with_high_priority=true + whole_key_filtering=true + index_shortening=kShortenSeparators + cache_index_and_filter_blocks=false + block_align=false + optimize_filters_for_memory=true + flush_block_policy_factory=FlushBlockBySizePolicyFactory + + +[CFOptions "vector"] + memtable_max_range_deletions=0 + compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_memory_checks=false + block_protection_bytes_per_key=0 + uncache_aggressiveness=0 + bottommost_file_compaction_delay=0 + memtable_protection_bytes_per_key=0 + experimental_mempurge_threshold=0.000000 + bottommost_compression=kDisableCompressionOption + sample_for_compression=0 + prepopulate_blob_cache=kDisable + blob_file_starting_level=0 + blob_compaction_readahead_size=0 + table_factory=BlockBasedTable + max_successive_merges=0 + max_write_buffer_number=2 + prefix_extractor=nullptr + memtable_huge_page_size=0 + write_buffer_size=10485760 + strict_max_successive_merges=false + arena_block_size=1048576 + level0_file_num_compaction_trigger=4 + report_bg_io_stats=false + inplace_update_num_locks=10000 + memtable_prefix_bloom_size_ratio=0.000000 + level0_stop_writes_trigger=36 + blob_compression_type=kNoCompression + level0_slowdown_writes_trigger=20 + hard_pending_compaction_bytes_limit=274877906944 + target_file_size_multiplier=1 + bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_file_checks=false + blob_garbage_collection_force_threshold=1.000000 + enable_blob_files=false + soft_pending_compaction_bytes_limit=68719476736 + target_file_size_base=67108864 + max_compaction_bytes=1677721600 + disable_auto_compactions=false + min_blob_size=0 + memtable_whole_key_filtering=false + max_bytes_for_level_base=268435456 + last_level_temperature=kUnknown + preserve_internal_time_seconds=0 + compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} + max_bytes_for_level_multiplier=10.000000 + max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 + max_sequential_skip_in_iterations=8 + compression=kLZ4Compression + default_write_temperature=kUnknown + compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} + blob_garbage_collection_age_cutoff=0.250000 + ttl=2592000 + periodic_compaction_seconds=0 + preclude_last_level_data_seconds=0 + blob_file_size=268435456 + enable_blob_garbage_collection=false + persist_user_defined_timestamps=true + compaction_pri=kMinOverlappingRatio + compaction_filter_factory=nullptr + comparator=leveldb.BytewiseComparator + bloom_locality=0 + merge_operator=nullptr + compaction_filter=nullptr + level_compaction_dynamic_level_bytes=true + optimize_filters_for_hits=false + inplace_update_support=false + max_write_buffer_number_to_maintain=0 + max_write_buffer_size_to_maintain=0 + sst_partitioner_factory=nullptr + default_temperature=kUnknown + compaction_style=kCompactionStyleLevel + min_write_buffer_number_to_merge=1 + memtable_factory=SkipListFactory + memtable_insert_with_hint_prefix_extractor=nullptr + force_consistency_checks=true + num_levels=7 + +[TableOptions/BlockBasedTable "vector"] + num_file_reads_for_auto_readahead=2 + initial_auto_readahead_size=8192 + metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} + enable_index_compression=true + verify_compression=false + prepopulate_block_cache=kDisable + format_version=6 + use_delta_encoding=true + pin_top_level_index_and_filter=true + read_amp_bytes_per_bit=0 + decouple_partitioned_filters=false + partition_filters=false + metadata_block_size=4096 + max_auto_readahead_size=262144 + index_block_restart_interval=1 + block_size_deviation=10 + block_size=4096 + detect_filter_construct_corruption=false + no_block_cache=false + checksum=kXXH3 + filter_policy=nullptr + data_block_hash_table_util_ratio=0.750000 + block_restart_interval=16 + index_type=kBinarySearch + pin_l0_filter_and_index_blocks_in_cache=false + data_block_index_type=kDataBlockBinarySearch + cache_index_and_filter_blocks_with_high_priority=true + whole_key_filtering=true + index_shortening=kShortenSeparators + cache_index_and_filter_blocks=false + block_align=false + optimize_filters_for_memory=true + flush_block_policy_factory=FlushBlockBySizePolicyFactory + diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/OPTIONS-000015 b/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/OPTIONS-000015 new file mode 100644 index 0000000000000000000000000000000000000000..ad2b181add715408dc69839970eebfd4c1a28b4b --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/OPTIONS-000015 @@ -0,0 +1,670 @@ +# This is a RocksDB option file. +# +# For detailed file format spec, please refer to the example file +# in examples/rocksdb_option_file_example.ini +# + +[Version] + rocksdb_version=9.9.3 + options_file_version=1.1 + +[DBOptions] + compaction_readahead_size=2097152 + strict_bytes_per_sync=false + bytes_per_sync=0 + max_background_jobs=2 + avoid_flush_during_shutdown=false + max_background_flushes=-1 + delayed_write_rate=16777216 + max_open_files=256 + max_subcompactions=1 + writable_file_max_buffer_size=1048576 + wal_bytes_per_sync=0 + max_background_compactions=-1 + max_total_wal_size=0 + delete_obsolete_files_period_micros=180000000 + stats_dump_period_sec=600 + stats_history_buffer_size=1048576 + stats_persist_period_sec=600 + follower_refresh_catchup_period_ms=10000 + enforce_single_del_contracts=true + lowest_used_cache_tier=kNonVolatileBlockTier + bgerror_resume_retry_interval=1000000 + metadata_write_temperature=kUnknown + best_efforts_recovery=false + log_readahead_size=0 + write_identity_file=true + write_dbid_to_manifest=true + prefix_seek_opt_in_only=false + wal_compression=kNoCompression + manual_wal_flush=false + db_host_id=__hostname__ + two_write_queues=false + random_access_max_buffer_size=1048576 + avoid_unnecessary_blocking_io=false + skip_checking_sst_file_sizes_on_db_open=false + flush_verify_memtable_count=true + fail_if_options_file_error=true + atomic_flush=false + verify_sst_unique_id_in_manifest=true + skip_stats_update_on_db_open=false + track_and_verify_wals_in_manifest=false + compaction_verify_record_count=true + paranoid_checks=true + create_if_missing=true + max_write_batch_group_size_bytes=1048576 + follower_catchup_retry_count=10 + avoid_flush_during_recovery=false + file_checksum_gen_factory=nullptr + enable_thread_tracking=false + allow_fallocate=true + allow_data_in_errors=false + error_if_exists=false + use_direct_io_for_flush_and_compaction=false + background_close_inactive_wals=false + create_missing_column_families=true + WAL_size_limit_MB=0 + use_direct_reads=false + persist_stats_to_disk=false + allow_2pc=false + is_fd_close_on_exec=true + max_log_file_size=1048576 + max_file_opening_threads=16 + wal_filter=nullptr + wal_write_temperature=kUnknown + follower_catchup_retry_wait_ms=100 + allow_mmap_reads=false + allow_mmap_writes=false + use_adaptive_mutex=false + use_fsync=false + table_cache_numshardbits=6 + dump_malloc_stats=false + db_write_buffer_size=0 + allow_ingest_behind=false + keep_log_file_num=1 + max_bgerror_resume_count=2147483647 + allow_concurrent_memtable_write=true + recycle_log_file_num=0 + log_file_time_to_roll=0 + manifest_preallocation_size=4194304 + enable_write_thread_adaptive_yield=true + WAL_ttl_seconds=0 + max_manifest_file_size=1073741824 + wal_recovery_mode=kTolerateCorruptedTailRecords + enable_pipelined_write=false + write_thread_slow_yield_usec=3 + unordered_write=false + write_thread_max_yield_usec=100 + advise_random_on_open=true + info_log_level=ERROR_LEVEL + + +[CFOptions "default"] + memtable_max_range_deletions=0 + compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_memory_checks=false + block_protection_bytes_per_key=0 + uncache_aggressiveness=0 + bottommost_file_compaction_delay=0 + memtable_protection_bytes_per_key=0 + experimental_mempurge_threshold=0.000000 + bottommost_compression=kDisableCompressionOption + sample_for_compression=0 + prepopulate_blob_cache=kDisable + blob_file_starting_level=0 + blob_compaction_readahead_size=0 + table_factory=BlockBasedTable + max_successive_merges=0 + max_write_buffer_number=2 + prefix_extractor=nullptr + memtable_huge_page_size=0 + write_buffer_size=10485760 + strict_max_successive_merges=false + arena_block_size=1048576 + level0_file_num_compaction_trigger=4 + report_bg_io_stats=false + inplace_update_num_locks=10000 + memtable_prefix_bloom_size_ratio=0.000000 + level0_stop_writes_trigger=36 + blob_compression_type=kNoCompression + level0_slowdown_writes_trigger=20 + hard_pending_compaction_bytes_limit=274877906944 + target_file_size_multiplier=1 + bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_file_checks=false + blob_garbage_collection_force_threshold=1.000000 + enable_blob_files=false + soft_pending_compaction_bytes_limit=68719476736 + target_file_size_base=67108864 + max_compaction_bytes=1677721600 + disable_auto_compactions=false + min_blob_size=0 + memtable_whole_key_filtering=false + max_bytes_for_level_base=268435456 + last_level_temperature=kUnknown + preserve_internal_time_seconds=0 + compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} + max_bytes_for_level_multiplier=10.000000 + max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 + max_sequential_skip_in_iterations=8 + compression=kLZ4Compression + default_write_temperature=kUnknown + compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} + blob_garbage_collection_age_cutoff=0.250000 + ttl=2592000 + periodic_compaction_seconds=0 + preclude_last_level_data_seconds=0 + blob_file_size=268435456 + enable_blob_garbage_collection=false + persist_user_defined_timestamps=true + compaction_pri=kMinOverlappingRatio + compaction_filter_factory=nullptr + comparator=leveldb.BytewiseComparator + bloom_locality=0 + merge_operator=nullptr + compaction_filter=nullptr + level_compaction_dynamic_level_bytes=true + optimize_filters_for_hits=false + inplace_update_support=false + max_write_buffer_number_to_maintain=0 + max_write_buffer_size_to_maintain=0 + sst_partitioner_factory=nullptr + default_temperature=kUnknown + compaction_style=kCompactionStyleLevel + min_write_buffer_number_to_merge=1 + memtable_factory=SkipListFactory + memtable_insert_with_hint_prefix_extractor=nullptr + force_consistency_checks=true + num_levels=7 + +[TableOptions/BlockBasedTable "default"] + num_file_reads_for_auto_readahead=2 + initial_auto_readahead_size=8192 + metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} + enable_index_compression=true + verify_compression=false + prepopulate_block_cache=kDisable + format_version=6 + use_delta_encoding=true + pin_top_level_index_and_filter=true + read_amp_bytes_per_bit=0 + decouple_partitioned_filters=false + partition_filters=false + metadata_block_size=4096 + max_auto_readahead_size=262144 + index_block_restart_interval=1 + block_size_deviation=10 + block_size=4096 + detect_filter_construct_corruption=false + no_block_cache=false + checksum=kXXH3 + filter_policy=nullptr + data_block_hash_table_util_ratio=0.750000 + block_restart_interval=16 + index_type=kBinarySearch + pin_l0_filter_and_index_blocks_in_cache=false + data_block_index_type=kDataBlockBinarySearch + cache_index_and_filter_blocks_with_high_priority=true + whole_key_filtering=true + index_shortening=kShortenSeparators + cache_index_and_filter_blocks=false + block_align=false + optimize_filters_for_memory=true + flush_block_policy_factory=FlushBlockBySizePolicyFactory + + +[CFOptions "payload"] + memtable_max_range_deletions=0 + compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_memory_checks=false + block_protection_bytes_per_key=0 + uncache_aggressiveness=0 + bottommost_file_compaction_delay=0 + memtable_protection_bytes_per_key=0 + experimental_mempurge_threshold=0.000000 + bottommost_compression=kDisableCompressionOption + sample_for_compression=0 + prepopulate_blob_cache=kDisable + blob_file_starting_level=0 + blob_compaction_readahead_size=0 + table_factory=BlockBasedTable + max_successive_merges=0 + max_write_buffer_number=2 + prefix_extractor=nullptr + memtable_huge_page_size=0 + write_buffer_size=10485760 + strict_max_successive_merges=false + arena_block_size=1048576 + level0_file_num_compaction_trigger=4 + report_bg_io_stats=false + inplace_update_num_locks=10000 + memtable_prefix_bloom_size_ratio=0.000000 + level0_stop_writes_trigger=36 + blob_compression_type=kNoCompression + level0_slowdown_writes_trigger=20 + hard_pending_compaction_bytes_limit=274877906944 + target_file_size_multiplier=1 + bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_file_checks=false + blob_garbage_collection_force_threshold=1.000000 + enable_blob_files=false + soft_pending_compaction_bytes_limit=68719476736 + target_file_size_base=67108864 + max_compaction_bytes=1677721600 + disable_auto_compactions=false + min_blob_size=0 + memtable_whole_key_filtering=false + max_bytes_for_level_base=268435456 + last_level_temperature=kUnknown + preserve_internal_time_seconds=0 + compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} + max_bytes_for_level_multiplier=10.000000 + max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 + max_sequential_skip_in_iterations=8 + compression=kLZ4Compression + default_write_temperature=kUnknown + compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} + blob_garbage_collection_age_cutoff=0.250000 + ttl=2592000 + periodic_compaction_seconds=0 + preclude_last_level_data_seconds=0 + blob_file_size=268435456 + enable_blob_garbage_collection=false + persist_user_defined_timestamps=true + compaction_pri=kMinOverlappingRatio + compaction_filter_factory=nullptr + comparator=leveldb.BytewiseComparator + bloom_locality=0 + merge_operator=nullptr + compaction_filter=nullptr + level_compaction_dynamic_level_bytes=true + optimize_filters_for_hits=false + inplace_update_support=false + max_write_buffer_number_to_maintain=0 + max_write_buffer_size_to_maintain=0 + sst_partitioner_factory=nullptr + default_temperature=kUnknown + compaction_style=kCompactionStyleLevel + min_write_buffer_number_to_merge=1 + memtable_factory=SkipListFactory + memtable_insert_with_hint_prefix_extractor=nullptr + force_consistency_checks=true + num_levels=7 + +[TableOptions/BlockBasedTable "payload"] + num_file_reads_for_auto_readahead=2 + initial_auto_readahead_size=8192 + metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} + enable_index_compression=true + verify_compression=false + prepopulate_block_cache=kDisable + format_version=6 + use_delta_encoding=true + pin_top_level_index_and_filter=true + read_amp_bytes_per_bit=0 + decouple_partitioned_filters=false + partition_filters=false + metadata_block_size=4096 + max_auto_readahead_size=262144 + index_block_restart_interval=1 + block_size_deviation=10 + block_size=4096 + detect_filter_construct_corruption=false + no_block_cache=false + checksum=kXXH3 + filter_policy=nullptr + data_block_hash_table_util_ratio=0.750000 + block_restart_interval=16 + index_type=kBinarySearch + pin_l0_filter_and_index_blocks_in_cache=false + data_block_index_type=kDataBlockBinarySearch + cache_index_and_filter_blocks_with_high_priority=true + whole_key_filtering=true + index_shortening=kShortenSeparators + cache_index_and_filter_blocks=false + block_align=false + optimize_filters_for_memory=true + flush_block_policy_factory=FlushBlockBySizePolicyFactory + + +[CFOptions "mapping"] + memtable_max_range_deletions=0 + compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_memory_checks=false + block_protection_bytes_per_key=0 + uncache_aggressiveness=0 + bottommost_file_compaction_delay=0 + memtable_protection_bytes_per_key=0 + experimental_mempurge_threshold=0.000000 + bottommost_compression=kDisableCompressionOption + sample_for_compression=0 + prepopulate_blob_cache=kDisable + blob_file_starting_level=0 + blob_compaction_readahead_size=0 + table_factory=BlockBasedTable + max_successive_merges=0 + max_write_buffer_number=2 + prefix_extractor=nullptr + memtable_huge_page_size=0 + write_buffer_size=10485760 + strict_max_successive_merges=false + arena_block_size=1048576 + level0_file_num_compaction_trigger=4 + report_bg_io_stats=false + inplace_update_num_locks=10000 + memtable_prefix_bloom_size_ratio=0.000000 + level0_stop_writes_trigger=36 + blob_compression_type=kNoCompression + level0_slowdown_writes_trigger=20 + hard_pending_compaction_bytes_limit=274877906944 + target_file_size_multiplier=1 + bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_file_checks=false + blob_garbage_collection_force_threshold=1.000000 + enable_blob_files=false + soft_pending_compaction_bytes_limit=68719476736 + target_file_size_base=67108864 + max_compaction_bytes=1677721600 + disable_auto_compactions=false + min_blob_size=0 + memtable_whole_key_filtering=false + max_bytes_for_level_base=268435456 + last_level_temperature=kUnknown + preserve_internal_time_seconds=0 + compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} + max_bytes_for_level_multiplier=10.000000 + max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 + max_sequential_skip_in_iterations=8 + compression=kLZ4Compression + default_write_temperature=kUnknown + compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} + blob_garbage_collection_age_cutoff=0.250000 + ttl=2592000 + periodic_compaction_seconds=0 + preclude_last_level_data_seconds=0 + blob_file_size=268435456 + enable_blob_garbage_collection=false + persist_user_defined_timestamps=true + compaction_pri=kMinOverlappingRatio + compaction_filter_factory=nullptr + comparator=leveldb.BytewiseComparator + bloom_locality=0 + merge_operator=nullptr + compaction_filter=nullptr + level_compaction_dynamic_level_bytes=true + optimize_filters_for_hits=false + inplace_update_support=false + max_write_buffer_number_to_maintain=0 + max_write_buffer_size_to_maintain=0 + sst_partitioner_factory=nullptr + default_temperature=kUnknown + compaction_style=kCompactionStyleLevel + min_write_buffer_number_to_merge=1 + memtable_factory=SkipListFactory + memtable_insert_with_hint_prefix_extractor=nullptr + force_consistency_checks=true + num_levels=7 + +[TableOptions/BlockBasedTable "mapping"] + num_file_reads_for_auto_readahead=2 + initial_auto_readahead_size=8192 + metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} + enable_index_compression=true + verify_compression=false + prepopulate_block_cache=kDisable + format_version=6 + use_delta_encoding=true + pin_top_level_index_and_filter=true + read_amp_bytes_per_bit=0 + decouple_partitioned_filters=false + partition_filters=false + metadata_block_size=4096 + max_auto_readahead_size=262144 + index_block_restart_interval=1 + block_size_deviation=10 + block_size=4096 + detect_filter_construct_corruption=false + no_block_cache=false + checksum=kXXH3 + filter_policy=nullptr + data_block_hash_table_util_ratio=0.750000 + block_restart_interval=16 + index_type=kBinarySearch + pin_l0_filter_and_index_blocks_in_cache=false + data_block_index_type=kDataBlockBinarySearch + cache_index_and_filter_blocks_with_high_priority=true + whole_key_filtering=true + index_shortening=kShortenSeparators + cache_index_and_filter_blocks=false + block_align=false + optimize_filters_for_memory=true + flush_block_policy_factory=FlushBlockBySizePolicyFactory + + +[CFOptions "version"] + memtable_max_range_deletions=0 + compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_memory_checks=false + block_protection_bytes_per_key=0 + uncache_aggressiveness=0 + bottommost_file_compaction_delay=0 + memtable_protection_bytes_per_key=0 + experimental_mempurge_threshold=0.000000 + bottommost_compression=kDisableCompressionOption + sample_for_compression=0 + prepopulate_blob_cache=kDisable + blob_file_starting_level=0 + blob_compaction_readahead_size=0 + table_factory=BlockBasedTable + max_successive_merges=0 + max_write_buffer_number=2 + prefix_extractor=nullptr + memtable_huge_page_size=0 + write_buffer_size=10485760 + strict_max_successive_merges=false + arena_block_size=1048576 + level0_file_num_compaction_trigger=4 + report_bg_io_stats=false + inplace_update_num_locks=10000 + memtable_prefix_bloom_size_ratio=0.000000 + level0_stop_writes_trigger=36 + blob_compression_type=kNoCompression + level0_slowdown_writes_trigger=20 + hard_pending_compaction_bytes_limit=274877906944 + target_file_size_multiplier=1 + bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_file_checks=false + blob_garbage_collection_force_threshold=1.000000 + enable_blob_files=false + soft_pending_compaction_bytes_limit=68719476736 + target_file_size_base=67108864 + max_compaction_bytes=1677721600 + disable_auto_compactions=false + min_blob_size=0 + memtable_whole_key_filtering=false + max_bytes_for_level_base=268435456 + last_level_temperature=kUnknown + preserve_internal_time_seconds=0 + compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} + max_bytes_for_level_multiplier=10.000000 + max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 + max_sequential_skip_in_iterations=8 + compression=kLZ4Compression + default_write_temperature=kUnknown + compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} + blob_garbage_collection_age_cutoff=0.250000 + ttl=2592000 + periodic_compaction_seconds=0 + preclude_last_level_data_seconds=0 + blob_file_size=268435456 + enable_blob_garbage_collection=false + persist_user_defined_timestamps=true + compaction_pri=kMinOverlappingRatio + compaction_filter_factory=nullptr + comparator=leveldb.BytewiseComparator + bloom_locality=0 + merge_operator=nullptr + compaction_filter=nullptr + level_compaction_dynamic_level_bytes=true + optimize_filters_for_hits=false + inplace_update_support=false + max_write_buffer_number_to_maintain=0 + max_write_buffer_size_to_maintain=0 + sst_partitioner_factory=nullptr + default_temperature=kUnknown + compaction_style=kCompactionStyleLevel + min_write_buffer_number_to_merge=1 + memtable_factory=SkipListFactory + memtable_insert_with_hint_prefix_extractor=nullptr + force_consistency_checks=true + num_levels=7 + +[TableOptions/BlockBasedTable "version"] + num_file_reads_for_auto_readahead=2 + initial_auto_readahead_size=8192 + metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} + enable_index_compression=true + verify_compression=false + prepopulate_block_cache=kDisable + format_version=6 + use_delta_encoding=true + pin_top_level_index_and_filter=true + read_amp_bytes_per_bit=0 + decouple_partitioned_filters=false + partition_filters=false + metadata_block_size=4096 + max_auto_readahead_size=262144 + index_block_restart_interval=1 + block_size_deviation=10 + block_size=4096 + detect_filter_construct_corruption=false + no_block_cache=false + checksum=kXXH3 + filter_policy=nullptr + data_block_hash_table_util_ratio=0.750000 + block_restart_interval=16 + index_type=kBinarySearch + pin_l0_filter_and_index_blocks_in_cache=false + data_block_index_type=kDataBlockBinarySearch + cache_index_and_filter_blocks_with_high_priority=true + whole_key_filtering=true + index_shortening=kShortenSeparators + cache_index_and_filter_blocks=false + block_align=false + optimize_filters_for_memory=true + flush_block_policy_factory=FlushBlockBySizePolicyFactory + + +[CFOptions "vector"] + memtable_max_range_deletions=0 + compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_memory_checks=false + block_protection_bytes_per_key=0 + uncache_aggressiveness=0 + bottommost_file_compaction_delay=0 + memtable_protection_bytes_per_key=0 + experimental_mempurge_threshold=0.000000 + bottommost_compression=kDisableCompressionOption + sample_for_compression=0 + prepopulate_blob_cache=kDisable + blob_file_starting_level=0 + blob_compaction_readahead_size=0 + table_factory=BlockBasedTable + max_successive_merges=0 + max_write_buffer_number=2 + prefix_extractor=nullptr + memtable_huge_page_size=0 + write_buffer_size=10485760 + strict_max_successive_merges=false + arena_block_size=1048576 + level0_file_num_compaction_trigger=4 + report_bg_io_stats=false + inplace_update_num_locks=10000 + memtable_prefix_bloom_size_ratio=0.000000 + level0_stop_writes_trigger=36 + blob_compression_type=kNoCompression + level0_slowdown_writes_trigger=20 + hard_pending_compaction_bytes_limit=274877906944 + target_file_size_multiplier=1 + bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_file_checks=false + blob_garbage_collection_force_threshold=1.000000 + enable_blob_files=false + soft_pending_compaction_bytes_limit=68719476736 + target_file_size_base=67108864 + max_compaction_bytes=1677721600 + disable_auto_compactions=false + min_blob_size=0 + memtable_whole_key_filtering=false + max_bytes_for_level_base=268435456 + last_level_temperature=kUnknown + preserve_internal_time_seconds=0 + compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} + max_bytes_for_level_multiplier=10.000000 + max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 + max_sequential_skip_in_iterations=8 + compression=kLZ4Compression + default_write_temperature=kUnknown + compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} + blob_garbage_collection_age_cutoff=0.250000 + ttl=2592000 + periodic_compaction_seconds=0 + preclude_last_level_data_seconds=0 + blob_file_size=268435456 + enable_blob_garbage_collection=false + persist_user_defined_timestamps=true + compaction_pri=kMinOverlappingRatio + compaction_filter_factory=nullptr + comparator=leveldb.BytewiseComparator + bloom_locality=0 + merge_operator=nullptr + compaction_filter=nullptr + level_compaction_dynamic_level_bytes=true + optimize_filters_for_hits=false + inplace_update_support=false + max_write_buffer_number_to_maintain=0 + max_write_buffer_size_to_maintain=0 + sst_partitioner_factory=nullptr + default_temperature=kUnknown + compaction_style=kCompactionStyleLevel + min_write_buffer_number_to_merge=1 + memtable_factory=SkipListFactory + memtable_insert_with_hint_prefix_extractor=nullptr + force_consistency_checks=true + num_levels=7 + +[TableOptions/BlockBasedTable "vector"] + num_file_reads_for_auto_readahead=2 + initial_auto_readahead_size=8192 + metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} + enable_index_compression=true + verify_compression=false + prepopulate_block_cache=kDisable + format_version=6 + use_delta_encoding=true + pin_top_level_index_and_filter=true + read_amp_bytes_per_bit=0 + decouple_partitioned_filters=false + partition_filters=false + metadata_block_size=4096 + max_auto_readahead_size=262144 + index_block_restart_interval=1 + block_size_deviation=10 + block_size=4096 + detect_filter_construct_corruption=false + no_block_cache=false + checksum=kXXH3 + filter_policy=nullptr + data_block_hash_table_util_ratio=0.750000 + block_restart_interval=16 + index_type=kBinarySearch + pin_l0_filter_and_index_blocks_in_cache=false + data_block_index_type=kDataBlockBinarySearch + cache_index_and_filter_blocks_with_high_priority=true + whole_key_filtering=true + index_shortening=kShortenSeparators + cache_index_and_filter_blocks=false + block_align=false + optimize_filters_for_memory=true + flush_block_policy_factory=FlushBlockBySizePolicyFactory + diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/payload_index/000012.log b/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/payload_index/000012.log new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/payload_index/CURRENT b/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/payload_index/CURRENT new file mode 100644 index 0000000000000000000000000000000000000000..625d147412870471b19d90716ccc20a7f207a5c3 --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/payload_index/CURRENT @@ -0,0 +1 @@ +MANIFEST-000013 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/payload_index/IDENTITY b/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/payload_index/IDENTITY new file mode 100644 index 0000000000000000000000000000000000000000..fbe8eb42f6f145db54cc13bf69525eac02a3cc51 --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/payload_index/IDENTITY @@ -0,0 +1 @@ +e59abf6d-0b27-4d47-825b-a29d6d47bc0c \ No newline at end of file diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/payload_index/LOCK b/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/payload_index/LOCK new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/payload_index/LOG b/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/payload_index/LOG new file mode 100644 index 0000000000000000000000000000000000000000..e7ada3f3ab9516bf50dba5ccae0c7c47f7343572 --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/payload_index/LOG @@ -0,0 +1,247 @@ +2025/05/04-10:09:55.801165 44 RocksDB version: 9.9.3 +2025/05/04-10:09:55.801281 44 Compile date 2024-12-05 01:25:31 +2025/05/04-10:09:55.801300 44 DB SUMMARY +2025/05/04-10:09:55.801302 44 Host name (Env): c5f2a9d061bb +2025/05/04-10:09:55.801302 44 DB Session ID: CD0SHR3DDC5AMRBDXMDH +2025/05/04-10:09:55.802522 44 CURRENT file: CURRENT +2025/05/04-10:09:55.802524 44 IDENTITY file: IDENTITY +2025/05/04-10:09:55.802528 44 MANIFEST file: MANIFEST-000009 size: 159 Bytes +2025/05/04-10:09:55.802530 44 SST files in ./storage/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/payload_index dir, Total Num: 0, files: +2025/05/04-10:09:55.802530 44 Write Ahead Log file in ./storage/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/payload_index: 000008.log size: 0 ; +2025/05/04-10:09:55.802531 44 Options.error_if_exists: 0 +2025/05/04-10:09:55.802532 44 Options.create_if_missing: 1 +2025/05/04-10:09:55.802533 44 Options.paranoid_checks: 1 +2025/05/04-10:09:55.802533 44 Options.flush_verify_memtable_count: 1 +2025/05/04-10:09:55.802534 44 Options.compaction_verify_record_count: 1 +2025/05/04-10:09:55.802535 44 Options.track_and_verify_wals_in_manifest: 0 +2025/05/04-10:09:55.802535 44 Options.verify_sst_unique_id_in_manifest: 1 +2025/05/04-10:09:55.802536 44 Options.env: 0xffff86034000 +2025/05/04-10:09:55.802538 44 Options.fs: PosixFileSystem +2025/05/04-10:09:55.802539 44 Options.info_log: 0xffff99aa8800 +2025/05/04-10:09:55.802539 44 Options.max_file_opening_threads: 16 +2025/05/04-10:09:55.802540 44 Options.statistics: (nil) +2025/05/04-10:09:55.802541 44 Options.use_fsync: 0 +2025/05/04-10:09:55.802542 44 Options.max_log_file_size: 1048576 +2025/05/04-10:09:55.802543 44 Options.max_manifest_file_size: 1073741824 +2025/05/04-10:09:55.802544 44 Options.log_file_time_to_roll: 0 +2025/05/04-10:09:55.802544 44 Options.keep_log_file_num: 1 +2025/05/04-10:09:55.802545 44 Options.recycle_log_file_num: 0 +2025/05/04-10:09:55.802545 44 Options.allow_fallocate: 1 +2025/05/04-10:09:55.802546 44 Options.allow_mmap_reads: 0 +2025/05/04-10:09:55.802546 44 Options.allow_mmap_writes: 0 +2025/05/04-10:09:55.802547 44 Options.use_direct_reads: 0 +2025/05/04-10:09:55.802548 44 Options.use_direct_io_for_flush_and_compaction: 0 +2025/05/04-10:09:55.802548 44 Options.create_missing_column_families: 1 +2025/05/04-10:09:55.802549 44 Options.db_log_dir: +2025/05/04-10:09:55.802549 44 Options.wal_dir: +2025/05/04-10:09:55.802550 44 Options.table_cache_numshardbits: 6 +2025/05/04-10:09:55.802558 44 Options.WAL_ttl_seconds: 0 +2025/05/04-10:09:55.802978 44 Options.WAL_size_limit_MB: 0 +2025/05/04-10:09:55.802982 44 Options.max_write_batch_group_size_bytes: 1048576 +2025/05/04-10:09:55.802983 44 Options.manifest_preallocation_size: 4194304 +2025/05/04-10:09:55.802983 44 Options.is_fd_close_on_exec: 1 +2025/05/04-10:09:55.802984 44 Options.advise_random_on_open: 1 +2025/05/04-10:09:55.802984 44 Options.db_write_buffer_size: 0 +2025/05/04-10:09:55.802985 44 Options.write_buffer_manager: 0xffff99a10200 +2025/05/04-10:09:55.802986 44 Options.random_access_max_buffer_size: 1048576 +2025/05/04-10:09:55.802986 44 Options.use_adaptive_mutex: 0 +2025/05/04-10:09:55.802987 44 Options.rate_limiter: (nil) +2025/05/04-10:09:55.802987 44 Options.sst_file_manager.rate_bytes_per_sec: 0 +2025/05/04-10:09:55.802988 44 Options.wal_recovery_mode: 0 +2025/05/04-10:09:55.802991 44 Options.enable_thread_tracking: 0 +2025/05/04-10:09:55.802991 44 Options.enable_pipelined_write: 0 +2025/05/04-10:09:55.802992 44 Options.unordered_write: 0 +2025/05/04-10:09:55.802993 44 Options.allow_concurrent_memtable_write: 1 +2025/05/04-10:09:55.802993 44 Options.enable_write_thread_adaptive_yield: 1 +2025/05/04-10:09:55.802994 44 Options.write_thread_max_yield_usec: 100 +2025/05/04-10:09:55.802996 44 Options.write_thread_slow_yield_usec: 3 +2025/05/04-10:09:55.802996 44 Options.row_cache: None +2025/05/04-10:09:55.802997 44 Options.wal_filter: None +2025/05/04-10:09:55.802998 44 Options.avoid_flush_during_recovery: 0 +2025/05/04-10:09:55.802998 44 Options.allow_ingest_behind: 0 +2025/05/04-10:09:55.802999 44 Options.two_write_queues: 0 +2025/05/04-10:09:55.802999 44 Options.manual_wal_flush: 0 +2025/05/04-10:09:55.803000 44 Options.wal_compression: 0 +2025/05/04-10:09:55.803001 44 Options.background_close_inactive_wals: 0 +2025/05/04-10:09:55.803001 44 Options.atomic_flush: 0 +2025/05/04-10:09:55.803002 44 Options.avoid_unnecessary_blocking_io: 0 +2025/05/04-10:09:55.803002 44 Options.prefix_seek_opt_in_only: 0 +2025/05/04-10:09:55.803003 44 Options.persist_stats_to_disk: 0 +2025/05/04-10:09:55.803004 44 Options.write_dbid_to_manifest: 1 +2025/05/04-10:09:55.803005 44 Options.write_identity_file: 1 +2025/05/04-10:09:55.803006 44 Options.log_readahead_size: 0 +2025/05/04-10:09:55.803006 44 Options.file_checksum_gen_factory: Unknown +2025/05/04-10:09:55.803007 44 Options.best_efforts_recovery: 0 +2025/05/04-10:09:55.803007 44 Options.max_bgerror_resume_count: 2147483647 +2025/05/04-10:09:55.803008 44 Options.bgerror_resume_retry_interval: 1000000 +2025/05/04-10:09:55.803009 44 Options.allow_data_in_errors: 0 +2025/05/04-10:09:55.803009 44 Options.db_host_id: __hostname__ +2025/05/04-10:09:55.803010 44 Options.enforce_single_del_contracts: true +2025/05/04-10:09:55.803011 44 Options.metadata_write_temperature: kUnknown +2025/05/04-10:09:55.803011 44 Options.wal_write_temperature: kUnknown +2025/05/04-10:09:55.803012 44 Options.max_background_jobs: 2 +2025/05/04-10:09:55.803012 44 Options.max_background_compactions: -1 +2025/05/04-10:09:55.803014 44 Options.max_subcompactions: 1 +2025/05/04-10:09:55.803015 44 Options.avoid_flush_during_shutdown: 0 +2025/05/04-10:09:55.803016 44 Options.writable_file_max_buffer_size: 1048576 +2025/05/04-10:09:55.803016 44 Options.delayed_write_rate : 16777216 +2025/05/04-10:09:55.803017 44 Options.max_total_wal_size: 0 +2025/05/04-10:09:55.803017 44 Options.delete_obsolete_files_period_micros: 180000000 +2025/05/04-10:09:55.803018 44 Options.stats_dump_period_sec: 600 +2025/05/04-10:09:55.803117 44 Options.stats_persist_period_sec: 600 +2025/05/04-10:09:55.803118 44 Options.stats_history_buffer_size: 1048576 +2025/05/04-10:09:55.803119 44 Options.max_open_files: 256 +2025/05/04-10:09:55.803119 44 Options.bytes_per_sync: 0 +2025/05/04-10:09:55.803120 44 Options.wal_bytes_per_sync: 0 +2025/05/04-10:09:55.803120 44 Options.strict_bytes_per_sync: 0 +2025/05/04-10:09:55.803121 44 Options.compaction_readahead_size: 2097152 +2025/05/04-10:09:55.803124 44 Options.max_background_flushes: -1 +2025/05/04-10:09:55.803124 44 Options.daily_offpeak_time_utc: +2025/05/04-10:09:55.803125 44 Compression algorithms supported: +2025/05/04-10:09:55.803126 44 kZSTD supported: 0 +2025/05/04-10:09:55.803127 44 kXpressCompression supported: 0 +2025/05/04-10:09:55.803127 44 kBZip2Compression supported: 0 +2025/05/04-10:09:55.803128 44 kZSTDNotFinalCompression supported: 0 +2025/05/04-10:09:55.803128 44 kLZ4Compression supported: 1 +2025/05/04-10:09:55.803129 44 kZlibCompression supported: 0 +2025/05/04-10:09:55.803129 44 kLZ4HCCompression supported: 1 +2025/05/04-10:09:55.803130 44 kSnappyCompression supported: 1 +2025/05/04-10:09:55.803131 44 Fast CRC32 supported: Not supported on x86 +2025/05/04-10:09:55.803132 44 DMutex implementation: pthread_mutex_t +2025/05/04-10:09:55.803132 44 Jemalloc supported: 0 +2025/05/04-10:09:55.805119 44 Options.comparator: leveldb.BytewiseComparator +2025/05/04-10:09:55.805121 44 Options.merge_operator: None +2025/05/04-10:09:55.805122 44 Options.compaction_filter: None +2025/05/04-10:09:55.805122 44 Options.compaction_filter_factory: None +2025/05/04-10:09:55.805123 44 Options.sst_partitioner_factory: None +2025/05/04-10:09:55.805123 44 Options.memtable_factory: SkipListFactory +2025/05/04-10:09:55.805124 44 Options.table_factory: BlockBasedTable +2025/05/04-10:09:55.805136 44 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff99b388c0) + cache_index_and_filter_blocks: 0 + cache_index_and_filter_blocks_with_high_priority: 1 + pin_l0_filter_and_index_blocks_in_cache: 0 + pin_top_level_index_and_filter: 1 + index_type: 0 + data_block_index_type: 0 + index_shortening: 1 + data_block_hash_table_util_ratio: 0.750000 + checksum: 4 + no_block_cache: 0 + block_cache: 0xffff99a10150 + block_cache_name: LRUCache + block_cache_options: + capacity : 33554432 + num_shard_bits : 6 + strict_capacity_limit : 0 + memory_allocator : None + high_pri_pool_ratio: 0.500 + low_pri_pool_ratio: 0.000 + persistent_cache: (nil) + block_size: 4096 + block_size_deviation: 10 + block_restart_interval: 16 + index_block_restart_interval: 1 + metadata_block_size: 4096 + partition_filters: 0 + use_delta_encoding: 1 + filter_policy: nullptr + whole_key_filtering: 1 + verify_compression: 0 + read_amp_bytes_per_bit: 0 + format_version: 6 + enable_index_compression: 1 + block_align: 0 + max_auto_readahead_size: 262144 + prepopulate_block_cache: 0 + initial_auto_readahead_size: 8192 + num_file_reads_for_auto_readahead: 2 +2025/05/04-10:09:55.805137 44 Options.write_buffer_size: 10485760 +2025/05/04-10:09:55.805138 44 Options.max_write_buffer_number: 2 +2025/05/04-10:09:55.805139 44 Options.compression: LZ4 +2025/05/04-10:09:55.805140 44 Options.bottommost_compression: Disabled +2025/05/04-10:09:55.805140 44 Options.prefix_extractor: nullptr +2025/05/04-10:09:55.805194 44 Options.memtable_insert_with_hint_prefix_extractor: nullptr +2025/05/04-10:09:55.805195 44 Options.num_levels: 7 +2025/05/04-10:09:55.805196 44 Options.min_write_buffer_number_to_merge: 1 +2025/05/04-10:09:55.805196 44 Options.max_write_buffer_number_to_maintain: 0 +2025/05/04-10:09:55.805197 44 Options.max_write_buffer_size_to_maintain: 0 +2025/05/04-10:09:55.805198 44 Options.bottommost_compression_opts.window_bits: -14 +2025/05/04-10:09:55.805198 44 Options.bottommost_compression_opts.level: 32767 +2025/05/04-10:09:55.805199 44 Options.bottommost_compression_opts.strategy: 0 +2025/05/04-10:09:55.805200 44 Options.bottommost_compression_opts.max_dict_bytes: 0 +2025/05/04-10:09:55.805200 44 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 +2025/05/04-10:09:55.805201 44 Options.bottommost_compression_opts.parallel_threads: 1 +2025/05/04-10:09:55.805201 44 Options.bottommost_compression_opts.enabled: false +2025/05/04-10:09:55.805202 44 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 +2025/05/04-10:09:55.805203 44 Options.bottommost_compression_opts.use_zstd_dict_trainer: true +2025/05/04-10:09:55.805203 44 Options.compression_opts.window_bits: -14 +2025/05/04-10:09:55.805204 44 Options.compression_opts.level: 32767 +2025/05/04-10:09:55.805205 44 Options.compression_opts.strategy: 0 +2025/05/04-10:09:55.805205 44 Options.compression_opts.max_dict_bytes: 0 +2025/05/04-10:09:55.805206 44 Options.compression_opts.zstd_max_train_bytes: 0 +2025/05/04-10:09:55.805207 44 Options.compression_opts.use_zstd_dict_trainer: true +2025/05/04-10:09:55.805207 44 Options.compression_opts.parallel_threads: 1 +2025/05/04-10:09:55.805208 44 Options.compression_opts.enabled: false +2025/05/04-10:09:55.805208 44 Options.compression_opts.max_dict_buffer_bytes: 0 +2025/05/04-10:09:55.805209 44 Options.level0_file_num_compaction_trigger: 4 +2025/05/04-10:09:55.805210 44 Options.level0_slowdown_writes_trigger: 20 +2025/05/04-10:09:55.805210 44 Options.level0_stop_writes_trigger: 36 +2025/05/04-10:09:55.805211 44 Options.target_file_size_base: 67108864 +2025/05/04-10:09:55.805211 44 Options.target_file_size_multiplier: 1 +2025/05/04-10:09:55.805213 44 Options.max_bytes_for_level_base: 268435456 +2025/05/04-10:09:55.805213 44 Options.level_compaction_dynamic_level_bytes: 1 +2025/05/04-10:09:55.805214 44 Options.max_bytes_for_level_multiplier: 10.000000 +2025/05/04-10:09:55.805215 44 Options.max_bytes_for_level_multiplier_addtl[0]: 1 +2025/05/04-10:09:55.805216 44 Options.max_bytes_for_level_multiplier_addtl[1]: 1 +2025/05/04-10:09:55.805216 44 Options.max_bytes_for_level_multiplier_addtl[2]: 1 +2025/05/04-10:09:55.805217 44 Options.max_bytes_for_level_multiplier_addtl[3]: 1 +2025/05/04-10:09:55.805217 44 Options.max_bytes_for_level_multiplier_addtl[4]: 1 +2025/05/04-10:09:55.805218 44 Options.max_bytes_for_level_multiplier_addtl[5]: 1 +2025/05/04-10:09:55.805218 44 Options.max_bytes_for_level_multiplier_addtl[6]: 1 +2025/05/04-10:09:55.805219 44 Options.max_sequential_skip_in_iterations: 8 +2025/05/04-10:09:55.805220 44 Options.max_compaction_bytes: 1677721600 +2025/05/04-10:09:55.805220 44 Options.arena_block_size: 1048576 +2025/05/04-10:09:55.805221 44 Options.soft_pending_compaction_bytes_limit: 68719476736 +2025/05/04-10:09:55.805222 44 Options.hard_pending_compaction_bytes_limit: 274877906944 +2025/05/04-10:09:55.805222 44 Options.disable_auto_compactions: 0 +2025/05/04-10:09:55.805223 44 Options.compaction_style: kCompactionStyleLevel +2025/05/04-10:09:55.805224 44 Options.compaction_pri: kMinOverlappingRatio +2025/05/04-10:09:55.805224 44 Options.compaction_options_universal.size_ratio: 1 +2025/05/04-10:09:55.805225 44 Options.compaction_options_universal.min_merge_width: 2 +2025/05/04-10:09:55.805225 44 Options.compaction_options_universal.max_merge_width: 4294967295 +2025/05/04-10:09:55.805226 44 Options.compaction_options_universal.max_size_amplification_percent: 200 +2025/05/04-10:09:55.805227 44 Options.compaction_options_universal.compression_size_percent: -1 +2025/05/04-10:09:55.805227 44 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize +2025/05/04-10:09:55.805228 44 Options.compaction_options_universal.max_read_amp: -1 +2025/05/04-10:09:55.805228 44 Options.compaction_options_fifo.max_table_files_size: 1073741824 +2025/05/04-10:09:55.805229 44 Options.compaction_options_fifo.allow_compaction: 0 +2025/05/04-10:09:55.805230 44 Options.table_properties_collectors: +2025/05/04-10:09:55.805231 44 Options.inplace_update_support: 0 +2025/05/04-10:09:55.805232 44 Options.inplace_update_num_locks: 10000 +2025/05/04-10:09:55.805232 44 Options.memtable_prefix_bloom_size_ratio: 0.000000 +2025/05/04-10:09:55.805233 44 Options.memtable_whole_key_filtering: 0 +2025/05/04-10:09:55.805234 44 Options.memtable_huge_page_size: 0 +2025/05/04-10:09:55.805234 44 Options.bloom_locality: 0 +2025/05/04-10:09:55.805235 44 Options.max_successive_merges: 0 +2025/05/04-10:09:55.805235 44 Options.strict_max_successive_merges: 0 +2025/05/04-10:09:55.805236 44 Options.optimize_filters_for_hits: 0 +2025/05/04-10:09:55.805236 44 Options.paranoid_file_checks: 0 +2025/05/04-10:09:55.805237 44 Options.force_consistency_checks: 1 +2025/05/04-10:09:55.805238 44 Options.report_bg_io_stats: 0 +2025/05/04-10:09:55.805238 44 Options.ttl: 2592000 +2025/05/04-10:09:55.805239 44 Options.periodic_compaction_seconds: 0 +2025/05/04-10:09:55.805240 44 Options.default_temperature: kUnknown +2025/05/04-10:09:55.805240 44 Options.preclude_last_level_data_seconds: 0 +2025/05/04-10:09:55.805241 44 Options.preserve_internal_time_seconds: 0 +2025/05/04-10:09:55.805241 44 Options.enable_blob_files: false +2025/05/04-10:09:55.805242 44 Options.min_blob_size: 0 +2025/05/04-10:09:55.805242 44 Options.blob_file_size: 268435456 +2025/05/04-10:09:55.805243 44 Options.blob_compression_type: NoCompression +2025/05/04-10:09:55.805244 44 Options.enable_blob_garbage_collection: false +2025/05/04-10:09:55.805244 44 Options.blob_garbage_collection_age_cutoff: 0.250000 +2025/05/04-10:09:55.805245 44 Options.blob_garbage_collection_force_threshold: 1.000000 +2025/05/04-10:09:55.805246 44 Options.blob_compaction_readahead_size: 0 +2025/05/04-10:09:55.805246 44 Options.blob_file_starting_level: 0 +2025/05/04-10:09:55.805247 44 Options.experimental_mempurge_threshold: 0.000000 +2025/05/04-10:09:55.805247 44 Options.memtable_max_range_deletions: 0 +2025/05/04-10:09:55.816749 44 DB pointer 0xffff99a68000 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/payload_index/MANIFEST-000013 b/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/payload_index/MANIFEST-000013 new file mode 100644 index 0000000000000000000000000000000000000000..ef17d1584a5029752ea06183a22e9752d12c3f54 Binary files /dev/null and b/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/payload_index/MANIFEST-000013 differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/payload_index/OPTIONS-000011 b/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/payload_index/OPTIONS-000011 new file mode 100644 index 0000000000000000000000000000000000000000..1ff6c6ffcc08e04f8a99e1f459e7b0caa1822cb2 --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/payload_index/OPTIONS-000011 @@ -0,0 +1,214 @@ +# This is a RocksDB option file. +# +# For detailed file format spec, please refer to the example file +# in examples/rocksdb_option_file_example.ini +# + +[Version] + rocksdb_version=9.9.3 + options_file_version=1.1 + +[DBOptions] + compaction_readahead_size=2097152 + strict_bytes_per_sync=false + bytes_per_sync=0 + max_background_jobs=2 + avoid_flush_during_shutdown=false + max_background_flushes=-1 + delayed_write_rate=16777216 + max_open_files=256 + max_subcompactions=1 + writable_file_max_buffer_size=1048576 + wal_bytes_per_sync=0 + max_background_compactions=-1 + max_total_wal_size=0 + delete_obsolete_files_period_micros=180000000 + stats_dump_period_sec=600 + stats_history_buffer_size=1048576 + stats_persist_period_sec=600 + follower_refresh_catchup_period_ms=10000 + enforce_single_del_contracts=true + lowest_used_cache_tier=kNonVolatileBlockTier + bgerror_resume_retry_interval=1000000 + metadata_write_temperature=kUnknown + best_efforts_recovery=false + log_readahead_size=0 + write_identity_file=true + write_dbid_to_manifest=true + prefix_seek_opt_in_only=false + wal_compression=kNoCompression + manual_wal_flush=false + db_host_id=__hostname__ + two_write_queues=false + random_access_max_buffer_size=1048576 + avoid_unnecessary_blocking_io=false + skip_checking_sst_file_sizes_on_db_open=false + flush_verify_memtable_count=true + fail_if_options_file_error=true + atomic_flush=false + verify_sst_unique_id_in_manifest=true + skip_stats_update_on_db_open=false + track_and_verify_wals_in_manifest=false + compaction_verify_record_count=true + paranoid_checks=true + create_if_missing=true + max_write_batch_group_size_bytes=1048576 + follower_catchup_retry_count=10 + avoid_flush_during_recovery=false + file_checksum_gen_factory=nullptr + enable_thread_tracking=false + allow_fallocate=true + allow_data_in_errors=false + error_if_exists=false + use_direct_io_for_flush_and_compaction=false + background_close_inactive_wals=false + create_missing_column_families=true + WAL_size_limit_MB=0 + use_direct_reads=false + persist_stats_to_disk=false + allow_2pc=false + is_fd_close_on_exec=true + max_log_file_size=1048576 + max_file_opening_threads=16 + wal_filter=nullptr + wal_write_temperature=kUnknown + follower_catchup_retry_wait_ms=100 + allow_mmap_reads=false + allow_mmap_writes=false + use_adaptive_mutex=false + use_fsync=false + table_cache_numshardbits=6 + dump_malloc_stats=false + db_write_buffer_size=0 + allow_ingest_behind=false + keep_log_file_num=1 + max_bgerror_resume_count=2147483647 + allow_concurrent_memtable_write=true + recycle_log_file_num=0 + log_file_time_to_roll=0 + manifest_preallocation_size=4194304 + enable_write_thread_adaptive_yield=true + WAL_ttl_seconds=0 + max_manifest_file_size=1073741824 + wal_recovery_mode=kTolerateCorruptedTailRecords + enable_pipelined_write=false + write_thread_slow_yield_usec=3 + unordered_write=false + write_thread_max_yield_usec=100 + advise_random_on_open=true + info_log_level=ERROR_LEVEL + + +[CFOptions "default"] + memtable_max_range_deletions=0 + compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_memory_checks=false + block_protection_bytes_per_key=0 + uncache_aggressiveness=0 + bottommost_file_compaction_delay=0 + memtable_protection_bytes_per_key=0 + experimental_mempurge_threshold=0.000000 + bottommost_compression=kDisableCompressionOption + sample_for_compression=0 + prepopulate_blob_cache=kDisable + blob_file_starting_level=0 + blob_compaction_readahead_size=0 + table_factory=BlockBasedTable + max_successive_merges=0 + max_write_buffer_number=2 + prefix_extractor=nullptr + memtable_huge_page_size=0 + write_buffer_size=10485760 + strict_max_successive_merges=false + arena_block_size=1048576 + level0_file_num_compaction_trigger=4 + report_bg_io_stats=false + inplace_update_num_locks=10000 + memtable_prefix_bloom_size_ratio=0.000000 + level0_stop_writes_trigger=36 + blob_compression_type=kNoCompression + level0_slowdown_writes_trigger=20 + hard_pending_compaction_bytes_limit=274877906944 + target_file_size_multiplier=1 + bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_file_checks=false + blob_garbage_collection_force_threshold=1.000000 + enable_blob_files=false + soft_pending_compaction_bytes_limit=68719476736 + target_file_size_base=67108864 + max_compaction_bytes=1677721600 + disable_auto_compactions=false + min_blob_size=0 + memtable_whole_key_filtering=false + max_bytes_for_level_base=268435456 + last_level_temperature=kUnknown + preserve_internal_time_seconds=0 + compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} + max_bytes_for_level_multiplier=10.000000 + max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 + max_sequential_skip_in_iterations=8 + compression=kLZ4Compression + default_write_temperature=kUnknown + compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} + blob_garbage_collection_age_cutoff=0.250000 + ttl=2592000 + periodic_compaction_seconds=0 + preclude_last_level_data_seconds=0 + blob_file_size=268435456 + enable_blob_garbage_collection=false + persist_user_defined_timestamps=true + compaction_pri=kMinOverlappingRatio + compaction_filter_factory=nullptr + comparator=leveldb.BytewiseComparator + bloom_locality=0 + merge_operator=nullptr + compaction_filter=nullptr + level_compaction_dynamic_level_bytes=true + optimize_filters_for_hits=false + inplace_update_support=false + max_write_buffer_number_to_maintain=0 + max_write_buffer_size_to_maintain=0 + sst_partitioner_factory=nullptr + default_temperature=kUnknown + compaction_style=kCompactionStyleLevel + min_write_buffer_number_to_merge=1 + memtable_factory=SkipListFactory + memtable_insert_with_hint_prefix_extractor=nullptr + force_consistency_checks=true + num_levels=7 + +[TableOptions/BlockBasedTable "default"] + num_file_reads_for_auto_readahead=2 + initial_auto_readahead_size=8192 + metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} + enable_index_compression=true + verify_compression=false + prepopulate_block_cache=kDisable + format_version=6 + use_delta_encoding=true + pin_top_level_index_and_filter=true + read_amp_bytes_per_bit=0 + decouple_partitioned_filters=false + partition_filters=false + metadata_block_size=4096 + max_auto_readahead_size=262144 + index_block_restart_interval=1 + block_size_deviation=10 + block_size=4096 + detect_filter_construct_corruption=false + no_block_cache=false + checksum=kXXH3 + filter_policy=nullptr + data_block_hash_table_util_ratio=0.750000 + block_restart_interval=16 + index_type=kBinarySearch + pin_l0_filter_and_index_blocks_in_cache=false + data_block_index_type=kDataBlockBinarySearch + cache_index_and_filter_blocks_with_high_priority=true + whole_key_filtering=true + index_shortening=kShortenSeparators + cache_index_and_filter_blocks=false + block_align=false + optimize_filters_for_memory=true + flush_block_policy_factory=FlushBlockBySizePolicyFactory + diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/payload_index/OPTIONS-000015 b/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/payload_index/OPTIONS-000015 new file mode 100644 index 0000000000000000000000000000000000000000..1ff6c6ffcc08e04f8a99e1f459e7b0caa1822cb2 --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/payload_index/OPTIONS-000015 @@ -0,0 +1,214 @@ +# This is a RocksDB option file. +# +# For detailed file format spec, please refer to the example file +# in examples/rocksdb_option_file_example.ini +# + +[Version] + rocksdb_version=9.9.3 + options_file_version=1.1 + +[DBOptions] + compaction_readahead_size=2097152 + strict_bytes_per_sync=false + bytes_per_sync=0 + max_background_jobs=2 + avoid_flush_during_shutdown=false + max_background_flushes=-1 + delayed_write_rate=16777216 + max_open_files=256 + max_subcompactions=1 + writable_file_max_buffer_size=1048576 + wal_bytes_per_sync=0 + max_background_compactions=-1 + max_total_wal_size=0 + delete_obsolete_files_period_micros=180000000 + stats_dump_period_sec=600 + stats_history_buffer_size=1048576 + stats_persist_period_sec=600 + follower_refresh_catchup_period_ms=10000 + enforce_single_del_contracts=true + lowest_used_cache_tier=kNonVolatileBlockTier + bgerror_resume_retry_interval=1000000 + metadata_write_temperature=kUnknown + best_efforts_recovery=false + log_readahead_size=0 + write_identity_file=true + write_dbid_to_manifest=true + prefix_seek_opt_in_only=false + wal_compression=kNoCompression + manual_wal_flush=false + db_host_id=__hostname__ + two_write_queues=false + random_access_max_buffer_size=1048576 + avoid_unnecessary_blocking_io=false + skip_checking_sst_file_sizes_on_db_open=false + flush_verify_memtable_count=true + fail_if_options_file_error=true + atomic_flush=false + verify_sst_unique_id_in_manifest=true + skip_stats_update_on_db_open=false + track_and_verify_wals_in_manifest=false + compaction_verify_record_count=true + paranoid_checks=true + create_if_missing=true + max_write_batch_group_size_bytes=1048576 + follower_catchup_retry_count=10 + avoid_flush_during_recovery=false + file_checksum_gen_factory=nullptr + enable_thread_tracking=false + allow_fallocate=true + allow_data_in_errors=false + error_if_exists=false + use_direct_io_for_flush_and_compaction=false + background_close_inactive_wals=false + create_missing_column_families=true + WAL_size_limit_MB=0 + use_direct_reads=false + persist_stats_to_disk=false + allow_2pc=false + is_fd_close_on_exec=true + max_log_file_size=1048576 + max_file_opening_threads=16 + wal_filter=nullptr + wal_write_temperature=kUnknown + follower_catchup_retry_wait_ms=100 + allow_mmap_reads=false + allow_mmap_writes=false + use_adaptive_mutex=false + use_fsync=false + table_cache_numshardbits=6 + dump_malloc_stats=false + db_write_buffer_size=0 + allow_ingest_behind=false + keep_log_file_num=1 + max_bgerror_resume_count=2147483647 + allow_concurrent_memtable_write=true + recycle_log_file_num=0 + log_file_time_to_roll=0 + manifest_preallocation_size=4194304 + enable_write_thread_adaptive_yield=true + WAL_ttl_seconds=0 + max_manifest_file_size=1073741824 + wal_recovery_mode=kTolerateCorruptedTailRecords + enable_pipelined_write=false + write_thread_slow_yield_usec=3 + unordered_write=false + write_thread_max_yield_usec=100 + advise_random_on_open=true + info_log_level=ERROR_LEVEL + + +[CFOptions "default"] + memtable_max_range_deletions=0 + compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_memory_checks=false + block_protection_bytes_per_key=0 + uncache_aggressiveness=0 + bottommost_file_compaction_delay=0 + memtable_protection_bytes_per_key=0 + experimental_mempurge_threshold=0.000000 + bottommost_compression=kDisableCompressionOption + sample_for_compression=0 + prepopulate_blob_cache=kDisable + blob_file_starting_level=0 + blob_compaction_readahead_size=0 + table_factory=BlockBasedTable + max_successive_merges=0 + max_write_buffer_number=2 + prefix_extractor=nullptr + memtable_huge_page_size=0 + write_buffer_size=10485760 + strict_max_successive_merges=false + arena_block_size=1048576 + level0_file_num_compaction_trigger=4 + report_bg_io_stats=false + inplace_update_num_locks=10000 + memtable_prefix_bloom_size_ratio=0.000000 + level0_stop_writes_trigger=36 + blob_compression_type=kNoCompression + level0_slowdown_writes_trigger=20 + hard_pending_compaction_bytes_limit=274877906944 + target_file_size_multiplier=1 + bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_file_checks=false + blob_garbage_collection_force_threshold=1.000000 + enable_blob_files=false + soft_pending_compaction_bytes_limit=68719476736 + target_file_size_base=67108864 + max_compaction_bytes=1677721600 + disable_auto_compactions=false + min_blob_size=0 + memtable_whole_key_filtering=false + max_bytes_for_level_base=268435456 + last_level_temperature=kUnknown + preserve_internal_time_seconds=0 + compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} + max_bytes_for_level_multiplier=10.000000 + max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 + max_sequential_skip_in_iterations=8 + compression=kLZ4Compression + default_write_temperature=kUnknown + compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} + blob_garbage_collection_age_cutoff=0.250000 + ttl=2592000 + periodic_compaction_seconds=0 + preclude_last_level_data_seconds=0 + blob_file_size=268435456 + enable_blob_garbage_collection=false + persist_user_defined_timestamps=true + compaction_pri=kMinOverlappingRatio + compaction_filter_factory=nullptr + comparator=leveldb.BytewiseComparator + bloom_locality=0 + merge_operator=nullptr + compaction_filter=nullptr + level_compaction_dynamic_level_bytes=true + optimize_filters_for_hits=false + inplace_update_support=false + max_write_buffer_number_to_maintain=0 + max_write_buffer_size_to_maintain=0 + sst_partitioner_factory=nullptr + default_temperature=kUnknown + compaction_style=kCompactionStyleLevel + min_write_buffer_number_to_merge=1 + memtable_factory=SkipListFactory + memtable_insert_with_hint_prefix_extractor=nullptr + force_consistency_checks=true + num_levels=7 + +[TableOptions/BlockBasedTable "default"] + num_file_reads_for_auto_readahead=2 + initial_auto_readahead_size=8192 + metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} + enable_index_compression=true + verify_compression=false + prepopulate_block_cache=kDisable + format_version=6 + use_delta_encoding=true + pin_top_level_index_and_filter=true + read_amp_bytes_per_bit=0 + decouple_partitioned_filters=false + partition_filters=false + metadata_block_size=4096 + max_auto_readahead_size=262144 + index_block_restart_interval=1 + block_size_deviation=10 + block_size=4096 + detect_filter_construct_corruption=false + no_block_cache=false + checksum=kXXH3 + filter_policy=nullptr + data_block_hash_table_util_ratio=0.750000 + block_restart_interval=16 + index_type=kBinarySearch + pin_l0_filter_and_index_blocks_in_cache=false + data_block_index_type=kDataBlockBinarySearch + cache_index_and_filter_blocks_with_high_priority=true + whole_key_filtering=true + index_shortening=kShortenSeparators + cache_index_and_filter_blocks=false + block_align=false + optimize_filters_for_memory=true + flush_block_policy_factory=FlushBlockBySizePolicyFactory + diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/payload_index/config.json b/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/payload_index/config.json new file mode 100644 index 0000000000000000000000000000000000000000..7d0db25a817fdb0c73414e2809921889f6ff065f --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/payload_index/config.json @@ -0,0 +1 @@ +{"indexed_fields":{},"skip_rocksdb":null} \ No newline at end of file diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/payload_storage/bitmask.dat b/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/payload_storage/bitmask.dat new file mode 100644 index 0000000000000000000000000000000000000000..12f3be4dd3b5a2b5146f36630acbf7e99e490797 Binary files /dev/null and b/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/payload_storage/bitmask.dat differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/payload_storage/config.json b/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/payload_storage/config.json new file mode 100644 index 0000000000000000000000000000000000000000..9477c128b4ebf57927ba47096ca8af9166799c4f --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/payload_storage/config.json @@ -0,0 +1 @@ +{"page_size_bytes":33554432,"block_size_bytes":128,"region_size_blocks":8192,"compression":"LZ4"} \ No newline at end of file diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/payload_storage/gaps.dat b/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/payload_storage/gaps.dat new file mode 100644 index 0000000000000000000000000000000000000000..ce16339134842f83b79988dce76f95a6023ef63f Binary files /dev/null and b/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/payload_storage/gaps.dat differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/payload_storage/page_0.dat b/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/payload_storage/page_0.dat new file mode 100644 index 0000000000000000000000000000000000000000..d4988d268749185a4f9120756d2c5fec51e2ef05 Binary files /dev/null and b/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/payload_storage/page_0.dat differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/payload_storage/tracker.dat b/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/payload_storage/tracker.dat new file mode 100644 index 0000000000000000000000000000000000000000..9e0f96a2a253b173cb45b41868209a5d043e1437 Binary files /dev/null and b/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/payload_storage/tracker.dat differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/segment.json b/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/segment.json new file mode 100644 index 0000000000000000000000000000000000000000..d20929eb6fc39a5e55d76c93b8b7714a081c0393 --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/segment.json @@ -0,0 +1 @@ +{"version":null,"config":{"vector_data":{"":{"size":1536,"distance":"Cosine","storage_type":"InRamChunkedMmap","index":{"type":"plain","options":{}},"quantization_config":null}},"payload_storage_type":{"type":"mmap"}}} \ No newline at end of file diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/vector_storage/deleted/flags_a.dat b/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/vector_storage/deleted/flags_a.dat new file mode 100644 index 0000000000000000000000000000000000000000..9e0f96a2a253b173cb45b41868209a5d043e1437 Binary files /dev/null and b/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/vector_storage/deleted/flags_a.dat differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/vector_storage/deleted/status.dat b/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/vector_storage/deleted/status.dat new file mode 100644 index 0000000000000000000000000000000000000000..01d633b27e8ea9b17084fc911d0c8cc43a4170a9 Binary files /dev/null and b/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/vector_storage/deleted/status.dat differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/vector_storage/vectors/config.json b/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/vector_storage/vectors/config.json new file mode 100644 index 0000000000000000000000000000000000000000..ff57a41ff8c6af2be033c6652e21559c49b5a9fa --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/vector_storage/vectors/config.json @@ -0,0 +1 @@ +{"chunk_size_bytes":33552384,"chunk_size_vectors":5461,"dim":1536,"mlock":false,"populate":true} \ No newline at end of file diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/vector_storage/vectors/status.dat b/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/vector_storage/vectors/status.dat new file mode 100644 index 0000000000000000000000000000000000000000..1b1cb4d44c57c2d7a5122870fa6ac3e62ff7e94e Binary files /dev/null and b/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/vector_storage/vectors/status.dat differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/version.info b/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/version.info new file mode 100644 index 0000000000000000000000000000000000000000..09a3acfa138db01dc50a688796b2861638c369ec --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/9858c623-0fc4-4070-9b82-754ebb8e637b/version.info @@ -0,0 +1 @@ +0.6.0 \ No newline at end of file diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/000009.sst b/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/000009.sst new file mode 100644 index 0000000000000000000000000000000000000000..48a7f71cb9de80eac9b328843ed570c6e1a77628 Binary files /dev/null and b/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/000009.sst differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/000011.sst b/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/000011.sst new file mode 100644 index 0000000000000000000000000000000000000000..714f9c513ad8004e27e54d0969b5633f5400b85d Binary files /dev/null and b/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/000011.sst differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/000018.log b/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/000018.log new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/CURRENT b/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/CURRENT new file mode 100644 index 0000000000000000000000000000000000000000..43c22f0a2c436427c868273482a050658e45ca2f --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/CURRENT @@ -0,0 +1 @@ +MANIFEST-000019 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/IDENTITY b/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/IDENTITY new file mode 100644 index 0000000000000000000000000000000000000000..2ba9ebd6b191b9fe0f639f0cea87b28ea83c05a7 --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/IDENTITY @@ -0,0 +1 @@ +dbd5c3b2-51bd-4b57-8a5e-8c01895fa935 \ No newline at end of file diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/LOCK b/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/LOCK new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/LOG b/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/LOG new file mode 100644 index 0000000000000000000000000000000000000000..1b7411b8bb1fb10b2a315c0e9fa18d1e82385529 --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/LOG @@ -0,0 +1,787 @@ +2025/05/04-10:09:55.609716 42 RocksDB version: 9.9.3 +2025/05/04-10:09:55.609945 42 Compile date 2024-12-05 01:25:31 +2025/05/04-10:09:55.609947 42 DB SUMMARY +2025/05/04-10:09:55.609948 42 Host name (Env): c5f2a9d061bb +2025/05/04-10:09:55.609949 42 DB Session ID: CD0SHR3DDC5AMRBDXMDN +2025/05/04-10:09:55.611435 42 CURRENT file: CURRENT +2025/05/04-10:09:55.611437 42 IDENTITY file: IDENTITY +2025/05/04-10:09:55.611670 42 MANIFEST file: MANIFEST-000015 size: 767 Bytes +2025/05/04-10:09:55.611672 42 SST files in ./storage/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999 dir, Total Num: 2, files: 000009.sst 000011.sst +2025/05/04-10:09:55.611673 42 Write Ahead Log file in ./storage/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999: 000014.log size: 0 ; +2025/05/04-10:09:55.611674 42 Options.error_if_exists: 0 +2025/05/04-10:09:55.611674 42 Options.create_if_missing: 1 +2025/05/04-10:09:55.611675 42 Options.paranoid_checks: 1 +2025/05/04-10:09:55.611676 42 Options.flush_verify_memtable_count: 1 +2025/05/04-10:09:55.611676 42 Options.compaction_verify_record_count: 1 +2025/05/04-10:09:55.611677 42 Options.track_and_verify_wals_in_manifest: 0 +2025/05/04-10:09:55.611678 42 Options.verify_sst_unique_id_in_manifest: 1 +2025/05/04-10:09:55.611678 42 Options.env: 0xffff86034000 +2025/05/04-10:09:55.611679 42 Options.fs: PosixFileSystem +2025/05/04-10:09:55.611680 42 Options.info_log: 0xffff806a1000 +2025/05/04-10:09:55.611681 42 Options.max_file_opening_threads: 16 +2025/05/04-10:09:55.611681 42 Options.statistics: (nil) +2025/05/04-10:09:55.611682 42 Options.use_fsync: 0 +2025/05/04-10:09:55.611683 42 Options.max_log_file_size: 1048576 +2025/05/04-10:09:55.611683 42 Options.max_manifest_file_size: 1073741824 +2025/05/04-10:09:55.611684 42 Options.log_file_time_to_roll: 0 +2025/05/04-10:09:55.611685 42 Options.keep_log_file_num: 1 +2025/05/04-10:09:55.611685 42 Options.recycle_log_file_num: 0 +2025/05/04-10:09:55.611686 42 Options.allow_fallocate: 1 +2025/05/04-10:09:55.611686 42 Options.allow_mmap_reads: 0 +2025/05/04-10:09:55.611687 42 Options.allow_mmap_writes: 0 +2025/05/04-10:09:55.611687 42 Options.use_direct_reads: 0 +2025/05/04-10:09:55.611688 42 Options.use_direct_io_for_flush_and_compaction: 0 +2025/05/04-10:09:55.611689 42 Options.create_missing_column_families: 1 +2025/05/04-10:09:55.611689 42 Options.db_log_dir: +2025/05/04-10:09:55.611690 42 Options.wal_dir: +2025/05/04-10:09:55.611693 42 Options.table_cache_numshardbits: 6 +2025/05/04-10:09:55.611694 42 Options.WAL_ttl_seconds: 0 +2025/05/04-10:09:55.611695 42 Options.WAL_size_limit_MB: 0 +2025/05/04-10:09:55.611695 42 Options.max_write_batch_group_size_bytes: 1048576 +2025/05/04-10:09:55.611696 42 Options.manifest_preallocation_size: 4194304 +2025/05/04-10:09:55.611697 42 Options.is_fd_close_on_exec: 1 +2025/05/04-10:09:55.611697 42 Options.advise_random_on_open: 1 +2025/05/04-10:09:55.611698 42 Options.db_write_buffer_size: 0 +2025/05/04-10:09:55.611698 42 Options.write_buffer_manager: 0xffff806090c0 +2025/05/04-10:09:55.611699 42 Options.random_access_max_buffer_size: 1048576 +2025/05/04-10:09:55.611701 42 Options.use_adaptive_mutex: 0 +2025/05/04-10:09:55.611702 42 Options.rate_limiter: (nil) +2025/05/04-10:09:55.611703 42 Options.sst_file_manager.rate_bytes_per_sec: 0 +2025/05/04-10:09:55.611703 42 Options.wal_recovery_mode: 0 +2025/05/04-10:09:55.611704 42 Options.enable_thread_tracking: 0 +2025/05/04-10:09:55.611704 42 Options.enable_pipelined_write: 0 +2025/05/04-10:09:55.611707 42 Options.unordered_write: 0 +2025/05/04-10:09:55.611708 42 Options.allow_concurrent_memtable_write: 1 +2025/05/04-10:09:55.611708 42 Options.enable_write_thread_adaptive_yield: 1 +2025/05/04-10:09:55.611709 42 Options.write_thread_max_yield_usec: 100 +2025/05/04-10:09:55.611710 42 Options.write_thread_slow_yield_usec: 3 +2025/05/04-10:09:55.611711 42 Options.row_cache: None +2025/05/04-10:09:55.611711 42 Options.wal_filter: None +2025/05/04-10:09:55.611713 42 Options.avoid_flush_during_recovery: 0 +2025/05/04-10:09:55.611713 42 Options.allow_ingest_behind: 0 +2025/05/04-10:09:55.611714 42 Options.two_write_queues: 0 +2025/05/04-10:09:55.611714 42 Options.manual_wal_flush: 0 +2025/05/04-10:09:55.611715 42 Options.wal_compression: 0 +2025/05/04-10:09:55.611716 42 Options.background_close_inactive_wals: 0 +2025/05/04-10:09:55.611716 42 Options.atomic_flush: 0 +2025/05/04-10:09:55.611717 42 Options.avoid_unnecessary_blocking_io: 0 +2025/05/04-10:09:55.611717 42 Options.prefix_seek_opt_in_only: 0 +2025/05/04-10:09:55.611718 42 Options.persist_stats_to_disk: 0 +2025/05/04-10:09:55.611718 42 Options.write_dbid_to_manifest: 1 +2025/05/04-10:09:55.611719 42 Options.write_identity_file: 1 +2025/05/04-10:09:55.611720 42 Options.log_readahead_size: 0 +2025/05/04-10:09:55.611720 42 Options.file_checksum_gen_factory: Unknown +2025/05/04-10:09:55.611721 42 Options.best_efforts_recovery: 0 +2025/05/04-10:09:55.611721 42 Options.max_bgerror_resume_count: 2147483647 +2025/05/04-10:09:55.611722 42 Options.bgerror_resume_retry_interval: 1000000 +2025/05/04-10:09:55.611723 42 Options.allow_data_in_errors: 0 +2025/05/04-10:09:55.611741 42 Options.db_host_id: __hostname__ +2025/05/04-10:09:55.611742 42 Options.enforce_single_del_contracts: true +2025/05/04-10:09:55.611743 42 Options.metadata_write_temperature: kUnknown +2025/05/04-10:09:55.611745 42 Options.wal_write_temperature: kUnknown +2025/05/04-10:09:55.611745 42 Options.max_background_jobs: 2 +2025/05/04-10:09:55.611746 42 Options.max_background_compactions: -1 +2025/05/04-10:09:55.611747 42 Options.max_subcompactions: 1 +2025/05/04-10:09:55.611747 42 Options.avoid_flush_during_shutdown: 0 +2025/05/04-10:09:55.611748 42 Options.writable_file_max_buffer_size: 1048576 +2025/05/04-10:09:55.611748 42 Options.delayed_write_rate : 16777216 +2025/05/04-10:09:55.611749 42 Options.max_total_wal_size: 0 +2025/05/04-10:09:55.611750 42 Options.delete_obsolete_files_period_micros: 180000000 +2025/05/04-10:09:55.611750 42 Options.stats_dump_period_sec: 600 +2025/05/04-10:09:55.611751 42 Options.stats_persist_period_sec: 600 +2025/05/04-10:09:55.611752 42 Options.stats_history_buffer_size: 1048576 +2025/05/04-10:09:55.611752 42 Options.max_open_files: 256 +2025/05/04-10:09:55.611754 42 Options.bytes_per_sync: 0 +2025/05/04-10:09:55.611754 42 Options.wal_bytes_per_sync: 0 +2025/05/04-10:09:55.611755 42 Options.strict_bytes_per_sync: 0 +2025/05/04-10:09:55.611756 42 Options.compaction_readahead_size: 2097152 +2025/05/04-10:09:55.611756 42 Options.max_background_flushes: -1 +2025/05/04-10:09:55.611758 42 Options.daily_offpeak_time_utc: +2025/05/04-10:09:55.611759 42 Compression algorithms supported: +2025/05/04-10:09:55.611760 42 kZSTD supported: 0 +2025/05/04-10:09:55.611761 42 kXpressCompression supported: 0 +2025/05/04-10:09:55.611762 42 kBZip2Compression supported: 0 +2025/05/04-10:09:55.611762 42 kZSTDNotFinalCompression supported: 0 +2025/05/04-10:09:55.611763 42 kLZ4Compression supported: 1 +2025/05/04-10:09:55.611764 42 kZlibCompression supported: 0 +2025/05/04-10:09:55.611765 42 kLZ4HCCompression supported: 1 +2025/05/04-10:09:55.611765 42 kSnappyCompression supported: 1 +2025/05/04-10:09:55.611766 42 Fast CRC32 supported: Not supported on x86 +2025/05/04-10:09:55.611767 42 DMutex implementation: pthread_mutex_t +2025/05/04-10:09:55.611768 42 Jemalloc supported: 0 +2025/05/04-10:09:55.630277 42 Options.comparator: leveldb.BytewiseComparator +2025/05/04-10:09:55.630279 42 Options.merge_operator: None +2025/05/04-10:09:55.630280 42 Options.compaction_filter: None +2025/05/04-10:09:55.630282 42 Options.compaction_filter_factory: None +2025/05/04-10:09:55.630283 42 Options.sst_partitioner_factory: None +2025/05/04-10:09:55.630284 42 Options.memtable_factory: SkipListFactory +2025/05/04-10:09:55.630285 42 Options.table_factory: BlockBasedTable +2025/05/04-10:09:55.630294 42 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff80600060) + cache_index_and_filter_blocks: 0 + cache_index_and_filter_blocks_with_high_priority: 1 + pin_l0_filter_and_index_blocks_in_cache: 0 + pin_top_level_index_and_filter: 1 + index_type: 0 + data_block_index_type: 0 + index_shortening: 1 + data_block_hash_table_util_ratio: 0.750000 + checksum: 4 + no_block_cache: 0 + block_cache: 0xffff80609010 + block_cache_name: LRUCache + block_cache_options: + capacity : 33554432 + num_shard_bits : 6 + strict_capacity_limit : 0 + memory_allocator : None + high_pri_pool_ratio: 0.500 + low_pri_pool_ratio: 0.000 + persistent_cache: (nil) + block_size: 4096 + block_size_deviation: 10 + block_restart_interval: 16 + index_block_restart_interval: 1 + metadata_block_size: 4096 + partition_filters: 0 + use_delta_encoding: 1 + filter_policy: nullptr + whole_key_filtering: 1 + verify_compression: 0 + read_amp_bytes_per_bit: 0 + format_version: 6 + enable_index_compression: 1 + block_align: 0 + max_auto_readahead_size: 262144 + prepopulate_block_cache: 0 + initial_auto_readahead_size: 8192 + num_file_reads_for_auto_readahead: 2 +2025/05/04-10:09:55.630295 42 Options.write_buffer_size: 10485760 +2025/05/04-10:09:55.630297 42 Options.max_write_buffer_number: 2 +2025/05/04-10:09:55.630297 42 Options.compression: LZ4 +2025/05/04-10:09:55.630299 42 Options.bottommost_compression: Disabled +2025/05/04-10:09:55.630299 42 Options.prefix_extractor: nullptr +2025/05/04-10:09:55.630300 42 Options.memtable_insert_with_hint_prefix_extractor: nullptr +2025/05/04-10:09:55.630300 42 Options.num_levels: 7 +2025/05/04-10:09:55.630301 42 Options.min_write_buffer_number_to_merge: 1 +2025/05/04-10:09:55.630302 42 Options.max_write_buffer_number_to_maintain: 0 +2025/05/04-10:09:55.630302 42 Options.max_write_buffer_size_to_maintain: 0 +2025/05/04-10:09:55.630303 42 Options.bottommost_compression_opts.window_bits: -14 +2025/05/04-10:09:55.630303 42 Options.bottommost_compression_opts.level: 32767 +2025/05/04-10:09:55.630304 42 Options.bottommost_compression_opts.strategy: 0 +2025/05/04-10:09:55.630304 42 Options.bottommost_compression_opts.max_dict_bytes: 0 +2025/05/04-10:09:55.630305 42 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 +2025/05/04-10:09:55.630305 42 Options.bottommost_compression_opts.parallel_threads: 1 +2025/05/04-10:09:55.630306 42 Options.bottommost_compression_opts.enabled: false +2025/05/04-10:09:55.630306 42 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 +2025/05/04-10:09:55.630307 42 Options.bottommost_compression_opts.use_zstd_dict_trainer: true +2025/05/04-10:09:55.630307 42 Options.compression_opts.window_bits: -14 +2025/05/04-10:09:55.630308 42 Options.compression_opts.level: 32767 +2025/05/04-10:09:55.630309 42 Options.compression_opts.strategy: 0 +2025/05/04-10:09:55.630309 42 Options.compression_opts.max_dict_bytes: 0 +2025/05/04-10:09:55.630310 42 Options.compression_opts.zstd_max_train_bytes: 0 +2025/05/04-10:09:55.630310 42 Options.compression_opts.use_zstd_dict_trainer: true +2025/05/04-10:09:55.630311 42 Options.compression_opts.parallel_threads: 1 +2025/05/04-10:09:55.630311 42 Options.compression_opts.enabled: false +2025/05/04-10:09:55.630312 42 Options.compression_opts.max_dict_buffer_bytes: 0 +2025/05/04-10:09:55.630312 42 Options.level0_file_num_compaction_trigger: 4 +2025/05/04-10:09:55.630313 42 Options.level0_slowdown_writes_trigger: 20 +2025/05/04-10:09:55.630313 42 Options.level0_stop_writes_trigger: 36 +2025/05/04-10:09:55.630314 42 Options.target_file_size_base: 67108864 +2025/05/04-10:09:55.630314 42 Options.target_file_size_multiplier: 1 +2025/05/04-10:09:55.630315 42 Options.max_bytes_for_level_base: 268435456 +2025/05/04-10:09:55.630315 42 Options.level_compaction_dynamic_level_bytes: 1 +2025/05/04-10:09:55.630316 42 Options.max_bytes_for_level_multiplier: 10.000000 +2025/05/04-10:09:55.630317 42 Options.max_bytes_for_level_multiplier_addtl[0]: 1 +2025/05/04-10:09:55.630317 42 Options.max_bytes_for_level_multiplier_addtl[1]: 1 +2025/05/04-10:09:55.630318 42 Options.max_bytes_for_level_multiplier_addtl[2]: 1 +2025/05/04-10:09:55.630319 42 Options.max_bytes_for_level_multiplier_addtl[3]: 1 +2025/05/04-10:09:55.630319 42 Options.max_bytes_for_level_multiplier_addtl[4]: 1 +2025/05/04-10:09:55.630320 42 Options.max_bytes_for_level_multiplier_addtl[5]: 1 +2025/05/04-10:09:55.630321 42 Options.max_bytes_for_level_multiplier_addtl[6]: 1 +2025/05/04-10:09:55.630321 42 Options.max_sequential_skip_in_iterations: 8 +2025/05/04-10:09:55.630322 42 Options.max_compaction_bytes: 1677721600 +2025/05/04-10:09:55.630322 42 Options.arena_block_size: 1048576 +2025/05/04-10:09:55.630323 42 Options.soft_pending_compaction_bytes_limit: 68719476736 +2025/05/04-10:09:55.630323 42 Options.hard_pending_compaction_bytes_limit: 274877906944 +2025/05/04-10:09:55.630324 42 Options.disable_auto_compactions: 0 +2025/05/04-10:09:55.630325 42 Options.compaction_style: kCompactionStyleLevel +2025/05/04-10:09:55.630325 42 Options.compaction_pri: kMinOverlappingRatio +2025/05/04-10:09:55.630326 42 Options.compaction_options_universal.size_ratio: 1 +2025/05/04-10:09:55.630326 42 Options.compaction_options_universal.min_merge_width: 2 +2025/05/04-10:09:55.630327 42 Options.compaction_options_universal.max_merge_width: 4294967295 +2025/05/04-10:09:55.630327 42 Options.compaction_options_universal.max_size_amplification_percent: 200 +2025/05/04-10:09:55.630328 42 Options.compaction_options_universal.compression_size_percent: -1 +2025/05/04-10:09:55.630328 42 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize +2025/05/04-10:09:55.630329 42 Options.compaction_options_universal.max_read_amp: -1 +2025/05/04-10:09:55.630330 42 Options.compaction_options_fifo.max_table_files_size: 1073741824 +2025/05/04-10:09:55.630330 42 Options.compaction_options_fifo.allow_compaction: 0 +2025/05/04-10:09:55.630331 42 Options.table_properties_collectors: +2025/05/04-10:09:55.630331 42 Options.inplace_update_support: 0 +2025/05/04-10:09:55.630332 42 Options.inplace_update_num_locks: 10000 +2025/05/04-10:09:55.630333 42 Options.memtable_prefix_bloom_size_ratio: 0.000000 +2025/05/04-10:09:55.630333 42 Options.memtable_whole_key_filtering: 0 +2025/05/04-10:09:55.630334 42 Options.memtable_huge_page_size: 0 +2025/05/04-10:09:55.630334 42 Options.bloom_locality: 0 +2025/05/04-10:09:55.630335 42 Options.max_successive_merges: 0 +2025/05/04-10:09:55.630335 42 Options.strict_max_successive_merges: 0 +2025/05/04-10:09:55.630336 42 Options.optimize_filters_for_hits: 0 +2025/05/04-10:09:55.630336 42 Options.paranoid_file_checks: 0 +2025/05/04-10:09:55.630337 42 Options.force_consistency_checks: 1 +2025/05/04-10:09:55.630337 42 Options.report_bg_io_stats: 0 +2025/05/04-10:09:55.630338 42 Options.ttl: 2592000 +2025/05/04-10:09:55.630338 42 Options.periodic_compaction_seconds: 0 +2025/05/04-10:09:55.630339 42 Options.default_temperature: kUnknown +2025/05/04-10:09:55.630340 42 Options.preclude_last_level_data_seconds: 0 +2025/05/04-10:09:55.630340 42 Options.preserve_internal_time_seconds: 0 +2025/05/04-10:09:55.630341 42 Options.enable_blob_files: false +2025/05/04-10:09:55.630341 42 Options.min_blob_size: 0 +2025/05/04-10:09:55.630342 42 Options.blob_file_size: 268435456 +2025/05/04-10:09:55.630342 42 Options.blob_compression_type: NoCompression +2025/05/04-10:09:55.630343 42 Options.enable_blob_garbage_collection: false +2025/05/04-10:09:55.630343 42 Options.blob_garbage_collection_age_cutoff: 0.250000 +2025/05/04-10:09:55.630344 42 Options.blob_garbage_collection_force_threshold: 1.000000 +2025/05/04-10:09:55.630345 42 Options.blob_compaction_readahead_size: 0 +2025/05/04-10:09:55.630345 42 Options.blob_file_starting_level: 0 +2025/05/04-10:09:55.630346 42 Options.experimental_mempurge_threshold: 0.000000 +2025/05/04-10:09:55.630346 42 Options.memtable_max_range_deletions: 0 +2025/05/04-10:09:55.630543 42 Options.comparator: leveldb.BytewiseComparator +2025/05/04-10:09:55.630544 42 Options.merge_operator: None +2025/05/04-10:09:55.630545 42 Options.compaction_filter: None +2025/05/04-10:09:55.630547 42 Options.compaction_filter_factory: None +2025/05/04-10:09:55.630548 42 Options.sst_partitioner_factory: None +2025/05/04-10:09:55.630548 42 Options.memtable_factory: SkipListFactory +2025/05/04-10:09:55.630549 42 Options.table_factory: BlockBasedTable +2025/05/04-10:09:55.630555 42 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff80600060) + cache_index_and_filter_blocks: 0 + cache_index_and_filter_blocks_with_high_priority: 1 + pin_l0_filter_and_index_blocks_in_cache: 0 + pin_top_level_index_and_filter: 1 + index_type: 0 + data_block_index_type: 0 + index_shortening: 1 + data_block_hash_table_util_ratio: 0.750000 + checksum: 4 + no_block_cache: 0 + block_cache: 0xffff80609010 + block_cache_name: LRUCache + block_cache_options: + capacity : 33554432 + num_shard_bits : 6 + strict_capacity_limit : 0 + memory_allocator : None + high_pri_pool_ratio: 0.500 + low_pri_pool_ratio: 0.000 + persistent_cache: (nil) + block_size: 4096 + block_size_deviation: 10 + block_restart_interval: 16 + index_block_restart_interval: 1 + metadata_block_size: 4096 + partition_filters: 0 + use_delta_encoding: 1 + filter_policy: nullptr + whole_key_filtering: 1 + verify_compression: 0 + read_amp_bytes_per_bit: 0 + format_version: 6 + enable_index_compression: 1 + block_align: 0 + max_auto_readahead_size: 262144 + prepopulate_block_cache: 0 + initial_auto_readahead_size: 8192 + num_file_reads_for_auto_readahead: 2 +2025/05/04-10:09:55.630555 42 Options.write_buffer_size: 10485760 +2025/05/04-10:09:55.630556 42 Options.max_write_buffer_number: 2 +2025/05/04-10:09:55.630557 42 Options.compression: LZ4 +2025/05/04-10:09:55.630557 42 Options.bottommost_compression: Disabled +2025/05/04-10:09:55.630558 42 Options.prefix_extractor: nullptr +2025/05/04-10:09:55.630558 42 Options.memtable_insert_with_hint_prefix_extractor: nullptr +2025/05/04-10:09:55.630559 42 Options.num_levels: 7 +2025/05/04-10:09:55.630559 42 Options.min_write_buffer_number_to_merge: 1 +2025/05/04-10:09:55.630560 42 Options.max_write_buffer_number_to_maintain: 0 +2025/05/04-10:09:55.630560 42 Options.max_write_buffer_size_to_maintain: 0 +2025/05/04-10:09:55.630561 42 Options.bottommost_compression_opts.window_bits: -14 +2025/05/04-10:09:55.630561 42 Options.bottommost_compression_opts.level: 32767 +2025/05/04-10:09:55.630562 42 Options.bottommost_compression_opts.strategy: 0 +2025/05/04-10:09:55.630562 42 Options.bottommost_compression_opts.max_dict_bytes: 0 +2025/05/04-10:09:55.630563 42 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 +2025/05/04-10:09:55.630564 42 Options.bottommost_compression_opts.parallel_threads: 1 +2025/05/04-10:09:55.630565 42 Options.bottommost_compression_opts.enabled: false +2025/05/04-10:09:55.630566 42 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 +2025/05/04-10:09:55.630567 42 Options.bottommost_compression_opts.use_zstd_dict_trainer: true +2025/05/04-10:09:55.630567 42 Options.compression_opts.window_bits: -14 +2025/05/04-10:09:55.630568 42 Options.compression_opts.level: 32767 +2025/05/04-10:09:55.630569 42 Options.compression_opts.strategy: 0 +2025/05/04-10:09:55.630569 42 Options.compression_opts.max_dict_bytes: 0 +2025/05/04-10:09:55.630570 42 Options.compression_opts.zstd_max_train_bytes: 0 +2025/05/04-10:09:55.630570 42 Options.compression_opts.use_zstd_dict_trainer: true +2025/05/04-10:09:55.630571 42 Options.compression_opts.parallel_threads: 1 +2025/05/04-10:09:55.630572 42 Options.compression_opts.enabled: false +2025/05/04-10:09:55.630572 42 Options.compression_opts.max_dict_buffer_bytes: 0 +2025/05/04-10:09:55.630573 42 Options.level0_file_num_compaction_trigger: 4 +2025/05/04-10:09:55.630574 42 Options.level0_slowdown_writes_trigger: 20 +2025/05/04-10:09:55.630574 42 Options.level0_stop_writes_trigger: 36 +2025/05/04-10:09:55.630575 42 Options.target_file_size_base: 67108864 +2025/05/04-10:09:55.630575 42 Options.target_file_size_multiplier: 1 +2025/05/04-10:09:55.630576 42 Options.max_bytes_for_level_base: 268435456 +2025/05/04-10:09:55.630576 42 Options.level_compaction_dynamic_level_bytes: 1 +2025/05/04-10:09:55.630577 42 Options.max_bytes_for_level_multiplier: 10.000000 +2025/05/04-10:09:55.630579 42 Options.max_bytes_for_level_multiplier_addtl[0]: 1 +2025/05/04-10:09:55.630580 42 Options.max_bytes_for_level_multiplier_addtl[1]: 1 +2025/05/04-10:09:55.630580 42 Options.max_bytes_for_level_multiplier_addtl[2]: 1 +2025/05/04-10:09:55.630581 42 Options.max_bytes_for_level_multiplier_addtl[3]: 1 +2025/05/04-10:09:55.630581 42 Options.max_bytes_for_level_multiplier_addtl[4]: 1 +2025/05/04-10:09:55.630582 42 Options.max_bytes_for_level_multiplier_addtl[5]: 1 +2025/05/04-10:09:55.630582 42 Options.max_bytes_for_level_multiplier_addtl[6]: 1 +2025/05/04-10:09:55.630583 42 Options.max_sequential_skip_in_iterations: 8 +2025/05/04-10:09:55.630583 42 Options.max_compaction_bytes: 1677721600 +2025/05/04-10:09:55.630584 42 Options.arena_block_size: 1048576 +2025/05/04-10:09:55.630585 42 Options.soft_pending_compaction_bytes_limit: 68719476736 +2025/05/04-10:09:55.630585 42 Options.hard_pending_compaction_bytes_limit: 274877906944 +2025/05/04-10:09:55.630586 42 Options.disable_auto_compactions: 0 +2025/05/04-10:09:55.630586 42 Options.compaction_style: kCompactionStyleLevel +2025/05/04-10:09:55.630587 42 Options.compaction_pri: kMinOverlappingRatio +2025/05/04-10:09:55.630587 42 Options.compaction_options_universal.size_ratio: 1 +2025/05/04-10:09:55.630588 42 Options.compaction_options_universal.min_merge_width: 2 +2025/05/04-10:09:55.630589 42 Options.compaction_options_universal.max_merge_width: 4294967295 +2025/05/04-10:09:55.630589 42 Options.compaction_options_universal.max_size_amplification_percent: 200 +2025/05/04-10:09:55.630591 42 Options.compaction_options_universal.compression_size_percent: -1 +2025/05/04-10:09:55.630592 42 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize +2025/05/04-10:09:55.630593 42 Options.compaction_options_universal.max_read_amp: -1 +2025/05/04-10:09:55.630593 42 Options.compaction_options_fifo.max_table_files_size: 1073741824 +2025/05/04-10:09:55.630594 42 Options.compaction_options_fifo.allow_compaction: 0 +2025/05/04-10:09:55.630595 42 Options.table_properties_collectors: +2025/05/04-10:09:55.630595 42 Options.inplace_update_support: 0 +2025/05/04-10:09:55.630596 42 Options.inplace_update_num_locks: 10000 +2025/05/04-10:09:55.630597 42 Options.memtable_prefix_bloom_size_ratio: 0.000000 +2025/05/04-10:09:55.630597 42 Options.memtable_whole_key_filtering: 0 +2025/05/04-10:09:55.630599 42 Options.memtable_huge_page_size: 0 +2025/05/04-10:09:55.630599 42 Options.bloom_locality: 0 +2025/05/04-10:09:55.630600 42 Options.max_successive_merges: 0 +2025/05/04-10:09:55.630600 42 Options.strict_max_successive_merges: 0 +2025/05/04-10:09:55.630601 42 Options.optimize_filters_for_hits: 0 +2025/05/04-10:09:55.630601 42 Options.paranoid_file_checks: 0 +2025/05/04-10:09:55.630602 42 Options.force_consistency_checks: 1 +2025/05/04-10:09:55.630602 42 Options.report_bg_io_stats: 0 +2025/05/04-10:09:55.630603 42 Options.ttl: 2592000 +2025/05/04-10:09:55.630604 42 Options.periodic_compaction_seconds: 0 +2025/05/04-10:09:55.630606 42 Options.default_temperature: kUnknown +2025/05/04-10:09:55.630607 42 Options.preclude_last_level_data_seconds: 0 +2025/05/04-10:09:55.630607 42 Options.preserve_internal_time_seconds: 0 +2025/05/04-10:09:55.630608 42 Options.enable_blob_files: false +2025/05/04-10:09:55.630608 42 Options.min_blob_size: 0 +2025/05/04-10:09:55.630609 42 Options.blob_file_size: 268435456 +2025/05/04-10:09:55.630630 42 Options.blob_compression_type: NoCompression +2025/05/04-10:09:55.630631 42 Options.enable_blob_garbage_collection: false +2025/05/04-10:09:55.630632 42 Options.blob_garbage_collection_age_cutoff: 0.250000 +2025/05/04-10:09:55.630632 42 Options.blob_garbage_collection_force_threshold: 1.000000 +2025/05/04-10:09:55.630633 42 Options.blob_compaction_readahead_size: 0 +2025/05/04-10:09:55.630633 42 Options.blob_file_starting_level: 0 +2025/05/04-10:09:55.630634 42 Options.experimental_mempurge_threshold: 0.000000 +2025/05/04-10:09:55.630634 42 Options.memtable_max_range_deletions: 0 +2025/05/04-10:09:55.630652 42 Options.comparator: leveldb.BytewiseComparator +2025/05/04-10:09:55.630653 42 Options.merge_operator: None +2025/05/04-10:09:55.630654 42 Options.compaction_filter: None +2025/05/04-10:09:55.630654 42 Options.compaction_filter_factory: None +2025/05/04-10:09:55.631326 42 Options.sst_partitioner_factory: None +2025/05/04-10:09:55.631329 42 Options.memtable_factory: SkipListFactory +2025/05/04-10:09:55.631330 42 Options.table_factory: BlockBasedTable +2025/05/04-10:09:55.631354 42 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff80600060) + cache_index_and_filter_blocks: 0 + cache_index_and_filter_blocks_with_high_priority: 1 + pin_l0_filter_and_index_blocks_in_cache: 0 + pin_top_level_index_and_filter: 1 + index_type: 0 + data_block_index_type: 0 + index_shortening: 1 + data_block_hash_table_util_ratio: 0.750000 + checksum: 4 + no_block_cache: 0 + block_cache: 0xffff80609010 + block_cache_name: LRUCache + block_cache_options: + capacity : 33554432 + num_shard_bits : 6 + strict_capacity_limit : 0 + memory_allocator : None + high_pri_pool_ratio: 0.500 + low_pri_pool_ratio: 0.000 + persistent_cache: (nil) + block_size: 4096 + block_size_deviation: 10 + block_restart_interval: 16 + index_block_restart_interval: 1 + metadata_block_size: 4096 + partition_filters: 0 + use_delta_encoding: 1 + filter_policy: nullptr + whole_key_filtering: 1 + verify_compression: 0 + read_amp_bytes_per_bit: 0 + format_version: 6 + enable_index_compression: 1 + block_align: 0 + max_auto_readahead_size: 262144 + prepopulate_block_cache: 0 + initial_auto_readahead_size: 8192 + num_file_reads_for_auto_readahead: 2 +2025/05/04-10:09:55.631356 42 Options.write_buffer_size: 10485760 +2025/05/04-10:09:55.631357 42 Options.max_write_buffer_number: 2 +2025/05/04-10:09:55.631357 42 Options.compression: LZ4 +2025/05/04-10:09:55.631358 42 Options.bottommost_compression: Disabled +2025/05/04-10:09:55.631359 42 Options.prefix_extractor: nullptr +2025/05/04-10:09:55.631361 42 Options.memtable_insert_with_hint_prefix_extractor: nullptr +2025/05/04-10:09:55.631362 42 Options.num_levels: 7 +2025/05/04-10:09:55.631364 42 Options.min_write_buffer_number_to_merge: 1 +2025/05/04-10:09:55.631365 42 Options.max_write_buffer_number_to_maintain: 0 +2025/05/04-10:09:55.631366 42 Options.max_write_buffer_size_to_maintain: 0 +2025/05/04-10:09:55.631367 42 Options.bottommost_compression_opts.window_bits: -14 +2025/05/04-10:09:55.631368 42 Options.bottommost_compression_opts.level: 32767 +2025/05/04-10:09:55.631368 42 Options.bottommost_compression_opts.strategy: 0 +2025/05/04-10:09:55.631369 42 Options.bottommost_compression_opts.max_dict_bytes: 0 +2025/05/04-10:09:55.631370 42 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 +2025/05/04-10:09:55.631371 42 Options.bottommost_compression_opts.parallel_threads: 1 +2025/05/04-10:09:55.631371 42 Options.bottommost_compression_opts.enabled: false +2025/05/04-10:09:55.631372 42 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 +2025/05/04-10:09:55.631373 42 Options.bottommost_compression_opts.use_zstd_dict_trainer: true +2025/05/04-10:09:55.631373 42 Options.compression_opts.window_bits: -14 +2025/05/04-10:09:55.631374 42 Options.compression_opts.level: 32767 +2025/05/04-10:09:55.631375 42 Options.compression_opts.strategy: 0 +2025/05/04-10:09:55.631375 42 Options.compression_opts.max_dict_bytes: 0 +2025/05/04-10:09:55.631376 42 Options.compression_opts.zstd_max_train_bytes: 0 +2025/05/04-10:09:55.631376 42 Options.compression_opts.use_zstd_dict_trainer: true +2025/05/04-10:09:55.631377 42 Options.compression_opts.parallel_threads: 1 +2025/05/04-10:09:55.631377 42 Options.compression_opts.enabled: false +2025/05/04-10:09:55.631379 42 Options.compression_opts.max_dict_buffer_bytes: 0 +2025/05/04-10:09:55.631380 42 Options.level0_file_num_compaction_trigger: 4 +2025/05/04-10:09:55.631381 42 Options.level0_slowdown_writes_trigger: 20 +2025/05/04-10:09:55.631381 42 Options.level0_stop_writes_trigger: 36 +2025/05/04-10:09:55.631382 42 Options.target_file_size_base: 67108864 +2025/05/04-10:09:55.631382 42 Options.target_file_size_multiplier: 1 +2025/05/04-10:09:55.631383 42 Options.max_bytes_for_level_base: 268435456 +2025/05/04-10:09:55.631383 42 Options.level_compaction_dynamic_level_bytes: 1 +2025/05/04-10:09:55.631385 42 Options.max_bytes_for_level_multiplier: 10.000000 +2025/05/04-10:09:55.631385 42 Options.max_bytes_for_level_multiplier_addtl[0]: 1 +2025/05/04-10:09:55.631386 42 Options.max_bytes_for_level_multiplier_addtl[1]: 1 +2025/05/04-10:09:55.631387 42 Options.max_bytes_for_level_multiplier_addtl[2]: 1 +2025/05/04-10:09:55.631387 42 Options.max_bytes_for_level_multiplier_addtl[3]: 1 +2025/05/04-10:09:55.631389 42 Options.max_bytes_for_level_multiplier_addtl[4]: 1 +2025/05/04-10:09:55.631390 42 Options.max_bytes_for_level_multiplier_addtl[5]: 1 +2025/05/04-10:09:55.631390 42 Options.max_bytes_for_level_multiplier_addtl[6]: 1 +2025/05/04-10:09:55.631391 42 Options.max_sequential_skip_in_iterations: 8 +2025/05/04-10:09:55.631392 42 Options.max_compaction_bytes: 1677721600 +2025/05/04-10:09:55.631392 42 Options.arena_block_size: 1048576 +2025/05/04-10:09:55.631393 42 Options.soft_pending_compaction_bytes_limit: 68719476736 +2025/05/04-10:09:55.631393 42 Options.hard_pending_compaction_bytes_limit: 274877906944 +2025/05/04-10:09:55.631394 42 Options.disable_auto_compactions: 0 +2025/05/04-10:09:55.631396 42 Options.compaction_style: kCompactionStyleLevel +2025/05/04-10:09:55.631397 42 Options.compaction_pri: kMinOverlappingRatio +2025/05/04-10:09:55.631398 42 Options.compaction_options_universal.size_ratio: 1 +2025/05/04-10:09:55.631398 42 Options.compaction_options_universal.min_merge_width: 2 +2025/05/04-10:09:55.631399 42 Options.compaction_options_universal.max_merge_width: 4294967295 +2025/05/04-10:09:55.631399 42 Options.compaction_options_universal.max_size_amplification_percent: 200 +2025/05/04-10:09:55.631400 42 Options.compaction_options_universal.compression_size_percent: -1 +2025/05/04-10:09:55.631401 42 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize +2025/05/04-10:09:55.631401 42 Options.compaction_options_universal.max_read_amp: -1 +2025/05/04-10:09:55.631402 42 Options.compaction_options_fifo.max_table_files_size: 1073741824 +2025/05/04-10:09:55.631403 42 Options.compaction_options_fifo.allow_compaction: 0 +2025/05/04-10:09:55.631406 42 Options.table_properties_collectors: +2025/05/04-10:09:55.631407 42 Options.inplace_update_support: 0 +2025/05/04-10:09:55.631408 42 Options.inplace_update_num_locks: 10000 +2025/05/04-10:09:55.631409 42 Options.memtable_prefix_bloom_size_ratio: 0.000000 +2025/05/04-10:09:55.631409 42 Options.memtable_whole_key_filtering: 0 +2025/05/04-10:09:55.631410 42 Options.memtable_huge_page_size: 0 +2025/05/04-10:09:55.631411 42 Options.bloom_locality: 0 +2025/05/04-10:09:55.631411 42 Options.max_successive_merges: 0 +2025/05/04-10:09:55.631412 42 Options.strict_max_successive_merges: 0 +2025/05/04-10:09:55.631413 42 Options.optimize_filters_for_hits: 0 +2025/05/04-10:09:55.631413 42 Options.paranoid_file_checks: 0 +2025/05/04-10:09:55.631414 42 Options.force_consistency_checks: 1 +2025/05/04-10:09:55.631415 42 Options.report_bg_io_stats: 0 +2025/05/04-10:09:55.631415 42 Options.ttl: 2592000 +2025/05/04-10:09:55.631416 42 Options.periodic_compaction_seconds: 0 +2025/05/04-10:09:55.631416 42 Options.default_temperature: kUnknown +2025/05/04-10:09:55.631417 42 Options.preclude_last_level_data_seconds: 0 +2025/05/04-10:09:55.631418 42 Options.preserve_internal_time_seconds: 0 +2025/05/04-10:09:55.631418 42 Options.enable_blob_files: false +2025/05/04-10:09:55.631419 42 Options.min_blob_size: 0 +2025/05/04-10:09:55.631419 42 Options.blob_file_size: 268435456 +2025/05/04-10:09:55.631420 42 Options.blob_compression_type: NoCompression +2025/05/04-10:09:55.631421 42 Options.enable_blob_garbage_collection: false +2025/05/04-10:09:55.631421 42 Options.blob_garbage_collection_age_cutoff: 0.250000 +2025/05/04-10:09:55.631474 42 Options.blob_garbage_collection_force_threshold: 1.000000 +2025/05/04-10:09:55.631476 42 Options.blob_compaction_readahead_size: 0 +2025/05/04-10:09:55.631476 42 Options.blob_file_starting_level: 0 +2025/05/04-10:09:55.631477 42 Options.experimental_mempurge_threshold: 0.000000 +2025/05/04-10:09:55.631477 42 Options.memtable_max_range_deletions: 0 +2025/05/04-10:09:55.631509 42 Options.comparator: leveldb.BytewiseComparator +2025/05/04-10:09:55.631511 42 Options.merge_operator: None +2025/05/04-10:09:55.631511 42 Options.compaction_filter: None +2025/05/04-10:09:55.631512 42 Options.compaction_filter_factory: None +2025/05/04-10:09:55.631512 42 Options.sst_partitioner_factory: None +2025/05/04-10:09:55.631514 42 Options.memtable_factory: SkipListFactory +2025/05/04-10:09:55.631515 42 Options.table_factory: BlockBasedTable +2025/05/04-10:09:55.631522 42 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff80600060) + cache_index_and_filter_blocks: 0 + cache_index_and_filter_blocks_with_high_priority: 1 + pin_l0_filter_and_index_blocks_in_cache: 0 + pin_top_level_index_and_filter: 1 + index_type: 0 + data_block_index_type: 0 + index_shortening: 1 + data_block_hash_table_util_ratio: 0.750000 + checksum: 4 + no_block_cache: 0 + block_cache: 0xffff80609010 + block_cache_name: LRUCache + block_cache_options: + capacity : 33554432 + num_shard_bits : 6 + strict_capacity_limit : 0 + memory_allocator : None + high_pri_pool_ratio: 0.500 + low_pri_pool_ratio: 0.000 + persistent_cache: (nil) + block_size: 4096 + block_size_deviation: 10 + block_restart_interval: 16 + index_block_restart_interval: 1 + metadata_block_size: 4096 + partition_filters: 0 + use_delta_encoding: 1 + filter_policy: nullptr + whole_key_filtering: 1 + verify_compression: 0 + read_amp_bytes_per_bit: 0 + format_version: 6 + enable_index_compression: 1 + block_align: 0 + max_auto_readahead_size: 262144 + prepopulate_block_cache: 0 + initial_auto_readahead_size: 8192 + num_file_reads_for_auto_readahead: 2 +2025/05/04-10:09:55.631524 42 Options.write_buffer_size: 10485760 +2025/05/04-10:09:55.631524 42 Options.max_write_buffer_number: 2 +2025/05/04-10:09:55.631525 42 Options.compression: LZ4 +2025/05/04-10:09:55.631526 42 Options.bottommost_compression: Disabled +2025/05/04-10:09:55.631526 42 Options.prefix_extractor: nullptr +2025/05/04-10:09:55.631527 42 Options.memtable_insert_with_hint_prefix_extractor: nullptr +2025/05/04-10:09:55.631527 42 Options.num_levels: 7 +2025/05/04-10:09:55.631528 42 Options.min_write_buffer_number_to_merge: 1 +2025/05/04-10:09:55.631528 42 Options.max_write_buffer_number_to_maintain: 0 +2025/05/04-10:09:55.631529 42 Options.max_write_buffer_size_to_maintain: 0 +2025/05/04-10:09:55.631529 42 Options.bottommost_compression_opts.window_bits: -14 +2025/05/04-10:09:55.631530 42 Options.bottommost_compression_opts.level: 32767 +2025/05/04-10:09:55.631531 42 Options.bottommost_compression_opts.strategy: 0 +2025/05/04-10:09:55.631531 42 Options.bottommost_compression_opts.max_dict_bytes: 0 +2025/05/04-10:09:55.631532 42 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 +2025/05/04-10:09:55.631532 42 Options.bottommost_compression_opts.parallel_threads: 1 +2025/05/04-10:09:55.631533 42 Options.bottommost_compression_opts.enabled: false +2025/05/04-10:09:55.631534 42 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 +2025/05/04-10:09:55.631535 42 Options.bottommost_compression_opts.use_zstd_dict_trainer: true +2025/05/04-10:09:55.631536 42 Options.compression_opts.window_bits: -14 +2025/05/04-10:09:55.631537 42 Options.compression_opts.level: 32767 +2025/05/04-10:09:55.631537 42 Options.compression_opts.strategy: 0 +2025/05/04-10:09:55.631538 42 Options.compression_opts.max_dict_bytes: 0 +2025/05/04-10:09:55.631538 42 Options.compression_opts.zstd_max_train_bytes: 0 +2025/05/04-10:09:55.631539 42 Options.compression_opts.use_zstd_dict_trainer: true +2025/05/04-10:09:55.631539 42 Options.compression_opts.parallel_threads: 1 +2025/05/04-10:09:55.631540 42 Options.compression_opts.enabled: false +2025/05/04-10:09:55.631540 42 Options.compression_opts.max_dict_buffer_bytes: 0 +2025/05/04-10:09:55.631541 42 Options.level0_file_num_compaction_trigger: 4 +2025/05/04-10:09:55.631542 42 Options.level0_slowdown_writes_trigger: 20 +2025/05/04-10:09:55.631542 42 Options.level0_stop_writes_trigger: 36 +2025/05/04-10:09:55.631543 42 Options.target_file_size_base: 67108864 +2025/05/04-10:09:55.631543 42 Options.target_file_size_multiplier: 1 +2025/05/04-10:09:55.631544 42 Options.max_bytes_for_level_base: 268435456 +2025/05/04-10:09:55.631544 42 Options.level_compaction_dynamic_level_bytes: 1 +2025/05/04-10:09:55.631545 42 Options.max_bytes_for_level_multiplier: 10.000000 +2025/05/04-10:09:55.631546 42 Options.max_bytes_for_level_multiplier_addtl[0]: 1 +2025/05/04-10:09:55.631546 42 Options.max_bytes_for_level_multiplier_addtl[1]: 1 +2025/05/04-10:09:55.631547 42 Options.max_bytes_for_level_multiplier_addtl[2]: 1 +2025/05/04-10:09:55.631547 42 Options.max_bytes_for_level_multiplier_addtl[3]: 1 +2025/05/04-10:09:55.631548 42 Options.max_bytes_for_level_multiplier_addtl[4]: 1 +2025/05/04-10:09:55.631550 42 Options.max_bytes_for_level_multiplier_addtl[5]: 1 +2025/05/04-10:09:55.631551 42 Options.max_bytes_for_level_multiplier_addtl[6]: 1 +2025/05/04-10:09:55.631552 42 Options.max_sequential_skip_in_iterations: 8 +2025/05/04-10:09:55.631553 42 Options.max_compaction_bytes: 1677721600 +2025/05/04-10:09:55.631553 42 Options.arena_block_size: 1048576 +2025/05/04-10:09:55.631554 42 Options.soft_pending_compaction_bytes_limit: 68719476736 +2025/05/04-10:09:55.631554 42 Options.hard_pending_compaction_bytes_limit: 274877906944 +2025/05/04-10:09:55.631555 42 Options.disable_auto_compactions: 0 +2025/05/04-10:09:55.631556 42 Options.compaction_style: kCompactionStyleLevel +2025/05/04-10:09:55.631556 42 Options.compaction_pri: kMinOverlappingRatio +2025/05/04-10:09:55.631557 42 Options.compaction_options_universal.size_ratio: 1 +2025/05/04-10:09:55.631557 42 Options.compaction_options_universal.min_merge_width: 2 +2025/05/04-10:09:55.631558 42 Options.compaction_options_universal.max_merge_width: 4294967295 +2025/05/04-10:09:55.631558 42 Options.compaction_options_universal.max_size_amplification_percent: 200 +2025/05/04-10:09:55.631559 42 Options.compaction_options_universal.compression_size_percent: -1 +2025/05/04-10:09:55.631560 42 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize +2025/05/04-10:09:55.631560 42 Options.compaction_options_universal.max_read_amp: -1 +2025/05/04-10:09:55.631561 42 Options.compaction_options_fifo.max_table_files_size: 1073741824 +2025/05/04-10:09:55.631561 42 Options.compaction_options_fifo.allow_compaction: 0 +2025/05/04-10:09:55.631562 42 Options.table_properties_collectors: +2025/05/04-10:09:55.631563 42 Options.inplace_update_support: 0 +2025/05/04-10:09:55.631564 42 Options.inplace_update_num_locks: 10000 +2025/05/04-10:09:55.631566 42 Options.memtable_prefix_bloom_size_ratio: 0.000000 +2025/05/04-10:09:55.631566 42 Options.memtable_whole_key_filtering: 0 +2025/05/04-10:09:55.631568 42 Options.memtable_huge_page_size: 0 +2025/05/04-10:09:55.631569 42 Options.bloom_locality: 0 +2025/05/04-10:09:55.631569 42 Options.max_successive_merges: 0 +2025/05/04-10:09:55.631570 42 Options.strict_max_successive_merges: 0 +2025/05/04-10:09:55.631570 42 Options.optimize_filters_for_hits: 0 +2025/05/04-10:09:55.631571 42 Options.paranoid_file_checks: 0 +2025/05/04-10:09:55.631572 42 Options.force_consistency_checks: 1 +2025/05/04-10:09:55.631573 42 Options.report_bg_io_stats: 0 +2025/05/04-10:09:55.631573 42 Options.ttl: 2592000 +2025/05/04-10:09:55.631574 42 Options.periodic_compaction_seconds: 0 +2025/05/04-10:09:55.631574 42 Options.default_temperature: kUnknown +2025/05/04-10:09:55.631575 42 Options.preclude_last_level_data_seconds: 0 +2025/05/04-10:09:55.631576 42 Options.preserve_internal_time_seconds: 0 +2025/05/04-10:09:55.631576 42 Options.enable_blob_files: false +2025/05/04-10:09:55.631577 42 Options.min_blob_size: 0 +2025/05/04-10:09:55.631577 42 Options.blob_file_size: 268435456 +2025/05/04-10:09:55.631578 42 Options.blob_compression_type: NoCompression +2025/05/04-10:09:55.631579 42 Options.enable_blob_garbage_collection: false +2025/05/04-10:09:55.631579 42 Options.blob_garbage_collection_age_cutoff: 0.250000 +2025/05/04-10:09:55.631580 42 Options.blob_garbage_collection_force_threshold: 1.000000 +2025/05/04-10:09:55.631581 42 Options.blob_compaction_readahead_size: 0 +2025/05/04-10:09:55.631581 42 Options.blob_file_starting_level: 0 +2025/05/04-10:09:55.631582 42 Options.experimental_mempurge_threshold: 0.000000 +2025/05/04-10:09:55.631582 42 Options.memtable_max_range_deletions: 0 +2025/05/04-10:09:55.631598 42 Options.comparator: leveldb.BytewiseComparator +2025/05/04-10:09:55.631599 42 Options.merge_operator: None +2025/05/04-10:09:55.631600 42 Options.compaction_filter: None +2025/05/04-10:09:55.631600 42 Options.compaction_filter_factory: None +2025/05/04-10:09:55.631601 42 Options.sst_partitioner_factory: None +2025/05/04-10:09:55.631835 42 Options.memtable_factory: SkipListFactory +2025/05/04-10:09:55.631836 42 Options.table_factory: BlockBasedTable +2025/05/04-10:09:55.631844 42 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff80600060) + cache_index_and_filter_blocks: 0 + cache_index_and_filter_blocks_with_high_priority: 1 + pin_l0_filter_and_index_blocks_in_cache: 0 + pin_top_level_index_and_filter: 1 + index_type: 0 + data_block_index_type: 0 + index_shortening: 1 + data_block_hash_table_util_ratio: 0.750000 + checksum: 4 + no_block_cache: 0 + block_cache: 0xffff80609010 + block_cache_name: LRUCache + block_cache_options: + capacity : 33554432 + num_shard_bits : 6 + strict_capacity_limit : 0 + memory_allocator : None + high_pri_pool_ratio: 0.500 + low_pri_pool_ratio: 0.000 + persistent_cache: (nil) + block_size: 4096 + block_size_deviation: 10 + block_restart_interval: 16 + index_block_restart_interval: 1 + metadata_block_size: 4096 + partition_filters: 0 + use_delta_encoding: 1 + filter_policy: nullptr + whole_key_filtering: 1 + verify_compression: 0 + read_amp_bytes_per_bit: 0 + format_version: 6 + enable_index_compression: 1 + block_align: 0 + max_auto_readahead_size: 262144 + prepopulate_block_cache: 0 + initial_auto_readahead_size: 8192 + num_file_reads_for_auto_readahead: 2 +2025/05/04-10:09:55.631846 42 Options.write_buffer_size: 10485760 +2025/05/04-10:09:55.631847 42 Options.max_write_buffer_number: 2 +2025/05/04-10:09:55.631848 42 Options.compression: LZ4 +2025/05/04-10:09:55.631848 42 Options.bottommost_compression: Disabled +2025/05/04-10:09:55.631849 42 Options.prefix_extractor: nullptr +2025/05/04-10:09:55.631849 42 Options.memtable_insert_with_hint_prefix_extractor: nullptr +2025/05/04-10:09:55.631850 42 Options.num_levels: 7 +2025/05/04-10:09:55.631850 42 Options.min_write_buffer_number_to_merge: 1 +2025/05/04-10:09:55.631851 42 Options.max_write_buffer_number_to_maintain: 0 +2025/05/04-10:09:55.631852 42 Options.max_write_buffer_size_to_maintain: 0 +2025/05/04-10:09:55.631852 42 Options.bottommost_compression_opts.window_bits: -14 +2025/05/04-10:09:55.631854 42 Options.bottommost_compression_opts.level: 32767 +2025/05/04-10:09:55.631855 42 Options.bottommost_compression_opts.strategy: 0 +2025/05/04-10:09:55.631855 42 Options.bottommost_compression_opts.max_dict_bytes: 0 +2025/05/04-10:09:55.631856 42 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 +2025/05/04-10:09:55.631857 42 Options.bottommost_compression_opts.parallel_threads: 1 +2025/05/04-10:09:55.631857 42 Options.bottommost_compression_opts.enabled: false +2025/05/04-10:09:55.631858 42 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 +2025/05/04-10:09:55.631858 42 Options.bottommost_compression_opts.use_zstd_dict_trainer: true +2025/05/04-10:09:55.631859 42 Options.compression_opts.window_bits: -14 +2025/05/04-10:09:55.631873 42 Options.compression_opts.level: 32767 +2025/05/04-10:09:55.631874 42 Options.compression_opts.strategy: 0 +2025/05/04-10:09:55.631874 42 Options.compression_opts.max_dict_bytes: 0 +2025/05/04-10:09:55.631875 42 Options.compression_opts.zstd_max_train_bytes: 0 +2025/05/04-10:09:55.631876 42 Options.compression_opts.use_zstd_dict_trainer: true +2025/05/04-10:09:55.631877 42 Options.compression_opts.parallel_threads: 1 +2025/05/04-10:09:55.631877 42 Options.compression_opts.enabled: false +2025/05/04-10:09:55.631878 42 Options.compression_opts.max_dict_buffer_bytes: 0 +2025/05/04-10:09:55.631878 42 Options.level0_file_num_compaction_trigger: 4 +2025/05/04-10:09:55.631879 42 Options.level0_slowdown_writes_trigger: 20 +2025/05/04-10:09:55.631879 42 Options.level0_stop_writes_trigger: 36 +2025/05/04-10:09:55.631880 42 Options.target_file_size_base: 67108864 +2025/05/04-10:09:55.631880 42 Options.target_file_size_multiplier: 1 +2025/05/04-10:09:55.631882 42 Options.max_bytes_for_level_base: 268435456 +2025/05/04-10:09:55.631882 42 Options.level_compaction_dynamic_level_bytes: 1 +2025/05/04-10:09:55.631883 42 Options.max_bytes_for_level_multiplier: 10.000000 +2025/05/04-10:09:55.631884 42 Options.max_bytes_for_level_multiplier_addtl[0]: 1 +2025/05/04-10:09:55.631885 42 Options.max_bytes_for_level_multiplier_addtl[1]: 1 +2025/05/04-10:09:55.631885 42 Options.max_bytes_for_level_multiplier_addtl[2]: 1 +2025/05/04-10:09:55.631886 42 Options.max_bytes_for_level_multiplier_addtl[3]: 1 +2025/05/04-10:09:55.631886 42 Options.max_bytes_for_level_multiplier_addtl[4]: 1 +2025/05/04-10:09:55.631887 42 Options.max_bytes_for_level_multiplier_addtl[5]: 1 +2025/05/04-10:09:55.631887 42 Options.max_bytes_for_level_multiplier_addtl[6]: 1 +2025/05/04-10:09:55.631888 42 Options.max_sequential_skip_in_iterations: 8 +2025/05/04-10:09:55.631889 42 Options.max_compaction_bytes: 1677721600 +2025/05/04-10:09:55.631889 42 Options.arena_block_size: 1048576 +2025/05/04-10:09:55.631890 42 Options.soft_pending_compaction_bytes_limit: 68719476736 +2025/05/04-10:09:55.631891 42 Options.hard_pending_compaction_bytes_limit: 274877906944 +2025/05/04-10:09:55.631891 42 Options.disable_auto_compactions: 0 +2025/05/04-10:09:55.631892 42 Options.compaction_style: kCompactionStyleLevel +2025/05/04-10:09:55.631893 42 Options.compaction_pri: kMinOverlappingRatio +2025/05/04-10:09:55.631893 42 Options.compaction_options_universal.size_ratio: 1 +2025/05/04-10:09:55.631894 42 Options.compaction_options_universal.min_merge_width: 2 +2025/05/04-10:09:55.631894 42 Options.compaction_options_universal.max_merge_width: 4294967295 +2025/05/04-10:09:55.631895 42 Options.compaction_options_universal.max_size_amplification_percent: 200 +2025/05/04-10:09:55.631895 42 Options.compaction_options_universal.compression_size_percent: -1 +2025/05/04-10:09:55.631896 42 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize +2025/05/04-10:09:55.631897 42 Options.compaction_options_universal.max_read_amp: -1 +2025/05/04-10:09:55.631897 42 Options.compaction_options_fifo.max_table_files_size: 1073741824 +2025/05/04-10:09:55.631898 42 Options.compaction_options_fifo.allow_compaction: 0 +2025/05/04-10:09:55.631899 42 Options.table_properties_collectors: +2025/05/04-10:09:55.631900 42 Options.inplace_update_support: 0 +2025/05/04-10:09:55.631900 42 Options.inplace_update_num_locks: 10000 +2025/05/04-10:09:55.631901 42 Options.memtable_prefix_bloom_size_ratio: 0.000000 +2025/05/04-10:09:55.631901 42 Options.memtable_whole_key_filtering: 0 +2025/05/04-10:09:55.631902 42 Options.memtable_huge_page_size: 0 +2025/05/04-10:09:55.631902 42 Options.bloom_locality: 0 +2025/05/04-10:09:55.631903 42 Options.max_successive_merges: 0 +2025/05/04-10:09:55.631903 42 Options.strict_max_successive_merges: 0 +2025/05/04-10:09:55.631904 42 Options.optimize_filters_for_hits: 0 +2025/05/04-10:09:55.631904 42 Options.paranoid_file_checks: 0 +2025/05/04-10:09:55.631905 42 Options.force_consistency_checks: 1 +2025/05/04-10:09:55.631905 42 Options.report_bg_io_stats: 0 +2025/05/04-10:09:55.631906 42 Options.ttl: 2592000 +2025/05/04-10:09:55.631907 42 Options.periodic_compaction_seconds: 0 +2025/05/04-10:09:55.632001 42 Options.default_temperature: kUnknown +2025/05/04-10:09:55.632004 42 Options.preclude_last_level_data_seconds: 0 +2025/05/04-10:09:55.632006 42 Options.preserve_internal_time_seconds: 0 +2025/05/04-10:09:55.632007 42 Options.enable_blob_files: false +2025/05/04-10:09:55.632008 42 Options.min_blob_size: 0 +2025/05/04-10:09:55.632009 42 Options.blob_file_size: 268435456 +2025/05/04-10:09:55.632010 42 Options.blob_compression_type: NoCompression +2025/05/04-10:09:55.632011 42 Options.enable_blob_garbage_collection: false +2025/05/04-10:09:55.632014 42 Options.blob_garbage_collection_age_cutoff: 0.250000 +2025/05/04-10:09:55.632016 42 Options.blob_garbage_collection_force_threshold: 1.000000 +2025/05/04-10:09:55.632017 42 Options.blob_compaction_readahead_size: 0 +2025/05/04-10:09:55.632018 42 Options.blob_file_starting_level: 0 +2025/05/04-10:09:55.632019 42 Options.experimental_mempurge_threshold: 0.000000 +2025/05/04-10:09:55.632021 42 Options.memtable_max_range_deletions: 0 +2025/05/04-10:09:55.672416 42 DB pointer 0xffff80663c00 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/MANIFEST-000019 b/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/MANIFEST-000019 new file mode 100644 index 0000000000000000000000000000000000000000..56e20c71b5e2254df1451a7462fb983c05decd8b Binary files /dev/null and b/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/MANIFEST-000019 differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/OPTIONS-000017 b/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/OPTIONS-000017 new file mode 100644 index 0000000000000000000000000000000000000000..ad2b181add715408dc69839970eebfd4c1a28b4b --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/OPTIONS-000017 @@ -0,0 +1,670 @@ +# This is a RocksDB option file. +# +# For detailed file format spec, please refer to the example file +# in examples/rocksdb_option_file_example.ini +# + +[Version] + rocksdb_version=9.9.3 + options_file_version=1.1 + +[DBOptions] + compaction_readahead_size=2097152 + strict_bytes_per_sync=false + bytes_per_sync=0 + max_background_jobs=2 + avoid_flush_during_shutdown=false + max_background_flushes=-1 + delayed_write_rate=16777216 + max_open_files=256 + max_subcompactions=1 + writable_file_max_buffer_size=1048576 + wal_bytes_per_sync=0 + max_background_compactions=-1 + max_total_wal_size=0 + delete_obsolete_files_period_micros=180000000 + stats_dump_period_sec=600 + stats_history_buffer_size=1048576 + stats_persist_period_sec=600 + follower_refresh_catchup_period_ms=10000 + enforce_single_del_contracts=true + lowest_used_cache_tier=kNonVolatileBlockTier + bgerror_resume_retry_interval=1000000 + metadata_write_temperature=kUnknown + best_efforts_recovery=false + log_readahead_size=0 + write_identity_file=true + write_dbid_to_manifest=true + prefix_seek_opt_in_only=false + wal_compression=kNoCompression + manual_wal_flush=false + db_host_id=__hostname__ + two_write_queues=false + random_access_max_buffer_size=1048576 + avoid_unnecessary_blocking_io=false + skip_checking_sst_file_sizes_on_db_open=false + flush_verify_memtable_count=true + fail_if_options_file_error=true + atomic_flush=false + verify_sst_unique_id_in_manifest=true + skip_stats_update_on_db_open=false + track_and_verify_wals_in_manifest=false + compaction_verify_record_count=true + paranoid_checks=true + create_if_missing=true + max_write_batch_group_size_bytes=1048576 + follower_catchup_retry_count=10 + avoid_flush_during_recovery=false + file_checksum_gen_factory=nullptr + enable_thread_tracking=false + allow_fallocate=true + allow_data_in_errors=false + error_if_exists=false + use_direct_io_for_flush_and_compaction=false + background_close_inactive_wals=false + create_missing_column_families=true + WAL_size_limit_MB=0 + use_direct_reads=false + persist_stats_to_disk=false + allow_2pc=false + is_fd_close_on_exec=true + max_log_file_size=1048576 + max_file_opening_threads=16 + wal_filter=nullptr + wal_write_temperature=kUnknown + follower_catchup_retry_wait_ms=100 + allow_mmap_reads=false + allow_mmap_writes=false + use_adaptive_mutex=false + use_fsync=false + table_cache_numshardbits=6 + dump_malloc_stats=false + db_write_buffer_size=0 + allow_ingest_behind=false + keep_log_file_num=1 + max_bgerror_resume_count=2147483647 + allow_concurrent_memtable_write=true + recycle_log_file_num=0 + log_file_time_to_roll=0 + manifest_preallocation_size=4194304 + enable_write_thread_adaptive_yield=true + WAL_ttl_seconds=0 + max_manifest_file_size=1073741824 + wal_recovery_mode=kTolerateCorruptedTailRecords + enable_pipelined_write=false + write_thread_slow_yield_usec=3 + unordered_write=false + write_thread_max_yield_usec=100 + advise_random_on_open=true + info_log_level=ERROR_LEVEL + + +[CFOptions "default"] + memtable_max_range_deletions=0 + compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_memory_checks=false + block_protection_bytes_per_key=0 + uncache_aggressiveness=0 + bottommost_file_compaction_delay=0 + memtable_protection_bytes_per_key=0 + experimental_mempurge_threshold=0.000000 + bottommost_compression=kDisableCompressionOption + sample_for_compression=0 + prepopulate_blob_cache=kDisable + blob_file_starting_level=0 + blob_compaction_readahead_size=0 + table_factory=BlockBasedTable + max_successive_merges=0 + max_write_buffer_number=2 + prefix_extractor=nullptr + memtable_huge_page_size=0 + write_buffer_size=10485760 + strict_max_successive_merges=false + arena_block_size=1048576 + level0_file_num_compaction_trigger=4 + report_bg_io_stats=false + inplace_update_num_locks=10000 + memtable_prefix_bloom_size_ratio=0.000000 + level0_stop_writes_trigger=36 + blob_compression_type=kNoCompression + level0_slowdown_writes_trigger=20 + hard_pending_compaction_bytes_limit=274877906944 + target_file_size_multiplier=1 + bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_file_checks=false + blob_garbage_collection_force_threshold=1.000000 + enable_blob_files=false + soft_pending_compaction_bytes_limit=68719476736 + target_file_size_base=67108864 + max_compaction_bytes=1677721600 + disable_auto_compactions=false + min_blob_size=0 + memtable_whole_key_filtering=false + max_bytes_for_level_base=268435456 + last_level_temperature=kUnknown + preserve_internal_time_seconds=0 + compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} + max_bytes_for_level_multiplier=10.000000 + max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 + max_sequential_skip_in_iterations=8 + compression=kLZ4Compression + default_write_temperature=kUnknown + compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} + blob_garbage_collection_age_cutoff=0.250000 + ttl=2592000 + periodic_compaction_seconds=0 + preclude_last_level_data_seconds=0 + blob_file_size=268435456 + enable_blob_garbage_collection=false + persist_user_defined_timestamps=true + compaction_pri=kMinOverlappingRatio + compaction_filter_factory=nullptr + comparator=leveldb.BytewiseComparator + bloom_locality=0 + merge_operator=nullptr + compaction_filter=nullptr + level_compaction_dynamic_level_bytes=true + optimize_filters_for_hits=false + inplace_update_support=false + max_write_buffer_number_to_maintain=0 + max_write_buffer_size_to_maintain=0 + sst_partitioner_factory=nullptr + default_temperature=kUnknown + compaction_style=kCompactionStyleLevel + min_write_buffer_number_to_merge=1 + memtable_factory=SkipListFactory + memtable_insert_with_hint_prefix_extractor=nullptr + force_consistency_checks=true + num_levels=7 + +[TableOptions/BlockBasedTable "default"] + num_file_reads_for_auto_readahead=2 + initial_auto_readahead_size=8192 + metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} + enable_index_compression=true + verify_compression=false + prepopulate_block_cache=kDisable + format_version=6 + use_delta_encoding=true + pin_top_level_index_and_filter=true + read_amp_bytes_per_bit=0 + decouple_partitioned_filters=false + partition_filters=false + metadata_block_size=4096 + max_auto_readahead_size=262144 + index_block_restart_interval=1 + block_size_deviation=10 + block_size=4096 + detect_filter_construct_corruption=false + no_block_cache=false + checksum=kXXH3 + filter_policy=nullptr + data_block_hash_table_util_ratio=0.750000 + block_restart_interval=16 + index_type=kBinarySearch + pin_l0_filter_and_index_blocks_in_cache=false + data_block_index_type=kDataBlockBinarySearch + cache_index_and_filter_blocks_with_high_priority=true + whole_key_filtering=true + index_shortening=kShortenSeparators + cache_index_and_filter_blocks=false + block_align=false + optimize_filters_for_memory=true + flush_block_policy_factory=FlushBlockBySizePolicyFactory + + +[CFOptions "payload"] + memtable_max_range_deletions=0 + compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_memory_checks=false + block_protection_bytes_per_key=0 + uncache_aggressiveness=0 + bottommost_file_compaction_delay=0 + memtable_protection_bytes_per_key=0 + experimental_mempurge_threshold=0.000000 + bottommost_compression=kDisableCompressionOption + sample_for_compression=0 + prepopulate_blob_cache=kDisable + blob_file_starting_level=0 + blob_compaction_readahead_size=0 + table_factory=BlockBasedTable + max_successive_merges=0 + max_write_buffer_number=2 + prefix_extractor=nullptr + memtable_huge_page_size=0 + write_buffer_size=10485760 + strict_max_successive_merges=false + arena_block_size=1048576 + level0_file_num_compaction_trigger=4 + report_bg_io_stats=false + inplace_update_num_locks=10000 + memtable_prefix_bloom_size_ratio=0.000000 + level0_stop_writes_trigger=36 + blob_compression_type=kNoCompression + level0_slowdown_writes_trigger=20 + hard_pending_compaction_bytes_limit=274877906944 + target_file_size_multiplier=1 + bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_file_checks=false + blob_garbage_collection_force_threshold=1.000000 + enable_blob_files=false + soft_pending_compaction_bytes_limit=68719476736 + target_file_size_base=67108864 + max_compaction_bytes=1677721600 + disable_auto_compactions=false + min_blob_size=0 + memtable_whole_key_filtering=false + max_bytes_for_level_base=268435456 + last_level_temperature=kUnknown + preserve_internal_time_seconds=0 + compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} + max_bytes_for_level_multiplier=10.000000 + max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 + max_sequential_skip_in_iterations=8 + compression=kLZ4Compression + default_write_temperature=kUnknown + compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} + blob_garbage_collection_age_cutoff=0.250000 + ttl=2592000 + periodic_compaction_seconds=0 + preclude_last_level_data_seconds=0 + blob_file_size=268435456 + enable_blob_garbage_collection=false + persist_user_defined_timestamps=true + compaction_pri=kMinOverlappingRatio + compaction_filter_factory=nullptr + comparator=leveldb.BytewiseComparator + bloom_locality=0 + merge_operator=nullptr + compaction_filter=nullptr + level_compaction_dynamic_level_bytes=true + optimize_filters_for_hits=false + inplace_update_support=false + max_write_buffer_number_to_maintain=0 + max_write_buffer_size_to_maintain=0 + sst_partitioner_factory=nullptr + default_temperature=kUnknown + compaction_style=kCompactionStyleLevel + min_write_buffer_number_to_merge=1 + memtable_factory=SkipListFactory + memtable_insert_with_hint_prefix_extractor=nullptr + force_consistency_checks=true + num_levels=7 + +[TableOptions/BlockBasedTable "payload"] + num_file_reads_for_auto_readahead=2 + initial_auto_readahead_size=8192 + metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} + enable_index_compression=true + verify_compression=false + prepopulate_block_cache=kDisable + format_version=6 + use_delta_encoding=true + pin_top_level_index_and_filter=true + read_amp_bytes_per_bit=0 + decouple_partitioned_filters=false + partition_filters=false + metadata_block_size=4096 + max_auto_readahead_size=262144 + index_block_restart_interval=1 + block_size_deviation=10 + block_size=4096 + detect_filter_construct_corruption=false + no_block_cache=false + checksum=kXXH3 + filter_policy=nullptr + data_block_hash_table_util_ratio=0.750000 + block_restart_interval=16 + index_type=kBinarySearch + pin_l0_filter_and_index_blocks_in_cache=false + data_block_index_type=kDataBlockBinarySearch + cache_index_and_filter_blocks_with_high_priority=true + whole_key_filtering=true + index_shortening=kShortenSeparators + cache_index_and_filter_blocks=false + block_align=false + optimize_filters_for_memory=true + flush_block_policy_factory=FlushBlockBySizePolicyFactory + + +[CFOptions "mapping"] + memtable_max_range_deletions=0 + compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_memory_checks=false + block_protection_bytes_per_key=0 + uncache_aggressiveness=0 + bottommost_file_compaction_delay=0 + memtable_protection_bytes_per_key=0 + experimental_mempurge_threshold=0.000000 + bottommost_compression=kDisableCompressionOption + sample_for_compression=0 + prepopulate_blob_cache=kDisable + blob_file_starting_level=0 + blob_compaction_readahead_size=0 + table_factory=BlockBasedTable + max_successive_merges=0 + max_write_buffer_number=2 + prefix_extractor=nullptr + memtable_huge_page_size=0 + write_buffer_size=10485760 + strict_max_successive_merges=false + arena_block_size=1048576 + level0_file_num_compaction_trigger=4 + report_bg_io_stats=false + inplace_update_num_locks=10000 + memtable_prefix_bloom_size_ratio=0.000000 + level0_stop_writes_trigger=36 + blob_compression_type=kNoCompression + level0_slowdown_writes_trigger=20 + hard_pending_compaction_bytes_limit=274877906944 + target_file_size_multiplier=1 + bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_file_checks=false + blob_garbage_collection_force_threshold=1.000000 + enable_blob_files=false + soft_pending_compaction_bytes_limit=68719476736 + target_file_size_base=67108864 + max_compaction_bytes=1677721600 + disable_auto_compactions=false + min_blob_size=0 + memtable_whole_key_filtering=false + max_bytes_for_level_base=268435456 + last_level_temperature=kUnknown + preserve_internal_time_seconds=0 + compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} + max_bytes_for_level_multiplier=10.000000 + max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 + max_sequential_skip_in_iterations=8 + compression=kLZ4Compression + default_write_temperature=kUnknown + compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} + blob_garbage_collection_age_cutoff=0.250000 + ttl=2592000 + periodic_compaction_seconds=0 + preclude_last_level_data_seconds=0 + blob_file_size=268435456 + enable_blob_garbage_collection=false + persist_user_defined_timestamps=true + compaction_pri=kMinOverlappingRatio + compaction_filter_factory=nullptr + comparator=leveldb.BytewiseComparator + bloom_locality=0 + merge_operator=nullptr + compaction_filter=nullptr + level_compaction_dynamic_level_bytes=true + optimize_filters_for_hits=false + inplace_update_support=false + max_write_buffer_number_to_maintain=0 + max_write_buffer_size_to_maintain=0 + sst_partitioner_factory=nullptr + default_temperature=kUnknown + compaction_style=kCompactionStyleLevel + min_write_buffer_number_to_merge=1 + memtable_factory=SkipListFactory + memtable_insert_with_hint_prefix_extractor=nullptr + force_consistency_checks=true + num_levels=7 + +[TableOptions/BlockBasedTable "mapping"] + num_file_reads_for_auto_readahead=2 + initial_auto_readahead_size=8192 + metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} + enable_index_compression=true + verify_compression=false + prepopulate_block_cache=kDisable + format_version=6 + use_delta_encoding=true + pin_top_level_index_and_filter=true + read_amp_bytes_per_bit=0 + decouple_partitioned_filters=false + partition_filters=false + metadata_block_size=4096 + max_auto_readahead_size=262144 + index_block_restart_interval=1 + block_size_deviation=10 + block_size=4096 + detect_filter_construct_corruption=false + no_block_cache=false + checksum=kXXH3 + filter_policy=nullptr + data_block_hash_table_util_ratio=0.750000 + block_restart_interval=16 + index_type=kBinarySearch + pin_l0_filter_and_index_blocks_in_cache=false + data_block_index_type=kDataBlockBinarySearch + cache_index_and_filter_blocks_with_high_priority=true + whole_key_filtering=true + index_shortening=kShortenSeparators + cache_index_and_filter_blocks=false + block_align=false + optimize_filters_for_memory=true + flush_block_policy_factory=FlushBlockBySizePolicyFactory + + +[CFOptions "version"] + memtable_max_range_deletions=0 + compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_memory_checks=false + block_protection_bytes_per_key=0 + uncache_aggressiveness=0 + bottommost_file_compaction_delay=0 + memtable_protection_bytes_per_key=0 + experimental_mempurge_threshold=0.000000 + bottommost_compression=kDisableCompressionOption + sample_for_compression=0 + prepopulate_blob_cache=kDisable + blob_file_starting_level=0 + blob_compaction_readahead_size=0 + table_factory=BlockBasedTable + max_successive_merges=0 + max_write_buffer_number=2 + prefix_extractor=nullptr + memtable_huge_page_size=0 + write_buffer_size=10485760 + strict_max_successive_merges=false + arena_block_size=1048576 + level0_file_num_compaction_trigger=4 + report_bg_io_stats=false + inplace_update_num_locks=10000 + memtable_prefix_bloom_size_ratio=0.000000 + level0_stop_writes_trigger=36 + blob_compression_type=kNoCompression + level0_slowdown_writes_trigger=20 + hard_pending_compaction_bytes_limit=274877906944 + target_file_size_multiplier=1 + bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_file_checks=false + blob_garbage_collection_force_threshold=1.000000 + enable_blob_files=false + soft_pending_compaction_bytes_limit=68719476736 + target_file_size_base=67108864 + max_compaction_bytes=1677721600 + disable_auto_compactions=false + min_blob_size=0 + memtable_whole_key_filtering=false + max_bytes_for_level_base=268435456 + last_level_temperature=kUnknown + preserve_internal_time_seconds=0 + compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} + max_bytes_for_level_multiplier=10.000000 + max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 + max_sequential_skip_in_iterations=8 + compression=kLZ4Compression + default_write_temperature=kUnknown + compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} + blob_garbage_collection_age_cutoff=0.250000 + ttl=2592000 + periodic_compaction_seconds=0 + preclude_last_level_data_seconds=0 + blob_file_size=268435456 + enable_blob_garbage_collection=false + persist_user_defined_timestamps=true + compaction_pri=kMinOverlappingRatio + compaction_filter_factory=nullptr + comparator=leveldb.BytewiseComparator + bloom_locality=0 + merge_operator=nullptr + compaction_filter=nullptr + level_compaction_dynamic_level_bytes=true + optimize_filters_for_hits=false + inplace_update_support=false + max_write_buffer_number_to_maintain=0 + max_write_buffer_size_to_maintain=0 + sst_partitioner_factory=nullptr + default_temperature=kUnknown + compaction_style=kCompactionStyleLevel + min_write_buffer_number_to_merge=1 + memtable_factory=SkipListFactory + memtable_insert_with_hint_prefix_extractor=nullptr + force_consistency_checks=true + num_levels=7 + +[TableOptions/BlockBasedTable "version"] + num_file_reads_for_auto_readahead=2 + initial_auto_readahead_size=8192 + metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} + enable_index_compression=true + verify_compression=false + prepopulate_block_cache=kDisable + format_version=6 + use_delta_encoding=true + pin_top_level_index_and_filter=true + read_amp_bytes_per_bit=0 + decouple_partitioned_filters=false + partition_filters=false + metadata_block_size=4096 + max_auto_readahead_size=262144 + index_block_restart_interval=1 + block_size_deviation=10 + block_size=4096 + detect_filter_construct_corruption=false + no_block_cache=false + checksum=kXXH3 + filter_policy=nullptr + data_block_hash_table_util_ratio=0.750000 + block_restart_interval=16 + index_type=kBinarySearch + pin_l0_filter_and_index_blocks_in_cache=false + data_block_index_type=kDataBlockBinarySearch + cache_index_and_filter_blocks_with_high_priority=true + whole_key_filtering=true + index_shortening=kShortenSeparators + cache_index_and_filter_blocks=false + block_align=false + optimize_filters_for_memory=true + flush_block_policy_factory=FlushBlockBySizePolicyFactory + + +[CFOptions "vector"] + memtable_max_range_deletions=0 + compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_memory_checks=false + block_protection_bytes_per_key=0 + uncache_aggressiveness=0 + bottommost_file_compaction_delay=0 + memtable_protection_bytes_per_key=0 + experimental_mempurge_threshold=0.000000 + bottommost_compression=kDisableCompressionOption + sample_for_compression=0 + prepopulate_blob_cache=kDisable + blob_file_starting_level=0 + blob_compaction_readahead_size=0 + table_factory=BlockBasedTable + max_successive_merges=0 + max_write_buffer_number=2 + prefix_extractor=nullptr + memtable_huge_page_size=0 + write_buffer_size=10485760 + strict_max_successive_merges=false + arena_block_size=1048576 + level0_file_num_compaction_trigger=4 + report_bg_io_stats=false + inplace_update_num_locks=10000 + memtable_prefix_bloom_size_ratio=0.000000 + level0_stop_writes_trigger=36 + blob_compression_type=kNoCompression + level0_slowdown_writes_trigger=20 + hard_pending_compaction_bytes_limit=274877906944 + target_file_size_multiplier=1 + bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_file_checks=false + blob_garbage_collection_force_threshold=1.000000 + enable_blob_files=false + soft_pending_compaction_bytes_limit=68719476736 + target_file_size_base=67108864 + max_compaction_bytes=1677721600 + disable_auto_compactions=false + min_blob_size=0 + memtable_whole_key_filtering=false + max_bytes_for_level_base=268435456 + last_level_temperature=kUnknown + preserve_internal_time_seconds=0 + compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} + max_bytes_for_level_multiplier=10.000000 + max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 + max_sequential_skip_in_iterations=8 + compression=kLZ4Compression + default_write_temperature=kUnknown + compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} + blob_garbage_collection_age_cutoff=0.250000 + ttl=2592000 + periodic_compaction_seconds=0 + preclude_last_level_data_seconds=0 + blob_file_size=268435456 + enable_blob_garbage_collection=false + persist_user_defined_timestamps=true + compaction_pri=kMinOverlappingRatio + compaction_filter_factory=nullptr + comparator=leveldb.BytewiseComparator + bloom_locality=0 + merge_operator=nullptr + compaction_filter=nullptr + level_compaction_dynamic_level_bytes=true + optimize_filters_for_hits=false + inplace_update_support=false + max_write_buffer_number_to_maintain=0 + max_write_buffer_size_to_maintain=0 + sst_partitioner_factory=nullptr + default_temperature=kUnknown + compaction_style=kCompactionStyleLevel + min_write_buffer_number_to_merge=1 + memtable_factory=SkipListFactory + memtable_insert_with_hint_prefix_extractor=nullptr + force_consistency_checks=true + num_levels=7 + +[TableOptions/BlockBasedTable "vector"] + num_file_reads_for_auto_readahead=2 + initial_auto_readahead_size=8192 + metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} + enable_index_compression=true + verify_compression=false + prepopulate_block_cache=kDisable + format_version=6 + use_delta_encoding=true + pin_top_level_index_and_filter=true + read_amp_bytes_per_bit=0 + decouple_partitioned_filters=false + partition_filters=false + metadata_block_size=4096 + max_auto_readahead_size=262144 + index_block_restart_interval=1 + block_size_deviation=10 + block_size=4096 + detect_filter_construct_corruption=false + no_block_cache=false + checksum=kXXH3 + filter_policy=nullptr + data_block_hash_table_util_ratio=0.750000 + block_restart_interval=16 + index_type=kBinarySearch + pin_l0_filter_and_index_blocks_in_cache=false + data_block_index_type=kDataBlockBinarySearch + cache_index_and_filter_blocks_with_high_priority=true + whole_key_filtering=true + index_shortening=kShortenSeparators + cache_index_and_filter_blocks=false + block_align=false + optimize_filters_for_memory=true + flush_block_policy_factory=FlushBlockBySizePolicyFactory + diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/OPTIONS-000021 b/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/OPTIONS-000021 new file mode 100644 index 0000000000000000000000000000000000000000..ad2b181add715408dc69839970eebfd4c1a28b4b --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/OPTIONS-000021 @@ -0,0 +1,670 @@ +# This is a RocksDB option file. +# +# For detailed file format spec, please refer to the example file +# in examples/rocksdb_option_file_example.ini +# + +[Version] + rocksdb_version=9.9.3 + options_file_version=1.1 + +[DBOptions] + compaction_readahead_size=2097152 + strict_bytes_per_sync=false + bytes_per_sync=0 + max_background_jobs=2 + avoid_flush_during_shutdown=false + max_background_flushes=-1 + delayed_write_rate=16777216 + max_open_files=256 + max_subcompactions=1 + writable_file_max_buffer_size=1048576 + wal_bytes_per_sync=0 + max_background_compactions=-1 + max_total_wal_size=0 + delete_obsolete_files_period_micros=180000000 + stats_dump_period_sec=600 + stats_history_buffer_size=1048576 + stats_persist_period_sec=600 + follower_refresh_catchup_period_ms=10000 + enforce_single_del_contracts=true + lowest_used_cache_tier=kNonVolatileBlockTier + bgerror_resume_retry_interval=1000000 + metadata_write_temperature=kUnknown + best_efforts_recovery=false + log_readahead_size=0 + write_identity_file=true + write_dbid_to_manifest=true + prefix_seek_opt_in_only=false + wal_compression=kNoCompression + manual_wal_flush=false + db_host_id=__hostname__ + two_write_queues=false + random_access_max_buffer_size=1048576 + avoid_unnecessary_blocking_io=false + skip_checking_sst_file_sizes_on_db_open=false + flush_verify_memtable_count=true + fail_if_options_file_error=true + atomic_flush=false + verify_sst_unique_id_in_manifest=true + skip_stats_update_on_db_open=false + track_and_verify_wals_in_manifest=false + compaction_verify_record_count=true + paranoid_checks=true + create_if_missing=true + max_write_batch_group_size_bytes=1048576 + follower_catchup_retry_count=10 + avoid_flush_during_recovery=false + file_checksum_gen_factory=nullptr + enable_thread_tracking=false + allow_fallocate=true + allow_data_in_errors=false + error_if_exists=false + use_direct_io_for_flush_and_compaction=false + background_close_inactive_wals=false + create_missing_column_families=true + WAL_size_limit_MB=0 + use_direct_reads=false + persist_stats_to_disk=false + allow_2pc=false + is_fd_close_on_exec=true + max_log_file_size=1048576 + max_file_opening_threads=16 + wal_filter=nullptr + wal_write_temperature=kUnknown + follower_catchup_retry_wait_ms=100 + allow_mmap_reads=false + allow_mmap_writes=false + use_adaptive_mutex=false + use_fsync=false + table_cache_numshardbits=6 + dump_malloc_stats=false + db_write_buffer_size=0 + allow_ingest_behind=false + keep_log_file_num=1 + max_bgerror_resume_count=2147483647 + allow_concurrent_memtable_write=true + recycle_log_file_num=0 + log_file_time_to_roll=0 + manifest_preallocation_size=4194304 + enable_write_thread_adaptive_yield=true + WAL_ttl_seconds=0 + max_manifest_file_size=1073741824 + wal_recovery_mode=kTolerateCorruptedTailRecords + enable_pipelined_write=false + write_thread_slow_yield_usec=3 + unordered_write=false + write_thread_max_yield_usec=100 + advise_random_on_open=true + info_log_level=ERROR_LEVEL + + +[CFOptions "default"] + memtable_max_range_deletions=0 + compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_memory_checks=false + block_protection_bytes_per_key=0 + uncache_aggressiveness=0 + bottommost_file_compaction_delay=0 + memtable_protection_bytes_per_key=0 + experimental_mempurge_threshold=0.000000 + bottommost_compression=kDisableCompressionOption + sample_for_compression=0 + prepopulate_blob_cache=kDisable + blob_file_starting_level=0 + blob_compaction_readahead_size=0 + table_factory=BlockBasedTable + max_successive_merges=0 + max_write_buffer_number=2 + prefix_extractor=nullptr + memtable_huge_page_size=0 + write_buffer_size=10485760 + strict_max_successive_merges=false + arena_block_size=1048576 + level0_file_num_compaction_trigger=4 + report_bg_io_stats=false + inplace_update_num_locks=10000 + memtable_prefix_bloom_size_ratio=0.000000 + level0_stop_writes_trigger=36 + blob_compression_type=kNoCompression + level0_slowdown_writes_trigger=20 + hard_pending_compaction_bytes_limit=274877906944 + target_file_size_multiplier=1 + bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_file_checks=false + blob_garbage_collection_force_threshold=1.000000 + enable_blob_files=false + soft_pending_compaction_bytes_limit=68719476736 + target_file_size_base=67108864 + max_compaction_bytes=1677721600 + disable_auto_compactions=false + min_blob_size=0 + memtable_whole_key_filtering=false + max_bytes_for_level_base=268435456 + last_level_temperature=kUnknown + preserve_internal_time_seconds=0 + compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} + max_bytes_for_level_multiplier=10.000000 + max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 + max_sequential_skip_in_iterations=8 + compression=kLZ4Compression + default_write_temperature=kUnknown + compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} + blob_garbage_collection_age_cutoff=0.250000 + ttl=2592000 + periodic_compaction_seconds=0 + preclude_last_level_data_seconds=0 + blob_file_size=268435456 + enable_blob_garbage_collection=false + persist_user_defined_timestamps=true + compaction_pri=kMinOverlappingRatio + compaction_filter_factory=nullptr + comparator=leveldb.BytewiseComparator + bloom_locality=0 + merge_operator=nullptr + compaction_filter=nullptr + level_compaction_dynamic_level_bytes=true + optimize_filters_for_hits=false + inplace_update_support=false + max_write_buffer_number_to_maintain=0 + max_write_buffer_size_to_maintain=0 + sst_partitioner_factory=nullptr + default_temperature=kUnknown + compaction_style=kCompactionStyleLevel + min_write_buffer_number_to_merge=1 + memtable_factory=SkipListFactory + memtable_insert_with_hint_prefix_extractor=nullptr + force_consistency_checks=true + num_levels=7 + +[TableOptions/BlockBasedTable "default"] + num_file_reads_for_auto_readahead=2 + initial_auto_readahead_size=8192 + metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} + enable_index_compression=true + verify_compression=false + prepopulate_block_cache=kDisable + format_version=6 + use_delta_encoding=true + pin_top_level_index_and_filter=true + read_amp_bytes_per_bit=0 + decouple_partitioned_filters=false + partition_filters=false + metadata_block_size=4096 + max_auto_readahead_size=262144 + index_block_restart_interval=1 + block_size_deviation=10 + block_size=4096 + detect_filter_construct_corruption=false + no_block_cache=false + checksum=kXXH3 + filter_policy=nullptr + data_block_hash_table_util_ratio=0.750000 + block_restart_interval=16 + index_type=kBinarySearch + pin_l0_filter_and_index_blocks_in_cache=false + data_block_index_type=kDataBlockBinarySearch + cache_index_and_filter_blocks_with_high_priority=true + whole_key_filtering=true + index_shortening=kShortenSeparators + cache_index_and_filter_blocks=false + block_align=false + optimize_filters_for_memory=true + flush_block_policy_factory=FlushBlockBySizePolicyFactory + + +[CFOptions "payload"] + memtable_max_range_deletions=0 + compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_memory_checks=false + block_protection_bytes_per_key=0 + uncache_aggressiveness=0 + bottommost_file_compaction_delay=0 + memtable_protection_bytes_per_key=0 + experimental_mempurge_threshold=0.000000 + bottommost_compression=kDisableCompressionOption + sample_for_compression=0 + prepopulate_blob_cache=kDisable + blob_file_starting_level=0 + blob_compaction_readahead_size=0 + table_factory=BlockBasedTable + max_successive_merges=0 + max_write_buffer_number=2 + prefix_extractor=nullptr + memtable_huge_page_size=0 + write_buffer_size=10485760 + strict_max_successive_merges=false + arena_block_size=1048576 + level0_file_num_compaction_trigger=4 + report_bg_io_stats=false + inplace_update_num_locks=10000 + memtable_prefix_bloom_size_ratio=0.000000 + level0_stop_writes_trigger=36 + blob_compression_type=kNoCompression + level0_slowdown_writes_trigger=20 + hard_pending_compaction_bytes_limit=274877906944 + target_file_size_multiplier=1 + bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_file_checks=false + blob_garbage_collection_force_threshold=1.000000 + enable_blob_files=false + soft_pending_compaction_bytes_limit=68719476736 + target_file_size_base=67108864 + max_compaction_bytes=1677721600 + disable_auto_compactions=false + min_blob_size=0 + memtable_whole_key_filtering=false + max_bytes_for_level_base=268435456 + last_level_temperature=kUnknown + preserve_internal_time_seconds=0 + compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} + max_bytes_for_level_multiplier=10.000000 + max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 + max_sequential_skip_in_iterations=8 + compression=kLZ4Compression + default_write_temperature=kUnknown + compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} + blob_garbage_collection_age_cutoff=0.250000 + ttl=2592000 + periodic_compaction_seconds=0 + preclude_last_level_data_seconds=0 + blob_file_size=268435456 + enable_blob_garbage_collection=false + persist_user_defined_timestamps=true + compaction_pri=kMinOverlappingRatio + compaction_filter_factory=nullptr + comparator=leveldb.BytewiseComparator + bloom_locality=0 + merge_operator=nullptr + compaction_filter=nullptr + level_compaction_dynamic_level_bytes=true + optimize_filters_for_hits=false + inplace_update_support=false + max_write_buffer_number_to_maintain=0 + max_write_buffer_size_to_maintain=0 + sst_partitioner_factory=nullptr + default_temperature=kUnknown + compaction_style=kCompactionStyleLevel + min_write_buffer_number_to_merge=1 + memtable_factory=SkipListFactory + memtable_insert_with_hint_prefix_extractor=nullptr + force_consistency_checks=true + num_levels=7 + +[TableOptions/BlockBasedTable "payload"] + num_file_reads_for_auto_readahead=2 + initial_auto_readahead_size=8192 + metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} + enable_index_compression=true + verify_compression=false + prepopulate_block_cache=kDisable + format_version=6 + use_delta_encoding=true + pin_top_level_index_and_filter=true + read_amp_bytes_per_bit=0 + decouple_partitioned_filters=false + partition_filters=false + metadata_block_size=4096 + max_auto_readahead_size=262144 + index_block_restart_interval=1 + block_size_deviation=10 + block_size=4096 + detect_filter_construct_corruption=false + no_block_cache=false + checksum=kXXH3 + filter_policy=nullptr + data_block_hash_table_util_ratio=0.750000 + block_restart_interval=16 + index_type=kBinarySearch + pin_l0_filter_and_index_blocks_in_cache=false + data_block_index_type=kDataBlockBinarySearch + cache_index_and_filter_blocks_with_high_priority=true + whole_key_filtering=true + index_shortening=kShortenSeparators + cache_index_and_filter_blocks=false + block_align=false + optimize_filters_for_memory=true + flush_block_policy_factory=FlushBlockBySizePolicyFactory + + +[CFOptions "mapping"] + memtable_max_range_deletions=0 + compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_memory_checks=false + block_protection_bytes_per_key=0 + uncache_aggressiveness=0 + bottommost_file_compaction_delay=0 + memtable_protection_bytes_per_key=0 + experimental_mempurge_threshold=0.000000 + bottommost_compression=kDisableCompressionOption + sample_for_compression=0 + prepopulate_blob_cache=kDisable + blob_file_starting_level=0 + blob_compaction_readahead_size=0 + table_factory=BlockBasedTable + max_successive_merges=0 + max_write_buffer_number=2 + prefix_extractor=nullptr + memtable_huge_page_size=0 + write_buffer_size=10485760 + strict_max_successive_merges=false + arena_block_size=1048576 + level0_file_num_compaction_trigger=4 + report_bg_io_stats=false + inplace_update_num_locks=10000 + memtable_prefix_bloom_size_ratio=0.000000 + level0_stop_writes_trigger=36 + blob_compression_type=kNoCompression + level0_slowdown_writes_trigger=20 + hard_pending_compaction_bytes_limit=274877906944 + target_file_size_multiplier=1 + bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_file_checks=false + blob_garbage_collection_force_threshold=1.000000 + enable_blob_files=false + soft_pending_compaction_bytes_limit=68719476736 + target_file_size_base=67108864 + max_compaction_bytes=1677721600 + disable_auto_compactions=false + min_blob_size=0 + memtable_whole_key_filtering=false + max_bytes_for_level_base=268435456 + last_level_temperature=kUnknown + preserve_internal_time_seconds=0 + compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} + max_bytes_for_level_multiplier=10.000000 + max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 + max_sequential_skip_in_iterations=8 + compression=kLZ4Compression + default_write_temperature=kUnknown + compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} + blob_garbage_collection_age_cutoff=0.250000 + ttl=2592000 + periodic_compaction_seconds=0 + preclude_last_level_data_seconds=0 + blob_file_size=268435456 + enable_blob_garbage_collection=false + persist_user_defined_timestamps=true + compaction_pri=kMinOverlappingRatio + compaction_filter_factory=nullptr + comparator=leveldb.BytewiseComparator + bloom_locality=0 + merge_operator=nullptr + compaction_filter=nullptr + level_compaction_dynamic_level_bytes=true + optimize_filters_for_hits=false + inplace_update_support=false + max_write_buffer_number_to_maintain=0 + max_write_buffer_size_to_maintain=0 + sst_partitioner_factory=nullptr + default_temperature=kUnknown + compaction_style=kCompactionStyleLevel + min_write_buffer_number_to_merge=1 + memtable_factory=SkipListFactory + memtable_insert_with_hint_prefix_extractor=nullptr + force_consistency_checks=true + num_levels=7 + +[TableOptions/BlockBasedTable "mapping"] + num_file_reads_for_auto_readahead=2 + initial_auto_readahead_size=8192 + metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} + enable_index_compression=true + verify_compression=false + prepopulate_block_cache=kDisable + format_version=6 + use_delta_encoding=true + pin_top_level_index_and_filter=true + read_amp_bytes_per_bit=0 + decouple_partitioned_filters=false + partition_filters=false + metadata_block_size=4096 + max_auto_readahead_size=262144 + index_block_restart_interval=1 + block_size_deviation=10 + block_size=4096 + detect_filter_construct_corruption=false + no_block_cache=false + checksum=kXXH3 + filter_policy=nullptr + data_block_hash_table_util_ratio=0.750000 + block_restart_interval=16 + index_type=kBinarySearch + pin_l0_filter_and_index_blocks_in_cache=false + data_block_index_type=kDataBlockBinarySearch + cache_index_and_filter_blocks_with_high_priority=true + whole_key_filtering=true + index_shortening=kShortenSeparators + cache_index_and_filter_blocks=false + block_align=false + optimize_filters_for_memory=true + flush_block_policy_factory=FlushBlockBySizePolicyFactory + + +[CFOptions "version"] + memtable_max_range_deletions=0 + compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_memory_checks=false + block_protection_bytes_per_key=0 + uncache_aggressiveness=0 + bottommost_file_compaction_delay=0 + memtable_protection_bytes_per_key=0 + experimental_mempurge_threshold=0.000000 + bottommost_compression=kDisableCompressionOption + sample_for_compression=0 + prepopulate_blob_cache=kDisable + blob_file_starting_level=0 + blob_compaction_readahead_size=0 + table_factory=BlockBasedTable + max_successive_merges=0 + max_write_buffer_number=2 + prefix_extractor=nullptr + memtable_huge_page_size=0 + write_buffer_size=10485760 + strict_max_successive_merges=false + arena_block_size=1048576 + level0_file_num_compaction_trigger=4 + report_bg_io_stats=false + inplace_update_num_locks=10000 + memtable_prefix_bloom_size_ratio=0.000000 + level0_stop_writes_trigger=36 + blob_compression_type=kNoCompression + level0_slowdown_writes_trigger=20 + hard_pending_compaction_bytes_limit=274877906944 + target_file_size_multiplier=1 + bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_file_checks=false + blob_garbage_collection_force_threshold=1.000000 + enable_blob_files=false + soft_pending_compaction_bytes_limit=68719476736 + target_file_size_base=67108864 + max_compaction_bytes=1677721600 + disable_auto_compactions=false + min_blob_size=0 + memtable_whole_key_filtering=false + max_bytes_for_level_base=268435456 + last_level_temperature=kUnknown + preserve_internal_time_seconds=0 + compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} + max_bytes_for_level_multiplier=10.000000 + max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 + max_sequential_skip_in_iterations=8 + compression=kLZ4Compression + default_write_temperature=kUnknown + compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} + blob_garbage_collection_age_cutoff=0.250000 + ttl=2592000 + periodic_compaction_seconds=0 + preclude_last_level_data_seconds=0 + blob_file_size=268435456 + enable_blob_garbage_collection=false + persist_user_defined_timestamps=true + compaction_pri=kMinOverlappingRatio + compaction_filter_factory=nullptr + comparator=leveldb.BytewiseComparator + bloom_locality=0 + merge_operator=nullptr + compaction_filter=nullptr + level_compaction_dynamic_level_bytes=true + optimize_filters_for_hits=false + inplace_update_support=false + max_write_buffer_number_to_maintain=0 + max_write_buffer_size_to_maintain=0 + sst_partitioner_factory=nullptr + default_temperature=kUnknown + compaction_style=kCompactionStyleLevel + min_write_buffer_number_to_merge=1 + memtable_factory=SkipListFactory + memtable_insert_with_hint_prefix_extractor=nullptr + force_consistency_checks=true + num_levels=7 + +[TableOptions/BlockBasedTable "version"] + num_file_reads_for_auto_readahead=2 + initial_auto_readahead_size=8192 + metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} + enable_index_compression=true + verify_compression=false + prepopulate_block_cache=kDisable + format_version=6 + use_delta_encoding=true + pin_top_level_index_and_filter=true + read_amp_bytes_per_bit=0 + decouple_partitioned_filters=false + partition_filters=false + metadata_block_size=4096 + max_auto_readahead_size=262144 + index_block_restart_interval=1 + block_size_deviation=10 + block_size=4096 + detect_filter_construct_corruption=false + no_block_cache=false + checksum=kXXH3 + filter_policy=nullptr + data_block_hash_table_util_ratio=0.750000 + block_restart_interval=16 + index_type=kBinarySearch + pin_l0_filter_and_index_blocks_in_cache=false + data_block_index_type=kDataBlockBinarySearch + cache_index_and_filter_blocks_with_high_priority=true + whole_key_filtering=true + index_shortening=kShortenSeparators + cache_index_and_filter_blocks=false + block_align=false + optimize_filters_for_memory=true + flush_block_policy_factory=FlushBlockBySizePolicyFactory + + +[CFOptions "vector"] + memtable_max_range_deletions=0 + compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_memory_checks=false + block_protection_bytes_per_key=0 + uncache_aggressiveness=0 + bottommost_file_compaction_delay=0 + memtable_protection_bytes_per_key=0 + experimental_mempurge_threshold=0.000000 + bottommost_compression=kDisableCompressionOption + sample_for_compression=0 + prepopulate_blob_cache=kDisable + blob_file_starting_level=0 + blob_compaction_readahead_size=0 + table_factory=BlockBasedTable + max_successive_merges=0 + max_write_buffer_number=2 + prefix_extractor=nullptr + memtable_huge_page_size=0 + write_buffer_size=10485760 + strict_max_successive_merges=false + arena_block_size=1048576 + level0_file_num_compaction_trigger=4 + report_bg_io_stats=false + inplace_update_num_locks=10000 + memtable_prefix_bloom_size_ratio=0.000000 + level0_stop_writes_trigger=36 + blob_compression_type=kNoCompression + level0_slowdown_writes_trigger=20 + hard_pending_compaction_bytes_limit=274877906944 + target_file_size_multiplier=1 + bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_file_checks=false + blob_garbage_collection_force_threshold=1.000000 + enable_blob_files=false + soft_pending_compaction_bytes_limit=68719476736 + target_file_size_base=67108864 + max_compaction_bytes=1677721600 + disable_auto_compactions=false + min_blob_size=0 + memtable_whole_key_filtering=false + max_bytes_for_level_base=268435456 + last_level_temperature=kUnknown + preserve_internal_time_seconds=0 + compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} + max_bytes_for_level_multiplier=10.000000 + max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 + max_sequential_skip_in_iterations=8 + compression=kLZ4Compression + default_write_temperature=kUnknown + compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} + blob_garbage_collection_age_cutoff=0.250000 + ttl=2592000 + periodic_compaction_seconds=0 + preclude_last_level_data_seconds=0 + blob_file_size=268435456 + enable_blob_garbage_collection=false + persist_user_defined_timestamps=true + compaction_pri=kMinOverlappingRatio + compaction_filter_factory=nullptr + comparator=leveldb.BytewiseComparator + bloom_locality=0 + merge_operator=nullptr + compaction_filter=nullptr + level_compaction_dynamic_level_bytes=true + optimize_filters_for_hits=false + inplace_update_support=false + max_write_buffer_number_to_maintain=0 + max_write_buffer_size_to_maintain=0 + sst_partitioner_factory=nullptr + default_temperature=kUnknown + compaction_style=kCompactionStyleLevel + min_write_buffer_number_to_merge=1 + memtable_factory=SkipListFactory + memtable_insert_with_hint_prefix_extractor=nullptr + force_consistency_checks=true + num_levels=7 + +[TableOptions/BlockBasedTable "vector"] + num_file_reads_for_auto_readahead=2 + initial_auto_readahead_size=8192 + metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} + enable_index_compression=true + verify_compression=false + prepopulate_block_cache=kDisable + format_version=6 + use_delta_encoding=true + pin_top_level_index_and_filter=true + read_amp_bytes_per_bit=0 + decouple_partitioned_filters=false + partition_filters=false + metadata_block_size=4096 + max_auto_readahead_size=262144 + index_block_restart_interval=1 + block_size_deviation=10 + block_size=4096 + detect_filter_construct_corruption=false + no_block_cache=false + checksum=kXXH3 + filter_policy=nullptr + data_block_hash_table_util_ratio=0.750000 + block_restart_interval=16 + index_type=kBinarySearch + pin_l0_filter_and_index_blocks_in_cache=false + data_block_index_type=kDataBlockBinarySearch + cache_index_and_filter_blocks_with_high_priority=true + whole_key_filtering=true + index_shortening=kShortenSeparators + cache_index_and_filter_blocks=false + block_align=false + optimize_filters_for_memory=true + flush_block_policy_factory=FlushBlockBySizePolicyFactory + diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/payload_index/000012.log b/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/payload_index/000012.log new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/payload_index/CURRENT b/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/payload_index/CURRENT new file mode 100644 index 0000000000000000000000000000000000000000..625d147412870471b19d90716ccc20a7f207a5c3 --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/payload_index/CURRENT @@ -0,0 +1 @@ +MANIFEST-000013 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/payload_index/IDENTITY b/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/payload_index/IDENTITY new file mode 100644 index 0000000000000000000000000000000000000000..22f656d2641c019474f07345f723d797301aae00 --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/payload_index/IDENTITY @@ -0,0 +1 @@ +8012827e-24a7-44a7-b7ae-b0326604b3d0 \ No newline at end of file diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/payload_index/LOCK b/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/payload_index/LOCK new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/payload_index/LOG b/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/payload_index/LOG new file mode 100644 index 0000000000000000000000000000000000000000..cb4593601bcef137c152fae2d3db9e6f14c1855e --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/payload_index/LOG @@ -0,0 +1,247 @@ +2025/05/04-10:09:55.817298 42 RocksDB version: 9.9.3 +2025/05/04-10:09:55.817375 42 Compile date 2024-12-05 01:25:31 +2025/05/04-10:09:55.817404 42 DB SUMMARY +2025/05/04-10:09:55.817406 42 Host name (Env): c5f2a9d061bb +2025/05/04-10:09:55.817407 42 DB Session ID: CD0SHR3DDC5AMRBDXMDC +2025/05/04-10:09:55.817807 42 CURRENT file: CURRENT +2025/05/04-10:09:55.817809 42 IDENTITY file: IDENTITY +2025/05/04-10:09:55.817814 42 MANIFEST file: MANIFEST-000009 size: 159 Bytes +2025/05/04-10:09:55.817816 42 SST files in ./storage/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/payload_index dir, Total Num: 0, files: +2025/05/04-10:09:55.817817 42 Write Ahead Log file in ./storage/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/payload_index: 000008.log size: 0 ; +2025/05/04-10:09:55.817817 42 Options.error_if_exists: 0 +2025/05/04-10:09:55.817818 42 Options.create_if_missing: 1 +2025/05/04-10:09:55.817819 42 Options.paranoid_checks: 1 +2025/05/04-10:09:55.817820 42 Options.flush_verify_memtable_count: 1 +2025/05/04-10:09:55.817820 42 Options.compaction_verify_record_count: 1 +2025/05/04-10:09:55.817821 42 Options.track_and_verify_wals_in_manifest: 0 +2025/05/04-10:09:55.817821 42 Options.verify_sst_unique_id_in_manifest: 1 +2025/05/04-10:09:55.817822 42 Options.env: 0xffff86034000 +2025/05/04-10:09:55.817823 42 Options.fs: PosixFileSystem +2025/05/04-10:09:55.817823 42 Options.info_log: 0xffff806a2500 +2025/05/04-10:09:55.817824 42 Options.max_file_opening_threads: 16 +2025/05/04-10:09:55.817825 42 Options.statistics: (nil) +2025/05/04-10:09:55.817825 42 Options.use_fsync: 0 +2025/05/04-10:09:55.817826 42 Options.max_log_file_size: 1048576 +2025/05/04-10:09:55.817827 42 Options.max_manifest_file_size: 1073741824 +2025/05/04-10:09:55.817827 42 Options.log_file_time_to_roll: 0 +2025/05/04-10:09:55.817828 42 Options.keep_log_file_num: 1 +2025/05/04-10:09:55.817828 42 Options.recycle_log_file_num: 0 +2025/05/04-10:09:55.817829 42 Options.allow_fallocate: 1 +2025/05/04-10:09:55.817829 42 Options.allow_mmap_reads: 0 +2025/05/04-10:09:55.817830 42 Options.allow_mmap_writes: 0 +2025/05/04-10:09:55.817830 42 Options.use_direct_reads: 0 +2025/05/04-10:09:55.817831 42 Options.use_direct_io_for_flush_and_compaction: 0 +2025/05/04-10:09:55.817831 42 Options.create_missing_column_families: 1 +2025/05/04-10:09:55.817832 42 Options.db_log_dir: +2025/05/04-10:09:55.817833 42 Options.wal_dir: +2025/05/04-10:09:55.817833 42 Options.table_cache_numshardbits: 6 +2025/05/04-10:09:55.817834 42 Options.WAL_ttl_seconds: 0 +2025/05/04-10:09:55.817834 42 Options.WAL_size_limit_MB: 0 +2025/05/04-10:09:55.817835 42 Options.max_write_batch_group_size_bytes: 1048576 +2025/05/04-10:09:55.817835 42 Options.manifest_preallocation_size: 4194304 +2025/05/04-10:09:55.817836 42 Options.is_fd_close_on_exec: 1 +2025/05/04-10:09:55.817837 42 Options.advise_random_on_open: 1 +2025/05/04-10:09:55.817837 42 Options.db_write_buffer_size: 0 +2025/05/04-10:09:55.817838 42 Options.write_buffer_manager: 0xffff8060a200 +2025/05/04-10:09:55.817838 42 Options.random_access_max_buffer_size: 1048576 +2025/05/04-10:09:55.817839 42 Options.use_adaptive_mutex: 0 +2025/05/04-10:09:55.817839 42 Options.rate_limiter: (nil) +2025/05/04-10:09:55.817840 42 Options.sst_file_manager.rate_bytes_per_sec: 0 +2025/05/04-10:09:55.817841 42 Options.wal_recovery_mode: 0 +2025/05/04-10:09:55.817841 42 Options.enable_thread_tracking: 0 +2025/05/04-10:09:55.817842 42 Options.enable_pipelined_write: 0 +2025/05/04-10:09:55.817843 42 Options.unordered_write: 0 +2025/05/04-10:09:55.817843 42 Options.allow_concurrent_memtable_write: 1 +2025/05/04-10:09:55.817844 42 Options.enable_write_thread_adaptive_yield: 1 +2025/05/04-10:09:55.817844 42 Options.write_thread_max_yield_usec: 100 +2025/05/04-10:09:55.817845 42 Options.write_thread_slow_yield_usec: 3 +2025/05/04-10:09:55.817845 42 Options.row_cache: None +2025/05/04-10:09:55.817846 42 Options.wal_filter: None +2025/05/04-10:09:55.817847 42 Options.avoid_flush_during_recovery: 0 +2025/05/04-10:09:55.817847 42 Options.allow_ingest_behind: 0 +2025/05/04-10:09:55.817848 42 Options.two_write_queues: 0 +2025/05/04-10:09:55.817849 42 Options.manual_wal_flush: 0 +2025/05/04-10:09:55.817849 42 Options.wal_compression: 0 +2025/05/04-10:09:55.817850 42 Options.background_close_inactive_wals: 0 +2025/05/04-10:09:55.817851 42 Options.atomic_flush: 0 +2025/05/04-10:09:55.817852 42 Options.avoid_unnecessary_blocking_io: 0 +2025/05/04-10:09:55.817852 42 Options.prefix_seek_opt_in_only: 0 +2025/05/04-10:09:55.817853 42 Options.persist_stats_to_disk: 0 +2025/05/04-10:09:55.817853 42 Options.write_dbid_to_manifest: 1 +2025/05/04-10:09:55.817854 42 Options.write_identity_file: 1 +2025/05/04-10:09:55.817855 42 Options.log_readahead_size: 0 +2025/05/04-10:09:55.817855 42 Options.file_checksum_gen_factory: Unknown +2025/05/04-10:09:55.817856 42 Options.best_efforts_recovery: 0 +2025/05/04-10:09:55.817856 42 Options.max_bgerror_resume_count: 2147483647 +2025/05/04-10:09:55.817857 42 Options.bgerror_resume_retry_interval: 1000000 +2025/05/04-10:09:55.817857 42 Options.allow_data_in_errors: 0 +2025/05/04-10:09:55.817858 42 Options.db_host_id: __hostname__ +2025/05/04-10:09:55.817859 42 Options.enforce_single_del_contracts: true +2025/05/04-10:09:55.817866 42 Options.metadata_write_temperature: kUnknown +2025/05/04-10:09:55.817866 42 Options.wal_write_temperature: kUnknown +2025/05/04-10:09:55.817867 42 Options.max_background_jobs: 2 +2025/05/04-10:09:55.817867 42 Options.max_background_compactions: -1 +2025/05/04-10:09:55.817870 42 Options.max_subcompactions: 1 +2025/05/04-10:09:55.817870 42 Options.avoid_flush_during_shutdown: 0 +2025/05/04-10:09:55.817871 42 Options.writable_file_max_buffer_size: 1048576 +2025/05/04-10:09:55.817871 42 Options.delayed_write_rate : 16777216 +2025/05/04-10:09:55.817872 42 Options.max_total_wal_size: 0 +2025/05/04-10:09:55.817873 42 Options.delete_obsolete_files_period_micros: 180000000 +2025/05/04-10:09:55.817873 42 Options.stats_dump_period_sec: 600 +2025/05/04-10:09:55.817874 42 Options.stats_persist_period_sec: 600 +2025/05/04-10:09:55.817875 42 Options.stats_history_buffer_size: 1048576 +2025/05/04-10:09:55.817875 42 Options.max_open_files: 256 +2025/05/04-10:09:55.817876 42 Options.bytes_per_sync: 0 +2025/05/04-10:09:55.817876 42 Options.wal_bytes_per_sync: 0 +2025/05/04-10:09:55.817877 42 Options.strict_bytes_per_sync: 0 +2025/05/04-10:09:55.817879 42 Options.compaction_readahead_size: 2097152 +2025/05/04-10:09:55.817880 42 Options.max_background_flushes: -1 +2025/05/04-10:09:55.817880 42 Options.daily_offpeak_time_utc: +2025/05/04-10:09:55.817881 42 Compression algorithms supported: +2025/05/04-10:09:55.817882 42 kZSTD supported: 0 +2025/05/04-10:09:55.817883 42 kXpressCompression supported: 0 +2025/05/04-10:09:55.817883 42 kBZip2Compression supported: 0 +2025/05/04-10:09:55.817885 42 kZSTDNotFinalCompression supported: 0 +2025/05/04-10:09:55.817886 42 kLZ4Compression supported: 1 +2025/05/04-10:09:55.817887 42 kZlibCompression supported: 0 +2025/05/04-10:09:55.817887 42 kLZ4HCCompression supported: 1 +2025/05/04-10:09:55.817888 42 kSnappyCompression supported: 1 +2025/05/04-10:09:55.817889 42 Fast CRC32 supported: Not supported on x86 +2025/05/04-10:09:55.817889 42 DMutex implementation: pthread_mutex_t +2025/05/04-10:09:55.817890 42 Jemalloc supported: 0 +2025/05/04-10:09:55.819408 42 Options.comparator: leveldb.BytewiseComparator +2025/05/04-10:09:55.819409 42 Options.merge_operator: None +2025/05/04-10:09:55.819409 42 Options.compaction_filter: None +2025/05/04-10:09:55.819410 42 Options.compaction_filter_factory: None +2025/05/04-10:09:55.819410 42 Options.sst_partitioner_factory: None +2025/05/04-10:09:55.819411 42 Options.memtable_factory: SkipListFactory +2025/05/04-10:09:55.819412 42 Options.table_factory: BlockBasedTable +2025/05/04-10:09:55.819427 42 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff80732c60) + cache_index_and_filter_blocks: 0 + cache_index_and_filter_blocks_with_high_priority: 1 + pin_l0_filter_and_index_blocks_in_cache: 0 + pin_top_level_index_and_filter: 1 + index_type: 0 + data_block_index_type: 0 + index_shortening: 1 + data_block_hash_table_util_ratio: 0.750000 + checksum: 4 + no_block_cache: 0 + block_cache: 0xffff8060a150 + block_cache_name: LRUCache + block_cache_options: + capacity : 33554432 + num_shard_bits : 6 + strict_capacity_limit : 0 + memory_allocator : None + high_pri_pool_ratio: 0.500 + low_pri_pool_ratio: 0.000 + persistent_cache: (nil) + block_size: 4096 + block_size_deviation: 10 + block_restart_interval: 16 + index_block_restart_interval: 1 + metadata_block_size: 4096 + partition_filters: 0 + use_delta_encoding: 1 + filter_policy: nullptr + whole_key_filtering: 1 + verify_compression: 0 + read_amp_bytes_per_bit: 0 + format_version: 6 + enable_index_compression: 1 + block_align: 0 + max_auto_readahead_size: 262144 + prepopulate_block_cache: 0 + initial_auto_readahead_size: 8192 + num_file_reads_for_auto_readahead: 2 +2025/05/04-10:09:55.819429 42 Options.write_buffer_size: 10485760 +2025/05/04-10:09:55.819430 42 Options.max_write_buffer_number: 2 +2025/05/04-10:09:55.819430 42 Options.compression: LZ4 +2025/05/04-10:09:55.819431 42 Options.bottommost_compression: Disabled +2025/05/04-10:09:55.819432 42 Options.prefix_extractor: nullptr +2025/05/04-10:09:55.819432 42 Options.memtable_insert_with_hint_prefix_extractor: nullptr +2025/05/04-10:09:55.819433 42 Options.num_levels: 7 +2025/05/04-10:09:55.819435 42 Options.min_write_buffer_number_to_merge: 1 +2025/05/04-10:09:55.819435 42 Options.max_write_buffer_number_to_maintain: 0 +2025/05/04-10:09:55.819436 42 Options.max_write_buffer_size_to_maintain: 0 +2025/05/04-10:09:55.819436 42 Options.bottommost_compression_opts.window_bits: -14 +2025/05/04-10:09:55.819437 42 Options.bottommost_compression_opts.level: 32767 +2025/05/04-10:09:55.819438 42 Options.bottommost_compression_opts.strategy: 0 +2025/05/04-10:09:55.819438 42 Options.bottommost_compression_opts.max_dict_bytes: 0 +2025/05/04-10:09:55.819439 42 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 +2025/05/04-10:09:55.819439 42 Options.bottommost_compression_opts.parallel_threads: 1 +2025/05/04-10:09:55.819440 42 Options.bottommost_compression_opts.enabled: false +2025/05/04-10:09:55.819441 42 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 +2025/05/04-10:09:55.819441 42 Options.bottommost_compression_opts.use_zstd_dict_trainer: true +2025/05/04-10:09:55.819442 42 Options.compression_opts.window_bits: -14 +2025/05/04-10:09:55.819443 42 Options.compression_opts.level: 32767 +2025/05/04-10:09:55.819443 42 Options.compression_opts.strategy: 0 +2025/05/04-10:09:55.819444 42 Options.compression_opts.max_dict_bytes: 0 +2025/05/04-10:09:55.819444 42 Options.compression_opts.zstd_max_train_bytes: 0 +2025/05/04-10:09:55.819445 42 Options.compression_opts.use_zstd_dict_trainer: true +2025/05/04-10:09:55.819445 42 Options.compression_opts.parallel_threads: 1 +2025/05/04-10:09:55.819446 42 Options.compression_opts.enabled: false +2025/05/04-10:09:55.819446 42 Options.compression_opts.max_dict_buffer_bytes: 0 +2025/05/04-10:09:55.819447 42 Options.level0_file_num_compaction_trigger: 4 +2025/05/04-10:09:55.819448 42 Options.level0_slowdown_writes_trigger: 20 +2025/05/04-10:09:55.819448 42 Options.level0_stop_writes_trigger: 36 +2025/05/04-10:09:55.819449 42 Options.target_file_size_base: 67108864 +2025/05/04-10:09:55.819450 42 Options.target_file_size_multiplier: 1 +2025/05/04-10:09:55.819450 42 Options.max_bytes_for_level_base: 268435456 +2025/05/04-10:09:55.819451 42 Options.level_compaction_dynamic_level_bytes: 1 +2025/05/04-10:09:55.819452 42 Options.max_bytes_for_level_multiplier: 10.000000 +2025/05/04-10:09:55.819452 42 Options.max_bytes_for_level_multiplier_addtl[0]: 1 +2025/05/04-10:09:55.819453 42 Options.max_bytes_for_level_multiplier_addtl[1]: 1 +2025/05/04-10:09:55.819453 42 Options.max_bytes_for_level_multiplier_addtl[2]: 1 +2025/05/04-10:09:55.819454 42 Options.max_bytes_for_level_multiplier_addtl[3]: 1 +2025/05/04-10:09:55.819454 42 Options.max_bytes_for_level_multiplier_addtl[4]: 1 +2025/05/04-10:09:55.819455 42 Options.max_bytes_for_level_multiplier_addtl[5]: 1 +2025/05/04-10:09:55.819456 42 Options.max_bytes_for_level_multiplier_addtl[6]: 1 +2025/05/04-10:09:55.819456 42 Options.max_sequential_skip_in_iterations: 8 +2025/05/04-10:09:55.819457 42 Options.max_compaction_bytes: 1677721600 +2025/05/04-10:09:55.819457 42 Options.arena_block_size: 1048576 +2025/05/04-10:09:55.819458 42 Options.soft_pending_compaction_bytes_limit: 68719476736 +2025/05/04-10:09:55.819458 42 Options.hard_pending_compaction_bytes_limit: 274877906944 +2025/05/04-10:09:55.819459 42 Options.disable_auto_compactions: 0 +2025/05/04-10:09:55.819460 42 Options.compaction_style: kCompactionStyleLevel +2025/05/04-10:09:55.819460 42 Options.compaction_pri: kMinOverlappingRatio +2025/05/04-10:09:55.819461 42 Options.compaction_options_universal.size_ratio: 1 +2025/05/04-10:09:55.819461 42 Options.compaction_options_universal.min_merge_width: 2 +2025/05/04-10:09:55.819462 42 Options.compaction_options_universal.max_merge_width: 4294967295 +2025/05/04-10:09:55.819462 42 Options.compaction_options_universal.max_size_amplification_percent: 200 +2025/05/04-10:09:55.819463 42 Options.compaction_options_universal.compression_size_percent: -1 +2025/05/04-10:09:55.819464 42 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize +2025/05/04-10:09:55.819464 42 Options.compaction_options_universal.max_read_amp: -1 +2025/05/04-10:09:55.819465 42 Options.compaction_options_fifo.max_table_files_size: 1073741824 +2025/05/04-10:09:55.819465 42 Options.compaction_options_fifo.allow_compaction: 0 +2025/05/04-10:09:55.819466 42 Options.table_properties_collectors: +2025/05/04-10:09:55.819467 42 Options.inplace_update_support: 0 +2025/05/04-10:09:55.819467 42 Options.inplace_update_num_locks: 10000 +2025/05/04-10:09:55.819468 42 Options.memtable_prefix_bloom_size_ratio: 0.000000 +2025/05/04-10:09:55.819469 42 Options.memtable_whole_key_filtering: 0 +2025/05/04-10:09:55.819469 42 Options.memtable_huge_page_size: 0 +2025/05/04-10:09:55.819470 42 Options.bloom_locality: 0 +2025/05/04-10:09:55.819470 42 Options.max_successive_merges: 0 +2025/05/04-10:09:55.819471 42 Options.strict_max_successive_merges: 0 +2025/05/04-10:09:55.819471 42 Options.optimize_filters_for_hits: 0 +2025/05/04-10:09:55.819472 42 Options.paranoid_file_checks: 0 +2025/05/04-10:09:55.819472 42 Options.force_consistency_checks: 1 +2025/05/04-10:09:55.819473 42 Options.report_bg_io_stats: 0 +2025/05/04-10:09:55.819473 42 Options.ttl: 2592000 +2025/05/04-10:09:55.819474 42 Options.periodic_compaction_seconds: 0 +2025/05/04-10:09:55.819474 42 Options.default_temperature: kUnknown +2025/05/04-10:09:55.819475 42 Options.preclude_last_level_data_seconds: 0 +2025/05/04-10:09:55.819475 42 Options.preserve_internal_time_seconds: 0 +2025/05/04-10:09:55.819476 42 Options.enable_blob_files: false +2025/05/04-10:09:55.819477 42 Options.min_blob_size: 0 +2025/05/04-10:09:55.819477 42 Options.blob_file_size: 268435456 +2025/05/04-10:09:55.819478 42 Options.blob_compression_type: NoCompression +2025/05/04-10:09:55.819478 42 Options.enable_blob_garbage_collection: false +2025/05/04-10:09:55.819479 42 Options.blob_garbage_collection_age_cutoff: 0.250000 +2025/05/04-10:09:55.819480 42 Options.blob_garbage_collection_force_threshold: 1.000000 +2025/05/04-10:09:55.819480 42 Options.blob_compaction_readahead_size: 0 +2025/05/04-10:09:55.819481 42 Options.blob_file_starting_level: 0 +2025/05/04-10:09:55.819481 42 Options.experimental_mempurge_threshold: 0.000000 +2025/05/04-10:09:55.819482 42 Options.memtable_max_range_deletions: 0 +2025/05/04-10:09:55.827655 42 DB pointer 0xffff80662000 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/payload_index/MANIFEST-000013 b/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/payload_index/MANIFEST-000013 new file mode 100644 index 0000000000000000000000000000000000000000..ecfbb0d5f4f7aab67595870e415de4d1d3f358cb Binary files /dev/null and b/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/payload_index/MANIFEST-000013 differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/payload_index/OPTIONS-000011 b/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/payload_index/OPTIONS-000011 new file mode 100644 index 0000000000000000000000000000000000000000..1ff6c6ffcc08e04f8a99e1f459e7b0caa1822cb2 --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/payload_index/OPTIONS-000011 @@ -0,0 +1,214 @@ +# This is a RocksDB option file. +# +# For detailed file format spec, please refer to the example file +# in examples/rocksdb_option_file_example.ini +# + +[Version] + rocksdb_version=9.9.3 + options_file_version=1.1 + +[DBOptions] + compaction_readahead_size=2097152 + strict_bytes_per_sync=false + bytes_per_sync=0 + max_background_jobs=2 + avoid_flush_during_shutdown=false + max_background_flushes=-1 + delayed_write_rate=16777216 + max_open_files=256 + max_subcompactions=1 + writable_file_max_buffer_size=1048576 + wal_bytes_per_sync=0 + max_background_compactions=-1 + max_total_wal_size=0 + delete_obsolete_files_period_micros=180000000 + stats_dump_period_sec=600 + stats_history_buffer_size=1048576 + stats_persist_period_sec=600 + follower_refresh_catchup_period_ms=10000 + enforce_single_del_contracts=true + lowest_used_cache_tier=kNonVolatileBlockTier + bgerror_resume_retry_interval=1000000 + metadata_write_temperature=kUnknown + best_efforts_recovery=false + log_readahead_size=0 + write_identity_file=true + write_dbid_to_manifest=true + prefix_seek_opt_in_only=false + wal_compression=kNoCompression + manual_wal_flush=false + db_host_id=__hostname__ + two_write_queues=false + random_access_max_buffer_size=1048576 + avoid_unnecessary_blocking_io=false + skip_checking_sst_file_sizes_on_db_open=false + flush_verify_memtable_count=true + fail_if_options_file_error=true + atomic_flush=false + verify_sst_unique_id_in_manifest=true + skip_stats_update_on_db_open=false + track_and_verify_wals_in_manifest=false + compaction_verify_record_count=true + paranoid_checks=true + create_if_missing=true + max_write_batch_group_size_bytes=1048576 + follower_catchup_retry_count=10 + avoid_flush_during_recovery=false + file_checksum_gen_factory=nullptr + enable_thread_tracking=false + allow_fallocate=true + allow_data_in_errors=false + error_if_exists=false + use_direct_io_for_flush_and_compaction=false + background_close_inactive_wals=false + create_missing_column_families=true + WAL_size_limit_MB=0 + use_direct_reads=false + persist_stats_to_disk=false + allow_2pc=false + is_fd_close_on_exec=true + max_log_file_size=1048576 + max_file_opening_threads=16 + wal_filter=nullptr + wal_write_temperature=kUnknown + follower_catchup_retry_wait_ms=100 + allow_mmap_reads=false + allow_mmap_writes=false + use_adaptive_mutex=false + use_fsync=false + table_cache_numshardbits=6 + dump_malloc_stats=false + db_write_buffer_size=0 + allow_ingest_behind=false + keep_log_file_num=1 + max_bgerror_resume_count=2147483647 + allow_concurrent_memtable_write=true + recycle_log_file_num=0 + log_file_time_to_roll=0 + manifest_preallocation_size=4194304 + enable_write_thread_adaptive_yield=true + WAL_ttl_seconds=0 + max_manifest_file_size=1073741824 + wal_recovery_mode=kTolerateCorruptedTailRecords + enable_pipelined_write=false + write_thread_slow_yield_usec=3 + unordered_write=false + write_thread_max_yield_usec=100 + advise_random_on_open=true + info_log_level=ERROR_LEVEL + + +[CFOptions "default"] + memtable_max_range_deletions=0 + compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_memory_checks=false + block_protection_bytes_per_key=0 + uncache_aggressiveness=0 + bottommost_file_compaction_delay=0 + memtable_protection_bytes_per_key=0 + experimental_mempurge_threshold=0.000000 + bottommost_compression=kDisableCompressionOption + sample_for_compression=0 + prepopulate_blob_cache=kDisable + blob_file_starting_level=0 + blob_compaction_readahead_size=0 + table_factory=BlockBasedTable + max_successive_merges=0 + max_write_buffer_number=2 + prefix_extractor=nullptr + memtable_huge_page_size=0 + write_buffer_size=10485760 + strict_max_successive_merges=false + arena_block_size=1048576 + level0_file_num_compaction_trigger=4 + report_bg_io_stats=false + inplace_update_num_locks=10000 + memtable_prefix_bloom_size_ratio=0.000000 + level0_stop_writes_trigger=36 + blob_compression_type=kNoCompression + level0_slowdown_writes_trigger=20 + hard_pending_compaction_bytes_limit=274877906944 + target_file_size_multiplier=1 + bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_file_checks=false + blob_garbage_collection_force_threshold=1.000000 + enable_blob_files=false + soft_pending_compaction_bytes_limit=68719476736 + target_file_size_base=67108864 + max_compaction_bytes=1677721600 + disable_auto_compactions=false + min_blob_size=0 + memtable_whole_key_filtering=false + max_bytes_for_level_base=268435456 + last_level_temperature=kUnknown + preserve_internal_time_seconds=0 + compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} + max_bytes_for_level_multiplier=10.000000 + max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 + max_sequential_skip_in_iterations=8 + compression=kLZ4Compression + default_write_temperature=kUnknown + compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} + blob_garbage_collection_age_cutoff=0.250000 + ttl=2592000 + periodic_compaction_seconds=0 + preclude_last_level_data_seconds=0 + blob_file_size=268435456 + enable_blob_garbage_collection=false + persist_user_defined_timestamps=true + compaction_pri=kMinOverlappingRatio + compaction_filter_factory=nullptr + comparator=leveldb.BytewiseComparator + bloom_locality=0 + merge_operator=nullptr + compaction_filter=nullptr + level_compaction_dynamic_level_bytes=true + optimize_filters_for_hits=false + inplace_update_support=false + max_write_buffer_number_to_maintain=0 + max_write_buffer_size_to_maintain=0 + sst_partitioner_factory=nullptr + default_temperature=kUnknown + compaction_style=kCompactionStyleLevel + min_write_buffer_number_to_merge=1 + memtable_factory=SkipListFactory + memtable_insert_with_hint_prefix_extractor=nullptr + force_consistency_checks=true + num_levels=7 + +[TableOptions/BlockBasedTable "default"] + num_file_reads_for_auto_readahead=2 + initial_auto_readahead_size=8192 + metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} + enable_index_compression=true + verify_compression=false + prepopulate_block_cache=kDisable + format_version=6 + use_delta_encoding=true + pin_top_level_index_and_filter=true + read_amp_bytes_per_bit=0 + decouple_partitioned_filters=false + partition_filters=false + metadata_block_size=4096 + max_auto_readahead_size=262144 + index_block_restart_interval=1 + block_size_deviation=10 + block_size=4096 + detect_filter_construct_corruption=false + no_block_cache=false + checksum=kXXH3 + filter_policy=nullptr + data_block_hash_table_util_ratio=0.750000 + block_restart_interval=16 + index_type=kBinarySearch + pin_l0_filter_and_index_blocks_in_cache=false + data_block_index_type=kDataBlockBinarySearch + cache_index_and_filter_blocks_with_high_priority=true + whole_key_filtering=true + index_shortening=kShortenSeparators + cache_index_and_filter_blocks=false + block_align=false + optimize_filters_for_memory=true + flush_block_policy_factory=FlushBlockBySizePolicyFactory + diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/payload_index/OPTIONS-000015 b/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/payload_index/OPTIONS-000015 new file mode 100644 index 0000000000000000000000000000000000000000..1ff6c6ffcc08e04f8a99e1f459e7b0caa1822cb2 --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/payload_index/OPTIONS-000015 @@ -0,0 +1,214 @@ +# This is a RocksDB option file. +# +# For detailed file format spec, please refer to the example file +# in examples/rocksdb_option_file_example.ini +# + +[Version] + rocksdb_version=9.9.3 + options_file_version=1.1 + +[DBOptions] + compaction_readahead_size=2097152 + strict_bytes_per_sync=false + bytes_per_sync=0 + max_background_jobs=2 + avoid_flush_during_shutdown=false + max_background_flushes=-1 + delayed_write_rate=16777216 + max_open_files=256 + max_subcompactions=1 + writable_file_max_buffer_size=1048576 + wal_bytes_per_sync=0 + max_background_compactions=-1 + max_total_wal_size=0 + delete_obsolete_files_period_micros=180000000 + stats_dump_period_sec=600 + stats_history_buffer_size=1048576 + stats_persist_period_sec=600 + follower_refresh_catchup_period_ms=10000 + enforce_single_del_contracts=true + lowest_used_cache_tier=kNonVolatileBlockTier + bgerror_resume_retry_interval=1000000 + metadata_write_temperature=kUnknown + best_efforts_recovery=false + log_readahead_size=0 + write_identity_file=true + write_dbid_to_manifest=true + prefix_seek_opt_in_only=false + wal_compression=kNoCompression + manual_wal_flush=false + db_host_id=__hostname__ + two_write_queues=false + random_access_max_buffer_size=1048576 + avoid_unnecessary_blocking_io=false + skip_checking_sst_file_sizes_on_db_open=false + flush_verify_memtable_count=true + fail_if_options_file_error=true + atomic_flush=false + verify_sst_unique_id_in_manifest=true + skip_stats_update_on_db_open=false + track_and_verify_wals_in_manifest=false + compaction_verify_record_count=true + paranoid_checks=true + create_if_missing=true + max_write_batch_group_size_bytes=1048576 + follower_catchup_retry_count=10 + avoid_flush_during_recovery=false + file_checksum_gen_factory=nullptr + enable_thread_tracking=false + allow_fallocate=true + allow_data_in_errors=false + error_if_exists=false + use_direct_io_for_flush_and_compaction=false + background_close_inactive_wals=false + create_missing_column_families=true + WAL_size_limit_MB=0 + use_direct_reads=false + persist_stats_to_disk=false + allow_2pc=false + is_fd_close_on_exec=true + max_log_file_size=1048576 + max_file_opening_threads=16 + wal_filter=nullptr + wal_write_temperature=kUnknown + follower_catchup_retry_wait_ms=100 + allow_mmap_reads=false + allow_mmap_writes=false + use_adaptive_mutex=false + use_fsync=false + table_cache_numshardbits=6 + dump_malloc_stats=false + db_write_buffer_size=0 + allow_ingest_behind=false + keep_log_file_num=1 + max_bgerror_resume_count=2147483647 + allow_concurrent_memtable_write=true + recycle_log_file_num=0 + log_file_time_to_roll=0 + manifest_preallocation_size=4194304 + enable_write_thread_adaptive_yield=true + WAL_ttl_seconds=0 + max_manifest_file_size=1073741824 + wal_recovery_mode=kTolerateCorruptedTailRecords + enable_pipelined_write=false + write_thread_slow_yield_usec=3 + unordered_write=false + write_thread_max_yield_usec=100 + advise_random_on_open=true + info_log_level=ERROR_LEVEL + + +[CFOptions "default"] + memtable_max_range_deletions=0 + compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_memory_checks=false + block_protection_bytes_per_key=0 + uncache_aggressiveness=0 + bottommost_file_compaction_delay=0 + memtable_protection_bytes_per_key=0 + experimental_mempurge_threshold=0.000000 + bottommost_compression=kDisableCompressionOption + sample_for_compression=0 + prepopulate_blob_cache=kDisable + blob_file_starting_level=0 + blob_compaction_readahead_size=0 + table_factory=BlockBasedTable + max_successive_merges=0 + max_write_buffer_number=2 + prefix_extractor=nullptr + memtable_huge_page_size=0 + write_buffer_size=10485760 + strict_max_successive_merges=false + arena_block_size=1048576 + level0_file_num_compaction_trigger=4 + report_bg_io_stats=false + inplace_update_num_locks=10000 + memtable_prefix_bloom_size_ratio=0.000000 + level0_stop_writes_trigger=36 + blob_compression_type=kNoCompression + level0_slowdown_writes_trigger=20 + hard_pending_compaction_bytes_limit=274877906944 + target_file_size_multiplier=1 + bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_file_checks=false + blob_garbage_collection_force_threshold=1.000000 + enable_blob_files=false + soft_pending_compaction_bytes_limit=68719476736 + target_file_size_base=67108864 + max_compaction_bytes=1677721600 + disable_auto_compactions=false + min_blob_size=0 + memtable_whole_key_filtering=false + max_bytes_for_level_base=268435456 + last_level_temperature=kUnknown + preserve_internal_time_seconds=0 + compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} + max_bytes_for_level_multiplier=10.000000 + max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 + max_sequential_skip_in_iterations=8 + compression=kLZ4Compression + default_write_temperature=kUnknown + compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} + blob_garbage_collection_age_cutoff=0.250000 + ttl=2592000 + periodic_compaction_seconds=0 + preclude_last_level_data_seconds=0 + blob_file_size=268435456 + enable_blob_garbage_collection=false + persist_user_defined_timestamps=true + compaction_pri=kMinOverlappingRatio + compaction_filter_factory=nullptr + comparator=leveldb.BytewiseComparator + bloom_locality=0 + merge_operator=nullptr + compaction_filter=nullptr + level_compaction_dynamic_level_bytes=true + optimize_filters_for_hits=false + inplace_update_support=false + max_write_buffer_number_to_maintain=0 + max_write_buffer_size_to_maintain=0 + sst_partitioner_factory=nullptr + default_temperature=kUnknown + compaction_style=kCompactionStyleLevel + min_write_buffer_number_to_merge=1 + memtable_factory=SkipListFactory + memtable_insert_with_hint_prefix_extractor=nullptr + force_consistency_checks=true + num_levels=7 + +[TableOptions/BlockBasedTable "default"] + num_file_reads_for_auto_readahead=2 + initial_auto_readahead_size=8192 + metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} + enable_index_compression=true + verify_compression=false + prepopulate_block_cache=kDisable + format_version=6 + use_delta_encoding=true + pin_top_level_index_and_filter=true + read_amp_bytes_per_bit=0 + decouple_partitioned_filters=false + partition_filters=false + metadata_block_size=4096 + max_auto_readahead_size=262144 + index_block_restart_interval=1 + block_size_deviation=10 + block_size=4096 + detect_filter_construct_corruption=false + no_block_cache=false + checksum=kXXH3 + filter_policy=nullptr + data_block_hash_table_util_ratio=0.750000 + block_restart_interval=16 + index_type=kBinarySearch + pin_l0_filter_and_index_blocks_in_cache=false + data_block_index_type=kDataBlockBinarySearch + cache_index_and_filter_blocks_with_high_priority=true + whole_key_filtering=true + index_shortening=kShortenSeparators + cache_index_and_filter_blocks=false + block_align=false + optimize_filters_for_memory=true + flush_block_policy_factory=FlushBlockBySizePolicyFactory + diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/payload_index/config.json b/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/payload_index/config.json new file mode 100644 index 0000000000000000000000000000000000000000..7d0db25a817fdb0c73414e2809921889f6ff065f --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/payload_index/config.json @@ -0,0 +1 @@ +{"indexed_fields":{},"skip_rocksdb":null} \ No newline at end of file diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/payload_storage/bitmask.dat b/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/payload_storage/bitmask.dat new file mode 100644 index 0000000000000000000000000000000000000000..fc020b09aa06022fc6861a9a085a1d9042375325 Binary files /dev/null and b/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/payload_storage/bitmask.dat differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/payload_storage/config.json b/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/payload_storage/config.json new file mode 100644 index 0000000000000000000000000000000000000000..9477c128b4ebf57927ba47096ca8af9166799c4f --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/payload_storage/config.json @@ -0,0 +1 @@ +{"page_size_bytes":33554432,"block_size_bytes":128,"region_size_blocks":8192,"compression":"LZ4"} \ No newline at end of file diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/payload_storage/gaps.dat b/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/payload_storage/gaps.dat new file mode 100644 index 0000000000000000000000000000000000000000..f40dd62eb7386e6b13ea32f507689a8d830017b1 Binary files /dev/null and b/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/payload_storage/gaps.dat differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/payload_storage/page_0.dat b/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/payload_storage/page_0.dat new file mode 100644 index 0000000000000000000000000000000000000000..f7d5559a756df2cb840bc950998f40dd171404d7 Binary files /dev/null and b/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/payload_storage/page_0.dat differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/payload_storage/tracker.dat b/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/payload_storage/tracker.dat new file mode 100644 index 0000000000000000000000000000000000000000..72b30df5ce92652d1943caac5bb0b5bfe5695cea Binary files /dev/null and b/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/payload_storage/tracker.dat differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/segment.json b/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/segment.json new file mode 100644 index 0000000000000000000000000000000000000000..1551db3738061c764444381b1d49689f53f9e847 --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/segment.json @@ -0,0 +1 @@ +{"version":0,"config":{"vector_data":{"":{"size":1536,"distance":"Cosine","storage_type":"InRamChunkedMmap","index":{"type":"plain","options":{}},"quantization_config":null}},"payload_storage_type":{"type":"mmap"}}} \ No newline at end of file diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/vector_storage/deleted/flags_a.dat b/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/vector_storage/deleted/flags_a.dat new file mode 100644 index 0000000000000000000000000000000000000000..9e0f96a2a253b173cb45b41868209a5d043e1437 Binary files /dev/null and b/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/vector_storage/deleted/flags_a.dat differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/vector_storage/deleted/status.dat b/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/vector_storage/deleted/status.dat new file mode 100644 index 0000000000000000000000000000000000000000..2ae625c2a69481b83a6bb2f17119e6a4bbed4638 Binary files /dev/null and b/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/vector_storage/deleted/status.dat differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/vector_storage/vectors/chunk_0.mmap b/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/vector_storage/vectors/chunk_0.mmap new file mode 100644 index 0000000000000000000000000000000000000000..d90dca703e4bc218f9d96a2283f39bccbd4b0ad8 Binary files /dev/null and b/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/vector_storage/vectors/chunk_0.mmap differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/vector_storage/vectors/config.json b/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/vector_storage/vectors/config.json new file mode 100644 index 0000000000000000000000000000000000000000..ff57a41ff8c6af2be033c6652e21559c49b5a9fa --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/vector_storage/vectors/config.json @@ -0,0 +1 @@ +{"chunk_size_bytes":33552384,"chunk_size_vectors":5461,"dim":1536,"mlock":false,"populate":true} \ No newline at end of file diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/vector_storage/vectors/status.dat b/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/vector_storage/vectors/status.dat new file mode 100644 index 0000000000000000000000000000000000000000..71c2a58453e27ee89ad7d15b1a5f12433409fff4 Binary files /dev/null and b/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/vector_storage/vectors/status.dat differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/version.info b/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/version.info new file mode 100644 index 0000000000000000000000000000000000000000..09a3acfa138db01dc50a688796b2861638c369ec --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/c013c9e1-3186-4e7d-9021-82b4677d5999/version.info @@ -0,0 +1 @@ +0.6.0 \ No newline at end of file diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/000009.sst b/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/000009.sst new file mode 100644 index 0000000000000000000000000000000000000000..23129672582347a435ad9cba480643d16828908c Binary files /dev/null and b/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/000009.sst differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/000018.sst b/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/000018.sst new file mode 100644 index 0000000000000000000000000000000000000000..9f6b404559691eb275fff52824df59a5d11ad157 Binary files /dev/null and b/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/000018.sst differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/000025.log b/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/000025.log new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/CURRENT b/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/CURRENT new file mode 100644 index 0000000000000000000000000000000000000000..8b1521509dd8df7cb373c026dcaafcfb2d22f1f7 --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/CURRENT @@ -0,0 +1 @@ +MANIFEST-000026 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/IDENTITY b/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/IDENTITY new file mode 100644 index 0000000000000000000000000000000000000000..c0be3263d3020045aa530ba26e0abd56d10abaee --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/IDENTITY @@ -0,0 +1 @@ +ca305d4a-3114-439d-8569-75e7cf0f6a9a \ No newline at end of file diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/LOCK b/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/LOCK new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/LOG b/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/LOG new file mode 100644 index 0000000000000000000000000000000000000000..8eab85fdf7c636d6d0cc3e5fc259e663ad3278db --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/LOG @@ -0,0 +1,787 @@ +2025/05/04-10:09:55.597008 38 RocksDB version: 9.9.3 +2025/05/04-10:09:55.597133 38 Compile date 2024-12-05 01:25:31 +2025/05/04-10:09:55.597136 38 DB SUMMARY +2025/05/04-10:09:55.597137 38 Host name (Env): c5f2a9d061bb +2025/05/04-10:09:55.597138 38 DB Session ID: CD0SHR3DDC5AMRBDXMDR +2025/05/04-10:09:55.598259 38 CURRENT file: CURRENT +2025/05/04-10:09:55.598261 38 IDENTITY file: IDENTITY +2025/05/04-10:09:55.598334 38 MANIFEST file: MANIFEST-000022 size: 767 Bytes +2025/05/04-10:09:55.598336 38 SST files in ./storage/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee dir, Total Num: 2, files: 000009.sst 000018.sst +2025/05/04-10:09:55.598337 38 Write Ahead Log file in ./storage/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee: 000021.log size: 0 ; +2025/05/04-10:09:55.598338 38 Options.error_if_exists: 0 +2025/05/04-10:09:55.598339 38 Options.create_if_missing: 1 +2025/05/04-10:09:55.598340 38 Options.paranoid_checks: 1 +2025/05/04-10:09:55.598340 38 Options.flush_verify_memtable_count: 1 +2025/05/04-10:09:55.598341 38 Options.compaction_verify_record_count: 1 +2025/05/04-10:09:55.598342 38 Options.track_and_verify_wals_in_manifest: 0 +2025/05/04-10:09:55.598343 38 Options.verify_sst_unique_id_in_manifest: 1 +2025/05/04-10:09:55.598343 38 Options.env: 0xffff86034000 +2025/05/04-10:09:55.598344 38 Options.fs: PosixFileSystem +2025/05/04-10:09:55.598345 38 Options.info_log: 0xffff85ca1000 +2025/05/04-10:09:55.598345 38 Options.max_file_opening_threads: 16 +2025/05/04-10:09:55.598346 38 Options.statistics: (nil) +2025/05/04-10:09:55.598347 38 Options.use_fsync: 0 +2025/05/04-10:09:55.598347 38 Options.max_log_file_size: 1048576 +2025/05/04-10:09:55.598348 38 Options.max_manifest_file_size: 1073741824 +2025/05/04-10:09:55.598348 38 Options.log_file_time_to_roll: 0 +2025/05/04-10:09:55.598349 38 Options.keep_log_file_num: 1 +2025/05/04-10:09:55.598350 38 Options.recycle_log_file_num: 0 +2025/05/04-10:09:55.598350 38 Options.allow_fallocate: 1 +2025/05/04-10:09:55.598351 38 Options.allow_mmap_reads: 0 +2025/05/04-10:09:55.598351 38 Options.allow_mmap_writes: 0 +2025/05/04-10:09:55.598352 38 Options.use_direct_reads: 0 +2025/05/04-10:09:55.598352 38 Options.use_direct_io_for_flush_and_compaction: 0 +2025/05/04-10:09:55.598353 38 Options.create_missing_column_families: 1 +2025/05/04-10:09:55.598353 38 Options.db_log_dir: +2025/05/04-10:09:55.598354 38 Options.wal_dir: +2025/05/04-10:09:55.598355 38 Options.table_cache_numshardbits: 6 +2025/05/04-10:09:55.598355 38 Options.WAL_ttl_seconds: 0 +2025/05/04-10:09:55.598356 38 Options.WAL_size_limit_MB: 0 +2025/05/04-10:09:55.598356 38 Options.max_write_batch_group_size_bytes: 1048576 +2025/05/04-10:09:55.598357 38 Options.manifest_preallocation_size: 4194304 +2025/05/04-10:09:55.598357 38 Options.is_fd_close_on_exec: 1 +2025/05/04-10:09:55.598358 38 Options.advise_random_on_open: 1 +2025/05/04-10:09:55.598359 38 Options.db_write_buffer_size: 0 +2025/05/04-10:09:55.598359 38 Options.write_buffer_manager: 0xffff85c090c0 +2025/05/04-10:09:55.598360 38 Options.random_access_max_buffer_size: 1048576 +2025/05/04-10:09:55.598360 38 Options.use_adaptive_mutex: 0 +2025/05/04-10:09:55.598361 38 Options.rate_limiter: (nil) +2025/05/04-10:09:55.598362 38 Options.sst_file_manager.rate_bytes_per_sec: 0 +2025/05/04-10:09:55.598388 38 Options.wal_recovery_mode: 0 +2025/05/04-10:09:55.598391 38 Options.enable_thread_tracking: 0 +2025/05/04-10:09:55.598391 38 Options.enable_pipelined_write: 0 +2025/05/04-10:09:55.598393 38 Options.unordered_write: 0 +2025/05/04-10:09:55.598393 38 Options.allow_concurrent_memtable_write: 1 +2025/05/04-10:09:55.598394 38 Options.enable_write_thread_adaptive_yield: 1 +2025/05/04-10:09:55.598395 38 Options.write_thread_max_yield_usec: 100 +2025/05/04-10:09:55.598395 38 Options.write_thread_slow_yield_usec: 3 +2025/05/04-10:09:55.598396 38 Options.row_cache: None +2025/05/04-10:09:55.598397 38 Options.wal_filter: None +2025/05/04-10:09:55.598398 38 Options.avoid_flush_during_recovery: 0 +2025/05/04-10:09:55.598399 38 Options.allow_ingest_behind: 0 +2025/05/04-10:09:55.598400 38 Options.two_write_queues: 0 +2025/05/04-10:09:55.598400 38 Options.manual_wal_flush: 0 +2025/05/04-10:09:55.598401 38 Options.wal_compression: 0 +2025/05/04-10:09:55.598401 38 Options.background_close_inactive_wals: 0 +2025/05/04-10:09:55.598402 38 Options.atomic_flush: 0 +2025/05/04-10:09:55.598402 38 Options.avoid_unnecessary_blocking_io: 0 +2025/05/04-10:09:55.598403 38 Options.prefix_seek_opt_in_only: 0 +2025/05/04-10:09:55.598403 38 Options.persist_stats_to_disk: 0 +2025/05/04-10:09:55.598404 38 Options.write_dbid_to_manifest: 1 +2025/05/04-10:09:55.598405 38 Options.write_identity_file: 1 +2025/05/04-10:09:55.598406 38 Options.log_readahead_size: 0 +2025/05/04-10:09:55.598406 38 Options.file_checksum_gen_factory: Unknown +2025/05/04-10:09:55.598407 38 Options.best_efforts_recovery: 0 +2025/05/04-10:09:55.598407 38 Options.max_bgerror_resume_count: 2147483647 +2025/05/04-10:09:55.598408 38 Options.bgerror_resume_retry_interval: 1000000 +2025/05/04-10:09:55.598409 38 Options.allow_data_in_errors: 0 +2025/05/04-10:09:55.598409 38 Options.db_host_id: __hostname__ +2025/05/04-10:09:55.598410 38 Options.enforce_single_del_contracts: true +2025/05/04-10:09:55.598411 38 Options.metadata_write_temperature: kUnknown +2025/05/04-10:09:55.598411 38 Options.wal_write_temperature: kUnknown +2025/05/04-10:09:55.598412 38 Options.max_background_jobs: 2 +2025/05/04-10:09:55.598413 38 Options.max_background_compactions: -1 +2025/05/04-10:09:55.598414 38 Options.max_subcompactions: 1 +2025/05/04-10:09:55.598415 38 Options.avoid_flush_during_shutdown: 0 +2025/05/04-10:09:55.598416 38 Options.writable_file_max_buffer_size: 1048576 +2025/05/04-10:09:55.598417 38 Options.delayed_write_rate : 16777216 +2025/05/04-10:09:55.598417 38 Options.max_total_wal_size: 0 +2025/05/04-10:09:55.598418 38 Options.delete_obsolete_files_period_micros: 180000000 +2025/05/04-10:09:55.598419 38 Options.stats_dump_period_sec: 600 +2025/05/04-10:09:55.598420 38 Options.stats_persist_period_sec: 600 +2025/05/04-10:09:55.598420 38 Options.stats_history_buffer_size: 1048576 +2025/05/04-10:09:55.598421 38 Options.max_open_files: 256 +2025/05/04-10:09:55.598421 38 Options.bytes_per_sync: 0 +2025/05/04-10:09:55.598422 38 Options.wal_bytes_per_sync: 0 +2025/05/04-10:09:55.598423 38 Options.strict_bytes_per_sync: 0 +2025/05/04-10:09:55.598424 38 Options.compaction_readahead_size: 2097152 +2025/05/04-10:09:55.598424 38 Options.max_background_flushes: -1 +2025/05/04-10:09:55.598425 38 Options.daily_offpeak_time_utc: +2025/05/04-10:09:55.598426 38 Compression algorithms supported: +2025/05/04-10:09:55.598427 38 kZSTD supported: 0 +2025/05/04-10:09:55.598427 38 kXpressCompression supported: 0 +2025/05/04-10:09:55.598428 38 kBZip2Compression supported: 0 +2025/05/04-10:09:55.598429 38 kZSTDNotFinalCompression supported: 0 +2025/05/04-10:09:55.598430 38 kLZ4Compression supported: 1 +2025/05/04-10:09:55.598430 38 kZlibCompression supported: 0 +2025/05/04-10:09:55.598431 38 kLZ4HCCompression supported: 1 +2025/05/04-10:09:55.598431 38 kSnappyCompression supported: 1 +2025/05/04-10:09:55.598433 38 Fast CRC32 supported: Not supported on x86 +2025/05/04-10:09:55.598433 38 DMutex implementation: pthread_mutex_t +2025/05/04-10:09:55.598434 38 Jemalloc supported: 0 +2025/05/04-10:09:55.600629 38 Options.comparator: leveldb.BytewiseComparator +2025/05/04-10:09:55.600631 38 Options.merge_operator: None +2025/05/04-10:09:55.600632 38 Options.compaction_filter: None +2025/05/04-10:09:55.600632 38 Options.compaction_filter_factory: None +2025/05/04-10:09:55.600633 38 Options.sst_partitioner_factory: None +2025/05/04-10:09:55.600634 38 Options.memtable_factory: SkipListFactory +2025/05/04-10:09:55.600635 38 Options.table_factory: BlockBasedTable +2025/05/04-10:09:55.600646 38 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff85c00060) + cache_index_and_filter_blocks: 0 + cache_index_and_filter_blocks_with_high_priority: 1 + pin_l0_filter_and_index_blocks_in_cache: 0 + pin_top_level_index_and_filter: 1 + index_type: 0 + data_block_index_type: 0 + index_shortening: 1 + data_block_hash_table_util_ratio: 0.750000 + checksum: 4 + no_block_cache: 0 + block_cache: 0xffff85c09010 + block_cache_name: LRUCache + block_cache_options: + capacity : 33554432 + num_shard_bits : 6 + strict_capacity_limit : 0 + memory_allocator : None + high_pri_pool_ratio: 0.500 + low_pri_pool_ratio: 0.000 + persistent_cache: (nil) + block_size: 4096 + block_size_deviation: 10 + block_restart_interval: 16 + index_block_restart_interval: 1 + metadata_block_size: 4096 + partition_filters: 0 + use_delta_encoding: 1 + filter_policy: nullptr + whole_key_filtering: 1 + verify_compression: 0 + read_amp_bytes_per_bit: 0 + format_version: 6 + enable_index_compression: 1 + block_align: 0 + max_auto_readahead_size: 262144 + prepopulate_block_cache: 0 + initial_auto_readahead_size: 8192 + num_file_reads_for_auto_readahead: 2 +2025/05/04-10:09:55.600648 38 Options.write_buffer_size: 10485760 +2025/05/04-10:09:55.600648 38 Options.max_write_buffer_number: 2 +2025/05/04-10:09:55.600649 38 Options.compression: LZ4 +2025/05/04-10:09:55.600650 38 Options.bottommost_compression: Disabled +2025/05/04-10:09:55.600650 38 Options.prefix_extractor: nullptr +2025/05/04-10:09:55.600651 38 Options.memtable_insert_with_hint_prefix_extractor: nullptr +2025/05/04-10:09:55.600652 38 Options.num_levels: 7 +2025/05/04-10:09:55.600652 38 Options.min_write_buffer_number_to_merge: 1 +2025/05/04-10:09:55.600653 38 Options.max_write_buffer_number_to_maintain: 0 +2025/05/04-10:09:55.600653 38 Options.max_write_buffer_size_to_maintain: 0 +2025/05/04-10:09:55.600654 38 Options.bottommost_compression_opts.window_bits: -14 +2025/05/04-10:09:55.600655 38 Options.bottommost_compression_opts.level: 32767 +2025/05/04-10:09:55.600655 38 Options.bottommost_compression_opts.strategy: 0 +2025/05/04-10:09:55.600656 38 Options.bottommost_compression_opts.max_dict_bytes: 0 +2025/05/04-10:09:55.600656 38 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 +2025/05/04-10:09:55.600657 38 Options.bottommost_compression_opts.parallel_threads: 1 +2025/05/04-10:09:55.600657 38 Options.bottommost_compression_opts.enabled: false +2025/05/04-10:09:55.600658 38 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 +2025/05/04-10:09:55.600659 38 Options.bottommost_compression_opts.use_zstd_dict_trainer: true +2025/05/04-10:09:55.600659 38 Options.compression_opts.window_bits: -14 +2025/05/04-10:09:55.600660 38 Options.compression_opts.level: 32767 +2025/05/04-10:09:55.600660 38 Options.compression_opts.strategy: 0 +2025/05/04-10:09:55.600663 38 Options.compression_opts.max_dict_bytes: 0 +2025/05/04-10:09:55.600663 38 Options.compression_opts.zstd_max_train_bytes: 0 +2025/05/04-10:09:55.600664 38 Options.compression_opts.use_zstd_dict_trainer: true +2025/05/04-10:09:55.600665 38 Options.compression_opts.parallel_threads: 1 +2025/05/04-10:09:55.600665 38 Options.compression_opts.enabled: false +2025/05/04-10:09:55.600666 38 Options.compression_opts.max_dict_buffer_bytes: 0 +2025/05/04-10:09:55.600666 38 Options.level0_file_num_compaction_trigger: 4 +2025/05/04-10:09:55.600667 38 Options.level0_slowdown_writes_trigger: 20 +2025/05/04-10:09:55.600667 38 Options.level0_stop_writes_trigger: 36 +2025/05/04-10:09:55.600668 38 Options.target_file_size_base: 67108864 +2025/05/04-10:09:55.600669 38 Options.target_file_size_multiplier: 1 +2025/05/04-10:09:55.600669 38 Options.max_bytes_for_level_base: 268435456 +2025/05/04-10:09:55.600670 38 Options.level_compaction_dynamic_level_bytes: 1 +2025/05/04-10:09:55.600671 38 Options.max_bytes_for_level_multiplier: 10.000000 +2025/05/04-10:09:55.600671 38 Options.max_bytes_for_level_multiplier_addtl[0]: 1 +2025/05/04-10:09:55.600672 38 Options.max_bytes_for_level_multiplier_addtl[1]: 1 +2025/05/04-10:09:55.600672 38 Options.max_bytes_for_level_multiplier_addtl[2]: 1 +2025/05/04-10:09:55.600673 38 Options.max_bytes_for_level_multiplier_addtl[3]: 1 +2025/05/04-10:09:55.600673 38 Options.max_bytes_for_level_multiplier_addtl[4]: 1 +2025/05/04-10:09:55.600674 38 Options.max_bytes_for_level_multiplier_addtl[5]: 1 +2025/05/04-10:09:55.600675 38 Options.max_bytes_for_level_multiplier_addtl[6]: 1 +2025/05/04-10:09:55.600676 38 Options.max_sequential_skip_in_iterations: 8 +2025/05/04-10:09:55.600677 38 Options.max_compaction_bytes: 1677721600 +2025/05/04-10:09:55.600677 38 Options.arena_block_size: 1048576 +2025/05/04-10:09:55.600678 38 Options.soft_pending_compaction_bytes_limit: 68719476736 +2025/05/04-10:09:55.600678 38 Options.hard_pending_compaction_bytes_limit: 274877906944 +2025/05/04-10:09:55.600680 38 Options.disable_auto_compactions: 0 +2025/05/04-10:09:55.600681 38 Options.compaction_style: kCompactionStyleLevel +2025/05/04-10:09:55.600682 38 Options.compaction_pri: kMinOverlappingRatio +2025/05/04-10:09:55.600683 38 Options.compaction_options_universal.size_ratio: 1 +2025/05/04-10:09:55.600683 38 Options.compaction_options_universal.min_merge_width: 2 +2025/05/04-10:09:55.600684 38 Options.compaction_options_universal.max_merge_width: 4294967295 +2025/05/04-10:09:55.600685 38 Options.compaction_options_universal.max_size_amplification_percent: 200 +2025/05/04-10:09:55.600685 38 Options.compaction_options_universal.compression_size_percent: -1 +2025/05/04-10:09:55.600686 38 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize +2025/05/04-10:09:55.600687 38 Options.compaction_options_universal.max_read_amp: -1 +2025/05/04-10:09:55.600687 38 Options.compaction_options_fifo.max_table_files_size: 1073741824 +2025/05/04-10:09:55.600688 38 Options.compaction_options_fifo.allow_compaction: 0 +2025/05/04-10:09:55.600690 38 Options.table_properties_collectors: +2025/05/04-10:09:55.600690 38 Options.inplace_update_support: 0 +2025/05/04-10:09:55.600691 38 Options.inplace_update_num_locks: 10000 +2025/05/04-10:09:55.600691 38 Options.memtable_prefix_bloom_size_ratio: 0.000000 +2025/05/04-10:09:55.600692 38 Options.memtable_whole_key_filtering: 0 +2025/05/04-10:09:55.600693 38 Options.memtable_huge_page_size: 0 +2025/05/04-10:09:55.600693 38 Options.bloom_locality: 0 +2025/05/04-10:09:55.600694 38 Options.max_successive_merges: 0 +2025/05/04-10:09:55.600694 38 Options.strict_max_successive_merges: 0 +2025/05/04-10:09:55.600695 38 Options.optimize_filters_for_hits: 0 +2025/05/04-10:09:55.600696 38 Options.paranoid_file_checks: 0 +2025/05/04-10:09:55.600697 38 Options.force_consistency_checks: 1 +2025/05/04-10:09:55.600697 38 Options.report_bg_io_stats: 0 +2025/05/04-10:09:55.600698 38 Options.ttl: 2592000 +2025/05/04-10:09:55.600698 38 Options.periodic_compaction_seconds: 0 +2025/05/04-10:09:55.600699 38 Options.default_temperature: kUnknown +2025/05/04-10:09:55.600699 38 Options.preclude_last_level_data_seconds: 0 +2025/05/04-10:09:55.600700 38 Options.preserve_internal_time_seconds: 0 +2025/05/04-10:09:55.600700 38 Options.enable_blob_files: false +2025/05/04-10:09:55.600701 38 Options.min_blob_size: 0 +2025/05/04-10:09:55.600701 38 Options.blob_file_size: 268435456 +2025/05/04-10:09:55.600702 38 Options.blob_compression_type: NoCompression +2025/05/04-10:09:55.600703 38 Options.enable_blob_garbage_collection: false +2025/05/04-10:09:55.600703 38 Options.blob_garbage_collection_age_cutoff: 0.250000 +2025/05/04-10:09:55.600704 38 Options.blob_garbage_collection_force_threshold: 1.000000 +2025/05/04-10:09:55.600705 38 Options.blob_compaction_readahead_size: 0 +2025/05/04-10:09:55.600705 38 Options.blob_file_starting_level: 0 +2025/05/04-10:09:55.600706 38 Options.experimental_mempurge_threshold: 0.000000 +2025/05/04-10:09:55.600706 38 Options.memtable_max_range_deletions: 0 +2025/05/04-10:09:55.600964 38 Options.comparator: leveldb.BytewiseComparator +2025/05/04-10:09:55.600967 38 Options.merge_operator: None +2025/05/04-10:09:55.600967 38 Options.compaction_filter: None +2025/05/04-10:09:55.600968 38 Options.compaction_filter_factory: None +2025/05/04-10:09:55.600969 38 Options.sst_partitioner_factory: None +2025/05/04-10:09:55.600969 38 Options.memtable_factory: SkipListFactory +2025/05/04-10:09:55.600970 38 Options.table_factory: BlockBasedTable +2025/05/04-10:09:55.600981 38 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff85c00060) + cache_index_and_filter_blocks: 0 + cache_index_and_filter_blocks_with_high_priority: 1 + pin_l0_filter_and_index_blocks_in_cache: 0 + pin_top_level_index_and_filter: 1 + index_type: 0 + data_block_index_type: 0 + index_shortening: 1 + data_block_hash_table_util_ratio: 0.750000 + checksum: 4 + no_block_cache: 0 + block_cache: 0xffff85c09010 + block_cache_name: LRUCache + block_cache_options: + capacity : 33554432 + num_shard_bits : 6 + strict_capacity_limit : 0 + memory_allocator : None + high_pri_pool_ratio: 0.500 + low_pri_pool_ratio: 0.000 + persistent_cache: (nil) + block_size: 4096 + block_size_deviation: 10 + block_restart_interval: 16 + index_block_restart_interval: 1 + metadata_block_size: 4096 + partition_filters: 0 + use_delta_encoding: 1 + filter_policy: nullptr + whole_key_filtering: 1 + verify_compression: 0 + read_amp_bytes_per_bit: 0 + format_version: 6 + enable_index_compression: 1 + block_align: 0 + max_auto_readahead_size: 262144 + prepopulate_block_cache: 0 + initial_auto_readahead_size: 8192 + num_file_reads_for_auto_readahead: 2 +2025/05/04-10:09:55.600983 38 Options.write_buffer_size: 10485760 +2025/05/04-10:09:55.600983 38 Options.max_write_buffer_number: 2 +2025/05/04-10:09:55.600984 38 Options.compression: LZ4 +2025/05/04-10:09:55.600985 38 Options.bottommost_compression: Disabled +2025/05/04-10:09:55.600985 38 Options.prefix_extractor: nullptr +2025/05/04-10:09:55.600986 38 Options.memtable_insert_with_hint_prefix_extractor: nullptr +2025/05/04-10:09:55.600986 38 Options.num_levels: 7 +2025/05/04-10:09:55.600987 38 Options.min_write_buffer_number_to_merge: 1 +2025/05/04-10:09:55.600987 38 Options.max_write_buffer_number_to_maintain: 0 +2025/05/04-10:09:55.600988 38 Options.max_write_buffer_size_to_maintain: 0 +2025/05/04-10:09:55.600989 38 Options.bottommost_compression_opts.window_bits: -14 +2025/05/04-10:09:55.600989 38 Options.bottommost_compression_opts.level: 32767 +2025/05/04-10:09:55.600990 38 Options.bottommost_compression_opts.strategy: 0 +2025/05/04-10:09:55.600991 38 Options.bottommost_compression_opts.max_dict_bytes: 0 +2025/05/04-10:09:55.600992 38 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 +2025/05/04-10:09:55.600992 38 Options.bottommost_compression_opts.parallel_threads: 1 +2025/05/04-10:09:55.600993 38 Options.bottommost_compression_opts.enabled: false +2025/05/04-10:09:55.600993 38 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 +2025/05/04-10:09:55.600994 38 Options.bottommost_compression_opts.use_zstd_dict_trainer: true +2025/05/04-10:09:55.600995 38 Options.compression_opts.window_bits: -14 +2025/05/04-10:09:55.600995 38 Options.compression_opts.level: 32767 +2025/05/04-10:09:55.600996 38 Options.compression_opts.strategy: 0 +2025/05/04-10:09:55.600996 38 Options.compression_opts.max_dict_bytes: 0 +2025/05/04-10:09:55.600997 38 Options.compression_opts.zstd_max_train_bytes: 0 +2025/05/04-10:09:55.600997 38 Options.compression_opts.use_zstd_dict_trainer: true +2025/05/04-10:09:55.601001 38 Options.compression_opts.parallel_threads: 1 +2025/05/04-10:09:55.601003 38 Options.compression_opts.enabled: false +2025/05/04-10:09:55.601003 38 Options.compression_opts.max_dict_buffer_bytes: 0 +2025/05/04-10:09:55.601004 38 Options.level0_file_num_compaction_trigger: 4 +2025/05/04-10:09:55.601005 38 Options.level0_slowdown_writes_trigger: 20 +2025/05/04-10:09:55.601005 38 Options.level0_stop_writes_trigger: 36 +2025/05/04-10:09:55.601006 38 Options.target_file_size_base: 67108864 +2025/05/04-10:09:55.601007 38 Options.target_file_size_multiplier: 1 +2025/05/04-10:09:55.601008 38 Options.max_bytes_for_level_base: 268435456 +2025/05/04-10:09:55.601008 38 Options.level_compaction_dynamic_level_bytes: 1 +2025/05/04-10:09:55.601009 38 Options.max_bytes_for_level_multiplier: 10.000000 +2025/05/04-10:09:55.601010 38 Options.max_bytes_for_level_multiplier_addtl[0]: 1 +2025/05/04-10:09:55.601011 38 Options.max_bytes_for_level_multiplier_addtl[1]: 1 +2025/05/04-10:09:55.601011 38 Options.max_bytes_for_level_multiplier_addtl[2]: 1 +2025/05/04-10:09:55.601012 38 Options.max_bytes_for_level_multiplier_addtl[3]: 1 +2025/05/04-10:09:55.601012 38 Options.max_bytes_for_level_multiplier_addtl[4]: 1 +2025/05/04-10:09:55.601013 38 Options.max_bytes_for_level_multiplier_addtl[5]: 1 +2025/05/04-10:09:55.601013 38 Options.max_bytes_for_level_multiplier_addtl[6]: 1 +2025/05/04-10:09:55.601014 38 Options.max_sequential_skip_in_iterations: 8 +2025/05/04-10:09:55.601015 38 Options.max_compaction_bytes: 1677721600 +2025/05/04-10:09:55.601016 38 Options.arena_block_size: 1048576 +2025/05/04-10:09:55.601017 38 Options.soft_pending_compaction_bytes_limit: 68719476736 +2025/05/04-10:09:55.601018 38 Options.hard_pending_compaction_bytes_limit: 274877906944 +2025/05/04-10:09:55.601019 38 Options.disable_auto_compactions: 0 +2025/05/04-10:09:55.601019 38 Options.compaction_style: kCompactionStyleLevel +2025/05/04-10:09:55.601020 38 Options.compaction_pri: kMinOverlappingRatio +2025/05/04-10:09:55.601021 38 Options.compaction_options_universal.size_ratio: 1 +2025/05/04-10:09:55.601021 38 Options.compaction_options_universal.min_merge_width: 2 +2025/05/04-10:09:55.601022 38 Options.compaction_options_universal.max_merge_width: 4294967295 +2025/05/04-10:09:55.601022 38 Options.compaction_options_universal.max_size_amplification_percent: 200 +2025/05/04-10:09:55.601023 38 Options.compaction_options_universal.compression_size_percent: -1 +2025/05/04-10:09:55.601025 38 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize +2025/05/04-10:09:55.601026 38 Options.compaction_options_universal.max_read_amp: -1 +2025/05/04-10:09:55.601027 38 Options.compaction_options_fifo.max_table_files_size: 1073741824 +2025/05/04-10:09:55.601027 38 Options.compaction_options_fifo.allow_compaction: 0 +2025/05/04-10:09:55.601029 38 Options.table_properties_collectors: +2025/05/04-10:09:55.601030 38 Options.inplace_update_support: 0 +2025/05/04-10:09:55.601030 38 Options.inplace_update_num_locks: 10000 +2025/05/04-10:09:55.601031 38 Options.memtable_prefix_bloom_size_ratio: 0.000000 +2025/05/04-10:09:55.601032 38 Options.memtable_whole_key_filtering: 0 +2025/05/04-10:09:55.601033 38 Options.memtable_huge_page_size: 0 +2025/05/04-10:09:55.601033 38 Options.bloom_locality: 0 +2025/05/04-10:09:55.601034 38 Options.max_successive_merges: 0 +2025/05/04-10:09:55.601034 38 Options.strict_max_successive_merges: 0 +2025/05/04-10:09:55.601035 38 Options.optimize_filters_for_hits: 0 +2025/05/04-10:09:55.601035 38 Options.paranoid_file_checks: 0 +2025/05/04-10:09:55.601036 38 Options.force_consistency_checks: 1 +2025/05/04-10:09:55.601036 38 Options.report_bg_io_stats: 0 +2025/05/04-10:09:55.601037 38 Options.ttl: 2592000 +2025/05/04-10:09:55.601038 38 Options.periodic_compaction_seconds: 0 +2025/05/04-10:09:55.601039 38 Options.default_temperature: kUnknown +2025/05/04-10:09:55.601039 38 Options.preclude_last_level_data_seconds: 0 +2025/05/04-10:09:55.601040 38 Options.preserve_internal_time_seconds: 0 +2025/05/04-10:09:55.601040 38 Options.enable_blob_files: false +2025/05/04-10:09:55.601041 38 Options.min_blob_size: 0 +2025/05/04-10:09:55.601041 38 Options.blob_file_size: 268435456 +2025/05/04-10:09:55.601042 38 Options.blob_compression_type: NoCompression +2025/05/04-10:09:55.601043 38 Options.enable_blob_garbage_collection: false +2025/05/04-10:09:55.601044 38 Options.blob_garbage_collection_age_cutoff: 0.250000 +2025/05/04-10:09:55.601046 38 Options.blob_garbage_collection_force_threshold: 1.000000 +2025/05/04-10:09:55.601047 38 Options.blob_compaction_readahead_size: 0 +2025/05/04-10:09:55.601047 38 Options.blob_file_starting_level: 0 +2025/05/04-10:09:55.601048 38 Options.experimental_mempurge_threshold: 0.000000 +2025/05/04-10:09:55.601049 38 Options.memtable_max_range_deletions: 0 +2025/05/04-10:09:55.601231 38 Options.comparator: leveldb.BytewiseComparator +2025/05/04-10:09:55.601233 38 Options.merge_operator: None +2025/05/04-10:09:55.601233 38 Options.compaction_filter: None +2025/05/04-10:09:55.601234 38 Options.compaction_filter_factory: None +2025/05/04-10:09:55.601234 38 Options.sst_partitioner_factory: None +2025/05/04-10:09:55.601235 38 Options.memtable_factory: SkipListFactory +2025/05/04-10:09:55.601235 38 Options.table_factory: BlockBasedTable +2025/05/04-10:09:55.601244 38 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff85c00060) + cache_index_and_filter_blocks: 0 + cache_index_and_filter_blocks_with_high_priority: 1 + pin_l0_filter_and_index_blocks_in_cache: 0 + pin_top_level_index_and_filter: 1 + index_type: 0 + data_block_index_type: 0 + index_shortening: 1 + data_block_hash_table_util_ratio: 0.750000 + checksum: 4 + no_block_cache: 0 + block_cache: 0xffff85c09010 + block_cache_name: LRUCache + block_cache_options: + capacity : 33554432 + num_shard_bits : 6 + strict_capacity_limit : 0 + memory_allocator : None + high_pri_pool_ratio: 0.500 + low_pri_pool_ratio: 0.000 + persistent_cache: (nil) + block_size: 4096 + block_size_deviation: 10 + block_restart_interval: 16 + index_block_restart_interval: 1 + metadata_block_size: 4096 + partition_filters: 0 + use_delta_encoding: 1 + filter_policy: nullptr + whole_key_filtering: 1 + verify_compression: 0 + read_amp_bytes_per_bit: 0 + format_version: 6 + enable_index_compression: 1 + block_align: 0 + max_auto_readahead_size: 262144 + prepopulate_block_cache: 0 + initial_auto_readahead_size: 8192 + num_file_reads_for_auto_readahead: 2 +2025/05/04-10:09:55.601250 38 Options.write_buffer_size: 10485760 +2025/05/04-10:09:55.601250 38 Options.max_write_buffer_number: 2 +2025/05/04-10:09:55.601251 38 Options.compression: LZ4 +2025/05/04-10:09:55.601252 38 Options.bottommost_compression: Disabled +2025/05/04-10:09:55.601252 38 Options.prefix_extractor: nullptr +2025/05/04-10:09:55.601253 38 Options.memtable_insert_with_hint_prefix_extractor: nullptr +2025/05/04-10:09:55.601254 38 Options.num_levels: 7 +2025/05/04-10:09:55.601254 38 Options.min_write_buffer_number_to_merge: 1 +2025/05/04-10:09:55.601255 38 Options.max_write_buffer_number_to_maintain: 0 +2025/05/04-10:09:55.601255 38 Options.max_write_buffer_size_to_maintain: 0 +2025/05/04-10:09:55.601256 38 Options.bottommost_compression_opts.window_bits: -14 +2025/05/04-10:09:55.601257 38 Options.bottommost_compression_opts.level: 32767 +2025/05/04-10:09:55.601257 38 Options.bottommost_compression_opts.strategy: 0 +2025/05/04-10:09:55.601259 38 Options.bottommost_compression_opts.max_dict_bytes: 0 +2025/05/04-10:09:55.601260 38 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 +2025/05/04-10:09:55.601260 38 Options.bottommost_compression_opts.parallel_threads: 1 +2025/05/04-10:09:55.601261 38 Options.bottommost_compression_opts.enabled: false +2025/05/04-10:09:55.601262 38 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 +2025/05/04-10:09:55.601263 38 Options.bottommost_compression_opts.use_zstd_dict_trainer: true +2025/05/04-10:09:55.601264 38 Options.compression_opts.window_bits: -14 +2025/05/04-10:09:55.601265 38 Options.compression_opts.level: 32767 +2025/05/04-10:09:55.601265 38 Options.compression_opts.strategy: 0 +2025/05/04-10:09:55.601266 38 Options.compression_opts.max_dict_bytes: 0 +2025/05/04-10:09:55.601267 38 Options.compression_opts.zstd_max_train_bytes: 0 +2025/05/04-10:09:55.601267 38 Options.compression_opts.use_zstd_dict_trainer: true +2025/05/04-10:09:55.601268 38 Options.compression_opts.parallel_threads: 1 +2025/05/04-10:09:55.601268 38 Options.compression_opts.enabled: false +2025/05/04-10:09:55.601269 38 Options.compression_opts.max_dict_buffer_bytes: 0 +2025/05/04-10:09:55.601269 38 Options.level0_file_num_compaction_trigger: 4 +2025/05/04-10:09:55.601270 38 Options.level0_slowdown_writes_trigger: 20 +2025/05/04-10:09:55.601272 38 Options.level0_stop_writes_trigger: 36 +2025/05/04-10:09:55.601273 38 Options.target_file_size_base: 67108864 +2025/05/04-10:09:55.601274 38 Options.target_file_size_multiplier: 1 +2025/05/04-10:09:55.601274 38 Options.max_bytes_for_level_base: 268435456 +2025/05/04-10:09:55.601275 38 Options.level_compaction_dynamic_level_bytes: 1 +2025/05/04-10:09:55.601276 38 Options.max_bytes_for_level_multiplier: 10.000000 +2025/05/04-10:09:55.601276 38 Options.max_bytes_for_level_multiplier_addtl[0]: 1 +2025/05/04-10:09:55.601277 38 Options.max_bytes_for_level_multiplier_addtl[1]: 1 +2025/05/04-10:09:55.601278 38 Options.max_bytes_for_level_multiplier_addtl[2]: 1 +2025/05/04-10:09:55.601278 38 Options.max_bytes_for_level_multiplier_addtl[3]: 1 +2025/05/04-10:09:55.601279 38 Options.max_bytes_for_level_multiplier_addtl[4]: 1 +2025/05/04-10:09:55.601279 38 Options.max_bytes_for_level_multiplier_addtl[5]: 1 +2025/05/04-10:09:55.601280 38 Options.max_bytes_for_level_multiplier_addtl[6]: 1 +2025/05/04-10:09:55.601280 38 Options.max_sequential_skip_in_iterations: 8 +2025/05/04-10:09:55.601281 38 Options.max_compaction_bytes: 1677721600 +2025/05/04-10:09:55.601281 38 Options.arena_block_size: 1048576 +2025/05/04-10:09:55.601282 38 Options.soft_pending_compaction_bytes_limit: 68719476736 +2025/05/04-10:09:55.601283 38 Options.hard_pending_compaction_bytes_limit: 274877906944 +2025/05/04-10:09:55.601283 38 Options.disable_auto_compactions: 0 +2025/05/04-10:09:55.601284 38 Options.compaction_style: kCompactionStyleLevel +2025/05/04-10:09:55.601286 38 Options.compaction_pri: kMinOverlappingRatio +2025/05/04-10:09:55.601287 38 Options.compaction_options_universal.size_ratio: 1 +2025/05/04-10:09:55.601287 38 Options.compaction_options_universal.min_merge_width: 2 +2025/05/04-10:09:55.601288 38 Options.compaction_options_universal.max_merge_width: 4294967295 +2025/05/04-10:09:55.601288 38 Options.compaction_options_universal.max_size_amplification_percent: 200 +2025/05/04-10:09:55.601289 38 Options.compaction_options_universal.compression_size_percent: -1 +2025/05/04-10:09:55.601290 38 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize +2025/05/04-10:09:55.601290 38 Options.compaction_options_universal.max_read_amp: -1 +2025/05/04-10:09:55.601291 38 Options.compaction_options_fifo.max_table_files_size: 1073741824 +2025/05/04-10:09:55.601292 38 Options.compaction_options_fifo.allow_compaction: 0 +2025/05/04-10:09:55.601292 38 Options.table_properties_collectors: +2025/05/04-10:09:55.601294 38 Options.inplace_update_support: 0 +2025/05/04-10:09:55.601294 38 Options.inplace_update_num_locks: 10000 +2025/05/04-10:09:55.601295 38 Options.memtable_prefix_bloom_size_ratio: 0.000000 +2025/05/04-10:09:55.601295 38 Options.memtable_whole_key_filtering: 0 +2025/05/04-10:09:55.601296 38 Options.memtable_huge_page_size: 0 +2025/05/04-10:09:55.601297 38 Options.bloom_locality: 0 +2025/05/04-10:09:55.601297 38 Options.max_successive_merges: 0 +2025/05/04-10:09:55.601298 38 Options.strict_max_successive_merges: 0 +2025/05/04-10:09:55.601298 38 Options.optimize_filters_for_hits: 0 +2025/05/04-10:09:55.601299 38 Options.paranoid_file_checks: 0 +2025/05/04-10:09:55.601299 38 Options.force_consistency_checks: 1 +2025/05/04-10:09:55.601301 38 Options.report_bg_io_stats: 0 +2025/05/04-10:09:55.601302 38 Options.ttl: 2592000 +2025/05/04-10:09:55.601302 38 Options.periodic_compaction_seconds: 0 +2025/05/04-10:09:55.601303 38 Options.default_temperature: kUnknown +2025/05/04-10:09:55.601303 38 Options.preclude_last_level_data_seconds: 0 +2025/05/04-10:09:55.601304 38 Options.preserve_internal_time_seconds: 0 +2025/05/04-10:09:55.601305 38 Options.enable_blob_files: false +2025/05/04-10:09:55.601305 38 Options.min_blob_size: 0 +2025/05/04-10:09:55.601306 38 Options.blob_file_size: 268435456 +2025/05/04-10:09:55.601306 38 Options.blob_compression_type: NoCompression +2025/05/04-10:09:55.601307 38 Options.enable_blob_garbage_collection: false +2025/05/04-10:09:55.601308 38 Options.blob_garbage_collection_age_cutoff: 0.250000 +2025/05/04-10:09:55.601308 38 Options.blob_garbage_collection_force_threshold: 1.000000 +2025/05/04-10:09:55.601309 38 Options.blob_compaction_readahead_size: 0 +2025/05/04-10:09:55.601309 38 Options.blob_file_starting_level: 0 +2025/05/04-10:09:55.601310 38 Options.experimental_mempurge_threshold: 0.000000 +2025/05/04-10:09:55.601311 38 Options.memtable_max_range_deletions: 0 +2025/05/04-10:09:55.601617 38 Options.comparator: leveldb.BytewiseComparator +2025/05/04-10:09:55.601618 38 Options.merge_operator: None +2025/05/04-10:09:55.601619 38 Options.compaction_filter: None +2025/05/04-10:09:55.601620 38 Options.compaction_filter_factory: None +2025/05/04-10:09:55.601620 38 Options.sst_partitioner_factory: None +2025/05/04-10:09:55.601621 38 Options.memtable_factory: SkipListFactory +2025/05/04-10:09:55.601621 38 Options.table_factory: BlockBasedTable +2025/05/04-10:09:55.601627 38 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff85c00060) + cache_index_and_filter_blocks: 0 + cache_index_and_filter_blocks_with_high_priority: 1 + pin_l0_filter_and_index_blocks_in_cache: 0 + pin_top_level_index_and_filter: 1 + index_type: 0 + data_block_index_type: 0 + index_shortening: 1 + data_block_hash_table_util_ratio: 0.750000 + checksum: 4 + no_block_cache: 0 + block_cache: 0xffff85c09010 + block_cache_name: LRUCache + block_cache_options: + capacity : 33554432 + num_shard_bits : 6 + strict_capacity_limit : 0 + memory_allocator : None + high_pri_pool_ratio: 0.500 + low_pri_pool_ratio: 0.000 + persistent_cache: (nil) + block_size: 4096 + block_size_deviation: 10 + block_restart_interval: 16 + index_block_restart_interval: 1 + metadata_block_size: 4096 + partition_filters: 0 + use_delta_encoding: 1 + filter_policy: nullptr + whole_key_filtering: 1 + verify_compression: 0 + read_amp_bytes_per_bit: 0 + format_version: 6 + enable_index_compression: 1 + block_align: 0 + max_auto_readahead_size: 262144 + prepopulate_block_cache: 0 + initial_auto_readahead_size: 8192 + num_file_reads_for_auto_readahead: 2 +2025/05/04-10:09:55.601629 38 Options.write_buffer_size: 10485760 +2025/05/04-10:09:55.601629 38 Options.max_write_buffer_number: 2 +2025/05/04-10:09:55.601631 38 Options.compression: LZ4 +2025/05/04-10:09:55.601631 38 Options.bottommost_compression: Disabled +2025/05/04-10:09:55.601632 38 Options.prefix_extractor: nullptr +2025/05/04-10:09:55.601633 38 Options.memtable_insert_with_hint_prefix_extractor: nullptr +2025/05/04-10:09:55.601633 38 Options.num_levels: 7 +2025/05/04-10:09:55.601635 38 Options.min_write_buffer_number_to_merge: 1 +2025/05/04-10:09:55.601636 38 Options.max_write_buffer_number_to_maintain: 0 +2025/05/04-10:09:55.601637 38 Options.max_write_buffer_size_to_maintain: 0 +2025/05/04-10:09:55.601637 38 Options.bottommost_compression_opts.window_bits: -14 +2025/05/04-10:09:55.601638 38 Options.bottommost_compression_opts.level: 32767 +2025/05/04-10:09:55.601639 38 Options.bottommost_compression_opts.strategy: 0 +2025/05/04-10:09:55.601639 38 Options.bottommost_compression_opts.max_dict_bytes: 0 +2025/05/04-10:09:55.601640 38 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 +2025/05/04-10:09:55.601640 38 Options.bottommost_compression_opts.parallel_threads: 1 +2025/05/04-10:09:55.601641 38 Options.bottommost_compression_opts.enabled: false +2025/05/04-10:09:55.601641 38 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 +2025/05/04-10:09:55.601643 38 Options.bottommost_compression_opts.use_zstd_dict_trainer: true +2025/05/04-10:09:55.601643 38 Options.compression_opts.window_bits: -14 +2025/05/04-10:09:55.601644 38 Options.compression_opts.level: 32767 +2025/05/04-10:09:55.601645 38 Options.compression_opts.strategy: 0 +2025/05/04-10:09:55.601645 38 Options.compression_opts.max_dict_bytes: 0 +2025/05/04-10:09:55.601646 38 Options.compression_opts.zstd_max_train_bytes: 0 +2025/05/04-10:09:55.601646 38 Options.compression_opts.use_zstd_dict_trainer: true +2025/05/04-10:09:55.601647 38 Options.compression_opts.parallel_threads: 1 +2025/05/04-10:09:55.601647 38 Options.compression_opts.enabled: false +2025/05/04-10:09:55.601648 38 Options.compression_opts.max_dict_buffer_bytes: 0 +2025/05/04-10:09:55.601648 38 Options.level0_file_num_compaction_trigger: 4 +2025/05/04-10:09:55.601649 38 Options.level0_slowdown_writes_trigger: 20 +2025/05/04-10:09:55.601649 38 Options.level0_stop_writes_trigger: 36 +2025/05/04-10:09:55.601650 38 Options.target_file_size_base: 67108864 +2025/05/04-10:09:55.601651 38 Options.target_file_size_multiplier: 1 +2025/05/04-10:09:55.601651 38 Options.max_bytes_for_level_base: 268435456 +2025/05/04-10:09:55.601652 38 Options.level_compaction_dynamic_level_bytes: 1 +2025/05/04-10:09:55.601652 38 Options.max_bytes_for_level_multiplier: 10.000000 +2025/05/04-10:09:55.601653 38 Options.max_bytes_for_level_multiplier_addtl[0]: 1 +2025/05/04-10:09:55.601654 38 Options.max_bytes_for_level_multiplier_addtl[1]: 1 +2025/05/04-10:09:55.601654 38 Options.max_bytes_for_level_multiplier_addtl[2]: 1 +2025/05/04-10:09:55.601655 38 Options.max_bytes_for_level_multiplier_addtl[3]: 1 +2025/05/04-10:09:55.601655 38 Options.max_bytes_for_level_multiplier_addtl[4]: 1 +2025/05/04-10:09:55.601656 38 Options.max_bytes_for_level_multiplier_addtl[5]: 1 +2025/05/04-10:09:55.601657 38 Options.max_bytes_for_level_multiplier_addtl[6]: 1 +2025/05/04-10:09:55.601657 38 Options.max_sequential_skip_in_iterations: 8 +2025/05/04-10:09:55.601658 38 Options.max_compaction_bytes: 1677721600 +2025/05/04-10:09:55.601658 38 Options.arena_block_size: 1048576 +2025/05/04-10:09:55.601659 38 Options.soft_pending_compaction_bytes_limit: 68719476736 +2025/05/04-10:09:55.601661 38 Options.hard_pending_compaction_bytes_limit: 274877906944 +2025/05/04-10:09:55.601662 38 Options.disable_auto_compactions: 0 +2025/05/04-10:09:55.601663 38 Options.compaction_style: kCompactionStyleLevel +2025/05/04-10:09:55.601663 38 Options.compaction_pri: kMinOverlappingRatio +2025/05/04-10:09:55.601664 38 Options.compaction_options_universal.size_ratio: 1 +2025/05/04-10:09:55.601664 38 Options.compaction_options_universal.min_merge_width: 2 +2025/05/04-10:09:55.601665 38 Options.compaction_options_universal.max_merge_width: 4294967295 +2025/05/04-10:09:55.601665 38 Options.compaction_options_universal.max_size_amplification_percent: 200 +2025/05/04-10:09:55.601666 38 Options.compaction_options_universal.compression_size_percent: -1 +2025/05/04-10:09:55.601667 38 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize +2025/05/04-10:09:55.601667 38 Options.compaction_options_universal.max_read_amp: -1 +2025/05/04-10:09:55.601668 38 Options.compaction_options_fifo.max_table_files_size: 1073741824 +2025/05/04-10:09:55.601670 38 Options.compaction_options_fifo.allow_compaction: 0 +2025/05/04-10:09:55.601671 38 Options.table_properties_collectors: +2025/05/04-10:09:55.601672 38 Options.inplace_update_support: 0 +2025/05/04-10:09:55.601672 38 Options.inplace_update_num_locks: 10000 +2025/05/04-10:09:55.601673 38 Options.memtable_prefix_bloom_size_ratio: 0.000000 +2025/05/04-10:09:55.601676 38 Options.memtable_whole_key_filtering: 0 +2025/05/04-10:09:55.601676 38 Options.memtable_huge_page_size: 0 +2025/05/04-10:09:55.601677 38 Options.bloom_locality: 0 +2025/05/04-10:09:55.601677 38 Options.max_successive_merges: 0 +2025/05/04-10:09:55.601678 38 Options.strict_max_successive_merges: 0 +2025/05/04-10:09:55.601678 38 Options.optimize_filters_for_hits: 0 +2025/05/04-10:09:55.601679 38 Options.paranoid_file_checks: 0 +2025/05/04-10:09:55.601706 38 Options.force_consistency_checks: 1 +2025/05/04-10:09:55.601708 38 Options.report_bg_io_stats: 0 +2025/05/04-10:09:55.601708 38 Options.ttl: 2592000 +2025/05/04-10:09:55.601709 38 Options.periodic_compaction_seconds: 0 +2025/05/04-10:09:55.601709 38 Options.default_temperature: kUnknown +2025/05/04-10:09:55.601710 38 Options.preclude_last_level_data_seconds: 0 +2025/05/04-10:09:55.601711 38 Options.preserve_internal_time_seconds: 0 +2025/05/04-10:09:55.601711 38 Options.enable_blob_files: false +2025/05/04-10:09:55.601712 38 Options.min_blob_size: 0 +2025/05/04-10:09:55.601712 38 Options.blob_file_size: 268435456 +2025/05/04-10:09:55.601713 38 Options.blob_compression_type: NoCompression +2025/05/04-10:09:55.601713 38 Options.enable_blob_garbage_collection: false +2025/05/04-10:09:55.601714 38 Options.blob_garbage_collection_age_cutoff: 0.250000 +2025/05/04-10:09:55.601715 38 Options.blob_garbage_collection_force_threshold: 1.000000 +2025/05/04-10:09:55.601716 38 Options.blob_compaction_readahead_size: 0 +2025/05/04-10:09:55.601716 38 Options.blob_file_starting_level: 0 +2025/05/04-10:09:55.601717 38 Options.experimental_mempurge_threshold: 0.000000 +2025/05/04-10:09:55.601718 38 Options.memtable_max_range_deletions: 0 +2025/05/04-10:09:55.601738 38 Options.comparator: leveldb.BytewiseComparator +2025/05/04-10:09:55.601739 38 Options.merge_operator: None +2025/05/04-10:09:55.601740 38 Options.compaction_filter: None +2025/05/04-10:09:55.601741 38 Options.compaction_filter_factory: None +2025/05/04-10:09:55.601741 38 Options.sst_partitioner_factory: None +2025/05/04-10:09:55.601742 38 Options.memtable_factory: SkipListFactory +2025/05/04-10:09:55.601742 38 Options.table_factory: BlockBasedTable +2025/05/04-10:09:55.601748 38 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff85c00060) + cache_index_and_filter_blocks: 0 + cache_index_and_filter_blocks_with_high_priority: 1 + pin_l0_filter_and_index_blocks_in_cache: 0 + pin_top_level_index_and_filter: 1 + index_type: 0 + data_block_index_type: 0 + index_shortening: 1 + data_block_hash_table_util_ratio: 0.750000 + checksum: 4 + no_block_cache: 0 + block_cache: 0xffff85c09010 + block_cache_name: LRUCache + block_cache_options: + capacity : 33554432 + num_shard_bits : 6 + strict_capacity_limit : 0 + memory_allocator : None + high_pri_pool_ratio: 0.500 + low_pri_pool_ratio: 0.000 + persistent_cache: (nil) + block_size: 4096 + block_size_deviation: 10 + block_restart_interval: 16 + index_block_restart_interval: 1 + metadata_block_size: 4096 + partition_filters: 0 + use_delta_encoding: 1 + filter_policy: nullptr + whole_key_filtering: 1 + verify_compression: 0 + read_amp_bytes_per_bit: 0 + format_version: 6 + enable_index_compression: 1 + block_align: 0 + max_auto_readahead_size: 262144 + prepopulate_block_cache: 0 + initial_auto_readahead_size: 8192 + num_file_reads_for_auto_readahead: 2 +2025/05/04-10:09:55.601749 38 Options.write_buffer_size: 10485760 +2025/05/04-10:09:55.601750 38 Options.max_write_buffer_number: 2 +2025/05/04-10:09:55.601750 38 Options.compression: LZ4 +2025/05/04-10:09:55.601751 38 Options.bottommost_compression: Disabled +2025/05/04-10:09:55.601751 38 Options.prefix_extractor: nullptr +2025/05/04-10:09:55.601752 38 Options.memtable_insert_with_hint_prefix_extractor: nullptr +2025/05/04-10:09:55.601752 38 Options.num_levels: 7 +2025/05/04-10:09:55.601753 38 Options.min_write_buffer_number_to_merge: 1 +2025/05/04-10:09:55.601754 38 Options.max_write_buffer_number_to_maintain: 0 +2025/05/04-10:09:55.601756 38 Options.max_write_buffer_size_to_maintain: 0 +2025/05/04-10:09:55.601756 38 Options.bottommost_compression_opts.window_bits: -14 +2025/05/04-10:09:55.601757 38 Options.bottommost_compression_opts.level: 32767 +2025/05/04-10:09:55.601758 38 Options.bottommost_compression_opts.strategy: 0 +2025/05/04-10:09:55.601758 38 Options.bottommost_compression_opts.max_dict_bytes: 0 +2025/05/04-10:09:55.601759 38 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 +2025/05/04-10:09:55.601759 38 Options.bottommost_compression_opts.parallel_threads: 1 +2025/05/04-10:09:55.601760 38 Options.bottommost_compression_opts.enabled: false +2025/05/04-10:09:55.601761 38 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 +2025/05/04-10:09:55.601761 38 Options.bottommost_compression_opts.use_zstd_dict_trainer: true +2025/05/04-10:09:55.601762 38 Options.compression_opts.window_bits: -14 +2025/05/04-10:09:55.601762 38 Options.compression_opts.level: 32767 +2025/05/04-10:09:55.601763 38 Options.compression_opts.strategy: 0 +2025/05/04-10:09:55.601763 38 Options.compression_opts.max_dict_bytes: 0 +2025/05/04-10:09:55.601764 38 Options.compression_opts.zstd_max_train_bytes: 0 +2025/05/04-10:09:55.601765 38 Options.compression_opts.use_zstd_dict_trainer: true +2025/05/04-10:09:55.601766 38 Options.compression_opts.parallel_threads: 1 +2025/05/04-10:09:55.601766 38 Options.compression_opts.enabled: false +2025/05/04-10:09:55.601767 38 Options.compression_opts.max_dict_buffer_bytes: 0 +2025/05/04-10:09:55.601768 38 Options.level0_file_num_compaction_trigger: 4 +2025/05/04-10:09:55.601768 38 Options.level0_slowdown_writes_trigger: 20 +2025/05/04-10:09:55.601769 38 Options.level0_stop_writes_trigger: 36 +2025/05/04-10:09:55.601769 38 Options.target_file_size_base: 67108864 +2025/05/04-10:09:55.601770 38 Options.target_file_size_multiplier: 1 +2025/05/04-10:09:55.601770 38 Options.max_bytes_for_level_base: 268435456 +2025/05/04-10:09:55.601773 38 Options.level_compaction_dynamic_level_bytes: 1 +2025/05/04-10:09:55.601774 38 Options.max_bytes_for_level_multiplier: 10.000000 +2025/05/04-10:09:55.601774 38 Options.max_bytes_for_level_multiplier_addtl[0]: 1 +2025/05/04-10:09:55.601775 38 Options.max_bytes_for_level_multiplier_addtl[1]: 1 +2025/05/04-10:09:55.601776 38 Options.max_bytes_for_level_multiplier_addtl[2]: 1 +2025/05/04-10:09:55.601777 38 Options.max_bytes_for_level_multiplier_addtl[3]: 1 +2025/05/04-10:09:55.601778 38 Options.max_bytes_for_level_multiplier_addtl[4]: 1 +2025/05/04-10:09:55.601779 38 Options.max_bytes_for_level_multiplier_addtl[5]: 1 +2025/05/04-10:09:55.601779 38 Options.max_bytes_for_level_multiplier_addtl[6]: 1 +2025/05/04-10:09:55.601780 38 Options.max_sequential_skip_in_iterations: 8 +2025/05/04-10:09:55.601780 38 Options.max_compaction_bytes: 1677721600 +2025/05/04-10:09:55.601781 38 Options.arena_block_size: 1048576 +2025/05/04-10:09:55.601782 38 Options.soft_pending_compaction_bytes_limit: 68719476736 +2025/05/04-10:09:55.601783 38 Options.hard_pending_compaction_bytes_limit: 274877906944 +2025/05/04-10:09:55.601784 38 Options.disable_auto_compactions: 0 +2025/05/04-10:09:55.601784 38 Options.compaction_style: kCompactionStyleLevel +2025/05/04-10:09:55.601785 38 Options.compaction_pri: kMinOverlappingRatio +2025/05/04-10:09:55.601786 38 Options.compaction_options_universal.size_ratio: 1 +2025/05/04-10:09:55.601786 38 Options.compaction_options_universal.min_merge_width: 2 +2025/05/04-10:09:55.601787 38 Options.compaction_options_universal.max_merge_width: 4294967295 +2025/05/04-10:09:55.601787 38 Options.compaction_options_universal.max_size_amplification_percent: 200 +2025/05/04-10:09:55.601788 38 Options.compaction_options_universal.compression_size_percent: -1 +2025/05/04-10:09:55.601788 38 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize +2025/05/04-10:09:55.601789 38 Options.compaction_options_universal.max_read_amp: -1 +2025/05/04-10:09:55.601790 38 Options.compaction_options_fifo.max_table_files_size: 1073741824 +2025/05/04-10:09:55.601790 38 Options.compaction_options_fifo.allow_compaction: 0 +2025/05/04-10:09:55.601791 38 Options.table_properties_collectors: +2025/05/04-10:09:55.601792 38 Options.inplace_update_support: 0 +2025/05/04-10:09:55.601792 38 Options.inplace_update_num_locks: 10000 +2025/05/04-10:09:55.601793 38 Options.memtable_prefix_bloom_size_ratio: 0.000000 +2025/05/04-10:09:55.601793 38 Options.memtable_whole_key_filtering: 0 +2025/05/04-10:09:55.601794 38 Options.memtable_huge_page_size: 0 +2025/05/04-10:09:55.601795 38 Options.bloom_locality: 0 +2025/05/04-10:09:55.601795 38 Options.max_successive_merges: 0 +2025/05/04-10:09:55.601796 38 Options.strict_max_successive_merges: 0 +2025/05/04-10:09:55.601796 38 Options.optimize_filters_for_hits: 0 +2025/05/04-10:09:55.601797 38 Options.paranoid_file_checks: 0 +2025/05/04-10:09:55.601797 38 Options.force_consistency_checks: 1 +2025/05/04-10:09:55.601798 38 Options.report_bg_io_stats: 0 +2025/05/04-10:09:55.601798 38 Options.ttl: 2592000 +2025/05/04-10:09:55.601799 38 Options.periodic_compaction_seconds: 0 +2025/05/04-10:09:55.601799 38 Options.default_temperature: kUnknown +2025/05/04-10:09:55.601800 38 Options.preclude_last_level_data_seconds: 0 +2025/05/04-10:09:55.601800 38 Options.preserve_internal_time_seconds: 0 +2025/05/04-10:09:55.601801 38 Options.enable_blob_files: false +2025/05/04-10:09:55.601801 38 Options.min_blob_size: 0 +2025/05/04-10:09:55.601802 38 Options.blob_file_size: 268435456 +2025/05/04-10:09:55.601803 38 Options.blob_compression_type: NoCompression +2025/05/04-10:09:55.601803 38 Options.enable_blob_garbage_collection: false +2025/05/04-10:09:55.601804 38 Options.blob_garbage_collection_age_cutoff: 0.250000 +2025/05/04-10:09:55.601804 38 Options.blob_garbage_collection_force_threshold: 1.000000 +2025/05/04-10:09:55.601805 38 Options.blob_compaction_readahead_size: 0 +2025/05/04-10:09:55.601806 38 Options.blob_file_starting_level: 0 +2025/05/04-10:09:55.601807 38 Options.experimental_mempurge_threshold: 0.000000 +2025/05/04-10:09:55.601807 38 Options.memtable_max_range_deletions: 0 +2025/05/04-10:09:55.652740 38 DB pointer 0xffff85c63c00 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/MANIFEST-000026 b/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/MANIFEST-000026 new file mode 100644 index 0000000000000000000000000000000000000000..faf06621218337ade91629f1d89b34d13b3dc648 Binary files /dev/null and b/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/MANIFEST-000026 differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/OPTIONS-000024 b/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/OPTIONS-000024 new file mode 100644 index 0000000000000000000000000000000000000000..ad2b181add715408dc69839970eebfd4c1a28b4b --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/OPTIONS-000024 @@ -0,0 +1,670 @@ +# This is a RocksDB option file. +# +# For detailed file format spec, please refer to the example file +# in examples/rocksdb_option_file_example.ini +# + +[Version] + rocksdb_version=9.9.3 + options_file_version=1.1 + +[DBOptions] + compaction_readahead_size=2097152 + strict_bytes_per_sync=false + bytes_per_sync=0 + max_background_jobs=2 + avoid_flush_during_shutdown=false + max_background_flushes=-1 + delayed_write_rate=16777216 + max_open_files=256 + max_subcompactions=1 + writable_file_max_buffer_size=1048576 + wal_bytes_per_sync=0 + max_background_compactions=-1 + max_total_wal_size=0 + delete_obsolete_files_period_micros=180000000 + stats_dump_period_sec=600 + stats_history_buffer_size=1048576 + stats_persist_period_sec=600 + follower_refresh_catchup_period_ms=10000 + enforce_single_del_contracts=true + lowest_used_cache_tier=kNonVolatileBlockTier + bgerror_resume_retry_interval=1000000 + metadata_write_temperature=kUnknown + best_efforts_recovery=false + log_readahead_size=0 + write_identity_file=true + write_dbid_to_manifest=true + prefix_seek_opt_in_only=false + wal_compression=kNoCompression + manual_wal_flush=false + db_host_id=__hostname__ + two_write_queues=false + random_access_max_buffer_size=1048576 + avoid_unnecessary_blocking_io=false + skip_checking_sst_file_sizes_on_db_open=false + flush_verify_memtable_count=true + fail_if_options_file_error=true + atomic_flush=false + verify_sst_unique_id_in_manifest=true + skip_stats_update_on_db_open=false + track_and_verify_wals_in_manifest=false + compaction_verify_record_count=true + paranoid_checks=true + create_if_missing=true + max_write_batch_group_size_bytes=1048576 + follower_catchup_retry_count=10 + avoid_flush_during_recovery=false + file_checksum_gen_factory=nullptr + enable_thread_tracking=false + allow_fallocate=true + allow_data_in_errors=false + error_if_exists=false + use_direct_io_for_flush_and_compaction=false + background_close_inactive_wals=false + create_missing_column_families=true + WAL_size_limit_MB=0 + use_direct_reads=false + persist_stats_to_disk=false + allow_2pc=false + is_fd_close_on_exec=true + max_log_file_size=1048576 + max_file_opening_threads=16 + wal_filter=nullptr + wal_write_temperature=kUnknown + follower_catchup_retry_wait_ms=100 + allow_mmap_reads=false + allow_mmap_writes=false + use_adaptive_mutex=false + use_fsync=false + table_cache_numshardbits=6 + dump_malloc_stats=false + db_write_buffer_size=0 + allow_ingest_behind=false + keep_log_file_num=1 + max_bgerror_resume_count=2147483647 + allow_concurrent_memtable_write=true + recycle_log_file_num=0 + log_file_time_to_roll=0 + manifest_preallocation_size=4194304 + enable_write_thread_adaptive_yield=true + WAL_ttl_seconds=0 + max_manifest_file_size=1073741824 + wal_recovery_mode=kTolerateCorruptedTailRecords + enable_pipelined_write=false + write_thread_slow_yield_usec=3 + unordered_write=false + write_thread_max_yield_usec=100 + advise_random_on_open=true + info_log_level=ERROR_LEVEL + + +[CFOptions "default"] + memtable_max_range_deletions=0 + compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_memory_checks=false + block_protection_bytes_per_key=0 + uncache_aggressiveness=0 + bottommost_file_compaction_delay=0 + memtable_protection_bytes_per_key=0 + experimental_mempurge_threshold=0.000000 + bottommost_compression=kDisableCompressionOption + sample_for_compression=0 + prepopulate_blob_cache=kDisable + blob_file_starting_level=0 + blob_compaction_readahead_size=0 + table_factory=BlockBasedTable + max_successive_merges=0 + max_write_buffer_number=2 + prefix_extractor=nullptr + memtable_huge_page_size=0 + write_buffer_size=10485760 + strict_max_successive_merges=false + arena_block_size=1048576 + level0_file_num_compaction_trigger=4 + report_bg_io_stats=false + inplace_update_num_locks=10000 + memtable_prefix_bloom_size_ratio=0.000000 + level0_stop_writes_trigger=36 + blob_compression_type=kNoCompression + level0_slowdown_writes_trigger=20 + hard_pending_compaction_bytes_limit=274877906944 + target_file_size_multiplier=1 + bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_file_checks=false + blob_garbage_collection_force_threshold=1.000000 + enable_blob_files=false + soft_pending_compaction_bytes_limit=68719476736 + target_file_size_base=67108864 + max_compaction_bytes=1677721600 + disable_auto_compactions=false + min_blob_size=0 + memtable_whole_key_filtering=false + max_bytes_for_level_base=268435456 + last_level_temperature=kUnknown + preserve_internal_time_seconds=0 + compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} + max_bytes_for_level_multiplier=10.000000 + max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 + max_sequential_skip_in_iterations=8 + compression=kLZ4Compression + default_write_temperature=kUnknown + compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} + blob_garbage_collection_age_cutoff=0.250000 + ttl=2592000 + periodic_compaction_seconds=0 + preclude_last_level_data_seconds=0 + blob_file_size=268435456 + enable_blob_garbage_collection=false + persist_user_defined_timestamps=true + compaction_pri=kMinOverlappingRatio + compaction_filter_factory=nullptr + comparator=leveldb.BytewiseComparator + bloom_locality=0 + merge_operator=nullptr + compaction_filter=nullptr + level_compaction_dynamic_level_bytes=true + optimize_filters_for_hits=false + inplace_update_support=false + max_write_buffer_number_to_maintain=0 + max_write_buffer_size_to_maintain=0 + sst_partitioner_factory=nullptr + default_temperature=kUnknown + compaction_style=kCompactionStyleLevel + min_write_buffer_number_to_merge=1 + memtable_factory=SkipListFactory + memtable_insert_with_hint_prefix_extractor=nullptr + force_consistency_checks=true + num_levels=7 + +[TableOptions/BlockBasedTable "default"] + num_file_reads_for_auto_readahead=2 + initial_auto_readahead_size=8192 + metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} + enable_index_compression=true + verify_compression=false + prepopulate_block_cache=kDisable + format_version=6 + use_delta_encoding=true + pin_top_level_index_and_filter=true + read_amp_bytes_per_bit=0 + decouple_partitioned_filters=false + partition_filters=false + metadata_block_size=4096 + max_auto_readahead_size=262144 + index_block_restart_interval=1 + block_size_deviation=10 + block_size=4096 + detect_filter_construct_corruption=false + no_block_cache=false + checksum=kXXH3 + filter_policy=nullptr + data_block_hash_table_util_ratio=0.750000 + block_restart_interval=16 + index_type=kBinarySearch + pin_l0_filter_and_index_blocks_in_cache=false + data_block_index_type=kDataBlockBinarySearch + cache_index_and_filter_blocks_with_high_priority=true + whole_key_filtering=true + index_shortening=kShortenSeparators + cache_index_and_filter_blocks=false + block_align=false + optimize_filters_for_memory=true + flush_block_policy_factory=FlushBlockBySizePolicyFactory + + +[CFOptions "payload"] + memtable_max_range_deletions=0 + compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_memory_checks=false + block_protection_bytes_per_key=0 + uncache_aggressiveness=0 + bottommost_file_compaction_delay=0 + memtable_protection_bytes_per_key=0 + experimental_mempurge_threshold=0.000000 + bottommost_compression=kDisableCompressionOption + sample_for_compression=0 + prepopulate_blob_cache=kDisable + blob_file_starting_level=0 + blob_compaction_readahead_size=0 + table_factory=BlockBasedTable + max_successive_merges=0 + max_write_buffer_number=2 + prefix_extractor=nullptr + memtable_huge_page_size=0 + write_buffer_size=10485760 + strict_max_successive_merges=false + arena_block_size=1048576 + level0_file_num_compaction_trigger=4 + report_bg_io_stats=false + inplace_update_num_locks=10000 + memtable_prefix_bloom_size_ratio=0.000000 + level0_stop_writes_trigger=36 + blob_compression_type=kNoCompression + level0_slowdown_writes_trigger=20 + hard_pending_compaction_bytes_limit=274877906944 + target_file_size_multiplier=1 + bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_file_checks=false + blob_garbage_collection_force_threshold=1.000000 + enable_blob_files=false + soft_pending_compaction_bytes_limit=68719476736 + target_file_size_base=67108864 + max_compaction_bytes=1677721600 + disable_auto_compactions=false + min_blob_size=0 + memtable_whole_key_filtering=false + max_bytes_for_level_base=268435456 + last_level_temperature=kUnknown + preserve_internal_time_seconds=0 + compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} + max_bytes_for_level_multiplier=10.000000 + max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 + max_sequential_skip_in_iterations=8 + compression=kLZ4Compression + default_write_temperature=kUnknown + compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} + blob_garbage_collection_age_cutoff=0.250000 + ttl=2592000 + periodic_compaction_seconds=0 + preclude_last_level_data_seconds=0 + blob_file_size=268435456 + enable_blob_garbage_collection=false + persist_user_defined_timestamps=true + compaction_pri=kMinOverlappingRatio + compaction_filter_factory=nullptr + comparator=leveldb.BytewiseComparator + bloom_locality=0 + merge_operator=nullptr + compaction_filter=nullptr + level_compaction_dynamic_level_bytes=true + optimize_filters_for_hits=false + inplace_update_support=false + max_write_buffer_number_to_maintain=0 + max_write_buffer_size_to_maintain=0 + sst_partitioner_factory=nullptr + default_temperature=kUnknown + compaction_style=kCompactionStyleLevel + min_write_buffer_number_to_merge=1 + memtable_factory=SkipListFactory + memtable_insert_with_hint_prefix_extractor=nullptr + force_consistency_checks=true + num_levels=7 + +[TableOptions/BlockBasedTable "payload"] + num_file_reads_for_auto_readahead=2 + initial_auto_readahead_size=8192 + metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} + enable_index_compression=true + verify_compression=false + prepopulate_block_cache=kDisable + format_version=6 + use_delta_encoding=true + pin_top_level_index_and_filter=true + read_amp_bytes_per_bit=0 + decouple_partitioned_filters=false + partition_filters=false + metadata_block_size=4096 + max_auto_readahead_size=262144 + index_block_restart_interval=1 + block_size_deviation=10 + block_size=4096 + detect_filter_construct_corruption=false + no_block_cache=false + checksum=kXXH3 + filter_policy=nullptr + data_block_hash_table_util_ratio=0.750000 + block_restart_interval=16 + index_type=kBinarySearch + pin_l0_filter_and_index_blocks_in_cache=false + data_block_index_type=kDataBlockBinarySearch + cache_index_and_filter_blocks_with_high_priority=true + whole_key_filtering=true + index_shortening=kShortenSeparators + cache_index_and_filter_blocks=false + block_align=false + optimize_filters_for_memory=true + flush_block_policy_factory=FlushBlockBySizePolicyFactory + + +[CFOptions "mapping"] + memtable_max_range_deletions=0 + compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_memory_checks=false + block_protection_bytes_per_key=0 + uncache_aggressiveness=0 + bottommost_file_compaction_delay=0 + memtable_protection_bytes_per_key=0 + experimental_mempurge_threshold=0.000000 + bottommost_compression=kDisableCompressionOption + sample_for_compression=0 + prepopulate_blob_cache=kDisable + blob_file_starting_level=0 + blob_compaction_readahead_size=0 + table_factory=BlockBasedTable + max_successive_merges=0 + max_write_buffer_number=2 + prefix_extractor=nullptr + memtable_huge_page_size=0 + write_buffer_size=10485760 + strict_max_successive_merges=false + arena_block_size=1048576 + level0_file_num_compaction_trigger=4 + report_bg_io_stats=false + inplace_update_num_locks=10000 + memtable_prefix_bloom_size_ratio=0.000000 + level0_stop_writes_trigger=36 + blob_compression_type=kNoCompression + level0_slowdown_writes_trigger=20 + hard_pending_compaction_bytes_limit=274877906944 + target_file_size_multiplier=1 + bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_file_checks=false + blob_garbage_collection_force_threshold=1.000000 + enable_blob_files=false + soft_pending_compaction_bytes_limit=68719476736 + target_file_size_base=67108864 + max_compaction_bytes=1677721600 + disable_auto_compactions=false + min_blob_size=0 + memtable_whole_key_filtering=false + max_bytes_for_level_base=268435456 + last_level_temperature=kUnknown + preserve_internal_time_seconds=0 + compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} + max_bytes_for_level_multiplier=10.000000 + max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 + max_sequential_skip_in_iterations=8 + compression=kLZ4Compression + default_write_temperature=kUnknown + compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} + blob_garbage_collection_age_cutoff=0.250000 + ttl=2592000 + periodic_compaction_seconds=0 + preclude_last_level_data_seconds=0 + blob_file_size=268435456 + enable_blob_garbage_collection=false + persist_user_defined_timestamps=true + compaction_pri=kMinOverlappingRatio + compaction_filter_factory=nullptr + comparator=leveldb.BytewiseComparator + bloom_locality=0 + merge_operator=nullptr + compaction_filter=nullptr + level_compaction_dynamic_level_bytes=true + optimize_filters_for_hits=false + inplace_update_support=false + max_write_buffer_number_to_maintain=0 + max_write_buffer_size_to_maintain=0 + sst_partitioner_factory=nullptr + default_temperature=kUnknown + compaction_style=kCompactionStyleLevel + min_write_buffer_number_to_merge=1 + memtable_factory=SkipListFactory + memtable_insert_with_hint_prefix_extractor=nullptr + force_consistency_checks=true + num_levels=7 + +[TableOptions/BlockBasedTable "mapping"] + num_file_reads_for_auto_readahead=2 + initial_auto_readahead_size=8192 + metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} + enable_index_compression=true + verify_compression=false + prepopulate_block_cache=kDisable + format_version=6 + use_delta_encoding=true + pin_top_level_index_and_filter=true + read_amp_bytes_per_bit=0 + decouple_partitioned_filters=false + partition_filters=false + metadata_block_size=4096 + max_auto_readahead_size=262144 + index_block_restart_interval=1 + block_size_deviation=10 + block_size=4096 + detect_filter_construct_corruption=false + no_block_cache=false + checksum=kXXH3 + filter_policy=nullptr + data_block_hash_table_util_ratio=0.750000 + block_restart_interval=16 + index_type=kBinarySearch + pin_l0_filter_and_index_blocks_in_cache=false + data_block_index_type=kDataBlockBinarySearch + cache_index_and_filter_blocks_with_high_priority=true + whole_key_filtering=true + index_shortening=kShortenSeparators + cache_index_and_filter_blocks=false + block_align=false + optimize_filters_for_memory=true + flush_block_policy_factory=FlushBlockBySizePolicyFactory + + +[CFOptions "version"] + memtable_max_range_deletions=0 + compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_memory_checks=false + block_protection_bytes_per_key=0 + uncache_aggressiveness=0 + bottommost_file_compaction_delay=0 + memtable_protection_bytes_per_key=0 + experimental_mempurge_threshold=0.000000 + bottommost_compression=kDisableCompressionOption + sample_for_compression=0 + prepopulate_blob_cache=kDisable + blob_file_starting_level=0 + blob_compaction_readahead_size=0 + table_factory=BlockBasedTable + max_successive_merges=0 + max_write_buffer_number=2 + prefix_extractor=nullptr + memtable_huge_page_size=0 + write_buffer_size=10485760 + strict_max_successive_merges=false + arena_block_size=1048576 + level0_file_num_compaction_trigger=4 + report_bg_io_stats=false + inplace_update_num_locks=10000 + memtable_prefix_bloom_size_ratio=0.000000 + level0_stop_writes_trigger=36 + blob_compression_type=kNoCompression + level0_slowdown_writes_trigger=20 + hard_pending_compaction_bytes_limit=274877906944 + target_file_size_multiplier=1 + bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_file_checks=false + blob_garbage_collection_force_threshold=1.000000 + enable_blob_files=false + soft_pending_compaction_bytes_limit=68719476736 + target_file_size_base=67108864 + max_compaction_bytes=1677721600 + disable_auto_compactions=false + min_blob_size=0 + memtable_whole_key_filtering=false + max_bytes_for_level_base=268435456 + last_level_temperature=kUnknown + preserve_internal_time_seconds=0 + compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} + max_bytes_for_level_multiplier=10.000000 + max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 + max_sequential_skip_in_iterations=8 + compression=kLZ4Compression + default_write_temperature=kUnknown + compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} + blob_garbage_collection_age_cutoff=0.250000 + ttl=2592000 + periodic_compaction_seconds=0 + preclude_last_level_data_seconds=0 + blob_file_size=268435456 + enable_blob_garbage_collection=false + persist_user_defined_timestamps=true + compaction_pri=kMinOverlappingRatio + compaction_filter_factory=nullptr + comparator=leveldb.BytewiseComparator + bloom_locality=0 + merge_operator=nullptr + compaction_filter=nullptr + level_compaction_dynamic_level_bytes=true + optimize_filters_for_hits=false + inplace_update_support=false + max_write_buffer_number_to_maintain=0 + max_write_buffer_size_to_maintain=0 + sst_partitioner_factory=nullptr + default_temperature=kUnknown + compaction_style=kCompactionStyleLevel + min_write_buffer_number_to_merge=1 + memtable_factory=SkipListFactory + memtable_insert_with_hint_prefix_extractor=nullptr + force_consistency_checks=true + num_levels=7 + +[TableOptions/BlockBasedTable "version"] + num_file_reads_for_auto_readahead=2 + initial_auto_readahead_size=8192 + metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} + enable_index_compression=true + verify_compression=false + prepopulate_block_cache=kDisable + format_version=6 + use_delta_encoding=true + pin_top_level_index_and_filter=true + read_amp_bytes_per_bit=0 + decouple_partitioned_filters=false + partition_filters=false + metadata_block_size=4096 + max_auto_readahead_size=262144 + index_block_restart_interval=1 + block_size_deviation=10 + block_size=4096 + detect_filter_construct_corruption=false + no_block_cache=false + checksum=kXXH3 + filter_policy=nullptr + data_block_hash_table_util_ratio=0.750000 + block_restart_interval=16 + index_type=kBinarySearch + pin_l0_filter_and_index_blocks_in_cache=false + data_block_index_type=kDataBlockBinarySearch + cache_index_and_filter_blocks_with_high_priority=true + whole_key_filtering=true + index_shortening=kShortenSeparators + cache_index_and_filter_blocks=false + block_align=false + optimize_filters_for_memory=true + flush_block_policy_factory=FlushBlockBySizePolicyFactory + + +[CFOptions "vector"] + memtable_max_range_deletions=0 + compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_memory_checks=false + block_protection_bytes_per_key=0 + uncache_aggressiveness=0 + bottommost_file_compaction_delay=0 + memtable_protection_bytes_per_key=0 + experimental_mempurge_threshold=0.000000 + bottommost_compression=kDisableCompressionOption + sample_for_compression=0 + prepopulate_blob_cache=kDisable + blob_file_starting_level=0 + blob_compaction_readahead_size=0 + table_factory=BlockBasedTable + max_successive_merges=0 + max_write_buffer_number=2 + prefix_extractor=nullptr + memtable_huge_page_size=0 + write_buffer_size=10485760 + strict_max_successive_merges=false + arena_block_size=1048576 + level0_file_num_compaction_trigger=4 + report_bg_io_stats=false + inplace_update_num_locks=10000 + memtable_prefix_bloom_size_ratio=0.000000 + level0_stop_writes_trigger=36 + blob_compression_type=kNoCompression + level0_slowdown_writes_trigger=20 + hard_pending_compaction_bytes_limit=274877906944 + target_file_size_multiplier=1 + bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_file_checks=false + blob_garbage_collection_force_threshold=1.000000 + enable_blob_files=false + soft_pending_compaction_bytes_limit=68719476736 + target_file_size_base=67108864 + max_compaction_bytes=1677721600 + disable_auto_compactions=false + min_blob_size=0 + memtable_whole_key_filtering=false + max_bytes_for_level_base=268435456 + last_level_temperature=kUnknown + preserve_internal_time_seconds=0 + compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} + max_bytes_for_level_multiplier=10.000000 + max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 + max_sequential_skip_in_iterations=8 + compression=kLZ4Compression + default_write_temperature=kUnknown + compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} + blob_garbage_collection_age_cutoff=0.250000 + ttl=2592000 + periodic_compaction_seconds=0 + preclude_last_level_data_seconds=0 + blob_file_size=268435456 + enable_blob_garbage_collection=false + persist_user_defined_timestamps=true + compaction_pri=kMinOverlappingRatio + compaction_filter_factory=nullptr + comparator=leveldb.BytewiseComparator + bloom_locality=0 + merge_operator=nullptr + compaction_filter=nullptr + level_compaction_dynamic_level_bytes=true + optimize_filters_for_hits=false + inplace_update_support=false + max_write_buffer_number_to_maintain=0 + max_write_buffer_size_to_maintain=0 + sst_partitioner_factory=nullptr + default_temperature=kUnknown + compaction_style=kCompactionStyleLevel + min_write_buffer_number_to_merge=1 + memtable_factory=SkipListFactory + memtable_insert_with_hint_prefix_extractor=nullptr + force_consistency_checks=true + num_levels=7 + +[TableOptions/BlockBasedTable "vector"] + num_file_reads_for_auto_readahead=2 + initial_auto_readahead_size=8192 + metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} + enable_index_compression=true + verify_compression=false + prepopulate_block_cache=kDisable + format_version=6 + use_delta_encoding=true + pin_top_level_index_and_filter=true + read_amp_bytes_per_bit=0 + decouple_partitioned_filters=false + partition_filters=false + metadata_block_size=4096 + max_auto_readahead_size=262144 + index_block_restart_interval=1 + block_size_deviation=10 + block_size=4096 + detect_filter_construct_corruption=false + no_block_cache=false + checksum=kXXH3 + filter_policy=nullptr + data_block_hash_table_util_ratio=0.750000 + block_restart_interval=16 + index_type=kBinarySearch + pin_l0_filter_and_index_blocks_in_cache=false + data_block_index_type=kDataBlockBinarySearch + cache_index_and_filter_blocks_with_high_priority=true + whole_key_filtering=true + index_shortening=kShortenSeparators + cache_index_and_filter_blocks=false + block_align=false + optimize_filters_for_memory=true + flush_block_policy_factory=FlushBlockBySizePolicyFactory + diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/OPTIONS-000028 b/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/OPTIONS-000028 new file mode 100644 index 0000000000000000000000000000000000000000..ad2b181add715408dc69839970eebfd4c1a28b4b --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/OPTIONS-000028 @@ -0,0 +1,670 @@ +# This is a RocksDB option file. +# +# For detailed file format spec, please refer to the example file +# in examples/rocksdb_option_file_example.ini +# + +[Version] + rocksdb_version=9.9.3 + options_file_version=1.1 + +[DBOptions] + compaction_readahead_size=2097152 + strict_bytes_per_sync=false + bytes_per_sync=0 + max_background_jobs=2 + avoid_flush_during_shutdown=false + max_background_flushes=-1 + delayed_write_rate=16777216 + max_open_files=256 + max_subcompactions=1 + writable_file_max_buffer_size=1048576 + wal_bytes_per_sync=0 + max_background_compactions=-1 + max_total_wal_size=0 + delete_obsolete_files_period_micros=180000000 + stats_dump_period_sec=600 + stats_history_buffer_size=1048576 + stats_persist_period_sec=600 + follower_refresh_catchup_period_ms=10000 + enforce_single_del_contracts=true + lowest_used_cache_tier=kNonVolatileBlockTier + bgerror_resume_retry_interval=1000000 + metadata_write_temperature=kUnknown + best_efforts_recovery=false + log_readahead_size=0 + write_identity_file=true + write_dbid_to_manifest=true + prefix_seek_opt_in_only=false + wal_compression=kNoCompression + manual_wal_flush=false + db_host_id=__hostname__ + two_write_queues=false + random_access_max_buffer_size=1048576 + avoid_unnecessary_blocking_io=false + skip_checking_sst_file_sizes_on_db_open=false + flush_verify_memtable_count=true + fail_if_options_file_error=true + atomic_flush=false + verify_sst_unique_id_in_manifest=true + skip_stats_update_on_db_open=false + track_and_verify_wals_in_manifest=false + compaction_verify_record_count=true + paranoid_checks=true + create_if_missing=true + max_write_batch_group_size_bytes=1048576 + follower_catchup_retry_count=10 + avoid_flush_during_recovery=false + file_checksum_gen_factory=nullptr + enable_thread_tracking=false + allow_fallocate=true + allow_data_in_errors=false + error_if_exists=false + use_direct_io_for_flush_and_compaction=false + background_close_inactive_wals=false + create_missing_column_families=true + WAL_size_limit_MB=0 + use_direct_reads=false + persist_stats_to_disk=false + allow_2pc=false + is_fd_close_on_exec=true + max_log_file_size=1048576 + max_file_opening_threads=16 + wal_filter=nullptr + wal_write_temperature=kUnknown + follower_catchup_retry_wait_ms=100 + allow_mmap_reads=false + allow_mmap_writes=false + use_adaptive_mutex=false + use_fsync=false + table_cache_numshardbits=6 + dump_malloc_stats=false + db_write_buffer_size=0 + allow_ingest_behind=false + keep_log_file_num=1 + max_bgerror_resume_count=2147483647 + allow_concurrent_memtable_write=true + recycle_log_file_num=0 + log_file_time_to_roll=0 + manifest_preallocation_size=4194304 + enable_write_thread_adaptive_yield=true + WAL_ttl_seconds=0 + max_manifest_file_size=1073741824 + wal_recovery_mode=kTolerateCorruptedTailRecords + enable_pipelined_write=false + write_thread_slow_yield_usec=3 + unordered_write=false + write_thread_max_yield_usec=100 + advise_random_on_open=true + info_log_level=ERROR_LEVEL + + +[CFOptions "default"] + memtable_max_range_deletions=0 + compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_memory_checks=false + block_protection_bytes_per_key=0 + uncache_aggressiveness=0 + bottommost_file_compaction_delay=0 + memtable_protection_bytes_per_key=0 + experimental_mempurge_threshold=0.000000 + bottommost_compression=kDisableCompressionOption + sample_for_compression=0 + prepopulate_blob_cache=kDisable + blob_file_starting_level=0 + blob_compaction_readahead_size=0 + table_factory=BlockBasedTable + max_successive_merges=0 + max_write_buffer_number=2 + prefix_extractor=nullptr + memtable_huge_page_size=0 + write_buffer_size=10485760 + strict_max_successive_merges=false + arena_block_size=1048576 + level0_file_num_compaction_trigger=4 + report_bg_io_stats=false + inplace_update_num_locks=10000 + memtable_prefix_bloom_size_ratio=0.000000 + level0_stop_writes_trigger=36 + blob_compression_type=kNoCompression + level0_slowdown_writes_trigger=20 + hard_pending_compaction_bytes_limit=274877906944 + target_file_size_multiplier=1 + bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_file_checks=false + blob_garbage_collection_force_threshold=1.000000 + enable_blob_files=false + soft_pending_compaction_bytes_limit=68719476736 + target_file_size_base=67108864 + max_compaction_bytes=1677721600 + disable_auto_compactions=false + min_blob_size=0 + memtable_whole_key_filtering=false + max_bytes_for_level_base=268435456 + last_level_temperature=kUnknown + preserve_internal_time_seconds=0 + compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} + max_bytes_for_level_multiplier=10.000000 + max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 + max_sequential_skip_in_iterations=8 + compression=kLZ4Compression + default_write_temperature=kUnknown + compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} + blob_garbage_collection_age_cutoff=0.250000 + ttl=2592000 + periodic_compaction_seconds=0 + preclude_last_level_data_seconds=0 + blob_file_size=268435456 + enable_blob_garbage_collection=false + persist_user_defined_timestamps=true + compaction_pri=kMinOverlappingRatio + compaction_filter_factory=nullptr + comparator=leveldb.BytewiseComparator + bloom_locality=0 + merge_operator=nullptr + compaction_filter=nullptr + level_compaction_dynamic_level_bytes=true + optimize_filters_for_hits=false + inplace_update_support=false + max_write_buffer_number_to_maintain=0 + max_write_buffer_size_to_maintain=0 + sst_partitioner_factory=nullptr + default_temperature=kUnknown + compaction_style=kCompactionStyleLevel + min_write_buffer_number_to_merge=1 + memtable_factory=SkipListFactory + memtable_insert_with_hint_prefix_extractor=nullptr + force_consistency_checks=true + num_levels=7 + +[TableOptions/BlockBasedTable "default"] + num_file_reads_for_auto_readahead=2 + initial_auto_readahead_size=8192 + metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} + enable_index_compression=true + verify_compression=false + prepopulate_block_cache=kDisable + format_version=6 + use_delta_encoding=true + pin_top_level_index_and_filter=true + read_amp_bytes_per_bit=0 + decouple_partitioned_filters=false + partition_filters=false + metadata_block_size=4096 + max_auto_readahead_size=262144 + index_block_restart_interval=1 + block_size_deviation=10 + block_size=4096 + detect_filter_construct_corruption=false + no_block_cache=false + checksum=kXXH3 + filter_policy=nullptr + data_block_hash_table_util_ratio=0.750000 + block_restart_interval=16 + index_type=kBinarySearch + pin_l0_filter_and_index_blocks_in_cache=false + data_block_index_type=kDataBlockBinarySearch + cache_index_and_filter_blocks_with_high_priority=true + whole_key_filtering=true + index_shortening=kShortenSeparators + cache_index_and_filter_blocks=false + block_align=false + optimize_filters_for_memory=true + flush_block_policy_factory=FlushBlockBySizePolicyFactory + + +[CFOptions "payload"] + memtable_max_range_deletions=0 + compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_memory_checks=false + block_protection_bytes_per_key=0 + uncache_aggressiveness=0 + bottommost_file_compaction_delay=0 + memtable_protection_bytes_per_key=0 + experimental_mempurge_threshold=0.000000 + bottommost_compression=kDisableCompressionOption + sample_for_compression=0 + prepopulate_blob_cache=kDisable + blob_file_starting_level=0 + blob_compaction_readahead_size=0 + table_factory=BlockBasedTable + max_successive_merges=0 + max_write_buffer_number=2 + prefix_extractor=nullptr + memtable_huge_page_size=0 + write_buffer_size=10485760 + strict_max_successive_merges=false + arena_block_size=1048576 + level0_file_num_compaction_trigger=4 + report_bg_io_stats=false + inplace_update_num_locks=10000 + memtable_prefix_bloom_size_ratio=0.000000 + level0_stop_writes_trigger=36 + blob_compression_type=kNoCompression + level0_slowdown_writes_trigger=20 + hard_pending_compaction_bytes_limit=274877906944 + target_file_size_multiplier=1 + bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_file_checks=false + blob_garbage_collection_force_threshold=1.000000 + enable_blob_files=false + soft_pending_compaction_bytes_limit=68719476736 + target_file_size_base=67108864 + max_compaction_bytes=1677721600 + disable_auto_compactions=false + min_blob_size=0 + memtable_whole_key_filtering=false + max_bytes_for_level_base=268435456 + last_level_temperature=kUnknown + preserve_internal_time_seconds=0 + compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} + max_bytes_for_level_multiplier=10.000000 + max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 + max_sequential_skip_in_iterations=8 + compression=kLZ4Compression + default_write_temperature=kUnknown + compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} + blob_garbage_collection_age_cutoff=0.250000 + ttl=2592000 + periodic_compaction_seconds=0 + preclude_last_level_data_seconds=0 + blob_file_size=268435456 + enable_blob_garbage_collection=false + persist_user_defined_timestamps=true + compaction_pri=kMinOverlappingRatio + compaction_filter_factory=nullptr + comparator=leveldb.BytewiseComparator + bloom_locality=0 + merge_operator=nullptr + compaction_filter=nullptr + level_compaction_dynamic_level_bytes=true + optimize_filters_for_hits=false + inplace_update_support=false + max_write_buffer_number_to_maintain=0 + max_write_buffer_size_to_maintain=0 + sst_partitioner_factory=nullptr + default_temperature=kUnknown + compaction_style=kCompactionStyleLevel + min_write_buffer_number_to_merge=1 + memtable_factory=SkipListFactory + memtable_insert_with_hint_prefix_extractor=nullptr + force_consistency_checks=true + num_levels=7 + +[TableOptions/BlockBasedTable "payload"] + num_file_reads_for_auto_readahead=2 + initial_auto_readahead_size=8192 + metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} + enable_index_compression=true + verify_compression=false + prepopulate_block_cache=kDisable + format_version=6 + use_delta_encoding=true + pin_top_level_index_and_filter=true + read_amp_bytes_per_bit=0 + decouple_partitioned_filters=false + partition_filters=false + metadata_block_size=4096 + max_auto_readahead_size=262144 + index_block_restart_interval=1 + block_size_deviation=10 + block_size=4096 + detect_filter_construct_corruption=false + no_block_cache=false + checksum=kXXH3 + filter_policy=nullptr + data_block_hash_table_util_ratio=0.750000 + block_restart_interval=16 + index_type=kBinarySearch + pin_l0_filter_and_index_blocks_in_cache=false + data_block_index_type=kDataBlockBinarySearch + cache_index_and_filter_blocks_with_high_priority=true + whole_key_filtering=true + index_shortening=kShortenSeparators + cache_index_and_filter_blocks=false + block_align=false + optimize_filters_for_memory=true + flush_block_policy_factory=FlushBlockBySizePolicyFactory + + +[CFOptions "mapping"] + memtable_max_range_deletions=0 + compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_memory_checks=false + block_protection_bytes_per_key=0 + uncache_aggressiveness=0 + bottommost_file_compaction_delay=0 + memtable_protection_bytes_per_key=0 + experimental_mempurge_threshold=0.000000 + bottommost_compression=kDisableCompressionOption + sample_for_compression=0 + prepopulate_blob_cache=kDisable + blob_file_starting_level=0 + blob_compaction_readahead_size=0 + table_factory=BlockBasedTable + max_successive_merges=0 + max_write_buffer_number=2 + prefix_extractor=nullptr + memtable_huge_page_size=0 + write_buffer_size=10485760 + strict_max_successive_merges=false + arena_block_size=1048576 + level0_file_num_compaction_trigger=4 + report_bg_io_stats=false + inplace_update_num_locks=10000 + memtable_prefix_bloom_size_ratio=0.000000 + level0_stop_writes_trigger=36 + blob_compression_type=kNoCompression + level0_slowdown_writes_trigger=20 + hard_pending_compaction_bytes_limit=274877906944 + target_file_size_multiplier=1 + bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_file_checks=false + blob_garbage_collection_force_threshold=1.000000 + enable_blob_files=false + soft_pending_compaction_bytes_limit=68719476736 + target_file_size_base=67108864 + max_compaction_bytes=1677721600 + disable_auto_compactions=false + min_blob_size=0 + memtable_whole_key_filtering=false + max_bytes_for_level_base=268435456 + last_level_temperature=kUnknown + preserve_internal_time_seconds=0 + compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} + max_bytes_for_level_multiplier=10.000000 + max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 + max_sequential_skip_in_iterations=8 + compression=kLZ4Compression + default_write_temperature=kUnknown + compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} + blob_garbage_collection_age_cutoff=0.250000 + ttl=2592000 + periodic_compaction_seconds=0 + preclude_last_level_data_seconds=0 + blob_file_size=268435456 + enable_blob_garbage_collection=false + persist_user_defined_timestamps=true + compaction_pri=kMinOverlappingRatio + compaction_filter_factory=nullptr + comparator=leveldb.BytewiseComparator + bloom_locality=0 + merge_operator=nullptr + compaction_filter=nullptr + level_compaction_dynamic_level_bytes=true + optimize_filters_for_hits=false + inplace_update_support=false + max_write_buffer_number_to_maintain=0 + max_write_buffer_size_to_maintain=0 + sst_partitioner_factory=nullptr + default_temperature=kUnknown + compaction_style=kCompactionStyleLevel + min_write_buffer_number_to_merge=1 + memtable_factory=SkipListFactory + memtable_insert_with_hint_prefix_extractor=nullptr + force_consistency_checks=true + num_levels=7 + +[TableOptions/BlockBasedTable "mapping"] + num_file_reads_for_auto_readahead=2 + initial_auto_readahead_size=8192 + metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} + enable_index_compression=true + verify_compression=false + prepopulate_block_cache=kDisable + format_version=6 + use_delta_encoding=true + pin_top_level_index_and_filter=true + read_amp_bytes_per_bit=0 + decouple_partitioned_filters=false + partition_filters=false + metadata_block_size=4096 + max_auto_readahead_size=262144 + index_block_restart_interval=1 + block_size_deviation=10 + block_size=4096 + detect_filter_construct_corruption=false + no_block_cache=false + checksum=kXXH3 + filter_policy=nullptr + data_block_hash_table_util_ratio=0.750000 + block_restart_interval=16 + index_type=kBinarySearch + pin_l0_filter_and_index_blocks_in_cache=false + data_block_index_type=kDataBlockBinarySearch + cache_index_and_filter_blocks_with_high_priority=true + whole_key_filtering=true + index_shortening=kShortenSeparators + cache_index_and_filter_blocks=false + block_align=false + optimize_filters_for_memory=true + flush_block_policy_factory=FlushBlockBySizePolicyFactory + + +[CFOptions "version"] + memtable_max_range_deletions=0 + compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_memory_checks=false + block_protection_bytes_per_key=0 + uncache_aggressiveness=0 + bottommost_file_compaction_delay=0 + memtable_protection_bytes_per_key=0 + experimental_mempurge_threshold=0.000000 + bottommost_compression=kDisableCompressionOption + sample_for_compression=0 + prepopulate_blob_cache=kDisable + blob_file_starting_level=0 + blob_compaction_readahead_size=0 + table_factory=BlockBasedTable + max_successive_merges=0 + max_write_buffer_number=2 + prefix_extractor=nullptr + memtable_huge_page_size=0 + write_buffer_size=10485760 + strict_max_successive_merges=false + arena_block_size=1048576 + level0_file_num_compaction_trigger=4 + report_bg_io_stats=false + inplace_update_num_locks=10000 + memtable_prefix_bloom_size_ratio=0.000000 + level0_stop_writes_trigger=36 + blob_compression_type=kNoCompression + level0_slowdown_writes_trigger=20 + hard_pending_compaction_bytes_limit=274877906944 + target_file_size_multiplier=1 + bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_file_checks=false + blob_garbage_collection_force_threshold=1.000000 + enable_blob_files=false + soft_pending_compaction_bytes_limit=68719476736 + target_file_size_base=67108864 + max_compaction_bytes=1677721600 + disable_auto_compactions=false + min_blob_size=0 + memtable_whole_key_filtering=false + max_bytes_for_level_base=268435456 + last_level_temperature=kUnknown + preserve_internal_time_seconds=0 + compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} + max_bytes_for_level_multiplier=10.000000 + max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 + max_sequential_skip_in_iterations=8 + compression=kLZ4Compression + default_write_temperature=kUnknown + compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} + blob_garbage_collection_age_cutoff=0.250000 + ttl=2592000 + periodic_compaction_seconds=0 + preclude_last_level_data_seconds=0 + blob_file_size=268435456 + enable_blob_garbage_collection=false + persist_user_defined_timestamps=true + compaction_pri=kMinOverlappingRatio + compaction_filter_factory=nullptr + comparator=leveldb.BytewiseComparator + bloom_locality=0 + merge_operator=nullptr + compaction_filter=nullptr + level_compaction_dynamic_level_bytes=true + optimize_filters_for_hits=false + inplace_update_support=false + max_write_buffer_number_to_maintain=0 + max_write_buffer_size_to_maintain=0 + sst_partitioner_factory=nullptr + default_temperature=kUnknown + compaction_style=kCompactionStyleLevel + min_write_buffer_number_to_merge=1 + memtable_factory=SkipListFactory + memtable_insert_with_hint_prefix_extractor=nullptr + force_consistency_checks=true + num_levels=7 + +[TableOptions/BlockBasedTable "version"] + num_file_reads_for_auto_readahead=2 + initial_auto_readahead_size=8192 + metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} + enable_index_compression=true + verify_compression=false + prepopulate_block_cache=kDisable + format_version=6 + use_delta_encoding=true + pin_top_level_index_and_filter=true + read_amp_bytes_per_bit=0 + decouple_partitioned_filters=false + partition_filters=false + metadata_block_size=4096 + max_auto_readahead_size=262144 + index_block_restart_interval=1 + block_size_deviation=10 + block_size=4096 + detect_filter_construct_corruption=false + no_block_cache=false + checksum=kXXH3 + filter_policy=nullptr + data_block_hash_table_util_ratio=0.750000 + block_restart_interval=16 + index_type=kBinarySearch + pin_l0_filter_and_index_blocks_in_cache=false + data_block_index_type=kDataBlockBinarySearch + cache_index_and_filter_blocks_with_high_priority=true + whole_key_filtering=true + index_shortening=kShortenSeparators + cache_index_and_filter_blocks=false + block_align=false + optimize_filters_for_memory=true + flush_block_policy_factory=FlushBlockBySizePolicyFactory + + +[CFOptions "vector"] + memtable_max_range_deletions=0 + compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_memory_checks=false + block_protection_bytes_per_key=0 + uncache_aggressiveness=0 + bottommost_file_compaction_delay=0 + memtable_protection_bytes_per_key=0 + experimental_mempurge_threshold=0.000000 + bottommost_compression=kDisableCompressionOption + sample_for_compression=0 + prepopulate_blob_cache=kDisable + blob_file_starting_level=0 + blob_compaction_readahead_size=0 + table_factory=BlockBasedTable + max_successive_merges=0 + max_write_buffer_number=2 + prefix_extractor=nullptr + memtable_huge_page_size=0 + write_buffer_size=10485760 + strict_max_successive_merges=false + arena_block_size=1048576 + level0_file_num_compaction_trigger=4 + report_bg_io_stats=false + inplace_update_num_locks=10000 + memtable_prefix_bloom_size_ratio=0.000000 + level0_stop_writes_trigger=36 + blob_compression_type=kNoCompression + level0_slowdown_writes_trigger=20 + hard_pending_compaction_bytes_limit=274877906944 + target_file_size_multiplier=1 + bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_file_checks=false + blob_garbage_collection_force_threshold=1.000000 + enable_blob_files=false + soft_pending_compaction_bytes_limit=68719476736 + target_file_size_base=67108864 + max_compaction_bytes=1677721600 + disable_auto_compactions=false + min_blob_size=0 + memtable_whole_key_filtering=false + max_bytes_for_level_base=268435456 + last_level_temperature=kUnknown + preserve_internal_time_seconds=0 + compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} + max_bytes_for_level_multiplier=10.000000 + max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 + max_sequential_skip_in_iterations=8 + compression=kLZ4Compression + default_write_temperature=kUnknown + compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} + blob_garbage_collection_age_cutoff=0.250000 + ttl=2592000 + periodic_compaction_seconds=0 + preclude_last_level_data_seconds=0 + blob_file_size=268435456 + enable_blob_garbage_collection=false + persist_user_defined_timestamps=true + compaction_pri=kMinOverlappingRatio + compaction_filter_factory=nullptr + comparator=leveldb.BytewiseComparator + bloom_locality=0 + merge_operator=nullptr + compaction_filter=nullptr + level_compaction_dynamic_level_bytes=true + optimize_filters_for_hits=false + inplace_update_support=false + max_write_buffer_number_to_maintain=0 + max_write_buffer_size_to_maintain=0 + sst_partitioner_factory=nullptr + default_temperature=kUnknown + compaction_style=kCompactionStyleLevel + min_write_buffer_number_to_merge=1 + memtable_factory=SkipListFactory + memtable_insert_with_hint_prefix_extractor=nullptr + force_consistency_checks=true + num_levels=7 + +[TableOptions/BlockBasedTable "vector"] + num_file_reads_for_auto_readahead=2 + initial_auto_readahead_size=8192 + metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} + enable_index_compression=true + verify_compression=false + prepopulate_block_cache=kDisable + format_version=6 + use_delta_encoding=true + pin_top_level_index_and_filter=true + read_amp_bytes_per_bit=0 + decouple_partitioned_filters=false + partition_filters=false + metadata_block_size=4096 + max_auto_readahead_size=262144 + index_block_restart_interval=1 + block_size_deviation=10 + block_size=4096 + detect_filter_construct_corruption=false + no_block_cache=false + checksum=kXXH3 + filter_policy=nullptr + data_block_hash_table_util_ratio=0.750000 + block_restart_interval=16 + index_type=kBinarySearch + pin_l0_filter_and_index_blocks_in_cache=false + data_block_index_type=kDataBlockBinarySearch + cache_index_and_filter_blocks_with_high_priority=true + whole_key_filtering=true + index_shortening=kShortenSeparators + cache_index_and_filter_blocks=false + block_align=false + optimize_filters_for_memory=true + flush_block_policy_factory=FlushBlockBySizePolicyFactory + diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/payload_index/000012.log b/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/payload_index/000012.log new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/payload_index/CURRENT b/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/payload_index/CURRENT new file mode 100644 index 0000000000000000000000000000000000000000..625d147412870471b19d90716ccc20a7f207a5c3 --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/payload_index/CURRENT @@ -0,0 +1 @@ +MANIFEST-000013 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/payload_index/IDENTITY b/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/payload_index/IDENTITY new file mode 100644 index 0000000000000000000000000000000000000000..c26f7414563dbd7663a9296cfa8a3695f3634189 --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/payload_index/IDENTITY @@ -0,0 +1 @@ +c598fb38-603f-44c0-9f5c-7969515461ff \ No newline at end of file diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/payload_index/LOCK b/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/payload_index/LOCK new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/payload_index/LOG b/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/payload_index/LOG new file mode 100644 index 0000000000000000000000000000000000000000..be465f0c717ad9151094ee3ae313d7a94801c4a7 --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/payload_index/LOG @@ -0,0 +1,247 @@ +2025/05/04-10:09:55.809487 38 RocksDB version: 9.9.3 +2025/05/04-10:09:55.809649 38 Compile date 2024-12-05 01:25:31 +2025/05/04-10:09:55.809651 38 DB SUMMARY +2025/05/04-10:09:55.809653 38 Host name (Env): c5f2a9d061bb +2025/05/04-10:09:55.809653 38 DB Session ID: CD0SHR3DDC5AMRBDXMDE +2025/05/04-10:09:55.810228 38 CURRENT file: CURRENT +2025/05/04-10:09:55.810229 38 IDENTITY file: IDENTITY +2025/05/04-10:09:55.810234 38 MANIFEST file: MANIFEST-000009 size: 159 Bytes +2025/05/04-10:09:55.810259 38 SST files in ./storage/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/payload_index dir, Total Num: 0, files: +2025/05/04-10:09:55.810260 38 Write Ahead Log file in ./storage/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/payload_index: 000008.log size: 0 ; +2025/05/04-10:09:55.810261 38 Options.error_if_exists: 0 +2025/05/04-10:09:55.810261 38 Options.create_if_missing: 1 +2025/05/04-10:09:55.810262 38 Options.paranoid_checks: 1 +2025/05/04-10:09:55.810263 38 Options.flush_verify_memtable_count: 1 +2025/05/04-10:09:55.810264 38 Options.compaction_verify_record_count: 1 +2025/05/04-10:09:55.810264 38 Options.track_and_verify_wals_in_manifest: 0 +2025/05/04-10:09:55.810265 38 Options.verify_sst_unique_id_in_manifest: 1 +2025/05/04-10:09:55.810266 38 Options.env: 0xffff86034000 +2025/05/04-10:09:55.810267 38 Options.fs: PosixFileSystem +2025/05/04-10:09:55.810267 38 Options.info_log: 0xffff85ca2800 +2025/05/04-10:09:55.810268 38 Options.max_file_opening_threads: 16 +2025/05/04-10:09:55.810269 38 Options.statistics: (nil) +2025/05/04-10:09:55.810269 38 Options.use_fsync: 0 +2025/05/04-10:09:55.810270 38 Options.max_log_file_size: 1048576 +2025/05/04-10:09:55.810270 38 Options.max_manifest_file_size: 1073741824 +2025/05/04-10:09:55.810271 38 Options.log_file_time_to_roll: 0 +2025/05/04-10:09:55.810272 38 Options.keep_log_file_num: 1 +2025/05/04-10:09:55.810272 38 Options.recycle_log_file_num: 0 +2025/05/04-10:09:55.810273 38 Options.allow_fallocate: 1 +2025/05/04-10:09:55.810273 38 Options.allow_mmap_reads: 0 +2025/05/04-10:09:55.810274 38 Options.allow_mmap_writes: 0 +2025/05/04-10:09:55.810275 38 Options.use_direct_reads: 0 +2025/05/04-10:09:55.810275 38 Options.use_direct_io_for_flush_and_compaction: 0 +2025/05/04-10:09:55.810276 38 Options.create_missing_column_families: 1 +2025/05/04-10:09:55.810276 38 Options.db_log_dir: +2025/05/04-10:09:55.810277 38 Options.wal_dir: +2025/05/04-10:09:55.810277 38 Options.table_cache_numshardbits: 6 +2025/05/04-10:09:55.810278 38 Options.WAL_ttl_seconds: 0 +2025/05/04-10:09:55.810279 38 Options.WAL_size_limit_MB: 0 +2025/05/04-10:09:55.810279 38 Options.max_write_batch_group_size_bytes: 1048576 +2025/05/04-10:09:55.810280 38 Options.manifest_preallocation_size: 4194304 +2025/05/04-10:09:55.810281 38 Options.is_fd_close_on_exec: 1 +2025/05/04-10:09:55.810281 38 Options.advise_random_on_open: 1 +2025/05/04-10:09:55.810282 38 Options.db_write_buffer_size: 0 +2025/05/04-10:09:55.810282 38 Options.write_buffer_manager: 0xffff85c0a2c0 +2025/05/04-10:09:55.810283 38 Options.random_access_max_buffer_size: 1048576 +2025/05/04-10:09:55.810284 38 Options.use_adaptive_mutex: 0 +2025/05/04-10:09:55.810284 38 Options.rate_limiter: (nil) +2025/05/04-10:09:55.810285 38 Options.sst_file_manager.rate_bytes_per_sec: 0 +2025/05/04-10:09:55.810286 38 Options.wal_recovery_mode: 0 +2025/05/04-10:09:55.810287 38 Options.enable_thread_tracking: 0 +2025/05/04-10:09:55.810287 38 Options.enable_pipelined_write: 0 +2025/05/04-10:09:55.810288 38 Options.unordered_write: 0 +2025/05/04-10:09:55.810288 38 Options.allow_concurrent_memtable_write: 1 +2025/05/04-10:09:55.810289 38 Options.enable_write_thread_adaptive_yield: 1 +2025/05/04-10:09:55.810290 38 Options.write_thread_max_yield_usec: 100 +2025/05/04-10:09:55.810290 38 Options.write_thread_slow_yield_usec: 3 +2025/05/04-10:09:55.810291 38 Options.row_cache: None +2025/05/04-10:09:55.810291 38 Options.wal_filter: None +2025/05/04-10:09:55.810292 38 Options.avoid_flush_during_recovery: 0 +2025/05/04-10:09:55.810292 38 Options.allow_ingest_behind: 0 +2025/05/04-10:09:55.810293 38 Options.two_write_queues: 0 +2025/05/04-10:09:55.810294 38 Options.manual_wal_flush: 0 +2025/05/04-10:09:55.810294 38 Options.wal_compression: 0 +2025/05/04-10:09:55.810295 38 Options.background_close_inactive_wals: 0 +2025/05/04-10:09:55.810296 38 Options.atomic_flush: 0 +2025/05/04-10:09:55.810296 38 Options.avoid_unnecessary_blocking_io: 0 +2025/05/04-10:09:55.810297 38 Options.prefix_seek_opt_in_only: 0 +2025/05/04-10:09:55.810298 38 Options.persist_stats_to_disk: 0 +2025/05/04-10:09:55.810298 38 Options.write_dbid_to_manifest: 1 +2025/05/04-10:09:55.810299 38 Options.write_identity_file: 1 +2025/05/04-10:09:55.810300 38 Options.log_readahead_size: 0 +2025/05/04-10:09:55.810300 38 Options.file_checksum_gen_factory: Unknown +2025/05/04-10:09:55.810301 38 Options.best_efforts_recovery: 0 +2025/05/04-10:09:55.810302 38 Options.max_bgerror_resume_count: 2147483647 +2025/05/04-10:09:55.810302 38 Options.bgerror_resume_retry_interval: 1000000 +2025/05/04-10:09:55.810303 38 Options.allow_data_in_errors: 0 +2025/05/04-10:09:55.810304 38 Options.db_host_id: __hostname__ +2025/05/04-10:09:55.810304 38 Options.enforce_single_del_contracts: true +2025/05/04-10:09:55.810305 38 Options.metadata_write_temperature: kUnknown +2025/05/04-10:09:55.810306 38 Options.wal_write_temperature: kUnknown +2025/05/04-10:09:55.810306 38 Options.max_background_jobs: 2 +2025/05/04-10:09:55.810307 38 Options.max_background_compactions: -1 +2025/05/04-10:09:55.810307 38 Options.max_subcompactions: 1 +2025/05/04-10:09:55.810308 38 Options.avoid_flush_during_shutdown: 0 +2025/05/04-10:09:55.810308 38 Options.writable_file_max_buffer_size: 1048576 +2025/05/04-10:09:55.810309 38 Options.delayed_write_rate : 16777216 +2025/05/04-10:09:55.810310 38 Options.max_total_wal_size: 0 +2025/05/04-10:09:55.810310 38 Options.delete_obsolete_files_period_micros: 180000000 +2025/05/04-10:09:55.810311 38 Options.stats_dump_period_sec: 600 +2025/05/04-10:09:55.810311 38 Options.stats_persist_period_sec: 600 +2025/05/04-10:09:55.810312 38 Options.stats_history_buffer_size: 1048576 +2025/05/04-10:09:55.810312 38 Options.max_open_files: 256 +2025/05/04-10:09:55.810313 38 Options.bytes_per_sync: 0 +2025/05/04-10:09:55.810314 38 Options.wal_bytes_per_sync: 0 +2025/05/04-10:09:55.810314 38 Options.strict_bytes_per_sync: 0 +2025/05/04-10:09:55.810315 38 Options.compaction_readahead_size: 2097152 +2025/05/04-10:09:55.810316 38 Options.max_background_flushes: -1 +2025/05/04-10:09:55.810316 38 Options.daily_offpeak_time_utc: +2025/05/04-10:09:55.810317 38 Compression algorithms supported: +2025/05/04-10:09:55.810318 38 kZSTD supported: 0 +2025/05/04-10:09:55.810318 38 kXpressCompression supported: 0 +2025/05/04-10:09:55.810319 38 kBZip2Compression supported: 0 +2025/05/04-10:09:55.810319 38 kZSTDNotFinalCompression supported: 0 +2025/05/04-10:09:55.810320 38 kLZ4Compression supported: 1 +2025/05/04-10:09:55.810321 38 kZlibCompression supported: 0 +2025/05/04-10:09:55.810321 38 kLZ4HCCompression supported: 1 +2025/05/04-10:09:55.810322 38 kSnappyCompression supported: 1 +2025/05/04-10:09:55.810323 38 Fast CRC32 supported: Not supported on x86 +2025/05/04-10:09:55.810323 38 DMutex implementation: pthread_mutex_t +2025/05/04-10:09:55.810324 38 Jemalloc supported: 0 +2025/05/04-10:09:55.811797 38 Options.comparator: leveldb.BytewiseComparator +2025/05/04-10:09:55.811798 38 Options.merge_operator: None +2025/05/04-10:09:55.811798 38 Options.compaction_filter: None +2025/05/04-10:09:55.811799 38 Options.compaction_filter_factory: None +2025/05/04-10:09:55.811800 38 Options.sst_partitioner_factory: None +2025/05/04-10:09:55.811808 38 Options.memtable_factory: SkipListFactory +2025/05/04-10:09:55.811809 38 Options.table_factory: BlockBasedTable +2025/05/04-10:09:55.811822 38 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff85d32c80) + cache_index_and_filter_blocks: 0 + cache_index_and_filter_blocks_with_high_priority: 1 + pin_l0_filter_and_index_blocks_in_cache: 0 + pin_top_level_index_and_filter: 1 + index_type: 0 + data_block_index_type: 0 + index_shortening: 1 + data_block_hash_table_util_ratio: 0.750000 + checksum: 4 + no_block_cache: 0 + block_cache: 0xffff85c0a210 + block_cache_name: LRUCache + block_cache_options: + capacity : 33554432 + num_shard_bits : 6 + strict_capacity_limit : 0 + memory_allocator : None + high_pri_pool_ratio: 0.500 + low_pri_pool_ratio: 0.000 + persistent_cache: (nil) + block_size: 4096 + block_size_deviation: 10 + block_restart_interval: 16 + index_block_restart_interval: 1 + metadata_block_size: 4096 + partition_filters: 0 + use_delta_encoding: 1 + filter_policy: nullptr + whole_key_filtering: 1 + verify_compression: 0 + read_amp_bytes_per_bit: 0 + format_version: 6 + enable_index_compression: 1 + block_align: 0 + max_auto_readahead_size: 262144 + prepopulate_block_cache: 0 + initial_auto_readahead_size: 8192 + num_file_reads_for_auto_readahead: 2 +2025/05/04-10:09:55.811824 38 Options.write_buffer_size: 10485760 +2025/05/04-10:09:55.811825 38 Options.max_write_buffer_number: 2 +2025/05/04-10:09:55.811825 38 Options.compression: LZ4 +2025/05/04-10:09:55.811826 38 Options.bottommost_compression: Disabled +2025/05/04-10:09:55.811827 38 Options.prefix_extractor: nullptr +2025/05/04-10:09:55.811828 38 Options.memtable_insert_with_hint_prefix_extractor: nullptr +2025/05/04-10:09:55.811828 38 Options.num_levels: 7 +2025/05/04-10:09:55.811829 38 Options.min_write_buffer_number_to_merge: 1 +2025/05/04-10:09:55.811829 38 Options.max_write_buffer_number_to_maintain: 0 +2025/05/04-10:09:55.811830 38 Options.max_write_buffer_size_to_maintain: 0 +2025/05/04-10:09:55.811831 38 Options.bottommost_compression_opts.window_bits: -14 +2025/05/04-10:09:55.811831 38 Options.bottommost_compression_opts.level: 32767 +2025/05/04-10:09:55.811832 38 Options.bottommost_compression_opts.strategy: 0 +2025/05/04-10:09:55.811832 38 Options.bottommost_compression_opts.max_dict_bytes: 0 +2025/05/04-10:09:55.811833 38 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 +2025/05/04-10:09:55.811834 38 Options.bottommost_compression_opts.parallel_threads: 1 +2025/05/04-10:09:55.811834 38 Options.bottommost_compression_opts.enabled: false +2025/05/04-10:09:55.811835 38 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 +2025/05/04-10:09:55.811836 38 Options.bottommost_compression_opts.use_zstd_dict_trainer: true +2025/05/04-10:09:55.811837 38 Options.compression_opts.window_bits: -14 +2025/05/04-10:09:55.811837 38 Options.compression_opts.level: 32767 +2025/05/04-10:09:55.811838 38 Options.compression_opts.strategy: 0 +2025/05/04-10:09:55.811838 38 Options.compression_opts.max_dict_bytes: 0 +2025/05/04-10:09:55.811839 38 Options.compression_opts.zstd_max_train_bytes: 0 +2025/05/04-10:09:55.811839 38 Options.compression_opts.use_zstd_dict_trainer: true +2025/05/04-10:09:55.811840 38 Options.compression_opts.parallel_threads: 1 +2025/05/04-10:09:55.811841 38 Options.compression_opts.enabled: false +2025/05/04-10:09:55.811841 38 Options.compression_opts.max_dict_buffer_bytes: 0 +2025/05/04-10:09:55.811842 38 Options.level0_file_num_compaction_trigger: 4 +2025/05/04-10:09:55.811842 38 Options.level0_slowdown_writes_trigger: 20 +2025/05/04-10:09:55.811843 38 Options.level0_stop_writes_trigger: 36 +2025/05/04-10:09:55.811844 38 Options.target_file_size_base: 67108864 +2025/05/04-10:09:55.811844 38 Options.target_file_size_multiplier: 1 +2025/05/04-10:09:55.811845 38 Options.max_bytes_for_level_base: 268435456 +2025/05/04-10:09:55.811846 38 Options.level_compaction_dynamic_level_bytes: 1 +2025/05/04-10:09:55.811847 38 Options.max_bytes_for_level_multiplier: 10.000000 +2025/05/04-10:09:55.811847 38 Options.max_bytes_for_level_multiplier_addtl[0]: 1 +2025/05/04-10:09:55.811848 38 Options.max_bytes_for_level_multiplier_addtl[1]: 1 +2025/05/04-10:09:55.811849 38 Options.max_bytes_for_level_multiplier_addtl[2]: 1 +2025/05/04-10:09:55.811849 38 Options.max_bytes_for_level_multiplier_addtl[3]: 1 +2025/05/04-10:09:55.811850 38 Options.max_bytes_for_level_multiplier_addtl[4]: 1 +2025/05/04-10:09:55.811850 38 Options.max_bytes_for_level_multiplier_addtl[5]: 1 +2025/05/04-10:09:55.811851 38 Options.max_bytes_for_level_multiplier_addtl[6]: 1 +2025/05/04-10:09:55.811851 38 Options.max_sequential_skip_in_iterations: 8 +2025/05/04-10:09:55.811852 38 Options.max_compaction_bytes: 1677721600 +2025/05/04-10:09:55.811852 38 Options.arena_block_size: 1048576 +2025/05/04-10:09:55.811853 38 Options.soft_pending_compaction_bytes_limit: 68719476736 +2025/05/04-10:09:55.811854 38 Options.hard_pending_compaction_bytes_limit: 274877906944 +2025/05/04-10:09:55.811854 38 Options.disable_auto_compactions: 0 +2025/05/04-10:09:55.811856 38 Options.compaction_style: kCompactionStyleLevel +2025/05/04-10:09:55.811856 38 Options.compaction_pri: kMinOverlappingRatio +2025/05/04-10:09:55.811857 38 Options.compaction_options_universal.size_ratio: 1 +2025/05/04-10:09:55.811857 38 Options.compaction_options_universal.min_merge_width: 2 +2025/05/04-10:09:55.811858 38 Options.compaction_options_universal.max_merge_width: 4294967295 +2025/05/04-10:09:55.811859 38 Options.compaction_options_universal.max_size_amplification_percent: 200 +2025/05/04-10:09:55.811867 38 Options.compaction_options_universal.compression_size_percent: -1 +2025/05/04-10:09:55.811868 38 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize +2025/05/04-10:09:55.811869 38 Options.compaction_options_universal.max_read_amp: -1 +2025/05/04-10:09:55.811869 38 Options.compaction_options_fifo.max_table_files_size: 1073741824 +2025/05/04-10:09:55.811870 38 Options.compaction_options_fifo.allow_compaction: 0 +2025/05/04-10:09:55.811871 38 Options.table_properties_collectors: +2025/05/04-10:09:55.811872 38 Options.inplace_update_support: 0 +2025/05/04-10:09:55.811872 38 Options.inplace_update_num_locks: 10000 +2025/05/04-10:09:55.811873 38 Options.memtable_prefix_bloom_size_ratio: 0.000000 +2025/05/04-10:09:55.811874 38 Options.memtable_whole_key_filtering: 0 +2025/05/04-10:09:55.811874 38 Options.memtable_huge_page_size: 0 +2025/05/04-10:09:55.811875 38 Options.bloom_locality: 0 +2025/05/04-10:09:55.811876 38 Options.max_successive_merges: 0 +2025/05/04-10:09:55.811876 38 Options.strict_max_successive_merges: 0 +2025/05/04-10:09:55.811877 38 Options.optimize_filters_for_hits: 0 +2025/05/04-10:09:55.811878 38 Options.paranoid_file_checks: 0 +2025/05/04-10:09:55.811879 38 Options.force_consistency_checks: 1 +2025/05/04-10:09:55.811880 38 Options.report_bg_io_stats: 0 +2025/05/04-10:09:55.811881 38 Options.ttl: 2592000 +2025/05/04-10:09:55.811881 38 Options.periodic_compaction_seconds: 0 +2025/05/04-10:09:55.811882 38 Options.default_temperature: kUnknown +2025/05/04-10:09:55.811882 38 Options.preclude_last_level_data_seconds: 0 +2025/05/04-10:09:55.811883 38 Options.preserve_internal_time_seconds: 0 +2025/05/04-10:09:55.811884 38 Options.enable_blob_files: false +2025/05/04-10:09:55.811884 38 Options.min_blob_size: 0 +2025/05/04-10:09:55.811885 38 Options.blob_file_size: 268435456 +2025/05/04-10:09:55.811886 38 Options.blob_compression_type: NoCompression +2025/05/04-10:09:55.811886 38 Options.enable_blob_garbage_collection: false +2025/05/04-10:09:55.811887 38 Options.blob_garbage_collection_age_cutoff: 0.250000 +2025/05/04-10:09:55.811888 38 Options.blob_garbage_collection_force_threshold: 1.000000 +2025/05/04-10:09:55.811889 38 Options.blob_compaction_readahead_size: 0 +2025/05/04-10:09:55.811889 38 Options.blob_file_starting_level: 0 +2025/05/04-10:09:55.811890 38 Options.experimental_mempurge_threshold: 0.000000 +2025/05/04-10:09:55.811891 38 Options.memtable_max_range_deletions: 0 +2025/05/04-10:09:55.822024 38 DB pointer 0xffff85c62000 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/payload_index/MANIFEST-000013 b/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/payload_index/MANIFEST-000013 new file mode 100644 index 0000000000000000000000000000000000000000..16f98dd5298d12b796ae3e0e178d019fb7475cbc Binary files /dev/null and b/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/payload_index/MANIFEST-000013 differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/payload_index/OPTIONS-000011 b/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/payload_index/OPTIONS-000011 new file mode 100644 index 0000000000000000000000000000000000000000..1ff6c6ffcc08e04f8a99e1f459e7b0caa1822cb2 --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/payload_index/OPTIONS-000011 @@ -0,0 +1,214 @@ +# This is a RocksDB option file. +# +# For detailed file format spec, please refer to the example file +# in examples/rocksdb_option_file_example.ini +# + +[Version] + rocksdb_version=9.9.3 + options_file_version=1.1 + +[DBOptions] + compaction_readahead_size=2097152 + strict_bytes_per_sync=false + bytes_per_sync=0 + max_background_jobs=2 + avoid_flush_during_shutdown=false + max_background_flushes=-1 + delayed_write_rate=16777216 + max_open_files=256 + max_subcompactions=1 + writable_file_max_buffer_size=1048576 + wal_bytes_per_sync=0 + max_background_compactions=-1 + max_total_wal_size=0 + delete_obsolete_files_period_micros=180000000 + stats_dump_period_sec=600 + stats_history_buffer_size=1048576 + stats_persist_period_sec=600 + follower_refresh_catchup_period_ms=10000 + enforce_single_del_contracts=true + lowest_used_cache_tier=kNonVolatileBlockTier + bgerror_resume_retry_interval=1000000 + metadata_write_temperature=kUnknown + best_efforts_recovery=false + log_readahead_size=0 + write_identity_file=true + write_dbid_to_manifest=true + prefix_seek_opt_in_only=false + wal_compression=kNoCompression + manual_wal_flush=false + db_host_id=__hostname__ + two_write_queues=false + random_access_max_buffer_size=1048576 + avoid_unnecessary_blocking_io=false + skip_checking_sst_file_sizes_on_db_open=false + flush_verify_memtable_count=true + fail_if_options_file_error=true + atomic_flush=false + verify_sst_unique_id_in_manifest=true + skip_stats_update_on_db_open=false + track_and_verify_wals_in_manifest=false + compaction_verify_record_count=true + paranoid_checks=true + create_if_missing=true + max_write_batch_group_size_bytes=1048576 + follower_catchup_retry_count=10 + avoid_flush_during_recovery=false + file_checksum_gen_factory=nullptr + enable_thread_tracking=false + allow_fallocate=true + allow_data_in_errors=false + error_if_exists=false + use_direct_io_for_flush_and_compaction=false + background_close_inactive_wals=false + create_missing_column_families=true + WAL_size_limit_MB=0 + use_direct_reads=false + persist_stats_to_disk=false + allow_2pc=false + is_fd_close_on_exec=true + max_log_file_size=1048576 + max_file_opening_threads=16 + wal_filter=nullptr + wal_write_temperature=kUnknown + follower_catchup_retry_wait_ms=100 + allow_mmap_reads=false + allow_mmap_writes=false + use_adaptive_mutex=false + use_fsync=false + table_cache_numshardbits=6 + dump_malloc_stats=false + db_write_buffer_size=0 + allow_ingest_behind=false + keep_log_file_num=1 + max_bgerror_resume_count=2147483647 + allow_concurrent_memtable_write=true + recycle_log_file_num=0 + log_file_time_to_roll=0 + manifest_preallocation_size=4194304 + enable_write_thread_adaptive_yield=true + WAL_ttl_seconds=0 + max_manifest_file_size=1073741824 + wal_recovery_mode=kTolerateCorruptedTailRecords + enable_pipelined_write=false + write_thread_slow_yield_usec=3 + unordered_write=false + write_thread_max_yield_usec=100 + advise_random_on_open=true + info_log_level=ERROR_LEVEL + + +[CFOptions "default"] + memtable_max_range_deletions=0 + compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_memory_checks=false + block_protection_bytes_per_key=0 + uncache_aggressiveness=0 + bottommost_file_compaction_delay=0 + memtable_protection_bytes_per_key=0 + experimental_mempurge_threshold=0.000000 + bottommost_compression=kDisableCompressionOption + sample_for_compression=0 + prepopulate_blob_cache=kDisable + blob_file_starting_level=0 + blob_compaction_readahead_size=0 + table_factory=BlockBasedTable + max_successive_merges=0 + max_write_buffer_number=2 + prefix_extractor=nullptr + memtable_huge_page_size=0 + write_buffer_size=10485760 + strict_max_successive_merges=false + arena_block_size=1048576 + level0_file_num_compaction_trigger=4 + report_bg_io_stats=false + inplace_update_num_locks=10000 + memtable_prefix_bloom_size_ratio=0.000000 + level0_stop_writes_trigger=36 + blob_compression_type=kNoCompression + level0_slowdown_writes_trigger=20 + hard_pending_compaction_bytes_limit=274877906944 + target_file_size_multiplier=1 + bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_file_checks=false + blob_garbage_collection_force_threshold=1.000000 + enable_blob_files=false + soft_pending_compaction_bytes_limit=68719476736 + target_file_size_base=67108864 + max_compaction_bytes=1677721600 + disable_auto_compactions=false + min_blob_size=0 + memtable_whole_key_filtering=false + max_bytes_for_level_base=268435456 + last_level_temperature=kUnknown + preserve_internal_time_seconds=0 + compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} + max_bytes_for_level_multiplier=10.000000 + max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 + max_sequential_skip_in_iterations=8 + compression=kLZ4Compression + default_write_temperature=kUnknown + compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} + blob_garbage_collection_age_cutoff=0.250000 + ttl=2592000 + periodic_compaction_seconds=0 + preclude_last_level_data_seconds=0 + blob_file_size=268435456 + enable_blob_garbage_collection=false + persist_user_defined_timestamps=true + compaction_pri=kMinOverlappingRatio + compaction_filter_factory=nullptr + comparator=leveldb.BytewiseComparator + bloom_locality=0 + merge_operator=nullptr + compaction_filter=nullptr + level_compaction_dynamic_level_bytes=true + optimize_filters_for_hits=false + inplace_update_support=false + max_write_buffer_number_to_maintain=0 + max_write_buffer_size_to_maintain=0 + sst_partitioner_factory=nullptr + default_temperature=kUnknown + compaction_style=kCompactionStyleLevel + min_write_buffer_number_to_merge=1 + memtable_factory=SkipListFactory + memtable_insert_with_hint_prefix_extractor=nullptr + force_consistency_checks=true + num_levels=7 + +[TableOptions/BlockBasedTable "default"] + num_file_reads_for_auto_readahead=2 + initial_auto_readahead_size=8192 + metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} + enable_index_compression=true + verify_compression=false + prepopulate_block_cache=kDisable + format_version=6 + use_delta_encoding=true + pin_top_level_index_and_filter=true + read_amp_bytes_per_bit=0 + decouple_partitioned_filters=false + partition_filters=false + metadata_block_size=4096 + max_auto_readahead_size=262144 + index_block_restart_interval=1 + block_size_deviation=10 + block_size=4096 + detect_filter_construct_corruption=false + no_block_cache=false + checksum=kXXH3 + filter_policy=nullptr + data_block_hash_table_util_ratio=0.750000 + block_restart_interval=16 + index_type=kBinarySearch + pin_l0_filter_and_index_blocks_in_cache=false + data_block_index_type=kDataBlockBinarySearch + cache_index_and_filter_blocks_with_high_priority=true + whole_key_filtering=true + index_shortening=kShortenSeparators + cache_index_and_filter_blocks=false + block_align=false + optimize_filters_for_memory=true + flush_block_policy_factory=FlushBlockBySizePolicyFactory + diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/payload_index/OPTIONS-000015 b/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/payload_index/OPTIONS-000015 new file mode 100644 index 0000000000000000000000000000000000000000..1ff6c6ffcc08e04f8a99e1f459e7b0caa1822cb2 --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/payload_index/OPTIONS-000015 @@ -0,0 +1,214 @@ +# This is a RocksDB option file. +# +# For detailed file format spec, please refer to the example file +# in examples/rocksdb_option_file_example.ini +# + +[Version] + rocksdb_version=9.9.3 + options_file_version=1.1 + +[DBOptions] + compaction_readahead_size=2097152 + strict_bytes_per_sync=false + bytes_per_sync=0 + max_background_jobs=2 + avoid_flush_during_shutdown=false + max_background_flushes=-1 + delayed_write_rate=16777216 + max_open_files=256 + max_subcompactions=1 + writable_file_max_buffer_size=1048576 + wal_bytes_per_sync=0 + max_background_compactions=-1 + max_total_wal_size=0 + delete_obsolete_files_period_micros=180000000 + stats_dump_period_sec=600 + stats_history_buffer_size=1048576 + stats_persist_period_sec=600 + follower_refresh_catchup_period_ms=10000 + enforce_single_del_contracts=true + lowest_used_cache_tier=kNonVolatileBlockTier + bgerror_resume_retry_interval=1000000 + metadata_write_temperature=kUnknown + best_efforts_recovery=false + log_readahead_size=0 + write_identity_file=true + write_dbid_to_manifest=true + prefix_seek_opt_in_only=false + wal_compression=kNoCompression + manual_wal_flush=false + db_host_id=__hostname__ + two_write_queues=false + random_access_max_buffer_size=1048576 + avoid_unnecessary_blocking_io=false + skip_checking_sst_file_sizes_on_db_open=false + flush_verify_memtable_count=true + fail_if_options_file_error=true + atomic_flush=false + verify_sst_unique_id_in_manifest=true + skip_stats_update_on_db_open=false + track_and_verify_wals_in_manifest=false + compaction_verify_record_count=true + paranoid_checks=true + create_if_missing=true + max_write_batch_group_size_bytes=1048576 + follower_catchup_retry_count=10 + avoid_flush_during_recovery=false + file_checksum_gen_factory=nullptr + enable_thread_tracking=false + allow_fallocate=true + allow_data_in_errors=false + error_if_exists=false + use_direct_io_for_flush_and_compaction=false + background_close_inactive_wals=false + create_missing_column_families=true + WAL_size_limit_MB=0 + use_direct_reads=false + persist_stats_to_disk=false + allow_2pc=false + is_fd_close_on_exec=true + max_log_file_size=1048576 + max_file_opening_threads=16 + wal_filter=nullptr + wal_write_temperature=kUnknown + follower_catchup_retry_wait_ms=100 + allow_mmap_reads=false + allow_mmap_writes=false + use_adaptive_mutex=false + use_fsync=false + table_cache_numshardbits=6 + dump_malloc_stats=false + db_write_buffer_size=0 + allow_ingest_behind=false + keep_log_file_num=1 + max_bgerror_resume_count=2147483647 + allow_concurrent_memtable_write=true + recycle_log_file_num=0 + log_file_time_to_roll=0 + manifest_preallocation_size=4194304 + enable_write_thread_adaptive_yield=true + WAL_ttl_seconds=0 + max_manifest_file_size=1073741824 + wal_recovery_mode=kTolerateCorruptedTailRecords + enable_pipelined_write=false + write_thread_slow_yield_usec=3 + unordered_write=false + write_thread_max_yield_usec=100 + advise_random_on_open=true + info_log_level=ERROR_LEVEL + + +[CFOptions "default"] + memtable_max_range_deletions=0 + compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_memory_checks=false + block_protection_bytes_per_key=0 + uncache_aggressiveness=0 + bottommost_file_compaction_delay=0 + memtable_protection_bytes_per_key=0 + experimental_mempurge_threshold=0.000000 + bottommost_compression=kDisableCompressionOption + sample_for_compression=0 + prepopulate_blob_cache=kDisable + blob_file_starting_level=0 + blob_compaction_readahead_size=0 + table_factory=BlockBasedTable + max_successive_merges=0 + max_write_buffer_number=2 + prefix_extractor=nullptr + memtable_huge_page_size=0 + write_buffer_size=10485760 + strict_max_successive_merges=false + arena_block_size=1048576 + level0_file_num_compaction_trigger=4 + report_bg_io_stats=false + inplace_update_num_locks=10000 + memtable_prefix_bloom_size_ratio=0.000000 + level0_stop_writes_trigger=36 + blob_compression_type=kNoCompression + level0_slowdown_writes_trigger=20 + hard_pending_compaction_bytes_limit=274877906944 + target_file_size_multiplier=1 + bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_file_checks=false + blob_garbage_collection_force_threshold=1.000000 + enable_blob_files=false + soft_pending_compaction_bytes_limit=68719476736 + target_file_size_base=67108864 + max_compaction_bytes=1677721600 + disable_auto_compactions=false + min_blob_size=0 + memtable_whole_key_filtering=false + max_bytes_for_level_base=268435456 + last_level_temperature=kUnknown + preserve_internal_time_seconds=0 + compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} + max_bytes_for_level_multiplier=10.000000 + max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 + max_sequential_skip_in_iterations=8 + compression=kLZ4Compression + default_write_temperature=kUnknown + compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} + blob_garbage_collection_age_cutoff=0.250000 + ttl=2592000 + periodic_compaction_seconds=0 + preclude_last_level_data_seconds=0 + blob_file_size=268435456 + enable_blob_garbage_collection=false + persist_user_defined_timestamps=true + compaction_pri=kMinOverlappingRatio + compaction_filter_factory=nullptr + comparator=leveldb.BytewiseComparator + bloom_locality=0 + merge_operator=nullptr + compaction_filter=nullptr + level_compaction_dynamic_level_bytes=true + optimize_filters_for_hits=false + inplace_update_support=false + max_write_buffer_number_to_maintain=0 + max_write_buffer_size_to_maintain=0 + sst_partitioner_factory=nullptr + default_temperature=kUnknown + compaction_style=kCompactionStyleLevel + min_write_buffer_number_to_merge=1 + memtable_factory=SkipListFactory + memtable_insert_with_hint_prefix_extractor=nullptr + force_consistency_checks=true + num_levels=7 + +[TableOptions/BlockBasedTable "default"] + num_file_reads_for_auto_readahead=2 + initial_auto_readahead_size=8192 + metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} + enable_index_compression=true + verify_compression=false + prepopulate_block_cache=kDisable + format_version=6 + use_delta_encoding=true + pin_top_level_index_and_filter=true + read_amp_bytes_per_bit=0 + decouple_partitioned_filters=false + partition_filters=false + metadata_block_size=4096 + max_auto_readahead_size=262144 + index_block_restart_interval=1 + block_size_deviation=10 + block_size=4096 + detect_filter_construct_corruption=false + no_block_cache=false + checksum=kXXH3 + filter_policy=nullptr + data_block_hash_table_util_ratio=0.750000 + block_restart_interval=16 + index_type=kBinarySearch + pin_l0_filter_and_index_blocks_in_cache=false + data_block_index_type=kDataBlockBinarySearch + cache_index_and_filter_blocks_with_high_priority=true + whole_key_filtering=true + index_shortening=kShortenSeparators + cache_index_and_filter_blocks=false + block_align=false + optimize_filters_for_memory=true + flush_block_policy_factory=FlushBlockBySizePolicyFactory + diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/payload_index/config.json b/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/payload_index/config.json new file mode 100644 index 0000000000000000000000000000000000000000..7d0db25a817fdb0c73414e2809921889f6ff065f --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/payload_index/config.json @@ -0,0 +1 @@ +{"indexed_fields":{},"skip_rocksdb":null} \ No newline at end of file diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/payload_storage/bitmask.dat b/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/payload_storage/bitmask.dat new file mode 100644 index 0000000000000000000000000000000000000000..92c825d0a9ed9381e64f332b01a389d1dad66291 Binary files /dev/null and b/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/payload_storage/bitmask.dat differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/payload_storage/config.json b/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/payload_storage/config.json new file mode 100644 index 0000000000000000000000000000000000000000..9477c128b4ebf57927ba47096ca8af9166799c4f --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/payload_storage/config.json @@ -0,0 +1 @@ +{"page_size_bytes":33554432,"block_size_bytes":128,"region_size_blocks":8192,"compression":"LZ4"} \ No newline at end of file diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/payload_storage/gaps.dat b/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/payload_storage/gaps.dat new file mode 100644 index 0000000000000000000000000000000000000000..14fd3b70f561e860dfadd9db6795008692ecb51f Binary files /dev/null and b/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/payload_storage/gaps.dat differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/payload_storage/page_0.dat b/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/payload_storage/page_0.dat new file mode 100644 index 0000000000000000000000000000000000000000..208cbef074dc933a5bc85caad243e5d2f016e4f1 Binary files /dev/null and b/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/payload_storage/page_0.dat differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/payload_storage/tracker.dat b/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/payload_storage/tracker.dat new file mode 100644 index 0000000000000000000000000000000000000000..883ee7088a3acac3f392e572852437f16a7a1c3e Binary files /dev/null and b/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/payload_storage/tracker.dat differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/segment.json b/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/segment.json new file mode 100644 index 0000000000000000000000000000000000000000..8f4ce25d4633d821b27ce822b0797d28d7160414 --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/segment.json @@ -0,0 +1 @@ +{"version":10,"config":{"vector_data":{"":{"size":1536,"distance":"Cosine","storage_type":"InRamChunkedMmap","index":{"type":"plain","options":{}},"quantization_config":null}},"payload_storage_type":{"type":"mmap"}}} \ No newline at end of file diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/vector_storage/deleted/flags_a.dat b/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/vector_storage/deleted/flags_a.dat new file mode 100644 index 0000000000000000000000000000000000000000..9e0f96a2a253b173cb45b41868209a5d043e1437 Binary files /dev/null and b/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/vector_storage/deleted/flags_a.dat differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/vector_storage/deleted/status.dat b/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/vector_storage/deleted/status.dat new file mode 100644 index 0000000000000000000000000000000000000000..2ae625c2a69481b83a6bb2f17119e6a4bbed4638 Binary files /dev/null and b/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/vector_storage/deleted/status.dat differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/vector_storage/vectors/chunk_0.mmap b/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/vector_storage/vectors/chunk_0.mmap new file mode 100644 index 0000000000000000000000000000000000000000..4a72d3643f14d2eac02ba9a1df2a6af0cc82abc0 Binary files /dev/null and b/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/vector_storage/vectors/chunk_0.mmap differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/vector_storage/vectors/config.json b/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/vector_storage/vectors/config.json new file mode 100644 index 0000000000000000000000000000000000000000..ff57a41ff8c6af2be033c6652e21559c49b5a9fa --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/vector_storage/vectors/config.json @@ -0,0 +1 @@ +{"chunk_size_bytes":33552384,"chunk_size_vectors":5461,"dim":1536,"mlock":false,"populate":true} \ No newline at end of file diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/vector_storage/vectors/status.dat b/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/vector_storage/vectors/status.dat new file mode 100644 index 0000000000000000000000000000000000000000..71c2a58453e27ee89ad7d15b1a5f12433409fff4 Binary files /dev/null and b/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/vector_storage/vectors/status.dat differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/version.info b/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/version.info new file mode 100644 index 0000000000000000000000000000000000000000..09a3acfa138db01dc50a688796b2861638c369ec --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/c59adcfb-86d7-4f4b-b3da-50d6acad42ee/version.info @@ -0,0 +1 @@ +0.6.0 \ No newline at end of file diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/000017.sst b/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/000017.sst new file mode 100644 index 0000000000000000000000000000000000000000..81fc3ac124696a99e5ef89407d5025f9544b4754 Binary files /dev/null and b/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/000017.sst differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/000018.log b/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/000018.log new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/000019.sst b/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/000019.sst new file mode 100644 index 0000000000000000000000000000000000000000..b3560cd63826858bed6a7ede78433405f79e819e Binary files /dev/null and b/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/000019.sst differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/CURRENT b/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/CURRENT new file mode 100644 index 0000000000000000000000000000000000000000..625d147412870471b19d90716ccc20a7f207a5c3 --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/CURRENT @@ -0,0 +1 @@ +MANIFEST-000013 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/IDENTITY b/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/IDENTITY new file mode 100644 index 0000000000000000000000000000000000000000..d0f47e38fe1a365bb4ea6fb1ce30b6d55c29eb5f --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/IDENTITY @@ -0,0 +1 @@ +89511005-b25e-4543-a345-5dab56c8734a \ No newline at end of file diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/LOCK b/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/LOCK new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/LOG b/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/LOG new file mode 100644 index 0000000000000000000000000000000000000000..ecf69b017318c75b080870bca3e1eb0320e66d24 --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/LOG @@ -0,0 +1,787 @@ +2025/05/04-10:09:55.599909 39 RocksDB version: 9.9.3 +2025/05/04-10:09:55.600142 39 Compile date 2024-12-05 01:25:31 +2025/05/04-10:09:55.600143 39 DB SUMMARY +2025/05/04-10:09:55.600144 39 Host name (Env): c5f2a9d061bb +2025/05/04-10:09:55.600145 39 DB Session ID: CD0SHR3DDC5AMRBDXMDO +2025/05/04-10:09:55.601284 39 CURRENT file: CURRENT +2025/05/04-10:09:55.601287 39 IDENTITY file: IDENTITY +2025/05/04-10:09:55.601560 39 MANIFEST file: MANIFEST-000009 size: 497 Bytes +2025/05/04-10:09:55.601562 39 SST files in ./storage/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d dir, Total Num: 0, files: +2025/05/04-10:09:55.601563 39 Write Ahead Log file in ./storage/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d: 000008.log size: 0 ; +2025/05/04-10:09:55.601566 39 Options.error_if_exists: 0 +2025/05/04-10:09:55.601566 39 Options.create_if_missing: 1 +2025/05/04-10:09:55.601567 39 Options.paranoid_checks: 1 +2025/05/04-10:09:55.601568 39 Options.flush_verify_memtable_count: 1 +2025/05/04-10:09:55.601568 39 Options.compaction_verify_record_count: 1 +2025/05/04-10:09:55.601569 39 Options.track_and_verify_wals_in_manifest: 0 +2025/05/04-10:09:55.601570 39 Options.verify_sst_unique_id_in_manifest: 1 +2025/05/04-10:09:55.601570 39 Options.env: 0xffff86034000 +2025/05/04-10:09:55.601571 39 Options.fs: PosixFileSystem +2025/05/04-10:09:55.601572 39 Options.info_log: 0xffff844a1000 +2025/05/04-10:09:55.601572 39 Options.max_file_opening_threads: 16 +2025/05/04-10:09:55.601574 39 Options.statistics: (nil) +2025/05/04-10:09:55.601575 39 Options.use_fsync: 0 +2025/05/04-10:09:55.601575 39 Options.max_log_file_size: 1048576 +2025/05/04-10:09:55.601576 39 Options.max_manifest_file_size: 1073741824 +2025/05/04-10:09:55.601578 39 Options.log_file_time_to_roll: 0 +2025/05/04-10:09:55.601579 39 Options.keep_log_file_num: 1 +2025/05/04-10:09:55.601580 39 Options.recycle_log_file_num: 0 +2025/05/04-10:09:55.601581 39 Options.allow_fallocate: 1 +2025/05/04-10:09:55.601581 39 Options.allow_mmap_reads: 0 +2025/05/04-10:09:55.601582 39 Options.allow_mmap_writes: 0 +2025/05/04-10:09:55.601583 39 Options.use_direct_reads: 0 +2025/05/04-10:09:55.601583 39 Options.use_direct_io_for_flush_and_compaction: 0 +2025/05/04-10:09:55.601584 39 Options.create_missing_column_families: 1 +2025/05/04-10:09:55.601584 39 Options.db_log_dir: +2025/05/04-10:09:55.601585 39 Options.wal_dir: +2025/05/04-10:09:55.601585 39 Options.table_cache_numshardbits: 6 +2025/05/04-10:09:55.601586 39 Options.WAL_ttl_seconds: 0 +2025/05/04-10:09:55.601586 39 Options.WAL_size_limit_MB: 0 +2025/05/04-10:09:55.601587 39 Options.max_write_batch_group_size_bytes: 1048576 +2025/05/04-10:09:55.601588 39 Options.manifest_preallocation_size: 4194304 +2025/05/04-10:09:55.601588 39 Options.is_fd_close_on_exec: 1 +2025/05/04-10:09:55.601590 39 Options.advise_random_on_open: 1 +2025/05/04-10:09:55.601590 39 Options.db_write_buffer_size: 0 +2025/05/04-10:09:55.601591 39 Options.write_buffer_manager: 0xffff844090c0 +2025/05/04-10:09:55.601592 39 Options.random_access_max_buffer_size: 1048576 +2025/05/04-10:09:55.601592 39 Options.use_adaptive_mutex: 0 +2025/05/04-10:09:55.601593 39 Options.rate_limiter: (nil) +2025/05/04-10:09:55.601593 39 Options.sst_file_manager.rate_bytes_per_sec: 0 +2025/05/04-10:09:55.601594 39 Options.wal_recovery_mode: 0 +2025/05/04-10:09:55.601595 39 Options.enable_thread_tracking: 0 +2025/05/04-10:09:55.601595 39 Options.enable_pipelined_write: 0 +2025/05/04-10:09:55.601596 39 Options.unordered_write: 0 +2025/05/04-10:09:55.601597 39 Options.allow_concurrent_memtable_write: 1 +2025/05/04-10:09:55.601598 39 Options.enable_write_thread_adaptive_yield: 1 +2025/05/04-10:09:55.601598 39 Options.write_thread_max_yield_usec: 100 +2025/05/04-10:09:55.601599 39 Options.write_thread_slow_yield_usec: 3 +2025/05/04-10:09:55.601599 39 Options.row_cache: None +2025/05/04-10:09:55.601600 39 Options.wal_filter: None +2025/05/04-10:09:55.601601 39 Options.avoid_flush_during_recovery: 0 +2025/05/04-10:09:55.601602 39 Options.allow_ingest_behind: 0 +2025/05/04-10:09:55.601602 39 Options.two_write_queues: 0 +2025/05/04-10:09:55.601603 39 Options.manual_wal_flush: 0 +2025/05/04-10:09:55.601603 39 Options.wal_compression: 0 +2025/05/04-10:09:55.601604 39 Options.background_close_inactive_wals: 0 +2025/05/04-10:09:55.601604 39 Options.atomic_flush: 0 +2025/05/04-10:09:55.601605 39 Options.avoid_unnecessary_blocking_io: 0 +2025/05/04-10:09:55.601606 39 Options.prefix_seek_opt_in_only: 0 +2025/05/04-10:09:55.601607 39 Options.persist_stats_to_disk: 0 +2025/05/04-10:09:55.601608 39 Options.write_dbid_to_manifest: 1 +2025/05/04-10:09:55.601608 39 Options.write_identity_file: 1 +2025/05/04-10:09:55.601609 39 Options.log_readahead_size: 0 +2025/05/04-10:09:55.601610 39 Options.file_checksum_gen_factory: Unknown +2025/05/04-10:09:55.601610 39 Options.best_efforts_recovery: 0 +2025/05/04-10:09:55.601611 39 Options.max_bgerror_resume_count: 2147483647 +2025/05/04-10:09:55.601611 39 Options.bgerror_resume_retry_interval: 1000000 +2025/05/04-10:09:55.601612 39 Options.allow_data_in_errors: 0 +2025/05/04-10:09:55.601613 39 Options.db_host_id: __hostname__ +2025/05/04-10:09:55.601613 39 Options.enforce_single_del_contracts: true +2025/05/04-10:09:55.601614 39 Options.metadata_write_temperature: kUnknown +2025/05/04-10:09:55.601615 39 Options.wal_write_temperature: kUnknown +2025/05/04-10:09:55.601615 39 Options.max_background_jobs: 2 +2025/05/04-10:09:55.601616 39 Options.max_background_compactions: -1 +2025/05/04-10:09:55.601616 39 Options.max_subcompactions: 1 +2025/05/04-10:09:55.601617 39 Options.avoid_flush_during_shutdown: 0 +2025/05/04-10:09:55.601618 39 Options.writable_file_max_buffer_size: 1048576 +2025/05/04-10:09:55.601618 39 Options.delayed_write_rate : 16777216 +2025/05/04-10:09:55.601619 39 Options.max_total_wal_size: 0 +2025/05/04-10:09:55.601619 39 Options.delete_obsolete_files_period_micros: 180000000 +2025/05/04-10:09:55.601620 39 Options.stats_dump_period_sec: 600 +2025/05/04-10:09:55.601621 39 Options.stats_persist_period_sec: 600 +2025/05/04-10:09:55.601621 39 Options.stats_history_buffer_size: 1048576 +2025/05/04-10:09:55.601622 39 Options.max_open_files: 256 +2025/05/04-10:09:55.601622 39 Options.bytes_per_sync: 0 +2025/05/04-10:09:55.601623 39 Options.wal_bytes_per_sync: 0 +2025/05/04-10:09:55.601623 39 Options.strict_bytes_per_sync: 0 +2025/05/04-10:09:55.601624 39 Options.compaction_readahead_size: 2097152 +2025/05/04-10:09:55.601625 39 Options.max_background_flushes: -1 +2025/05/04-10:09:55.601625 39 Options.daily_offpeak_time_utc: +2025/05/04-10:09:55.601626 39 Compression algorithms supported: +2025/05/04-10:09:55.601627 39 kZSTD supported: 0 +2025/05/04-10:09:55.601627 39 kXpressCompression supported: 0 +2025/05/04-10:09:55.601628 39 kBZip2Compression supported: 0 +2025/05/04-10:09:55.601629 39 kZSTDNotFinalCompression supported: 0 +2025/05/04-10:09:55.601629 39 kLZ4Compression supported: 1 +2025/05/04-10:09:55.601630 39 kZlibCompression supported: 0 +2025/05/04-10:09:55.601631 39 kLZ4HCCompression supported: 1 +2025/05/04-10:09:55.601632 39 kSnappyCompression supported: 1 +2025/05/04-10:09:55.601633 39 Fast CRC32 supported: Not supported on x86 +2025/05/04-10:09:55.601635 39 DMutex implementation: pthread_mutex_t +2025/05/04-10:09:55.601636 39 Jemalloc supported: 0 +2025/05/04-10:09:55.606920 39 Options.comparator: leveldb.BytewiseComparator +2025/05/04-10:09:55.606922 39 Options.merge_operator: None +2025/05/04-10:09:55.606923 39 Options.compaction_filter: None +2025/05/04-10:09:55.606924 39 Options.compaction_filter_factory: None +2025/05/04-10:09:55.606924 39 Options.sst_partitioner_factory: None +2025/05/04-10:09:55.606925 39 Options.memtable_factory: SkipListFactory +2025/05/04-10:09:55.606926 39 Options.table_factory: BlockBasedTable +2025/05/04-10:09:55.606943 39 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff84400060) + cache_index_and_filter_blocks: 0 + cache_index_and_filter_blocks_with_high_priority: 1 + pin_l0_filter_and_index_blocks_in_cache: 0 + pin_top_level_index_and_filter: 1 + index_type: 0 + data_block_index_type: 0 + index_shortening: 1 + data_block_hash_table_util_ratio: 0.750000 + checksum: 4 + no_block_cache: 0 + block_cache: 0xffff84409010 + block_cache_name: LRUCache + block_cache_options: + capacity : 33554432 + num_shard_bits : 6 + strict_capacity_limit : 0 + memory_allocator : None + high_pri_pool_ratio: 0.500 + low_pri_pool_ratio: 0.000 + persistent_cache: (nil) + block_size: 4096 + block_size_deviation: 10 + block_restart_interval: 16 + index_block_restart_interval: 1 + metadata_block_size: 4096 + partition_filters: 0 + use_delta_encoding: 1 + filter_policy: nullptr + whole_key_filtering: 1 + verify_compression: 0 + read_amp_bytes_per_bit: 0 + format_version: 6 + enable_index_compression: 1 + block_align: 0 + max_auto_readahead_size: 262144 + prepopulate_block_cache: 0 + initial_auto_readahead_size: 8192 + num_file_reads_for_auto_readahead: 2 +2025/05/04-10:09:55.606947 39 Options.write_buffer_size: 10485760 +2025/05/04-10:09:55.606948 39 Options.max_write_buffer_number: 2 +2025/05/04-10:09:55.606949 39 Options.compression: LZ4 +2025/05/04-10:09:55.606950 39 Options.bottommost_compression: Disabled +2025/05/04-10:09:55.606951 39 Options.prefix_extractor: nullptr +2025/05/04-10:09:55.606951 39 Options.memtable_insert_with_hint_prefix_extractor: nullptr +2025/05/04-10:09:55.606952 39 Options.num_levels: 7 +2025/05/04-10:09:55.606952 39 Options.min_write_buffer_number_to_merge: 1 +2025/05/04-10:09:55.606953 39 Options.max_write_buffer_number_to_maintain: 0 +2025/05/04-10:09:55.606954 39 Options.max_write_buffer_size_to_maintain: 0 +2025/05/04-10:09:55.606955 39 Options.bottommost_compression_opts.window_bits: -14 +2025/05/04-10:09:55.606955 39 Options.bottommost_compression_opts.level: 32767 +2025/05/04-10:09:55.606956 39 Options.bottommost_compression_opts.strategy: 0 +2025/05/04-10:09:55.606957 39 Options.bottommost_compression_opts.max_dict_bytes: 0 +2025/05/04-10:09:55.606958 39 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 +2025/05/04-10:09:55.606958 39 Options.bottommost_compression_opts.parallel_threads: 1 +2025/05/04-10:09:55.606960 39 Options.bottommost_compression_opts.enabled: false +2025/05/04-10:09:55.606961 39 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 +2025/05/04-10:09:55.606962 39 Options.bottommost_compression_opts.use_zstd_dict_trainer: true +2025/05/04-10:09:55.606963 39 Options.compression_opts.window_bits: -14 +2025/05/04-10:09:55.606964 39 Options.compression_opts.level: 32767 +2025/05/04-10:09:55.606964 39 Options.compression_opts.strategy: 0 +2025/05/04-10:09:55.606965 39 Options.compression_opts.max_dict_bytes: 0 +2025/05/04-10:09:55.606966 39 Options.compression_opts.zstd_max_train_bytes: 0 +2025/05/04-10:09:55.606967 39 Options.compression_opts.use_zstd_dict_trainer: true +2025/05/04-10:09:55.606967 39 Options.compression_opts.parallel_threads: 1 +2025/05/04-10:09:55.606968 39 Options.compression_opts.enabled: false +2025/05/04-10:09:55.606969 39 Options.compression_opts.max_dict_buffer_bytes: 0 +2025/05/04-10:09:55.606969 39 Options.level0_file_num_compaction_trigger: 4 +2025/05/04-10:09:55.606970 39 Options.level0_slowdown_writes_trigger: 20 +2025/05/04-10:09:55.606971 39 Options.level0_stop_writes_trigger: 36 +2025/05/04-10:09:55.606971 39 Options.target_file_size_base: 67108864 +2025/05/04-10:09:55.606972 39 Options.target_file_size_multiplier: 1 +2025/05/04-10:09:55.606973 39 Options.max_bytes_for_level_base: 268435456 +2025/05/04-10:09:55.606973 39 Options.level_compaction_dynamic_level_bytes: 1 +2025/05/04-10:09:55.606975 39 Options.max_bytes_for_level_multiplier: 10.000000 +2025/05/04-10:09:55.606977 39 Options.max_bytes_for_level_multiplier_addtl[0]: 1 +2025/05/04-10:09:55.606978 39 Options.max_bytes_for_level_multiplier_addtl[1]: 1 +2025/05/04-10:09:55.606978 39 Options.max_bytes_for_level_multiplier_addtl[2]: 1 +2025/05/04-10:09:55.606979 39 Options.max_bytes_for_level_multiplier_addtl[3]: 1 +2025/05/04-10:09:55.606981 39 Options.max_bytes_for_level_multiplier_addtl[4]: 1 +2025/05/04-10:09:55.606982 39 Options.max_bytes_for_level_multiplier_addtl[5]: 1 +2025/05/04-10:09:55.606983 39 Options.max_bytes_for_level_multiplier_addtl[6]: 1 +2025/05/04-10:09:55.606984 39 Options.max_sequential_skip_in_iterations: 8 +2025/05/04-10:09:55.606984 39 Options.max_compaction_bytes: 1677721600 +2025/05/04-10:09:55.606985 39 Options.arena_block_size: 1048576 +2025/05/04-10:09:55.606986 39 Options.soft_pending_compaction_bytes_limit: 68719476736 +2025/05/04-10:09:55.606987 39 Options.hard_pending_compaction_bytes_limit: 274877906944 +2025/05/04-10:09:55.606987 39 Options.disable_auto_compactions: 0 +2025/05/04-10:09:55.606988 39 Options.compaction_style: kCompactionStyleLevel +2025/05/04-10:09:55.606989 39 Options.compaction_pri: kMinOverlappingRatio +2025/05/04-10:09:55.606990 39 Options.compaction_options_universal.size_ratio: 1 +2025/05/04-10:09:55.606990 39 Options.compaction_options_universal.min_merge_width: 2 +2025/05/04-10:09:55.606991 39 Options.compaction_options_universal.max_merge_width: 4294967295 +2025/05/04-10:09:55.606992 39 Options.compaction_options_universal.max_size_amplification_percent: 200 +2025/05/04-10:09:55.606993 39 Options.compaction_options_universal.compression_size_percent: -1 +2025/05/04-10:09:55.606993 39 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize +2025/05/04-10:09:55.606994 39 Options.compaction_options_universal.max_read_amp: -1 +2025/05/04-10:09:55.606995 39 Options.compaction_options_fifo.max_table_files_size: 1073741824 +2025/05/04-10:09:55.606995 39 Options.compaction_options_fifo.allow_compaction: 0 +2025/05/04-10:09:55.607001 39 Options.table_properties_collectors: +2025/05/04-10:09:55.607002 39 Options.inplace_update_support: 0 +2025/05/04-10:09:55.607003 39 Options.inplace_update_num_locks: 10000 +2025/05/04-10:09:55.607004 39 Options.memtable_prefix_bloom_size_ratio: 0.000000 +2025/05/04-10:09:55.607005 39 Options.memtable_whole_key_filtering: 0 +2025/05/04-10:09:55.607005 39 Options.memtable_huge_page_size: 0 +2025/05/04-10:09:55.607006 39 Options.bloom_locality: 0 +2025/05/04-10:09:55.607006 39 Options.max_successive_merges: 0 +2025/05/04-10:09:55.607007 39 Options.strict_max_successive_merges: 0 +2025/05/04-10:09:55.607008 39 Options.optimize_filters_for_hits: 0 +2025/05/04-10:09:55.607008 39 Options.paranoid_file_checks: 0 +2025/05/04-10:09:55.607009 39 Options.force_consistency_checks: 1 +2025/05/04-10:09:55.607101 39 Options.report_bg_io_stats: 0 +2025/05/04-10:09:55.607102 39 Options.ttl: 2592000 +2025/05/04-10:09:55.607103 39 Options.periodic_compaction_seconds: 0 +2025/05/04-10:09:55.607104 39 Options.default_temperature: kUnknown +2025/05/04-10:09:55.607104 39 Options.preclude_last_level_data_seconds: 0 +2025/05/04-10:09:55.607105 39 Options.preserve_internal_time_seconds: 0 +2025/05/04-10:09:55.607105 39 Options.enable_blob_files: false +2025/05/04-10:09:55.607106 39 Options.min_blob_size: 0 +2025/05/04-10:09:55.607107 39 Options.blob_file_size: 268435456 +2025/05/04-10:09:55.607108 39 Options.blob_compression_type: NoCompression +2025/05/04-10:09:55.607108 39 Options.enable_blob_garbage_collection: false +2025/05/04-10:09:55.607109 39 Options.blob_garbage_collection_age_cutoff: 0.250000 +2025/05/04-10:09:55.607110 39 Options.blob_garbage_collection_force_threshold: 1.000000 +2025/05/04-10:09:55.607111 39 Options.blob_compaction_readahead_size: 0 +2025/05/04-10:09:55.607112 39 Options.blob_file_starting_level: 0 +2025/05/04-10:09:55.607112 39 Options.experimental_mempurge_threshold: 0.000000 +2025/05/04-10:09:55.607113 39 Options.memtable_max_range_deletions: 0 +2025/05/04-10:09:55.607747 39 Options.comparator: leveldb.BytewiseComparator +2025/05/04-10:09:55.607748 39 Options.merge_operator: None +2025/05/04-10:09:55.607749 39 Options.compaction_filter: None +2025/05/04-10:09:55.607749 39 Options.compaction_filter_factory: None +2025/05/04-10:09:55.607750 39 Options.sst_partitioner_factory: None +2025/05/04-10:09:55.607750 39 Options.memtable_factory: SkipListFactory +2025/05/04-10:09:55.607751 39 Options.table_factory: BlockBasedTable +2025/05/04-10:09:55.607761 39 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff84400060) + cache_index_and_filter_blocks: 0 + cache_index_and_filter_blocks_with_high_priority: 1 + pin_l0_filter_and_index_blocks_in_cache: 0 + pin_top_level_index_and_filter: 1 + index_type: 0 + data_block_index_type: 0 + index_shortening: 1 + data_block_hash_table_util_ratio: 0.750000 + checksum: 4 + no_block_cache: 0 + block_cache: 0xffff84409010 + block_cache_name: LRUCache + block_cache_options: + capacity : 33554432 + num_shard_bits : 6 + strict_capacity_limit : 0 + memory_allocator : None + high_pri_pool_ratio: 0.500 + low_pri_pool_ratio: 0.000 + persistent_cache: (nil) + block_size: 4096 + block_size_deviation: 10 + block_restart_interval: 16 + index_block_restart_interval: 1 + metadata_block_size: 4096 + partition_filters: 0 + use_delta_encoding: 1 + filter_policy: nullptr + whole_key_filtering: 1 + verify_compression: 0 + read_amp_bytes_per_bit: 0 + format_version: 6 + enable_index_compression: 1 + block_align: 0 + max_auto_readahead_size: 262144 + prepopulate_block_cache: 0 + initial_auto_readahead_size: 8192 + num_file_reads_for_auto_readahead: 2 +2025/05/04-10:09:55.607762 39 Options.write_buffer_size: 10485760 +2025/05/04-10:09:55.607763 39 Options.max_write_buffer_number: 2 +2025/05/04-10:09:55.607764 39 Options.compression: LZ4 +2025/05/04-10:09:55.607764 39 Options.bottommost_compression: Disabled +2025/05/04-10:09:55.607765 39 Options.prefix_extractor: nullptr +2025/05/04-10:09:55.607765 39 Options.memtable_insert_with_hint_prefix_extractor: nullptr +2025/05/04-10:09:55.607766 39 Options.num_levels: 7 +2025/05/04-10:09:55.607766 39 Options.min_write_buffer_number_to_merge: 1 +2025/05/04-10:09:55.607767 39 Options.max_write_buffer_number_to_maintain: 0 +2025/05/04-10:09:55.607767 39 Options.max_write_buffer_size_to_maintain: 0 +2025/05/04-10:09:55.607768 39 Options.bottommost_compression_opts.window_bits: -14 +2025/05/04-10:09:55.607768 39 Options.bottommost_compression_opts.level: 32767 +2025/05/04-10:09:55.607769 39 Options.bottommost_compression_opts.strategy: 0 +2025/05/04-10:09:55.607770 39 Options.bottommost_compression_opts.max_dict_bytes: 0 +2025/05/04-10:09:55.607770 39 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 +2025/05/04-10:09:55.607771 39 Options.bottommost_compression_opts.parallel_threads: 1 +2025/05/04-10:09:55.607771 39 Options.bottommost_compression_opts.enabled: false +2025/05/04-10:09:55.607772 39 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 +2025/05/04-10:09:55.607773 39 Options.bottommost_compression_opts.use_zstd_dict_trainer: true +2025/05/04-10:09:55.607773 39 Options.compression_opts.window_bits: -14 +2025/05/04-10:09:55.607774 39 Options.compression_opts.level: 32767 +2025/05/04-10:09:55.607774 39 Options.compression_opts.strategy: 0 +2025/05/04-10:09:55.607775 39 Options.compression_opts.max_dict_bytes: 0 +2025/05/04-10:09:55.607775 39 Options.compression_opts.zstd_max_train_bytes: 0 +2025/05/04-10:09:55.607776 39 Options.compression_opts.use_zstd_dict_trainer: true +2025/05/04-10:09:55.607778 39 Options.compression_opts.parallel_threads: 1 +2025/05/04-10:09:55.607779 39 Options.compression_opts.enabled: false +2025/05/04-10:09:55.607780 39 Options.compression_opts.max_dict_buffer_bytes: 0 +2025/05/04-10:09:55.607781 39 Options.level0_file_num_compaction_trigger: 4 +2025/05/04-10:09:55.607781 39 Options.level0_slowdown_writes_trigger: 20 +2025/05/04-10:09:55.607782 39 Options.level0_stop_writes_trigger: 36 +2025/05/04-10:09:55.607782 39 Options.target_file_size_base: 67108864 +2025/05/04-10:09:55.607783 39 Options.target_file_size_multiplier: 1 +2025/05/04-10:09:55.607784 39 Options.max_bytes_for_level_base: 268435456 +2025/05/04-10:09:55.607784 39 Options.level_compaction_dynamic_level_bytes: 1 +2025/05/04-10:09:55.607785 39 Options.max_bytes_for_level_multiplier: 10.000000 +2025/05/04-10:09:55.607786 39 Options.max_bytes_for_level_multiplier_addtl[0]: 1 +2025/05/04-10:09:55.607786 39 Options.max_bytes_for_level_multiplier_addtl[1]: 1 +2025/05/04-10:09:55.607787 39 Options.max_bytes_for_level_multiplier_addtl[2]: 1 +2025/05/04-10:09:55.607787 39 Options.max_bytes_for_level_multiplier_addtl[3]: 1 +2025/05/04-10:09:55.607788 39 Options.max_bytes_for_level_multiplier_addtl[4]: 1 +2025/05/04-10:09:55.607789 39 Options.max_bytes_for_level_multiplier_addtl[5]: 1 +2025/05/04-10:09:55.607789 39 Options.max_bytes_for_level_multiplier_addtl[6]: 1 +2025/05/04-10:09:55.607790 39 Options.max_sequential_skip_in_iterations: 8 +2025/05/04-10:09:55.607791 39 Options.max_compaction_bytes: 1677721600 +2025/05/04-10:09:55.607791 39 Options.arena_block_size: 1048576 +2025/05/04-10:09:55.607792 39 Options.soft_pending_compaction_bytes_limit: 68719476736 +2025/05/04-10:09:55.607792 39 Options.hard_pending_compaction_bytes_limit: 274877906944 +2025/05/04-10:09:55.607793 39 Options.disable_auto_compactions: 0 +2025/05/04-10:09:55.607793 39 Options.compaction_style: kCompactionStyleLevel +2025/05/04-10:09:55.607794 39 Options.compaction_pri: kMinOverlappingRatio +2025/05/04-10:09:55.607795 39 Options.compaction_options_universal.size_ratio: 1 +2025/05/04-10:09:55.607795 39 Options.compaction_options_universal.min_merge_width: 2 +2025/05/04-10:09:55.607796 39 Options.compaction_options_universal.max_merge_width: 4294967295 +2025/05/04-10:09:55.607796 39 Options.compaction_options_universal.max_size_amplification_percent: 200 +2025/05/04-10:09:55.607797 39 Options.compaction_options_universal.compression_size_percent: -1 +2025/05/04-10:09:55.607798 39 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize +2025/05/04-10:09:55.607798 39 Options.compaction_options_universal.max_read_amp: -1 +2025/05/04-10:09:55.607799 39 Options.compaction_options_fifo.max_table_files_size: 1073741824 +2025/05/04-10:09:55.607799 39 Options.compaction_options_fifo.allow_compaction: 0 +2025/05/04-10:09:55.607801 39 Options.table_properties_collectors: +2025/05/04-10:09:55.607802 39 Options.inplace_update_support: 0 +2025/05/04-10:09:55.607803 39 Options.inplace_update_num_locks: 10000 +2025/05/04-10:09:55.607803 39 Options.memtable_prefix_bloom_size_ratio: 0.000000 +2025/05/04-10:09:55.607804 39 Options.memtable_whole_key_filtering: 0 +2025/05/04-10:09:55.607804 39 Options.memtable_huge_page_size: 0 +2025/05/04-10:09:55.607805 39 Options.bloom_locality: 0 +2025/05/04-10:09:55.607806 39 Options.max_successive_merges: 0 +2025/05/04-10:09:55.607806 39 Options.strict_max_successive_merges: 0 +2025/05/04-10:09:55.607807 39 Options.optimize_filters_for_hits: 0 +2025/05/04-10:09:55.607807 39 Options.paranoid_file_checks: 0 +2025/05/04-10:09:55.607808 39 Options.force_consistency_checks: 1 +2025/05/04-10:09:55.607808 39 Options.report_bg_io_stats: 0 +2025/05/04-10:09:55.607809 39 Options.ttl: 2592000 +2025/05/04-10:09:55.607810 39 Options.periodic_compaction_seconds: 0 +2025/05/04-10:09:55.607819 39 Options.default_temperature: kUnknown +2025/05/04-10:09:55.607820 39 Options.preclude_last_level_data_seconds: 0 +2025/05/04-10:09:55.607821 39 Options.preserve_internal_time_seconds: 0 +2025/05/04-10:09:55.607821 39 Options.enable_blob_files: false +2025/05/04-10:09:55.607822 39 Options.min_blob_size: 0 +2025/05/04-10:09:55.607822 39 Options.blob_file_size: 268435456 +2025/05/04-10:09:55.607823 39 Options.blob_compression_type: NoCompression +2025/05/04-10:09:55.607824 39 Options.enable_blob_garbage_collection: false +2025/05/04-10:09:55.607824 39 Options.blob_garbage_collection_age_cutoff: 0.250000 +2025/05/04-10:09:55.607825 39 Options.blob_garbage_collection_force_threshold: 1.000000 +2025/05/04-10:09:55.607826 39 Options.blob_compaction_readahead_size: 0 +2025/05/04-10:09:55.607826 39 Options.blob_file_starting_level: 0 +2025/05/04-10:09:55.607827 39 Options.experimental_mempurge_threshold: 0.000000 +2025/05/04-10:09:55.607828 39 Options.memtable_max_range_deletions: 0 +2025/05/04-10:09:55.607855 39 Options.comparator: leveldb.BytewiseComparator +2025/05/04-10:09:55.607857 39 Options.merge_operator: None +2025/05/04-10:09:55.607857 39 Options.compaction_filter: None +2025/05/04-10:09:55.607858 39 Options.compaction_filter_factory: None +2025/05/04-10:09:55.607858 39 Options.sst_partitioner_factory: None +2025/05/04-10:09:55.607859 39 Options.memtable_factory: SkipListFactory +2025/05/04-10:09:55.607867 39 Options.table_factory: BlockBasedTable +2025/05/04-10:09:55.607873 39 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff84400060) + cache_index_and_filter_blocks: 0 + cache_index_and_filter_blocks_with_high_priority: 1 + pin_l0_filter_and_index_blocks_in_cache: 0 + pin_top_level_index_and_filter: 1 + index_type: 0 + data_block_index_type: 0 + index_shortening: 1 + data_block_hash_table_util_ratio: 0.750000 + checksum: 4 + no_block_cache: 0 + block_cache: 0xffff84409010 + block_cache_name: LRUCache + block_cache_options: + capacity : 33554432 + num_shard_bits : 6 + strict_capacity_limit : 0 + memory_allocator : None + high_pri_pool_ratio: 0.500 + low_pri_pool_ratio: 0.000 + persistent_cache: (nil) + block_size: 4096 + block_size_deviation: 10 + block_restart_interval: 16 + index_block_restart_interval: 1 + metadata_block_size: 4096 + partition_filters: 0 + use_delta_encoding: 1 + filter_policy: nullptr + whole_key_filtering: 1 + verify_compression: 0 + read_amp_bytes_per_bit: 0 + format_version: 6 + enable_index_compression: 1 + block_align: 0 + max_auto_readahead_size: 262144 + prepopulate_block_cache: 0 + initial_auto_readahead_size: 8192 + num_file_reads_for_auto_readahead: 2 +2025/05/04-10:09:55.607874 39 Options.write_buffer_size: 10485760 +2025/05/04-10:09:55.607875 39 Options.max_write_buffer_number: 2 +2025/05/04-10:09:55.607875 39 Options.compression: LZ4 +2025/05/04-10:09:55.607876 39 Options.bottommost_compression: Disabled +2025/05/04-10:09:55.607877 39 Options.prefix_extractor: nullptr +2025/05/04-10:09:55.607878 39 Options.memtable_insert_with_hint_prefix_extractor: nullptr +2025/05/04-10:09:55.607878 39 Options.num_levels: 7 +2025/05/04-10:09:55.607879 39 Options.min_write_buffer_number_to_merge: 1 +2025/05/04-10:09:55.607880 39 Options.max_write_buffer_number_to_maintain: 0 +2025/05/04-10:09:55.607880 39 Options.max_write_buffer_size_to_maintain: 0 +2025/05/04-10:09:55.607881 39 Options.bottommost_compression_opts.window_bits: -14 +2025/05/04-10:09:55.607882 39 Options.bottommost_compression_opts.level: 32767 +2025/05/04-10:09:55.607882 39 Options.bottommost_compression_opts.strategy: 0 +2025/05/04-10:09:55.607883 39 Options.bottommost_compression_opts.max_dict_bytes: 0 +2025/05/04-10:09:55.607883 39 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 +2025/05/04-10:09:55.607884 39 Options.bottommost_compression_opts.parallel_threads: 1 +2025/05/04-10:09:55.607884 39 Options.bottommost_compression_opts.enabled: false +2025/05/04-10:09:55.607885 39 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 +2025/05/04-10:09:55.607885 39 Options.bottommost_compression_opts.use_zstd_dict_trainer: true +2025/05/04-10:09:55.607886 39 Options.compression_opts.window_bits: -14 +2025/05/04-10:09:55.607886 39 Options.compression_opts.level: 32767 +2025/05/04-10:09:55.607887 39 Options.compression_opts.strategy: 0 +2025/05/04-10:09:55.607888 39 Options.compression_opts.max_dict_bytes: 0 +2025/05/04-10:09:55.607888 39 Options.compression_opts.zstd_max_train_bytes: 0 +2025/05/04-10:09:55.607889 39 Options.compression_opts.use_zstd_dict_trainer: true +2025/05/04-10:09:55.607889 39 Options.compression_opts.parallel_threads: 1 +2025/05/04-10:09:55.607890 39 Options.compression_opts.enabled: false +2025/05/04-10:09:55.607890 39 Options.compression_opts.max_dict_buffer_bytes: 0 +2025/05/04-10:09:55.607891 39 Options.level0_file_num_compaction_trigger: 4 +2025/05/04-10:09:55.607891 39 Options.level0_slowdown_writes_trigger: 20 +2025/05/04-10:09:55.607892 39 Options.level0_stop_writes_trigger: 36 +2025/05/04-10:09:55.607892 39 Options.target_file_size_base: 67108864 +2025/05/04-10:09:55.607893 39 Options.target_file_size_multiplier: 1 +2025/05/04-10:09:55.607893 39 Options.max_bytes_for_level_base: 268435456 +2025/05/04-10:09:55.607894 39 Options.level_compaction_dynamic_level_bytes: 1 +2025/05/04-10:09:55.607895 39 Options.max_bytes_for_level_multiplier: 10.000000 +2025/05/04-10:09:55.607895 39 Options.max_bytes_for_level_multiplier_addtl[0]: 1 +2025/05/04-10:09:55.607896 39 Options.max_bytes_for_level_multiplier_addtl[1]: 1 +2025/05/04-10:09:55.607896 39 Options.max_bytes_for_level_multiplier_addtl[2]: 1 +2025/05/04-10:09:55.607897 39 Options.max_bytes_for_level_multiplier_addtl[3]: 1 +2025/05/04-10:09:55.607897 39 Options.max_bytes_for_level_multiplier_addtl[4]: 1 +2025/05/04-10:09:55.607898 39 Options.max_bytes_for_level_multiplier_addtl[5]: 1 +2025/05/04-10:09:55.607900 39 Options.max_bytes_for_level_multiplier_addtl[6]: 1 +2025/05/04-10:09:55.607901 39 Options.max_sequential_skip_in_iterations: 8 +2025/05/04-10:09:55.607901 39 Options.max_compaction_bytes: 1677721600 +2025/05/04-10:09:55.607902 39 Options.arena_block_size: 1048576 +2025/05/04-10:09:55.607903 39 Options.soft_pending_compaction_bytes_limit: 68719476736 +2025/05/04-10:09:55.607903 39 Options.hard_pending_compaction_bytes_limit: 274877906944 +2025/05/04-10:09:55.607904 39 Options.disable_auto_compactions: 0 +2025/05/04-10:09:55.607904 39 Options.compaction_style: kCompactionStyleLevel +2025/05/04-10:09:55.607905 39 Options.compaction_pri: kMinOverlappingRatio +2025/05/04-10:09:55.607905 39 Options.compaction_options_universal.size_ratio: 1 +2025/05/04-10:09:55.607906 39 Options.compaction_options_universal.min_merge_width: 2 +2025/05/04-10:09:55.607906 39 Options.compaction_options_universal.max_merge_width: 4294967295 +2025/05/04-10:09:55.607907 39 Options.compaction_options_universal.max_size_amplification_percent: 200 +2025/05/04-10:09:55.607908 39 Options.compaction_options_universal.compression_size_percent: -1 +2025/05/04-10:09:55.607908 39 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize +2025/05/04-10:09:55.607909 39 Options.compaction_options_universal.max_read_amp: -1 +2025/05/04-10:09:55.607909 39 Options.compaction_options_fifo.max_table_files_size: 1073741824 +2025/05/04-10:09:55.607910 39 Options.compaction_options_fifo.allow_compaction: 0 +2025/05/04-10:09:55.607911 39 Options.table_properties_collectors: +2025/05/04-10:09:55.607912 39 Options.inplace_update_support: 0 +2025/05/04-10:09:55.607912 39 Options.inplace_update_num_locks: 10000 +2025/05/04-10:09:55.607913 39 Options.memtable_prefix_bloom_size_ratio: 0.000000 +2025/05/04-10:09:55.607914 39 Options.memtable_whole_key_filtering: 0 +2025/05/04-10:09:55.607914 39 Options.memtable_huge_page_size: 0 +2025/05/04-10:09:55.607915 39 Options.bloom_locality: 0 +2025/05/04-10:09:55.607915 39 Options.max_successive_merges: 0 +2025/05/04-10:09:55.607916 39 Options.strict_max_successive_merges: 0 +2025/05/04-10:09:55.607916 39 Options.optimize_filters_for_hits: 0 +2025/05/04-10:09:55.607918 39 Options.paranoid_file_checks: 0 +2025/05/04-10:09:55.607919 39 Options.force_consistency_checks: 1 +2025/05/04-10:09:55.607920 39 Options.report_bg_io_stats: 0 +2025/05/04-10:09:55.607920 39 Options.ttl: 2592000 +2025/05/04-10:09:55.607921 39 Options.periodic_compaction_seconds: 0 +2025/05/04-10:09:55.607921 39 Options.default_temperature: kUnknown +2025/05/04-10:09:55.607922 39 Options.preclude_last_level_data_seconds: 0 +2025/05/04-10:09:55.607923 39 Options.preserve_internal_time_seconds: 0 +2025/05/04-10:09:55.607923 39 Options.enable_blob_files: false +2025/05/04-10:09:55.607924 39 Options.min_blob_size: 0 +2025/05/04-10:09:55.607924 39 Options.blob_file_size: 268435456 +2025/05/04-10:09:55.607925 39 Options.blob_compression_type: NoCompression +2025/05/04-10:09:55.607925 39 Options.enable_blob_garbage_collection: false +2025/05/04-10:09:55.607928 39 Options.blob_garbage_collection_age_cutoff: 0.250000 +2025/05/04-10:09:55.607929 39 Options.blob_garbage_collection_force_threshold: 1.000000 +2025/05/04-10:09:55.607930 39 Options.blob_compaction_readahead_size: 0 +2025/05/04-10:09:55.607930 39 Options.blob_file_starting_level: 0 +2025/05/04-10:09:55.607931 39 Options.experimental_mempurge_threshold: 0.000000 +2025/05/04-10:09:55.607931 39 Options.memtable_max_range_deletions: 0 +2025/05/04-10:09:55.607948 39 Options.comparator: leveldb.BytewiseComparator +2025/05/04-10:09:55.607950 39 Options.merge_operator: None +2025/05/04-10:09:55.607952 39 Options.compaction_filter: None +2025/05/04-10:09:55.607953 39 Options.compaction_filter_factory: None +2025/05/04-10:09:55.607954 39 Options.sst_partitioner_factory: None +2025/05/04-10:09:55.607954 39 Options.memtable_factory: SkipListFactory +2025/05/04-10:09:55.607955 39 Options.table_factory: BlockBasedTable +2025/05/04-10:09:55.607961 39 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff84400060) + cache_index_and_filter_blocks: 0 + cache_index_and_filter_blocks_with_high_priority: 1 + pin_l0_filter_and_index_blocks_in_cache: 0 + pin_top_level_index_and_filter: 1 + index_type: 0 + data_block_index_type: 0 + index_shortening: 1 + data_block_hash_table_util_ratio: 0.750000 + checksum: 4 + no_block_cache: 0 + block_cache: 0xffff84409010 + block_cache_name: LRUCache + block_cache_options: + capacity : 33554432 + num_shard_bits : 6 + strict_capacity_limit : 0 + memory_allocator : None + high_pri_pool_ratio: 0.500 + low_pri_pool_ratio: 0.000 + persistent_cache: (nil) + block_size: 4096 + block_size_deviation: 10 + block_restart_interval: 16 + index_block_restart_interval: 1 + metadata_block_size: 4096 + partition_filters: 0 + use_delta_encoding: 1 + filter_policy: nullptr + whole_key_filtering: 1 + verify_compression: 0 + read_amp_bytes_per_bit: 0 + format_version: 6 + enable_index_compression: 1 + block_align: 0 + max_auto_readahead_size: 262144 + prepopulate_block_cache: 0 + initial_auto_readahead_size: 8192 + num_file_reads_for_auto_readahead: 2 +2025/05/04-10:09:55.607962 39 Options.write_buffer_size: 10485760 +2025/05/04-10:09:55.607962 39 Options.max_write_buffer_number: 2 +2025/05/04-10:09:55.607963 39 Options.compression: LZ4 +2025/05/04-10:09:55.607963 39 Options.bottommost_compression: Disabled +2025/05/04-10:09:55.607964 39 Options.prefix_extractor: nullptr +2025/05/04-10:09:55.607965 39 Options.memtable_insert_with_hint_prefix_extractor: nullptr +2025/05/04-10:09:55.607965 39 Options.num_levels: 7 +2025/05/04-10:09:55.607966 39 Options.min_write_buffer_number_to_merge: 1 +2025/05/04-10:09:55.607966 39 Options.max_write_buffer_number_to_maintain: 0 +2025/05/04-10:09:55.607967 39 Options.max_write_buffer_size_to_maintain: 0 +2025/05/04-10:09:55.607967 39 Options.bottommost_compression_opts.window_bits: -14 +2025/05/04-10:09:55.607968 39 Options.bottommost_compression_opts.level: 32767 +2025/05/04-10:09:55.607968 39 Options.bottommost_compression_opts.strategy: 0 +2025/05/04-10:09:55.607969 39 Options.bottommost_compression_opts.max_dict_bytes: 0 +2025/05/04-10:09:55.607969 39 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 +2025/05/04-10:09:55.607970 39 Options.bottommost_compression_opts.parallel_threads: 1 +2025/05/04-10:09:55.607971 39 Options.bottommost_compression_opts.enabled: false +2025/05/04-10:09:55.607971 39 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 +2025/05/04-10:09:55.607972 39 Options.bottommost_compression_opts.use_zstd_dict_trainer: true +2025/05/04-10:09:55.607972 39 Options.compression_opts.window_bits: -14 +2025/05/04-10:09:55.607973 39 Options.compression_opts.level: 32767 +2025/05/04-10:09:55.607973 39 Options.compression_opts.strategy: 0 +2025/05/04-10:09:55.607974 39 Options.compression_opts.max_dict_bytes: 0 +2025/05/04-10:09:55.607975 39 Options.compression_opts.zstd_max_train_bytes: 0 +2025/05/04-10:09:55.607975 39 Options.compression_opts.use_zstd_dict_trainer: true +2025/05/04-10:09:55.607976 39 Options.compression_opts.parallel_threads: 1 +2025/05/04-10:09:55.607976 39 Options.compression_opts.enabled: false +2025/05/04-10:09:55.607977 39 Options.compression_opts.max_dict_buffer_bytes: 0 +2025/05/04-10:09:55.607977 39 Options.level0_file_num_compaction_trigger: 4 +2025/05/04-10:09:55.607978 39 Options.level0_slowdown_writes_trigger: 20 +2025/05/04-10:09:55.607978 39 Options.level0_stop_writes_trigger: 36 +2025/05/04-10:09:55.607979 39 Options.target_file_size_base: 67108864 +2025/05/04-10:09:55.607980 39 Options.target_file_size_multiplier: 1 +2025/05/04-10:09:55.607980 39 Options.max_bytes_for_level_base: 268435456 +2025/05/04-10:09:55.607981 39 Options.level_compaction_dynamic_level_bytes: 1 +2025/05/04-10:09:55.607981 39 Options.max_bytes_for_level_multiplier: 10.000000 +2025/05/04-10:09:55.607982 39 Options.max_bytes_for_level_multiplier_addtl[0]: 1 +2025/05/04-10:09:55.607983 39 Options.max_bytes_for_level_multiplier_addtl[1]: 1 +2025/05/04-10:09:55.607983 39 Options.max_bytes_for_level_multiplier_addtl[2]: 1 +2025/05/04-10:09:55.607984 39 Options.max_bytes_for_level_multiplier_addtl[3]: 1 +2025/05/04-10:09:55.607984 39 Options.max_bytes_for_level_multiplier_addtl[4]: 1 +2025/05/04-10:09:55.607985 39 Options.max_bytes_for_level_multiplier_addtl[5]: 1 +2025/05/04-10:09:55.607987 39 Options.max_bytes_for_level_multiplier_addtl[6]: 1 +2025/05/04-10:09:55.607988 39 Options.max_sequential_skip_in_iterations: 8 +2025/05/04-10:09:55.607989 39 Options.max_compaction_bytes: 1677721600 +2025/05/04-10:09:55.607989 39 Options.arena_block_size: 1048576 +2025/05/04-10:09:55.607990 39 Options.soft_pending_compaction_bytes_limit: 68719476736 +2025/05/04-10:09:55.607990 39 Options.hard_pending_compaction_bytes_limit: 274877906944 +2025/05/04-10:09:55.607991 39 Options.disable_auto_compactions: 0 +2025/05/04-10:09:55.607991 39 Options.compaction_style: kCompactionStyleLevel +2025/05/04-10:09:55.607992 39 Options.compaction_pri: kMinOverlappingRatio +2025/05/04-10:09:55.607993 39 Options.compaction_options_universal.size_ratio: 1 +2025/05/04-10:09:55.607993 39 Options.compaction_options_universal.min_merge_width: 2 +2025/05/04-10:09:55.607994 39 Options.compaction_options_universal.max_merge_width: 4294967295 +2025/05/04-10:09:55.607994 39 Options.compaction_options_universal.max_size_amplification_percent: 200 +2025/05/04-10:09:55.607995 39 Options.compaction_options_universal.compression_size_percent: -1 +2025/05/04-10:09:55.607995 39 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize +2025/05/04-10:09:55.607996 39 Options.compaction_options_universal.max_read_amp: -1 +2025/05/04-10:09:55.607997 39 Options.compaction_options_fifo.max_table_files_size: 1073741824 +2025/05/04-10:09:55.607997 39 Options.compaction_options_fifo.allow_compaction: 0 +2025/05/04-10:09:55.607998 39 Options.table_properties_collectors: +2025/05/04-10:09:55.607999 39 Options.inplace_update_support: 0 +2025/05/04-10:09:55.607999 39 Options.inplace_update_num_locks: 10000 +2025/05/04-10:09:55.608000 39 Options.memtable_prefix_bloom_size_ratio: 0.000000 +2025/05/04-10:09:55.608000 39 Options.memtable_whole_key_filtering: 0 +2025/05/04-10:09:55.608001 39 Options.memtable_huge_page_size: 0 +2025/05/04-10:09:55.608001 39 Options.bloom_locality: 0 +2025/05/04-10:09:55.608002 39 Options.max_successive_merges: 0 +2025/05/04-10:09:55.608002 39 Options.strict_max_successive_merges: 0 +2025/05/04-10:09:55.608003 39 Options.optimize_filters_for_hits: 0 +2025/05/04-10:09:55.608004 39 Options.paranoid_file_checks: 0 +2025/05/04-10:09:55.608006 39 Options.force_consistency_checks: 1 +2025/05/04-10:09:55.608007 39 Options.report_bg_io_stats: 0 +2025/05/04-10:09:55.608007 39 Options.ttl: 2592000 +2025/05/04-10:09:55.608008 39 Options.periodic_compaction_seconds: 0 +2025/05/04-10:09:55.608009 39 Options.default_temperature: kUnknown +2025/05/04-10:09:55.608009 39 Options.preclude_last_level_data_seconds: 0 +2025/05/04-10:09:55.608010 39 Options.preserve_internal_time_seconds: 0 +2025/05/04-10:09:55.608010 39 Options.enable_blob_files: false +2025/05/04-10:09:55.608012 39 Options.min_blob_size: 0 +2025/05/04-10:09:55.608013 39 Options.blob_file_size: 268435456 +2025/05/04-10:09:55.608014 39 Options.blob_compression_type: NoCompression +2025/05/04-10:09:55.608014 39 Options.enable_blob_garbage_collection: false +2025/05/04-10:09:55.608015 39 Options.blob_garbage_collection_age_cutoff: 0.250000 +2025/05/04-10:09:55.608016 39 Options.blob_garbage_collection_force_threshold: 1.000000 +2025/05/04-10:09:55.608016 39 Options.blob_compaction_readahead_size: 0 +2025/05/04-10:09:55.608017 39 Options.blob_file_starting_level: 0 +2025/05/04-10:09:55.608017 39 Options.experimental_mempurge_threshold: 0.000000 +2025/05/04-10:09:55.608018 39 Options.memtable_max_range_deletions: 0 +2025/05/04-10:09:55.608043 39 Options.comparator: leveldb.BytewiseComparator +2025/05/04-10:09:55.608044 39 Options.merge_operator: None +2025/05/04-10:09:55.608045 39 Options.compaction_filter: None +2025/05/04-10:09:55.608046 39 Options.compaction_filter_factory: None +2025/05/04-10:09:55.608047 39 Options.sst_partitioner_factory: None +2025/05/04-10:09:55.608048 39 Options.memtable_factory: SkipListFactory +2025/05/04-10:09:55.608048 39 Options.table_factory: BlockBasedTable +2025/05/04-10:09:55.608071 39 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff84400060) + cache_index_and_filter_blocks: 0 + cache_index_and_filter_blocks_with_high_priority: 1 + pin_l0_filter_and_index_blocks_in_cache: 0 + pin_top_level_index_and_filter: 1 + index_type: 0 + data_block_index_type: 0 + index_shortening: 1 + data_block_hash_table_util_ratio: 0.750000 + checksum: 4 + no_block_cache: 0 + block_cache: 0xffff84409010 + block_cache_name: LRUCache + block_cache_options: + capacity : 33554432 + num_shard_bits : 6 + strict_capacity_limit : 0 + memory_allocator : None + high_pri_pool_ratio: 0.500 + low_pri_pool_ratio: 0.000 + persistent_cache: (nil) + block_size: 4096 + block_size_deviation: 10 + block_restart_interval: 16 + index_block_restart_interval: 1 + metadata_block_size: 4096 + partition_filters: 0 + use_delta_encoding: 1 + filter_policy: nullptr + whole_key_filtering: 1 + verify_compression: 0 + read_amp_bytes_per_bit: 0 + format_version: 6 + enable_index_compression: 1 + block_align: 0 + max_auto_readahead_size: 262144 + prepopulate_block_cache: 0 + initial_auto_readahead_size: 8192 + num_file_reads_for_auto_readahead: 2 +2025/05/04-10:09:55.608073 39 Options.write_buffer_size: 10485760 +2025/05/04-10:09:55.608074 39 Options.max_write_buffer_number: 2 +2025/05/04-10:09:55.608075 39 Options.compression: LZ4 +2025/05/04-10:09:55.608075 39 Options.bottommost_compression: Disabled +2025/05/04-10:09:55.608076 39 Options.prefix_extractor: nullptr +2025/05/04-10:09:55.608076 39 Options.memtable_insert_with_hint_prefix_extractor: nullptr +2025/05/04-10:09:55.608077 39 Options.num_levels: 7 +2025/05/04-10:09:55.608077 39 Options.min_write_buffer_number_to_merge: 1 +2025/05/04-10:09:55.608078 39 Options.max_write_buffer_number_to_maintain: 0 +2025/05/04-10:09:55.608078 39 Options.max_write_buffer_size_to_maintain: 0 +2025/05/04-10:09:55.608079 39 Options.bottommost_compression_opts.window_bits: -14 +2025/05/04-10:09:55.608080 39 Options.bottommost_compression_opts.level: 32767 +2025/05/04-10:09:55.608082 39 Options.bottommost_compression_opts.strategy: 0 +2025/05/04-10:09:55.608082 39 Options.bottommost_compression_opts.max_dict_bytes: 0 +2025/05/04-10:09:55.608083 39 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 +2025/05/04-10:09:55.608083 39 Options.bottommost_compression_opts.parallel_threads: 1 +2025/05/04-10:09:55.608084 39 Options.bottommost_compression_opts.enabled: false +2025/05/04-10:09:55.608085 39 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 +2025/05/04-10:09:55.608085 39 Options.bottommost_compression_opts.use_zstd_dict_trainer: true +2025/05/04-10:09:55.608086 39 Options.compression_opts.window_bits: -14 +2025/05/04-10:09:55.608086 39 Options.compression_opts.level: 32767 +2025/05/04-10:09:55.608087 39 Options.compression_opts.strategy: 0 +2025/05/04-10:09:55.608087 39 Options.compression_opts.max_dict_bytes: 0 +2025/05/04-10:09:55.608088 39 Options.compression_opts.zstd_max_train_bytes: 0 +2025/05/04-10:09:55.608088 39 Options.compression_opts.use_zstd_dict_trainer: true +2025/05/04-10:09:55.608089 39 Options.compression_opts.parallel_threads: 1 +2025/05/04-10:09:55.608090 39 Options.compression_opts.enabled: false +2025/05/04-10:09:55.608090 39 Options.compression_opts.max_dict_buffer_bytes: 0 +2025/05/04-10:09:55.608091 39 Options.level0_file_num_compaction_trigger: 4 +2025/05/04-10:09:55.608092 39 Options.level0_slowdown_writes_trigger: 20 +2025/05/04-10:09:55.608103 39 Options.level0_stop_writes_trigger: 36 +2025/05/04-10:09:55.608105 39 Options.target_file_size_base: 67108864 +2025/05/04-10:09:55.608106 39 Options.target_file_size_multiplier: 1 +2025/05/04-10:09:55.608106 39 Options.max_bytes_for_level_base: 268435456 +2025/05/04-10:09:55.608107 39 Options.level_compaction_dynamic_level_bytes: 1 +2025/05/04-10:09:55.608108 39 Options.max_bytes_for_level_multiplier: 10.000000 +2025/05/04-10:09:55.608109 39 Options.max_bytes_for_level_multiplier_addtl[0]: 1 +2025/05/04-10:09:55.608110 39 Options.max_bytes_for_level_multiplier_addtl[1]: 1 +2025/05/04-10:09:55.608110 39 Options.max_bytes_for_level_multiplier_addtl[2]: 1 +2025/05/04-10:09:55.608111 39 Options.max_bytes_for_level_multiplier_addtl[3]: 1 +2025/05/04-10:09:55.608111 39 Options.max_bytes_for_level_multiplier_addtl[4]: 1 +2025/05/04-10:09:55.608118 39 Options.max_bytes_for_level_multiplier_addtl[5]: 1 +2025/05/04-10:09:55.608119 39 Options.max_bytes_for_level_multiplier_addtl[6]: 1 +2025/05/04-10:09:55.608119 39 Options.max_sequential_skip_in_iterations: 8 +2025/05/04-10:09:55.608120 39 Options.max_compaction_bytes: 1677721600 +2025/05/04-10:09:55.608120 39 Options.arena_block_size: 1048576 +2025/05/04-10:09:55.608122 39 Options.soft_pending_compaction_bytes_limit: 68719476736 +2025/05/04-10:09:55.608122 39 Options.hard_pending_compaction_bytes_limit: 274877906944 +2025/05/04-10:09:55.608123 39 Options.disable_auto_compactions: 0 +2025/05/04-10:09:55.608124 39 Options.compaction_style: kCompactionStyleLevel +2025/05/04-10:09:55.608124 39 Options.compaction_pri: kMinOverlappingRatio +2025/05/04-10:09:55.608125 39 Options.compaction_options_universal.size_ratio: 1 +2025/05/04-10:09:55.608125 39 Options.compaction_options_universal.min_merge_width: 2 +2025/05/04-10:09:55.608126 39 Options.compaction_options_universal.max_merge_width: 4294967295 +2025/05/04-10:09:55.608126 39 Options.compaction_options_universal.max_size_amplification_percent: 200 +2025/05/04-10:09:55.608127 39 Options.compaction_options_universal.compression_size_percent: -1 +2025/05/04-10:09:55.608127 39 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize +2025/05/04-10:09:55.608128 39 Options.compaction_options_universal.max_read_amp: -1 +2025/05/04-10:09:55.608129 39 Options.compaction_options_fifo.max_table_files_size: 1073741824 +2025/05/04-10:09:55.608129 39 Options.compaction_options_fifo.allow_compaction: 0 +2025/05/04-10:09:55.608130 39 Options.table_properties_collectors: +2025/05/04-10:09:55.608131 39 Options.inplace_update_support: 0 +2025/05/04-10:09:55.608131 39 Options.inplace_update_num_locks: 10000 +2025/05/04-10:09:55.608132 39 Options.memtable_prefix_bloom_size_ratio: 0.000000 +2025/05/04-10:09:55.608132 39 Options.memtable_whole_key_filtering: 0 +2025/05/04-10:09:55.608133 39 Options.memtable_huge_page_size: 0 +2025/05/04-10:09:55.608133 39 Options.bloom_locality: 0 +2025/05/04-10:09:55.608134 39 Options.max_successive_merges: 0 +2025/05/04-10:09:55.608135 39 Options.strict_max_successive_merges: 0 +2025/05/04-10:09:55.608135 39 Options.optimize_filters_for_hits: 0 +2025/05/04-10:09:55.608136 39 Options.paranoid_file_checks: 0 +2025/05/04-10:09:55.608142 39 Options.force_consistency_checks: 1 +2025/05/04-10:09:55.608143 39 Options.report_bg_io_stats: 0 +2025/05/04-10:09:55.608144 39 Options.ttl: 2592000 +2025/05/04-10:09:55.608144 39 Options.periodic_compaction_seconds: 0 +2025/05/04-10:09:55.608145 39 Options.default_temperature: kUnknown +2025/05/04-10:09:55.608145 39 Options.preclude_last_level_data_seconds: 0 +2025/05/04-10:09:55.608146 39 Options.preserve_internal_time_seconds: 0 +2025/05/04-10:09:55.608146 39 Options.enable_blob_files: false +2025/05/04-10:09:55.608147 39 Options.min_blob_size: 0 +2025/05/04-10:09:55.608147 39 Options.blob_file_size: 268435456 +2025/05/04-10:09:55.608148 39 Options.blob_compression_type: NoCompression +2025/05/04-10:09:55.608149 39 Options.enable_blob_garbage_collection: false +2025/05/04-10:09:55.608149 39 Options.blob_garbage_collection_age_cutoff: 0.250000 +2025/05/04-10:09:55.608150 39 Options.blob_garbage_collection_force_threshold: 1.000000 +2025/05/04-10:09:55.608151 39 Options.blob_compaction_readahead_size: 0 +2025/05/04-10:09:55.608151 39 Options.blob_file_starting_level: 0 +2025/05/04-10:09:55.608152 39 Options.experimental_mempurge_threshold: 0.000000 +2025/05/04-10:09:55.608152 39 Options.memtable_max_range_deletions: 0 +2025/05/04-10:09:55.652322 39 DB pointer 0xffff84463c00 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/MANIFEST-000013 b/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/MANIFEST-000013 new file mode 100644 index 0000000000000000000000000000000000000000..1a7f861403074e7fa424948c83e7b8855cccda6d Binary files /dev/null and b/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/MANIFEST-000013 differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/OPTIONS-000011 b/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/OPTIONS-000011 new file mode 100644 index 0000000000000000000000000000000000000000..ad2b181add715408dc69839970eebfd4c1a28b4b --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/OPTIONS-000011 @@ -0,0 +1,670 @@ +# This is a RocksDB option file. +# +# For detailed file format spec, please refer to the example file +# in examples/rocksdb_option_file_example.ini +# + +[Version] + rocksdb_version=9.9.3 + options_file_version=1.1 + +[DBOptions] + compaction_readahead_size=2097152 + strict_bytes_per_sync=false + bytes_per_sync=0 + max_background_jobs=2 + avoid_flush_during_shutdown=false + max_background_flushes=-1 + delayed_write_rate=16777216 + max_open_files=256 + max_subcompactions=1 + writable_file_max_buffer_size=1048576 + wal_bytes_per_sync=0 + max_background_compactions=-1 + max_total_wal_size=0 + delete_obsolete_files_period_micros=180000000 + stats_dump_period_sec=600 + stats_history_buffer_size=1048576 + stats_persist_period_sec=600 + follower_refresh_catchup_period_ms=10000 + enforce_single_del_contracts=true + lowest_used_cache_tier=kNonVolatileBlockTier + bgerror_resume_retry_interval=1000000 + metadata_write_temperature=kUnknown + best_efforts_recovery=false + log_readahead_size=0 + write_identity_file=true + write_dbid_to_manifest=true + prefix_seek_opt_in_only=false + wal_compression=kNoCompression + manual_wal_flush=false + db_host_id=__hostname__ + two_write_queues=false + random_access_max_buffer_size=1048576 + avoid_unnecessary_blocking_io=false + skip_checking_sst_file_sizes_on_db_open=false + flush_verify_memtable_count=true + fail_if_options_file_error=true + atomic_flush=false + verify_sst_unique_id_in_manifest=true + skip_stats_update_on_db_open=false + track_and_verify_wals_in_manifest=false + compaction_verify_record_count=true + paranoid_checks=true + create_if_missing=true + max_write_batch_group_size_bytes=1048576 + follower_catchup_retry_count=10 + avoid_flush_during_recovery=false + file_checksum_gen_factory=nullptr + enable_thread_tracking=false + allow_fallocate=true + allow_data_in_errors=false + error_if_exists=false + use_direct_io_for_flush_and_compaction=false + background_close_inactive_wals=false + create_missing_column_families=true + WAL_size_limit_MB=0 + use_direct_reads=false + persist_stats_to_disk=false + allow_2pc=false + is_fd_close_on_exec=true + max_log_file_size=1048576 + max_file_opening_threads=16 + wal_filter=nullptr + wal_write_temperature=kUnknown + follower_catchup_retry_wait_ms=100 + allow_mmap_reads=false + allow_mmap_writes=false + use_adaptive_mutex=false + use_fsync=false + table_cache_numshardbits=6 + dump_malloc_stats=false + db_write_buffer_size=0 + allow_ingest_behind=false + keep_log_file_num=1 + max_bgerror_resume_count=2147483647 + allow_concurrent_memtable_write=true + recycle_log_file_num=0 + log_file_time_to_roll=0 + manifest_preallocation_size=4194304 + enable_write_thread_adaptive_yield=true + WAL_ttl_seconds=0 + max_manifest_file_size=1073741824 + wal_recovery_mode=kTolerateCorruptedTailRecords + enable_pipelined_write=false + write_thread_slow_yield_usec=3 + unordered_write=false + write_thread_max_yield_usec=100 + advise_random_on_open=true + info_log_level=ERROR_LEVEL + + +[CFOptions "default"] + memtable_max_range_deletions=0 + compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_memory_checks=false + block_protection_bytes_per_key=0 + uncache_aggressiveness=0 + bottommost_file_compaction_delay=0 + memtable_protection_bytes_per_key=0 + experimental_mempurge_threshold=0.000000 + bottommost_compression=kDisableCompressionOption + sample_for_compression=0 + prepopulate_blob_cache=kDisable + blob_file_starting_level=0 + blob_compaction_readahead_size=0 + table_factory=BlockBasedTable + max_successive_merges=0 + max_write_buffer_number=2 + prefix_extractor=nullptr + memtable_huge_page_size=0 + write_buffer_size=10485760 + strict_max_successive_merges=false + arena_block_size=1048576 + level0_file_num_compaction_trigger=4 + report_bg_io_stats=false + inplace_update_num_locks=10000 + memtable_prefix_bloom_size_ratio=0.000000 + level0_stop_writes_trigger=36 + blob_compression_type=kNoCompression + level0_slowdown_writes_trigger=20 + hard_pending_compaction_bytes_limit=274877906944 + target_file_size_multiplier=1 + bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_file_checks=false + blob_garbage_collection_force_threshold=1.000000 + enable_blob_files=false + soft_pending_compaction_bytes_limit=68719476736 + target_file_size_base=67108864 + max_compaction_bytes=1677721600 + disable_auto_compactions=false + min_blob_size=0 + memtable_whole_key_filtering=false + max_bytes_for_level_base=268435456 + last_level_temperature=kUnknown + preserve_internal_time_seconds=0 + compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} + max_bytes_for_level_multiplier=10.000000 + max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 + max_sequential_skip_in_iterations=8 + compression=kLZ4Compression + default_write_temperature=kUnknown + compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} + blob_garbage_collection_age_cutoff=0.250000 + ttl=2592000 + periodic_compaction_seconds=0 + preclude_last_level_data_seconds=0 + blob_file_size=268435456 + enable_blob_garbage_collection=false + persist_user_defined_timestamps=true + compaction_pri=kMinOverlappingRatio + compaction_filter_factory=nullptr + comparator=leveldb.BytewiseComparator + bloom_locality=0 + merge_operator=nullptr + compaction_filter=nullptr + level_compaction_dynamic_level_bytes=true + optimize_filters_for_hits=false + inplace_update_support=false + max_write_buffer_number_to_maintain=0 + max_write_buffer_size_to_maintain=0 + sst_partitioner_factory=nullptr + default_temperature=kUnknown + compaction_style=kCompactionStyleLevel + min_write_buffer_number_to_merge=1 + memtable_factory=SkipListFactory + memtable_insert_with_hint_prefix_extractor=nullptr + force_consistency_checks=true + num_levels=7 + +[TableOptions/BlockBasedTable "default"] + num_file_reads_for_auto_readahead=2 + initial_auto_readahead_size=8192 + metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} + enable_index_compression=true + verify_compression=false + prepopulate_block_cache=kDisable + format_version=6 + use_delta_encoding=true + pin_top_level_index_and_filter=true + read_amp_bytes_per_bit=0 + decouple_partitioned_filters=false + partition_filters=false + metadata_block_size=4096 + max_auto_readahead_size=262144 + index_block_restart_interval=1 + block_size_deviation=10 + block_size=4096 + detect_filter_construct_corruption=false + no_block_cache=false + checksum=kXXH3 + filter_policy=nullptr + data_block_hash_table_util_ratio=0.750000 + block_restart_interval=16 + index_type=kBinarySearch + pin_l0_filter_and_index_blocks_in_cache=false + data_block_index_type=kDataBlockBinarySearch + cache_index_and_filter_blocks_with_high_priority=true + whole_key_filtering=true + index_shortening=kShortenSeparators + cache_index_and_filter_blocks=false + block_align=false + optimize_filters_for_memory=true + flush_block_policy_factory=FlushBlockBySizePolicyFactory + + +[CFOptions "payload"] + memtable_max_range_deletions=0 + compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_memory_checks=false + block_protection_bytes_per_key=0 + uncache_aggressiveness=0 + bottommost_file_compaction_delay=0 + memtable_protection_bytes_per_key=0 + experimental_mempurge_threshold=0.000000 + bottommost_compression=kDisableCompressionOption + sample_for_compression=0 + prepopulate_blob_cache=kDisable + blob_file_starting_level=0 + blob_compaction_readahead_size=0 + table_factory=BlockBasedTable + max_successive_merges=0 + max_write_buffer_number=2 + prefix_extractor=nullptr + memtable_huge_page_size=0 + write_buffer_size=10485760 + strict_max_successive_merges=false + arena_block_size=1048576 + level0_file_num_compaction_trigger=4 + report_bg_io_stats=false + inplace_update_num_locks=10000 + memtable_prefix_bloom_size_ratio=0.000000 + level0_stop_writes_trigger=36 + blob_compression_type=kNoCompression + level0_slowdown_writes_trigger=20 + hard_pending_compaction_bytes_limit=274877906944 + target_file_size_multiplier=1 + bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_file_checks=false + blob_garbage_collection_force_threshold=1.000000 + enable_blob_files=false + soft_pending_compaction_bytes_limit=68719476736 + target_file_size_base=67108864 + max_compaction_bytes=1677721600 + disable_auto_compactions=false + min_blob_size=0 + memtable_whole_key_filtering=false + max_bytes_for_level_base=268435456 + last_level_temperature=kUnknown + preserve_internal_time_seconds=0 + compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} + max_bytes_for_level_multiplier=10.000000 + max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 + max_sequential_skip_in_iterations=8 + compression=kLZ4Compression + default_write_temperature=kUnknown + compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} + blob_garbage_collection_age_cutoff=0.250000 + ttl=2592000 + periodic_compaction_seconds=0 + preclude_last_level_data_seconds=0 + blob_file_size=268435456 + enable_blob_garbage_collection=false + persist_user_defined_timestamps=true + compaction_pri=kMinOverlappingRatio + compaction_filter_factory=nullptr + comparator=leveldb.BytewiseComparator + bloom_locality=0 + merge_operator=nullptr + compaction_filter=nullptr + level_compaction_dynamic_level_bytes=true + optimize_filters_for_hits=false + inplace_update_support=false + max_write_buffer_number_to_maintain=0 + max_write_buffer_size_to_maintain=0 + sst_partitioner_factory=nullptr + default_temperature=kUnknown + compaction_style=kCompactionStyleLevel + min_write_buffer_number_to_merge=1 + memtable_factory=SkipListFactory + memtable_insert_with_hint_prefix_extractor=nullptr + force_consistency_checks=true + num_levels=7 + +[TableOptions/BlockBasedTable "payload"] + num_file_reads_for_auto_readahead=2 + initial_auto_readahead_size=8192 + metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} + enable_index_compression=true + verify_compression=false + prepopulate_block_cache=kDisable + format_version=6 + use_delta_encoding=true + pin_top_level_index_and_filter=true + read_amp_bytes_per_bit=0 + decouple_partitioned_filters=false + partition_filters=false + metadata_block_size=4096 + max_auto_readahead_size=262144 + index_block_restart_interval=1 + block_size_deviation=10 + block_size=4096 + detect_filter_construct_corruption=false + no_block_cache=false + checksum=kXXH3 + filter_policy=nullptr + data_block_hash_table_util_ratio=0.750000 + block_restart_interval=16 + index_type=kBinarySearch + pin_l0_filter_and_index_blocks_in_cache=false + data_block_index_type=kDataBlockBinarySearch + cache_index_and_filter_blocks_with_high_priority=true + whole_key_filtering=true + index_shortening=kShortenSeparators + cache_index_and_filter_blocks=false + block_align=false + optimize_filters_for_memory=true + flush_block_policy_factory=FlushBlockBySizePolicyFactory + + +[CFOptions "mapping"] + memtable_max_range_deletions=0 + compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_memory_checks=false + block_protection_bytes_per_key=0 + uncache_aggressiveness=0 + bottommost_file_compaction_delay=0 + memtable_protection_bytes_per_key=0 + experimental_mempurge_threshold=0.000000 + bottommost_compression=kDisableCompressionOption + sample_for_compression=0 + prepopulate_blob_cache=kDisable + blob_file_starting_level=0 + blob_compaction_readahead_size=0 + table_factory=BlockBasedTable + max_successive_merges=0 + max_write_buffer_number=2 + prefix_extractor=nullptr + memtable_huge_page_size=0 + write_buffer_size=10485760 + strict_max_successive_merges=false + arena_block_size=1048576 + level0_file_num_compaction_trigger=4 + report_bg_io_stats=false + inplace_update_num_locks=10000 + memtable_prefix_bloom_size_ratio=0.000000 + level0_stop_writes_trigger=36 + blob_compression_type=kNoCompression + level0_slowdown_writes_trigger=20 + hard_pending_compaction_bytes_limit=274877906944 + target_file_size_multiplier=1 + bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_file_checks=false + blob_garbage_collection_force_threshold=1.000000 + enable_blob_files=false + soft_pending_compaction_bytes_limit=68719476736 + target_file_size_base=67108864 + max_compaction_bytes=1677721600 + disable_auto_compactions=false + min_blob_size=0 + memtable_whole_key_filtering=false + max_bytes_for_level_base=268435456 + last_level_temperature=kUnknown + preserve_internal_time_seconds=0 + compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} + max_bytes_for_level_multiplier=10.000000 + max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 + max_sequential_skip_in_iterations=8 + compression=kLZ4Compression + default_write_temperature=kUnknown + compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} + blob_garbage_collection_age_cutoff=0.250000 + ttl=2592000 + periodic_compaction_seconds=0 + preclude_last_level_data_seconds=0 + blob_file_size=268435456 + enable_blob_garbage_collection=false + persist_user_defined_timestamps=true + compaction_pri=kMinOverlappingRatio + compaction_filter_factory=nullptr + comparator=leveldb.BytewiseComparator + bloom_locality=0 + merge_operator=nullptr + compaction_filter=nullptr + level_compaction_dynamic_level_bytes=true + optimize_filters_for_hits=false + inplace_update_support=false + max_write_buffer_number_to_maintain=0 + max_write_buffer_size_to_maintain=0 + sst_partitioner_factory=nullptr + default_temperature=kUnknown + compaction_style=kCompactionStyleLevel + min_write_buffer_number_to_merge=1 + memtable_factory=SkipListFactory + memtable_insert_with_hint_prefix_extractor=nullptr + force_consistency_checks=true + num_levels=7 + +[TableOptions/BlockBasedTable "mapping"] + num_file_reads_for_auto_readahead=2 + initial_auto_readahead_size=8192 + metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} + enable_index_compression=true + verify_compression=false + prepopulate_block_cache=kDisable + format_version=6 + use_delta_encoding=true + pin_top_level_index_and_filter=true + read_amp_bytes_per_bit=0 + decouple_partitioned_filters=false + partition_filters=false + metadata_block_size=4096 + max_auto_readahead_size=262144 + index_block_restart_interval=1 + block_size_deviation=10 + block_size=4096 + detect_filter_construct_corruption=false + no_block_cache=false + checksum=kXXH3 + filter_policy=nullptr + data_block_hash_table_util_ratio=0.750000 + block_restart_interval=16 + index_type=kBinarySearch + pin_l0_filter_and_index_blocks_in_cache=false + data_block_index_type=kDataBlockBinarySearch + cache_index_and_filter_blocks_with_high_priority=true + whole_key_filtering=true + index_shortening=kShortenSeparators + cache_index_and_filter_blocks=false + block_align=false + optimize_filters_for_memory=true + flush_block_policy_factory=FlushBlockBySizePolicyFactory + + +[CFOptions "version"] + memtable_max_range_deletions=0 + compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_memory_checks=false + block_protection_bytes_per_key=0 + uncache_aggressiveness=0 + bottommost_file_compaction_delay=0 + memtable_protection_bytes_per_key=0 + experimental_mempurge_threshold=0.000000 + bottommost_compression=kDisableCompressionOption + sample_for_compression=0 + prepopulate_blob_cache=kDisable + blob_file_starting_level=0 + blob_compaction_readahead_size=0 + table_factory=BlockBasedTable + max_successive_merges=0 + max_write_buffer_number=2 + prefix_extractor=nullptr + memtable_huge_page_size=0 + write_buffer_size=10485760 + strict_max_successive_merges=false + arena_block_size=1048576 + level0_file_num_compaction_trigger=4 + report_bg_io_stats=false + inplace_update_num_locks=10000 + memtable_prefix_bloom_size_ratio=0.000000 + level0_stop_writes_trigger=36 + blob_compression_type=kNoCompression + level0_slowdown_writes_trigger=20 + hard_pending_compaction_bytes_limit=274877906944 + target_file_size_multiplier=1 + bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_file_checks=false + blob_garbage_collection_force_threshold=1.000000 + enable_blob_files=false + soft_pending_compaction_bytes_limit=68719476736 + target_file_size_base=67108864 + max_compaction_bytes=1677721600 + disable_auto_compactions=false + min_blob_size=0 + memtable_whole_key_filtering=false + max_bytes_for_level_base=268435456 + last_level_temperature=kUnknown + preserve_internal_time_seconds=0 + compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} + max_bytes_for_level_multiplier=10.000000 + max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 + max_sequential_skip_in_iterations=8 + compression=kLZ4Compression + default_write_temperature=kUnknown + compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} + blob_garbage_collection_age_cutoff=0.250000 + ttl=2592000 + periodic_compaction_seconds=0 + preclude_last_level_data_seconds=0 + blob_file_size=268435456 + enable_blob_garbage_collection=false + persist_user_defined_timestamps=true + compaction_pri=kMinOverlappingRatio + compaction_filter_factory=nullptr + comparator=leveldb.BytewiseComparator + bloom_locality=0 + merge_operator=nullptr + compaction_filter=nullptr + level_compaction_dynamic_level_bytes=true + optimize_filters_for_hits=false + inplace_update_support=false + max_write_buffer_number_to_maintain=0 + max_write_buffer_size_to_maintain=0 + sst_partitioner_factory=nullptr + default_temperature=kUnknown + compaction_style=kCompactionStyleLevel + min_write_buffer_number_to_merge=1 + memtable_factory=SkipListFactory + memtable_insert_with_hint_prefix_extractor=nullptr + force_consistency_checks=true + num_levels=7 + +[TableOptions/BlockBasedTable "version"] + num_file_reads_for_auto_readahead=2 + initial_auto_readahead_size=8192 + metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} + enable_index_compression=true + verify_compression=false + prepopulate_block_cache=kDisable + format_version=6 + use_delta_encoding=true + pin_top_level_index_and_filter=true + read_amp_bytes_per_bit=0 + decouple_partitioned_filters=false + partition_filters=false + metadata_block_size=4096 + max_auto_readahead_size=262144 + index_block_restart_interval=1 + block_size_deviation=10 + block_size=4096 + detect_filter_construct_corruption=false + no_block_cache=false + checksum=kXXH3 + filter_policy=nullptr + data_block_hash_table_util_ratio=0.750000 + block_restart_interval=16 + index_type=kBinarySearch + pin_l0_filter_and_index_blocks_in_cache=false + data_block_index_type=kDataBlockBinarySearch + cache_index_and_filter_blocks_with_high_priority=true + whole_key_filtering=true + index_shortening=kShortenSeparators + cache_index_and_filter_blocks=false + block_align=false + optimize_filters_for_memory=true + flush_block_policy_factory=FlushBlockBySizePolicyFactory + + +[CFOptions "vector"] + memtable_max_range_deletions=0 + compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_memory_checks=false + block_protection_bytes_per_key=0 + uncache_aggressiveness=0 + bottommost_file_compaction_delay=0 + memtable_protection_bytes_per_key=0 + experimental_mempurge_threshold=0.000000 + bottommost_compression=kDisableCompressionOption + sample_for_compression=0 + prepopulate_blob_cache=kDisable + blob_file_starting_level=0 + blob_compaction_readahead_size=0 + table_factory=BlockBasedTable + max_successive_merges=0 + max_write_buffer_number=2 + prefix_extractor=nullptr + memtable_huge_page_size=0 + write_buffer_size=10485760 + strict_max_successive_merges=false + arena_block_size=1048576 + level0_file_num_compaction_trigger=4 + report_bg_io_stats=false + inplace_update_num_locks=10000 + memtable_prefix_bloom_size_ratio=0.000000 + level0_stop_writes_trigger=36 + blob_compression_type=kNoCompression + level0_slowdown_writes_trigger=20 + hard_pending_compaction_bytes_limit=274877906944 + target_file_size_multiplier=1 + bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_file_checks=false + blob_garbage_collection_force_threshold=1.000000 + enable_blob_files=false + soft_pending_compaction_bytes_limit=68719476736 + target_file_size_base=67108864 + max_compaction_bytes=1677721600 + disable_auto_compactions=false + min_blob_size=0 + memtable_whole_key_filtering=false + max_bytes_for_level_base=268435456 + last_level_temperature=kUnknown + preserve_internal_time_seconds=0 + compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} + max_bytes_for_level_multiplier=10.000000 + max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 + max_sequential_skip_in_iterations=8 + compression=kLZ4Compression + default_write_temperature=kUnknown + compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} + blob_garbage_collection_age_cutoff=0.250000 + ttl=2592000 + periodic_compaction_seconds=0 + preclude_last_level_data_seconds=0 + blob_file_size=268435456 + enable_blob_garbage_collection=false + persist_user_defined_timestamps=true + compaction_pri=kMinOverlappingRatio + compaction_filter_factory=nullptr + comparator=leveldb.BytewiseComparator + bloom_locality=0 + merge_operator=nullptr + compaction_filter=nullptr + level_compaction_dynamic_level_bytes=true + optimize_filters_for_hits=false + inplace_update_support=false + max_write_buffer_number_to_maintain=0 + max_write_buffer_size_to_maintain=0 + sst_partitioner_factory=nullptr + default_temperature=kUnknown + compaction_style=kCompactionStyleLevel + min_write_buffer_number_to_merge=1 + memtable_factory=SkipListFactory + memtable_insert_with_hint_prefix_extractor=nullptr + force_consistency_checks=true + num_levels=7 + +[TableOptions/BlockBasedTable "vector"] + num_file_reads_for_auto_readahead=2 + initial_auto_readahead_size=8192 + metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} + enable_index_compression=true + verify_compression=false + prepopulate_block_cache=kDisable + format_version=6 + use_delta_encoding=true + pin_top_level_index_and_filter=true + read_amp_bytes_per_bit=0 + decouple_partitioned_filters=false + partition_filters=false + metadata_block_size=4096 + max_auto_readahead_size=262144 + index_block_restart_interval=1 + block_size_deviation=10 + block_size=4096 + detect_filter_construct_corruption=false + no_block_cache=false + checksum=kXXH3 + filter_policy=nullptr + data_block_hash_table_util_ratio=0.750000 + block_restart_interval=16 + index_type=kBinarySearch + pin_l0_filter_and_index_blocks_in_cache=false + data_block_index_type=kDataBlockBinarySearch + cache_index_and_filter_blocks_with_high_priority=true + whole_key_filtering=true + index_shortening=kShortenSeparators + cache_index_and_filter_blocks=false + block_align=false + optimize_filters_for_memory=true + flush_block_policy_factory=FlushBlockBySizePolicyFactory + diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/OPTIONS-000015 b/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/OPTIONS-000015 new file mode 100644 index 0000000000000000000000000000000000000000..ad2b181add715408dc69839970eebfd4c1a28b4b --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/OPTIONS-000015 @@ -0,0 +1,670 @@ +# This is a RocksDB option file. +# +# For detailed file format spec, please refer to the example file +# in examples/rocksdb_option_file_example.ini +# + +[Version] + rocksdb_version=9.9.3 + options_file_version=1.1 + +[DBOptions] + compaction_readahead_size=2097152 + strict_bytes_per_sync=false + bytes_per_sync=0 + max_background_jobs=2 + avoid_flush_during_shutdown=false + max_background_flushes=-1 + delayed_write_rate=16777216 + max_open_files=256 + max_subcompactions=1 + writable_file_max_buffer_size=1048576 + wal_bytes_per_sync=0 + max_background_compactions=-1 + max_total_wal_size=0 + delete_obsolete_files_period_micros=180000000 + stats_dump_period_sec=600 + stats_history_buffer_size=1048576 + stats_persist_period_sec=600 + follower_refresh_catchup_period_ms=10000 + enforce_single_del_contracts=true + lowest_used_cache_tier=kNonVolatileBlockTier + bgerror_resume_retry_interval=1000000 + metadata_write_temperature=kUnknown + best_efforts_recovery=false + log_readahead_size=0 + write_identity_file=true + write_dbid_to_manifest=true + prefix_seek_opt_in_only=false + wal_compression=kNoCompression + manual_wal_flush=false + db_host_id=__hostname__ + two_write_queues=false + random_access_max_buffer_size=1048576 + avoid_unnecessary_blocking_io=false + skip_checking_sst_file_sizes_on_db_open=false + flush_verify_memtable_count=true + fail_if_options_file_error=true + atomic_flush=false + verify_sst_unique_id_in_manifest=true + skip_stats_update_on_db_open=false + track_and_verify_wals_in_manifest=false + compaction_verify_record_count=true + paranoid_checks=true + create_if_missing=true + max_write_batch_group_size_bytes=1048576 + follower_catchup_retry_count=10 + avoid_flush_during_recovery=false + file_checksum_gen_factory=nullptr + enable_thread_tracking=false + allow_fallocate=true + allow_data_in_errors=false + error_if_exists=false + use_direct_io_for_flush_and_compaction=false + background_close_inactive_wals=false + create_missing_column_families=true + WAL_size_limit_MB=0 + use_direct_reads=false + persist_stats_to_disk=false + allow_2pc=false + is_fd_close_on_exec=true + max_log_file_size=1048576 + max_file_opening_threads=16 + wal_filter=nullptr + wal_write_temperature=kUnknown + follower_catchup_retry_wait_ms=100 + allow_mmap_reads=false + allow_mmap_writes=false + use_adaptive_mutex=false + use_fsync=false + table_cache_numshardbits=6 + dump_malloc_stats=false + db_write_buffer_size=0 + allow_ingest_behind=false + keep_log_file_num=1 + max_bgerror_resume_count=2147483647 + allow_concurrent_memtable_write=true + recycle_log_file_num=0 + log_file_time_to_roll=0 + manifest_preallocation_size=4194304 + enable_write_thread_adaptive_yield=true + WAL_ttl_seconds=0 + max_manifest_file_size=1073741824 + wal_recovery_mode=kTolerateCorruptedTailRecords + enable_pipelined_write=false + write_thread_slow_yield_usec=3 + unordered_write=false + write_thread_max_yield_usec=100 + advise_random_on_open=true + info_log_level=ERROR_LEVEL + + +[CFOptions "default"] + memtable_max_range_deletions=0 + compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_memory_checks=false + block_protection_bytes_per_key=0 + uncache_aggressiveness=0 + bottommost_file_compaction_delay=0 + memtable_protection_bytes_per_key=0 + experimental_mempurge_threshold=0.000000 + bottommost_compression=kDisableCompressionOption + sample_for_compression=0 + prepopulate_blob_cache=kDisable + blob_file_starting_level=0 + blob_compaction_readahead_size=0 + table_factory=BlockBasedTable + max_successive_merges=0 + max_write_buffer_number=2 + prefix_extractor=nullptr + memtable_huge_page_size=0 + write_buffer_size=10485760 + strict_max_successive_merges=false + arena_block_size=1048576 + level0_file_num_compaction_trigger=4 + report_bg_io_stats=false + inplace_update_num_locks=10000 + memtable_prefix_bloom_size_ratio=0.000000 + level0_stop_writes_trigger=36 + blob_compression_type=kNoCompression + level0_slowdown_writes_trigger=20 + hard_pending_compaction_bytes_limit=274877906944 + target_file_size_multiplier=1 + bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_file_checks=false + blob_garbage_collection_force_threshold=1.000000 + enable_blob_files=false + soft_pending_compaction_bytes_limit=68719476736 + target_file_size_base=67108864 + max_compaction_bytes=1677721600 + disable_auto_compactions=false + min_blob_size=0 + memtable_whole_key_filtering=false + max_bytes_for_level_base=268435456 + last_level_temperature=kUnknown + preserve_internal_time_seconds=0 + compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} + max_bytes_for_level_multiplier=10.000000 + max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 + max_sequential_skip_in_iterations=8 + compression=kLZ4Compression + default_write_temperature=kUnknown + compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} + blob_garbage_collection_age_cutoff=0.250000 + ttl=2592000 + periodic_compaction_seconds=0 + preclude_last_level_data_seconds=0 + blob_file_size=268435456 + enable_blob_garbage_collection=false + persist_user_defined_timestamps=true + compaction_pri=kMinOverlappingRatio + compaction_filter_factory=nullptr + comparator=leveldb.BytewiseComparator + bloom_locality=0 + merge_operator=nullptr + compaction_filter=nullptr + level_compaction_dynamic_level_bytes=true + optimize_filters_for_hits=false + inplace_update_support=false + max_write_buffer_number_to_maintain=0 + max_write_buffer_size_to_maintain=0 + sst_partitioner_factory=nullptr + default_temperature=kUnknown + compaction_style=kCompactionStyleLevel + min_write_buffer_number_to_merge=1 + memtable_factory=SkipListFactory + memtable_insert_with_hint_prefix_extractor=nullptr + force_consistency_checks=true + num_levels=7 + +[TableOptions/BlockBasedTable "default"] + num_file_reads_for_auto_readahead=2 + initial_auto_readahead_size=8192 + metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} + enable_index_compression=true + verify_compression=false + prepopulate_block_cache=kDisable + format_version=6 + use_delta_encoding=true + pin_top_level_index_and_filter=true + read_amp_bytes_per_bit=0 + decouple_partitioned_filters=false + partition_filters=false + metadata_block_size=4096 + max_auto_readahead_size=262144 + index_block_restart_interval=1 + block_size_deviation=10 + block_size=4096 + detect_filter_construct_corruption=false + no_block_cache=false + checksum=kXXH3 + filter_policy=nullptr + data_block_hash_table_util_ratio=0.750000 + block_restart_interval=16 + index_type=kBinarySearch + pin_l0_filter_and_index_blocks_in_cache=false + data_block_index_type=kDataBlockBinarySearch + cache_index_and_filter_blocks_with_high_priority=true + whole_key_filtering=true + index_shortening=kShortenSeparators + cache_index_and_filter_blocks=false + block_align=false + optimize_filters_for_memory=true + flush_block_policy_factory=FlushBlockBySizePolicyFactory + + +[CFOptions "payload"] + memtable_max_range_deletions=0 + compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_memory_checks=false + block_protection_bytes_per_key=0 + uncache_aggressiveness=0 + bottommost_file_compaction_delay=0 + memtable_protection_bytes_per_key=0 + experimental_mempurge_threshold=0.000000 + bottommost_compression=kDisableCompressionOption + sample_for_compression=0 + prepopulate_blob_cache=kDisable + blob_file_starting_level=0 + blob_compaction_readahead_size=0 + table_factory=BlockBasedTable + max_successive_merges=0 + max_write_buffer_number=2 + prefix_extractor=nullptr + memtable_huge_page_size=0 + write_buffer_size=10485760 + strict_max_successive_merges=false + arena_block_size=1048576 + level0_file_num_compaction_trigger=4 + report_bg_io_stats=false + inplace_update_num_locks=10000 + memtable_prefix_bloom_size_ratio=0.000000 + level0_stop_writes_trigger=36 + blob_compression_type=kNoCompression + level0_slowdown_writes_trigger=20 + hard_pending_compaction_bytes_limit=274877906944 + target_file_size_multiplier=1 + bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_file_checks=false + blob_garbage_collection_force_threshold=1.000000 + enable_blob_files=false + soft_pending_compaction_bytes_limit=68719476736 + target_file_size_base=67108864 + max_compaction_bytes=1677721600 + disable_auto_compactions=false + min_blob_size=0 + memtable_whole_key_filtering=false + max_bytes_for_level_base=268435456 + last_level_temperature=kUnknown + preserve_internal_time_seconds=0 + compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} + max_bytes_for_level_multiplier=10.000000 + max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 + max_sequential_skip_in_iterations=8 + compression=kLZ4Compression + default_write_temperature=kUnknown + compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} + blob_garbage_collection_age_cutoff=0.250000 + ttl=2592000 + periodic_compaction_seconds=0 + preclude_last_level_data_seconds=0 + blob_file_size=268435456 + enable_blob_garbage_collection=false + persist_user_defined_timestamps=true + compaction_pri=kMinOverlappingRatio + compaction_filter_factory=nullptr + comparator=leveldb.BytewiseComparator + bloom_locality=0 + merge_operator=nullptr + compaction_filter=nullptr + level_compaction_dynamic_level_bytes=true + optimize_filters_for_hits=false + inplace_update_support=false + max_write_buffer_number_to_maintain=0 + max_write_buffer_size_to_maintain=0 + sst_partitioner_factory=nullptr + default_temperature=kUnknown + compaction_style=kCompactionStyleLevel + min_write_buffer_number_to_merge=1 + memtable_factory=SkipListFactory + memtable_insert_with_hint_prefix_extractor=nullptr + force_consistency_checks=true + num_levels=7 + +[TableOptions/BlockBasedTable "payload"] + num_file_reads_for_auto_readahead=2 + initial_auto_readahead_size=8192 + metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} + enable_index_compression=true + verify_compression=false + prepopulate_block_cache=kDisable + format_version=6 + use_delta_encoding=true + pin_top_level_index_and_filter=true + read_amp_bytes_per_bit=0 + decouple_partitioned_filters=false + partition_filters=false + metadata_block_size=4096 + max_auto_readahead_size=262144 + index_block_restart_interval=1 + block_size_deviation=10 + block_size=4096 + detect_filter_construct_corruption=false + no_block_cache=false + checksum=kXXH3 + filter_policy=nullptr + data_block_hash_table_util_ratio=0.750000 + block_restart_interval=16 + index_type=kBinarySearch + pin_l0_filter_and_index_blocks_in_cache=false + data_block_index_type=kDataBlockBinarySearch + cache_index_and_filter_blocks_with_high_priority=true + whole_key_filtering=true + index_shortening=kShortenSeparators + cache_index_and_filter_blocks=false + block_align=false + optimize_filters_for_memory=true + flush_block_policy_factory=FlushBlockBySizePolicyFactory + + +[CFOptions "mapping"] + memtable_max_range_deletions=0 + compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_memory_checks=false + block_protection_bytes_per_key=0 + uncache_aggressiveness=0 + bottommost_file_compaction_delay=0 + memtable_protection_bytes_per_key=0 + experimental_mempurge_threshold=0.000000 + bottommost_compression=kDisableCompressionOption + sample_for_compression=0 + prepopulate_blob_cache=kDisable + blob_file_starting_level=0 + blob_compaction_readahead_size=0 + table_factory=BlockBasedTable + max_successive_merges=0 + max_write_buffer_number=2 + prefix_extractor=nullptr + memtable_huge_page_size=0 + write_buffer_size=10485760 + strict_max_successive_merges=false + arena_block_size=1048576 + level0_file_num_compaction_trigger=4 + report_bg_io_stats=false + inplace_update_num_locks=10000 + memtable_prefix_bloom_size_ratio=0.000000 + level0_stop_writes_trigger=36 + blob_compression_type=kNoCompression + level0_slowdown_writes_trigger=20 + hard_pending_compaction_bytes_limit=274877906944 + target_file_size_multiplier=1 + bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_file_checks=false + blob_garbage_collection_force_threshold=1.000000 + enable_blob_files=false + soft_pending_compaction_bytes_limit=68719476736 + target_file_size_base=67108864 + max_compaction_bytes=1677721600 + disable_auto_compactions=false + min_blob_size=0 + memtable_whole_key_filtering=false + max_bytes_for_level_base=268435456 + last_level_temperature=kUnknown + preserve_internal_time_seconds=0 + compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} + max_bytes_for_level_multiplier=10.000000 + max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 + max_sequential_skip_in_iterations=8 + compression=kLZ4Compression + default_write_temperature=kUnknown + compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} + blob_garbage_collection_age_cutoff=0.250000 + ttl=2592000 + periodic_compaction_seconds=0 + preclude_last_level_data_seconds=0 + blob_file_size=268435456 + enable_blob_garbage_collection=false + persist_user_defined_timestamps=true + compaction_pri=kMinOverlappingRatio + compaction_filter_factory=nullptr + comparator=leveldb.BytewiseComparator + bloom_locality=0 + merge_operator=nullptr + compaction_filter=nullptr + level_compaction_dynamic_level_bytes=true + optimize_filters_for_hits=false + inplace_update_support=false + max_write_buffer_number_to_maintain=0 + max_write_buffer_size_to_maintain=0 + sst_partitioner_factory=nullptr + default_temperature=kUnknown + compaction_style=kCompactionStyleLevel + min_write_buffer_number_to_merge=1 + memtable_factory=SkipListFactory + memtable_insert_with_hint_prefix_extractor=nullptr + force_consistency_checks=true + num_levels=7 + +[TableOptions/BlockBasedTable "mapping"] + num_file_reads_for_auto_readahead=2 + initial_auto_readahead_size=8192 + metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} + enable_index_compression=true + verify_compression=false + prepopulate_block_cache=kDisable + format_version=6 + use_delta_encoding=true + pin_top_level_index_and_filter=true + read_amp_bytes_per_bit=0 + decouple_partitioned_filters=false + partition_filters=false + metadata_block_size=4096 + max_auto_readahead_size=262144 + index_block_restart_interval=1 + block_size_deviation=10 + block_size=4096 + detect_filter_construct_corruption=false + no_block_cache=false + checksum=kXXH3 + filter_policy=nullptr + data_block_hash_table_util_ratio=0.750000 + block_restart_interval=16 + index_type=kBinarySearch + pin_l0_filter_and_index_blocks_in_cache=false + data_block_index_type=kDataBlockBinarySearch + cache_index_and_filter_blocks_with_high_priority=true + whole_key_filtering=true + index_shortening=kShortenSeparators + cache_index_and_filter_blocks=false + block_align=false + optimize_filters_for_memory=true + flush_block_policy_factory=FlushBlockBySizePolicyFactory + + +[CFOptions "version"] + memtable_max_range_deletions=0 + compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_memory_checks=false + block_protection_bytes_per_key=0 + uncache_aggressiveness=0 + bottommost_file_compaction_delay=0 + memtable_protection_bytes_per_key=0 + experimental_mempurge_threshold=0.000000 + bottommost_compression=kDisableCompressionOption + sample_for_compression=0 + prepopulate_blob_cache=kDisable + blob_file_starting_level=0 + blob_compaction_readahead_size=0 + table_factory=BlockBasedTable + max_successive_merges=0 + max_write_buffer_number=2 + prefix_extractor=nullptr + memtable_huge_page_size=0 + write_buffer_size=10485760 + strict_max_successive_merges=false + arena_block_size=1048576 + level0_file_num_compaction_trigger=4 + report_bg_io_stats=false + inplace_update_num_locks=10000 + memtable_prefix_bloom_size_ratio=0.000000 + level0_stop_writes_trigger=36 + blob_compression_type=kNoCompression + level0_slowdown_writes_trigger=20 + hard_pending_compaction_bytes_limit=274877906944 + target_file_size_multiplier=1 + bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_file_checks=false + blob_garbage_collection_force_threshold=1.000000 + enable_blob_files=false + soft_pending_compaction_bytes_limit=68719476736 + target_file_size_base=67108864 + max_compaction_bytes=1677721600 + disable_auto_compactions=false + min_blob_size=0 + memtable_whole_key_filtering=false + max_bytes_for_level_base=268435456 + last_level_temperature=kUnknown + preserve_internal_time_seconds=0 + compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} + max_bytes_for_level_multiplier=10.000000 + max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 + max_sequential_skip_in_iterations=8 + compression=kLZ4Compression + default_write_temperature=kUnknown + compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} + blob_garbage_collection_age_cutoff=0.250000 + ttl=2592000 + periodic_compaction_seconds=0 + preclude_last_level_data_seconds=0 + blob_file_size=268435456 + enable_blob_garbage_collection=false + persist_user_defined_timestamps=true + compaction_pri=kMinOverlappingRatio + compaction_filter_factory=nullptr + comparator=leveldb.BytewiseComparator + bloom_locality=0 + merge_operator=nullptr + compaction_filter=nullptr + level_compaction_dynamic_level_bytes=true + optimize_filters_for_hits=false + inplace_update_support=false + max_write_buffer_number_to_maintain=0 + max_write_buffer_size_to_maintain=0 + sst_partitioner_factory=nullptr + default_temperature=kUnknown + compaction_style=kCompactionStyleLevel + min_write_buffer_number_to_merge=1 + memtable_factory=SkipListFactory + memtable_insert_with_hint_prefix_extractor=nullptr + force_consistency_checks=true + num_levels=7 + +[TableOptions/BlockBasedTable "version"] + num_file_reads_for_auto_readahead=2 + initial_auto_readahead_size=8192 + metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} + enable_index_compression=true + verify_compression=false + prepopulate_block_cache=kDisable + format_version=6 + use_delta_encoding=true + pin_top_level_index_and_filter=true + read_amp_bytes_per_bit=0 + decouple_partitioned_filters=false + partition_filters=false + metadata_block_size=4096 + max_auto_readahead_size=262144 + index_block_restart_interval=1 + block_size_deviation=10 + block_size=4096 + detect_filter_construct_corruption=false + no_block_cache=false + checksum=kXXH3 + filter_policy=nullptr + data_block_hash_table_util_ratio=0.750000 + block_restart_interval=16 + index_type=kBinarySearch + pin_l0_filter_and_index_blocks_in_cache=false + data_block_index_type=kDataBlockBinarySearch + cache_index_and_filter_blocks_with_high_priority=true + whole_key_filtering=true + index_shortening=kShortenSeparators + cache_index_and_filter_blocks=false + block_align=false + optimize_filters_for_memory=true + flush_block_policy_factory=FlushBlockBySizePolicyFactory + + +[CFOptions "vector"] + memtable_max_range_deletions=0 + compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_memory_checks=false + block_protection_bytes_per_key=0 + uncache_aggressiveness=0 + bottommost_file_compaction_delay=0 + memtable_protection_bytes_per_key=0 + experimental_mempurge_threshold=0.000000 + bottommost_compression=kDisableCompressionOption + sample_for_compression=0 + prepopulate_blob_cache=kDisable + blob_file_starting_level=0 + blob_compaction_readahead_size=0 + table_factory=BlockBasedTable + max_successive_merges=0 + max_write_buffer_number=2 + prefix_extractor=nullptr + memtable_huge_page_size=0 + write_buffer_size=10485760 + strict_max_successive_merges=false + arena_block_size=1048576 + level0_file_num_compaction_trigger=4 + report_bg_io_stats=false + inplace_update_num_locks=10000 + memtable_prefix_bloom_size_ratio=0.000000 + level0_stop_writes_trigger=36 + blob_compression_type=kNoCompression + level0_slowdown_writes_trigger=20 + hard_pending_compaction_bytes_limit=274877906944 + target_file_size_multiplier=1 + bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_file_checks=false + blob_garbage_collection_force_threshold=1.000000 + enable_blob_files=false + soft_pending_compaction_bytes_limit=68719476736 + target_file_size_base=67108864 + max_compaction_bytes=1677721600 + disable_auto_compactions=false + min_blob_size=0 + memtable_whole_key_filtering=false + max_bytes_for_level_base=268435456 + last_level_temperature=kUnknown + preserve_internal_time_seconds=0 + compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} + max_bytes_for_level_multiplier=10.000000 + max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 + max_sequential_skip_in_iterations=8 + compression=kLZ4Compression + default_write_temperature=kUnknown + compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} + blob_garbage_collection_age_cutoff=0.250000 + ttl=2592000 + periodic_compaction_seconds=0 + preclude_last_level_data_seconds=0 + blob_file_size=268435456 + enable_blob_garbage_collection=false + persist_user_defined_timestamps=true + compaction_pri=kMinOverlappingRatio + compaction_filter_factory=nullptr + comparator=leveldb.BytewiseComparator + bloom_locality=0 + merge_operator=nullptr + compaction_filter=nullptr + level_compaction_dynamic_level_bytes=true + optimize_filters_for_hits=false + inplace_update_support=false + max_write_buffer_number_to_maintain=0 + max_write_buffer_size_to_maintain=0 + sst_partitioner_factory=nullptr + default_temperature=kUnknown + compaction_style=kCompactionStyleLevel + min_write_buffer_number_to_merge=1 + memtable_factory=SkipListFactory + memtable_insert_with_hint_prefix_extractor=nullptr + force_consistency_checks=true + num_levels=7 + +[TableOptions/BlockBasedTable "vector"] + num_file_reads_for_auto_readahead=2 + initial_auto_readahead_size=8192 + metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} + enable_index_compression=true + verify_compression=false + prepopulate_block_cache=kDisable + format_version=6 + use_delta_encoding=true + pin_top_level_index_and_filter=true + read_amp_bytes_per_bit=0 + decouple_partitioned_filters=false + partition_filters=false + metadata_block_size=4096 + max_auto_readahead_size=262144 + index_block_restart_interval=1 + block_size_deviation=10 + block_size=4096 + detect_filter_construct_corruption=false + no_block_cache=false + checksum=kXXH3 + filter_policy=nullptr + data_block_hash_table_util_ratio=0.750000 + block_restart_interval=16 + index_type=kBinarySearch + pin_l0_filter_and_index_blocks_in_cache=false + data_block_index_type=kDataBlockBinarySearch + cache_index_and_filter_blocks_with_high_priority=true + whole_key_filtering=true + index_shortening=kShortenSeparators + cache_index_and_filter_blocks=false + block_align=false + optimize_filters_for_memory=true + flush_block_policy_factory=FlushBlockBySizePolicyFactory + diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/payload_index/000012.log b/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/payload_index/000012.log new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/payload_index/CURRENT b/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/payload_index/CURRENT new file mode 100644 index 0000000000000000000000000000000000000000..625d147412870471b19d90716ccc20a7f207a5c3 --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/payload_index/CURRENT @@ -0,0 +1 @@ +MANIFEST-000013 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/payload_index/IDENTITY b/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/payload_index/IDENTITY new file mode 100644 index 0000000000000000000000000000000000000000..2aa78113d433df5d3d53724b0f6c0cebb0ae4a18 --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/payload_index/IDENTITY @@ -0,0 +1 @@ +3ded8e25-c741-4a93-a1d5-53f5e2a3a803 \ No newline at end of file diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/payload_index/LOCK b/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/payload_index/LOCK new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/payload_index/LOG b/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/payload_index/LOG new file mode 100644 index 0000000000000000000000000000000000000000..dc72f3ee2bcdbcf78133d0c2e22a4071c4133c42 --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/payload_index/LOG @@ -0,0 +1,247 @@ +2025/05/04-10:09:55.792627 39 RocksDB version: 9.9.3 +2025/05/04-10:09:55.792738 39 Compile date 2024-12-05 01:25:31 +2025/05/04-10:09:55.792740 39 DB SUMMARY +2025/05/04-10:09:55.792742 39 Host name (Env): c5f2a9d061bb +2025/05/04-10:09:55.792743 39 DB Session ID: CD0SHR3DDC5AMRBDXMDJ +2025/05/04-10:09:55.793449 39 CURRENT file: CURRENT +2025/05/04-10:09:55.793450 39 IDENTITY file: IDENTITY +2025/05/04-10:09:55.793499 39 MANIFEST file: MANIFEST-000009 size: 159 Bytes +2025/05/04-10:09:55.793502 39 SST files in ./storage/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/payload_index dir, Total Num: 0, files: +2025/05/04-10:09:55.793503 39 Write Ahead Log file in ./storage/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/payload_index: 000008.log size: 0 ; +2025/05/04-10:09:55.793504 39 Options.error_if_exists: 0 +2025/05/04-10:09:55.793505 39 Options.create_if_missing: 1 +2025/05/04-10:09:55.793506 39 Options.paranoid_checks: 1 +2025/05/04-10:09:55.793507 39 Options.flush_verify_memtable_count: 1 +2025/05/04-10:09:55.793507 39 Options.compaction_verify_record_count: 1 +2025/05/04-10:09:55.793508 39 Options.track_and_verify_wals_in_manifest: 0 +2025/05/04-10:09:55.793509 39 Options.verify_sst_unique_id_in_manifest: 1 +2025/05/04-10:09:55.793510 39 Options.env: 0xffff86034000 +2025/05/04-10:09:55.793511 39 Options.fs: PosixFileSystem +2025/05/04-10:09:55.793512 39 Options.info_log: 0xffff844a2800 +2025/05/04-10:09:55.793513 39 Options.max_file_opening_threads: 16 +2025/05/04-10:09:55.793513 39 Options.statistics: (nil) +2025/05/04-10:09:55.793514 39 Options.use_fsync: 0 +2025/05/04-10:09:55.793515 39 Options.max_log_file_size: 1048576 +2025/05/04-10:09:55.793515 39 Options.max_manifest_file_size: 1073741824 +2025/05/04-10:09:55.793516 39 Options.log_file_time_to_roll: 0 +2025/05/04-10:09:55.793516 39 Options.keep_log_file_num: 1 +2025/05/04-10:09:55.793517 39 Options.recycle_log_file_num: 0 +2025/05/04-10:09:55.793517 39 Options.allow_fallocate: 1 +2025/05/04-10:09:55.793518 39 Options.allow_mmap_reads: 0 +2025/05/04-10:09:55.793518 39 Options.allow_mmap_writes: 0 +2025/05/04-10:09:55.793557 39 Options.use_direct_reads: 0 +2025/05/04-10:09:55.793558 39 Options.use_direct_io_for_flush_and_compaction: 0 +2025/05/04-10:09:55.793559 39 Options.create_missing_column_families: 1 +2025/05/04-10:09:55.793559 39 Options.db_log_dir: +2025/05/04-10:09:55.793560 39 Options.wal_dir: +2025/05/04-10:09:55.793563 39 Options.table_cache_numshardbits: 6 +2025/05/04-10:09:55.793564 39 Options.WAL_ttl_seconds: 0 +2025/05/04-10:09:55.793565 39 Options.WAL_size_limit_MB: 0 +2025/05/04-10:09:55.793565 39 Options.max_write_batch_group_size_bytes: 1048576 +2025/05/04-10:09:55.793566 39 Options.manifest_preallocation_size: 4194304 +2025/05/04-10:09:55.793567 39 Options.is_fd_close_on_exec: 1 +2025/05/04-10:09:55.793567 39 Options.advise_random_on_open: 1 +2025/05/04-10:09:55.793568 39 Options.db_write_buffer_size: 0 +2025/05/04-10:09:55.793568 39 Options.write_buffer_manager: 0xffff8440a200 +2025/05/04-10:09:55.793569 39 Options.random_access_max_buffer_size: 1048576 +2025/05/04-10:09:55.793569 39 Options.use_adaptive_mutex: 0 +2025/05/04-10:09:55.793570 39 Options.rate_limiter: (nil) +2025/05/04-10:09:55.793571 39 Options.sst_file_manager.rate_bytes_per_sec: 0 +2025/05/04-10:09:55.793572 39 Options.wal_recovery_mode: 0 +2025/05/04-10:09:55.793572 39 Options.enable_thread_tracking: 0 +2025/05/04-10:09:55.793573 39 Options.enable_pipelined_write: 0 +2025/05/04-10:09:55.793573 39 Options.unordered_write: 0 +2025/05/04-10:09:55.793574 39 Options.allow_concurrent_memtable_write: 1 +2025/05/04-10:09:55.793575 39 Options.enable_write_thread_adaptive_yield: 1 +2025/05/04-10:09:55.793575 39 Options.write_thread_max_yield_usec: 100 +2025/05/04-10:09:55.793576 39 Options.write_thread_slow_yield_usec: 3 +2025/05/04-10:09:55.793576 39 Options.row_cache: None +2025/05/04-10:09:55.793577 39 Options.wal_filter: None +2025/05/04-10:09:55.793577 39 Options.avoid_flush_during_recovery: 0 +2025/05/04-10:09:55.793578 39 Options.allow_ingest_behind: 0 +2025/05/04-10:09:55.793616 39 Options.two_write_queues: 0 +2025/05/04-10:09:55.793618 39 Options.manual_wal_flush: 0 +2025/05/04-10:09:55.793618 39 Options.wal_compression: 0 +2025/05/04-10:09:55.793620 39 Options.background_close_inactive_wals: 0 +2025/05/04-10:09:55.793622 39 Options.atomic_flush: 0 +2025/05/04-10:09:55.793624 39 Options.avoid_unnecessary_blocking_io: 0 +2025/05/04-10:09:55.793625 39 Options.prefix_seek_opt_in_only: 0 +2025/05/04-10:09:55.793626 39 Options.persist_stats_to_disk: 0 +2025/05/04-10:09:55.793627 39 Options.write_dbid_to_manifest: 1 +2025/05/04-10:09:55.793628 39 Options.write_identity_file: 1 +2025/05/04-10:09:55.793629 39 Options.log_readahead_size: 0 +2025/05/04-10:09:55.793629 39 Options.file_checksum_gen_factory: Unknown +2025/05/04-10:09:55.793630 39 Options.best_efforts_recovery: 0 +2025/05/04-10:09:55.793630 39 Options.max_bgerror_resume_count: 2147483647 +2025/05/04-10:09:55.793631 39 Options.bgerror_resume_retry_interval: 1000000 +2025/05/04-10:09:55.793631 39 Options.allow_data_in_errors: 0 +2025/05/04-10:09:55.793632 39 Options.db_host_id: __hostname__ +2025/05/04-10:09:55.793633 39 Options.enforce_single_del_contracts: true +2025/05/04-10:09:55.793633 39 Options.metadata_write_temperature: kUnknown +2025/05/04-10:09:55.793634 39 Options.wal_write_temperature: kUnknown +2025/05/04-10:09:55.793635 39 Options.max_background_jobs: 2 +2025/05/04-10:09:55.793635 39 Options.max_background_compactions: -1 +2025/05/04-10:09:55.793636 39 Options.max_subcompactions: 1 +2025/05/04-10:09:55.793636 39 Options.avoid_flush_during_shutdown: 0 +2025/05/04-10:09:55.793637 39 Options.writable_file_max_buffer_size: 1048576 +2025/05/04-10:09:55.793637 39 Options.delayed_write_rate : 16777216 +2025/05/04-10:09:55.793675 39 Options.max_total_wal_size: 0 +2025/05/04-10:09:55.793677 39 Options.delete_obsolete_files_period_micros: 180000000 +2025/05/04-10:09:55.793678 39 Options.stats_dump_period_sec: 600 +2025/05/04-10:09:55.793678 39 Options.stats_persist_period_sec: 600 +2025/05/04-10:09:55.793679 39 Options.stats_history_buffer_size: 1048576 +2025/05/04-10:09:55.793679 39 Options.max_open_files: 256 +2025/05/04-10:09:55.793681 39 Options.bytes_per_sync: 0 +2025/05/04-10:09:55.793683 39 Options.wal_bytes_per_sync: 0 +2025/05/04-10:09:55.793684 39 Options.strict_bytes_per_sync: 0 +2025/05/04-10:09:55.793684 39 Options.compaction_readahead_size: 2097152 +2025/05/04-10:09:55.793685 39 Options.max_background_flushes: -1 +2025/05/04-10:09:55.793686 39 Options.daily_offpeak_time_utc: +2025/05/04-10:09:55.793686 39 Compression algorithms supported: +2025/05/04-10:09:55.793687 39 kZSTD supported: 0 +2025/05/04-10:09:55.793688 39 kXpressCompression supported: 0 +2025/05/04-10:09:55.793688 39 kBZip2Compression supported: 0 +2025/05/04-10:09:55.793689 39 kZSTDNotFinalCompression supported: 0 +2025/05/04-10:09:55.793689 39 kLZ4Compression supported: 1 +2025/05/04-10:09:55.793690 39 kZlibCompression supported: 0 +2025/05/04-10:09:55.793691 39 kLZ4HCCompression supported: 1 +2025/05/04-10:09:55.793691 39 kSnappyCompression supported: 1 +2025/05/04-10:09:55.793692 39 Fast CRC32 supported: Not supported on x86 +2025/05/04-10:09:55.793693 39 DMutex implementation: pthread_mutex_t +2025/05/04-10:09:55.793693 39 Jemalloc supported: 0 +2025/05/04-10:09:55.795422 39 Options.comparator: leveldb.BytewiseComparator +2025/05/04-10:09:55.795423 39 Options.merge_operator: None +2025/05/04-10:09:55.795424 39 Options.compaction_filter: None +2025/05/04-10:09:55.795425 39 Options.compaction_filter_factory: None +2025/05/04-10:09:55.795425 39 Options.sst_partitioner_factory: None +2025/05/04-10:09:55.795426 39 Options.memtable_factory: SkipListFactory +2025/05/04-10:09:55.795426 39 Options.table_factory: BlockBasedTable +2025/05/04-10:09:55.795451 39 table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0xffff845e2380) + cache_index_and_filter_blocks: 0 + cache_index_and_filter_blocks_with_high_priority: 1 + pin_l0_filter_and_index_blocks_in_cache: 0 + pin_top_level_index_and_filter: 1 + index_type: 0 + data_block_index_type: 0 + index_shortening: 1 + data_block_hash_table_util_ratio: 0.750000 + checksum: 4 + no_block_cache: 0 + block_cache: 0xffff8440a150 + block_cache_name: LRUCache + block_cache_options: + capacity : 33554432 + num_shard_bits : 6 + strict_capacity_limit : 0 + memory_allocator : None + high_pri_pool_ratio: 0.500 + low_pri_pool_ratio: 0.000 + persistent_cache: (nil) + block_size: 4096 + block_size_deviation: 10 + block_restart_interval: 16 + index_block_restart_interval: 1 + metadata_block_size: 4096 + partition_filters: 0 + use_delta_encoding: 1 + filter_policy: nullptr + whole_key_filtering: 1 + verify_compression: 0 + read_amp_bytes_per_bit: 0 + format_version: 6 + enable_index_compression: 1 + block_align: 0 + max_auto_readahead_size: 262144 + prepopulate_block_cache: 0 + initial_auto_readahead_size: 8192 + num_file_reads_for_auto_readahead: 2 +2025/05/04-10:09:55.795453 39 Options.write_buffer_size: 10485760 +2025/05/04-10:09:55.795454 39 Options.max_write_buffer_number: 2 +2025/05/04-10:09:55.795454 39 Options.compression: LZ4 +2025/05/04-10:09:55.795455 39 Options.bottommost_compression: Disabled +2025/05/04-10:09:55.795456 39 Options.prefix_extractor: nullptr +2025/05/04-10:09:55.795456 39 Options.memtable_insert_with_hint_prefix_extractor: nullptr +2025/05/04-10:09:55.795457 39 Options.num_levels: 7 +2025/05/04-10:09:55.795457 39 Options.min_write_buffer_number_to_merge: 1 +2025/05/04-10:09:55.795458 39 Options.max_write_buffer_number_to_maintain: 0 +2025/05/04-10:09:55.795458 39 Options.max_write_buffer_size_to_maintain: 0 +2025/05/04-10:09:55.795459 39 Options.bottommost_compression_opts.window_bits: -14 +2025/05/04-10:09:55.795460 39 Options.bottommost_compression_opts.level: 32767 +2025/05/04-10:09:55.795460 39 Options.bottommost_compression_opts.strategy: 0 +2025/05/04-10:09:55.795461 39 Options.bottommost_compression_opts.max_dict_bytes: 0 +2025/05/04-10:09:55.795462 39 Options.bottommost_compression_opts.zstd_max_train_bytes: 0 +2025/05/04-10:09:55.795462 39 Options.bottommost_compression_opts.parallel_threads: 1 +2025/05/04-10:09:55.795463 39 Options.bottommost_compression_opts.enabled: false +2025/05/04-10:09:55.795463 39 Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 +2025/05/04-10:09:55.795464 39 Options.bottommost_compression_opts.use_zstd_dict_trainer: true +2025/05/04-10:09:55.795465 39 Options.compression_opts.window_bits: -14 +2025/05/04-10:09:55.795465 39 Options.compression_opts.level: 32767 +2025/05/04-10:09:55.795466 39 Options.compression_opts.strategy: 0 +2025/05/04-10:09:55.795466 39 Options.compression_opts.max_dict_bytes: 0 +2025/05/04-10:09:55.795467 39 Options.compression_opts.zstd_max_train_bytes: 0 +2025/05/04-10:09:55.795468 39 Options.compression_opts.use_zstd_dict_trainer: true +2025/05/04-10:09:55.795468 39 Options.compression_opts.parallel_threads: 1 +2025/05/04-10:09:55.795469 39 Options.compression_opts.enabled: false +2025/05/04-10:09:55.795469 39 Options.compression_opts.max_dict_buffer_bytes: 0 +2025/05/04-10:09:55.795470 39 Options.level0_file_num_compaction_trigger: 4 +2025/05/04-10:09:55.795470 39 Options.level0_slowdown_writes_trigger: 20 +2025/05/04-10:09:55.795471 39 Options.level0_stop_writes_trigger: 36 +2025/05/04-10:09:55.795471 39 Options.target_file_size_base: 67108864 +2025/05/04-10:09:55.795472 39 Options.target_file_size_multiplier: 1 +2025/05/04-10:09:55.795473 39 Options.max_bytes_for_level_base: 268435456 +2025/05/04-10:09:55.795474 39 Options.level_compaction_dynamic_level_bytes: 1 +2025/05/04-10:09:55.795474 39 Options.max_bytes_for_level_multiplier: 10.000000 +2025/05/04-10:09:55.795475 39 Options.max_bytes_for_level_multiplier_addtl[0]: 1 +2025/05/04-10:09:55.795476 39 Options.max_bytes_for_level_multiplier_addtl[1]: 1 +2025/05/04-10:09:55.795476 39 Options.max_bytes_for_level_multiplier_addtl[2]: 1 +2025/05/04-10:09:55.795477 39 Options.max_bytes_for_level_multiplier_addtl[3]: 1 +2025/05/04-10:09:55.795477 39 Options.max_bytes_for_level_multiplier_addtl[4]: 1 +2025/05/04-10:09:55.795478 39 Options.max_bytes_for_level_multiplier_addtl[5]: 1 +2025/05/04-10:09:55.795478 39 Options.max_bytes_for_level_multiplier_addtl[6]: 1 +2025/05/04-10:09:55.795479 39 Options.max_sequential_skip_in_iterations: 8 +2025/05/04-10:09:55.795480 39 Options.max_compaction_bytes: 1677721600 +2025/05/04-10:09:55.795480 39 Options.arena_block_size: 1048576 +2025/05/04-10:09:55.795481 39 Options.soft_pending_compaction_bytes_limit: 68719476736 +2025/05/04-10:09:55.795481 39 Options.hard_pending_compaction_bytes_limit: 274877906944 +2025/05/04-10:09:55.795482 39 Options.disable_auto_compactions: 0 +2025/05/04-10:09:55.795483 39 Options.compaction_style: kCompactionStyleLevel +2025/05/04-10:09:55.795483 39 Options.compaction_pri: kMinOverlappingRatio +2025/05/04-10:09:55.795484 39 Options.compaction_options_universal.size_ratio: 1 +2025/05/04-10:09:55.795484 39 Options.compaction_options_universal.min_merge_width: 2 +2025/05/04-10:09:55.795485 39 Options.compaction_options_universal.max_merge_width: 4294967295 +2025/05/04-10:09:55.795486 39 Options.compaction_options_universal.max_size_amplification_percent: 200 +2025/05/04-10:09:55.795486 39 Options.compaction_options_universal.compression_size_percent: -1 +2025/05/04-10:09:55.795487 39 Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize +2025/05/04-10:09:55.795487 39 Options.compaction_options_universal.max_read_amp: -1 +2025/05/04-10:09:55.795488 39 Options.compaction_options_fifo.max_table_files_size: 1073741824 +2025/05/04-10:09:55.795488 39 Options.compaction_options_fifo.allow_compaction: 0 +2025/05/04-10:09:55.795491 39 Options.table_properties_collectors: +2025/05/04-10:09:55.795491 39 Options.inplace_update_support: 0 +2025/05/04-10:09:55.795492 39 Options.inplace_update_num_locks: 10000 +2025/05/04-10:09:55.795492 39 Options.memtable_prefix_bloom_size_ratio: 0.000000 +2025/05/04-10:09:55.795493 39 Options.memtable_whole_key_filtering: 0 +2025/05/04-10:09:55.795493 39 Options.memtable_huge_page_size: 0 +2025/05/04-10:09:55.795494 39 Options.bloom_locality: 0 +2025/05/04-10:09:55.795495 39 Options.max_successive_merges: 0 +2025/05/04-10:09:55.795495 39 Options.strict_max_successive_merges: 0 +2025/05/04-10:09:55.795496 39 Options.optimize_filters_for_hits: 0 +2025/05/04-10:09:55.795496 39 Options.paranoid_file_checks: 0 +2025/05/04-10:09:55.795497 39 Options.force_consistency_checks: 1 +2025/05/04-10:09:55.795497 39 Options.report_bg_io_stats: 0 +2025/05/04-10:09:55.795498 39 Options.ttl: 2592000 +2025/05/04-10:09:55.795498 39 Options.periodic_compaction_seconds: 0 +2025/05/04-10:09:55.795499 39 Options.default_temperature: kUnknown +2025/05/04-10:09:55.795499 39 Options.preclude_last_level_data_seconds: 0 +2025/05/04-10:09:55.795500 39 Options.preserve_internal_time_seconds: 0 +2025/05/04-10:09:55.795501 39 Options.enable_blob_files: false +2025/05/04-10:09:55.795501 39 Options.min_blob_size: 0 +2025/05/04-10:09:55.795502 39 Options.blob_file_size: 268435456 +2025/05/04-10:09:55.795502 39 Options.blob_compression_type: NoCompression +2025/05/04-10:09:55.795503 39 Options.enable_blob_garbage_collection: false +2025/05/04-10:09:55.795504 39 Options.blob_garbage_collection_age_cutoff: 0.250000 +2025/05/04-10:09:55.795504 39 Options.blob_garbage_collection_force_threshold: 1.000000 +2025/05/04-10:09:55.795505 39 Options.blob_compaction_readahead_size: 0 +2025/05/04-10:09:55.795505 39 Options.blob_file_starting_level: 0 +2025/05/04-10:09:55.795506 39 Options.experimental_mempurge_threshold: 0.000000 +2025/05/04-10:09:55.795507 39 Options.memtable_max_range_deletions: 0 +2025/05/04-10:09:55.808234 39 DB pointer 0xffff84462000 diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/payload_index/MANIFEST-000013 b/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/payload_index/MANIFEST-000013 new file mode 100644 index 0000000000000000000000000000000000000000..a4adf340f0f133a650ff9fd9606807935881a442 Binary files /dev/null and b/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/payload_index/MANIFEST-000013 differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/payload_index/OPTIONS-000011 b/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/payload_index/OPTIONS-000011 new file mode 100644 index 0000000000000000000000000000000000000000..1ff6c6ffcc08e04f8a99e1f459e7b0caa1822cb2 --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/payload_index/OPTIONS-000011 @@ -0,0 +1,214 @@ +# This is a RocksDB option file. +# +# For detailed file format spec, please refer to the example file +# in examples/rocksdb_option_file_example.ini +# + +[Version] + rocksdb_version=9.9.3 + options_file_version=1.1 + +[DBOptions] + compaction_readahead_size=2097152 + strict_bytes_per_sync=false + bytes_per_sync=0 + max_background_jobs=2 + avoid_flush_during_shutdown=false + max_background_flushes=-1 + delayed_write_rate=16777216 + max_open_files=256 + max_subcompactions=1 + writable_file_max_buffer_size=1048576 + wal_bytes_per_sync=0 + max_background_compactions=-1 + max_total_wal_size=0 + delete_obsolete_files_period_micros=180000000 + stats_dump_period_sec=600 + stats_history_buffer_size=1048576 + stats_persist_period_sec=600 + follower_refresh_catchup_period_ms=10000 + enforce_single_del_contracts=true + lowest_used_cache_tier=kNonVolatileBlockTier + bgerror_resume_retry_interval=1000000 + metadata_write_temperature=kUnknown + best_efforts_recovery=false + log_readahead_size=0 + write_identity_file=true + write_dbid_to_manifest=true + prefix_seek_opt_in_only=false + wal_compression=kNoCompression + manual_wal_flush=false + db_host_id=__hostname__ + two_write_queues=false + random_access_max_buffer_size=1048576 + avoid_unnecessary_blocking_io=false + skip_checking_sst_file_sizes_on_db_open=false + flush_verify_memtable_count=true + fail_if_options_file_error=true + atomic_flush=false + verify_sst_unique_id_in_manifest=true + skip_stats_update_on_db_open=false + track_and_verify_wals_in_manifest=false + compaction_verify_record_count=true + paranoid_checks=true + create_if_missing=true + max_write_batch_group_size_bytes=1048576 + follower_catchup_retry_count=10 + avoid_flush_during_recovery=false + file_checksum_gen_factory=nullptr + enable_thread_tracking=false + allow_fallocate=true + allow_data_in_errors=false + error_if_exists=false + use_direct_io_for_flush_and_compaction=false + background_close_inactive_wals=false + create_missing_column_families=true + WAL_size_limit_MB=0 + use_direct_reads=false + persist_stats_to_disk=false + allow_2pc=false + is_fd_close_on_exec=true + max_log_file_size=1048576 + max_file_opening_threads=16 + wal_filter=nullptr + wal_write_temperature=kUnknown + follower_catchup_retry_wait_ms=100 + allow_mmap_reads=false + allow_mmap_writes=false + use_adaptive_mutex=false + use_fsync=false + table_cache_numshardbits=6 + dump_malloc_stats=false + db_write_buffer_size=0 + allow_ingest_behind=false + keep_log_file_num=1 + max_bgerror_resume_count=2147483647 + allow_concurrent_memtable_write=true + recycle_log_file_num=0 + log_file_time_to_roll=0 + manifest_preallocation_size=4194304 + enable_write_thread_adaptive_yield=true + WAL_ttl_seconds=0 + max_manifest_file_size=1073741824 + wal_recovery_mode=kTolerateCorruptedTailRecords + enable_pipelined_write=false + write_thread_slow_yield_usec=3 + unordered_write=false + write_thread_max_yield_usec=100 + advise_random_on_open=true + info_log_level=ERROR_LEVEL + + +[CFOptions "default"] + memtable_max_range_deletions=0 + compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_memory_checks=false + block_protection_bytes_per_key=0 + uncache_aggressiveness=0 + bottommost_file_compaction_delay=0 + memtable_protection_bytes_per_key=0 + experimental_mempurge_threshold=0.000000 + bottommost_compression=kDisableCompressionOption + sample_for_compression=0 + prepopulate_blob_cache=kDisable + blob_file_starting_level=0 + blob_compaction_readahead_size=0 + table_factory=BlockBasedTable + max_successive_merges=0 + max_write_buffer_number=2 + prefix_extractor=nullptr + memtable_huge_page_size=0 + write_buffer_size=10485760 + strict_max_successive_merges=false + arena_block_size=1048576 + level0_file_num_compaction_trigger=4 + report_bg_io_stats=false + inplace_update_num_locks=10000 + memtable_prefix_bloom_size_ratio=0.000000 + level0_stop_writes_trigger=36 + blob_compression_type=kNoCompression + level0_slowdown_writes_trigger=20 + hard_pending_compaction_bytes_limit=274877906944 + target_file_size_multiplier=1 + bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_file_checks=false + blob_garbage_collection_force_threshold=1.000000 + enable_blob_files=false + soft_pending_compaction_bytes_limit=68719476736 + target_file_size_base=67108864 + max_compaction_bytes=1677721600 + disable_auto_compactions=false + min_blob_size=0 + memtable_whole_key_filtering=false + max_bytes_for_level_base=268435456 + last_level_temperature=kUnknown + preserve_internal_time_seconds=0 + compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} + max_bytes_for_level_multiplier=10.000000 + max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 + max_sequential_skip_in_iterations=8 + compression=kLZ4Compression + default_write_temperature=kUnknown + compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} + blob_garbage_collection_age_cutoff=0.250000 + ttl=2592000 + periodic_compaction_seconds=0 + preclude_last_level_data_seconds=0 + blob_file_size=268435456 + enable_blob_garbage_collection=false + persist_user_defined_timestamps=true + compaction_pri=kMinOverlappingRatio + compaction_filter_factory=nullptr + comparator=leveldb.BytewiseComparator + bloom_locality=0 + merge_operator=nullptr + compaction_filter=nullptr + level_compaction_dynamic_level_bytes=true + optimize_filters_for_hits=false + inplace_update_support=false + max_write_buffer_number_to_maintain=0 + max_write_buffer_size_to_maintain=0 + sst_partitioner_factory=nullptr + default_temperature=kUnknown + compaction_style=kCompactionStyleLevel + min_write_buffer_number_to_merge=1 + memtable_factory=SkipListFactory + memtable_insert_with_hint_prefix_extractor=nullptr + force_consistency_checks=true + num_levels=7 + +[TableOptions/BlockBasedTable "default"] + num_file_reads_for_auto_readahead=2 + initial_auto_readahead_size=8192 + metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} + enable_index_compression=true + verify_compression=false + prepopulate_block_cache=kDisable + format_version=6 + use_delta_encoding=true + pin_top_level_index_and_filter=true + read_amp_bytes_per_bit=0 + decouple_partitioned_filters=false + partition_filters=false + metadata_block_size=4096 + max_auto_readahead_size=262144 + index_block_restart_interval=1 + block_size_deviation=10 + block_size=4096 + detect_filter_construct_corruption=false + no_block_cache=false + checksum=kXXH3 + filter_policy=nullptr + data_block_hash_table_util_ratio=0.750000 + block_restart_interval=16 + index_type=kBinarySearch + pin_l0_filter_and_index_blocks_in_cache=false + data_block_index_type=kDataBlockBinarySearch + cache_index_and_filter_blocks_with_high_priority=true + whole_key_filtering=true + index_shortening=kShortenSeparators + cache_index_and_filter_blocks=false + block_align=false + optimize_filters_for_memory=true + flush_block_policy_factory=FlushBlockBySizePolicyFactory + diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/payload_index/OPTIONS-000015 b/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/payload_index/OPTIONS-000015 new file mode 100644 index 0000000000000000000000000000000000000000..1ff6c6ffcc08e04f8a99e1f459e7b0caa1822cb2 --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/payload_index/OPTIONS-000015 @@ -0,0 +1,214 @@ +# This is a RocksDB option file. +# +# For detailed file format spec, please refer to the example file +# in examples/rocksdb_option_file_example.ini +# + +[Version] + rocksdb_version=9.9.3 + options_file_version=1.1 + +[DBOptions] + compaction_readahead_size=2097152 + strict_bytes_per_sync=false + bytes_per_sync=0 + max_background_jobs=2 + avoid_flush_during_shutdown=false + max_background_flushes=-1 + delayed_write_rate=16777216 + max_open_files=256 + max_subcompactions=1 + writable_file_max_buffer_size=1048576 + wal_bytes_per_sync=0 + max_background_compactions=-1 + max_total_wal_size=0 + delete_obsolete_files_period_micros=180000000 + stats_dump_period_sec=600 + stats_history_buffer_size=1048576 + stats_persist_period_sec=600 + follower_refresh_catchup_period_ms=10000 + enforce_single_del_contracts=true + lowest_used_cache_tier=kNonVolatileBlockTier + bgerror_resume_retry_interval=1000000 + metadata_write_temperature=kUnknown + best_efforts_recovery=false + log_readahead_size=0 + write_identity_file=true + write_dbid_to_manifest=true + prefix_seek_opt_in_only=false + wal_compression=kNoCompression + manual_wal_flush=false + db_host_id=__hostname__ + two_write_queues=false + random_access_max_buffer_size=1048576 + avoid_unnecessary_blocking_io=false + skip_checking_sst_file_sizes_on_db_open=false + flush_verify_memtable_count=true + fail_if_options_file_error=true + atomic_flush=false + verify_sst_unique_id_in_manifest=true + skip_stats_update_on_db_open=false + track_and_verify_wals_in_manifest=false + compaction_verify_record_count=true + paranoid_checks=true + create_if_missing=true + max_write_batch_group_size_bytes=1048576 + follower_catchup_retry_count=10 + avoid_flush_during_recovery=false + file_checksum_gen_factory=nullptr + enable_thread_tracking=false + allow_fallocate=true + allow_data_in_errors=false + error_if_exists=false + use_direct_io_for_flush_and_compaction=false + background_close_inactive_wals=false + create_missing_column_families=true + WAL_size_limit_MB=0 + use_direct_reads=false + persist_stats_to_disk=false + allow_2pc=false + is_fd_close_on_exec=true + max_log_file_size=1048576 + max_file_opening_threads=16 + wal_filter=nullptr + wal_write_temperature=kUnknown + follower_catchup_retry_wait_ms=100 + allow_mmap_reads=false + allow_mmap_writes=false + use_adaptive_mutex=false + use_fsync=false + table_cache_numshardbits=6 + dump_malloc_stats=false + db_write_buffer_size=0 + allow_ingest_behind=false + keep_log_file_num=1 + max_bgerror_resume_count=2147483647 + allow_concurrent_memtable_write=true + recycle_log_file_num=0 + log_file_time_to_roll=0 + manifest_preallocation_size=4194304 + enable_write_thread_adaptive_yield=true + WAL_ttl_seconds=0 + max_manifest_file_size=1073741824 + wal_recovery_mode=kTolerateCorruptedTailRecords + enable_pipelined_write=false + write_thread_slow_yield_usec=3 + unordered_write=false + write_thread_max_yield_usec=100 + advise_random_on_open=true + info_log_level=ERROR_LEVEL + + +[CFOptions "default"] + memtable_max_range_deletions=0 + compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_memory_checks=false + block_protection_bytes_per_key=0 + uncache_aggressiveness=0 + bottommost_file_compaction_delay=0 + memtable_protection_bytes_per_key=0 + experimental_mempurge_threshold=0.000000 + bottommost_compression=kDisableCompressionOption + sample_for_compression=0 + prepopulate_blob_cache=kDisable + blob_file_starting_level=0 + blob_compaction_readahead_size=0 + table_factory=BlockBasedTable + max_successive_merges=0 + max_write_buffer_number=2 + prefix_extractor=nullptr + memtable_huge_page_size=0 + write_buffer_size=10485760 + strict_max_successive_merges=false + arena_block_size=1048576 + level0_file_num_compaction_trigger=4 + report_bg_io_stats=false + inplace_update_num_locks=10000 + memtable_prefix_bloom_size_ratio=0.000000 + level0_stop_writes_trigger=36 + blob_compression_type=kNoCompression + level0_slowdown_writes_trigger=20 + hard_pending_compaction_bytes_limit=274877906944 + target_file_size_multiplier=1 + bottommost_compression_opts={checksum=false;max_dict_buffer_bytes=0;enabled=false;max_dict_bytes=0;max_compressed_bytes_per_kb=896;parallel_threads=1;zstd_max_train_bytes=0;level=32767;use_zstd_dict_trainer=true;strategy=0;window_bits=-14;} + paranoid_file_checks=false + blob_garbage_collection_force_threshold=1.000000 + enable_blob_files=false + soft_pending_compaction_bytes_limit=68719476736 + target_file_size_base=67108864 + max_compaction_bytes=1677721600 + disable_auto_compactions=false + min_blob_size=0 + memtable_whole_key_filtering=false + max_bytes_for_level_base=268435456 + last_level_temperature=kUnknown + preserve_internal_time_seconds=0 + compaction_options_fifo={file_temperature_age_thresholds=;allow_compaction=false;age_for_warm=0;max_table_files_size=1073741824;} + max_bytes_for_level_multiplier=10.000000 + max_bytes_for_level_multiplier_additional=1:1:1:1:1:1:1 + max_sequential_skip_in_iterations=8 + compression=kLZ4Compression + default_write_temperature=kUnknown + compaction_options_universal={incremental=false;compression_size_percent=-1;allow_trivial_move=false;max_size_amplification_percent=200;max_merge_width=4294967295;stop_style=kCompactionStopStyleTotalSize;min_merge_width=2;max_read_amp=-1;size_ratio=1;} + blob_garbage_collection_age_cutoff=0.250000 + ttl=2592000 + periodic_compaction_seconds=0 + preclude_last_level_data_seconds=0 + blob_file_size=268435456 + enable_blob_garbage_collection=false + persist_user_defined_timestamps=true + compaction_pri=kMinOverlappingRatio + compaction_filter_factory=nullptr + comparator=leveldb.BytewiseComparator + bloom_locality=0 + merge_operator=nullptr + compaction_filter=nullptr + level_compaction_dynamic_level_bytes=true + optimize_filters_for_hits=false + inplace_update_support=false + max_write_buffer_number_to_maintain=0 + max_write_buffer_size_to_maintain=0 + sst_partitioner_factory=nullptr + default_temperature=kUnknown + compaction_style=kCompactionStyleLevel + min_write_buffer_number_to_merge=1 + memtable_factory=SkipListFactory + memtable_insert_with_hint_prefix_extractor=nullptr + force_consistency_checks=true + num_levels=7 + +[TableOptions/BlockBasedTable "default"] + num_file_reads_for_auto_readahead=2 + initial_auto_readahead_size=8192 + metadata_cache_options={unpartitioned_pinning=kFallback;partition_pinning=kFallback;top_level_index_pinning=kFallback;} + enable_index_compression=true + verify_compression=false + prepopulate_block_cache=kDisable + format_version=6 + use_delta_encoding=true + pin_top_level_index_and_filter=true + read_amp_bytes_per_bit=0 + decouple_partitioned_filters=false + partition_filters=false + metadata_block_size=4096 + max_auto_readahead_size=262144 + index_block_restart_interval=1 + block_size_deviation=10 + block_size=4096 + detect_filter_construct_corruption=false + no_block_cache=false + checksum=kXXH3 + filter_policy=nullptr + data_block_hash_table_util_ratio=0.750000 + block_restart_interval=16 + index_type=kBinarySearch + pin_l0_filter_and_index_blocks_in_cache=false + data_block_index_type=kDataBlockBinarySearch + cache_index_and_filter_blocks_with_high_priority=true + whole_key_filtering=true + index_shortening=kShortenSeparators + cache_index_and_filter_blocks=false + block_align=false + optimize_filters_for_memory=true + flush_block_policy_factory=FlushBlockBySizePolicyFactory + diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/payload_index/config.json b/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/payload_index/config.json new file mode 100644 index 0000000000000000000000000000000000000000..7d0db25a817fdb0c73414e2809921889f6ff065f --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/payload_index/config.json @@ -0,0 +1 @@ +{"indexed_fields":{},"skip_rocksdb":null} \ No newline at end of file diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/payload_storage/bitmask.dat b/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/payload_storage/bitmask.dat new file mode 100644 index 0000000000000000000000000000000000000000..e0d0c5bf4751e7e00270a5c2aa3f08a92765c09f Binary files /dev/null and b/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/payload_storage/bitmask.dat differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/payload_storage/config.json b/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/payload_storage/config.json new file mode 100644 index 0000000000000000000000000000000000000000..9477c128b4ebf57927ba47096ca8af9166799c4f --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/payload_storage/config.json @@ -0,0 +1 @@ +{"page_size_bytes":33554432,"block_size_bytes":128,"region_size_blocks":8192,"compression":"LZ4"} \ No newline at end of file diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/payload_storage/gaps.dat b/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/payload_storage/gaps.dat new file mode 100644 index 0000000000000000000000000000000000000000..02b7dc33266575d3cc077b4b84b5f7081b581245 Binary files /dev/null and b/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/payload_storage/gaps.dat differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/payload_storage/page_0.dat b/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/payload_storage/page_0.dat new file mode 100644 index 0000000000000000000000000000000000000000..52326e9d884cc6bf36319224a7bcfc3c17a0b0ec Binary files /dev/null and b/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/payload_storage/page_0.dat differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/payload_storage/tracker.dat b/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/payload_storage/tracker.dat new file mode 100644 index 0000000000000000000000000000000000000000..a2456c0a6d16cfdc15a0e0e1fb568c80fb391df2 Binary files /dev/null and b/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/payload_storage/tracker.dat differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/segment.json b/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/segment.json new file mode 100644 index 0000000000000000000000000000000000000000..920ce0ce2da570e83839f8f95d1675a530971102 --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/segment.json @@ -0,0 +1 @@ +{"version":16,"config":{"vector_data":{"":{"size":1536,"distance":"Cosine","storage_type":"InRamChunkedMmap","index":{"type":"plain","options":{}},"quantization_config":null}},"payload_storage_type":{"type":"mmap"}}} \ No newline at end of file diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/vector_storage/deleted/flags_a.dat b/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/vector_storage/deleted/flags_a.dat new file mode 100644 index 0000000000000000000000000000000000000000..9e0f96a2a253b173cb45b41868209a5d043e1437 Binary files /dev/null and b/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/vector_storage/deleted/flags_a.dat differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/vector_storage/deleted/status.dat b/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/vector_storage/deleted/status.dat new file mode 100644 index 0000000000000000000000000000000000000000..e6e47170f4818134d105f00f97f6607cf0e8787c Binary files /dev/null and b/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/vector_storage/deleted/status.dat differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/vector_storage/vectors/chunk_0.mmap b/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/vector_storage/vectors/chunk_0.mmap new file mode 100644 index 0000000000000000000000000000000000000000..9b5379d2d745ea7b08709c8dafb8aab87ed4ebab Binary files /dev/null and b/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/vector_storage/vectors/chunk_0.mmap differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/vector_storage/vectors/config.json b/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/vector_storage/vectors/config.json new file mode 100644 index 0000000000000000000000000000000000000000..ff57a41ff8c6af2be033c6652e21559c49b5a9fa --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/vector_storage/vectors/config.json @@ -0,0 +1 @@ +{"chunk_size_bytes":33552384,"chunk_size_vectors":5461,"dim":1536,"mlock":false,"populate":true} \ No newline at end of file diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/vector_storage/vectors/status.dat b/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/vector_storage/vectors/status.dat new file mode 100644 index 0000000000000000000000000000000000000000..9d8f77266ff52558d7059beb446a08d8bcf9afb0 Binary files /dev/null and b/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/vector_storage/vectors/status.dat differ diff --git a/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/version.info b/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/version.info new file mode 100644 index 0000000000000000000000000000000000000000..09a3acfa138db01dc50a688796b2861638c369ec --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/segments/e3b3a0b6-8893-46c2-8288-9c9ee1228d9d/version.info @@ -0,0 +1 @@ +0.6.0 \ No newline at end of file diff --git a/data/qdrant_db/collections/transfer_rag/0/shard_config.json b/data/qdrant_db/collections/transfer_rag/0/shard_config.json new file mode 100644 index 0000000000000000000000000000000000000000..e14dc07ec4cf7027b313e7e4a2e88bb82ac44248 --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/shard_config.json @@ -0,0 +1 @@ +{"type":"ReplicaSet"} \ No newline at end of file diff --git a/data/qdrant_db/collections/transfer_rag/0/wal/first-index b/data/qdrant_db/collections/transfer_rag/0/wal/first-index new file mode 100644 index 0000000000000000000000000000000000000000..84d99ae8f21e0208f942d8affd67ca9e01421ad5 --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/0/wal/first-index @@ -0,0 +1 @@ +{"ack_index":18} \ No newline at end of file diff --git a/data/qdrant_db/collections/transfer_rag/0/wal/open-1 b/data/qdrant_db/collections/transfer_rag/0/wal/open-1 new file mode 100644 index 0000000000000000000000000000000000000000..ec5bc2fa182e7a0e902156f65be5fde6be620059 Binary files /dev/null and b/data/qdrant_db/collections/transfer_rag/0/wal/open-1 differ diff --git a/data/qdrant_db/collections/transfer_rag/0/wal/open-2 b/data/qdrant_db/collections/transfer_rag/0/wal/open-2 new file mode 100644 index 0000000000000000000000000000000000000000..2209a0ee53b426c7de0c3264265305f53ca29f25 Binary files /dev/null and b/data/qdrant_db/collections/transfer_rag/0/wal/open-2 differ diff --git a/data/qdrant_db/collections/transfer_rag/config.json b/data/qdrant_db/collections/transfer_rag/config.json new file mode 100644 index 0000000000000000000000000000000000000000..5bb0ed4851b7c67079a3aa271160a4bc37a7bba6 --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/config.json @@ -0,0 +1 @@ +{"params":{"vectors":{"size":1536,"distance":"Cosine"},"shard_number":1,"replication_factor":1,"write_consistency_factor":1,"on_disk_payload":true},"hnsw_config":{"m":16,"ef_construct":100,"full_scan_threshold":10000,"max_indexing_threads":0,"on_disk":false},"optimizer_config":{"deleted_threshold":0.2,"vacuum_min_vector_number":1000,"default_segment_number":0,"max_segment_size":null,"memmap_threshold":null,"indexing_threshold":10000,"flush_interval_sec":5,"max_optimization_threads":null},"wal_config":{"wal_capacity_mb":32,"wal_segments_ahead":0},"quantization_config":null,"strict_mode_config":{"enabled":false},"uuid":null} \ No newline at end of file diff --git a/data/qdrant_db/collections/transfer_rag/shard_key_mapping.json b/data/qdrant_db/collections/transfer_rag/shard_key_mapping.json new file mode 100644 index 0000000000000000000000000000000000000000..9e26dfeeb6e641a33dae4961196235bdb965b21b --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/shard_key_mapping.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/qdrant_db/collections/transfer_rag/version.info b/data/qdrant_db/collections/transfer_rag/version.info new file mode 100644 index 0000000000000000000000000000000000000000..f7abe273d307f8cd6a620d1b440e814d3eedb24f --- /dev/null +++ b/data/qdrant_db/collections/transfer_rag/version.info @@ -0,0 +1 @@ +0.4.2 \ No newline at end of file diff --git a/data/qdrant_db/raft_state.json b/data/qdrant_db/raft_state.json new file mode 100644 index 0000000000000000000000000000000000000000..ea964cda682ab056666d7809fb7c6de7250137cd --- /dev/null +++ b/data/qdrant_db/raft_state.json @@ -0,0 +1 @@ +{"state":{"hard_state":{"term":0,"vote":0,"commit":0},"conf_state":{"voters":[5245814135951757],"learners":[],"voters_outgoing":[],"learners_next":[],"auto_leave":false}},"latest_snapshot_meta":{"term":0,"index":0},"apply_progress_queue":null,"first_voter":5245814135951757,"peer_address_by_id":{},"peer_metadata_by_id":{},"this_peer_id":5245814135951757} \ No newline at end of file diff --git a/data/raw/INSPIRER_Schlussbericht.pdf b/data/raw/INSPIRER_Schlussbericht.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d85b215a0bd4ec0dfad7e85f76e0cf199501275e Binary files /dev/null and b/data/raw/INSPIRER_Schlussbericht.pdf differ diff --git a/data/raw/Kreye_Marieke_BA_241_V2.pdf b/data/raw/Kreye_Marieke_BA_241_V2.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1ff02dbfd3f350a6a8f11e796a195a8b3406356c Binary files /dev/null and b/data/raw/Kreye_Marieke_BA_241_V2.pdf differ diff --git a/data/raw/Kuhnle_Jakob_BA_241.pdf b/data/raw/Kuhnle_Jakob_BA_241.pdf new file mode 100644 index 0000000000000000000000000000000000000000..9823b45f864a0e2279e34d57088d0c0d37c01ee8 Binary files /dev/null and b/data/raw/Kuhnle_Jakob_BA_241.pdf differ diff --git a/data/raw/SCS_WiSe24-25_Savalskii_Denis-Thesis.pdf b/data/raw/SCS_WiSe24-25_Savalskii_Denis-Thesis.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d09293f7a110b86e23050bd5b9d28bddfec560b4 Binary files /dev/null and b/data/raw/SCS_WiSe24-25_Savalskii_Denis-Thesis.pdf differ diff --git a/data/raw/Thesis_Verladegeraeusche_in_Speditionen.pdf b/data/raw/Thesis_Verladegeraeusche_in_Speditionen.pdf new file mode 100644 index 0000000000000000000000000000000000000000..9ca413b2cb65e3b23727872c168472aa96e004b6 Binary files /dev/null and b/data/raw/Thesis_Verladegeraeusche_in_Speditionen.pdf differ diff --git a/data/raw/Wurzbacher-Schulze-et_al_Pro_La-Fellbach_2025.pdf b/data/raw/Wurzbacher-Schulze-et_al_Pro_La-Fellbach_2025.pdf new file mode 100644 index 0000000000000000000000000000000000000000..3e9b2a86ae2d8757343e8a7d9d6b9f632ee3e387 Binary files /dev/null and b/data/raw/Wurzbacher-Schulze-et_al_Pro_La-Fellbach_2025.pdf differ diff --git a/data/raw/paper.txt b/data/raw/paper.txt new file mode 100644 index 0000000000000000000000000000000000000000..2756c4113e272cef76939620d791cd7bff50e71d --- /dev/null +++ b/data/raw/paper.txt @@ -0,0 +1,69 @@ +IMPLEMENTING GENERATIVE AI IN ACADEMIC WRITING +SEMINARS +A. Höpner, D. Uckelmann +Stuttgart University of Applied Sciences (HFT Stuttgart) (GERMANY) +Abstract +Generative AI, including technologies like ChatGPT, is profoundly influencing academic writing seminars +in higher education. For this reason, the use of AI tools was implemented in a case study in a structured +and scientifically validated master’s seminar on academic writing. The one-semester seminar covers both +business and engineering disciplines. It utilizes a defined workflow for writing an academic paper in a +guided process. The new approach is that working with generative AI, e.g., ChatGPT 4.0, as an up-to-date +technology is explicitly recommended, and corresponding licenses are provided to offer all participants +equal conditions. Through practice and reflection students are sensitized for a productive, but also +scientifically honest and responsible handling of AI tools. Data protection considerations are discussed. +Practical experimentation and in-process exercises help students to assess the quality of LLM output. +Surveys and observations are conducted before and during the writing process and a final investigation at +the end of the semester is planned to investigate which AI tools are currently chosen by novice writers and +how they are used. The study evaluates the benefits of generative AI for academic writing in higher +education and gives recommendations for its integration into academic writing instruction. +Keywords: Academic writing, scientific writing, AI, LLM, ChatGPT, writing seminar, higher education. +1 CHANGES IN WRITING INSTRUCTIONS ARE NECESSARY +Academic research and especially academic writing processes are changing significantly with the easy +availability of generative AI tools. It’s obvious that these innovations have to be considered in higher +education curricula, and existing academic writing seminars need to adjust to the disruptive changes +through generative AI. +1.1 An existing writing seminar as a validated starting point +A well-established and scientifically validated master’s seminar on academic writing was selected as a +secured basis to be able to observe, document, and analyze changes caused by AI. The concept, +development, and results of the chosen seminar have already been reported [1], [2]. +1.1.1 Characteristics of the chosen seminar +The one-semester seminar is part of the “Green Logistics” Master’s business degree program and is +carried out over a period of 15 weeks. Following a “writing lab” approach, weekly sessions of 1.5 hours +each are held in a workshop style, with few lectures mainly at the beginning of the course. Students +work together in small groups of two or three, with the goal of writing their first scientific short publication +in non-indexed peer-reviewed journals. +The seminar has been performed annually since 2018, following the same writing lab concept and +structure, with regular adjustments based on annual evaluations. +1.1.2 A compact, specialized LMS +A compact learning management system (LMS), specialized for the scientific writing process, has been +in use from 2020 onwards. The so-called “Scientific Workflow Guide” (SWOFI) is the main tool to guide +the workflow, provide self-learning material, manage peer-reviews, and collect uploads (s. Table 1). [2] +Proceedings of EDULEARN24 Conference +1st-3rd July 2024, Palma, Mallorca, Spain +ISBN: 978-84-09-62938-1 4998 +Table 1. Academic writing workflow in the specialized learning management system SWOFI. +Pre-defined steps in SWOFI for academic writing Upload required +1. Topic selection out of a surplus of available topics provided by the lecturer +2. Test peer-review of previous seminar publications with a given review sheet x +3. Provide a structured literature research including search prompts and results x +4. Identify and name research questions / problem statement +5. Provide outline x ++ presentation +6. Write initial abstract x +7. Iterative writing lab phases x (last iteration) +8. Peer-review x +9. Paper finalization based on the feedback x +[Following steps, e.g., presentation, submission, self-reflection and grading, are not +considered within SWOFI as of now.] +1.2 Updating the concept of the seminar +Revision of writing seminar curricula is unavoidable, on the one hand to respond to the new +developments that students can now benefit from, and on the other hand to exploit the potential of +generative AI. +AI technologies enhance the learning experience by providing students with immediate feedback on +their writing, thereby facilitating a more iterative and dynamic learning process. ChatGPT and other +generative AI-offerings can serve as a tool for brainstorming, literature research and revising texts, +allowing students to explore different writing styles and structures efficiently, and peer-review +improvements. However, using these AI-tools requires students to consider the ethical dimensions of AI +use, including questions of authorship and originality, which are crucial in academic context. Thus, +integration of AI encourages both technical and critical thinking skills, preparing students for a digitized +professional environment where such tools are increasingly prevalent. \ No newline at end of file diff --git a/data/raw/test.pdf b/data/raw/test.pdf new file mode 100644 index 0000000000000000000000000000000000000000..edd285aff4a70be7afe422e1a73de7e95759f9e9 Binary files /dev/null and b/data/raw/test.pdf differ diff --git a/debug_elements.txt b/debug_elements.txt new file mode 100644 index 0000000000000000000000000000000000000000..9ff8dbe382a0ccad38d7e267d793caddcbf23189 --- /dev/null +++ b/debug_elements.txt @@ -0,0 +1,11125 @@ + +=== Element 0 === +Category: Image +Text: +Metadata: + +=== Element 1 === +Category: Title +Text: Studiengang Bauphysik +Metadata: + +=== Element 2 === +Category: Title +Text: Verladegeräusche in Speditionen +Metadata: + +=== Element 3 === +Category: NarrativeText +Text: Bachelorarbeit zur Erlangung des akademischen Grades Bachelor of Engineering +Metadata: + +=== Element 4 === +Category: Title +Text: vorgelegt von +Metadata: + +=== Element 5 === +Category: Title +Text: Selin Karagöz +Metadata: + +=== Element 6 === +Category: Title +Text: Matrikelnummer +Metadata: + +=== Element 7 === +Category: Title +Text: Matrikelnummer +Metadata: + +=== Element 8 === +Category: UncategorizedText +Text: 610260 +Metadata: + +=== Element 9 === +Category: NarrativeText +Text: Eingereicht am +Metadata: + +=== Element 10 === +Category: UncategorizedText +Text: 30.06.2023 +Metadata: + +=== Element 11 === +Category: NarrativeText +Text: Erstgutachter Prof. Dr. Karl Georg Degen Zweitgutachter Prof. Dr.-Ing. Berndt Zeitler externer Betreuer Dipl.-Ing (FH) Bauphysik Thomas Heine Heine und Jud, Forststraße 9, 70174 Stuttgart +Metadata: + +=== Element 12 === +Category: Header +Text: Kurzfassung +Metadata: + +=== Element 13 === +Category: Title +Text: Kurzfassung +Metadata: + +=== Element 14 === +Category: NarrativeText +Text: Die Logistik spielt eine entscheidende Rolle in der globalen Wirtschaft, doch sie geht auch mit einer unvermeidlichen Lärmbelastung einher. Diese Arbeit konzentriert sich auf die Analyse und Bewertung von Verladetätigkeiten in Speditionen mit verschiedenen Flurfördergeräten und Anhängern. Ziel ist es, Emissionsdatenblätter für Verladetätigkei- ten mit bestimmten Flurfördergeräten und Anhängern zu erstellen, die als Grundlage für Schallimmissionsprognosen dienen können. Weiterhin werden mögliche Lärmmin- derungsmaßnahmen aufgezeigt. +Metadata: + +=== Element 15 === +Category: NarrativeText +Text: Im Rahmen der Untersuchung wurde der Schalldruck im Fernfeld gemessen, wobei das Hüllflächen-Verfahren zur Ermittlung der Schallleistung angewendet wurde. Zusätzlich wurde die Richtcharakteristik entlang einer Kreisbahn im Nahfeld analysiert. Es wurde zudem eine Vergleichsanalyse der simulierten Messergebnisse mit den tatsächlichen Messungen durchgeführt, um die Genauigkeit der berechneten Kenngrößen zu überprü- fen und Abweichungen zu interpretieren. Die Ergebnisse zeigen, dass die Beladung mit einem Gabelstapler und einem Gabelhubwagen ähnliche Schallleistungspegel aufwei- sen. Allerdings gibt es Unterschiede in der Impulshaftigkeit der Geräuschentwicklung. Der Gabelhubwagen erzeugt mehr impulsartige Schallereignisse, während der Gabel- stapler eine kontinuierlichere Geräuschabstrahlung aufweist. Es gibt gewisse Variatio- nen der Schallleistungspegel je nach Flurfördergerät und Anhängertyp, jedoch zeigt sich kein signifikanter Unterschied zwischen den Beladevorgängen der Flurfördergeräte in den verschiedenen Anhängern, was auf eine gewisse Ähnlichkeit hinweist (siehe Tabelle 1). Die Schallabstrahlung der Flurfördergeräte erfolgt weitestgehend in alle Richtungen, +Metadata: + +=== Element 16 === +Category: Title +Text: ohne eine ausgeprägte Richtcharakteristik aufzuweisen. +Metadata: + +=== Element 17 === +Category: Table +Text: Anzahl Max-Pegel Schallleistungspegel Flurfördergerät | Einzelereignisse LAFmax LWA,5s LWAmax LWA,1h Kl LWAT,1h El [dB(A)] [dB(A)] [dB(A)] [dB(A)] [dB(A)] [dB(A)] Gabelstapler 297 69,3 100,7 108,8 72,1 5,7 77,8 STABW [dB] 6,5 4,9 6,5 4,9 2,9 - Gabelhubwagen 99 68,6 100,7 108,1 72,1 6,2 79,5 STABW [dB] 6,4 5,1 6,4 51 2,7 - +Metadata: + +=== Element 18 === +Category: Title +Text: I +Metadata: + +=== Element 19 === +Category: Header +Text: Kurzfassung +Metadata: + +=== Element 20 === +Category: Table +Text: Anzahl Max-Pegel Schallleistungspegel Flurfördergerät | Anhänger-Typ lEinzelereignissel LArmax | LWASs LWAmax LWA‚Ih Kl LWAT,Ih [ie [dB(A)] [dB(A)] [dB(A)] [dB(A)] [dB(A}] [dB{A)] Tautliner 36 73,1 103,1 112,5 74,6 6,9 81,5 STABW [dB] 7,1 4,8 71 4,8 2,9 - Koffer 68,3 100,1 107,9 71,6 5,4 77,0 Gabelstapler STABW [dB] 6,1 48 6,1 4,8 2,8 B Wechselbrücke 71,6 102,0 111,0 73,4 81 81,5 STABW [dB] 4,9 4 4,9 4 16 - Koffer 3 69,4 101,5 108,9 72,9 6,7 79,6 STABW [dB] 6 49 6 4,9 2,7 - Gabelhubwagen Wechselbrücke 3 64,4 97,2 103,8 68,6 5,0 73,6 STABW [dB] 5,6 4,3 5,6 4,3 2,1 - +Metadata: + +=== Element 21 === +Category: Title +Text: Tabelle 1: Ergebnisse der Verladegeräusche +Metadata: + +=== Element 22 === +Category: NarrativeText +Text: Mit: LAFmax: Maximal-Pegel [dB(A)], LWA,5s: Schallleistungspegel bezogen auf 5 Sekunden [dB(A)], LWAmax: maximale Schallleistungspegel bezogen auf 5 Sekunden [dB(A)], LWA,1h: stündliche Schall- leistungspegel [dB(A)], KI: Impulszuschlag [dB(A)], LWAT,1h: impulsbehaftete stündliche Schallleis- +Metadata: + +=== Element 23 === +Category: Title +Text: tungspegel [dB(A)], STABW: Standardabweichung [dB] +Metadata: + +=== Element 24 === +Category: NarrativeText +Text: Es stehen verschiedene Möglichkeiten zur Lärmminderung zur Verfügung, wie die Ver- wendung von weicheren Oberflächen auf Überladebrücken, Dröhnfolien an der Unter- seite der Überladebrücken, speziell angepasste Stoßdämpfer in den Anhängern sowie Maßnahmen auf dem Gelände und das richtige Verhalten des Personals. +Metadata: + +=== Element 25 === +Category: NarrativeText +Text: Zukünftige Untersuchungen könnten weitere spezifische Messungen und Untersuchun- gen für bestimmte Situationen von Flurfördergeräten umfassen, um eine detailliertere Bewertung vorzunehmen. Die Erkenntnisse können dazu beitragen, Standards und Richtlinien für den Einsatz von Flurfördergeräten zu verbessern und die Lärmbelastung in Speditionen und während des Verladeprozesses insgesamt zu reduzieren. Es wurden Emissionsdatenblätter erstellt, um die Arbeit zu erleichtern. Je nach bekanntem Anhä- ngertyp können die entsprechenden Vorlagen verwendet werden, um präzisere Ergeb- nisse zu erzielen. Ein Entladevorgang kann ähnlich wie ein Beladevorgang betrachtet werden. +Metadata: + +=== Element 26 === +Category: NarrativeText +Text: Die vorliegende Arbeit liefert somit wichtige Erkenntnisse über Verladegeräusche in ver- schiedenen Anhängertypen und bietet eine Grundlage für zukünftige Untersuchungen und Maßnahmen zur Lärmminderung in der Logistikbranche. +Metadata: + +=== Element 27 === +Category: Title +Text: II +Metadata: + +=== Element 28 === +Category: Header +Text: Eidesstattliche Versicherung +Metadata: + +=== Element 29 === +Category: Title +Text: Eidesstattliche Versicherung +Metadata: + +=== Element 30 === +Category: NarrativeText +Text: Ich erkläre hiermit, dass ich die vorliegende Arbeit selbstständig und ohne Verwendung anderer als der angegebenen Hilfsmittel verfasst habe. Ich habe sämtliche verwendeten Quellen erwähnt und gemäß den gängigen wissenschaftlichen Regeln zitiert. Die Arbeit hat in gleicher oder ähnlicher Form noch keiner anderen Prüfungsbehörde vorgelegen. +Metadata: + +=== Element 31 === +Category: Image +Text: . Hanpsi +Metadata: + +=== Element 32 === +Category: FigureCaption +Text: Kirchheim unter Teck, 30.06.2023 +Metadata: + +=== Element 33 === +Category: Title +Text: III +Metadata: + +=== Element 34 === +Category: Header +Text: Danksagung +Metadata: + +=== Element 35 === +Category: Title +Text: Danksagung +Metadata: + +=== Element 36 === +Category: NarrativeText +Text: Ich möchte mich von ganzem Herzen bei allen Personen bedanken, die mich während meiner Bachelorarbeit unterstützt haben, ohne die wäre diese Thesis nicht möglich ge- wesen. +Metadata: + +=== Element 37 === +Category: NarrativeText +Text: Ein besonderer Dank gebührt meinem externen Betreuer Thomas Heine von dem Inge- nieurbüro Heine+Jud in Stuttgart der mich tatkräftig unterstützt hat und mit wertvollen Hinweisen bzw. Anregungen erfolgreich unterstützt hat. Ich bedanke mich herzlichst für die Zeit die man für mich genommen hat, um meine Thesis zu lesen und zu kommentie- ren. Ebenfalls dank ich meinem Betreuer Prof. Dr. Karl Georg Degen von der Hochschule der Technik in Stuttgart, der mich ebenfalls unterstützt hat und mir Hinweise und Anre- gungen gab. Die konstruktive Kritik und Hilfestelllungen haben mir geholfen, meine Ar- beit und mein Repertoire zu erweitern und zu verbessern. +Metadata: + +=== Element 38 === +Category: NarrativeText +Text: Ein weiterer großer Dank geht an alle meine Arbeitskollegen von Heine+Jud und meinem zweiten Chef Axel Jud, die mich während dieser herausfordernden Zeit motiviert und ermutigt haben. Ich bedanke mich zudem besonders an meine Messgehilfen Tobias Gassner, Christian Reutter, Sebastian Gerner und Lena Robert, die mich bei meinen Mes- sungen tatkräftig unterstützt haben. +Metadata: + +=== Element 39 === +Category: NarrativeText +Text: Ebenfalls geht auch ein Dank raus an meine Familie und meinem Freund, die mir mora- lischen Halt gegeben haben und mich immer motiviert haben, meine beste Leistung vor- zulegen und nie aufzugeben. Hervorgehoben bedanke ich mich bei meinen Eltern die mir mein Studium durch ihre Unterstützung ermöglicht haben und fortwährend ein of- fenes Ohr für mich hatten. +Metadata: + +=== Element 40 === +Category: NarrativeText +Text: Schließlich möchte ich mich auch bei meinen Kommilitonen und Mitstudierenden be- danken, die mich während meines Studiums inspiriert und unterstützt haben. Ich bin dankbar für die wunderbaren Erinnerungen und Freundschaften, die ich während dieser Zeit geknüpft habe. +Metadata: + +=== Element 41 === +Category: NarrativeText +Text: Noch einmal vielen herzlichen Dank an alle, die mir geholfen haben, mein Bachelorstu- dium abzuschließen. Eure Unterstützung und Ermutigung haben mir sehr geholfen, diese Arbeit erfolgreich und ohne Einbüße abzuschließen. +Metadata: + +=== Element 42 === +Category: Title +Text: IV +Metadata: + +=== Element 43 === +Category: Header +Text: Inhaltsverzeichnis +Metadata: + +=== Element 44 === +Category: Title +Text: Inhaltsverzeichnis +Metadata: + +=== Element 45 === +Category: Table +Text: Kurzfassung .................................................................................................................. I Eidesstattliche Versicherung ....................................................................................... III Danksagung ................................................................................................................ IV Inhaltsverzeichnis ........................................................................................................ 1 1 Einleitung ......................................................................................................... 3 2 Grundlagen ...................................................................................................... 6 2.1 Logistik ....................................................................................................................... 6 2.2 Ermittlung der akustischen Kenngrößen ................................................................... 9 2.3 Statistik .................................................................................................................... 21 3 Aktuelle Prognosegrundlage ............................................................................24 3.1 Schallimmissionsprognosen für Gewerbe – Technischer Bericht des HLUG ........... 24 3.2 Be- und Entladevorgängen mit Palettenhubwagen und beladener Palette bei Lkw in Logistikzentren ..................................................................................................... 27 3.3 Geräuschemissionen durch Ladevorgänge in Ladezonen von Discountern ............ 28 3.4 Fazit .......................................................................................................................... 30 4 Beschreibung des Betriebs und Untersuchungsobjekte .....................................31 4.1 Beschreibung des Betriebs ...................................................................................... 31 4.2 Beschreibung der Untersuchungsobjekte ............................................................... 33 5 Beschreibung der Untersuchungsmethodik ......................................................38 5.1 Prozessablauf der untersuchten Verladetätigkeit ................................................... 38 5.2 Messequipment und Messaufbau ........................................................................... 39 5.3 Vorgehensweise bei der Messwerterfassung .......................................................... 41 5.4 Messpositionen ........................................................................................................ 44 6 Messauswertung und Statistik .........................................................................46 6.1 Verladegeräusche .................................................................................................... 46 6.2 Statistik .................................................................................................................... 48 6.3 Modellierung der Messsituation ............................................................................. 50 6.4 Richtcharakteristik ................................................................................................... 51 +Metadata: + +=== Element 46 === +Category: UncategorizedText +Text: 6.5 +Metadata: + +=== Element 47 === +Category: UncategorizedText +Text: Validierung ............................................................................................................... 55 +Metadata: + +=== Element 48 === +Category: UncategorizedText +Text: 1 +Metadata: + +=== Element 49 === +Category: Header +Text: Inhaltsverzeichnis +Metadata: + +=== Element 50 === +Category: Table +Text: 7 Ergebnisse und Interpretation ..........................................................................56 7.1 Verladegeräusche .................................................................................................... 56 7.2 Statistik .................................................................................................................... 60 7.3 Richtcharakteristik ................................................................................................... 66 7.4 Validierung ............................................................................................................... 68 7.5 Mögliche Minderungsmaßnahmen ......................................................................... 70 7.6 Fehlerdiskussion ...................................................................................................... 72 8 Abschließende Bewertung und Ausblick ...........................................................75 9 Literatur ............................................................................................................ I Formelverzeichnis ..................................................................................................... VIII Abbildungsverzeichnis ................................................................................................ IX Tabellenverzeichnis ..................................................................................................... X Diagrammverzeichnis .................................................................................................. XI Anhänge .................................................................................................................... XII Anhang 1: Emissionsdatenblätter ........................................................................................ XII Anhang 2: Lagepläne ........................................................................................................... XIX Anhang 3: Messprotokolle ................................................................................................. XXII Anhang 4: Messergebnisse der Beladevorgänge ............................................................. XXIV Anhang 5: Rechenmodell SoundPlan 9.0 – Gabelhubwagen 27.04.23 ............................. XLIII +Metadata: + +=== Element 51 === +Category: UncategorizedText +Text: Anhang 6: Rechenmodell SoundPlan 9.0 – Gabelstapler 03.05.2023 ............................... XLVI +Metadata: + +=== Element 52 === +Category: UncategorizedText +Text: 2 +Metadata: + +=== Element 53 === +Category: Header +Text: 1 Einleitung +Metadata: + +=== Element 54 === +Category: Title +Text: 1 Einleitung +Metadata: + +=== Element 55 === +Category: NarrativeText +Text: Laute Klänge und Töne, wie etwa lautes Geschrei oder ein donnerndes Geräusch, wer- +Metadata: + +=== Element 56 === +Category: NarrativeText +Text: den von uns als störend oder bedrohlich wahrgenommen und werden auch als Lärm bezeichnet. Diese können sich negativ auf unser körperliches, seelischen und unser so- ziales Wohlbefinden auswirken. [1] Durch die ermittelte Lärmbelastung können Schluss- folgerungen über die Belästigung gezogen und somit Menschen vor schädlichem und störendem Lärm geschützt werden. Lärm kann an verschieden Orten auftreten und da- her unterscheidet man in der Gesetzgebung nach Straßen-, Schienen-, Flug-, Gewerbe-, Bau-, Freizeit- und Sportlärm. Hinter jeder dieser Verursacher steht eine spezifische Ge- setzgebung mit beigeordneten Regelungen und Zuständigkeiten. Um einen präventiven Schallschutz zu gewährleisten und ein angenehmes akustisches Stadtklima zu erreichen, ist der Schallimmissionsschutz von großer Bedeutung. Ziel ist es, alle störenden Geräu- sche zu reduzieren, besonders in Bereichen mit zunehmender Mobilität und Warenver- kehr. [2] Der stetig wachsende Wohnraummangel zwingt die Wohnbebauung näher an Straßen- und Schienenwege, sowie näher an das Gewerbe. [3] Dadurch wächst das Po- tential von dem daraus entstehenden Lärm belästigt zu werden. Gemäß einer Umfrage aus dem Jahr 2020 des Bundesministeriums für Umwelt, Naturschutz, nukleare Sicher- heit und Verbraucherschutz, empfinden 51 % der Bevölkerung in Deutschland eine Be- +Metadata: + +=== Element 57 === +Category: NarrativeText +Text: lästigung durch Lärm aus Industrie-/Gewerbelärm (siehe Abbildung 1). [4] +Metadata: + +=== Element 58 === +Category: Image +Text: Belästigung durch einzelne Lärmquellen 2020 Frage: Wenn Sie einmal an die letzten 12 Monate hier bei Ihnen denken, wie stark haben Sie sich persönlich durch den Lärm von. folgenden Dingen gestört oder belästigt gefühlt? ‚Antworten: "zumindest etwas belästigt”, das heißt Summe der Angaben „äußerst gestört oder belästigt”, „stark gestört oder belästigt“, „mittelmäßig gestört oder belästigt" und „etwas gestört oder belästigt" Schienenverkehrslärm Flugverkehrslärm Industrie- und Gewerbelärm Lärm von Nachbarn/ Nachbarinnen Straßenverkehrslärm Repräsentativerhebung bei 2.115 Befragten, Bevölkerung ab 14 Jahren Bundesministerium für Umwelt, Naturschutz, nukleare Sicherheit und Verbraucherschutz/Umweitbundesamt (Hrsg.). Umweltbewusstsein in Deutschland 2020 - Ergebnisse einer repräsentativen Bevölkerungsumfrage +Metadata: + +=== Element 59 === +Category: FigureCaption +Text: Abbildung 1: Ausmaß der Lärmbelästigung der Bevölkerung in Deutschland 2020 [4] +Metadata: + +=== Element 60 === +Category: UncategorizedText +Text: 3 +Metadata: + +=== Element 61 === +Category: Header +Text: 1 Einleitung +Metadata: + +=== Element 62 === +Category: NarrativeText +Text: Der immerwährende Austausch von Gütern führt zu einer Lärmquelle, die genau be- trachtet werden muss, um eine zukünftige Lärmbelastung vorherzusagen. Verantwort- lich für diesen Güterfluss sind Logistikunternehmen oder auch Speditionen genannt. Eine zentrale Schnittstelle sind die Verladestationen, an denen der Umschlag der Güter stattfindet und geeignete Flurfördergeräte zum Einsatz kommen, um den Wechsel der Transportmittel zu ermöglichen. Durch diesen Prozess von Be- und Entladung der Anhä- nger entsteht eine vielfältige Lärmbelastung durch unterschiedliche Faktoren. [5] +Metadata: + +=== Element 63 === +Category: Title +Text: Mit Hilfe einer Schallimmissionsprognose lassen sich Schallimmissionen von Industrie- +Metadata: + +=== Element 64 === +Category: NarrativeText +Text: und Gewerbelärm, dergleichen für alle anderen Verursachern, prognostizieren. Richt- werte für Gewerbe gibt die Technische Anleitung zum Schutz gegen Lärm (TA Lärm) vor, die laut der TA Lärm zum „Schutz der Allgemeinheit und der Nachbarschaft vor schädli- chen Umwelteinwirkungen durch Geräusche sowie der Vorsorge gegen schädliche Um- welteinwirkungen durch Geräusche“ [6] dient. Für eine Schallimmissionsprognose wer- den schalltechnische Eingangsdaten benötigt und sind erforderlich, um eine Simulation durchführen zu können. Für Be- und Entladevorgänge an einem Umschlagspunkt stehen Veröffentlichungen zur Verfügung, die auf messtechnisch ermittelten Schalldruckpegeln basieren. Für Verladetätigkeiten werden zu derzeitigem Stand beispielgebend der der Technische Bericht [7, 8] von der hessischen Landesanstalt für Umwelt verwendet. Die bisherigen Veröffentlichungen und Untersuchungen in diesem Bereich sind konzentrie- ren sich hauptsächlich auf Verbrauchermärkte und Verladungen mit Handhubwagen, was nur einen kleinen Teil der tatsächlich möglichen Verladetätigkeiten abdeckt. +Metadata: + +=== Element 65 === +Category: Title +Text: Ziel dieser Thesis +Metadata: + +=== Element 66 === +Category: NarrativeText +Text: Um eine umfassendere und praxisnähere Schallimmissionsprognose durchführen zu können, bedarf es weiterer Untersuchungen. Das Ziel dieser Thesis besteht darin, detail- liert die Verladetätigkeiten in Speditionen zu analysieren und zu bewerten. Die mess- technisch ermittelten Daten werden ausgewertet und durch eine geeignete Simulation verifiziert. Die notwendigen Rechengrundlagen werden dazu erläutert, die zur Analyse und Bewertung von Verladegeräusche benötigt werden. Aus dem gewonnenen Wissen werden Emissionsansätze ausgearbeitet, die als Prognosegrundlage für weiterführende Schallimmissionsprognosen zur Verfügung steht. Zusätzlich wird die 2D-Richtcharakte- ristik der Verladegeräusche durch eine Untersuchung entlang einer Kreisbahn im Nah- +Metadata: + +=== Element 67 === +Category: UncategorizedText +Text: 4 +Metadata: + +=== Element 68 === +Category: Header +Text: 1 Einleitung +Metadata: + +=== Element 69 === +Category: NarrativeText +Text: feld ermittelt. Die Thesis stellt eine wichtige Grundlage für die Entwicklung von geeig- neten Maßnahmen zur Reduktion der Lärmbelastung in Speditionen dar, weshalb mög- liche Minderungsmaßnahmen aufgezeigt werden, um die Lärmbelastung zu reduzieren. Die Thesis bietet somit eine umfassende Einführung in die Grundlagen und Rechen- grundlagen der Lärmemissionsmessung und -bewertung. +Metadata: + +=== Element 70 === +Category: UncategorizedText +Text: 5 +Metadata: + +=== Element 71 === +Category: Header +Text: 2 Grundlagen +Metadata: + +=== Element 72 === +Category: Title +Text: 2 Grundlagen +Metadata: + +=== Element 73 === +Category: NarrativeText +Text: Das folgende Kapitel dient zur Einführung in die Thesis und bildet somit das Grundge- rüst. Es werden die allgemeinen Grundlagen der Logistik und Grundlagen zur Ermittlung der notwendigen akustischen Kenngrößen aufgezeigt. Ziel dieses Kapitel ist es ein grund- legendes Wissen darzubieten, um ein vollständiges Verständnis der Thesis zu vermitteln. +Metadata: + +=== Element 74 === +Category: Title +Text: 2.1 Logistik +Metadata: + +=== Element 75 === +Category: Title +Text: Einer der wichtigsten Komponente der globalen Wirtschaft ist die Logistik. Sie verbindet +Metadata: + +=== Element 76 === +Category: NarrativeText +Text: die Gesellschaft durch den Handel und Verbrauch von Gütern. Als Grundgerüst der Lo- gistik, steht der Güteraustausch zwischen Unternehmen oder dem privaten Haushalt. Im täglichen Leben machen wir permanent Gebrauch von Logistik, sei es für den Trans- port von Personen oder von Gütern. Vernetzt werden die Unternehmen über die Liefer- und Logistikkette, welche den Austausch von Gütern ermöglichen. Die Kette beginnt mit der Güterbereitstellung, der Güterverwendung und der Güterverteilung. Unternehmen stellen Güter über die Produktionskette her, die dann bereitgestellt werden. Diese be- reitgestellten Güter werden entweder als Sachgüter wie Smartphones verwendet oder als Konsumgüter wie Nahrungsmittel verbraucht. Damit Unternehmen die Güter an den Kunden verteilen können wird die Logistik benötigt. Die Logistik stellt das Bindeglied zwischen Bereitstellung und Verwendung der Güter dar. Ein sogenannter Güterfluss ist entstanden [5]. +Metadata: + +=== Element 77 === +Category: Title +Text: Die Logistikkette +Metadata: + +=== Element 78 === +Category: NarrativeText +Text: Die raumzeitliche Transformation der Güter ist einer der Hauptarbeitsprozesse der Lo- gistik. Dies betrifft die Überbrückung der Zeit zwischen Fertigstellung und dem Ver- brauch. Um die Zeit zu überbrücken, bis die Güter verbraucht werden, ist es erforderlich, diese zwischenzulagern. Diese Zwischenlagerung betrifft den Transport, den Umschlag und die Lagerung der Güter. Unter Umschlag wird der Vorgang bezeichnet, indem die Güter das Transportmittel durch Flurfördergeräte wechseln. [9] +Metadata: + +=== Element 79 === +Category: NarrativeText +Text: Logistikunternehmen, auch bekannt als Speditionen, tragen die Verantwortung für den Güterfluss sowie die damit verbundenen Prozesse. Ihre Aufgabe besteht darin, die +Metadata: + +=== Element 80 === +Category: UncategorizedText +Text: 6 +Metadata: + +=== Element 81 === +Category: Header +Text: 2 Grundlagen +Metadata: + +=== Element 82 === +Category: NarrativeText +Text: Menge, Art und Handhabungseigenschaften der Güter zu berücksichtigen und den ge- samten Prozess der Planung, Steuerung und Kontrolle zu gewährleisten. Die Menge und Art der Güter ergeben sich aus der Zusammenstellung der Güter für eine Bestellung im Lager. Die Güterhandhabungseigenschaft wird durch die Verpackung geändert. Die Gü- ter werden auf sogenannten Ladungsträger, zu Ladeeinheiten gebildet. Die Ladeträger sind spezielle und genormte Lade- oder Transporthilfsmittel wie beispielsweise Schach- teln, Behälter oder Paletten. Eine Logistikkette entsteht aus den einzelnen logistischen Prozessanteilen, die den Lauf einer Ladeeinheit darstellt. Zu Beginn steht das einzelne Packstück, welches zu einer Ladeeinheit, durch die Lagerung auf beispielsweise einer Normpalette, gebildet wird. Die Ladeeinheit wird im Lager zwischengelagert, bis der Auf- trag zur Auslieferung erteilt wird. Am Tag der Auslieferung wird die Ladeeinheit in das Transportfahrzeug umgeschlagen und zu dem jeweiligen Auslieferungsort transportiert. Dort angekommen wird die Ladeeinheit in das Auslieferungslager umgeschlagen und wieder zwischengelagert. [5] +Metadata: + +=== Element 83 === +Category: Title +Text: Fördern und Transportieren +Metadata: + +=== Element 84 === +Category: NarrativeText +Text: Für den Umschlag der Ladeeinheiten sind Transportmittel notwendig und realisieren so- mit die logistischen Funktionen das Transportieren, Umschlagens, Stapelns, Lagern und Kommissionierens. Die Hauptfunktion eines Transportmittels besteht darin, Güter ent- lang der verschiedenen Produktions- und Vertriebsprozesse zu transportieren. Trans- port bedeutet, dass ein Gegenstand von einem Ausgangsort abgeholt und zu einem Be- stimmungsort gebracht wird, wo er benötigt wird. Der Transport kann entweder von Menschen oder automatisiert durchgeführt werden. In der Praxis werden bevorzugt von Menschen gesteuerte Techniken, wie Flurfördergeräte, für den Umschlag in ein Trans- portmittel verwendet. Beispiele für Flurfördergeräte sind Handgabelhubwagen, Gabel- stapler und andere. Es gibt verschiedene Kriterien, die bei der Auswahl eines geeigneten Flurfördergeräts eine Rolle spielen, wie die Anzahl der zu transportierenden Einheiten und die Art der Transportgüter. Je nach Gewicht und Größe der Güter wird das passende Flurfördergerät ausgewählt. Durch die Verwendung von Normpaletten als Transportein- heiten können verschiedene Flurfördergeräte eingesetzt werden. Flurfördergeräte kön- nen je nach Antriebsart (z.B. Elektro), Bedienungsart (z.B. Automatik) und Bauart (z.B. Schmalgangstapler) unterschieden werden. Flurfördergeräte können je nach Antriebs- art (z.B. Elektro), Bedienungsart (z.B. Automatik) und Bauart (z.B. Schmalgangstapler) +Metadata: + +=== Element 85 === +Category: Title +Text: unterschieden werden. [10, 3, 5] +Metadata: + +=== Element 86 === +Category: UncategorizedText +Text: 7 +Metadata: + +=== Element 87 === +Category: Header +Text: 2 Grundlagen +Metadata: + +=== Element 88 === +Category: Title +Text: Verladezone +Metadata: + +=== Element 89 === +Category: NarrativeText +Text: Der Umschlagspunkt in der Logistik ist der zentrale Bereich einer Spedition, wo die Güter von den Kunden ankommen, gelagert und für den Weitertransport vorbereitet werden. Eine geeignete Verladestation ist entscheidend für eine sichere und effiziente Verla- dung. Die Gestaltung einer Verladestation variiert je nach Unternehmensgröße und -art, aber es gibt grundlegende Merkmale, die in den meisten Verladezonen zu finden sind. Es ist wichtig, die unterschiedlichen Abmessungen der Anhänger bei der Gestaltung zu berücksichtigen. Die Fahrbahndecken in den Verladezonen bestehen in der Regel aus Beton, Asphalt, Betonplatten oder Klinkerpflaster. [11] +Metadata: + +=== Element 90 === +Category: NarrativeText +Text: Eine Verladestation besteht aus diversen Komponenten. Aus der vertieften Verladesta- tion, Überladebrücke und der Torrandabdichtung. Die vertiefte Verladestation dient zum Höhenausgleich zwischen dem Lagerboden und der Anhänger-Ladefläche. [11] Eine Überladebrücke wird benötigt, um Anhänger zu Be- und Entladen und wird übli- cherweise an die Verladeschleusen angebaut. Überladebrücken sind in unterschiedli- chen Ausführungen und Materialien erhältlich. In der Regel werden Überladebrücken in elektrohydraulischen und manuellen Verladerampen unterteilt, welche beispielsweise aus Stahl oder Aluminium bestehen. Der Anhebe- bzw. der Absenkvorgang funktioniert vollautomatisiert. Um die Be- und Entladung mit einem Flurfördergerät zu erleichtern und das Flurfördergerät somit nicht auf den Boden aufsetzt, ist ein Klappkeil mit offenen +Metadata: + +=== Element 91 === +Category: NarrativeText +Text: Scharnieren oder auch Vorschublippen auf die Überladebrücke angebaut. [12] +Metadata: + +=== Element 92 === +Category: NarrativeText +Text: Da eine Verladestation allen Wetterbedingungen ausgesetzt ist, werden sogenannte Torrandabdichtungen an das Tor angebracht, die die Lücken zwischen Anhänger und Gebäude umschließt. Torrandabdichtungen werden in drei Arten unterschieden. In auf- blasbare Torranddichtungen, Planentorabdichtungen und Kissentorabdichtungen. Auf- blasbare Torrandabdichtungen bestehen aus mit Luft gefüllten Kissen, die gegen das Dach und die Seiten des Anhängers drücken, um die Lücken abzudichten. Bei Planentor- abdichtungen werden die Lücken mit Hilfe von Planen geschlossen, die die Seiten und das Dach des Anhängers umschließen. [11] +Metadata: + +=== Element 93 === +Category: Title +Text: Ablauf einer Be- und Entladung +Metadata: + +=== Element 94 === +Category: NarrativeText +Text: Der Beladevorgang kann je nach Art und Umfang der zu transportierenden Güter sehr unterschiedlich sein aber kann grundsätzlich in folgenden Arbeitsschritten erfolgen. Zu +Metadata: + +=== Element 95 === +Category: UncategorizedText +Text: 8 +Metadata: + +=== Element 96 === +Category: Header +Text: 2 Grundlagen +Metadata: + +=== Element 97 === +Category: NarrativeText +Text: Beginn einer Be- und Entladung steht das einzelne Packstück. Das Packstück wird zu ei- ner Ladeeinheit gebildet und auf einem geeigneten Ladungsträger wie einer Normpa- lette abgelegt. Die Ladeeinheit wird im Lager zwischengelagert, bis der Auftrag zur Aus- lieferung an Kunden erteilt wird. Der Anhänger dockt an eine zugewiesene Verladesta- tion an, wo der Fahrer der Zugmaschine und das Verladepersonal den Beladevorgang abstimmen. Der Fahrer öffnet die Laderaumtüren respektive die Abdeckung des Anhä- ngers, während das Verladepersonal die Güter kontrolliert und den Transport vorberei- tet. Anschließend wird die Überladebrücke angehoben und eventuell eine Verladebrü- cke zwischen dem Anhänger und der Rampe platziert. [13] +Metadata: + +=== Element 98 === +Category: NarrativeText +Text: Nun beginnt die eigentliche Beladung. Die Ladeeinheit wird mithilfe eines passenden Flurfördergeräts angehoben und zum entsprechenden Anhänger transportiert. Dabei ist es wichtig, das Gewicht gleichmäßig zu verteilen. Der Anhänger sollte lückenlos und si- cher beladen werden, um eine formschlüssige und/oder kraftschlüssige Verbindung her- zustellen. Bei einer formschlüssigen Beladung, werden die Ladeeinheiten direkt an die Bordwände lückenlos verladen. Bei einer Kraftschlüssigen Verladung werden die Lade- einheiten mithilfe von Zurrmitteln, beispielsweise mit Zurrgurten, gesichert. [14, 15] Ist der Anhänger beladen und kontrolliert, kann die Auslieferung an den Kunden durch die Zugmaschine beginnen. Bei einem Entladevorgang werden die Ladeeinheiten aus dem Anhänger entnommen und auf vorhergesehene Lagerplätze zwischengelagert. Dies erfolgt in der Regel ähnlich wie beim Verladevorgang. +Metadata: + +=== Element 99 === +Category: Title +Text: 2.2 Ermittlung der akustischen Kenngrößen +Metadata: + +=== Element 100 === +Category: NarrativeText +Text: Der folgende Abschnitt behandelt die Ermittlung der akustischen Kenngrößen, die für den Kontext wichtig sind. Im Rahmen dessen werden verschiedene Ansätze und Verfah- ren vorgestellt, um den entstehenden Lärm zu bewerten und zu quantifizieren. Die ge- naue Erfassung und Analyse der akustischen Eigenschaften spielt eine große Rolle bei der Beurteilung der Lärmbelastung der Verladetätigkeiten. +Metadata: + +=== Element 101 === +Category: NarrativeText +Text: Zunächst werden die grundlegenden Begriffe und Parameter erklärt, die zur Beschrei- bung des Schalls und der Lärmemissionen verwendet werden. Dazu gehören unter an- derem der Schalldruckpegel, die Schallleistung und die Schallemission. Die genaue Kenntnis dieser Begriffe ist wichtig, um die Messergebnisse korrekt zu interpretieren und vergleichbar zu machen. +Metadata: + +=== Element 102 === +Category: UncategorizedText +Text: 9 +Metadata: + +=== Element 103 === +Category: Header +Text: 2 Grundlagen +Metadata: + +=== Element 104 === +Category: Title +Text: Zur Beurteilung von Schallimmissionen +Metadata: + +=== Element 105 === +Category: NarrativeText +Text: Die Beurteilung von Lärmimmissionen hat das Ziel, das Ausmaß und die Stärke der Lärm- wirkung zu erfassen und zu bewerten. Die sogenannten Mittelungspegel eignen sich hervorragend im Schallimmissionsschutz zur quantitativen Erfassung und Charakterisie- rung von zeitlich schwankenden Geräuschen. Hierbei wird ein sogenannter Beurtei- lungspegel (siehe Formel 1) verwendet, welcher eine Größenordnung darstellt für die durchschnittliche Geräuschimmission während einer bestimmten Beurteilungszeit Tr. Die Norm legt Verfahren zur Beurteilung von Schallimmissionen fest und bietet eine standardisierte Methode zur Bestimmung des Beurteilungspegels. Der Beurteilungspe- gel kann auch mithilfe einer Messung gemäß der Norm DIN 45645-1 [16] ermittelt wer- den. Die ermittelten Beurteilungspegel werden mit den derzeitig geltenden Immissions- grenz- oder Richtwerten der jeweiligen Regelwerke verglichen. Die jeweiligen Regel- werke legen die wesentlichen Rahmenbedingungen und Schutzziele fest. Wird ein vor- gegebener Immissionsgrenz- oder Richtwert überschritten, zeigt dies, dass ein Schutzziel nicht erreicht wurde und entsprechende Schallschutzmaßnahmen ergriffen werden +Metadata: + +=== Element 106 === +Category: Title +Text: müssen. [17] +Metadata: + +=== Element 107 === +Category: Formula +Text: 𝐿𝑟 = 10 ∗ lg( 1 𝑇𝑟 𝑁 ∑𝑇𝑖 ∗ 100,1(𝐿𝐴𝑒𝑞,𝑖−𝐶𝑚𝑒𝑡+𝐾𝐼,𝑖+𝐾𝑇+𝐾𝑅,𝑖 𝑖=1 +Metadata: + +=== Element 108 === +Category: UncategorizedText +Text: ) +Metadata: + +=== Element 109 === +Category: NarrativeText +Text: 𝐿𝑟,𝑎𝑢𝑠 𝑀𝑒𝑠𝑠𝑢𝑛𝑔 𝑛𝑎𝑐ℎ 𝐷𝐼𝑁 45645−1 = 𝐿𝑒𝑞 + 𝐾𝐼 + 𝐾𝑇 + 𝐾𝑅 + 𝐾𝑆 +Metadata: + +=== Element 110 === +Category: NarrativeText +Text: Formel 1: Beurteilungspegel [dB(A)] +Metadata: + +=== Element 111 === +Category: Title +Text: 𝑁 +Metadata: + +=== Element 112 === +Category: Formula +Text: 𝑇𝑟 = ∑𝑇𝑗 = 16 ℎ 𝑡𝑎𝑔𝑠 𝑜𝑑𝑒𝑟 8 ℎ 𝑛𝑎𝑐ℎ𝑡𝑠 𝑖=1 +Metadata: + +=== Element 113 === +Category: NarrativeText +Text: Mit LAeq,T: Mittelungsegel während Teilzeit Ti [dB(A)], N: Anzahl der gewählten Teilzeiten [-], Ti: Teilzei- ten i, Cmet: meteorologische Korrektur [dB(A)] nach DIN EN ISO 9613-2 [18], KT,i: Zuschlag für Ton- und +Metadata: + +=== Element 114 === +Category: NarrativeText +Text: Informationshaltigkeit in der Teilzeit Ti [dB(A)], KI,i: Zuschlag für Impulshaltigkeit in der Teilzeit Ti [dB(A)], KR,i: Zuschlag für Tageszeiten mit erhöhter Empfindlichkeit in der Teilzeit Ti, [dB(A)], KS: Zu-o- +Metadata: + +=== Element 115 === +Category: NarrativeText +Text: der Abschlag für bestimmte Geräusche und Situationen [dB(A)] +Metadata: + +=== Element 116 === +Category: NarrativeText +Text: In den Beurteilungspegel fließen eine Anzahl von Störeinflüsse mit ein, die mithilfe von Zu- bzw. Abschläge berücksichtigt werden. Für Räume, die besonderen Schutz bedürfen, wird ein Zuschlag von 6 dB(A) vergeben. Wenn während der Messung Einzeltöne her- +Metadata: + +=== Element 117 === +Category: UncategorizedText +Text: 10 +Metadata: + +=== Element 118 === +Category: Header +Text: 2 Grundlagen +Metadata: + +=== Element 119 === +Category: NarrativeText +Text: vortreten oder das Geräusch informationshaltig ist, kann dies zu einer erhöhten Lärm- belastung führen. In diesem Fall wird ein Ton- und Informationszuschlag KT von 3 oder 6 dB vergeben. Wenn das Geräusch nicht ton- oder informationshaltig ist, wird kein Zu- schlag vergeben. Der Ton- und Informationszuschlag kann nach der DIN 415681 [19] er- mittelt werden. Wenn das Geräusch während bestimmter Teilzeiten Impulse aufweist, wird ein Impulszuschlag Ti für diese Zeiten vergeben (siehe Formel 2). Bei nicht Impuls- haltigen Geräuschen kein Zuschlag zu vergeben. [17] +Metadata: + +=== Element 120 === +Category: Formula +Text: 𝐾𝐼,𝑖 = 𝐿𝐴𝐹𝑇𝑒𝑞,𝑖 − 𝐿𝐴𝑒𝑞,𝑖 +Metadata: + +=== Element 121 === +Category: Title +Text: Formel 2: Impulszuschlag [dB(A)] +Metadata: + +=== Element 122 === +Category: NarrativeText +Text: Mit LAFTeq,i: Taktmaximalpegel in der Teilzeit Ti [dB(A)], LAeq,i: Mittelungspegel in der Teilzeit Ti [dB(A)] +Metadata: + +=== Element 123 === +Category: NarrativeText +Text: Der Taktmaximal-Mittelungspegel LAFTeq beschreibt den Maximalwert des Schalldruck- pegels LAF über die zugehörige Taktzeit T von 5 Sekunden und wird mithilfe der Formel 3 nach der DIN 45641 [20] berechnet. +Metadata: + +=== Element 124 === +Category: Formula +Text: 𝐿̅𝐴𝐹𝑇𝑒𝑞 = 10 ∗ lg( 1 𝑁 𝑁 ∑100,1∗𝐿𝐴𝐹𝑇,𝑖 𝑖=1 ) +Metadata: + +=== Element 125 === +Category: NarrativeText +Text: Formel 3: Taktmaximal-Mittelungspegel [dB(A)] +Metadata: + +=== Element 126 === +Category: NarrativeText +Text: Mit LAFeq: Taktmaximalpegel [dB(A)], N: Anzahl der gemessenen Taktmaximalpegel [-] +Metadata: + +=== Element 127 === +Category: NarrativeText +Text: Der Taktmaximal-Mittelungspegel ist eine Größe, die in der Beurteilung von impulshal- tigen Geräuschen verwendet wird und kann als Annäherung für den Impulsschallpegel verwendet werden. In der technischen Anleitung zum Schutz gegen Lärm (TA Lärm) [6], wird der zeitliche Schalldruckpegelverlauf in gleichlange Zeit Zeitintervalle, sogenannte Takte zerlegt. Der Taktmaximal-Mittelunvergspegel wird in einem 5-Sekunden-Takt bei beispielsweise Nachbarschaftslärm und in einem 3-Sekunden-Takt bei Arbeitsplatzlärm ermittelt. [21, 17] +Metadata: + +=== Element 128 === +Category: NarrativeText +Text: Bei der Bestimmung des Beurteilungspegels Lr für die unterschiedlichen Witterungsver- hältnisse, ist die meteorologische Korrektur Cmet nach EN ISO 9613-2 [18] zu beachten. Die meteorologische Korrektur Cmet berücksichtigt verschiedene Faktoren, wie die geo- metrische Ausbreitung, die Luftabsorption, den Bodeneffekt, die Reflexion an Flächen und die Abschirmung durch Hindernisse. Um zuverlässige Ergebnisse zu erhalten, ist es von Bedeutung, dass die Faktoren bei der Messung und Auswertung der Schallemissio- +Metadata: + +=== Element 129 === +Category: UncategorizedText +Text: 11 +Metadata: + +=== Element 130 === +Category: Header +Text: 2 Grundlagen +Metadata: + +=== Element 131 === +Category: NarrativeText +Text: nen korrekt berücksichtigt werden. Für den Fall einer Punktschallquelle, gilt eine spezi- fische Voraussetzung (siehe Formel 4). Bei einer Punktschallquelle breitet sich der aus- gesendete Schall gleichmäßig, ungestört und verlustfrei in die Umgebung aus. Die Schall- leistung ist hierbei konstant über den Zeitverlauf. [22, 17] +Metadata: + +=== Element 132 === +Category: NarrativeText +Text: 𝐶𝑚𝑒𝑡 = 0,𝑤𝑒𝑛𝑛 𝑑𝑝 ≤ 10(ℎ𝑠 + ℎ𝑟) +Metadata: + +=== Element 133 === +Category: Formula +Text: 𝐶𝑚𝑒𝑡 = 𝐶0 [1 − 10( 10(ℎ𝑠 + ℎ𝑟) 𝑑𝑝 )],𝑤𝑒𝑛𝑛 𝑑𝑝 ≥ 10(ℎ𝑠 + ℎ𝑟) +Metadata: + +=== Element 134 === +Category: NarrativeText +Text: Formel 4: meteorologische Korrektur [dB(A)] +Metadata: + +=== Element 135 === +Category: NarrativeText +Text: Mit hs: Quellhöhen [m], hr: Aufpunkthöhen [m], dp: Abstand zwischen Quelle und Aufpunkt, projiziert +Metadata: + +=== Element 136 === +Category: NarrativeText +Text: auf die horizontale Bodenebene [m] +Metadata: + +=== Element 137 === +Category: NarrativeText +Text: Je geringer der Abstand dp zwischen der Schallquelle und dem Aufpunkt und je größer die Höhenunterschiede zwischen Schallquelle und Aufpunkt sind, desto stärker sind die meteorologischen Auswirkungen zu berücksichtigen. [17] +Metadata: + +=== Element 138 === +Category: Title +Text: Charakterisierung der Geräuschemissionen +Metadata: + +=== Element 139 === +Category: NarrativeText +Text: Um die Emissionen einer Quelle unabhängig von Umgebungseinflüssen, Entfernung und Fremdgeräuschen zu definieren, wird der Schallleistungspegel LWA benötigt. Dieser be- schreibt die Schallenergie, die von einer Quelle pro Zeiteinheit in die gesamte Luft gleich- förmig abgestrahlt wird. Der Schallleistungspegel gibt somit Aufschluss über die Ursache einer Geräuschquelle. Hingegen beschreibt der Schalldruckpegel die Schallenergie, die an einem bestimmten Ort in der Umgebung übertragen wird. Der Schalldruckpegel gibt somit Aufschluss über die Wirkung einer Geräuschquelle. [23, 24] +Metadata: + +=== Element 140 === +Category: NarrativeText +Text: Die DIN 3740 [25] gibt Auskunft über verschiedene Verfahren zur Bestimmung von Schalleistungspegel für unterschiedliche Maschinen, Geräte und Produkte. Sie stellt Richtlinien vor, um festzulegen, welche Verfahren unter bestimmten Bedingungen und Anforderungen an die Genauigkeit geeignet sind. Um den Schallleistungspegel zu be- stimmen, werden in der Regel unterschiedliche Verfahren angewendet: Die Messungen von Schalldruck, Schallintensität und Schwingschnelle. Die Abbildung 2 gibt einen Über- blick über die Grundnormen für die Verfahren zur Bestimmung des Luftschallleistungs- pegel, entweder A-bewertet oder in Frequenzbändern beschrieben. Dort enthalten sind +Metadata: + +=== Element 141 === +Category: UncategorizedText +Text: 12 +Metadata: + +=== Element 142 === +Category: Header +Text: 2 Grundlagen +Metadata: + +=== Element 143 === +Category: NarrativeText +Text: für Schalldruckpegelmessungen die ISO 3741 bis ISO 3747 [26–31], Schallintensitätsmes- sungen die ISO 9614-1 bis ISO 9614-3 [32–34] und für Schwingungsmessungen die +Metadata: + +=== Element 144 === +Category: NarrativeText +Text: ISO/TS 7849-1 und ISO/TS 7849-2 [35, 36]. +Metadata: + +=== Element 145 === +Category: Image +Text: Bestimmung des Schallleistungspegels ISO 3740 —z +Metadata: + +=== Element 146 === +Category: FigureCaption +Text: Abbildung 2: Überblick über die Grundnormen zur Bestimmung des Schallleistungspegels +Metadata: + +=== Element 147 === +Category: NarrativeText +Text: In dieser Thesis wird der Schallleistungspegel aus der Messung des Schalldruckpegels (siehe Abbildung 2 grüner Kasten) ermittelt. Um den Schalldruckpegel zu bestimmen gibt es zwei Methoden zur Messung: die direkte und die indirekte Methode. Die direkte Methode findet Anwendung in einer Freifeld-Umgebung oder in einem diffusen Schall- feld. Hierbei wird die gesuchte Messgröße, der Schallleistungspegel, durch den Vergleich mit einem Bezugswert mithilfe einer anderen Messgröße, dem Schalldruckpegel, ermit- telt. Hingegen wird die Indirekte Methode nur im diffusen Schallfeld eingesetzt und die gesuchte Messgröße aus einer anderen Messgröße ermittelt. [37, 23] Ein diffuses Schall- feld enthält Schall aus allen Richtungen und entsteht oft in halligen Räumen, in denen der Direktschall zusätzlich Reflexionen an den Wänden erfährt. In einem Freifeld erfährt der Schall keine zusätzlichen Reflexionen. Die Schallleistung wird in Anlehnung an das Hüllflächen-Verfahren indirekt aus dem Schalldruck p, der Schallschnelle v̅ und der Messfläche S berechnet, welche in der Normreihe DIN EN ISO 3740 bis 3747 [25, 38, 27, 28, 39–41] (siehe Abbildung 2 roter und grüner Kasten) beschrieben wird. Dabei wird der Schalldruckpegel von Messpunkten berechnet, die auf einer gedachten Hüllfläche +Metadata: + +=== Element 148 === +Category: UncategorizedText +Text: 13 +Metadata: + +=== Element 149 === +Category: Header +Text: 2 Grundlagen +Metadata: + +=== Element 150 === +Category: NarrativeText +Text: angeordneten sind, auf die die abgestrahlte Schallleistung der Quelle trifft. [42] Die Messfläche ist so zu dimensionieren, dass alle Messpunkte im Fernfeld liegen, folglich zwischen Schalldruck und Schallschnelle kein Phasenunterschied besteht. Im Fernfeld ist die Schallpegelverteilung gleichbleibend auf der gesamten Messfläche. Die Hüllfläche wird in n-Teilflächen Si zerlegt, auf denen ein Schalldruck-Effektivwert gemessen wird. [21, 43] Der Schalldruckpegel beschreibt die Druckschwankungen des Schalls in einem Medium wie Luft. Er hängt mit dem physikalischen Schalldruck zusammen und wird als Verhältnis von Kraft zu Fläche definiert, auf die die Kraft senkrecht wirkt (siehe Formel 5). [44] +Metadata: + +=== Element 151 === +Category: Formula +Text: 𝑝 = 𝐼 𝑣 +Metadata: + +=== Element 152 === +Category: Title +Text: Formel 5: Schalldruck [Pa = N/m²] +Metadata: + +=== Element 153 === +Category: NarrativeText +Text: Mit I: Schallintensität [W/m²], v: Schallschnelle [m/s] +Metadata: + +=== Element 154 === +Category: NarrativeText +Text: Die Schallschnelle beschreibt die Geschwindigkeit, mit der sich ein Teilchen wie z.B. ein Luftteilchen in einem Schallfeld um seine Ruhelage bewegt. Sie entspricht der Momen- tangeschwindigkeit des schwingenden Teilchens. Die Schallschnelle berechnet sich aus der zeitlichen Ableitung der Auslenkung ξ des Teilchens (siehe Formel 6). [45–49] +Metadata: + +=== Element 155 === +Category: Formula +Text: 𝑣̅ = 𝜕𝜉⃑ 𝜕𝑡 = 𝜉⃑̇ +Metadata: + +=== Element 156 === +Category: NarrativeText +Text: Formel 6: Schallschnelle [m/s] +Metadata: + +=== Element 157 === +Category: NarrativeText +Text: Mit ξ: Auslenkung [m], t: Zeit [s] +Metadata: + +=== Element 158 === +Category: NarrativeText +Text: Aus den Größen des Schalldruckes p, der Schallgeschwindigkeit der Luft c und der Mess- fläche S kann die abgestrahlte Schallleistung P definiert werden, wobei ρ die Dichte der Luft bei Normalbedingungen darstellt (siehe Formel 7). +Metadata: + +=== Element 159 === +Category: Formula +Text: 𝑃 = 𝑝 ∗ 𝑣 ∗ 𝑆 = 𝑝2 𝜌 ∗ 𝑐 ∗ 𝑆 +Metadata: + +=== Element 160 === +Category: NarrativeText +Text: Formel 7: Schallleistung [W] +Metadata: + +=== Element 161 === +Category: NarrativeText +Text: Mit ρ: Luftdichte [kg/m³], v: Luft-Schallgeschwindigkeit [m/s], p: Schalldruck [Pa = N/m²] +Metadata: + +=== Element 162 === +Category: NarrativeText +Text: Die abgestrahlte Leistung auf die einzelnen Messflächen Si ist die Summe aller Schallleis- tungen auf den einzelnen Teilflächen (siehe Formel 8). [21] +Metadata: + +=== Element 163 === +Category: UncategorizedText +Text: 14 +Metadata: + +=== Element 164 === +Category: Header +Text: 2 Grundlagen +Metadata: + +=== Element 165 === +Category: Formula +Text: 𝑁 𝑃̅ = ∑ 𝑖=1 𝑝𝑒𝑓𝑓,𝑖 𝜌 ∗ 𝑐 2 ∗ 𝑆𝑖 +Metadata: + +=== Element 166 === +Category: NarrativeText +Text: Formel 8: Schallleistung der einzelnen Teilflächen [W] +Metadata: + +=== Element 167 === +Category: NarrativeText +Text: Mit ρ: Luftdichte [kg/m³], v: Luft-Schallgeschwindigkeit [m/s], peff: effektiver Schalldruck [Pa = N/m²], +Metadata: + +=== Element 168 === +Category: NarrativeText +Text: Si: Teilflächen [m²] +Metadata: + +=== Element 169 === +Category: NarrativeText +Text: Unter Einbeziehung der Bezugsgrößen (siehe Formel 9), ergibt sich die Gleichung wie folgt: [46, 49] +Metadata: + +=== Element 170 === +Category: Formula +Text: 𝑃0 = 𝑝0 2 ∗ 1𝑚² 𝜌 ∗ 𝑐 +Metadata: + +=== Element 171 === +Category: NarrativeText +Text: Formel 9: Bezugsgröße +Metadata: + +=== Element 172 === +Category: Formula +Text: 𝑃̅ 𝑃0 = 𝑆 ⁄ 1𝑚2 𝑁 𝑁 ∑ 𝑖=1 𝑝𝑒𝑓𝑓,𝑖 𝑝0 2 2 +Metadata: + +=== Element 173 === +Category: NarrativeText +Text: Formel 10: Schallleistung der einzelnen Teilflächen [W] +Metadata: + +=== Element 174 === +Category: NarrativeText +Text: Mit ρ: Luftdichte [kg/m³], v: Luft-Schallgeschwindigkeit [m/s], peff: effektiver Schalldruck [Pa = N/m²], +Metadata: + +=== Element 175 === +Category: NarrativeText +Text: Si: Teilflächen [m²], N: Anzahl der Teilflächen [-] +Metadata: + +=== Element 176 === +Category: NarrativeText +Text: Durch Bildung des logarithmischen Verhältnisses des Schallleistungspegels zur Bezugs- größe, ergibt sich der zeitbezogene Schallleistungspegel LWA (siehe Formel 11) und ent- sprechend der maximalen Schalleistungspegel LWAmax (siehe Formel 12). [50, 49, 21] Der zeitbezogene Schallleistungspegel LWA bezieht sich für 1 Ereignis pro Einwirkzeit T, wobei die durchschnittliche Einwirkzeit 5 Sekunden betrug. +Metadata: + +=== Element 177 === +Category: Formula +Text: LWA = 10 ∗ lg( 1 N N ∑10𝐿𝐴𝑒𝑞,𝑖∗0,1 i=1 ) + 10 ∗ lg( 𝑆 𝑆0 ) +Metadata: + +=== Element 178 === +Category: Formula +Text: LWA,5s = L𝐴𝑒𝑞 + 10 ∗ lg( 𝑆 𝑆0 ) = L𝐴𝑒𝑞 + 10 ∗ lg( 2𝜋𝑟² 𝑆0 ) +Metadata: + +=== Element 179 === +Category: NarrativeText +Text: Formel 11: Schallleistungspegel bezogen auf 5 Sekunden [dB(A)] +Metadata: + +=== Element 180 === +Category: Formula +Text: 𝐿𝑊𝐴𝑚𝑎𝑥 = 𝐿̅𝐴𝐹𝑚𝑎𝑥 + 10 ∗ 𝑙𝑔( 𝑆 𝑆0 ) = 𝐿̅𝐴𝐹𝑚𝑎𝑥 + 10 ∗ 𝑙𝑔( 2𝜋𝑟² 𝑆0 ) +Metadata: + +=== Element 181 === +Category: NarrativeText +Text: Formel 12: maximale Schallleistungspegel [dB(A)] +Metadata: + +=== Element 182 === +Category: NarrativeText +Text: Mit LAeq: äquivalente Dauerschallpegel [dB(A)], S: Hüllfläche, hier Flächeninhalt einer Halbkugel mit +Metadata: + +=== Element 183 === +Category: NarrativeText +Text: Radius r [m²], S0: Bezugsfläche = 1 m², LAFmax: maximale Schalldruckpegel [dB(A)] +Metadata: + +=== Element 184 === +Category: UncategorizedText +Text: 15 +Metadata: + +=== Element 185 === +Category: Header +Text: 2 Grundlagen +Metadata: + +=== Element 186 === +Category: NarrativeText +Text: Dabei stellt der erste Term den äquivalenten Dauerschallpegel nach DIN EN ISO 3744 ff [29] dar. Er gibt an welcher konstante Schallpegel über die gesamte Messzeit notwendig wäre, um die gleiche Energie abzustrahlen wie das gemessene zeitlich veränderliche Ge- räusch. Eine weitere wichtige akustische Größe ist der Maximale Schalldruckpegel LAFmax, welcher zur Beurteilung von Geräuschspitzen gemäß der technischen Anleitung zum Schutz gegen Lärm (TA Lärm) [6] benötigt wird. Dieser gibt den höchsten vorkommen- den Schalldruckpegel eines Einzelereignisses innerhalb der gemessenen Zeit an, der von einer sehr kurzen Einwirkzeit geprägt ist. [51] +Metadata: + +=== Element 187 === +Category: NarrativeText +Text: Um aussagekräftige Emissionsansätze darbieten zu können, wird der stündliche Schal- leistungspegel (siehe Formel 13) je Vorgang gebildet. Um die Impulshaltigkeit des Ge- räusches einzubeziehen, wird der impulsbehaftete Schalleistungspegel bezogen auf 1 Stunde gebildet (siehe Formel 14). +Metadata: + +=== Element 188 === +Category: Formula +Text: LWA,1h = 10 ∗ lg(( 𝑇 3600 s ) ∗ 10(0,1∗𝐿𝑊𝐴,5𝑠)) +Metadata: + +=== Element 189 === +Category: NarrativeText +Text: Formel 13: stündlicher Schallleistungspegel [dB(A)] +Metadata: + +=== Element 190 === +Category: Formula +Text: 𝐿𝑊𝐴𝑇,1ℎ = 10 ∗ 𝑙𝑔(( 𝑇 3600 𝑠 ) ∗ 10(0,1∗𝐿𝑊𝐴,5𝑠)) + 𝐾𝐼 +Metadata: + +=== Element 191 === +Category: NarrativeText +Text: Formel 14: impulsbehafteter stündlicher Schallleistungspegel [dB(A)] +Metadata: + +=== Element 192 === +Category: NarrativeText +Text: Mit: T: Zeit [s], LWA: Schallleistungspegel bezogen auf 5 Sekunden [dB(A)] +Metadata: + +=== Element 193 === +Category: NarrativeText +Text: Um den äquivalenten Dauerschallpegel zu erfassen, müssen verschiedene Einflüsse be- rücksichtigt werden. Dazu wird der Schalldruckpegel in Anlehnung nach DIN EN ISO 3744 bis 3746 [29, 52, 30] gemessen. Das Verfahren zur Messung wird in Kapitel 5, aufgezeigt. Dabei wird Summe des direkten Schalls und dessen Beiträge gemessen. Die Beiträge des Schalls beinhalten alle Reflektionen an der Decke, des Bodens, der Wände und weiteren möglichen Hindernissen. Es können bei der Messung externe unerwünschte Geräusche auftreten, sprich Geräusche die nicht von der zu betrachtenden Quelle ausgehen und zu einem erhöhten Schalldruckpegel führen. Ist die Differenz zwischen Fremdgeräusche und den gemessenen Schalldruckpegel größer als 10 dB wird nach DIN EN ISO 3746 [30] keine Fremdgeräuschkorrektur vorgenommen. Liegt die Differenz des Fremdgeräusches und dem gemessenen Schalldruckpegel zwischen 3 dB und 10 dB, so ist es ratsam eine Fremdgeräuschkorrektur nach Formel 15 durchzuführen. [25] Um vorherrschende Fremdgeräusche zu prüfen, ist der 95-Perzentilpegel einzusetzen. Der 95-Perzentilpegel beinhaltet alle Pegelwerte, die 95 % der Messzeit überschritten wurde. [53] Um jene +Metadata: + +=== Element 194 === +Category: UncategorizedText +Text: 16 +Metadata: + +=== Element 195 === +Category: Header +Text: 2 Grundlagen +Metadata: + +=== Element 196 === +Category: NarrativeText +Text: Einflüsse zu berücksichtigen, sind Korrekturen an den gemessenen Schalldruckpegeln erforderlich. Zum einen wird eine Fremdgeräuschkorrektur K1 (siehe Formel 15) nach den Verfahren der Normreihe DIN EN ISO 3746 ff [30] und eine Umgebungskorrektur K2 im Freien (siehe Formel 16) nach den Verfahren der Normreihe DIN EN ISO 3744 ff [29] vorgenommen. Bei Messungen im Freien kann in der Regel die Umgebungskorrektur K2 vernachlässigt werden, wenn der Boden aus eben und aus einem harten Material be- steht und keine Gegenstände in der Nähe sind, wodurch die Emissionen reflektiert wer- den können. Außerdem muss die Emissionsquelle mindestens das Dreifache des größten Abstands betragen. +Metadata: + +=== Element 197 === +Category: Formula +Text: 𝐾1 = −10lg(1 − 10−0,1∗∆𝐿𝐴) = 10lg(1 − 10−0,1∗(𝐿𝐴𝑒𝑞 +Metadata: + +=== Element 198 === +Category: NarrativeText +Text: Formel 15: Fremdgeräuschkorrektur [dB(A)] +Metadata: + +=== Element 199 === +Category: Title +Text: Mit L̅AFeq: gemessene mittlere Schalldruckpegel [dB(A)], L̅AF95: 95-Perzentilpegel [dB(A)] +Metadata: + +=== Element 200 === +Category: Formula +Text: 𝐾2 = 𝐿𝑊𝐴∗ − 𝐿𝑊𝐴𝑟 +Metadata: + +=== Element 201 === +Category: NarrativeText +Text: Formel 16: Umgebungskorrektur [dB(A)] +Metadata: + +=== Element 202 === +Category: NarrativeText +Text: Mit: LWA*: Schallleistungspegel der Vergleichsschallquelle ohne Umgebungskorrektur [dB] d.h. K2 = 0 [dB(A), LWA* : kalibrierte Schallleistungspegel der Vergleichsschallquelle bezogen auf 1 pW = +Metadata: + +=== Element 203 === +Category: Formula +Text: 10-12 W [dB(A)] +Metadata: + +=== Element 204 === +Category: NarrativeText +Text: Der Messflächen-Schalldruckpegel nach DIN EN ISO 3744 ff [29] berücksichtigt somit die notwendigen Korrekturen, um die Einflüsse von Fremdgeräuschen und der Messumge- bung zu berücksichtigen (siehe Formel 17). +Metadata: + +=== Element 205 === +Category: Formula +Text: 𝐿̅𝑝𝑓 = 𝐿̅𝐴𝑒𝑞 − 𝐾1 − 𝐾2 +Metadata: + +=== Element 206 === +Category: NarrativeText +Text: Formel 17: zeitlich gemittelte Messflächen-Schalldruckpegel [dB(A)] +Metadata: + +=== Element 207 === +Category: Title +Text: Mit L̅AFeq: äquivalenter Dauerschallpegel [dB(A)] K1: Fremdgeräuschkorrektur nach Formel 15, K2: Um- +Metadata: + +=== Element 208 === +Category: NarrativeText +Text: gebungskorrektur nach Formel 16 [dB(A)] +Metadata: + +=== Element 209 === +Category: NarrativeText +Text: Der äquivalente Dauerschallpegel wird nach der Lärmfibel [54] als A-bewerteten Schall- +Metadata: + +=== Element 210 === +Category: NarrativeText +Text: druckpegel definiert, der konstant über eine Einwirkzeit die gleiche Schallenergie aus- sendet wie der Schallpegel mit einer schwankenden Intensität. [54] Der äquivalente Dauerschallpegel ergibt sich aus dem gebildeten Mittelwert des gemes- senen Schalldruckpegel LAFeq (siehe Formel 18) aller Mikrofonpositionen auf der Hüllflä- che. Dies wird in Anlehnung an die Normreihe DIN EN ISO 3744 ff [29] durchgeführt und +Metadata: + +=== Element 211 === +Category: UncategorizedText +Text: 17 +Metadata: + +=== Element 212 === +Category: Header +Text: 2 Grundlagen +Metadata: + +=== Element 213 === +Category: NarrativeText +Text: unter Berücksichtigung der notwendigen Korrekturen wie der Fremdgeräuschkorrektur K1 und der Umgebungskorrektur K2. +Metadata: + +=== Element 214 === +Category: Formula +Text: 𝐿̅𝐴𝑒𝑞 = 10 ∗ lg( 1 𝑁 𝑁 ∑100,1∗𝐿𝐴𝐹𝑒𝑞,𝑖 𝑖=1 ) +Metadata: + +=== Element 215 === +Category: NarrativeText +Text: Formel 18: äquivalenter Dauerschallpegel [dB(A)] +Metadata: + +=== Element 216 === +Category: Title +Text: Mit L̅Aeq: äquivalenter Dauerschallpegel [dB(A)], N: Anzahl der gemessenen Schalldruckpegel [-] +Metadata: + +=== Element 217 === +Category: NarrativeText +Text: Nach der Betrachtung der Grundlagen des Schallleistungspegels und der Schallmessung, ist es nun sinnvoll, auch die Richtcharakteristik von Schallquellen zu betrachten. In die- ser Thesis wird die 2D-Richtcharakteristik von mehreren Positionen entlang eines Krei- ses um die Schallquelle herum bestimmt und basiert auf Grundlage der einzelnen Schall- messungen an jedem einzelnen Mikrofon. Es werden somit die Messdaten von mehre- ren Mikrofonpositionen, die in einer Kreisbahn um die Schallquelle herum platziert sind, verwendet, um die Richtwerte für verschiedene Winkel zu berechnen. Die gesammelten Messwerte der verschiedenen Positionen werden im Anschluss analysiert, um die Richtcharakteristik zu bestimmen. Dazu werden statistische Verfahren oder mathema- tische Modelle verwendet, um die Beziehung zwischen den Schallpegeln und den Win- keln zu bestimmen. Durch die Verwendung mehrerer Mikrofonpositionen können Infor- +Metadata: + +=== Element 218 === +Category: Title +Text: mationen über die Schallausbreitung in verschiedene Richtungen gewonnen werden. +Metadata: + +=== Element 219 === +Category: NarrativeText +Text: Im Allgemeinen beschreibt die Richtcharakteristik, wie Schall in Abhängigkeit von der Richtung ausgestrahlt wird und ist damit eine wichtige Eigenschaft von Schallquellen. Bei gleichmäßiger Abstrahlung ergibt sich für die jeweilig gewählte Hüllfläche ein ge- schlossener Kreis oder Rechteck. Im Mittelpunkt des geschlossenen Kreises, befindet sich die Schallquelle, die sich im Ursprung des Koordinatensystems befindet. Der Mess- punkt liegt auf einer Kugeloberfläche, mit dem Abstand r, um die Schallquelle herum. Um nun die Richtcharakteristik der Quelle zu bestimmen, wird der Schallpegel an diesem Messpunkt gemessen. Der komplexe Richtungsfaktor Γ beschreibt "das Verhältnis des komplexen Schalldruckes in einer bestimmten Richtung zum komplexen Schalldruck in +Metadata: + +=== Element 220 === +Category: NarrativeText +Text: der Bezugsrichtung" [55] +Metadata: + +=== Element 221 === +Category: NarrativeText +Text: Der Richtungsfaktor beschreibt somit, wie sich der Schalldruck in einer bestimmten Rich- tung im Vergleich zur Bezugsrichtung verändert. Dabei ist der Schalldruck abhängig von dessen Entfernung r, der Richtung durch den azimutalen Winkel 𝜑 und den polar Winkel +Metadata: + +=== Element 222 === +Category: NarrativeText +Text: θ zwischen der Quelle und dem Messpunkt. [55–57] +Metadata: + +=== Element 223 === +Category: Header +Text: 18 +Metadata: + +=== Element 224 === +Category: Header +Text: 2 Grundlagen +Metadata: + +=== Element 225 === +Category: Formula +Text: 𝑝(𝑟,𝜑,𝜃) Γ = 𝑝0(𝑟,𝜑0,𝜃0) +Metadata: + +=== Element 226 === +Category: NarrativeText +Text: Formel 19: komplexe Richtungsfaktor [-] +Metadata: + +=== Element 227 === +Category: Formula +Text: Mit p(r,φ,θ): Schalldruck im Messpunkt [dB], p0(r,φ0,θ0): Schalldruck im Ursprung [dB] +Metadata: + +=== Element 228 === +Category: NarrativeText +Text: Da die Bezugsrichtung meist eine geometrische Symmetrieachse des Strahlers ist, be- rechnet sich der Richtungsfaktor nach Formel 20. Dies bedeutet, dass die Achse des Strahlers so gerichtet ist, dass entlang derer die Eigenschaften des Strahlers spiegelsym- metrisch sind. [55] +Metadata: + +=== Element 229 === +Category: Formula +Text: Γ = 𝑝̃(𝑟,𝜑,𝜃) 𝑝̃0(𝑟,𝜑0,𝜃0) +Metadata: + +=== Element 230 === +Category: NarrativeText +Text: Formel 20: Richtungsfaktor [-] +Metadata: + +=== Element 231 === +Category: NarrativeText +Text: Mit p(r,φ,θ): Schalldruck im Messpunkt [dB(A)], p0(r,φ0,θ0): Schalldruck im Ursprung [dB(A)] +Metadata: + +=== Element 232 === +Category: NarrativeText +Text: Eine gerichtete Schallabstrahlung lässt sich daran erkennen, dass es starke Unterschiede im gemessenen Schalldruckpegel gibt. Um die Richtwirkung einer Schallquelle definie- ren zu können, wird das Richtmaß DI eingeführt, welche das Maß für die gerichtete Schallabstrahlung einer Schallquelle im Vergleich einer Kugelwelle (siehe Formel 21) be- schreibt. Ergibt sich ein positiver Wert des Richtmaßes, deutet dies auf eine gerichtete Schallquelle hin und ein höherer Schalldruckpegel auf der Achse der Schallquelle gemes- sen wird, als auf einer Kugel. Hingegen negative Werte auf eine ungerichtete Schallab- strahlung hindeuten, bei welchen der Schalldruckpegel auf der Achse der Schallquelle niedriger ist als auf einer Kugel. [42, 55] +Metadata: + +=== Element 233 === +Category: Formula +Text: 𝐷𝐼 = 20lg(𝛤) = 20lg( 𝑝̃(𝑟,𝜑,𝜃) 𝑝̃0(𝑟,𝜑0,𝜃0) ) = 𝐿𝑝(𝑟,𝜑,𝜃) − 𝐿𝑝(𝑟,𝜑0,𝜃0) +Metadata: + +=== Element 234 === +Category: NarrativeText +Text: Formel 21: Richtmaß [dB(A)] +Metadata: + +=== Element 235 === +Category: NarrativeText +Text: Mit: Lp(r,φ,θ): Schalldruckpegel im Messpunkt [dB(A)], Lp(r,φ0,θ0): Schalldruckpegel im Ursprung +Metadata: + +=== Element 236 === +Category: Footer +Text: [dB(A)] +Metadata: + +=== Element 237 === +Category: UncategorizedText +Text: 19 +Metadata: + +=== Element 238 === +Category: Header +Text: 2 Grundlagen +Metadata: + +=== Element 239 === +Category: Image +Text: +Metadata: + +=== Element 240 === +Category: FigureCaption +Text: Abbildung 3: Geometrische Darstellung der Richtcharakteristik (Quelle: in Anlehnung an [55] – GeoGebra 3D) +Metadata: + +=== Element 241 === +Category: NarrativeText +Text: Um die Richtcharakteristik zu visualisieren, werden die berechneten Richtwerte in ei- nem Polarkoordinatendiagramm dargestellt. Dies bedeutet, dass die kartesischen Koor- dinaten in Abhängigkeit vom Winkel angegeben werden. Die Konturen, die sich aus dem Polarkoordinatendiagramm ergeben, beschreiben die horizontale, beziehungsweise vertikale, Richtcharakteristik (siehe Formel 22). +Metadata: + +=== Element 242 === +Category: UncategorizedText +Text: 𝜃 = 𝜃0 = 0° ∩ 0° ≤ 𝜑 ≤ 360° Beziehungsweise 𝜑 = 𝜑0 = 𝑐𝑜𝑛𝑠𝑡. ∩ 0° ≤ 𝜃 ≤ 360° +Metadata: + +=== Element 243 === +Category: NarrativeText +Text: Formel 22: Konturen des Polarkoordinatendiagramms +Metadata: + +=== Element 244 === +Category: NarrativeText +Text: Mit: 𝜑: azimutalen Winkel = arctan(y/x) [°], 𝜃: polar Winkel [°] +Metadata: + +=== Element 245 === +Category: NarrativeText +Text: Die Messpunkte MP in der Ebene, wird durch die Angabe von zwei Koordinaten im kar- tesischen Koordinatensystem [x; y] beschrieben. Von der Quelle Q aus geht ein Vektor mit dem Abstand r zum Messpunkt mit einem Winkel 𝜑 mit 0° ≤ 𝜑 ≤ 360° aus. [58] +Metadata: + +=== Element 246 === +Category: UncategorizedText +Text: 20 +Metadata: + +=== Element 247 === +Category: Header +Text: 2 Grundlagen +Metadata: + +=== Element 248 === +Category: Title +Text: 2.3 Statistik +Metadata: + +=== Element 249 === +Category: NarrativeText +Text: Die Statistik bezogen auf Messwerte dient dazu, die gesammelten Informationen syste- matisch zu analysieren und interpretieren zu können. Durch statistische Methoden kön- nen Muster, Trends, Zusammenhänge und Unsicherheiten in den Messwerten identifi- ziert werden. Dies ermöglicht eine zuverlässige und fundierte Aussage über die gemes- senen Verladetätigkeiten. Im Folgenden werden somit verschiedene statistische Analy- semethoden vorgestellt, die in der Auswertung von Verladegeräuschen eingesetzt wer- den können. [59] +Metadata: + +=== Element 250 === +Category: NarrativeText +Text: Um statistische Aussagen treffen zu können sind statistische Parameter notwendig, die Aufschluss über die Verteilung der Variablen liefern. Bevor überhaupt eine statistische Aussage gemacht werden kann, ist eine Gewinnung notwendig, die die eigentliche Da- tenerhebung und eine dahinterliegende Planung umfasst. Bei den erhobenen Daten handelt es sich um eine Primärerhebung, welche immer objektiv, valide und reliabel sind. Objektiv bedeutet, dass die Messung unabhängig von persönlichen Meinungen o- der subjektiven Einschätzungen durchgeführt wurde. Die objektive Schallleistungsmes- sung basiert auf den anerkannten Regeln der Technik, sowie festgesetzten Verfahren, um eine genaue und verlässliche Bestimmung der Schallleistung zu ermöglichen. Valid bedeutet, dass die Erhebungsmethode den beabsichtigten Sachverhalt genau und prä- zise misst. Reliabel bedeutet, dass die Messungen unter konstanten Bedingungen wie- derholbar sind. Diese Eigenschaften der Datenerhebung sorgen dafür, dass die Daten vertrauenswürdig und aussagekräftig sind. [60] +Metadata: + +=== Element 251 === +Category: NarrativeText +Text: Die statistische Einheit ist der Beladevorgang, der untersucht und gemessen wird. Die akustischen Kenngrößen werden für jeden Beladevorgang separat ermittelt und analy- siert. Die einzelnen Messdaten einer akustischen Kenngröße, repräsentieren die Merk- male der statistischen Einheit. Ein Merkmal ist der Schalldruckpegel, Schallleistungspe- gel oder eine andere akustische Messgröße. Um die Verteilung der Messwerte zu visua- lisieren, wird eine Häufigkeitsverteilung erstellt. Diese zeigt, wie oft ein bestimmter Wert in der Messreihe auftritt. Die Häufigkeitsverteilung ermöglicht es, wichtige Infor- mationen zu erlangen, um die Messergebnisse besser interpretieren zu können. [60] Hierbei werden die Messwerte xi und deren Häufigkeit ni beziehungsweise hi in eine Häufigkeitstabelle gegenübergestellt und anschließen in einem Säulendiagramm visua- +Metadata: + +=== Element 252 === +Category: UncategorizedText +Text: 21 +Metadata: + +=== Element 253 === +Category: Header +Text: 2 Grundlagen +Metadata: + +=== Element 254 === +Category: NarrativeText +Text: lisiert. Die absolute Häufigkeit ni stellt die konkreten Werte dar, wobei die relative Häu- figkeit die Anteile an der gesamten Anzahl der Messwerte widerspiegelt (siehe Formel 23). [61] +Metadata: + +=== Element 255 === +Category: Title +Text: 𝑛𝑖 +Metadata: + +=== Element 256 === +Category: Formula +Text: ℎ𝑖 = 𝑛 +Metadata: + +=== Element 257 === +Category: Title +Text: Formel 23: relative Häufigkeit [-] +Metadata: + +=== Element 258 === +Category: NarrativeText +Text: Mit: ni: absolute Häufigkeit [-], n: gesamte Anzahl der Messwerte [-] +Metadata: + +=== Element 259 === +Category: NarrativeText +Text: Der Mittelwert, oder auch Median genannt, wird aus den Einzelwerten berechnet und stellt die mittlere Größenordnung dar. [60] Bei den Messwerten handelt es sich um Schallpegelgrößen, die energetisch gemittelt werden müssen, da es sich hierbei um lo- garithmische Verhältnisse handelt (siehe Formel 24). [62] +Metadata: + +=== Element 260 === +Category: Formula +Text: 𝐿̅𝑚𝑖𝑡𝑡𝑒𝑙 = 10 ∗ lg( 1 𝑁 𝑁 ∑100,1∗𝐿𝑖 𝑖=1 ) +Metadata: + +=== Element 261 === +Category: NarrativeText +Text: Formel 24: Mittelungspegel [dB(A)] +Metadata: + +=== Element 262 === +Category: NarrativeText +Text: Mit: Li: der i-te Schallpegel [dB(A)], N: Anzahl der gemessenen Schalldruckpegel [-] +Metadata: + +=== Element 263 === +Category: NarrativeText +Text: Eine weitere wichtige Kenngröße stellt das Streuungsmaß dar, welche die Abweichung der einzelnen Messwerte vom Mittelwert darstellt. In der Regel werden folgende Unter- scheidungen gemacht: Spannweite, Varianz, Standardabweichung und Quartilsabstand. Die Spannweite stellt „die Differenz zwischen dem größten (Maximum) und dem kleins- ten Wert (Minimum)“ [59] dar. Der Quartilabstand gibt an wo sich die Werte im mittle- ren 50%-Bereich der Messreihe befinden. Die Varianz (siehe Formel 25) umfasst alle Werte einer Verteilung und gibt die mittlere quadrierte Abweichung vom Mittelwert an. Hierbei wird die quadrierte Abweichung aller einzelnen Messwerte zu einem Mittelwert aufsummiert. Eine große Varianz deutet auf eine größere Streuung um den Mittelwert hin. Folglich deutet eine kleine Varianz eine geringe Streuung um den Mittelwert hin. Um die Kenngröße interpretierbar zu machen, wird die Quadratwurzel der Varianz, die sogenannte Standardabweichung (siehe Formel 26), berechnet, die die positive Wurzel der Varianz darstellt. Die Standardabweichung gibt ähnlich wie die Varianz, die durch- schnittliche Abweichung vom Mittelwert an. [59, 60] +Metadata: + +=== Element 264 === +Category: Formula +Text: 𝜎 = 𝑠2 = ∑ (𝐿𝑖 − 𝐿̅)² 𝑛 𝑖=1 𝑛 +Metadata: + +=== Element 265 === +Category: NarrativeText +Text: Formel 25: Varianz der Schalldruckpegel [dB(A)] +Metadata: + +=== Element 266 === +Category: Header +Text: 22 +Metadata: + +=== Element 267 === +Category: Header +Text: 2 Grundlagen +Metadata: + +=== Element 268 === +Category: Formula +Text: 𝑠 = √𝑠2 = √ ∑ (𝐿𝑖 − 𝐿̅)² 𝑛 𝑖=1 𝑛 +Metadata: + +=== Element 269 === +Category: NarrativeText +Text: Formel 26: Standardabweichung der Schalldruckpegel [dB(A)] +Metadata: + +=== Element 270 === +Category: UncategorizedText +Text: Mit: Li: der i-te Schallpegel [dB(A)], L̅: Mittelungspegel [dB(A)]; n: Anzahl der Messwerte [-] +Metadata: + +=== Element 271 === +Category: NarrativeText +Text: Die Messdaten, die einer natürlichen Variation unterliegen, werden auf einem Dia- gramm entsprechend ihrer Häufigkeitsverteilung dargestellt. Wenn eine bestimmte Re- gelmäßigkeit in der Verteilung der Daten vermutet wird, kann eine Funktion angepasst werden, wie zum Beispiel eine Gaußsche Glockenkurve oder auch Normalverteilung ge- nannt. Dabei werden die Daten analysiert und eine Funktion verwendet, die am besten zu der beobachteten Verteilung passt. [63] Mithilfe dieser Normalverteilung können Aussagen über die Wahrscheinlichkeit von Ereignissen oder das Verhalten der Mess- werte getroffen werden (siehe Formel 27). Hierbei benötigt man den Mittelwert, den Erfahrungswert μ und die Varianz σ. Mithilfe einer normalverteilten Zufallsgröße x, kann eine glockenförmige Häufigkeitsverteilung gebildet werden. [64] Innerhalb des Intervalls μ ± σ der Funktion befinden sich 68,27 % der gemessenen Werte. [63] +Metadata: + +=== Element 272 === +Category: Formula +Text: 𝑓(𝑥) = 1 𝜎√2𝜋 ∗ 𝑒− 1 2 ( 𝑥−𝜇 𝜎 ) 2 +Metadata: + +=== Element 273 === +Category: NarrativeText +Text: Formel 27: Dichtefunktion der Normalverteilung +Metadata: + +=== Element 274 === +Category: NarrativeText +Text: Mit: x: Zufallsgröße, μ: Erfahrungswert, σ: Varianz +Metadata: + +=== Element 275 === +Category: UncategorizedText +Text: 23 +Metadata: + +=== Element 276 === +Category: Header +Text: 3 Aktuelle Prognosegrundlage +Metadata: + +=== Element 277 === +Category: Title +Text: 3 Aktuelle Prognosegrundlage +Metadata: + +=== Element 278 === +Category: NarrativeText +Text: Die Untersuchungen der Emissionen von Verladegeräusche sind Gegenstand einzelner Untersuchungen und Grundlage von zahlreichen Schallimmissionsprognosen für Gewer- bebetriebe. Im folgenden Kapitel ist der derzeitige Stand der aktuellen Prognosegrund- lage zur betrachteten Thematik aufgezeigt. Ziel dieses Abschnittes ist es einen konkreten Überblick über die derzeitige Prognosegrundlage zu bekommen. +Metadata: + +=== Element 279 === +Category: Title +Text: 3.1 Schallimmissionsprognosen für Gewerbe – Technischer Bericht des +Metadata: + +=== Element 280 === +Category: Title +Text: HLUG +Metadata: + +=== Element 281 === +Category: NarrativeText +Text: Im Rahmen von Schallimmissionsprognosen für Gewerbe Genehmigungsverfahren, wer- den bei der Überprüfung der immissionsschutztechnischen Grenzwerte, vor allem die Lkw- und Verladegeräusche bei der Belieferung der Güter betrachtet. Hierbei werden in der Praxis erfahrungsgemäß die Verladegeräusche des Technischen Berichts des Hessi- schen Landesamt für Umwelt und Geologie von 1995 [7] und 2005 [8] herangezogen. +Metadata: + +=== Element 282 === +Category: NarrativeText +Text: Im Jahr 1991 und 1995 führte Dipl.-Ing. Ekkehard Knothe von TÜV NORD, damals RWTÜV, im Auftrag des HLUG (Hessisches Landesamt für Umwelt und Geologie) eine schalltechnische Untersuchung durch, um Kennwerte und Emissionsdatenkataloge zur Prognose und Beurteilung von Lkw- und Verladegeräusche auf Betriebsgeländen anzu- fertigen. Im Jahre 2005 wurde eine erneute Beauftragung der HLUG zur Aktualisierung und Erweiterung erteilt. Die erzielten Ergebnisse sind zu heutigem Stand Grundlage für zahlreiche Schallimmissionsprognosen bei Verladevorgängen. +Metadata: + +=== Element 283 === +Category: NarrativeText +Text: Im Jahr 1995 wurden Geräuschemissionen bei üblichen Verladegeräusche genauer un- tersucht und Emissionsansätze entwickelt. Hierbei wurden die Emissionen einzelner Be- und Entladevorgänge eines Palettenhubwagens über eine Überladebrücke, Hubstapler (Elektro- und Verbrennungsmotor), Autolader-Systeme und Überladesysteme mit und ohne Torrandabdichtungen ermittelt. Im Jahr 2005 wurden die Untersuchungen erwei- tert und es entstanden erneuerte Emissionsansätze. Hierbei wurden beispielsweise die Emissionen von Handhubwagen bei Bewegungsvorgängen und unterschiedlichen Lade- einheiten (Leerfahrt, Glas- und PET-Flaschen) ermittelt. Die Untersuchung fand zudem +Metadata: + +=== Element 284 === +Category: UncategorizedText +Text: 24 +Metadata: + +=== Element 285 === +Category: Header +Text: 3 Aktuelle Prognosegrundlage +Metadata: + +=== Element 286 === +Category: NarrativeText +Text: auf unterschiedlichen Fahrbahnoberflächen (Asphalt eben, Asphalt uneben und Pflas- tersteinen) statt. Aus den erlangten Kenngrößen, wurden Mittel- und Maximalwerte ge- bildet, um einen stündlichen Schallleistungspegel zu berechnen. [8] Die der Erfassung der Verladegeräusche von Fahrzeugen fand bei der Untersuchung 1995 in Speditionen und Lebensmittelzentren ermittelt. Bei der Ermittlung der Emissionen wurde zwischen der Verladung an Innen- und Außenrampen und verschiedenen Hilfsmitteln unterschie- den. Der Emissionsort wurde so gewählt, dass beispielsweise eine benachbarte Verlade- tätigkeit die Messergebnisse nicht beeinträchtigen. Die Messwerterfassung erfolgte mit einem Pegelschreiben „RION LR 04“ oder einem Magnetbandgerät „Sony TCD-D 10“. [7] Eine Übersicht zur Erhebung und Ergebnisse der Schallpegelmessungen sind folgend auf- gezeigt. Hierbei wurde der Schallleistungspegel innerhalb von einer Einwirkzeit von fünf Sekunden auf einer Stunde umgerechnet (siehe Tabelle 2). +Metadata: + +=== Element 287 === +Category: Table +Text: LWA,1h bei der Be- und Entladung [dB(A)] Vorgang Außenrampe Innenrampe Palettenhubwagen über Überladebrücke 85,0 80,0 Palettenhubwagen über fahrzeugeigene Ladeboardwand 88,0 - Rollcontainer über Überladebrücke - 64,0 Rollcontainer über fahrzeugeigene Ladebrordwand 78,0 - Kleinstapler über Überladebrücke 75,0 70,0 Rollgeräusche, Wageboden 75,0 75,0 +Metadata: + +=== Element 288 === +Category: NarrativeText +Text: Tabelle 2: Übersicht über den Schallleistungspegel verschiedener Vorgänge [7] +Metadata: + +=== Element 289 === +Category: NarrativeText +Text: Hier: LWAT,1h: stündlich mittlerer Schalleistungspegel [dB(A)] +Metadata: + +=== Element 290 === +Category: NarrativeText +Text: Nach dem Technischen Bericht 1995 können Verladegeräusche eines Gabelstaplers meist aus den Datenblättern der Firmen entnommen werden. Bei der Messung der Ge- räuschemissionen von Gabelstaplern wurden Gabelstapler der Klasse eine Tonne bis drei Tonnen ermittelt. Der mittlere stündliche Schallleistungspegel betrug 110 dB(A) mit einer Standardabweichung von 3,1 dB. Ähnlich wie bei der Emissionsansatz Ermittlung von Lkw-Geräuschen, wurde der Emissionsansatz der Verladegeräusche gewählt (siehe Formel 28 und Formel 29). [7, 8] +Metadata: + +=== Element 291 === +Category: UncategorizedText +Text: 25 +Metadata: + +=== Element 292 === +Category: Header +Text: 3 Aktuelle Prognosegrundlage +Metadata: + +=== Element 293 === +Category: Formula +Text: 𝐿𝑊𝐴𝑟 = 𝐿𝑊𝐴𝑇,1ℎ + 10 ∗ 𝑙𝑔(𝑛 − ( 𝑇𝐸 1 ℎ )) +Metadata: + +=== Element 294 === +Category: NarrativeText +Text: Formel 28: Schallleistungspegel nach dem Technischen Bericht 1995 [7] [dB(A)] +Metadata: + +=== Element 295 === +Category: Formula +Text: 𝐿𝑊𝐴𝑇,1ℎ = 𝐿𝑊𝐴𝑇 + 10 ∗ 𝑙𝑔( 𝑇𝐸 3600 𝑠 ) −10 ∗ 𝑙𝑔( 𝑆 𝑆0 +Metadata: + +=== Element 296 === +Category: UncategorizedText +Text: ) +Metadata: + +=== Element 297 === +Category: NarrativeText +Text: Formel 29: Schallleistungspegel nach dem Technischen Bericht 2005 [8] [dB(A)] Mit: LWAT,1h: stündlich gemittelter Schallleistungspegel [dB(A)], n: Anzahl der Ereignisse in der Beurtei- lungszeit TE, LWAT: Schallleistungspegel inklusive Impulszuschlag KI, S: Größe der Fläche (S0 = 1 m²) +Metadata: + +=== Element 298 === +Category: NarrativeText +Text: Nach Rückfrage beim TÜV Nord bezüglich des aktuellen Forschungsstandes teilte Dipl.- Ing. Knut Lenkewitz mit, dass derzeit weitere Untersuchungen durchgeführt werden. Er informierte zudem, dass die Untersuchungen von 2019 bis 2021 gezeigt haben, dass im Vergleich zu den Ergebnissen aus dem Jahr 1995 der ermittelte Schallleistungspegel auf- grund des fortschrittlichen Technologiestandes niedriger angesetzt werden kann. Dar- über hinaus wurden aktuelle Datenblätter bereitgestellt, die den aktuellen Stand der Technik widerspiegeln. In Tabelle 3 sind die aktuellen Datenblätter zusammengefasst. +Metadata: + +=== Element 299 === +Category: Table +Text: LWAT,1h bei der Gesamter Vorgang Be- und Entladung [dB(A)] Paletten an einer Außenrampe über eine Mini-Überladebrücke, Klappkeil- Überladebrücke oder schwenkbare Überladebrücke mit Elektro-Flurföderfahrzeug 79,9 Paletten an einer Außenrampe über die fahrzeugeigene Ladebordwand des Lkw mit Elektro-Flurförderfahrzeug 82,0 Rollwagen an einer Außenrampe über eine Mini-Überladebrücke; Klappkeil- Überladebrücke oder schwenkbare Überladebrücke 73,8 Rollwagen an einer Außenrampe über die fahrzeugeigene Ladebordwand des Lkw 74,5 Paletten an Vorsatzrampen mit Planen-Torrrandabdichtung und Typ A: Brückenplateau und Klappkeil, rutschfeste und profilierte Metalloberfläche 75,5 integrierter Vorschub- Typ B: Brückenplateau – rutschfeste und überladebrücke mit Elektro- geräuschgedämmte und entdröhnte Korund- 70,5 Flurförderfahrzeug Beschichtung auf PU-Basis +Metadata: + +=== Element 300 === +Category: FigureCaption +Text: Tabelle 3: Übersicht über die aktuellen Untersuchungsergebnisse +Metadata: + +=== Element 301 === +Category: NarrativeText +Text: Hier: LWAT,1h: stündlich mittlerer Schalleistungspegel [dB(A)] +Metadata: + +=== Element 302 === +Category: UncategorizedText +Text: 26 +Metadata: + +=== Element 303 === +Category: Header +Text: 3 Aktuelle Prognosegrundlage +Metadata: + +=== Element 304 === +Category: Title +Text: 3.2 Be- und Entladevorgängen mit Palettenhubwagen und beladener Palette bei Lkw in Logistikzentren +Metadata: + +=== Element 305 === +Category: NarrativeText +Text: Im Zuge einer Bachelor Thesis an der TH Bingen im Studiengang Umweltschutz, hat sich Martin Heroldt im Jahr 2016 das Ziel gesetzt, einzelne Verladegeräusche aus dem Tech- nischen Bericht des Hessischen Landesamt für Umwelt und Geologie von 1995 [7] zu überprüfen und zu bestätigen beziehungsweise zu aktualisieren. +Metadata: + +=== Element 306 === +Category: NarrativeText +Text: In der Thesis wurde der Schalldruckpegel bei Verladetätigkeiten, anhand von drei ver- schiedenen Varianten, jeweils eine Be- und Entladung einer beladenen Normpalette ge- messen. Der erste Typ „TYP 1“ bestand aus einer Überladerampe mit schwenkbarer Überladebrücke auf eine Lkw eigene Ladebordwand, welche außerhalb der Werkshalle lag. Der zweite Typ „TYP 2“ und der dritte Typ „TYP 3“ bestand aus innen liegenden Überladebrücken, welche sich im Wesentlichen durch die Länge und das Oberflächen- material charakterisieren lassen. Die Messung erfolgte mit einer standardisierten bela- denen Euro-Palette, welche mit 16 Wasserkästen, mit einem Gewicht pro Kasten von 13,2 kg, beladen war. Um eine Vergleichbarkeit mit dem technischen Bericht 1995 [7] zu erzielen, wurde dasselbe Messverfahren (siehe Kapitel Fehler! Verweisquelle konnte nicht gefunden werden.) angewendet, mit dem Unterschied, dass die Vorgänge zusam- men gemessen wurden, um praxisnähere Ergebnisse zu erzielen und nicht nur isolierte Teilschritte. +Metadata: + +=== Element 307 === +Category: NarrativeText +Text: Alle Messungen fanden unter gleichen Rahmenbedingungen statt. Es wurden ortsfeste Emissionsorte in einem Abstand von 3 m und einer Mikrofonhöhe von 1,5 m links und rechts des Lkws angeordnet. Ein Beladevorgang bestand jeweils aus der Einfahrt eines Handhubwagens mit geladener Palette über die Überladebrücke, das Festsetzen der Pa- lette in den Lkw und die Ausfahrt des leeren Handhubwagens aus dem Lkw über die Überladebrücke. Ein Entladevorgang bestand jeweils aus der Einfahrt des leeren Hand- hubwagens über die Überladebrücke, die Aufnahme einer Palette in den Lkw und die Ausfahrt des Handhubwagens mit Palette aus dem Lkw über die Überladebrücke. In den Ergebnissen wurden deutlich niedrigere Schallleistungspegel gemessen als bei dem technischen Bericht der HLUG aus dem Jahr 1995. Die Ergebnisse des Schallleistungspe- gels LWAT,1h weichen bis zu 8 dB(A) voneinander und bei Geräuschspitzen bis zu 11 dB(A) voneinander ab (siehe Tabelle 4). [65] +Metadata: + +=== Element 308 === +Category: UncategorizedText +Text: 27 +Metadata: + +=== Element 309 === +Category: Header +Text: 3 Aktuelle Prognosegrundlage +Metadata: + +=== Element 310 === +Category: Table +Text: LWAT,1h LWA,max Lkw-Ausführung [dB(A)] [dB(A)] Beladung 84,0 110,0 TYP 1 Entladung 82,2 108,0 Beladung 80,0 106,6 TYP 2 Entladung 79,1 105,8 Beladung 78,6 104,5 TYP 3 Entladung 75,7 101,9 +Metadata: + +=== Element 311 === +Category: FigureCaption +Text: Tabelle 4: Übersicht über die Schallleistungspegel verschiedener Fahrzeugtypen [65] +Metadata: + +=== Element 312 === +Category: NarrativeText +Text: Hier: LWAT,1h: impulsbehafteter stündlicher Schallleistungspegel [dB(A)], LWAmax: Geräuschspitzen +Metadata: + +=== Element 313 === +Category: UncategorizedText +Text: [dB(A)] +Metadata: + +=== Element 314 === +Category: NarrativeText +Text: Die Erkenntnis war, dass eine Überprüfung der alten Ergebnisse des HLUG ratsam ist. In der Praxis hat sich gezeigt, dass die Kombination aus einer innenliegenden, in die Werks- halle integrierten Vorschubüberladebrücke mit Tränenblech und Teleskoplippe sowie einer Torrandabdichtung die effizienteste Verladevariante darstellt, während außenlie- gende Laderampen aufgrund hoher Schallpegel vermieden werden sollten. Es wurde auch darauf hingewiesen, dass die Arbeit aufgrund des umfangreichen Umfangs der Messungen und Auswertungen ausschließlich auf die Be- und Entladungen mit dem Pa- lettenhubwagen fokussiert war. Zusammenfassend lässt sich sagen, dass weitere Unter- suchungen erforderlich sind, um einen umfassenden Überblick über alle in der Praxis stattfindenden Be- und Entladungen zu erhalten. +Metadata: + +=== Element 315 === +Category: Title +Text: 3.3 Geräuschemissionen durch Ladevorgänge in Ladezonen von +Metadata: + +=== Element 316 === +Category: Title +Text: Discountern +Metadata: + +=== Element 317 === +Category: NarrativeText +Text: Im Zuge einer Diplomarbeit an der Fachhochschule Lübeck im Studiengang Umweltinge- nieurwesen, hat sich Bianca Berghofer im Jahr 2009 zum Ziel gemacht, Geräuschemissi- onen von Ladevorgängen innerhalb von Ladezonen in Discountern zu untersuchen und folglich Geräuschemissionsansätze für schalltechnische Immissionsprognose zu entwi- ckeln. +Metadata: + +=== Element 318 === +Category: UncategorizedText +Text: 28 +Metadata: + +=== Element 319 === +Category: Header +Text: 3 Aktuelle Prognosegrundlage +Metadata: + +=== Element 320 === +Category: NarrativeText +Text: Es wurden an Discountern die Emissionen während des Beladens mithilfe von 15 Mes- sungen an drei verschiedenen Standorten erfasst. Die ermittelten Emissionen wurden demgemäß durch eine Kalibrierungsrechnung für jeden Standort und die unterschiedli- chen Fahrzeugausführungen überprüft und im Anschluss ein Emissionssatz für die Im- missionsprognose ausgearbeitet. Die Messungen wurden mit einem discountereigenen Lkw der Marke Mercedes-Benz – Actros, zu dem ein auf dem Lkw liegendes Kühlaggregat gehört, durchgeführt. Der Umschlag fand mithilfe eines Handhubwagens statt. Die Last- kraftwagen waren in verschiedenen Ausführungen erhältlich, entweder mit einer Länge von 15 oder 18 Metern und optional mit einem Anhänger. Aus den ermittelten akusti- schen Größen wurde für jeden Standort die Schallleistung, je nach Fahrzeugausführung, ermittelt. Um eine Vergleichbarkeit zu erzielen, wurden die Daten der aktuellen Richtli- nien und Studien, der im Jahr 2007 veröffentlichte „Parkplatzlärmstudie“ [66] und des im Jahr 1995 publizierte Technischen Bericht des Hlug [7] ausgewertet und dargestellt. Hierfür wurden feste Emissionsorte ausgewählt und Mikrofone auf einer Seite des Lkw in einer Höhe von 4,2 m platziert. Anhand der Untersuchungsergebnisse können fol- gende Schallleistungspegel LWA,1h für die weitere Prognose von Geräuschimmissionen von Ladevorgängen in Ladezonen von Discountern mit unterschiedlichen Fahrzeugtypen LWA,1h (siehe Tabelle 5) angesetzt werden. [67] +Metadata: + +=== Element 321 === +Category: Table +Text: LWAeq,1h KI Lkw-Ausführung [dB(A)] [dB(A)] Lkw mit 15 m Länge 84,6 9,5 Lkw mit 18 m Länge 88,5 10,6 +Metadata: + +=== Element 322 === +Category: NarrativeText +Text: Tabelle 5: Übersicht über die Schallleistungspegel verschiedener Fahrzeugtypen [67] +Metadata: + +=== Element 323 === +Category: NarrativeText +Text: Hier: LWAeq,1h: stündlich mittlerer Schalleistungspegel [dB(A)], KI: Impulszuschlag [dB(A)] +Metadata: + +=== Element 324 === +Category: NarrativeText +Text: Als Erkenntnis wurde gezogen, dass bei einer Lkw-Länge von 15 m ein signifikanter Un- terschied zwischen der Verwendung der Ladebordwand des Lkws und der innenliegen- den Überladebrücke besteht. Durch die Verwendung der Überladebrücke kann der Lkw näher an die Verladestation heranfahren, wodurch die Seitenwand der Einhausung die entstehenden Emissionen abschirmt und somit den Pegel mindert. Zudem erzeugen kür- zere Überladebrücken weniger Geräuschbelastung als längere. Bei einer Lkw-Länge von 18 m ist kein deutlicher Unterschied zwischen der Verwendung der Ladebordwand des Lkws und der innenliegenden Überladebrücke erkennbar, obwohl ein höherer Schallleis- tungspegel gemessen wurde. [67] +Metadata: + +=== Element 325 === +Category: UncategorizedText +Text: 29 +Metadata: + +=== Element 326 === +Category: Header +Text: 3 Aktuelle Prognosegrundlage +Metadata: + +=== Element 327 === +Category: Title +Text: 3.4 Fazit +Metadata: + +=== Element 328 === +Category: NarrativeText +Text: Für eine Schallimmissionsprognose werden schalltechnische Eingangsdaten benötigt und sind erforderlich, um eine Simulation durchführen zu können. Für Be- und Entlade- vorgänge an einem Umschlagspunkt stehen Veröffentlichungen zur Verfügung, die auf messtechnisch ermittelten Schalldruckpegeln basieren. +Metadata: + +=== Element 329 === +Category: NarrativeText +Text: Für Verladetätigkeiten werden zu derzeitigem Stand beispielgebend der der Technische Bericht [7, 8] von der hessischen Landesanstalt für Umwelt verwendet. Die bisherigen Veröffentlichungen und Untersuchungen in diesem Bereich konzentrieren sich haupt- sächlich auf Verbrauchermärkte und Verladungen mit Handhubwagen, was nur einen kleinen Teil der tatsächlich möglichen Verladetätigkeiten abdeckt. +Metadata: + +=== Element 330 === +Category: NarrativeText +Text: Daher wurde in dieser Arbeit der Fokus auf die Analyse von Verladegeräuschen bei in- dustriellen Verladevorgängen gelegt, um eine umfassendere Perspektive zu erhalten. Die gewählte Vorgehensweise ermöglicht eine genaue Untersuchung der Schallemissio- nen und Richtcharakteristik in einem größeren Anwendungsbereich, für die Verladung mit einem Gabelstapler und einem Gabelhubwagen. Die gewonnenen Erkenntnisse tra- gen dazu bei, ein umfassenderes Verständnis der Lärmbelastung bei verschiedenen Ver- ladetätigkeiten zu gewinnen. +Metadata: + +=== Element 331 === +Category: UncategorizedText +Text: 30 +Metadata: + +=== Element 332 === +Category: Header +Text: 4 Beschreibung des Betriebs und Untersuchungsobjekte +Metadata: + +=== Element 333 === +Category: Title +Text: 4 Beschreibung des Betriebs und Untersuchungsobjekte +Metadata: + +=== Element 334 === +Category: NarrativeText +Text: In diesem Abschnitt erfolgt eine Beschreibung des Betriebs sowie der Untersuchungs- objekte, die Gegenstand dieser Thesis sind. Eine genaue Beschreibung der Umgebung trägt zu einem vollständigen Verständnis bei und hilft die Ergebnisse der Untersuchung zu kontextualisieren. Das Ziel dieses Kapitels ist es, ein Verständnis des Untersuchungs- kontexts zu vermitteln und somit ein umfassendes Verständnis der Forschungsfragen zu erlangen. +Metadata: + +=== Element 335 === +Category: Title +Text: 4.1 Beschreibung des Betriebs +Metadata: + +=== Element 336 === +Category: NarrativeText +Text: Im folgenden Abschnitt wird der Betrieb, in dem die Untersuchungen stattfanden, ge- nauer beschrieben. Dabei werden relevante Informationen über den Betrieb, die Ar- beitsabläufe und andere wesentliche Aspekte des Betriebs dargelegt. Um die Ge- räuschemissionen der verschiedenen Verladevorgänge zu ermitteln, wurde die Messung in der Zweigniederlassung des internationalen Transport- und Logistikunternehmen „Gebrüder Weiss GmbH“ in der 90 Zeppelinstraße, 73730 Esslingen am Neckar durchge- führt. +Metadata: + +=== Element 337 === +Category: NarrativeText +Text: Die Ursprünge des Unternehmens reichen weit zurück, denn „Gebrüder Weiss“ ist das älteste Transport- und Logistikunternehmen in Österreich mit Hauptsitz in Lauterach, Österreich. [68] Die Anfänge (1474 bis 1918) nahmen in Fussach am Bodensee ihren Lauf, wo einst im Jahr 1471 die Familie Spehler und Vis (Weiss) im Auftrag der Stadt, Mailänder Bote an einer der wichtigsten Transithafen für den Nord- und Südhandel be- trieben haben. Im Jahr 1823 ging die Faktorei über in den alleinigen Besitz von Josef Weiss, der mit seinen Halbbrüdern Leonhard und Johann Alois Karl Weiss das Geschäft unter bis heute bekannten Namen „Spedition Gebrüder Weiss“ weiterführte. Von dort aus wuchs das Unternehmen stetig weiter, bis hin zur globalen Expansion im Jahr 1997 bis 2020. [69] Die Hauptgeschäftsbereiche umfasst die Landverkehre, Paketdienste, Luft- und Seefracht, sowie Logistik- und Speziallösungen. [70] In dem Unternehmen ar- +Metadata: + +=== Element 338 === +Category: UncategorizedText +Text: 31 +Metadata: + +=== Element 339 === +Category: Header +Text: 4 Beschreibung des Betriebs und Untersuchungsobjekte +Metadata: + +=== Element 340 === +Category: NarrativeText +Text: beiten Stand 2023 rund um 8400 Beschäftige an 191 firmeneigene Niederlassungen, Be- triebsstätten und Standorte in 431 Ländern. Es wurden bereits 15,5 Millionen Sendungen im Landverkehr in 2022 mit Gebrüder Weiss bereits verwickelt. [71] +Metadata: + +=== Element 341 === +Category: NarrativeText +Text: Der Standort in Esslingen am Neckar gehört zu einer der Zweigniederlassungen und be- schäftigt sich hauptsächlich mit dem Landverkehr. Am Standort befinden sich vier Um- schlaghallen mit insgesamt 153 Verladestationen. Die Messung fand in der Umschlag- halle drei, dem Exportbereich statt. Hierbei wurden spezifisch die Verladevorgänge der 8 Verladestationen an der Süd-West Fassade untersucht, bei welchen hauptsächlich Be- ladungsvorgänge durchgeführt werden. Die genauere Beschreibung und Begründung der Wahl des Messortes ist in Kapitel 5.3 aufgezeigt. Die Verladestationen (siehe Abbil- dung 4) bestehen aus einer vertieften Verladestation, einer innenliegenden hydrauli- schen Überladebrücke mit Klapplippe und einer Planen-Torrandabdichtung. +Metadata: + +=== Element 342 === +Category: Image +Text: - Au +Metadata: + +=== Element 343 === +Category: Image +Text: a - +Metadata: + +=== Element 344 === +Category: FigureCaption +Text: Abbildung 4: Verladezone von innen und außen +Metadata: + +=== Element 345 === +Category: NarrativeText +Text: Die innenliegende hydraulische Überladebrücke ist eine wichtige Komponente in Spedi- tionen, da sie den schnellen und sicheren Transport von Gütern zwischen Anhänger und +Metadata: + +=== Element 346 === +Category: ListItem +Text: 1 in Österreich, Deutschland, der Schweiz, Armenien, Australien, Bosnien-Herzegowina, Bulgarien, China, Georgien, Hongkong, Japan, Kanada, Kasachstan, Kroatien, Malaysia, Mazedonien, Montenegro, Neu- seeland, Polen, Rumänien, Russische Föderation, Serbien, Singapur, Slowakei, Slowenien, Südkorea, Tschechien, Türkei, Ukraine, Ungarn, Usbekistan, Taiwan, USA und Vietnam [71] +Metadata: + +=== Element 347 === +Category: UncategorizedText +Text: 32 +Metadata: + +=== Element 348 === +Category: Header +Text: 4 Beschreibung des Betriebs und Untersuchungsobjekte +Metadata: + +=== Element 349 === +Category: NarrativeText +Text: Lagerhalle ermöglicht. Die vorhandene Überladebrücke besteht aus Stahl mit einer ge- riffelten Oberfläche, um ein sicheres Begehen und Befahren zu ermöglichen (siehe Ab- bildung 5). +Metadata: + +=== Element 350 === +Category: Image +Text: +Metadata: + +=== Element 351 === +Category: FigureCaption +Text: Abbildung 5: Oberfläche der innenliegenden Überladebrücke +Metadata: + +=== Element 352 === +Category: NarrativeText +Text: Während der Betriebszeiten ist das Betriebsgrundstück geprägt durch ein hohes Ver- kehrsaufkommen, dass von dem pendeln der Zugmaschinen bis hin zum Umschlag der Wechselbrücken reicht. +Metadata: + +=== Element 353 === +Category: Title +Text: 4.2 Beschreibung der Untersuchungsobjekte +Metadata: + +=== Element 354 === +Category: NarrativeText +Text: In diesem Abschnitt werden die untersuchten Untersuchungsobjekte detailliert darge- stellt. Dabei handelt es sich um verschiedene Anhängertypen sowie Flurfördergeräte, die im Rahmen dieser Arbeit genauer betrachtet werden. Die Beschreibung der einzel- nen Objekte liefert einen Überblick über ihre spezifischen Merkmale und Eigenschaften, die für die weiteren Untersuchungen von Bedeutung sind. +Metadata: + +=== Element 355 === +Category: Title +Text: Die Anhänger +Metadata: + +=== Element 356 === +Category: NarrativeText +Text: Bei der schalltechnischen Untersuchung fanden die Verladevorgänge in verschiedene Anhänger statt, zum einen in Aufliegern, auch Sattelauflieger genannt und zum anderen in Wechselbrücken. +Metadata: + +=== Element 357 === +Category: NarrativeText +Text: Ein Auflieger verfügt über mehrere Hinterachsen, aber keine Vorderachse, da der Auf- lieger auf der Zugmaschine vorne mit einer Sattelplatte und dem Königszapfen aufliegt. Auflieger gibt es in verschiedensten Ausführungen. [72, 73] In dieser schalltechnischen Untersuchung kamen Ausführungen als Tautliner und als Koffer-Auflieger vor. Ein Tau- tliner ist ein Sattelauflieger, der über keine festen Ladeboardwände verfügt, sondern Planen als Ladeboardwände hat (siehe Abbildung 6). [74] Ein Koffer-Auflieger verfügt im Gegensatz zu einem Tautliner über feste Ladeboardwände (siehe Abbildung 7). Des Weiteren fanden Verladungen in sogenannte Wechselbrücken, oder auch Wechsel- behälter genannt, statt (siehe Abbildung 8). Dies sind austauschbare Ladungsträger die +Metadata: + +=== Element 358 === +Category: UncategorizedText +Text: 33 +Metadata: + +=== Element 359 === +Category: Header +Text: 4 Beschreibung des Betriebs und Untersuchungsobjekte +Metadata: + +=== Element 360 === +Category: NarrativeText +Text: einer Zugmaschine angehängt werden können. Wechelbrücken sollen den Frachtalltag erleichtern, da diese dabei helfen, Ladegut schnell und effizient umzuschlagen. Wech- selbrücken gibt es in verschiedenen Ausführungen, zum Beispiel mit Planen, mit Rollto- ren oder mit Flügeltoren. [75] Bei der Analyse der Lärmemissionen der Beladevorgänge ist es wichtig, die unterschiedlichen Merkmale der Anhänger zu berücksichtigen, um ein umfassendes Verständnis zu erlangen. +Metadata: + +=== Element 361 === +Category: Image +Text: +Metadata: + +=== Element 362 === +Category: FigureCaption +Text: Abbildung 6: Tautliner +Metadata: + +=== Element 363 === +Category: Image +Text: +Metadata: + +=== Element 364 === +Category: FigureCaption +Text: Abbildung 7: Koffer Auflieger - blau +Metadata: + +=== Element 365 === +Category: Image +Text: TIIEERNIIIERIIIIE u I uesl a0 3 | |) I +Metadata: + +=== Element 366 === +Category: FigureCaption +Text: Abbildung 8: Wechselbrücke +Metadata: + +=== Element 367 === +Category: UncategorizedText +Text: 34 +Metadata: + +=== Element 368 === +Category: Header +Text: 4 Beschreibung des Betriebs und Untersuchungsobjekte +Metadata: + +=== Element 369 === +Category: NarrativeText +Text: Die Auflieger, die in der Thesis untersucht worden sind, weisen bestimmte Abmessun- gen auf. Auflieger haben in der Regel eine Länge von circa 13,70 m, eine Breite von circa 2,50 m und eine Höhe von circa 2,60 m. Die Abmessungen ermöglichen die Aufnahme von 34 Paletten, wobei jeder Auflieger eine Kapazität von 24 t, oder 88 m³, aufweist. Wechselbrücken haben in der Regel eine Länge von circa 7,45 m, eine Breite von circa 2,50 m und eine Höhe von 2,50 m auf. Die Abmessungen bei einer Wechselbrücke er- möglichen eine Aufnahme von 18 Paletten, wobei jede Wechselbrücke eine Kapazität von circa 46 m³ besitzt. [76] +Metadata: + +=== Element 370 === +Category: UncategorizedText +Text: 35 +Metadata: + +=== Element 371 === +Category: Header +Text: 4 Beschreibung des Betriebs und Untersuchungsobjekte +Metadata: + +=== Element 372 === +Category: Title +Text: Die Flurfördergeräte +Metadata: + +=== Element 373 === +Category: NarrativeText +Text: Das Unternehmen (siehe Kapitel 4.1) setzt für den Umschlag der Güter in die Anhänger Flurfördergeräte ein, zum einem Gabelhubwagen und zum anderen Gabelstapler. Diese Flurfördergeräte ermöglichen eine schnelle und sichere Verladung der Güter. Die Gabel- hubwagen werden in der Regel für kleinere Lasten verwendet. Die Gabelstapler sind hingegen für den Transport für schweren Gütern, können aber auch auf unebenen Ge- länden eingesetzt werden und haben zudem den Vorteil, dass Sie wendiger sind. +Metadata: + +=== Element 374 === +Category: NarrativeText +Text: Die Gabelhubwagen, die das Unternehmen einsetzt, stammen von der Firma Crown und gehören zur Serie WT 3040. Sie sind mit einem Bedienerstand und einem Heckeinstieg ausgestattet, was eine komfortable Bedienung ermöglicht. In Tabelle 6 sind weitere De- tails aufgeführt, um eine detaillierte Übersicht über deren technische Spezifikationen zu geben. [77] +Metadata: + +=== Element 375 === +Category: Title +Text: Hersteller + Typzeichen +Metadata: + +=== Element 376 === +Category: Title +Text: Crown Equipment Corporation WT 3040-2.0 (el.) +Metadata: + +=== Element 377 === +Category: Title +Text: Eigengewicht ohne Batterie +Metadata: + +=== Element 378 === +Category: UncategorizedText +Text: 724 bis 801 kg +Metadata: + +=== Element 379 === +Category: Title +Text: Gesamtlänge (ohne Gabel)/ Gabellänge +Metadata: + +=== Element 380 === +Category: UncategorizedText +Text: 4200 mm/ 4220 mm +Metadata: + +=== Element 381 === +Category: Title +Text: Fahrgeschwindigkeit mit/ ohne Last +Metadata: + +=== Element 382 === +Category: UncategorizedText +Text: 10,0 / 12,5 km/h +Metadata: + +=== Element 383 === +Category: Image +Text: ETRZEIF +Metadata: + +=== Element 384 === +Category: Image +Text: +Metadata: + +=== Element 385 === +Category: FigureCaption +Text: Tabelle 6: Gabelhubwagen [77] +Metadata: + +=== Element 386 === +Category: NarrativeText +Text: Die Gabelstapler sind in der Regel die bevorzugten Flurfördergeräte für die Verladung, da sie aufgrund ihrer höheren Tragkraft und Hubhöhe eine effizientere Arbeitsweise er- möglichen. Die Gabelstapler stammen ebenfalls von der Firma Crown und gehören zur Serie SCF 6200. Um eine genaue und präzise Fortbewegung zu ermöglichen, sind die Gabelstapler mit einem Elektroantrieb ausgestattet. Ein weiterer wichtiger Vorteil ist +Metadata: + +=== Element 387 === +Category: UncategorizedText +Text: 36 +Metadata: + +=== Element 388 === +Category: Header +Text: 4 Beschreibung des Betriebs und Untersuchungsobjekte +Metadata: + +=== Element 389 === +Category: NarrativeText +Text: ihre Wendigkeit, die es den Gabelstaplern ermöglicht, auch in engen Bereichen zu ar- beiten. Weitere Details zu den technischen Spezifikationen sind in Tabelle 7 aufgeführt. +Metadata: + +=== Element 390 === +Category: Title +Text: Hersteller + Typzeichen +Metadata: + +=== Element 391 === +Category: Title +Text: Crown Equipment Corporation SCF 6200 (el.) +Metadata: + +=== Element 392 === +Category: Title +Text: Eigengewicht ohne Batterie +Metadata: + +=== Element 393 === +Category: UncategorizedText +Text: 2570 bis 2767 kg +Metadata: + +=== Element 394 === +Category: Title +Text: Gesamtlänge (ohne Gabel) / Gabellänge +Metadata: + +=== Element 395 === +Category: UncategorizedText +Text: 2413 bis 3663 mm/ 4150 mm +Metadata: + +=== Element 396 === +Category: Title +Text: Fahrgeschwindigkeit mit/ ohne Last +Metadata: + +=== Element 397 === +Category: UncategorizedText +Text: 16,0 / 16,0 km/h +Metadata: + +=== Element 398 === +Category: Image +Text: +Metadata: + +=== Element 399 === +Category: Image +Text: +Metadata: + +=== Element 400 === +Category: FigureCaption +Text: Tabelle 7: Elektro-Gegengewichtsstapler [78] +Metadata: + +=== Element 401 === +Category: UncategorizedText +Text: 37 +Metadata: + +=== Element 402 === +Category: Header +Text: 5 Beschreibung der Untersuchungsmethodik +Metadata: + +=== Element 403 === +Category: Title +Text: 5 Beschreibung der Untersuchungsmethodik +Metadata: + +=== Element 404 === +Category: NarrativeText +Text: Um das Ziel der Thesis zu erreichen ist eine bestimmende Komponente die Methodik, die in diesem Kapitel beschrieben wird. Die beschriebene Methodik beschreibt die Vor- gehensweise, die bei der Durchführung der Untersuchung angewendet wird, um die er- halten Daten auszuwerten. Darüber hinaus werden die Vor- und Nachteile der gewähl- ten Methodik diskutiert und Alternativen vorgestellt. Ziel dieses Abschnitts ist es, ein vollständiges Verständnis der Methodik zu vermitteln und die Grundlage für die Inter- pretation der Ergebnisse zu schaffen. +Metadata: + +=== Element 405 === +Category: Title +Text: 5.1 Prozessablauf der untersuchten Verladetätigkeit +Metadata: + +=== Element 406 === +Category: NarrativeText +Text: Der Beladevorgang eines Anhängers kann je nach Art und Umfang der zu transportie- renden Güter sehr unterschiedlich sein. Die allgemeine Beschreibung ist in Kapitel 2.1 dargestellt. Das Ziel dieser Thesis besteht darin, detailliert die Verladetätigkeiten in Spe- ditionen mit verschiedenen Flurfördergeräten und anderen Parametern unter die Lupe zu nehmen und Emissionsansätze auszuarbeiten, die als Prognosegrundlage für weiter- führende Schallimmissionsprognosen zur Verfügung steht. In der Praxis ist es schwierig alle Aspekte von Verladetätigkeiten in Speditionen aufzunehmen, da dies je nach Unter- nehmen unterschiedlich ist. Die Untersuchungen fanden, wie in Kapitel 4.1 beschrieben, im Exportbereich des Unternehmens statt. Hier wurden speziell nur die Beladungen von Anhängern untersucht. Die Gründe für die Wahl der Messpositionen und des Aufbaus sind in 5.3 begründet. +Metadata: + +=== Element 407 === +Category: NarrativeText +Text: Die Verladetätigkeiten bestehen in dieser Thesis somit aus der Beladung eines Anhä- ngers. Der Ablauf beginnt mit dem Einsatz eines geeigneten Flurfördergeräts, dass die Ladeeinheit mit den Gabeln anhebt und zum jeweiligen Anhänger befördert. Der Bela- devorgang beginnt, wenn das Flurfördergerät die Überladebrücke berührt und in den Anhänger eintritt. Anschließend wird die Ladeeinheit lückenlos formschlüssig und/oder kraftschlüssig beladen, um ein Verrutschen während des Transports zu vermeiden. Im letzten Schritt fährt das Flurfördergerät aus dem Anhänger über die Überladebrücke heraus und der Vorgang ist beendet (siehe Abbildung 9). +Metadata: + +=== Element 408 === +Category: UncategorizedText +Text: 38 +Metadata: + +=== Element 409 === +Category: Header +Text: 5 Beschreibung der Untersuchungsmethodik +Metadata: + +=== Element 410 === +Category: Image +Text: Sachs REINFAHRT RAUSFAHRT Das Flurfördergerät Das Flurfördergerät Das Flurfördergerät transportiert die befördert die fährt leer aus dem Ladung von der Ladeeinheit im Anhänger heraus Überladebrücke in Anhänger und setzt auf die den Anhänger sie dort ab Überladebrücke. +Metadata: + +=== Element 411 === +Category: FigureCaption +Text: Abbildung 9: Prozessablauf des Beladevorgangs +Metadata: + +=== Element 412 === +Category: NarrativeText +Text: In diesem Zusammenhang konzentriert sich die Thesis darauf, detailliert die einzelnen Vorgänge eines Beladevorgangs zu beurteilen und insbesondere die Lärmemissionen die dabei entstehen zu untersucht. Hierbei werden die unterschiedlichen Phasen des Bela- dens, wie beispielsweise die Reinfahrt des Flurfördergeräts über die Überladebrücke, genauer betrachtet und die entstehenden Geräusche analysiert. Ziel ist es ein besseres Verständnis für die Lärmemissionen eines Beladevorgangs zu erlangen und Maßnahmen zu identifizieren, die zur Reduktion der Lärmbelastung beitragen kann. +Metadata: + +=== Element 413 === +Category: Title +Text: 5.2 Messequipment und Messaufbau +Metadata: + +=== Element 414 === +Category: NarrativeText +Text: Um die Lärmemissionen eines Beladevorgangs zu beschreiben, ist eine Messung des A- bewerteten Schalldruckpegels unerlässlich, um die notwendigen akustischen Größen bestimmen zu können. Der A-bewertete Schalldruckpegel berücksichtigt die natürliche frequenzabhängige Empfindlichkeit des menschlichen Gehörs und bietet somit eine ge- nauere Beurteilung der Lautstärke. [79] Um eine solch eine Messung durchführen zu können, sind bestimmte Messsysteme notwendig. Hierzu gehören Schallpegelmesser, die in der Lage sind, den Schalldruckpegel und den A-bewerteten Schalldruckpegel zu messen. In dieser Thesis wurde der Handschallpegelmesser von der Firma Norsonic +Metadata: + +=== Element 415 === +Category: UncategorizedText +Text: 39 +Metadata: + +=== Element 416 === +Category: Header +Text: 5 Beschreibung der Untersuchungsmethodik +Metadata: + +=== Element 417 === +Category: NarrativeText +Text: Nor140 verwendet. Der Norsonic Nor140 ist ein zuverlässiges Messgerät, welches spezi- ell für akustische Messungen entwickelt wurde. Es zeichnet sich durch eine hohe Genau- igkeit und vielseitigen Einstellungsmöglichkeiten aus, die eine detaillierte Analyse des A- bewerteten Schalldruckpegels ermöglichen. [80] +Metadata: + +=== Element 418 === +Category: NarrativeText +Text: Um eine fehlerfreie Messung zu gewährleisten, ist die Kalibrierung des Handschallpegel- messers notwendig. Hierbei kam, ebenso von der Firma Norsonic, der Akustische Kalib- rator Typ 1251 Klasse 1 zur Verwendung. Hierbei sendet der Kalibrator ein sinusförmiges Schallsignal mit 1000 Hz an das Messmikrofon. Das Messgerät muss so eingestellt wer- den, dass ein Schalldruckpegel von 114 dB bezogen auf 20 μPa angezeigt wird. [81] +Metadata: + +=== Element 419 === +Category: NarrativeText +Text: Um die Mikrofone in der gewünschten Höhe mit einem Mikrofonhalter zu positionieren, wurden Mikrofonständer verwendet und für die variable Positionierung ein langer Stab. Da die Mikrofone in einer gewissen Höhe liegen, wurde jeweils ein 5 m langes Mikrofon- kabel an die Handschallpegelmesser zwischengeschaltet. Damit es zu keinen Störgeräu- schen durch Wind kommt, wurde jedes Mikrofon mit einem Windschutz ausgerüstet. Um die Schadensfreiheit der Messgeräte zu gewährleisten und diese auf dem Betriebs- gelände sichtbar zu machen, wurde die ortsfeste Mikrofonposition zusätzlich mit Pylo- nen ausgestattet. Zusammengefasst wurden folgende Geräte verwendet (siehe Tabelle +Metadata: + +=== Element 420 === +Category: UncategorizedText +Text: 8): +Metadata: + +=== Element 421 === +Category: Table +Text: Schallpegelmessgeräte Fa. Norsonic-Tippkemper GmbH Typ 140, geeicht Verwendete Geräteeinstel- Zeitbewertung Fast, A-bewertung lung und Konfiguration Aufzeichnung des Pegel- (1-Sekunden Mittelungspegel LAeq, LACeq, Terzspektrum und Maximalpe- Zeit-Verlaufs gel LAFmax mit den internen Speichern der Norsonic-Messgeräte Kalibrator Fa. Norsonic-Tippkemper GmbH Typ 1251 überprüft, erfüllt Klasse IEC Klasse 1 +Metadata: + +=== Element 422 === +Category: NarrativeText +Text: Weitere Geräte: Mikrofonkabel 5 m, Mikrofonständer mit Mikrofonhalterung, Pylonen, Armbanduhr mit Sekundenanzeige, Klemmbrett für den Aufschrieb, Laser-Entfernungsmesser Fa. Bosch GLM 40 Professional und Meterstab +Metadata: + +=== Element 423 === +Category: NarrativeText +Text: Tabelle 8: Verwendete Messgeräte und Equipment +Metadata: + +=== Element 424 === +Category: NarrativeText +Text: Die folgende Tabelle gibt eine Zusammenfassung über die relevanten Daten zur Ei- chung/Kalibrierung (Stand 27.07.2021) für die verwendeten Handschallpegelmesser Norsonic Nor140 mit den jeweiligen Mikrofonen dar (siehe Tabelle 9). +Metadata: + +=== Element 425 === +Category: UncategorizedText +Text: 40 +Metadata: + +=== Element 426 === +Category: Header +Text: 5 Beschreibung der Untersuchungsmethodik +Metadata: + +=== Element 427 === +Category: Table +Text: Bezeichnung Serien- Kalibrator Eichung intern nummer (Eichkette) Datum Gültig bis Erweiterte Messunsi- cherheit 140-1 1403303 33706 22.01.2020 31.12.2022 0,5 dB 140-2 1405444 33706 20.02.2019 31.12.2021 0,5 dB 140-3 1406583 19909 22.01.2020 31.12.2022 0,5 dB Kalibrierung DKD/DAkkS2 Bezeichnung Serien- Kalibrator Erweiterte Messunsi- intern nummer (Eichkette) Datum Gültig bis cherheit ≤ 2 kHz / > 2 kHz 140-1 1403303 33706 18.08.2020 18.08.2022 0,35 dB / ≤ 0,65 dB 140-2 1405444 33706 16.07.2021 16.07.2023 0,35 dB / ≤ 0,65 dB 140-3 1406583 19909 21.01.2020 21.01.2022 0,35 dB / ≤ 0,65 dB +Metadata: + +=== Element 428 === +Category: NarrativeText +Text: Tabelle 9: Handschallpegelmesser Norsonic 140, Stand: 27.07.2021 +Metadata: + +=== Element 429 === +Category: NarrativeText +Text: (Quelle: Datenbank von Heine+Jud) +Metadata: + +=== Element 430 === +Category: Title +Text: 5.3 Vorgehensweise bei der Messwerterfassung +Metadata: + +=== Element 431 === +Category: NarrativeText +Text: Bevor die eigentliche Messung beginnt, ist eine Planung erforderlich, die den Standort der Messgeräte, die Messzeitpunkte und die Möglichkeiten auf dem Betriebsgelände festgelegt. Somit wurde am 23.03.2023 die örtliche Situation begutachtet und eine Pro- bemessung durchgeführt, um alle Abläufe der Messung zu verinnerlichen und eventu- elle Optimierungen vorzunehmen. Am 24.04.2023 fand eine Messung statt die nicht aus- gewertet werden konnte, da ein Messgerät nicht richtig aufgezeichnet hat. In Tabelle 10 sind die Messungstage aufgeführt. Die Tabelle 10 gibt einen Überblick über die verschie- denen Datumsangaben, an denen die Messungen durchgeführt wurden. +Metadata: + +=== Element 432 === +Category: ListItem +Text: 2 DKD/DAkkS = Deutscher Kalibrierdienst/ Deutsche Akkreditierungsstelle GmbH, ist eine Deutsche Akkre- ditierungsstelle. Die DAkkS ist für die Akkreditierung von Konformitätsbewertungen zuständig, die Prü- fungen, Kalibrierungen, Inspektionen und Zertifizierungen durchführen. [82] +Metadata: + +=== Element 433 === +Category: UncategorizedText +Text: 41 +Metadata: + +=== Element 434 === +Category: Header +Text: 5 Beschreibung der Untersuchungsmethodik +Metadata: + +=== Element 435 === +Category: Table +Text: Datum Zweck 23.03.2023 Örtliche Begutachtung und Probemessung 17.04.2023 Messung der Verladevorgänge an 8 Verladezonen 24.04.2023 Messung (Defekt) 26.04.2023 Messung der Verladevorgänge an 8 Verladezonen 27.04.2023 Messung der Verladevorgänge an 8 Verladezonen 03.05.2023 Messung der Verladevorgänge an 8 Verladezonen +Metadata: + +=== Element 436 === +Category: FigureCaption +Text: Tabelle 10: Überblick über die verschiedenen Messungstage +Metadata: + +=== Element 437 === +Category: NarrativeText +Text: Am Tag der Probemessung wurde ein geeigneter Ort gesucht, der eine nahezu störungs- freie Messung ermöglichte und den Betriebsablauf nicht beeinträchtigte. Zunächst wurde die große Umschlaghalle als erstes Messort in Betracht gezogen. Allerdings traten bei der Positionierung der Mikrofone erste Schwierigkeiten auf, da im normalen Be- triebsablauf nahezu alle Verladestationen besetzt waren, wodurch es schwierig war, ein Mikrofon im Nahfeld zu platzieren. Im Fernfeld wiederum waren die Zugmaschinen in Bewegung. Diese Umstände erschwerten die Aufstellung der Mikrofone sowohl im Nah- als auch im Fernfeld. Durch den reichlichen Betrieb war zudem der Einfluss von Fremd- geräuschen enorm groß und konnte nicht ausgeschlossen werden. Nach Absprache mit dem Lagerpersonal wurde die Probemessung im Exportbereich des Unternehmens fort- geführt, wo auf der einen Seite die Beladung und auf der anderen Seite die Entladung stattfanden (siehe Abbildung 10). Da die Entladestationen zu der Seite der großen Um- schlaghalle ausgerichtet sind, war die Positionierung der Mikrofone wie oben beschrie- ben aufgrund des hohen Betriebs nicht möglich. Daher beschränkte sich der Bereich der Messung auf die Beladestationen des Exportbereichs. +Metadata: + +=== Element 438 === +Category: Image +Text: +Metadata: + +=== Element 439 === +Category: FigureCaption +Text: Abbildung 10: Exportbereich von außen +Metadata: + +=== Element 440 === +Category: UncategorizedText +Text: 42 +Metadata: + +=== Element 441 === +Category: Header +Text: 5 Beschreibung der Untersuchungsmethodik +Metadata: + +=== Element 442 === +Category: Title +Text: Im Folgenden wird nun das eigentliche Messvorgehen detailliert beschrieben. Vor Be- +Metadata: + +=== Element 443 === +Category: NarrativeText +Text: ginn der Messung müssen die Messgeräte auf ihre Funktionsfähigkeit geprüft werden, um eine fehlerfreie Messung zu gewährleisten. Hierbei werden die Einstellungen der Schallpegelmesser kontrolliert, die Uhrzeit mit der Uhr des Protokollierers abgeglichen und die Mikrofone kalibriert. Während der Messung sollten alle relevanten Einflussfak- toren wie Witterung, Windrichtung und Verkehr berücksichtigt werden. Das Ziel der Schallpegelmessung ist es, an jeder Mikrofonposition den A-bewerteten Schalldruckpe- gel der Verladevorgänge über eine gewählte Messdauer aufzunehmen. Um alle Vor- gänge vollständig ohne manuelle Unterbrechung aufzunehmen, wurde eine Dauermes- sung durchgeführt. Hierbei wurden die Mikrofone parallel betrieben. Nach Start der Messung begab sich der jeweilige Messgehilfe auf die vorab abgesprochene Position und die Messung begann. Um später die Richtcharakteristik der Verladevorgänge zu be- stimmen, wurden Schalldruckpegel von Messpositionen entlang einer vorher gewählten Kreisbahn um einen Anhänger gemessen. An jeder Messposition der Kreisbahn wurden nach Ermessen des Messgehilfen mehrere Verladevorgänge aufgenommen. Über die mitaufgezeichnete Tonaufzeichnung, Marker und Sprach- und Textnotizen lassen sich Messungen aussagekräftig dokumentieren. Ein Dauermarker wird vom Messgehilfen ge- setzt, wenn ein Fremdgeräuschereignis, beispielsweise eine vorbeifahrende Zugma- schine, aufritt. Um einen Positionswechsel der variablen Messposition anzukündigen und die Abmessungen zu dokumentieren, wird zudem ein Marker und eine Sprachnotiz gesetzt. In der Umschlaghalle des Exportbereichs wurde jeder Zeitpunkt eines einzelnen Arbeitsschrittes einer Beladung protokolliert. Hierbei wurden Kürzel den Verladezonen +Metadata: + +=== Element 444 === +Category: Title +Text: und Flurfördergeräte zugeordnet, umso die Protokollierung zu vereinfachen. +Metadata: + +=== Element 445 === +Category: NarrativeText +Text: Während der Messung wurden somit folgende Kenngrößen aufgenommen: der A-be- wertete Schalldruckpegel LAeq, Der maximale Schalldruckpegel LAFmax, der Taktmaximal- pegel LAFTeq, und die Abstände der Messpositionen. Um die Genauigkeit der Schalldruck- pegelmessung bei der Beladung mit einem Flurförderzeug zu erhöhen, ist es wichtig, dass die Messungen mehrmals wiederholt wird. Durch die Wiederholungen können zu- fällige Messfehler reduziert werden. Des Weiteren sollten die Messungen an verschie- denen Tagen durchgeführt werden, um die Ergebnisse zu vergleichen und sicherzustel- len, dass die Messung repräsentativ für die gesamte Beladungsaktivität ist. Die Ergeb- nisse der wiederholten Messungen sollten dann gemittelt werden, um einen Durch- schnittswert zu erhalten, der repräsentativ für die Messungen ist und die Messgenauig- keit erhöht. +Metadata: + +=== Element 446 === +Category: UncategorizedText +Text: 43 +Metadata: + +=== Element 447 === +Category: Header +Text: 5 Beschreibung der Untersuchungsmethodik +Metadata: + +=== Element 448 === +Category: Title +Text: 5.4 Messpositionen +Metadata: + +=== Element 449 === +Category: NarrativeText +Text: Die Beschreibung der Messpositionen ist von entscheidender Bedeutung, um genaue und repräsentative Messergebnisse zu erzielen. Im Folgenden werden die verschiede- nen Messpositionen erläutert, um einen umfassenden Überblick über die Platzierung des Messequipments und die Erfassung der Schallwerte zu geben. +Metadata: + +=== Element 450 === +Category: NarrativeText +Text: Wie im vorherigen Kapitel erläutert, liegt der Fokus der Messungen auf dem Exportbe- reich des Unternehmens. Um den Betriebsablauf möglichst wenig zu stören, wurden ge- eignete Messzeiten anhand der täglichen Betriebs- und Stoßzeiten festgelegt. Um prä- zise Ergebnisse zu erzielen, wurde eine feste Messposition im Fernfeld auf einer Grün- fläche des Betriebsgeländes gewählt (Abbildung 11). Diese Position ermöglicht eine zu- verlässige Erfassung der Schallwerte, ohne den normalen Betriebsablauf zu beeinträch- tigen. Des Weiteren ermöglicht die Fernfeld-Platzierung die Erfassung des Schalls in grö- ßerer Entfernung von der Schallquelle, was eine genauere und repräsentativere Mes- sung der Schallausbreitung ermöglicht. Durch den größeren Abstand zur Schallquelle werden mögliche Störungen und Reflexionen reduziert, die in unmittelbarer Nähe auf- treten könnten. +Metadata: + +=== Element 451 === +Category: Image +Text: +Metadata: + +=== Element 452 === +Category: FigureCaption +Text: Abbildung 11: Ortsfeste Mikrofonposition +Metadata: + +=== Element 453 === +Category: NarrativeText +Text: Da zur genauen Beschreibung der Richtcharakteristik eines Beladevorgangs mehrere Messpositionen erforderlich sind, wurde auf ortsfeste Messpunkte im Nahfeld verzich- tet, da die Belegung der Verladestationen ständig wechselte, wodurch eine feste Positi- onierung der Mikrofone nicht durchführbar und praktisch war. Um dennoch Messungen +Metadata: + +=== Element 454 === +Category: UncategorizedText +Text: 44 +Metadata: + +=== Element 455 === +Category: Header +Text: 5 Beschreibung der Untersuchungsmethodik +Metadata: + +=== Element 456 === +Category: NarrativeText +Text: durchführen zu können, wurde ein variables Mikrofon verwendet. Das Mikrofon wurde auf einem langen Stab befestigt, um eine flexible Platzierung zu ermöglichen. In Abspra- che mit dem Messgehilfen wurden geeignete Messpositionen ausgewählt. Durch diese Vorgehensweise konnte eine möglichst realitätsnahe Abbildung der Schallausbreitung während der Beladevorgänge erreicht werden. Die variablen Messpositionen bieten den Vorteil, dass der Messbereich an die tatsächlichen Gegebenheiten angepasst werden kann. Je nach Belegung der Verladestationen und der spezifischen Beladesituation konnte das Mikrofon an verschiedenen Stellen platziert werden, um die Schallpegel in unterschiedlichen Richtungen und Entfernungen zur Schallquelle zu erfassen (siehe Ab- bildung 12). +Metadata: + +=== Element 457 === +Category: Image +Text: +Metadata: + +=== Element 458 === +Category: Image +Text: T ll Ill IM ı)] zbräder WENS$ ort und Logistik +Metadata: + +=== Element 459 === +Category: FigureCaption +Text: Befestigung am langen Stab +Metadata: + +=== Element 460 === +Category: FigureCaption +Text: Alternativer Aufbau vom 24.05.2023 +Metadata: + +=== Element 461 === +Category: FigureCaption +Text: Abbildung 12: Variabler Mikrofonaufbau +Metadata: + +=== Element 462 === +Category: NarrativeText +Text: In der Regel wurden die Mikrofone auf einer einheitlichen Höhe von 3,5 m Höhe positi- oniert, da dies ungefähr der mittleren Höhe der Güter auf dem Anhänger entspricht. Bei der Messung am 24.05.2023 waren nur kleine Mikrofonständer zur Verfügung, die auf einer Höhe von 2,5 m gestellt worden sind. Die genauen Mikrofonpositionen sind in den Abbildungen im Anhang 2: Lagepläne dargestellt. +Metadata: + +=== Element 463 === +Category: UncategorizedText +Text: 45 +Metadata: + +=== Element 464 === +Category: Header +Text: 6 Messauswertung und Statistik +Metadata: + +=== Element 465 === +Category: Title +Text: 6 Messauswertung und Statistik +Metadata: + +=== Element 466 === +Category: NarrativeText +Text: In diesem Kapitel geht es um die Vorgehensweise bei der Messauswertung und die Sta- tistik der untersuchten Verladegeräusche. Die Messauswertung und Statistik sind ein wichtiger Schritt in der Analyse von Lärmemissionen. Die Auswertung der Messdaten ermöglicht es geeignete Emissionsansätze für die weitere Schallimmissionsprognose zu erarbeiten, um potenzielle Lärmprobleme zu erkennen und gezielte Maßnahmen zur Lärmminderung zu ergreifen. In diesem Kontext werden beifolgend statistische Metho- den aufgezeigt, um Aussagen über die Verteilung und Charakteristik der Lärmemissio- nen treffen zu können. +Metadata: + +=== Element 467 === +Category: Title +Text: 6.1 Verladegeräusche +Metadata: + +=== Element 468 === +Category: NarrativeText +Text: Die Auswertung der Verladegeräusche ist ein wesentlicher Schritt zur Gewinnung von Kennwerten. In diesem Kontext wurden in Kapitel 2.2 die Rechengrundlagen zur Ermitt- lung der Verladegeräusche beschrieben. Jedoch handelt es sich bei dem Verladevorgang eines Flurfördergerätes um einen nicht stationären Ablauf, bei dem sich Ort der Quelle stetig ändert. Aus diesem Grund wird in der Auswertung der zeitbezogene Schallleis- tungspegel berechnet, um den Einfluss der sich ändernden Positionen zu berücksichti- gen. Zudem werden die Abstände der Mikrofone auf den Mittelpunkt der Verladezone bezogen, um einen einheitlichen Bezugspunkt für die Entfernungen zu haben. Zur Über- prüfung der gemessenen Werten wurde im Anschluss eine Validierungsrechnung mit- hilfe des Programms SoundPlan 9.0 durchgeführt, welche in Kapitel 6.3, beschrieben wird. +Metadata: + +=== Element 469 === +Category: NarrativeText +Text: Nach erfolgreicher Durchführung der Messungen erfolgt nun die Auswertung der Mess- daten. Für die Übertragung der Messdaten wurde die Software NorXfer 6.1 verwendet, die speziell für die Übertragung von Messdateien entwickelt wurde. Zur Auswertung der Daten kam die Software NorReview 6.2 zum Einsatz. Es handelt es sich hierbei um eine Analyse- und Berichtssoftware speziell für Schallmessungen. Mit der Software können Lärm- und Vibrationsmessungen dargestellt und nachbearbeitet werden. Nach der Firma Norsonic „lassen sich die Messdaten, die nachbearbeiteten Daten sowie Wetter- daten, Audioaufzeichnungen, Sprachnotizen, Word- und Excel-Berichte sowie andere +Metadata: + +=== Element 470 === +Category: UncategorizedText +Text: 46 +Metadata: + +=== Element 471 === +Category: Header +Text: 6 Messauswertung und Statistik +Metadata: + +=== Element 472 === +Category: NarrativeText +Text: Dateien erfassen.“ [83] Auf diese Weise wird eine umfassende und effektive Auswer- tung der Messdaten ermöglicht. Um den Schallleistungspegel zu bestimmen, werden die Messwerte der ortsfesten Mikrofonposition im Fernfeld verwenden. Das Fernfeld ist der Bereich, in dem der Schalldruck und die Schallschnelle phasengleich sind und sich annä- hernd als Kugelwelle ausbreiten. [84] In diesem Bereich ist die Messung weniger von reflektierenden Flächen oder anderen Schallquellen beeinflusst. Die Mikrofonpositio- nen, die sich im Nahfeld befinden befinden sich in unmittelbarer Nähe des Anhängers oder in der Nähe anderer Anhänger. Dies kann dazu führen, dass es zu Störungen oder Interferenzen auftreten, die die Messergebnisse verfälschen können. Daher werden diese Messwerte im Nahfeld nicht für die Bestimmung des Schallleistungspegels ver- wendet. +Metadata: + +=== Element 473 === +Category: NarrativeText +Text: Jede Messung wurde nach einem einheitlichen Verfahren ausgewertet. Hierbei wurden +Metadata: + +=== Element 474 === +Category: NarrativeText +Text: zunächst die Messdaten mittels der Software NorXfer 6.1 auf den Computer übertragen und in die Auswertesoftware NorReview 6.2 eingefügt. Anschließend wurden alle Mess- daten in ein L(t) + L(f)-Diagramm, welches den Schalldruckpegel über der Zeit und Fre- quenz abbildet, dargestellt. Dabei wurden für jeden Pegelverlauf eigene Farben zuge- wiesen (Laeq = blau, LAFmax = rot und LAF(TM5) = grün). Zur besseren Übersicht wurden alle Pegelgrößen bis auf den LAeq-Pegelverlauf ausgeblendet. Mittels der protokollierten Ver- ladetätigkeiten, bei denen die durchschnittliche Einwirkzeit 5 Sekunden betrug, wurden die einzelnen Prozessschritte als Marker mit zugeordneter Farbe in das Diagramm ein- gefügt. Mithilfe der Funktion "Marker Berechnung" konnten anschließend der A-bewer- tete Schalldruckpegel LAeq, der maximale Schalldruckpegel LAFmax und der Taktmaximal- pegel LAFTeq für die einzelnen Marker berechnet werden. Die Ergebnisse wurden in einem Excel-Sheet zur weiteren Verarbeitung transferiert. Um Einflüsse aus dem Umfeld zu be- rücksichtigen, sind Korrekturen an den gemessenen Schalldruckpegeln erforderlich. Zum einen wird eine Fremdgeräuschkorrektur K1 (siehe Formel 15) nach den Verfahren der Normreihe DIN EN ISO 3746 ff [30] und eine Umgebungskorrektur K2 im Freien (siehe Formel 16) nach den Verfahren der Normreihe DIN EN ISO 3744 ff [29] vorgenommen. Da die Messungen im Freien stattfanden, kann die Umgebungskorrektur K2 vernachläs- sigt werden. Die aufgetretenen Fremdgeräusche, beispielsweise von vorbeifahrenden Zugmaschinen, wurden im Programm NorReview 6.2 ausgeblendet. Da die protokollier- ten Verladetätigkeiten in einzelne 5 Sekunden lange Arbeitsschritte unterteilt waren, konnten eventuelle Fremdgeräusche gezielt in diesem Zeitraum anhand des Gehörein- drucks analysiert werden. Falls ein bestimmter Arbeitsschritt aufgrund vorherrschender +Metadata: + +=== Element 475 === +Category: UncategorizedText +Text: 47 +Metadata: + +=== Element 476 === +Category: Header +Text: 6 Messauswertung und Statistik +Metadata: + +=== Element 477 === +Category: NarrativeText +Text: Dominanz von Fremdgeräuschen nicht eindeutig identifizierbar war, wurde er bei der weiteren Betrachtung nicht berücksichtigt. Nun können mithilfe der berechneten Daten die gewünschten akustischen Größen für jeden Datensatz berechnet werden (siehe Ab- bildung 13). +Metadata: + +=== Element 478 === +Category: Image +Text: Formel 13 Formel 14 Formel 12 Formel 11 Formel 12 Formel 2 +Metadata: + +=== Element 479 === +Category: Title +Text: Formel 13 +Metadata: + +=== Element 480 === +Category: Title +Text: Formel 14 +Metadata: + +=== Element 481 === +Category: Title +Text: Formel 12 +Metadata: + +=== Element 482 === +Category: Title +Text: Formel 11 +Metadata: + +=== Element 483 === +Category: Title +Text: Formel 12 +Metadata: + +=== Element 484 === +Category: Title +Text: Formel 2 +Metadata: + +=== Element 485 === +Category: FigureCaption +Text: Abbildung 13: Arbeitsschritte für die Berechnung der gewünschten akustischen Kenngrößen +Metadata: + +=== Element 486 === +Category: FigureCaption +Text: Die Messergebnisse, einschließlich aller relevanten Daten und Diagramme, sind im An- hang 4: Messergebnisse der Beladevorgänge übersichtlich aufgeführt. Dort ist eine um- fassende Darstellung der erfassten Werte und deren grafische Visualisierung zu finden. Darüber hinaus werden in Kapitel 7, die berechneten akustischen Größen dargestellt und interpretiert. Hierbei werden relevante Aspekte beleuchtet und Handlungsempfeh- lungen abgeleitet, um konkrete Maßnahmen zur Reduzierung der Lärmbelastung zu ent- wickeln. +Metadata: + +=== Element 487 === +Category: Title +Text: 6.2 Statistik +Metadata: + +=== Element 488 === +Category: NarrativeText +Text: Die Statistik für Messwerte dient dazu, die gesammelten Informationen systematisch zu analysieren und zu interpretieren. Durch statistische Methoden können Muster, Trends, Zusammenhänge und Unsicherheiten in den Messwerten identifiziert werden. Dies er- möglicht eine zuverlässige und fundierte Aussage über die gemessenen Verladetätigkei- ten. [59] In Kapitel 2.3 wurden verschiedene statistische Analysemethoden vorgestellt, die in der Auswertung von Verladegeräuschen eingesetzt werden können. +Metadata: + +=== Element 489 === +Category: UncategorizedText +Text: 48 +Metadata: + +=== Element 490 === +Category: Header +Text: 6 Messauswertung und Statistik +Metadata: + +=== Element 491 === +Category: NarrativeText +Text: Nach der Auswertung der Verladegeräusche, welche im vorherigen Kapitel 6.1: Verlade- geräusche beschrieben werden die statistischen Kennwerte berechnet. Für jeden akus- tischen Kennwert wurde mithilfe des Programms Excel die Standardabweichung gemäß Formel 26 und der entsprechende energetische Mittelwert gemäß Formel 24 berechnet. Sobald diese Werte bekannt sind, kann zur visuellen Darstellung eine Normalverteilung Formel 27 erstellt werden. Die Standardabweichung kann in einem Intervall angegeben werden, um den Bereich zu verdeutlichen. In Abbildung 14 ist eine visuelle Darstellung des Vorgehens zur Bestimmung der akustischen Kenngrößen zu sehen. +Metadata: + +=== Element 492 === +Category: Image +Text: T H LAeq ! lAFmax ! IWASs | LWAmax | LWA‚Ih [6] [esta : [ABA] Vorgang KufaB(ay] : [dBfA)] IaBla) ; TaBla)] Rausfahrt +Metadata: + +=== Element 493 === +Category: FigureCaption +Text: Abbildung 14: Vorgehensweise statistische Kennwerte +Metadata: + +=== Element 494 === +Category: NarrativeText +Text: Die Ergebnisse, einschließlich aller relevanten Daten und Diagramme, sind Kapitel 7.2 übersichtlich aufgeführt. Dort ist eine umfassende Darstellung der erfassten Werte und deren grafische Visualisierung zu finden und interpretiert. +Metadata: + +=== Element 495 === +Category: UncategorizedText +Text: 49 +Metadata: + +=== Element 496 === +Category: Header +Text: 6 Messauswertung und Statistik +Metadata: + +=== Element 497 === +Category: Title +Text: 6.3 Modellierung der Messsituation +Metadata: + +=== Element 498 === +Category: NarrativeText +Text: Um die Messung virtuell darstellen zu können, wird das gesamte Gelände virtualisiert. Um in SoundPlan 9.0 modellieren zu können, wird zuerst ein Projekt erstellt. +Metadata: + +=== Element 499 === +Category: NarrativeText +Text: Im nächsten Schritt erfolgt die Geländemodellierung, bei der die gesamte Messumge- bung virtuell nachgebildet wird. Dazu wird ein Geländemodell erstellt, welche die Ge- ländebedingungen repräsentiert. Dies kann durch Import von Höhendaten oder manu- elles Erstellen eines Geländemodells erfolgen. Da bereits ein Geländemodell eines alten Projektes für die Firma bestand, wurde das vorhandene Geländemodell in das Projekt importiert. +Metadata: + +=== Element 500 === +Category: NarrativeText +Text: Als nächstes erfolgt die Objekterstellung, bei der alle relevanten Objekte hinzugefügt +Metadata: + +=== Element 501 === +Category: NarrativeText +Text: werden, wie zum Beispiel die Anhänger, Schallquellen oder Messpunkte. Die Anhänger und die Halle wurden als Objekttyp "Gebäude" modelliert, um ihre Abschirmwirkung zu berücksichtigen. Da die Verladevorgänge nicht stationär sind, wurden sie als Flächen- schallquelle modelliert, entsprechend der Höhe und Länge des jeweiligen Anhängers. Wenn der genaue Anhängertyp nicht bekannt ist, empfiehlt es sich, eine durchschnittli- che Länge und Höhe zu wählen. Dadurch kann eine allgemeine Darstellung des Belade- vorgangs erzielt werden. Die berechneten Kennwerte aus dem Emissionsdatenblatt wurden entsprechend eingetragen. Zusätzlich wurde bei der Modellierung der Flächen- schallquelle die Option für den maximalen Pegel "Gesamte Schallleistung in einem Punkt" ausgewählt um die maximale Schallleistung an einem bestimmten Punkt zu er- fassen. Um die Beladevorgänge möglichst realitätsgetreu nachzustellen, werden die Ta- gesabläufe in Ereignisse pro Stunde umgewandelt. Dabei wird der Tagesablauf anhand der gesamten Beladevorgänge an der jeweiligen Verladezone definiert. Der Ton- und Informationszuschlag nach der DIN 415681 [19] entfällt, da keine Einzeltöne, bezie- hungsweise informationshaltige Geräusche hervorkommen. +Metadata: + +=== Element 502 === +Category: NarrativeText +Text: Wenn alles korrekt modelliert wurde wird im Rechenkern die Berechnungseinstellungen festgelegt und im Anschluss die Berechnung auf Grundlage der TA Lärm [6] durchge- führt. Die Bodendämpfung wurde nach dem Verfahren, welche in der DIN ISO 9613-2 [85] aufgezeigt ist, berechnet. +Metadata: + +=== Element 503 === +Category: UncategorizedText +Text: 50 +Metadata: + +=== Element 504 === +Category: Header +Text: 6 Messauswertung und Statistik +Metadata: + +=== Element 505 === +Category: NarrativeText +Text: Das Modell berücksichtigt somit zusammengefasst: +Metadata: + +=== Element 506 === +Category: ListItem +Text: die Anteile aus Reflexionen der Schallquellen an Stützmauern, Fassaden oder an- deren Flächen, wurde bis zur 3. Reflexion gerechnet +Metadata: + +=== Element 507 === +Category: ListItem +Text: Pegeländerungen aufgrund des Abstandes und der Luftabsorption +Metadata: + +=== Element 508 === +Category: ListItem +Text: Pegeländerungen aufgrund der Boden- und Meteorologiedämpfung: es wird für die Messumgebung ein Bodenfaktor von 0,2 (0,0 = schallhart; 1,0 = schallweich) berücksichtigt +Metadata: + +=== Element 509 === +Category: ListItem +Text: Pegeländerungen durch topographische und bauliche Gegebenheiten (Mehr- fachreflexionen und Abschirmungen) +Metadata: + +=== Element 510 === +Category: ListItem +Text: einen leichten Wind, etwa 3 m/s, zum Immissionsort hin und Temperaturinver- sion, die beide die Schallausbreitung fördern +Metadata: + +=== Element 511 === +Category: ListItem +Text: Die Minderung durch die meteorologische Korrektur Cmet wurde mit 0 dB(A) an- gesetzt +Metadata: + +=== Element 512 === +Category: NarrativeText +Text: Die Lage der Lärmquellen und der Messpunkt sind aus dem Anhang 2: Lagepläne zu ent- nehmen. Die Berechnung erfolgt unter Berücksichtigung einer begünstigten Wettersitu- ation, der Mitwindausbreitungssituation. Bei der Berechnung eines Beurteilungspegels ist normalerweise eine meteorologische Korrektur gemäß der TA Lärm [6] erforderlich. In diesem Fall entfällt die meteorologische Korrektur, da der Abstand zwischen der Schallquelle und den Mikrofonen weniger als 200 m beträgt. Daher ist keine Anwendung der Formel 4 der DIN 9613-2 [85] für die meteorologische Korrektur erforderlich. +Metadata: + +=== Element 513 === +Category: NarrativeText +Text: Nachdem das Programm die Parameter generiert hat, wie beispielsweise den Schall- druckpegel an den angegebenen Messpunkten, können diese Ergebnisse weiter analy- siert werden. Die Ergebnisse und dessen Erläuterung ist in Kapitel 7.4 aufzufinden. +Metadata: + +=== Element 514 === +Category: Title +Text: 6.4 Richtcharakteristik +Metadata: + +=== Element 515 === +Category: NarrativeText +Text: In Bezug auf die ermittelten Kennwerte der Verladeemissionen, kann nun die Richtcha- rakteristik der Schallquelle mithilfe des im Kapitel 2.2, beschriebene Verfahren ermittelt werden. Das Verfahren ermöglicht die Beschreibung der Schallquelle bezüglich ihrer Schallabstrahlung in verschiedene Richtungen. +Metadata: + +=== Element 516 === +Category: NarrativeText +Text: Hierbei werden die Messdaten von mehreren Mikrofonpositionen, die um die Schall- quelle in einer kreisförmigen Anordnung platziert sind, verwendet, um Richtwerte für verschiedene Winkel zu berechnen. Dabei werden die Messdaten von den einzelnen +Metadata: + +=== Element 517 === +Category: UncategorizedText +Text: 51 +Metadata: + +=== Element 518 === +Category: Header +Text: 6 Messauswertung und Statistik +Metadata: + +=== Element 519 === +Category: NarrativeText +Text: Mikrofonen mit einem Referenzpunkt miteinander verknüpft (siehe Abbildung 15). Die gesammelten Messwerte werden im Anschluss analysiert, um die Richtcharakteristik zu bestimmen. Dazu werden statistische Verfahren oder mathematische Modelle verwen- det, um die Beziehung zwischen den Schallpegeln und den Winkeln zu bestimmen. +Metadata: + +=== Element 520 === +Category: Image +Text: ® Referenzpunkt Anhänger | Messpunkte entlang des Anhänger +Metadata: + +=== Element 521 === +Category: Image +Text: +Metadata: + +=== Element 522 === +Category: FigureCaption +Text: Abbildung 15: Vorgang für die Berechnung der Richtcharakteristik vom 03.05.2023 +Metadata: + +=== Element 523 === +Category: NarrativeText +Text: Die Messpunkte MP, werden durch die Angabe von zwei Koordinaten im kartesischen Koordinatensystem [x; y] beschrieben(siehe Abbildung 16 und Abbildung 17). Von der Schallquelle Q, die sich am Mittelpunkt der kurzen Seite des Anhängers befindet, strahlt ein Schallvektor mit einem Abstand r zum Messpunkt und einem Winkel 𝜑 aus, wobei der Winkel 𝜑 im Bereich von 0° bis 360° liegt mit 0° ≤ 𝜑 ≤ 360°. +Metadata: + +=== Element 524 === +Category: UncategorizedText +Text: 52 +Metadata: + +=== Element 525 === +Category: Header +Text: 6 Messauswertung und Statistik +Metadata: + +=== Element 526 === +Category: Image +Text: 18m MP4 ? 16m 14m 12m j 10m 1 2? 8m ! / 6m j / 4m 1 7 ! 2mt ty #. y 7 Q 4m 6m 2m 6m 4m 2m Om +Metadata: + +=== Element 527 === +Category: FigureCaption +Text: Abbildung 16: Messpunkte im Polarkoordinatensystem vom 03.05.2023 +Metadata: + +=== Element 528 === +Category: UncategorizedText +Text: 53 +Metadata: + +=== Element 529 === +Category: Header +Text: 6 Messauswertung und Statistik +Metadata: + +=== Element 530 === +Category: Image +Text: * MP2 MPA \ 18m ! ? \ I 1 \ n I \ N ! \ 15m 1 ! x f} ! y N u \ N ! ! \ 14m fl \ I \ ' { \ ! 4 \ . ı I \ 12m 1 N \ I 4 \ I I \ l ! \ 10m 1 I [ r rd 3 \ r “* \ 1] 1 \ 8m 1 ! \ I Fi x I ! \, f \ 6 I \ om r I \ N \ MP1 \ \ 15 f \ 4m [ 1 Y \ u \ Ir /e \ Ir, \2m-11 7 ! y |177% ’ \ ]l7, IQ Sm 6m 4m Zr ® 2m 4m 6m 8m +Metadata: + +=== Element 531 === +Category: FigureCaption +Text: Abbildung 17: Messpunkte im Polarkoordinatensystem vom 27.04.2023 +Metadata: + +=== Element 532 === +Category: NarrativeText +Text: Mithilfe des Programms SoundPlan 9.0 erstellten virtualisierten Messumgebung die in Kapitel 6.3 beschrieben ist, wurden die Koordinaten der Messpunkte ausgemessen und anschließend der Azimutwinkel 𝜑 berechnet. Im Anschluss wurde das Richtmaß DI nach Formel 21 für jeden Messwert des jeweiligen Messpunktes mit dem dazugehörigen Wert des Referenzpunktes ausgerechnet. Um ein Polardiagramm zu erstellen wurde im Programm Excel ein Netzdiagramm erstellt. +Metadata: + +=== Element 533 === +Category: UncategorizedText +Text: 54 +Metadata: + +=== Element 534 === +Category: Header +Text: 6 Messauswertung und Statistik +Metadata: + +=== Element 535 === +Category: NarrativeText +Text: Die Ergebnisse, einschließlich aller relevanten Daten, sind im Anhang 4: Messergebnisse der Beladevorgänge dargestellt. Dort ist eine umfassende Darstellung der erfassten Werte und deren grafische Visualisierung zu finden. Darüber hinaus werden, die Ergeb- nisse der Richtcharakteristik dargestellt und interpretiert. +Metadata: + +=== Element 536 === +Category: Title +Text: 6.5 Validierung +Metadata: + +=== Element 537 === +Category: NarrativeText +Text: Zur Validierung der berechneten akustischen Kenngrößen wird eine Simulation der Mes- sung mithilfe der Software SoundPlan 9.0 auf Grundlage der TA Lärm [6] durchgeführt. Diese Simulation ermöglicht es, die Messsituation nachzustellen und die erwarteten Er- gebnisse mit den messtechnisch ermittelten Ergebnissen zu vergleichen. Durch den Ver- gleich der simulierten Messergebnisse mit den tatsächlichen Messungen kann die Ge- nauigkeit der berechneten Kenngrößen überprüft werden. +Metadata: + +=== Element 538 === +Category: NarrativeText +Text: Hierbei werden die generierten Beurteilungspegel mit dem gemessenen Beurteilungs- +Metadata: + +=== Element 539 === +Category: NarrativeText +Text: pegel verglichen. Die Beurteilungspegel werden nach Formel 1 nach der DIN 45645-1 [16] berechnet. Im Rahmen der digitalisierten Messumgebung, die in 6.3 beschrieben ist und mit Hilfe des Programms SoundPlan 9.0 erstellt wurde, wurden die Messsituationen virtuell nachgestellt und Flächenschallquellen entsprechend den Verladezonen platziert. Um den jeweiligen Messtag präzise zu simulieren, wurden die Anzahl der Einzelereig- nisse pro Stunde an den Verladezonen berechnet, an denen Verladungen stattfanden. Dabei wurden die spezifischen Emissionsdaten für die einzelnen Anhänger verwendet, um genauere Ergebnisse zu erzielen. Im Anschluss werden die Unterschiede analysiert und mögliche Abweichungen interpretiert, die auf unterschiedliche Berechnungsmetho- den, Annahmen oder Randbedingungen zurückzuführen sein könnten. Es erfolgt eine Überprüfung der Plausibilität der Ergebnisse, und gegebenenfalls werden Rückschlüsse auf die Genauigkeit der Messung und Berechnung gezogen. Dies ermöglicht eine umfas- sende Bewertung der Übereinstimmung zwischen den berechneten und gemessenen Werten und liefert wertvolle Erkenntnisse zur Validierung der Berechnungsergebnisse. +Metadata: + +=== Element 540 === +Category: NarrativeText +Text: Die Ergebnisse, einschließlich aller relevanten Daten, sind im Anhang 5: Rechenmodell SoundPlan 9.0 – Gabelhubwagen 27.04.23 und Anhang 6: Rechenmodell SoundPlan 9.0 – Gabelstapler 03.05.2023 übersichtlich aufgeführt. Die simulierten Ergebnisse werden nun im Anschluss mit den berechneten Ergebnissen aus der Messung verglichen. Die Vergleichsergebnisse sind in 7.4 dargestellt und erläutert. +Metadata: + +=== Element 541 === +Category: UncategorizedText +Text: 55 +Metadata: + +=== Element 542 === +Category: Header +Text: 7 Ergebnisse und Interpretation +Metadata: + +=== Element 543 === +Category: Title +Text: 7 Ergebnisse und Interpretation +Metadata: + +=== Element 544 === +Category: NarrativeText +Text: In diesem Kapitel werden die Ergebnisse der Auswertung und Validierung der Verlade- geräusche präsentiert und interpretiert. Die vorgestellten Ergebnisse dienen als Grund- lage für eine Schallimmissionsprognose und dient zur Entwicklung geeigneter Lösungs- ansätze und Maßnahmen, um den Lärmpegel effektiv in Speditionen zu verringern. Die Auswertung ist ein wesentlicher Schritt zur Gewinnung von Kennwerten. In diesem Kon- text wurden in Kapitel 7, die Vorgehensweise zur Auswertung beschrieben. +Metadata: + +=== Element 545 === +Category: Title +Text: 7.1 Verladegeräusche +Metadata: + +=== Element 546 === +Category: NarrativeText +Text: Nachdem die Auswertung der Verladegeräusche abgeschlossen ist, können nun die Er- gebnisse dargestellt und interpretiert werden. Dabei werden die gemessenen Schallpe- gel und andere relevante Kenngrößen der Verladegeräusche zusammenfassend darge- stellt. Die detaillierten Ergebnisse, einschließlich aller relevanten Daten, sind im Anhang 4: Messergebnisse der Beladevorgänge übersichtlich aufgeführt. +Metadata: + +=== Element 547 === +Category: NarrativeText +Text: Da die Verladevorgänge nicht stationär sind, wurden sie als Flächenschallquelle model- liert, entsprechend der Höhe und Länge des jeweiligen Anhängers. Wenn der genaue Anhängertyp nicht bekannt ist, empfiehlt es sich, eine durchschnittliche Länge und Höhe zu wählen. Die Ergebnisse des allgemeinen Beladevorgangs für die verschiedenen Flur- fördergeräte sind in Tabelle 11 dargestellt. Analog können die Kennwerte eines Belade- vorgangs für einen Entladevorgang verwendet werden. +Metadata: + +=== Element 548 === +Category: Table +Text: Anzahl Max-Pegel Schallleistungspegel Flurfördergerät | Einzelereignisse LAFmax LWA,5s LWAmax LWA,1h Kl LWAT,1h E [dB(A)] [dB(A)] [dB(A)] [dB(A)] [dB(A)] [dB(A)] Gabelstapler 297 69,3 100,7 108,8 72,1 5,7 77,8 STABW [dB] 6,5 4,9 6,5 4,9 2,9 - Gabelhubwagen 99 68,6 100,7 108,1 72,1 6,2 79,5 STABW [dB] 6,4 5,1 6,4 5,1 2,7 - +Metadata: + +=== Element 549 === +Category: NarrativeText +Text: Tabelle 11: Emissionsansätze für die verschiedenen Flurfördergeräte Mit: LAFmax: Maximal-Pegel [dB(A)], LWA,5s: Schallleistungspegel bezogen auf 5 Sekunden [dB(A)], LWAmax: maximale Schallleistungspegel bezogen auf 5 Sekunden [dB(A)], LWA,1h: stündliche Schall- leistungspegel [dB(A)], KI: Impulszuschlag [dB(A)], LWAT,1h: impulsbehaftete stündliche Schallleis- tungspegel [dB(A)], STABW: Standardabweichung [dB] +Metadata: + +=== Element 550 === +Category: FigureCaption +Text: Tabelle 11: Emissionsansätze für die verschiedenen Flurfördergeräte +Metadata: + +=== Element 551 === +Category: UncategorizedText +Text: 56 +Metadata: + +=== Element 552 === +Category: Header +Text: 7 Ergebnisse und Interpretation +Metadata: + +=== Element 553 === +Category: NarrativeText +Text: Das Ziel war es, einen Kennwert des Schallleistungspegels zu ermitteln, der die Lärmbe- lastung der Flurfördergeräte repräsentiert, welche für eine Schallimmissionsprognose verwendet werden kann. Durch das Zusammenführen der Messergebnisse konnte ein durchschnittlicher Kennwert für die Emissionen der Flurfördergeräte ermittelt werden, wenn der genaue Anhängertyp nicht bekannt ist. Es ist anzumerken, dass möglicher- weise nicht alle spezifischen Unterschiede zwischen den Flurfördergeräten erfasst wer- den können. Die Verwendung dieser Kennwerte ermöglicht eine vereinfachte Bewer- tung und Vergleichbarkeit der Lärmbelastung verschiedener Flurfördergeräte. Auf diese Weise können zudem Maßnahmen zur Lärmminderung gezielt entwickelt und umge- setzt werden, um die Gesamtemissionen zu reduzieren. Es sollte bei Bedarf noch zusätz- liche spezifische Untersuchungen und Messungen für bestimmte Situationen der Flur- fördergeräte durchgeführt werden, um eine detailliertere und präzisere Bewertung vor- zunehmen. Nachdem nun die Ergebnisse der Verladegeräusche vorliegen, gilt es, diese zu interpretieren und daraus Schlussfolgerungen zu ziehen. +Metadata: + +=== Element 554 === +Category: NarrativeText +Text: Im Allgemeinen lässt sich aus den Ergebnissen schließen, dass die Verladung mit einem Gabelhubwagen lauter vonstatten ist, als mit einem Gabelstapler. Dies deutet darauf hin, dass der Gabelhubwagen eine etwas höhere Geräuschentwicklung aufweist und so- mit eine höhere Lärmbelastung verursacht. Die Kennwerte des Schallleistungspegels der Flurfördergeräte sind identisch, dennoch zeigt sich ein Unterschied in der Impulshaf- tigkeit der Geräuschentwicklung. Es Unterscheidet sich im impulsbehafteten Schallleis- tungspegel, der beim Gabelhubwagen um 1,7 dB(A) höher ist als bei einem Gabelstapler. Dies bedeutet, dass es zu kurzzeitigen hohen Schallsignalen kommt und somit den im- pulsbehafteten Schallleistungspegel erhöhen. Dies hat Möglicherweise die Begründung, dass der Gabelhubwagen durch bestimmte Vorgänge, wie beispielsweise das Überfah- ren der Überladebrücke in den Anhänger, impulsbehaftete Schallereignisse hervorruft. Durch subjektives Empfinden konnte festgestellt werden, dass die längeren Gabeln des Gabelhubwagens möglicherweise kurzzeitige hohe Schallsignale verursachen im Ver- gleich zu den Gabeln des Gabelstaplers. Darüber hinaus weisen die Räder des Gabelhub- wagens eine deutlich härtere und kleinere Beschaffenheit auf im Vergleich zu den Reifen des Gabelstaplers. Aufgrund der härteren Reifen werden die Schallsignale nicht so gut gedämpft wie bei den weicheren Reifen, was zu einer verstärkten Schallabstrahlung füh- ren kann. Zusammenfassend lässt sich sagen, dass der Pegelunterschied jedoch nicht signifikant ist, was darauf schließen lässt, dass die beiden Beladevorgänge der Flurför- +Metadata: + +=== Element 555 === +Category: Title +Text: dergeräte ähnlich sind. +Metadata: + +=== Element 556 === +Category: UncategorizedText +Text: 57 +Metadata: + +=== Element 557 === +Category: Header +Text: 7 Ergebnisse und Interpretation +Metadata: + +=== Element 558 === +Category: NarrativeText +Text: Vergleicht man nun die Ergebnisse mit den in Kapitel 3 beschriebenen stündlichen Schallleistungspegel LWA,1h , lässt sich erkennen, dass die in der Studie gemessenen Be- ladevorgänge mit einem Handhubwagen mit (75 – 80 dB(A) laut Martin Heroldt [65] und mit 94 – 99 dB(A) laut Bianca Berghofer [67]), nicht gänzlich in derselben Größenord- nung liegen, aber möglicherweise nach Umrechnung auf eine Einwirkzeit von einer Stunde ähnliche Schallleistungen aufweisen. Dennoch ist zu beachten, dass die vorlie- genden Messungen andere Grundlagenvoraussetzungen haben als die in dieser Thesis. In der Untersuchung der Hlug [8] wurde auch ein Kleinstapler, oder auch Gabelstapler genannt, untersucht, der einen stündlichen Schallleistungspegel LWA,1h von 70 dB(A) auf- weist, was im Vergleich zu den hier ermittelten Werten von 72,1 dB(A) leiser ist. Die Ergebnisse des impulsbehafteten stündlichen Schalleistungspegels für den Gabelstapler von 77,8 dB(A)) und des Gabelhubwagens von 79,5 dB(A) können zudem mit den aktu- ellen Untersuchungsergebnissen des TÜV Nord verglichen werden. Gemäß den vorlie- genden Daten zeigt sich, dass die impulsbehafteten Schallleistungspegel für verschie- dene Be- und Entladungsvorgänge variieren, aber dennoch in der gleichen Größenord- +Metadata: + +=== Element 559 === +Category: Title +Text: nung liegen. +Metadata: + +=== Element 560 === +Category: NarrativeText +Text: Aus dem Vergleich mit den anderen Studien lässt sich schließen, dass die ermittelten Größen realistisch sind. Die ähnlichen Größenordnungen der Schallleistungspegel bei den verschiedenen Flurfördergeräten weisen darauf hin, dass die Messungen und Aus- wertungen in dieser Untersuchung zuverlässige Ergebnisse liefern. Es ist jedoch wichtig zu beachten, dass die vorliegenden Messungen unter möglicherweise unterschiedlichen Bedingungen und Voraussetzungen durchgeführt wurden, was zu gewissen Abweichun- gen führen kann. +Metadata: + +=== Element 561 === +Category: UncategorizedText +Text: 58 +Metadata: + +=== Element 562 === +Category: Header +Text: 7 Ergebnisse und Interpretation +Metadata: + +=== Element 563 === +Category: NarrativeText +Text: Im nächsten Schritt erfolgte eine genauere Untersuchung der verschiedenen Anhänger- typen. Die Ergebnisse des Beladevorgangs für die verschiedenen Flurfördergeräte in Ab- hängigkeit des Anhängertyp wurden ausgewertet und sind in Tabelle 12 dargestellt. +Metadata: + +=== Element 564 === +Category: Table +Text: Anzahl Max-Pegel Schallleistungspegel Flurfördergerät | Anhänger-Typ Enmelersienise LAFmax LWA,5s LWAmax LWA,1h Kl LWAT,1h [dB(A)] [dB(A)] [dB(A)] [dB(A] [dB(A)] [dB(A)] an 73,1 De 1 112,5 er 100, 1 107,9 STABW [dB] , 4,8 6,1 Wechselbrücke R 102,0 111,0 STABW [dB] , 4 4,9 Koffer 101,5 108,9 STABW [dB] 6 4,9 Gabelhub abenuDwagen Tyechselbrücke 64,4 2 103,8 STABW [dB] 5,6 3,6 Gabelstapler +Metadata: + +=== Element 565 === +Category: NarrativeText +Text: Tabelle 12: Vergleich verschiedene Flurfördergeräte mit unterschiedlichen Anhängertypen +Metadata: + +=== Element 566 === +Category: NarrativeText +Text: Mit: LAFmax: Maximal-Pegel [dB(A)], LWA,5s: Schallleistungspegel bezogen auf 5 Sekunden [dB(A)], LWAmax: maximale Schallleistungspegel bezogen auf 5 Sekunden [dB(A)], LWA,1h: stündliche Schall- leistungspegel [dB(A)], KI: Impulszuschlag [dB(A)], LWAT,1h: maximale stündliche Schallleistungspegel +Metadata: + +=== Element 567 === +Category: Title +Text: [dB(A)], STABW: Standardabweichung [dB] +Metadata: + +=== Element 568 === +Category: NarrativeText +Text: Angesichts der unterschiedlichen Anzahl von Messwerten, beziehungsweise der Einze- lereignisse, für die verschiedenen Anhängertypen ist es erforderlich, die Ergebnisse für den Fall „Wechselbrücke“, ist mit Bedacht zu interpretieren, da der Fall eine geringe An- zahl an Einzelereignissen aufweist. Eine direkte Vergleichbarkeit ist aufgrund der unglei- chen Gewichtung der Messdaten deswegen nicht gänzlich gegeben. Dennoch liefern die Ergebnisse einen Einblick in die Verladegeräusche in unterschiedliche Anhängertypen und können als Ausgangspunkt für weitere Untersuchungen dienen. Nachdem nun die Ergebnisse der Verladegeräusche für die verschiedenen Anhängertypen vorliegen, gilt es, diese zu interpretieren und daraus Schlussfolgerungen zu ziehen. +Metadata: + +=== Element 569 === +Category: NarrativeText +Text: Im Allgemeinen lässt sich aus den Ergebnissen schließen, dass die Verladung in einen Tautliner im Vergleich zu einem Kofferaufbau oder einer Wechselbrücke am lautesten ist. Dies deutet darauf hin, dass die Beladung in einem Tautliner eine höhere Geräusch- entwicklung aufweist und somit eine höhere Lärmbelastung verursacht. Im Gegensatz dazu sind die Kofferaufbauten und Wechselbrücken deutlich leiser. Dies kann darauf zu- rückgeführt werden, dass die Ladeboardwände die entstehenden Schallwellen besser dämpfen und aufgrund ihres steiferen Materials, den Schall als Körperschall besser ab- leiten können, wodurch die Schallausbreitung reduziert wird und somit die gesamte Lärmemission verringert. +Metadata: + +=== Element 570 === +Category: UncategorizedText +Text: 59 +Metadata: + +=== Element 571 === +Category: Header +Text: 7 Ergebnisse und Interpretation +Metadata: + +=== Element 572 === +Category: NarrativeText +Text: Zusammenfassend lässt sich sagen, dass die Schallleistungspegel je nach Flurfördergerät und Anhänger-Typ variieren. Allerdings zeigt sich kein signifikanter Unterschied zwi- schen den Beladevorgängen der Flurfördergeräte, was auf eine gewisse Ähnlichkeit hin- weist. Die maximalen Pegel liegen in einem ähnlichen Bereich, wobei der höchste Wert bei 112,5 dB(A) für den Gabelstapler mit Tautliner-Anhänger und der niedrigste Wert bei 103,8 dB(A) für den Gabelhubwagen mit Wechselbrücken-Anhänger liegt. Es ist an- zumerken, dass ein Vorgang betrachtet, der aus drei einzelnen Prozessschritten besteht. Da diese einzelnen Schritte unterschiedlich laut sein können, erklärt dies die Variation und Standardabweichung der Ergebnisse. +Metadata: + +=== Element 573 === +Category: Title +Text: 7.2 Statistik +Metadata: + +=== Element 574 === +Category: NarrativeText +Text: Nachdem die Auswertung der Verladegeräusche abgeschlossen ist, können nun die ge- sammelten Informationen systematisch zu analysieren und interpretiert werden. Dabei werden die statistischen Kenngrößen zusammenfassend dargestellt. In der oben aufge- zeigten Tabelle 11, wurden bereits die Standardabweichung mitaufgeführt. Die Stan- dardabweichung gibt wie in Kapitel 2.3 beschrieben an, wie stark die durchschnittliche Abweichung vom Mittelwert der akustischen Kenngröße ist. +Metadata: + +=== Element 575 === +Category: NarrativeText +Text: Eine große Standardabweichung deutet auf eine größere Streuung um den Mittelwert hin. Folglich deutet eine kleine Standardabweichung eine geringe Streuung um den Mit- telwert hin. Die durchschnittliche Standardabweichung der akustischen Kenngrößen liegt bei 5,1 dB, sprich die Messwerte variieren im Durchschnitt um etwa 5,1 dB um den Mittelwert herum. Die Standardabweichung ist bezogen auf eine Freifeldmessung ak- zeptabel, da die Messung in einer offenen Umgebung stattfand, in der starke Reflektio- nen, Schallabsorption, Wind, Umgebungsgeräusche oder andere Störeinflüsse auftreten können. Zudem wird ein Vorgang betrachtet, der aus drei einzelnen Prozessschritten besteht. Da diese einzelnen Schritte unterschiedlich laut sein können, erklärt dies die Variation und Standardabweichung der Ergebnisse. Zudem könnte die Beladung der La- deeinheiten und der Füllungsgrad des Anhängers zu größeren Abweichungen führen. Basierend auf der Standardabweichung können die Ergebnisse in einem Diagramm visu- alisiert werden. Des Weiteren wurden bei der Messung die Anhänger immer von unter- +Metadata: + +=== Element 576 === +Category: UncategorizedText +Text: 60 +Metadata: + +=== Element 577 === +Category: Header +Text: 7 Ergebnisse und Interpretation +Metadata: + +=== Element 578 === +Category: NarrativeText +Text: schiedlichen Personen beladen, welches ebenfalls zu Messungenauigkeiten und Unsi- cherheiten führt, da jedes Lagerpersonal seine eigene Vorgehensweise und Technik hat, was zu Variationen in der Lärmemission führen kann. +Metadata: + +=== Element 579 === +Category: NarrativeText +Text: Die nachfolgenden Diagramme zeigen die Normalverteilung der Beladevorgänge in den verschiedenen Anhängertypen. Um die Übereinstimmung der Verteilung mit der Gauß- schen Glockenkurve zu überprüfen, wurde ein Fitting durchgeführt. Durch das Fitting der Gaußschen Glockenkurve wird untersucht, wie gut die gemessenen Daten mit einer Normalverteilung übereinstimmen. Dabei wird die Glockenkurve an die Daten ange- passt, um zu sehen, ob sie eine gute Näherung für die Verteilung der Daten darstellt. Eine gute Übereinstimmung zwischen den Daten und der Gaußschen Glockenkurve deu- tet darauf hin, dass die Daten eine Normalverteilung aufweisen. Dies ist ein wichtiges Ergebnis, da die Normalverteilung in vielen statistischen Analysen und Modellierungen verwendet wird. +Metadata: + +=== Element 580 === +Category: NarrativeText +Text: In Diagramm 1 ist die Normalverteilung des stündlichen Schallleistungspegel der Gabel- stapler Beladung in einen Koffer-Anhänger dargestellt. +Metadata: + +=== Element 581 === +Category: Image +Text: Normalverteilung Gabelstapler - Koffer 0,09 0,08 0,05 Häufigkeit [%] 0,904 0 Y 60,0 65,0 70,0 75,0 80,0 85,0 90,0 95,0 stündlicher Schallleistungspegel LWA,1h [dB[A)| © Messdaten Mittelwert Kto fe Gaußsche Glockenkurve +Metadata: + +=== Element 582 === +Category: NarrativeText +Text: Diagramm 1: Normalverteilung Gabelstapler – Koffer Anhänger Beladung +Metadata: + +=== Element 583 === +Category: NarrativeText +Text: Mit: μ: Erfahrungswert, σ: Standardabweichung +Metadata: + +=== Element 584 === +Category: UncategorizedText +Text: 61 +Metadata: + +=== Element 585 === +Category: Header +Text: 7 Ergebnisse und Interpretation +Metadata: + +=== Element 586 === +Category: NarrativeText +Text: Der höchste Punkt der Normalverteilung repräsentiert den energetischen Mittelwert des stündlichen Schallleistungspegels von 74,6 dB(A). Die Standardabweichung s von 4,8 dB gibt an, wie weit die einzelnen Messwerte um den Mittelwert herumliegen. Ungefähr 68,3% aller Messwerte liegen innerhalb einer Spanne von einer Standardabweichung um den Mittelwert herum. In diesem Fall befinden sich die Messwerte im Bereich von 69,7 bis 79,4 dB(A), welches einen großen Bereich abdeckt. Die Messpunkte, die niedri- ger als der Mittelwert liegen, sind dichter auf der Gaußschen Glockenkurve verteilt als diejenigen, die größer als der Mittelwert sind. Dies bedeutet, dass die Wahrscheinlich- keit, einen Messpunkt zu finden, der niedriger als der Mittelwert ist, höher ist als die Wahrscheinlichkeit, einen Messpunkt zu finden, der größer als der Mittelwert ist. Die Messdaten haben eine sehr gute Übereinstimmung mit der normalen Verteilung. Dies bedeutet, dass die Beladevorgänge einem bestimmten Muster folgen und keine signifi- kanten Ausreißer oder Abweichungen auftreten. Folglich sind die Messungen konsistent und zuverlässig. +Metadata: + +=== Element 587 === +Category: NarrativeText +Text: In Diagramm 2 ist die Normalverteilung des stündlichen Schallleistungspegel eines Ga- belstapler Beladevorgang in einer Wechselbrücke dargestellt. +Metadata: + +=== Element 588 === +Category: Image +Text: Normalverteilung Gabelstapler - Wechselbrücke 022 01 A 0,08 R 0,06 E3 0,4 0,02 0 60,0 65,0 70,0 750 80,0 850 stündlicher Schallleistungspegel LWA,1h [dB{A)I © Messdaten Mittelwert uto wo Gaußsche +Metadata: + +=== Element 589 === +Category: FigureCaption +Text: Diagramm 2: Normalverteilung Gabelstapler – Wechselbrücke Beladung +Metadata: + +=== Element 590 === +Category: UncategorizedText +Text: 62 +Metadata: + +=== Element 591 === +Category: Header +Text: 7 Ergebnisse und Interpretation +Metadata: + +=== Element 592 === +Category: Title +Text: Mit: μ: Erfahrungswert, σ: Standardabweichung +Metadata: + +=== Element 593 === +Category: NarrativeText +Text: Die Ergebnisse für den Fall „Wechselbrücke“, sind mit Bedacht zu interpretieren, da diese eine geringe Anzahl an Einzelereignissen aufweist. Der höchste Punkt der Normal- verteilung repräsentiert den energetischen Mittelwert des stündlichen Schallleistungs- pegels von 73,2 dB(A). Die Standardabweichung s von 4,0 dB gibt an, wie weit die ein- zelnen Messwerte um den Mittelwert herumliegen. Ungefähr 68,3% aller Messwerte liegen innerhalb einer Spanne von 69,2 bis 77,2 dB(A), welches einen großen Bereich abdeckt. Die Messdaten haben eine sehr gute Übereinstimmung mit der normalen Ver- teilung. Dies bedeutet, dass die Beladevorgänge einem bestimmten Muster folgen und keine signifikanten Ausreißer oder Abweichungen auftreten. Folglich sind die Messun- gen konsistent und zuverlässig. +Metadata: + +=== Element 594 === +Category: NarrativeText +Text: In Diagramm 3 ist die Normalverteilung des stündlichen Schallleistungspegel eines Ga- belstapler Beladevorgang in einem Tautliner dargestellt. +Metadata: + +=== Element 595 === +Category: Image +Text: Normalverteilung Gabelstapler - Tautliner Häufigkeit [%] 0 v 60,0 65,0 70,0 75,0 80,0 85,0 90,0 stündlicher Schallleistungspegel LWA,1h [dB(A] @ Messdaten > Mittelwert Wo €&>uo Gaußsche Glockenkurve +Metadata: + +=== Element 596 === +Category: NarrativeText +Text: Diagramm 3: Normalverteilung Gabelstapler – Tautliner Beladung +Metadata: + +=== Element 597 === +Category: NarrativeText +Text: Mit: μ: Erfahrungswert, σ: Standardabweichung +Metadata: + +=== Element 598 === +Category: NarrativeText +Text: Der höchste Punkt der Normalverteilung repräsentiert den energetischen Mittelwert des stündlichen Schallleistungspegels von 71,6 dB(A). Die Standardabweichung s von 4,8 +Metadata: + +=== Element 599 === +Category: UncategorizedText +Text: 63 +Metadata: + +=== Element 600 === +Category: Header +Text: 7 Ergebnisse und Interpretation +Metadata: + +=== Element 601 === +Category: NarrativeText +Text: dB gibt an, wie weit die einzelnen Messwerte um den Mittelwert herumliegen. Ungefähr 68,3% aller Messwerte liegen innerhalb einer Spanne von 66,8 bis 76,4 dB(A), welches einen großen Bereich abdeckt. Die Messpunkte niedriger und höher als der Mittelwert sind hier gleichmäßig auf der Gaußschen Glockenkurve verteilt. Die Messdaten haben eine sehr gute Übereinstimmung mit der normalen Verteilung. Dies bedeutet, dass die Beladevorgänge einem bestimmten Muster folgen und keine signifikanten Ausreißer o- der Abweichungen auftreten. Folglich sind die Messungen konsistent und zuverlässig. +Metadata: + +=== Element 602 === +Category: NarrativeText +Text: In Diagramm 4 ist die Normalverteilung des stündlichen Schallleistungspegel eines Ga- belhubwagen Beladevorgang in einem Koffer-Anhänger dargestellt. +Metadata: + +=== Element 603 === +Category: Image +Text: Normalverteilung Gabelhubwagen - Koffer 0,06 0,05 Häufigkeit [%] 0,04 0,02 60,0 65,0 70,0 75,0 30,0 85,0 90,0 stündlicher Schallleistungspegel LWA, Ih [dB(A)] © Messdaten Mittelwert wo vo Gaußsch +Metadata: + +=== Element 604 === +Category: FigureCaption +Text: Diagramm 4: Normalverteilung Gabelhubwagen – Koffer Beladung +Metadata: + +=== Element 605 === +Category: NarrativeText +Text: Mit: μ: Erfahrungswert, σ: Standardabweichung +Metadata: + +=== Element 606 === +Category: NarrativeText +Text: Der höchste Punkt der Normalverteilung repräsentiert den energetischen Mittelwert des stündlichen Schallleistungspegels von 72,9 dB(A). Die Standardabweichung s von 4,9 dB gibt an, wie weit die einzelnen Messwerte um den Mittelwert herumliegen. Ungefähr 68,3% aller Messwerte liegen innerhalb einer Spanne von 68,0 bis 77,8 dB(A), welches einen großen Bereich abdeckt. Die Messpunkte, die niedriger als der Mittelwert liegen, +Metadata: + +=== Element 607 === +Category: UncategorizedText +Text: 64 +Metadata: + +=== Element 608 === +Category: Header +Text: 7 Ergebnisse und Interpretation +Metadata: + +=== Element 609 === +Category: NarrativeText +Text: sind auch hier dichter auf der Gaußschen Glockenkurve verteilt als diejenigen, die größer als der Mittelwert sind. Die Messdaten haben eine sehr gute Übereinstimmung mit der normalen Verteilung. Dies bedeutet, dass die Beladevorgänge einem bestimmten Mus- ter folgen und keine signifikanten Ausreißer oder Abweichungen auftreten. Folglich sind die Messungen konsistent und zuverlässig. +Metadata: + +=== Element 610 === +Category: NarrativeText +Text: In Diagramm 5 ist die Normalverteilung des stündlichen Schallleistungspegel eines Ga- belhubwagen Beladevorgang in einer Wechselbrücke dargestellt. +Metadata: + +=== Element 611 === +Category: Image +Text: Normalverteilung Gabelhubwagen - Wechselbrücke 0,08 0,07 Häufigkeit [%] 0,01 0,00 60,0 62,0 64,0 66,0 68,0 70,0 72,0 74,0 76,0 78,0 80,0 stündlicher Schallleistungspegel LWA,1h [dB(A) © Messdaten Mittelwert Kto 0 Gaußsche Glockenkurve +Metadata: + +=== Element 612 === +Category: FigureCaption +Text: Diagramm 5: Normalverteilung Gabelhubwagen – Wechselbrücke Beladung +Metadata: + +=== Element 613 === +Category: NarrativeText +Text: Mit: μ: Erfahrungswert, σ: Standardabweichung +Metadata: + +=== Element 614 === +Category: NarrativeText +Text: Der höchste Punkt der Normalverteilung repräsentiert den energetischen Mittelwert des stündlichen Schallleistungspegels von 68,9 dB(A). Die Standardabweichung s von 4,3 dB gibt an, wie weit die einzelnen Messwerte um den Mittelwert herumliegen. Ungefähr 68,3% aller Messwerte liegen innerhalb einer Spanne von 64,6 bis 73,2 dB(A), welches einen großen Bereich abdeckt. Die Messpunkte, die niedriger als der Mittelwert liegen, sind auch hier dichter auf der Gaußschen Glockenkurve verteilt als diejenigen, die größer als der Mittelwert sind. Die Messdaten haben eine sehr gute Übereinstimmung mit der +Metadata: + +=== Element 615 === +Category: UncategorizedText +Text: 65 +Metadata: + +=== Element 616 === +Category: Header +Text: 7 Ergebnisse und Interpretation +Metadata: + +=== Element 617 === +Category: NarrativeText +Text: normalen Verteilung. Dies bedeutet, dass die Beladevorgänge einem bestimmten Mus- ter folgen und keine signifikanten Ausreißer oder Abweichungen auftreten. Folglich sind die Messungen konsistent und zuverlässig. +Metadata: + +=== Element 618 === +Category: NarrativeText +Text: Das Ergebnis der Auswertung der Normalverteilungen der einzelnen Beladevorgänge für die unterschiedlichen Anhänger zeigt, dass alle Messdaten eine sehr gute Übereinstim- mung mit der normalen Verteilung aufweisen. Die Mehrzahl der Messpunkte, die nied- riger als der Mittelwert liegen, sind meistens dichter auf der Gaußschen Glockenkurve verteilt als diejenigen, die größer als der Mittelwert sind. Die stündlichen Schallleis- tungspegel der Beladevorgänge folgen somit einem Muster, dass gut durch die Gauß- sche Glockenkurve beschrieben werden kann. Dies bedeutet, dass eine symmetrische Verteilung der stündlichen Schallleistungspegel um den energetischen Mittelwert vor- liegt. Es zeigt sich, dass die meisten Messwerte nahe dem Mittelwert liegen und die An- zahl der Messwerte abnimmt, je weiter sie sich vom Mittelwert entfernen. Dies ent- spricht der charakteristischen Glockenform der Normalverteilung. Die Messdaten wei- sen eine Durchschnittlichkeit auf, wobei keine Ausreißer auftreten. +Metadata: + +=== Element 619 === +Category: Title +Text: 7.3 Richtcharakteristik +Metadata: + +=== Element 620 === +Category: NarrativeText +Text: Nachdem die Auswertung der Richtcharakteristik abgeschlossen ist, können nun die Er- gebnisse dargestellt und interpretiert werden (siehe Tabelle 13). Das Polardiagramm zeigt die Intensität des Schalls in Abhängigkeit vom Azimutwinkel. Es wurde bewusst nur eine Messreihe des Gabelstaplers und des Gabelhubwagens als isolierte Schallquelle be- trachtet, um potenzielle Störquellen wie Reflexionen von ungünstig platzierten Anhä- ngern, wie an den anderen Untersuchungstagen, auszuschließen. Dadurch konnte eine präzisere Untersuchung der Richtcharakteristik des Gabelstaplers und des Gabelhubwa- gens erfolgen. Die Wahl eines bestimmten Untersuchungstags garantierte zudem weit- gehend konstante meteorologische und Umgebungsbedingungen, was zu einheitliche- ren Bedingungen für die Analyse der Richtcharakteristik führte und somit eine bessere Vergleichbarkeit der Ergebnisse ermöglichte. Darüber hinaus wurde durch die Begren- zung auf zwei Schallquellen mit jeweils einer Messreihe die Komplexität der Auswertung deutlich reduziert, was den Prozess insgesamt vereinfachte. +Metadata: + +=== Element 621 === +Category: UncategorizedText +Text: 66 +Metadata: + +=== Element 622 === +Category: Header +Text: 7 Ergebnisse und Interpretation +Metadata: + +=== Element 623 === +Category: Table +Text: Pr 5) ® DI Messpunkt PM [dB(A)] Messpunkt Fl [dB(A)] +Metadata: + +=== Element 624 === +Category: FigureCaption +Text: Gabelstapler Beladevorgangs +Metadata: + +=== Element 625 === +Category: FigureCaption +Text: Gabelhubwagen Beladevorgang +Metadata: + +=== Element 626 === +Category: FigureCaption +Text: Tabelle 13: Ergebnisse des Richtmaßes mit dazugehörigen Azimuthwinkel für +Metadata: + +=== Element 627 === +Category: Title +Text: jeden Messpunkt +Metadata: + +=== Element 628 === +Category: NarrativeText +Text: In Diagramm 6 und Diagramm 7 ist die Richtcharakteristik des Gabelstaplers und des Gabelhubwagens grafisch dargestellt. Dabei wird die Richtcharakteristik in einem Polar- koordinationssystem veranschaulicht. +Metadata: + +=== Element 629 === +Category: Image +Text: RICHTWIRKUNG GABELSTAPLER 5 0r 25 0 40° a5 50° 10 4.dB 305° so 300 = . 65 295 ) 200° 248 5 5: . 285 . . 90 280° ya 8 275° IK . Er 20° Er 65° 100° 105° 110° Ei us® 245 120 220° 125° 235 130 230° 135° 225 120 0: 1a 215° 210 205 oo. 165 195 yon: 10.175170 +Metadata: + +=== Element 630 === +Category: FigureCaption +Text: Diagramm 6: Richtwirkung eines Gabelstaplers (38 gesamt Einzelereignisse) +Metadata: + +=== Element 631 === +Category: UncategorizedText +Text: 67 +Metadata: + +=== Element 632 === +Category: Header +Text: 7 Ergebnisse und Interpretation +Metadata: + +=== Element 633 === +Category: Image +Text: +Metadata: + +=== Element 634 === +Category: FigureCaption +Text: Diagramm 7: Richtwirkung eines Gabelhubwagens (83 gesamt Einzelereignisse) +Metadata: + +=== Element 635 === +Category: NarrativeText +Text: Die ermittelten Richtcharakteristiken basieren auf einer begrenzten Anzahl von vier Messpunkten, was möglicherweise nicht alle Aspekte der Schallabstrahlung vollständig abdeckt. Dennoch liefern sie eine grobe Darstellung der Schallemissionen während des Beladevorgangs. Es wird deutlich, dass die Schallabstrahlung weitestgehend in alle Rich- tungen erfolgt, ohne eine ausgeprägte Richtcharakteristik aufzuweisen. Diese Erkennt- nis ist von Bedeutung, um die Schallemissionen angemessen bewerten zu können und gegebenenfalls Maßnahmen zur Lärmminderung zu entwickeln. +Metadata: + +=== Element 636 === +Category: Title +Text: 7.4 Validierung +Metadata: + +=== Element 637 === +Category: NarrativeText +Text: Nachdem die Auswertung der Validierung abgeschlossen ist, können nun die gesammel- ten Informationen systematisch analysiert und interpretiert werden. Durch den Ver- gleich der simulierten Messergebnisse mit den tatsächlichen Messungen kann die Ge- nauigkeit der berechneten Kenngrößen überprüft werden. Die Ergebnisse werden in einer Darstellung gegenübergestellt und die Abweichungen im Anschluss interpretiert. Dies ermöglicht eventuelle Abweichungen zu interpretieren und Rückschlüsse auf die Genauigkeit der berechneten Kenngrößen zu ziehen. +Metadata: + +=== Element 638 === +Category: UncategorizedText +Text: 68 +Metadata: + +=== Element 639 === +Category: Header +Text: 7 Ergebnisse und Interpretation +Metadata: + +=== Element 640 === +Category: NarrativeText +Text: Zur Durchführung des Vergleichs werden repräsentativ zwei Messtage für die beiden Flurfördergeräte ausgewählt, bei denen die Flächenschallquelle in der Simulation an der entsprechenden Verladestelle platziert wird. Die Lage des Immissionsortes, der Flächen- schallquellen und sonstigen akustischen Randbedingungen können der Anhang 2: Lage- pläne entnommen werden. Anschließend wird der Teilbeurteilungspegel Lr aus der Si- mulation mit den auf den stündlich bezogenen Taktmaximalpegel LAFTeq, da dieser den Impulshaltigkeit bereits enthält, aus den Messdaten verglichen. In Tabelle 14 sind die Ergebnisse des Vergleichs aufgezeigt. +Metadata: + +=== Element 641 === +Category: Table +Text: Beurteilungpegel Differenz Flurfördergerät Messtag [dB(A)] An [dB(A)] Simuliert Messung Gabelstapler 03.05.2023 53,3 60,1 6,8 Gabelhubwagen 27.04.2023 63,5 65,8 2,3 +Metadata: + +=== Element 642 === +Category: FigureCaption +Text: Tabelle 14: Ergebnisse der Validierung +Metadata: + +=== Element 643 === +Category: NarrativeText +Text: Die Ergebnisse zeigen, dass es Abweichungen zwischen den simulierten und den gemes- senen Beurteilungspegeln gibt. Die gemessenen Werte sind höher als die simulierten Werten, wobei die Differenzen unterschiedliche Abweichungen haben. Es herrscht eine durchschnittliche Differenz von 4,6 dB(A). Die Ergebnisse der Validierung deuten darauf hin, dass die Simulation möglicherweise nicht genau genug die realen Bedingungen wi- derspiegelt und eine gewisse Ungenauigkeit aufweist. Es kann verschiedene Gründe für Unterschiede geben, wie ungenaue Annahmen bei der Modellierung oder unvorherge- sehene Schwankungen in den tatsächlichen Messungen. Es ist zu beachten, dass das Re- chenmodell stets von einem Worst-Case-Szenario ausgeht, beispielsweise indem ange- nommen wird, dass die Fassaden vollständig reflektieren. Dadurch stellt das Modell eine Vereinfachung der realen Situation dar. Aus diesem Grund kann es zu Abweichungen bis zu 3 dB kommen. +Metadata: + +=== Element 644 === +Category: NarrativeText +Text: Nach einer Untersuchung die in der VDI 2714 [86] erwähnt wird, wurde festgestellt, dass bei freier Schallausbreitung einer einzelnen breitbandigen Schallquelle der berechnete A-bewertete Schalldruckpegel Abweichungen aufweist. In einer Entfernung von 100 Me- tern und einer Höhe von 10 Metern über dem Boden beträgt die Abweichung etwa 1 dB. Bei größeren Entfernungen von etwa 1000 Metern oder niedrigeren Höhen kann eine Abweichung von etwa 3 dB auftreten. Diese Erkenntnisse verdeutlichen, dass die Messungen und Berechnungen von Schalldruckpegeln mit der Entfernung und der Höhe variieren können und somit Einfluss auf die Genauigkeit der Ergebnisse haben. Die +Metadata: + +=== Element 645 === +Category: UncategorizedText +Text: 69 +Metadata: + +=== Element 646 === +Category: Header +Text: 7 Ergebnisse und Interpretation +Metadata: + +=== Element 647 === +Category: NarrativeText +Text: durchschnittliche Standardabweichung, „bei freier Schallausbreitung bei Mitwindwet- terlagen ohne Berücksichtigung von Bewuchs- und Bebauungsdämpfung“ [86] liegt bei der Untersuchung bei insgesamt 1,4 dB. Gemäß der DIN ISO 9613-2 [85] variiert die Schalldämpfung im Freien zwischen der Schallquelle und dem Empfangspunkt aufgrund der Witterungsbedingungen entlang der Ausbreitungsbahn. Bei Annahme einer leichten Windbedingung beschränken sich die Auswirkungen der schwankenden Witterungsbe- dingungen auf die Dämpfung auf ein akzeptables Maß. Die Übereinstimmung zwischen berechneten und gemessenen Werten zeigt, dass in einem Abstand von weniger als 100 Metern und einer Höhe von weniger als 5 Metern eine Abweichung von 3 dB auftritt. Es ist jedoch wichtig zu beachten, dass die Schätzung nach DIN ISO 9613-2 auf Situationen beruht, in denen weder Reflexionen noch Abschirmungen auftreten. +Metadata: + +=== Element 648 === +Category: NarrativeText +Text: Unter Berücksichtigung der Erkenntnisse der VDI 2714 [86] und DIN ISO 9613-2 [85] las- sen sich Abweichungen bei der Berechnung von Schalldruckpegeln feststellen, insbeson- dere bei freier Schallausbreitung und -abhängig von der Entfernung und Höhe. Die Vali- dierungsergebnisse zeigen, dass eine durchschnittliche Differenz von etwa 4,6 dB(A) zwi- schen den simulierten Beurteilungspegeln und den gemessenen Werten besteht. Da der durchschnittliche Abstand des Messpunktes zur Quelle ungefähr 40 Meter bei einer Höhe von unter 5 Metern beträgt, lässt sich daraus schließen, dass die simulierten Be- urteilungspegel im Vergleich zu den gemessenen Werten im akzeptablen Bereich liegen. Es ist zu beachten, dass die Abweichungen nicht allein durch den Abstand erklärt werden können, sondern auch von anderen Faktoren wie der Umgebung, der Ausbreitungsrich- tung und möglichen Absorptionseffekten. Bei der Bewertung der Schallpegelberechnun- gen sollten daher weitere Einflussfaktoren berücksichtigt werden, um eine möglichst genaue Einschätzung der tatsächlichen Lärmemissionen zu erhalten. +Metadata: + +=== Element 649 === +Category: Title +Text: 7.5 Mögliche Minderungsmaßnahmen +Metadata: + +=== Element 650 === +Category: NarrativeText +Text: Im Folgenden werden verschiedene Lärm-Minderungsmaßnahmen beschrieben, die dazu dienen, die Lärmbelastung in Speditionen und während des Verladeprozesses zu reduzieren. Lärm stellt ein erhebliches gesundheitliches Problem dar und kann zu Beein- trächtigungen der Mitarbeiter sowie der Umgebung führen. Daher ist es von großer Be- deutung, geeignete Maßnahmen zu ergreifen, um den Lärmpegel zu minimieren und ein angenehmes Klima zu schaffen. In diesem Kapitel werden verschiedene Ansätze und +Metadata: + +=== Element 651 === +Category: UncategorizedText +Text: 70 +Metadata: + +=== Element 652 === +Category: Header +Text: 7 Ergebnisse und Interpretation +Metadata: + +=== Element 653 === +Category: NarrativeText +Text: Strategien vorgestellt, die dazu beitragen können, den Lärm auf ein akzeptables Maß zu reduzieren. +Metadata: + +=== Element 654 === +Category: NarrativeText +Text: Durch subjektives Erleben und Hören während des Beladevorgangs konnten potenzielle +Metadata: + +=== Element 655 === +Category: NarrativeText +Text: Hauptursachen identifiziert werden, die zu einer erhöhten Lärmbelastung beitragen können. Ein Ansatzpunkt für Lärmminderungsmaßnahmen können bei der Überladebrü- cke und dem Anhänger selbst stattfinden. In der durchgeführten Messung wurde eine hydraulische Überladebrücke mit einer geriffelten Stahloberfläche verwendet. Die harte und geriffelte Oberfläche kann verschiedene Effekte hervorrufen, die zu einer Erhöhung des Schalls beitragen. Zum einen wird ein Teil des Schalls von der harten Oberfläche reflektiert und in verschiedene Richtungen zurückgeworfen, da harte Oberflächen Schall gut reflektieren. Darüber hinaus kann es aufgrund der geriffelten Oberfläche zu Streu- ungseffekten kommen, bei denen der Schall in verschiedene Richtungen gestreut wird und sich im Raum gut verteilt. Wenn die Frequenz des erzeugten Schalls mit der Reso- nanzfrequenz der Überladebrücke übereinstimmt, kann es zu einer Resonanz kommen, bei der der Schall verstärkt wird und das Bauteil angeregt. Um die nachfolgend beschrie- benen Effekte zu minimieren, könnte auf der Überladebrücke ein weicher Belag aufge- legt werden, die Schall und Vibrationen dämpfen. Des Weiteren könnten Körperschall- wellen, die durch den Beladevorgang entstehen, durch die Anbringung einer sogenann- ten Dröhnfolie auf der Unterseite der Überladebrücke reduziert werden. Beim Einfahren des Flurfördergeräts in die jeweiligen Anhänger, insbesondere in Tautliner und Koffer, konnte beobachtet werden, dass das Gewicht des Flurfördergeräts den Anhänger nach unten drückt und Schwingungen verursacht. Diese Anregung des Anhängers führte zu lauten Geräuschen. Um die Anregung und die damit verbundenen lauten Geräusche des Anhängers zu reduzieren, könnten Stoßdämpfer in den Anhänger eingebaut werden. Diese Stoßdämpfer dienen dazu, die Schwingungen zu dämpfen und somit die Geräu- schentwicklung zu verringern. Es ist jedoch wichtig, dass die Stoßdämpfer speziell auf die Anforderungen des Anhängers abgestimmt werden, um eine optimale Dämpfung zu gewährleisten und sonstige wichtige Eigenschaften des Anhängers nicht beeinflussen. Um die Lärmbelastung weiter zu reduzieren, könnten Maßnahmen sowohl auf dem Ge- lände als auch durch das richtige Verhalten des Personals erfolgen. Auf dem Gelände +Metadata: + +=== Element 656 === +Category: NarrativeText +Text: könnten Lärmschutzwände dimensioniert werden, um den Schall zu absorbieren und +Metadata: + +=== Element 657 === +Category: NarrativeText +Text: seine Ausbreitung zu verhindern. Diese Maßnahme ist in der Praxis weit verbreitet und +Metadata: + +=== Element 658 === +Category: NarrativeText +Text: trägt zur Reduzierung der Lärmemissionen bei. Darüber hinaus könnte das Personal +Metadata: + +=== Element 659 === +Category: UncategorizedText +Text: 71 +Metadata: + +=== Element 660 === +Category: Header +Text: 7 Ergebnisse und Interpretation +Metadata: + +=== Element 661 === +Category: NarrativeText +Text: durch Schulungen und Unterweisungen zu einem richtigen Verhalten während des Be- ladevorgangs aufgeklärt werden, um die Lärmbelastung zu verringern. Durch Sensibili- sierung für die Auswirkungen von schnellem und unvorsichtigem Beladen könnte das Personal lernen, Maßnahmen zu ergreifen, um Lärm zu reduzieren. Eine mögliche Maß- nahme könnte die Verwendung einer Lärmampel sein, die in der Verladezone ange- bracht ist und dem Personal signalisiert, wenn eine hohe Lärmbelastung besteht. Dadurch werden sie dazu ermutigt, ihre Vorgehensweise anzupassen und den Lärmpe- gel zu senken. +Metadata: + +=== Element 662 === +Category: NarrativeText +Text: Insgesamt stehen verschiedene Möglichkeiten zur Verfügung, um die Lärmbelastung zu senken. Die genaue Höhe der erzielbaren Minderung ist jedoch nicht abschätzbar und müsste spezifisch im Einzelfall analysiert werden. Es ist anzunehmen, dass durch geeig- nete Maßnahmen eine Schallminderung im Bereich von 3 bis 5 dB erzielt werden könnte. Durch gezielte Maßnahmen, angepasst an die individuellen Gegebenheiten, kann der Lärmpegel effektiv minimiert werden. Zusammenarbeit, Planung und die Umsetzung ge- eigneter Schutzmaßnahmen ermöglichen eine Reduzierung der Lärmbelastung und för- dern somit das Wohlbefinden und die Gesundheit aller Beteiligten. +Metadata: + +=== Element 663 === +Category: Title +Text: 7.6 Fehlerdiskussion +Metadata: + +=== Element 664 === +Category: NarrativeText +Text: Im folgendem wird eine detaillierte Diskussion über die Fehlerquellen und Unsicherhei- ten im Rahmen der durchgeführten Messungen und Analysen aufgezeigt. Fehler können in unterschiedlichen Bereichen auftreten und die Genauigkeit der Ergebnisse beeinflus- sen. Das Ziel dieses ist es, die Schranken und Unsicherheiten der vorliegenden Thesis transparent aufzuzeigen und die Relevanz der Ergebnisse in Hinblick auf mögliche Feh- lerquellen zu bewerten. +Metadata: + +=== Element 665 === +Category: NarrativeText +Text: Wie aus der Validierungsrechnung 7.4 hervorgeht können Abweichungen bei Verglei- chen zwischen simulierten und gemessenen Pegelwerten auftreten. In den meisten Fäl- len sind die simulierten Werte höher als die gemessenen Werte, wobei die Differenzen unterschiedlich ausfallen. Eine durchschnittliche Abweichung von 4,6 dB(A) ist festzu- stellen. Diese Ergebnisse deuten darauf hin, dass die Simulation möglicherweise nicht genau genug die realen Bedingungen widerspiegelt und daher eine gewisse Ungenauig- keit aufweist. Es ist wichtig anzumerken, dass auch bei der Messung selbst Fehler und Messungenauigkeiten auftreten können, die die gemessenen Kenngrößen verändern +Metadata: + +=== Element 666 === +Category: UncategorizedText +Text: 72 +Metadata: + +=== Element 667 === +Category: Header +Text: 7 Ergebnisse und Interpretation +Metadata: + +=== Element 668 === +Category: Title +Text: können. Dabei können systematische Fehler und zufällige Fehler auftreten. Systemati- +Metadata: + +=== Element 669 === +Category: NarrativeText +Text: sche Fehler entstehen beispielsweise aufgrund von Messunsicherheiten der verwende- ten Geräte oder einer fehlerhaften Kalibrierung. Diese Art von Fehlern beeinflusst die Genauigkeit der gemessenen Werte. [87, 88] Bei der Durchführung der Messungen ka- men Schallpegelmesser der Firma Norsonic-Tippkemper GmbH, Typ 140 (geeicht), zum Einsatz. Diese Schallpegelmesser weisen eine Messunsicherheit von ± 0,5 dB auf und bieten somit eine hohe Genauigkeit bei der Erfassung der Schalldruckpegel. Durch die Verwendung geeichter Messgeräte wird sichergestellt, dass die ermittelten Werte zu- verlässig und präzise sind. Die Eichdaten sind in Tabelle 9 zu finden. Darüber hinaus wur- den die Entfernungen mithilfe eines Laser-Entfernungsmesser der Firma Bosch GLM 40 erfasst. Bei der Messung von Entfernungen können ebenfalls Abweichungen auftreten. Dies kann durch verschiedene Faktoren wie beispielsweise die Helligkeit, die den Laser beeinflusst, bedingt sein. Es ist daher möglich, dass es zu leicht abweichenden Abstän- den kommt. Bei der Ermittlung der Messabstände wurden die Positionen mithilfe des Programms SoundPlan 9.0 nachgebildet und ausgemessen. Es ist jedoch wichtig zu be- achten, dass bei diesem Prozess Fehler auftreten können. Insbesondere kann es zu Ab- weichungen kommen, da nicht immer die genauen Positionen exakt digitalisiert werden können. Dadurch können Varianzen von bis zu 2 Metern auftreten, was wiederum zu einer Unsicherheit von ± 2 dB in den Berechnungen führen kann. Diese Abweichungen können verschiedene Ursachen haben, wie z.B. ungenaue Angaben über die genaue Po- sitionierung der Messpunkte oder Schwierigkeiten bei der Übertragung der realen Posi- tionen in das Programm. Des Weiteren wurden bei der Messung die Anhänger immer von unterschiedlichen Personen beladen, welches ebenfalls zu Messungenauigkeiten und Unsicherheiten führt, da jedes Lagerpersonal seine eigene Vorgehensweise und Technik hat, was zu Variationen in der Lärmemission führen kann. Dennoch können die Messungenauigkeiten aufgrund der unterschiedlichen Personen, die den Beladevorgang durchführen, nicht vollständig vermieden werden können. Hierbei kommt schätzungs- weise eine Unsicherheit von ± 3 dB hinzu. Darüber hinaus ist es wichtig zu beachten, dass bei der Annahme einer kugelförmigen Messfläche Winkelfehler auftreten können. Diese Annahme basiert darauf, dass die Schallintensität an allen Stellen der Messfläche +Metadata: + +=== Element 670 === +Category: NarrativeText +Text: senkrecht hindurchstrahlt. Für reale Schallquellen ist dies oft nicht der Fall, denn es ist +Metadata: + +=== Element 671 === +Category: Title +Text: eine umfangreichere Voruntersuchung der Schallfeldstruktur erforderlich, um eine ge- +Metadata: + +=== Element 672 === +Category: NarrativeText +Text: naue Messflächen zu bestimmen. Durch den Winkelfehler kann es zu Abweichungen in +Metadata: + +=== Element 673 === +Category: NarrativeText +Text: den Messergebnissen kommen, da die Schallintensität die Messfläche nicht senkrecht +Metadata: + +=== Element 674 === +Category: UncategorizedText +Text: 73 +Metadata: + +=== Element 675 === +Category: Header +Text: 7 Ergebnisse und Interpretation +Metadata: + +=== Element 676 === +Category: NarrativeText +Text: durchtritt. Um den Winkelfehler zu minimieren, sollte die Messfläche einen Radius grö- ßer als die zweifache maximale Schallquellenabmessung aufweisen. Dadurch wird eine bessere Annäherung an die tatsächliche Schallfeldstruktur erzielt und genauere Mess- ergebnisse können erzielt werden. [89] Um eine genaue Schallleistungspegelberechnun- gen durchzuführen, ist es wichtig die Richtcharakteristik der Quelle zu untersuchen. +Metadata: + +=== Element 677 === +Category: NarrativeText +Text: Zufällige Fehler, oder auch statistische Fehler genannt, entstehen zufällig während der Messung, beispielsweise durch das Rauschen eines Sensors und anderen externen Quel- len. Diese Fehler beeinflussen die Präzision der Messreihe und äußern sich somit in der Streuung der Messergebnisse. [87, 88] Vorbeifahrende Autos oder andere Fremdgeräu- sche fallen häufig bei einer Messung im freien auf die den gemessenen Schalldruckpegel verändern. Da vorbeifahrende Autos und andere externe Geräuschquellen nicht kon- trolliert werden können, können sie zu einer gewissen Unschärfe und Varianz in den Messergebnissen führen. In der Auswertung der Messung wurden die Fremdgeräusche, im Programm NorReview 6.2 ausgeblendet. Da die protokollierten Verladetätigkeiten in einzelne 5 Sekunden lange Arbeitsschritte unterteilt waren, konnten eventuelle Fremd- geräusche gezielt in diesem Zeitraum anhand des Gehöreindrucks analysiert werden und bei eventueller vorherrschender Dominanz nicht berücksichtigt. Dennoch kann trotz dieser Maßnahmen eine Messungenauigkeit aufgrund der Fremdgeräusche von +Metadata: + +=== Element 678 === +Category: NarrativeText +Text: schätzungsweise ± 1 dB auftreten. +Metadata: + +=== Element 679 === +Category: NarrativeText +Text: Zusammenfassend lässt sich erkennen, dass die Validierungsrechnung durchschnittliche Abweichungen von 4,6 dB(A) zwischen simulierten und gemessenen Pegelwerten auf- weist, was auf eine gewisse Ungenauigkeit der Simulation hinweist. Bei der Messung selbst können Messungenauigkeiten von ± 0,5 dB durch die verwendeten Schallpegel- messer, ± 3 dB durch die Beladung durch unterschiedliche Personen und ± 2 dB durch die Erfassung der Entfernungen auftreten. Zusätzlich können vorbeifahrende Autos und andere Fremdgeräusche zu einer Unsicherheit von etwa ± 1 dB führen. Die gesamte Un- sicherheit ist durch die Standardabweichung repräsentiert und kann daher als Maß für die Variabilität der Messergebnisse betrachtet werden. +Metadata: + +=== Element 680 === +Category: UncategorizedText +Text: 74 +Metadata: + +=== Element 681 === +Category: Header +Text: 8 Abschließende Bewertung und Ausblick +Metadata: + +=== Element 682 === +Category: Title +Text: 8 Abschließende Bewertung und Ausblick +Metadata: + +=== Element 683 === +Category: NarrativeText +Text: Das Ziel dieser Thesis bestand darin, detailliert die Verladetätigkeiten in Speditionen mit verschiedenen Flurfördergeräten und anderen Parametern zu analysieren und zu be- werten. Aus dem gewonnenen Wissen wurden Emissionsansätze ausgearbeitet, die als Prognosegrundlage für weiterführende Schallimmissionsprognosen zur Verfügung ste- hen. Für die Prognosegrundlage zur Schallimmissionsprognose lassen sich anhand der vorliegenden Thesis Emissionsdaten zusammenfassen. Die Verwendung eines Daten- blattes erleichtert die Arbeit erheblich, weshalb in Anhang 1: Emissionsdatenblätter ent- sprechende Vorlagen erstellt wurden. Wenn der genaue Anhängertyp nicht bekannt ist, sollten die Emissionsdatenblätter Nr. 1 und Nr. 2 verwendet werden. Falls detailliertere Informationen zu Verladevorgängen vorliegen, können die Emissionsdatenblätter Nr. 3, Nr. 4, Nr. 5 und Nr. 6 genutzt werden, um präzisere Ergebnisse zu erzielen. Ein Entlade- vorgang kann in ähnlicher Weise wie ein Beladevorgang betrachtet werden. Während beim Beladen Güter in einen Anhänger geladen werden, werden beim Entladen Güter aus dem Anhänger entfernt. +Metadata: + +=== Element 684 === +Category: NarrativeText +Text: Aus der Thesis geht hervor, dass die Beladung sowohl mit einem Gabelstapler als auch mit einem Gabelhubwagen in ähnlicher Größenordnung erfolgt wie die Beladung mit einem Handhubwagen gemäß den aktuellen Prognosegrundlagen. Dennoch zeigt sich, dass die Beladung mit dem Gabelstapler und dem Gabelhubwagen deutlich leiser als bisher in Untersuchungen angesetzt vonstattengeht. Die Begründung für die genannten Aussagen und Schlussfolgerungen ergibt sich aus der Analyse der vorliegenden Thesis und den daraus abgeleiteten Erkenntnissen. Diese Erkenntnisse lassen darauf schließen, dass die Verwendung ein Gabelhubwagen im Vergleich zur Verwendung eines Gabel- staplers eine etwas höhere Geräuschentwicklung aufweist und somit eine höhere Lärm- belastung verursacht. Obwohl die Schallleistungspegel der beiden Flurfördergeräte identisch sind, zeigt sich ein Unterschied in der Impulshaftigkeit der Geräuschentwick- lung. Der Gabelhubwagen erzeugt mehr impulsartige Schallereignisse, während der Ga- belstapler eine beständigere Geräuschabstrahlung aufweist. Diese impulsbehafteten Geräusche führen zu einer subjektiven Wahrnehmung von Lärm. Bei einem Vergleich der Schallleistungspegel zwischen den verschiedenen Flurfördergeräten und Anhänger- typen zeigt sich eine gewisse Variation. Allerdings lässt sich kein signifikanter Unter- schied zwischen den Beladevorgängen der Flurfördergeräte in den verschiedenen Anhä- +Metadata: + +=== Element 685 === +Category: NarrativeText +Text: ngern feststellen, was auf eine gewisse Ähnlichkeit hinweist. +Metadata: + +=== Element 686 === +Category: UncategorizedText +Text: 75 +Metadata: + +=== Element 687 === +Category: Header +Text: 8 Abschließende Bewertung und Ausblick +Metadata: + +=== Element 688 === +Category: NarrativeText +Text: Auf diese Weise können zudem Maßnahmen zur Lärmminderung gezielt entwickelt und umgesetzt werden, um die Gesamtemissionen zu reduzieren. Durch subjektives Erleben und Hören während des Beladevorgangs konnten potenzielle Hauptursachen identifi- ziert werden, die zu einer erhöhten Lärmbelastung beitragen können. Insgesamt gibt es verschiedene Möglichkeiten, die Lärmbelastung zu senken. Durch gezielte Maßnahmen, die an die individuellen Gegebenheiten angepasst sind, kann der Lärmpegel effektiv mi- nimiert werden. Es wurden verschiedene Maßnahmen dargestellt, um die Lärmbelas- tung zu reduzieren. Dazu gehören die Anbringung einer weicheren Oberfläche auf der Überladebrücke, die Verwendung einer Dröhnfolie an der Unterseite der Überladebrü- cke, die Installation von speziell angepassten Schalldämpfern im Anhänger sowie Maß- nahmen auf dem Gelände und durch das richtige Verhalten des Personals. +Metadata: + +=== Element 689 === +Category: NarrativeText +Text: In Zukunft könnten weitere Untersuchungen durchgeführt werden und bei Bedarf noch zusätzliche spezifische Untersuchungen und Messungen für bestimmte Situationen von Flurfördergeräte durchgeführt werden, um eine detailliertere und präzisere Bewertung vorzunehmen. Ein Ansatz könnte darin bestehen, gezielte Untersuchungen zur Identifi- zierung der Hauptquellen des Schallpegels bei den Flurfördergeräten durchgeführt wer- den. Dies ermöglicht eine gezielte Optimierung der schalltechnischen Eigenschaften die- ser Quellen, beispielsweise durch den Einsatz von schalldämpfenden Materialien. Eine weitere Möglichkeit besteht darin, den Einfluss verschiedener Betriebsbedingungen und Parameter auf die Schallabstrahlung der Flurfördergeräte zu untersuchen. Eine mögliche Methode zur Identifizierung der Schallquellenentstehung könnte der Einsatz einer akus- tischen Kamera sein. Diese ermöglicht es, die Richtung und Position von Schallquellen visuell darzustellen und somit zur Lokalisierung und Analyse des Schallgeschehens bei- +Metadata: + +=== Element 690 === +Category: Title +Text: zutragen. +Metadata: + +=== Element 691 === +Category: NarrativeText +Text: Die gewonnenen Erkenntnisse können dazu beitragen, Standards und Richtlinien für den Einsatz von Flurfördergeräten zu verbessern und die allgemeine Lärmbelastung in Spe- ditionen und während des Verladeprozesses zu reduzieren. +Metadata: + +=== Element 692 === +Category: UncategorizedText +Text: 76 +Metadata: + +=== Element 693 === +Category: Header +Text: Abschließende Bewertung und Ausblick +Metadata: + +=== Element 694 === +Category: Title +Text: 9 Literatur +Metadata: + +=== Element 695 === +Category: ListItem +Text: [1] Teufel Blog Redaktion: Musik und Emotionen: Was Klänge in uns auslösen, 2023, https://blog.teufel.de/musik-und-emotionen-was-klange-in-uns-auslosen/ [Zugriff am: 05.04.2023]. +Metadata: + +=== Element 696 === +Category: ListItem +Text: [2] Fraunhofer-Institut für Bauphysik IBP: Schallimmissionsschutz und urbane Akustik – Wirksamer präventiver Schallschutz für angenehmes akustisches Stadtklima, 2023, https://www.ibp.fraunhofer.de/de/kompetenzen/akustik/bauakustik/schal- limmissionsschutz.html [Zugriff am: 05.04.2023]. +Metadata: + +=== Element 697 === +Category: ListItem +Text: [3] Wothge, J., Niemann, H.: Gesundheitliche Auswirkungen von Umgebungslärm im urbanen Raum. +Metadata: + +=== Element 698 === +Category: ListItem +Text: [4] Bundesministerium für Umwelt, Naturschutz, nukleare Sicherheit und Verbrau- cherschutz/ Umweltbundesamt: Umweltbewusstseinsstudie 2020 – Ergebnisse ei- ner repräsentativen Bevölkerungsumfrage. +Metadata: + +=== Element 699 === +Category: ListItem +Text: [5] Claus Muchna, Hans Brandenburg, Johannes Fottner und Jens Gutermuth: Grund- lagen der Logistik – Begriffe, Strukturen und Prozesse. Springer Gabler Wiesbaden. +Metadata: + +=== Element 700 === +Category: ListItem +Text: [6] Schreiben des Bundesministeriums für Umwelt, Naturschutz, Bau und Reaktorsi- cherheit: Sechste Allgemeine Verwaltungsvorschrift zum Bundes-Immissions- schutzgesetz – Technische Anleitung zum Schutz gegen Lärm (TA Lärm). Schreiben des Bundesministeriums für Umwelt, Naturschutz, Bau und Reaktorsicherheit, 1998 (GMBl Nr. 26/1998 S. 503). +Metadata: + +=== Element 701 === +Category: ListItem +Text: [7] Dipl.-Phys. Ing. Knut Lenkewitz: Technischer Bericht zur Untersuchung der LKW- und Ladegeräusche auf Betriebsgeländen von Frachtzentren, Auslieferungslagern und Speditionen. Hessische Landesanstalt für Umwelt, Umweltplanung, Arbeits- und Umweltschutz Heft 192, Hessische Landesanst. für Umwelt, Wiesbaden, 1995. +Metadata: + +=== Element 702 === +Category: ListItem +Text: [8] Dipl.-Phys. Ing. Knut Lenkewitz und Dipl.-Ing Jürgen Müller: Technischer Bericht zur Untersuchung der Geräuschemissionen durch Lastkraftwagen auf Betriebsge- länden von Frachtzentren, Auslieferungslagern, Speditionen und Verbraucher- märkten sowie weiterer typischer Geräusche insbesondere von Verbrauchermärk- ten – Umwelt und Geologie Lärmschutz in Hessen, Heft 3. Hessisches Landesamt für Umwelt und Geologie, Wiesbaden Ausgabe 2005. +Metadata: + +=== Element 703 === +Category: ListItem +Text: [9] TIMOCOM: Umschlag in der Logistik, 2023, https://www.timocom.de/lexi- con/transportlexikon/umschlag [Zugriff am: 05.04.2023]. +Metadata: + +=== Element 704 === +Category: Header +Text: I +Metadata: + +=== Element 705 === +Category: Header +Text: Abschließende Bewertung und Ausblick +Metadata: + +=== Element 706 === +Category: ListItem +Text: [10] Ehrhardt + Partner GmbH & Co. KG: Definition Flurförderzeug – Logistik Lexikon, 2023, https://www.epg.com/logistik-know-how/lexikon/flurfoerderzeug [Zugriff am: 05.04.2023]. +Metadata: + +=== Element 707 === +Category: ListItem +Text: [11] Stertil Dock Produktion (Hrsg.): Entwurf einer Verladestation. STERTIL Superior So- lutions, 9288 ZG Kootstertille, Die Niederlande. +Metadata: + +=== Element 708 === +Category: ListItem +Text: [12] Thiele Shop: Was sind Überladebrücken?, 2023, https://www.auffahrrampen- thiele.de/was-sind-ueberladebruecken [Zugriff am: 05.04.2023]. +Metadata: + +=== Element 709 === +Category: ListItem +Text: [13] Jedermann-Verlag (Hrsg.): Sicheres-Be-und-Entladen-von-Fahrzeugen – Ein Leitfa- den für Praktiker. Jedermann-Verlag, Heidelberg, 2006. +Metadata: + +=== Element 710 === +Category: ListItem +Text: [14] Berufsgenossenschaſt Holz und Metall (Hrsg.): Be- und Entladen von Fahrzeugen, Isaac-Fulda-Allee 18 55124 Mainz, 2021. +Metadata: + +=== Element 711 === +Category: ListItem +Text: [15] Lasiprofi: Die Verladung von Frachtgut, 2023, https://www.ladungssiche- rung.eu/ratgeber/ladung/verladen [Zugriff am: 05.04.2023]. +Metadata: + +=== Element 712 === +Category: ListItem +Text: [16] DIN 45645-1: Ermittlung von Beurteilungspegeln aus Messungen, Teil 1: Ge- räuschemissionen in der Nachbarschaft. Ausgabe Juli 1996. +Metadata: + +=== Element 713 === +Category: ListItem +Text: [17] Müller, G.; Möser, M.: Beurteilung von Schallimmissionen – Gesetze - Vorschriften - Normen - Richtlinien. Fachwissen Technische Akustik, Fachwissen Technische Akustik, Springer Berlin Heidelberg, Berlin, Heidelberg, 2017. +Metadata: + +=== Element 714 === +Category: ListItem +Text: [18] DIN ISO 9613-2: Dämpfung bei Ausbreitung im Freien. Ausgabe Oktober 1999. +Metadata: + +=== Element 715 === +Category: ListItem +Text: [19] DIN 45681: Bestimmung der Tonhaltigkeit von geräuschen und Ermittlung eines Tonzuschlages für die Beurteilung von Geräuschimmissionen. Ausgabe Januar 1992. +Metadata: + +=== Element 716 === +Category: ListItem +Text: [20] DIN 45641: Mittelung von Schallpegeln. Ausgabe Juni 1990. +Metadata: + +=== Element 717 === +Category: ListItem +Text: [21] Professor Dr.-Ing. Michael Möser: Messtechnik der Akustik. Technische Universität Berlin - Institut für Strömungsmechanik und Technische Akustik. Springer-Verlag Berlin Heidelberg, Berlin, 2009. +Metadata: + +=== Element 718 === +Category: ListItem +Text: [22] fairaudio: Punktschallquelle - akustische Idealvorstellung | Lexikon fairaudio, 2020, https://www.fairaudio.de/lexikon/punktschallquelle/ [Zugriff am: 14.04.2023]. +Metadata: + +=== Element 719 === +Category: ListItem +Text: [23] Brüel & Kjær: Was sind Schallleistung und Schalldruck?, 2023, https://www.bksv.com/de/knowledge/blog/sound/sound-power-sound-pressure [Zugriff am: 06.04.2023]. +Metadata: + +=== Element 720 === +Category: Title +Text: II +Metadata: + +=== Element 721 === +Category: Header +Text: Abschließende Bewertung und Ausblick +Metadata: + +=== Element 722 === +Category: ListItem +Text: [24] IMV CORPORATION: Schallleistung und Schalldruck – Schall in Aktion - IMV COR- PORATION, 2023, https://we-are-imv.com/de/news/topics/item/47939/ [Zugriff am: 16.05.2023]. +Metadata: + +=== Element 723 === +Category: ListItem +Text: [25] DIN EN ISO 3740: Bestimmung Schallleistungspegel. Ausgabe Januar 2019. +Metadata: + +=== Element 724 === +Category: ListItem +Text: [26] DIN EN ISO 3741: Bestimmung der Schallleistungs- und Schallenergiepegel von Ge- räuschquellen aus Schalldruckmessungen. Ausgabe Januar 2011. +Metadata: + +=== Element 725 === +Category: ListItem +Text: [27] DIN EN ISO 3743-1: Bestimmung der Schallleistungs- und Schallenergiepegel von Geräuschquellen aus Schalldruckmessungen. Ausgabe Januar 2011. +Metadata: + +=== Element 726 === +Category: ListItem +Text: [28] DIN EN ISO 3743-2: Bestimmung Schallleistungspegel. Ausgabe November 2022. +Metadata: + +=== Element 727 === +Category: ListItem +Text: [29] DIN EN ISO 3744: Bestimmung der Schallleistungs- und Schallenergiepegel von Ge- räuschquellen aus Schalldruckmessunge. Ausgabe Februar 2011. +Metadata: + +=== Element 728 === +Category: ListItem +Text: [30] DIN EN ISO 3746: Bestimmung der Schallleistungs- und Schallenergiepegel von Ge- räuschquellen aus Schalldruckmessungen. Ausgabe März 2011. +Metadata: + +=== Element 729 === +Category: ListItem +Text: [31] DIN EN ISO 3747: Bestimmung der Schallleistungs- und Schallenergiepegel von Ge- räuschquellen aus Schalldruckmessungen. Ausgabe März 2011. +Metadata: + +=== Element 730 === +Category: ListItem +Text: [32] DIN EN ISO 9614-1: Akustik – Bestimmung der Schallleistungspegel von Geräusch- quellen aus Schallintensitätsmessungen – Teil 1: Messungen an diskreten Punk- ten. Ausgabe 2009. +Metadata: + +=== Element 731 === +Category: ListItem +Text: [33] DIN EN ISO 9614-2: Bestimmung der Schalleistungspegel von Geräuschquellen aus Schallintensitätsmessungen Teil 2; Messung mit kontinuierlicher Abtastung. Aus- gabe 1996. +Metadata: + +=== Element 732 === +Category: ListItem +Text: [34] DIN EN ISO 9614-3: Akustik –Bestimmung der Schallleistungspegel von Geräusch- quellen aus Schallintensitätsmessungen – Teil 3: Scanning-Verfahren der Genauig- keitsklasse 1. Ausgabe 2009. +Metadata: + +=== Element 733 === +Category: ListItem +Text: [35] ISO/TS 7849-2: Acoustics — Determination of airborne sound power levels emit- ted by machinery using vibration measurement — Part 2: Engineering method in- cluding determination of the adequate radiation factor. Ausgabe 2009. +Metadata: + +=== Element 734 === +Category: ListItem +Text: [36] ISO/TS 7849-1: Acoustics — Determination of airborne sound power levels emit- ted by machinery using vibration measurement — Part 1: Survey method using a fixed radiation factor. Ausgabe 2009. +Metadata: + +=== Element 735 === +Category: Title +Text: III +Metadata: + +=== Element 736 === +Category: Header +Text: Abschließende Bewertung und Ausblick +Metadata: + +=== Element 737 === +Category: ListItem +Text: [37] Nordrhein-Westfalen, L.: Handbuch für die Ausbildung im Bereich "Elektrische An- lagen" in den Berufen Fachkraft für Abwassertechnik und Fachkraft für Wasserver- sorgungstechnik. Landesumweltamt Nordrhein-Westfalen, 2003. +Metadata: + +=== Element 738 === +Category: ListItem +Text: [38] DIN EN ISO 3741: Bestimmung Schallleistungspegel. Ausgabe Januar 1997. +Metadata: + +=== Element 739 === +Category: ListItem +Text: [39] DIN EN ISO 3744: Bestimmung Schallleistungspegel. Ausgabe Februar 2011. [40] DIN EN ISO 3746: Bestimmung Schallleistungspegel. +Metadata: + +=== Element 740 === +Category: ListItem +Text: [41] DIN EN ISO 3747: Bestimmung Schallleistungspegel. Ausgabe Juli 1998. +Metadata: + +=== Element 741 === +Category: ListItem +Text: [42] Gh. Reza Sinambari, Stefan Sentpali: Ingenieurakustik – Physikalische Grundlagen und Anwendungsbeispiele. Springer Vieweg, Wiesbaden, 2014. +Metadata: + +=== Element 742 === +Category: ListItem +Text: [43] Cosmos indirekt: Nahfeld und Fernfeld (Akustik), https://www.cosmos-indi- rekt.de//Physik-Schule/Nahfeld_und_Fernfeld_(Akustik) [Zugriff am: 13.04.2023]. +Metadata: + +=== Element 743 === +Category: ListItem +Text: [44] Doccheck, M.B. Schalldruckpegel - DocCheck [online]. In: DocCheck Community GmbH, 2004 [Zugriff am: 13.04.2023], https://flexikon.doccheck.com/de/Schall- druckpegel. +Metadata: + +=== Element 744 === +Category: ListItem +Text: [45] AMBOSS: Akustik - Wissen, 2023, https://www.amboss.com/de/wissen/Akustik/ [Zugriff am: 13.04.2023]. +Metadata: + +=== Element 745 === +Category: ListItem +Text: [46] Prof. Dr. Jochen Koubek: Akustik – Erzeugung von Schallwellen. Universität Bay- reuth, Digitale Medien,, Bayreuth. +Metadata: + +=== Element 746 === +Category: ListItem +Text: [47] Bellton AG - Optimale Raumakustik: AKUSTIK -ABC | SCHALLSCHNELLE, 2023, https://bellton.ch/akustik-abc/schallschnelle [Zugriff am: 13.04.2023]. +Metadata: + +=== Element 747 === +Category: ListItem +Text: [48] Högel,biancahoegel.de, Bianca: Schallschnelle, 2022, https://www.bian- cahoegel.de/physik/akustik/schallschnelle.html [Zugriff am: 13.04.2023]. +Metadata: + +=== Element 748 === +Category: ListItem +Text: [49] Friedrich Schönholtz (Hrsg.): Technische Publikationen - Grundlagen der Schall- technik – Luftschall, Schallfeldgrößen, Schallgeschwindigkeit, Schalldruck, Schall- leistung, Dezibel, Oktavspektrum, Terzspektrum, Phon und Schallausbreitung etc. TROX TLT GmbH, 36251 Bad Hersfeld, 2013. +Metadata: + +=== Element 749 === +Category: ListItem +Text: [50] Högel,biancahoegel.de, Bianca: Logarithmische Größe, 2022, https://www.bian- cahoegel.de/technik/messen/einheiten/gross_logarith.html [Zugriff am: 13.04.2023]. +Metadata: + +=== Element 750 === +Category: ListItem +Text: [51] Hessisches Landesamt für Naturschutz, Umwelt und Geologie: Ermittlungsverfah- ren, 2023, https://www.hlnug.de/themen/laerm/industrie-und-gewerbeanlagen- laerm/ermittlungsverfahren [Zugriff am: 14.04.2023]. +Metadata: + +=== Element 751 === +Category: Title +Text: IV +Metadata: + +=== Element 752 === +Category: Header +Text: Abschließende Bewertung und Ausblick +Metadata: + +=== Element 753 === +Category: ListItem +Text: [52] DIN EN ISO 3745: Bestimmung der Schallleistungs- und Schallenergiepegel von Ge- räuschquellen aus Schalldruckmessunge. Ausgabe Oktober 2017. +Metadata: + +=== Element 754 === +Category: ListItem +Text: [53] NTi Audio: Wie werden Perzentile gemessen?, 2023, https://www.nti-au- dio.com/de/service/wissen/wie-werden-perzentile-gemessen [Zugriff am: 14.04.2023]. +Metadata: + +=== Element 755 === +Category: ListItem +Text: [54] Ministerium für Landesentwicklung und Wohnen: Städtebauliche Lärmfibel – Hin- weise für die Bauleitplanung. Ministerium für Landesentwicklung und Wohnen. Kohlhammer-Verlag, 70173 Stuttgart, 2018. +Metadata: + +=== Element 756 === +Category: ListItem +Text: [55] Schulze, C.; Hübelt, J.: Bestimmung der vertikalen Richtcharakteristik der Schallab- strahlung von Pkw, Transportern und Lkw – Bericht zum Forschungsprojekt FE 02.274/2006/LRB. +Metadata: + +=== Element 757 === +Category: NarrativeText +Text: [56] DAGA - Fortschritte der Akustik. +Metadata: + +=== Element 758 === +Category: ListItem +Text: [57] Hirsch, K.-W.; Buchta, E.; Institut für Lärmschutz, Düsseldorf (Hrsg.): Zur mathema- tischen Darstellung der Richtcharakterisitk einer Punktschallquelle, Dresden 1994, +Metadata: + +=== Element 759 === +Category: ListItem +Text: [58] Polarkoordinatensystem in Mathematik | Schülerlexikon | Lernhelfer, 2023, https://www.lernhelfer.de/schuelerlexikon/mathematik-abitur/artikel/polarkoor- dinatensystem# [Zugriff am: 25.05.2023]. +Metadata: + +=== Element 760 === +Category: ListItem +Text: [59] Patrick Planing: Deskriptive Statistik – Kennwerte. +Metadata: + +=== Element 761 === +Category: ListItem +Text: [60] Reinhold Kosfeld,Hans Friedrich Eckey, Matthias Türck: Deskriptive Statistik – Grundlagen, Methoden, Beispiele und Aufgaben. Universität Kassel, Siemens Fi- nancial Services. Springer Gabler Wiesbaden, 2016. +Metadata: + +=== Element 762 === +Category: ListItem +Text: [61] MassMatics UG: Häufigkeitsverteilung, 2023, https://www.massmatics.de/merk- zettel/#!814:Haeufigkeitsverteilung [Zugriff am: 23.05.2023]. +Metadata: + +=== Element 763 === +Category: ListItem +Text: [62] Akustikbüro Schwartzenberger und Burkhart: Mittelung von Schallpegeln | Akus- tikbüro Schwartzenberger und Burkhart, 27.11.20217, https://akustikbu- ero.com/lexikon/mittelung-von-schallpegeln/ [Zugriff am: 23.05.2023]. +Metadata: + +=== Element 764 === +Category: ListItem +Text: [63] W.A. Kreiner Faculty of Natural Sciences University of Ulm: Gauß oder nicht Gauß? – Is it a Gaussian or a non-Gaussian Distribution? Ulm, W.A. Kreiner Faculty of Na- tural Sciences University of Ulm. +Metadata: + +=== Element 765 === +Category: ListItem +Text: [64] Prof. Dr. Torsten Schatz: Lambacher Schweizer Kursstufe – Modellieren mit der Normalverteilung. Ernst Klett Verlag GmbH, Stuttgart, 2020. +Metadata: + +=== Element 766 === +Category: Title +Text: V +Metadata: + +=== Element 767 === +Category: Header +Text: Abschließende Bewertung und Ausblick +Metadata: + +=== Element 768 === +Category: ListItem +Text: [65] Martin Heroldt: Schallpegelanalyse von Be- und Entladevorgängen mit Paletten- hubwagen und beladener Palette bei Lkw in Logistikzentren – Studiengang Um- weltschutz. Bingen, TH Bingen, Bachelorarbeit, 2016. +Metadata: + +=== Element 769 === +Category: ListItem +Text: [66] LfU: Materialien zur Parkplatzlärmstudie; Bewegungs- und Belegungsganglinien. Bayerisches Landesamt für Umwelt. +Metadata: + +=== Element 770 === +Category: ListItem +Text: [67] Bianca Berghofer: Untersuchung der Geräuschemissionen durch Ladevorgänge in Ladezonen von Discountern – Studiengang: Umweltingenieurwesen. Lübeck, Fach- hochschule Lübeck, Diplomarbeit, 2009. +Metadata: + +=== Element 771 === +Category: ListItem +Text: [68] Gebrüder Weiss: Über uns - Unternehmen - Gebrüder Weiss, 2023, https://www.gw-world.com/de/unternehmen/ueber-uns [Zugriff am: 20.04.2023]. +Metadata: + +=== Element 772 === +Category: ListItem +Text: [69] Gebrüder Weiss: Geschichte - Über uns - Unternehmen - Gebrüder Weiss, 2023, https://www.gw-world.com/de/unternehmen/ueber-uns/geschichte [Zugriff am: 02.05.2023]. +Metadata: + +=== Element 773 === +Category: ListItem +Text: [70] Wikipedia: Gebrüder Weiss, 2023, https://de.wikipedia.org/w/index.php?title=Ge- brüder_Weiss&oldid=232890186 [Zugriff am: 20.04.2023]. +Metadata: + +=== Element 774 === +Category: ListItem +Text: [71] Gebrüder Weiss: Zahlen, Daten & Fakten - Über uns - Unternehmen - Gebrüder Weiss, 2023, https://www.gw-world.com/de/unternehmen/ueber-uns/zahlen-da- ten-fakten [Zugriff am: 20.04.2023]. +Metadata: + +=== Element 775 === +Category: ListItem +Text: [72] Saloodo!: Was ist ein Auflieger? Definitionen & Erklärungen | Saloodo!, 2023, https://www.saloodo.com/de/logistik-lexikon/auflieger/ [Zugriff am: 08.05.2023]. +Metadata: + +=== Element 776 === +Category: ListItem +Text: [73] zipmend Express: Auflieger - Definition und Erklärung, 2022+00:00, https://zipmend.com/logistik-lexikon/auflieger/ [Zugriff am: 08.05.2023]. +Metadata: + +=== Element 777 === +Category: ListItem +Text: [74] TIMOCOM: Was ist ein Tautliner? | TIMOCOM Transportlexikon, 2023, https://www.timocom.de/lexicon/transportlexikon/tautliner [Zugriff am: 08.05.2023]. +Metadata: + +=== Element 778 === +Category: ListItem +Text: [75] Saloodo!: Was ist eine Wechselbrücke? Definitionen & Erklärungen | Saloodo!, 2023, https://www.saloodo.com/de/logistik-lexikon/wechselbruecke/ [Zugriff am: 08.05.2023]. +Metadata: + +=== Element 779 === +Category: ListItem +Text: [76] Yumpu.com: Speditions 1x1.indd - Gebrüder Weiss. Yumpu.com, 2013, https://www.yumpu.com/de/document/view/18328821/speditions-1x1indd-ge- bruder-weiss [Zugriff am: 15.05.2023]. +Metadata: + +=== Element 780 === +Category: Title +Text: VI +Metadata: + +=== Element 781 === +Category: Header +Text: Abschließende Bewertung und Ausblick +Metadata: + +=== Element 782 === +Category: ListItem +Text: [77] Crown Equipment Corporation (Hrsg.): Gabelhubwagen mit klappbarer Plattform oder Bedienerstand WT 3000 Spezifikationen, Deutschland, 11/21. +Metadata: + +=== Element 783 === +Category: ListItem +Text: [78] Crown Equipment Corporation (Hrsg.): Gabelstapler SC 6200 – Spezifikatio- nen Elektro-Gegengewichtsstapler 48 V (Dreirad-/Vierradausführung), Deutsch- land, 02/22. +Metadata: + +=== Element 784 === +Category: ListItem +Text: [79] BG Bau: Frequenzbewertung, Spitzen- und Dauerschallpegel, 2023, https://www.bgbau.de/themen/sicherheit-und-gesundheit/laerm-und-vibratio- nen/frequenzbewertung-spitzen-und-dauerschallpegel [Zugriff am: 15.05.2023]. +Metadata: + +=== Element 785 === +Category: ListItem +Text: [80] Norsonic: Bedienungsanleitung Nor140 Schallanalysator Norsonic. Norsonic, Nor- wegen, 2011. +Metadata: + +=== Element 786 === +Category: ListItem +Text: [81] Norsonic: Betriebsanleitung Akustische Kalibrator Typ 1251 Klasse 1. Norsonic, Norwegen. +Metadata: + +=== Element 787 === +Category: ListItem +Text: [82] DAkkS Deutsche Akkreditierungsstelle: Was ist Akkreditierung? - DAkkS - Deutsche Akkreditierungsstelle, 2023, https://www.dakks.de/de/was-ist-akkreditie- rung.html [Zugriff am: 15.05.2023]. +Metadata: + +=== Element 788 === +Category: ListItem +Text: [83] Norsonic Brechbühl AG: NorReview - Auswertung von Umweltmessungen - Aus- wertungs- / Übertragungssoftware - Norsonic Brechbühl AG, 2023, https://www.norsonic.ch/produkte/auswertungssoftware/norreview/ [Zugriff am: 17.05.2023]. +Metadata: + +=== Element 789 === +Category: ListItem +Text: [84] LUMITOS AG: Fernfeld, 2023, https://www.chemie.de/lexikon/Fernfeld.html [Zu- griff am: 23.05.2023]. +Metadata: + +=== Element 790 === +Category: ListItem +Text: [85] ISO 9613-2: Dämpfung des Schalls bei der Ausbreitung im Freien Teil 2: Allgemei- nes Berechnungsverfahren. Ausgabe Oktober 1999. +Metadata: + +=== Element 791 === +Category: ListItem +Text: [86] VDI 2714: Schallausbreitung im Freien. Ausgabe Januar 1986. +Metadata: + +=== Element 792 === +Category: ListItem +Text: [87] Lohninger, H.: Zufällige und systematische Fehler, 2021, http://www.statis- tics4u.info/fundstat_germ/ee_precision_accuracy.html [Zugriff am: 01.06.2023]. +Metadata: + +=== Element 793 === +Category: ListItem +Text: [88] Thode, J.: Aus dem Laboralltag – Systematische und zufällige Fehler, 2023, https://mpl.loesungsfabrik.de/blog/methodenvalidierung/fehlerarten [Zugriff am: 01.06.2023]. +Metadata: + +=== Element 794 === +Category: ListItem +Text: [89] Dr.-Ing. Werner Schirmer: Technischer Lärmschutz – Grundlagen und praktische Maßnahmen zum Schutz vor Lärm und Schwinungen von Maschinen. Springer Berlin Heidelberg, 2005. +Metadata: + +=== Element 795 === +Category: Title +Text: VII +Metadata: + +=== Element 796 === +Category: Title +Text: Formelverzeichnis +Metadata: + +=== Element 797 === +Category: Header +Text: Formelverzeichnis +Metadata: + +=== Element 798 === +Category: Title +Text: Formelverzeichnis +Metadata: + +=== Element 799 === +Category: Table +Text: Formel 1: Beurteilungspegel [dB(A)] .................................................................................... 10 Formel 2: Impulszuschlag [dB(A)] ........................................................................................ 11 Formel 3: Taktmaximal-Mittelungspegel [dB(A)] ................................................................. 11 Formel 4: meteorologische Korrektur [dB(A)] ..................................................................... 12 Formel 5: Schalldruck [Pa = N/m²] ....................................................................................... 14 Formel 6: Schallschnelle [m/s] ............................................................................................. 14 Formel 7: Schallleistung [W] ................................................................................................ 14 Formel 8: Schallleistung der einzelnen Teilflächen [W] ....................................................... 15 Formel 9: Bezugsgröße ......................................................................................................... 15 Formel 10: Schallleistung der einzelnen Teilflächen [W] ..................................................... 15 Formel 11: Schallleistungspegel bezogen auf 5 Sekunden [dB(A)] ...................................... 15 Formel 12: maximale Schallleistungspegel [dB(A)] .............................................................. 15 Formel 13: stündlicher Schallleistungspegel [dB(A)] ........................................................... 16 Formel 14: impulsbehafteter stündlicher Schallleistungspegel [dB(A)] .............................. 16 Formel 15: Fremdgeräuschkorrektur [dB(A)]....................................................................... 17 Formel 16: Umgebungskorrektur [dB(A)] ............................................................................ 17 Formel 17: zeitlich gemittelte Messflächen-Schalldruckpegel [dB(A)] ................................ 17 Formel 18: äquivalenter Dauerschallpegel [dB(A)] .............................................................. 18 Formel 19: komplexe Richtungsfaktor [-] ............................................................................ 19 Formel 20: Richtungsfaktor [-] ............................................................................................. 19 Formel 21: Richtmaß [dB(A)]................................................................................................ 19 Formel 22: Konturen des Polarkoordinatendiagramms ...................................................... 20 Formel 23: relative Häufigkeit [-] ......................................................................................... 22 Formel 24: Mittelungspegel [dB(A)]..................................................................................... 22 Formel 25: Varianz der Schalldruckpegel [dB(A)] ................................................................ 22 Formel 26: Standardabweichung der Schalldruckpegel [dB(A)] .......................................... 23 Formel 27: Dichtefunktion der Normalverteilung ............................................................... 23 Formel 28: Schallleistungspegel nach dem Technischen Bericht 1995 [7] [dB(A)] .............. 26 +Metadata: + +=== Element 800 === +Category: Title +Text: Formel 29: Schallleistungspegel nach dem Technischen Bericht 2005 [8] [dB(A)] .............. 26 +Metadata: + +=== Element 801 === +Category: Title +Text: VIII +Metadata: + +=== Element 802 === +Category: Header +Text: Abbildungsverzeichnis +Metadata: + +=== Element 803 === +Category: Title +Text: Abbildungsverzeichnis +Metadata: + +=== Element 804 === +Category: NarrativeText +Text: Abbildung 1: Ausmaß der Lärmbelästigung der Bevölkerung in Deutschland 2020 [4] ........ 3 Abbildung 2: Überblick über die Grundnormen zur Bestimmung des +Metadata: + +=== Element 805 === +Category: Table +Text: Abbildung 3: Geometrische Darstellung der Richtcharakteristik ......................................... 20 Abbildung 4: Verladezone von innen und außen ................................................................. 32 Abbildung 5: Oberfläche der innenliegenden Überladebrücke ........................................... 33 Abbildung 6: Tautliner .......................................................................................................... 34 Abbildung 7: Koffer Auflieger - blau ..................................................................................... 34 Abbildung 8: Wechselbrücke ............................................................................................... 34 Abbildung 9: Prozessablauf des Beladevorgangs ................................................................. 39 Abbildung 10: Exportbereich von außen ............................................................................. 42 Abbildung 11: Ortsfeste Mikrofonposition .......................................................................... 44 Abbildung 12: Variabler Mikrofonaufbau ............................................................................ 45 Abbildung 13: Arbeitsschritte für die Berechnung der gewünschten akustischen Abbildung 14: Vorgehensweise statistische Kennwerte ...................................................... 49 Abbildung 15: Vorgang für die Berechnung der Richtcharakteristik vom 03.05.2023 ........ 52 Abbildung 16: Messpunkte im Polarkoordinatensystem vom 03.05.2023 .......................... 53 Abbildung 17: Messpunkte im Polarkoordinatensystem vom 27.04.2023 .......................... 54 +Metadata: + +=== Element 806 === +Category: UncategorizedText +Text: Schallleistungspegels ......................................................................................... 13 +Metadata: + +=== Element 807 === +Category: UncategorizedText +Text: Kenngrößen ....................................................................................................... 48 +Metadata: + +=== Element 808 === +Category: Title +Text: IX +Metadata: + +=== Element 809 === +Category: Header +Text: Tabellenverzeichnis +Metadata: + +=== Element 810 === +Category: Title +Text: Tabellenverzeichnis +Metadata: + +=== Element 811 === +Category: NarrativeText +Text: Tabelle 1: Ergebnisse der Verladegeräusche ......................................................................... II Tabelle 2: Übersicht über den Schallleistungspegel verschiedener Vorgänge [7] ............... 25 Tabelle 3: Übersicht über die aktuellen Untersuchungsergebnisse .................................... 26 Tabelle 4: Übersicht über die Schallleistungspegel verschiedener Fahrzeugtypen [65] ..... 28 Tabelle 5: Übersicht über die Schallleistungspegel verschiedener Fahrzeugtypen [67] ..... 29 Tabelle 6: Gabelhubwagen [77] ........................................................................................... 36 Tabelle 7: Elektro-Gegengewichtsstapler [78] ..................................................................... 37 Tabelle 8: Verwendete Messgeräte und Equipment ........................................................... 40 Tabelle 9: Handschallpegelmesser Norsonic 140, Stand: 27.07.2021 ................................. 41 Tabelle 10: Überblick über die verschiedenen Messungstage ............................................ 42 Tabelle 11: Emissionsansätze für die verschiedenen Flurfördergeräte ............................... 56 Tabelle 12: Vergleich verschiedene Flurfördergeräte mit unterschiedlichen Anhängertypen .................................................................................................. 59 +Metadata: + +=== Element 812 === +Category: NarrativeText +Text: Tabelle 13: Ergebnisse des Richtmaßes mit dazugehörigen Azimuthwinkel für ................. 67 +Metadata: + +=== Element 813 === +Category: UncategorizedText +Text: Tabelle 14: Ergebnisse der Validierung ................................................................................ 69 +Metadata: + +=== Element 814 === +Category: Title +Text: X +Metadata: + +=== Element 815 === +Category: Title +Text: Diagrammverzeichnis +Metadata: + +=== Element 816 === +Category: Title +Text: Diagrammverzeichnis +Metadata: + +=== Element 817 === +Category: NarrativeText +Text: Diagramm 1: Normalverteilung Gabelstapler – Koffer Anhänger Beladung ....................... 61 Diagramm 2: Normalverteilung Gabelstapler – Wechselbrücke Beladung ......................... 62 Diagramm 3: Normalverteilung Gabelstapler – Tautliner Beladung.................................... 63 Diagramm 4: Normalverteilung Gabelhubwagen – Koffer Beladung .................................. 64 Diagramm 5: Normalverteilung Gabelhubwagen – Wechselbrücke Beladung ................... 65 Diagramm 6: Richtwirkung eines Gabelstaplers (38 gesamt Einzelereignisse) ................... 67 Diagramm 7: Richtwirkung eines Gabelhubwagens (83 gesamt Einzelereignisse) .............. 68 +Metadata: + +=== Element 818 === +Category: Title +Text: XI +Metadata: + +=== Element 819 === +Category: Header +Text: Anhänge +Metadata: + +=== Element 820 === +Category: Title +Text: Anhänge +Metadata: + +=== Element 821 === +Category: Title +Text: Anhang 1: Emissionsdatenblätter +Metadata: + +=== Element 822 === +Category: Title +Text: Emissionsdatenblatt +Metadata: + +=== Element 823 === +Category: Title +Text: Emissionsdatenblatt +Metadata: + +=== Element 824 === +Category: Title +Text: Nr.1 +Metadata: + +=== Element 825 === +Category: Title +Text: Gabelstapler Beladevorgang über innenliegenden +Metadata: + +=== Element 826 === +Category: Title +Text: Vorgang +Metadata: + +=== Element 827 === +Category: Title +Text: hydraulischen Überladebrücke mit Klapplippe (Stahl +Metadata: + +=== Element 828 === +Category: Title +Text: geriffelte Oberfläche), Planen-Torrandabdichtung +Metadata: + +=== Element 829 === +Category: Title +Text: Anhänger-Typ +Metadata: + +=== Element 830 === +Category: Title +Text: Anhänger-Typ +Metadata: + +=== Element 831 === +Category: Title +Text: Gemittelt über Koffer, Tautliner und Wechselbrücken +Metadata: + +=== Element 832 === +Category: Title +Text: Zustand des Flurfördergeräts Gebraucht +Metadata: + +=== Element 833 === +Category: Title +Text: Mess- und Beurteilungsparameter +Metadata: + +=== Element 834 === +Category: Title +Text: Dauer des Vorgangs +Metadata: + +=== Element 835 === +Category: Title +Text: Impulshaltigkeit Kı +Metadata: + +=== Element 836 === +Category: Title +Text: Standardabweichung der Impulshaltigkeit s +Metadata: + +=== Element 837 === +Category: Title +Text: Ton- und Informationshaltigkeit Kr +Metadata: + +=== Element 838 === +Category: Image +Text: +Metadata: + +=== Element 839 === +Category: Title +Text: XII +Metadata: + +=== Element 840 === +Category: Header +Text: Anhänge +Metadata: + +=== Element 841 === +Category: Header +Text: XIII +Metadata: + +=== Element 842 === +Category: Title +Text: Emissionsdatenblatt +Metadata: + +=== Element 843 === +Category: Title +Text: Emissionsdatenblatt +Metadata: + +=== Element 844 === +Category: Title +Text: Nr.2 +Metadata: + +=== Element 845 === +Category: Title +Text: Gabelhubwagen Beladevorgang über innenliegenden +Metadata: + +=== Element 846 === +Category: Title +Text: Vorgang +Metadata: + +=== Element 847 === +Category: Title +Text: hydraulischen Überladebrücke mit Klapplippe (Stahl +Metadata: + +=== Element 848 === +Category: Title +Text: geriffelte Oberfläche), Planen-Torrandabdichtung +Metadata: + +=== Element 849 === +Category: Title +Text: Anhänger-Typ +Metadata: + +=== Element 850 === +Category: Title +Text: Anhänger-Typ +Metadata: + +=== Element 851 === +Category: Title +Text: Gemittelt über Koffer, Tautliner und Wechselbrücken +Metadata: + +=== Element 852 === +Category: Title +Text: Zustand des Flurfördergeräts Gebraucht +Metadata: + +=== Element 853 === +Category: Title +Text: Mess- und Beurteilungsparameter +Metadata: + +=== Element 854 === +Category: Title +Text: Dauer des Vorgangs +Metadata: + +=== Element 855 === +Category: UncategorizedText +Text: ca. 15 +Metadata: + +=== Element 856 === +Category: UncategorizedText +Text: [s] +Metadata: + +=== Element 857 === +Category: Title +Text: Impulshaltigkeit KI +Metadata: + +=== Element 858 === +Category: UncategorizedText +Text: 6,2 +Metadata: + +=== Element 859 === +Category: UncategorizedText +Text: [dB(A)] +Metadata: + +=== Element 860 === +Category: Title +Text: Standardabweichung der Impulshaltigkeit s +Metadata: + +=== Element 861 === +Category: UncategorizedText +Text: 2,7 +Metadata: + +=== Element 862 === +Category: UncategorizedText +Text: [dB(A)] +Metadata: + +=== Element 863 === +Category: Title +Text: Ton- und Informationshaltigkeit Kr +Metadata: + +=== Element 864 === +Category: Image +Text: +Metadata: + +=== Element 865 === +Category: Title +Text: Lwar,ıh +Metadata: + +=== Element 866 === +Category: Header +Text: Anhänge +Metadata: + +=== Element 867 === +Category: Title +Text: Emissionsdatenblatt +Metadata: + +=== Element 868 === +Category: Title +Text: Emissionsdatenblatt +Metadata: + +=== Element 869 === +Category: Title +Text: Gabelstapler Beladevorgang über innenliegenden +Metadata: + +=== Element 870 === +Category: Title +Text: Vorgang +Metadata: + +=== Element 871 === +Category: Title +Text: hydraulischen Überladebrücke mit Klapplippe (Stahl +Metadata: + +=== Element 872 === +Category: Title +Text: geriffelte Oberfläche), Planen-Torrandabdichtung +Metadata: + +=== Element 873 === +Category: Title +Text: Anhänger-Typ +Metadata: + +=== Element 874 === +Category: Title +Text: Anhänger-Typ +Metadata: + +=== Element 875 === +Category: Title +Text: Tautliner +Metadata: + +=== Element 876 === +Category: Title +Text: Zustand des Flurfördergeräts Gebraucht +Metadata: + +=== Element 877 === +Category: Title +Text: Mess- und Beurteilungsparameter +Metadata: + +=== Element 878 === +Category: Title +Text: Dauer des Vorgangs +Metadata: + +=== Element 879 === +Category: Title +Text: Impulshaltigkeit Kı +Metadata: + +=== Element 880 === +Category: Title +Text: Standardabweichung der Impulshaltigkeit s +Metadata: + +=== Element 881 === +Category: Title +Text: Ton- und Informationshaltigkeit Kr +Metadata: + +=== Element 882 === +Category: Image +Text: +Metadata: + +=== Element 883 === +Category: Title +Text: XIV +Metadata: + +=== Element 884 === +Category: Title +Text: Nr.3 +Metadata: + +=== Element 885 === +Category: Header +Text: Anhänge +Metadata: + +=== Element 886 === +Category: Title +Text: Emissionsdatenblatt +Metadata: + +=== Element 887 === +Category: Title +Text: Emissionsdatenblatt +Metadata: + +=== Element 888 === +Category: Title +Text: Gabelstapler Beladevorgang über innenliegenden +Metadata: + +=== Element 889 === +Category: Title +Text: Vorgang +Metadata: + +=== Element 890 === +Category: Title +Text: hydraulischen Überladebrücke mit Klapplippe (Stahl +Metadata: + +=== Element 891 === +Category: Title +Text: geriffelte Oberfläche), Planen-Torrandabdichtung +Metadata: + +=== Element 892 === +Category: Title +Text: Anhänger-Typ +Metadata: + +=== Element 893 === +Category: Title +Text: Anhänger-Typ +Metadata: + +=== Element 894 === +Category: Title +Text: Koffer +Metadata: + +=== Element 895 === +Category: Title +Text: Zustand des Flurfördergeräts Gebraucht +Metadata: + +=== Element 896 === +Category: Title +Text: Mess- und Beurteilungsparameter +Metadata: + +=== Element 897 === +Category: Title +Text: Dauer des Vorgangs +Metadata: + +=== Element 898 === +Category: Title +Text: Impulshaltigkeit Kı +Metadata: + +=== Element 899 === +Category: Title +Text: Standardabweichung der Impulshaltigkeit s +Metadata: + +=== Element 900 === +Category: Title +Text: Ton- und Informationshaltigkeit Kr +Metadata: + +=== Element 901 === +Category: Image +Text: +Metadata: + +=== Element 902 === +Category: Title +Text: Nr.4 +Metadata: + +=== Element 903 === +Category: Title +Text: XV +Metadata: + +=== Element 904 === +Category: Header +Text: Anhänge +Metadata: + +=== Element 905 === +Category: Header +Text: XVI +Metadata: + +=== Element 906 === +Category: Title +Text: Emissionsdatenblatt +Metadata: + +=== Element 907 === +Category: Title +Text: Emissionsdatenblatt +Metadata: + +=== Element 908 === +Category: Title +Text: Nr.5 +Metadata: + +=== Element 909 === +Category: Title +Text: Gabelstapler Beladevorgang über innenliegenden +Metadata: + +=== Element 910 === +Category: Title +Text: Vorgang +Metadata: + +=== Element 911 === +Category: Title +Text: hydraulischen Überladebrücke mit Klapplippe (Stahl +Metadata: + +=== Element 912 === +Category: Title +Text: geriffelte Oberfläche), Planen-Torrandabdichtung +Metadata: + +=== Element 913 === +Category: Title +Text: Anhänger-Typ +Metadata: + +=== Element 914 === +Category: Title +Text: Anhänger-Typ +Metadata: + +=== Element 915 === +Category: Title +Text: Wechselbrücke +Metadata: + +=== Element 916 === +Category: Title +Text: Zustand des Flurfördergeräts Gebraucht +Metadata: + +=== Element 917 === +Category: Title +Text: Mess- und Beurteilungsparameter +Metadata: + +=== Element 918 === +Category: Title +Text: Dauer des Vorgangs +Metadata: + +=== Element 919 === +Category: UncategorizedText +Text: ca. 15 +Metadata: + +=== Element 920 === +Category: UncategorizedText +Text: [s] +Metadata: + +=== Element 921 === +Category: Title +Text: Impulshaltigkeit Kı +Metadata: + +=== Element 922 === +Category: Title +Text: Standardabweichung der Impulshaltigkeit s +Metadata: + +=== Element 923 === +Category: Title +Text: Ton- und Informationshaltigkeit Kr +Metadata: + +=== Element 924 === +Category: Image +Text: +Metadata: + +=== Element 925 === +Category: Header +Text: Anhänge +Metadata: + +=== Element 926 === +Category: Header +Text: XVII +Metadata: + +=== Element 927 === +Category: Title +Text: Emissionsdatenblatt +Metadata: + +=== Element 928 === +Category: Title +Text: Emissionsdatenblatt +Metadata: + +=== Element 929 === +Category: Title +Text: Nr.6 +Metadata: + +=== Element 930 === +Category: Title +Text: Gabelhubwagen Beladevorgang über innenliegenden +Metadata: + +=== Element 931 === +Category: Title +Text: Vorgang +Metadata: + +=== Element 932 === +Category: Title +Text: hydraulischen Überladebrücke mit Klapplippe (Stahl +Metadata: + +=== Element 933 === +Category: Title +Text: geriffelte Oberfläche), Planen-Torrandabdichtung +Metadata: + +=== Element 934 === +Category: Title +Text: Anhänger-Typ +Metadata: + +=== Element 935 === +Category: Title +Text: Koffer +Metadata: + +=== Element 936 === +Category: Title +Text: Zustand des Flurfördergeräts Gebraucht +Metadata: + +=== Element 937 === +Category: Title +Text: Mess- und Beurteilungsparameter +Metadata: + +=== Element 938 === +Category: Title +Text: Dauer des Vorgangs +Metadata: + +=== Element 939 === +Category: Title +Text: Impulshaltigkeit Kı +Metadata: + +=== Element 940 === +Category: Title +Text: Standardabweichung der Impulshaltigkeit s +Metadata: + +=== Element 941 === +Category: Title +Text: Ton- und Informationshaltigkeit Kr +Metadata: + +=== Element 942 === +Category: Image +Text: +Metadata: + +=== Element 943 === +Category: Header +Text: Anhänge +Metadata: + +=== Element 944 === +Category: Header +Text: XVIII +Metadata: + +=== Element 945 === +Category: Title +Text: Emissionsdatenblatt +Metadata: + +=== Element 946 === +Category: Title +Text: Emissionsdatenblatt +Metadata: + +=== Element 947 === +Category: Title +Text: Nr.7 +Metadata: + +=== Element 948 === +Category: Title +Text: Gabelstapler Beladevorgang über innenliegenden +Metadata: + +=== Element 949 === +Category: Title +Text: Vorgang +Metadata: + +=== Element 950 === +Category: Title +Text: hydraulischen Überladebrücke mit Klapplippe (Stahl +Metadata: + +=== Element 951 === +Category: Title +Text: geriffelte Oberfläche), Planen-Torrandabdichtung +Metadata: + +=== Element 952 === +Category: Title +Text: Anhänger-Typ +Metadata: + +=== Element 953 === +Category: Title +Text: Anhänger-Typ +Metadata: + +=== Element 954 === +Category: Title +Text: Wechselbrücke +Metadata: + +=== Element 955 === +Category: Title +Text: Zustand des Flurfördergeräts Gebraucht +Metadata: + +=== Element 956 === +Category: Title +Text: Mess- und Beurteilungsparameter +Metadata: + +=== Element 957 === +Category: Title +Text: Dauer des Vorgangs +Metadata: + +=== Element 958 === +Category: UncategorizedText +Text: ca. 15 +Metadata: + +=== Element 959 === +Category: UncategorizedText +Text: [s] +Metadata: + +=== Element 960 === +Category: Title +Text: Impulshaltigkeit KI +Metadata: + +=== Element 961 === +Category: UncategorizedText +Text: 5,0 +Metadata: + +=== Element 962 === +Category: UncategorizedText +Text: [dB(A)] +Metadata: + +=== Element 963 === +Category: Title +Text: Standardabweichung der Impulshaltigkeit s +Metadata: + +=== Element 964 === +Category: UncategorizedText +Text: 2,1 +Metadata: + +=== Element 965 === +Category: UncategorizedText +Text: [dB(A)] +Metadata: + +=== Element 966 === +Category: Title +Text: Ton- und Informationshaltigkeit Kr +Metadata: + +=== Element 967 === +Category: Image +Text: +Metadata: + +=== Element 968 === +Category: Header +Text: Anhänge +Metadata: + +=== Element 969 === +Category: Title +Text: Anhang 2: Lagepläne +Metadata: + +=== Element 970 === +Category: FigureCaption +Text: Lageplan Allgemein +Metadata: + +=== Element 971 === +Category: Image +Text: Zeichenerklärung EI +aıe U] Anhänger © Messpunkt +Metadata: + +=== Element 972 === +Category: FigureCaption +Text: Lageplan Validierung: 27.04.2023 +Metadata: + +=== Element 973 === +Category: Image +Text: Zeichenerklärung EI »ale U) Anhänger TI] stachenscranaueite © Messpunkt +Metadata: + +=== Element 974 === +Category: Header +Text: XIX +Metadata: + +=== Element 975 === +Category: Header +Text: Anhänge +Metadata: + +=== Element 976 === +Category: FigureCaption +Text: Lageplan Validierung: 03.05.2023 +Metadata: + +=== Element 977 === +Category: Image +Text: Zeichenerklärung EEE +are U] Anhänger II rtschenschatiaveite, ® Messpunkt. +Metadata: + +=== Element 978 === +Category: FigureCaption +Text: Lageplan Richtcharakteristik: 27.04.2023 +Metadata: + +=== Element 979 === +Category: Image +Text: [U wo IN w) N N Zeichenerklärung EI »ale U] ‚Anhänger II] Ftachenschattauelte ® Messpunkt +Metadata: + +=== Element 980 === +Category: Title +Text: XX +Metadata: + +=== Element 981 === +Category: Header +Text: Anhänge +Metadata: + +=== Element 982 === +Category: FigureCaption +Text: Lageplan Richtcharakteristik: 03.05.2023 +Metadata: + +=== Element 983 === +Category: Image +Text: Zeichenerklärung EI +aıe U) Anhänger [MIT] Ftächenschaitauelte © Messpunkt +Metadata: + +=== Element 984 === +Category: Title +Text: XXI +Metadata: + +=== Element 985 === +Category: Header +Text: Anhänge +Metadata: + +=== Element 986 === +Category: Title +Text: Anhang 3: Messprotokolle +Metadata: + +=== Element 987 === +Category: Table +Text: Bearbeiterin: Messgehilfe: Messzeit: Wetterbedingungen: Bedeckungsgrad/Wetter: Windrichtung/-geschwindigkeit: Temperatur/ Luftdruck Messgerät: Mikrofonhöhe: Bearbeiterin: Messgehilfe: Messzeit: Wetterbedingungen: Bedeckungsgrad/Wetter: Windrichtung/-geschwindigkeit: Temperatur/ Luftdruck Messgerät: Mikrofonhöhe: Bearbeiterin: Messgehilfe: Messzeit: Wetterbedingungen: Bedeckungsgrad/Wetter: Selin Karagöz Datum: 17.04.2023 Tobias Gassner 13:24:19 bis 14:14:35 [hh:mm:ss] Bewölkt, leichter regen N-NW/ 13 km/h 8,4 °C/ 1021,5 hPa Norsonic-Tippkemper GmbH Typ 140, geeicht 140-1 (ortsfest) Norsonic-Tippkemper GmbH Typ 140, geeicht 140-3 (variabel) Jeweils 3,5 m Selin Karagöz Datum: 24.04.2023 Sebastian Gerner ENTFÄLLT Bewölkt SW/ 15,1 km/h 10 °C/ 1009,4 hPa Norsonic-Tippkemper GmbH Typ 140, geeicht 140-1 (ortsfest) Norsonic-Tippkemper GmbH Typ 140, geeicht 140-3 (variabel) Jeweils 3,5 m Selin Karagöz Datum: 27.04.2023 Lena Roberts 14:07:26 bis 14:50:17 [hh:mm:ss] Sonnig +Metadata: + +=== Element 988 === +Category: Title +Text: Windrichtung/-geschwindigkeit: +Metadata: + +=== Element 989 === +Category: Title +Text: NW-N-O/ 4,6 km/h +Metadata: + +=== Element 990 === +Category: Title +Text: Temperatur/ Luftdruck +Metadata: + +=== Element 991 === +Category: UncategorizedText +Text: 11,1 °C/ 1017,6 hPa +Metadata: + +=== Element 992 === +Category: Title +Text: Norsonic-Tippkemper GmbH Typ 140, geeicht 140-2 (ortsfest) +Metadata: + +=== Element 993 === +Category: Title +Text: Messgerät: +Metadata: + +=== Element 994 === +Category: Title +Text: Norsonic-Tippkemper GmbH Typ 140, geeicht 140-2 (variabel) +Metadata: + +=== Element 995 === +Category: Header +Text: XXII +Metadata: + +=== Element 996 === +Category: Header +Text: Anhänge +Metadata: + +=== Element 997 === +Category: Table +Text: Mikrofonhöhe: Bearbeiterin: Messgehilfe: Messzeit: Wetterbedingungen: Bedeckungsgrad/Wetter: Windrichtung/-geschwindigkeit: Temperatur/ Luftdruck Messgerät: Mikrofonhöhe: Jeweils 2,5 m Selin Karagöz Datum: 03.05.2023 Christian Reutter 13:45:40 bis 15:51:10 [hh:mm:ss] Sonnig N-NO/ 10,1 km/h 12,2 °C/ 1024,1 hPa Norsonic-Tippkemper GmbH Typ 140, geeicht 140-3 (ortsfest) Norsonic-Tippkemper GmbH Typ 140, geeicht 140-2 (variabel) Jeweils 3,5 m +Metadata: + +=== Element 998 === +Category: Header +Text: XXIII +Metadata: + +=== Element 999 === +Category: Header +Text: Anhänge +Metadata: + +=== Element 1000 === +Category: Title +Text: Anhang 4: Messergebnisse der Beladevorgänge +Metadata: + +=== Element 1001 === +Category: NarrativeText +Text: Mit: Q1: Gabelstapler; Q2: Gabelhubwagen; 1-Q1,2: Reinfahrt mit Flurfördergerät Q 1,2; 2-Q1,2: Raus- +Metadata: + +=== Element 1002 === +Category: NarrativeText +Text: fahrt mit Flurfördergerät Q 1,2; Q1,2-innen: Flurfördergerät Q1,2 im Anhänger +Metadata: + +=== Element 1003 === +Category: FigureCaption +Text: Verladevorgänge Gabelstapler: +Metadata: + +=== Element 1004 === +Category: Table +Text: Vorgang Lkw- Typ Zone Datum Uhrzeit Start - Ende T [s] Laeq [dB(A)] LAFmax LAFTeq [dB(A)] [dB(A)] KI [dB(A)] r [m] LWA,5s [dB(A)] LWAmax [dB(A)] 1-Q1 Koffer H 17.04.2023 13:59:32,000 - 17.04.2023 13:59:37,000 5,0 63,9 73,7 73,7 9,8 39,6 103,8 113,6 1-Q1 Plane C 17.04.2023 14:18:20,000 - 17.04.2023 14:18:25,000 5,0 62,7 71,4 71,4 8,7 37,5 102,2 110,9 1-Q1 Plane C 17.04.2023 14:21:46,000 - 17.04.2023 14:21:51,000 5,0 71,8 82,3 82,3 10,5 37,5 111,3 121,8 1-Q1 Plane C 17.04.2023 14:22:49,000 - 17.04.2023 14:22:54,000 5,0 64,9 74,5 74,5 9,6 37,5 104,4 114,0 1-Q1 Plane C 17.04.2023 14:23:25,000 - 17.04.2023 14:23:30,000 5,0 69,9 81,6 81,6 11,7 37,5 109,4 121,1 1-Q1 Plane C 17.04.2023 14:24:09,000 - 17.04.2023 14:24:14,000 5,0 59,1 69,3 69,3 10,2 37,5 98,6 108,8 1-Q1 Plane C 17.04.2023 14:25:18,000 - 17.04.2023 14:25:23,000 5,0 64,2 74,3 74,3 10,1 37,5 103,7 113,8 1-Q1 Plane C 17.04.2023 14:30:21,000 - 17.04.2023 14:30:26,000 5,0 63,5 74,2 74,2 10,7 37,5 103,0 113,7 1-Q1 Plane C 17.04.2023 14:30:48,000 - 17.04.2023 14:30:53,000 5,0 60,4 67,2 67,2 6,8 37,5 99,9 106,7 1-Q1 Plane C 17.04.2023 14:31:24,000 - 17.04.2023 14:31:29,000 5,0 58,6 66,1 66,1 7,5 37,5 98,1 105,6 1-Q1 Plane C 17.04.2023 14:32:19,000 - 17.04.2023 14:32:24,000 5,0 68,6 78,0 78,0 9,4 37,5 108,1 117,5 2-Q1 Plane C 17.04.2023 13:59:37,000 - 17.04.2023 13:59:42,000 5,0 55,2 59,7 59,7 4,5 37,5 94,7 99,2 2-Q1 Plane C 17.04.2023 14:18:38,000 - 17.04.2023 14:18:43,000 5,0 59,3 61,9 61,9 2,6 37,5 98,8 101,4 2-Q1 Plane C 17.04.2023 14:23:04,000 - 17.04.2023 14:23:09,000 5,0 62,6 70,7 70,7 8,1 37,5 102,1 110,2 2-Q1 Plane C 17.04.2023 14:23:41,000 - 17.04.2023 14:23:46,000 5,0 65,2 74,4 74,4 9,2 37,5 104,7 113,9 2-Q1 Plane C 17.04.2023 14:24:46,000 - 17.04.2023 14:24:51,000 5,0 65,4 72,2 72,2 6,8 37,5 104,9 111,7 2-Q1 Plane C 17.04.2023 14:26:35,000 - 17.04.2023 14:26:40,000 5,0 58,4 62,6 62,6 4,2 37,5 97,9 102,1 2-Q1 Plane C 17.04.2023 14:28:34,000 - 17.04.2023 14:28:39,000 5,0 66,1 73,9 73,9 7,8 37,5 105,6 113,4 2-Q1 Plane C 17.04.2023 14:30:34,000 - 17.04.2023 14:30:39,000 5,0 68,1 77,7 77,7 9,6 37,5 107,6 117,2 2-Q1 Plane C 17.04.2023 14:31:04,000 - 17.04.2023 14:31:09,000 5,0 62,6 69,4 69,4 6,8 37,5 102,1 108,9 2-Q1 Plane C 17.04.2023 14:31:44,000 - 17.04.2023 14:31:49,000 5,0 67,6 74,1 74,1 6,5 37,5 107,1 113,6 2-Q1 Plane C 17.04.2023 14:32:50,000 - 17.04.2023 14:32:55,000 5,0 61,3 66,5 66,5 5,2 37,5 100,8 106,0 LWA,1h [dB(A)] 75,3 73,6 82,7 75,8 80,8 70,0 75,1 74,4 71,3 69,5 79,5 66,1 70,2 73,5 76,1 76,3 69,3 77,0 79,0 73,5 78,5 72,2 +Metadata: + +=== Element 1005 === +Category: Title +Text: Q1-innen +Metadata: + +=== Element 1006 === +Category: UncategorizedText +Text: | +Metadata: + +=== Element 1007 === +Category: Title +Text: Plane +Metadata: + +=== Element 1008 === +Category: UncategorizedText +Text: | +Metadata: + +=== Element 1009 === +Category: Title +Text: C +Metadata: + +=== Element 1010 === +Category: UncategorizedText +Text: 17.04.2023 14:18:25,000 - +Metadata: + +=== Element 1011 === +Category: UncategorizedText +Text: 17.04.2023 +Metadata: + +=== Element 1012 === +Category: UncategorizedText +Text: 17.04.2023 14:18:30,000 +Metadata: + +=== Element 1013 === +Category: UncategorizedText +Text: 5,0 +Metadata: + +=== Element 1014 === +Category: UncategorizedText +Text: | +Metadata: + +=== Element 1015 === +Category: UncategorizedText +Text: 59,5 +Metadata: + +=== Element 1016 === +Category: UncategorizedText +Text: 63,4 +Metadata: + +=== Element 1017 === +Category: UncategorizedText +Text: 63,4 +Metadata: + +=== Element 1018 === +Category: UncategorizedText +Text: 3,9 +Metadata: + +=== Element 1019 === +Category: UncategorizedText +Text: 37,5 +Metadata: + +=== Element 1020 === +Category: UncategorizedText +Text: | +Metadata: + +=== Element 1021 === +Category: UncategorizedText +Text: 99,0 +Metadata: + +=== Element 1022 === +Category: UncategorizedText +Text: 102,9 +Metadata: + +=== Element 1023 === +Category: Header +Text: XXIV +Metadata: + +=== Element 1024 === +Category: UncategorizedText +Text: 70,4 +Metadata: + +=== Element 1025 === +Category: Header +Text: Anhänge +Metadata: + +=== Element 1026 === +Category: Table +Text: Vorgang Q1-innen Q1-innen Q1-innen Q1-innen Q1-innen Q1-innen Q1-innen Q1-innen Q1-innen Q1-innen Q1-innen Q1-innen Q1-innen Q1-innen 1-Q1 1-Q1 1-Q1 1-Q1 1-Q1 1-Q1 1-Q1 1-Q1 Lkw- Typ Plane Plane Plane Plane Plane Plane Plane Plane Plane Plane Plane Plane Plane Plane WB Koffer Koffer Koffer Koffer Koffer Koffer Koffer Zone Datum Uhrzeit Start - Ende C 17.04.2023 14:22:54,000 - 17.04.2023 14:22:59,000 C 17.04.2023 14:23:31,000 - 17.04.2023 14:23:36,000 C 17.04.2023 14:23:36,000 - 17.04.2023 14:23:41,000 C 17.04.2023 14:24:14,000 - 17.04.2023 14:24:19,000 C 17.04.2023 14:24:33,000 - 17.04.2023 14:24:38,000 C 17.04.2023 14:25:23,000 - 17.04.2023 14:25:28,000 C 17.04.2023 14:26:29,000 - 17.04.2023 14:26:34,000 C 17.04.2023 14:28:27,000 - 17.04.2023 14:28:32,000 C 17.04.2023 14:30:26,000 - 17.04.2023 14:30:31,000 C 17.04.2023 14:30:53,000 - 17.04.2023 14:30:58,000 C 17.04.2023 14:30:58,000 - 17.04.2023 14:31:03,000 C 17.04.2023 14:31:29,000 - 17.04.2023 14:31:34,000 C 17.04.2023 14:32:24,000 - 17.04.2023 14:32:29,000 C 17.04.2023 14:32:32,000 - 17.04.2023 14:32:37,000 E 26.04.2023 13:56:38,000 - 26.04.2023 13:56:43,000 C 26.04.2023 14:15:52,000 - 26.04.2023 14:15:57,000 B 26.04.2023 14:20:41,000 - 26.04.2023 14:20:46,000 B 26.04.2023 14:24:59,000 - 26.04.2023 14:25:04,000 B 26.04.2023 14:28:07,000 - 26.04.2023 14:28:12,000 B 26.04.2023 14:28:37,000 - 26.04.2023 14:28:42,000 B 26.04.2023 14:30:15,000 - 26.04.2023 14:30:20,000 B 26.04.2023 14:31:35,000 - 26.04.2023 14:31:40,000 26.04.2023 14:32:07,000 - T [s] 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 Laeq [dB(A)] 59,8 57,5 60,4 53,3 54,4 56,7 57,0 54,7 55,2 59,7 54,5 53,3 62,4 60,8 61,0 53,5 52,5 68,8 62,0 57,9 63,0 55,5 LAFmax LAFTeq [dB(A)] [dB(A)] 70,2 70,2 64,8 64,8 72,3 72,3 58,6 58,6 58,2 58,2 61,6 61,6 60,2 60,2 57,1 57,1 60,2 60,2 68,9 68,9 56,4 56,4 56,6 56,6 69,7 69,7 63,3 63,3 67,6 67,6 56,1 56,1 55,6 55,6 81,3 81,3 73,7 73,7 65,2 65,2 74,3 74,3 64,2 64,2 KI [dB(A)] 10,4 7,3 11,9 5,3 3,8 4,9 3,2 2,4 5,0 9,2 1,9 3,3 7,3 2,5 6,6 2,6 3,1 12,5 11,7 7,3 11,3 8,7 r [m] 37,5 37,5 37,5 37,5 37,5 37,5 37,5 37,5 37,5 37,5 37,5 37,5 37,5 37,5 37,4 38,0 38,0 38,0 38,0 38,0 38,0 38,0 LWA,5s [dB(A)] 99,3 97,0 99,9 92,8 93,9 96,2 96,5 94,2 94,7 99,2 94,0 92,8 101,9 100,3 100,4 93,1 92,1 108,4 101,6 97,5 102,6 95,1 LWAmax [dB(A)] 109,7 104,3 111,8 98,1 97,7 101,1 99,7 96,6 99,7 108,4 95,9 96,1 109,2 102,8 107,0 95,7 95,2 120,9 113,3 104,8 113,9 103,8 LWA,1h [dB(A)] 70,7 68,4 71,3 64,2 65,3 67,6 67,9 65,6 66,1 70,6 65,4 64,2 73,3 71,7 71,9 64,5 63,5 79,8 73,0 68,9 74,0 66,5 +Metadata: + +=== Element 1027 === +Category: UncategorizedText +Text: 1-Q1 +Metadata: + +=== Element 1028 === +Category: Title +Text: Koffer +Metadata: + +=== Element 1029 === +Category: Title +Text: B +Metadata: + +=== Element 1030 === +Category: UncategorizedText +Text: 26.04.2023 14:32:12,000 +Metadata: + +=== Element 1031 === +Category: UncategorizedText +Text: 5,0 +Metadata: + +=== Element 1032 === +Category: UncategorizedText +Text: 55,1 +Metadata: + +=== Element 1033 === +Category: UncategorizedText +Text: 60,7 +Metadata: + +=== Element 1034 === +Category: UncategorizedText +Text: 60,7 +Metadata: + +=== Element 1035 === +Category: UncategorizedText +Text: 5,6 +Metadata: + +=== Element 1036 === +Category: UncategorizedText +Text: 38,0 +Metadata: + +=== Element 1037 === +Category: UncategorizedText +Text: 94,7 +Metadata: + +=== Element 1038 === +Category: UncategorizedText +Text: 100,3 +Metadata: + +=== Element 1039 === +Category: UncategorizedText +Text: 1-Q1 +Metadata: + +=== Element 1040 === +Category: UncategorizedText +Text: | +Metadata: + +=== Element 1041 === +Category: Title +Text: Koffer +Metadata: + +=== Element 1042 === +Category: Title +Text: B +Metadata: + +=== Element 1043 === +Category: UncategorizedText +Text: 2023 14:33:34.000 +Metadata: + +=== Element 1044 === +Category: UncategorizedText +Text: 26.04.2023 14:33:28,000 - +Metadata: + +=== Element 1045 === +Category: UncategorizedText +Text: 26.04.2023 14:33:33,000 +Metadata: + +=== Element 1046 === +Category: UncategorizedText +Text: 5,0 +Metadata: + +=== Element 1047 === +Category: UncategorizedText +Text: 53,9 +Metadata: + +=== Element 1048 === +Category: UncategorizedText +Text: 59,8 +Metadata: + +=== Element 1049 === +Category: UncategorizedText +Text: 59,8 +Metadata: + +=== Element 1050 === +Category: UncategorizedText +Text: 5,9 +Metadata: + +=== Element 1051 === +Category: UncategorizedText +Text: 38,0 +Metadata: + +=== Element 1052 === +Category: UncategorizedText +Text: 93,5 +Metadata: + +=== Element 1053 === +Category: UncategorizedText +Text: 99,4 +Metadata: + +=== Element 1054 === +Category: UncategorizedText +Text: 1-Q1 +Metadata: + +=== Element 1055 === +Category: UncategorizedText +Text: | +Metadata: + +=== Element 1056 === +Category: Title +Text: Koffer +Metadata: + +=== Element 1057 === +Category: Title +Text: B +Metadata: + +=== Element 1058 === +Category: UncategorizedText +Text: 26.04.2023 14:34:23,000 - +Metadata: + +=== Element 1059 === +Category: UncategorizedText +Text: 2000 +Metadata: + +=== Element 1060 === +Category: UncategorizedText +Text: 26.04.2023 14:34:28,000 +Metadata: + +=== Element 1061 === +Category: UncategorizedText +Text: 5,0 +Metadata: + +=== Element 1062 === +Category: UncategorizedText +Text: 59,5 +Metadata: + +=== Element 1063 === +Category: UncategorizedText +Text: 63,7 +Metadata: + +=== Element 1064 === +Category: UncategorizedText +Text: 63,7 +Metadata: + +=== Element 1065 === +Category: UncategorizedText +Text: 4,2 +Metadata: + +=== Element 1066 === +Category: UncategorizedText +Text: 38,0 +Metadata: + +=== Element 1067 === +Category: UncategorizedText +Text: 99,1 +Metadata: + +=== Element 1068 === +Category: UncategorizedText +Text: 103,3 +Metadata: + +=== Element 1069 === +Category: UncategorizedText +Text: 1-Q1 +Metadata: + +=== Element 1070 === +Category: UncategorizedText +Text: | +Metadata: + +=== Element 1071 === +Category: Title +Text: Koffer +Metadata: + +=== Element 1072 === +Category: Title +Text: B +Metadata: + +=== Element 1073 === +Category: UncategorizedText +Text: 2023 14:35:23.000 +Metadata: + +=== Element 1074 === +Category: UncategorizedText +Text: 26.04.2023 14:35:18,000 - +Metadata: + +=== Element 1075 === +Category: UncategorizedText +Text: 26.04.2023 14:35:23,000 +Metadata: + +=== Element 1076 === +Category: UncategorizedText +Text: 5,0 +Metadata: + +=== Element 1077 === +Category: UncategorizedText +Text: 60,8 +Metadata: + +=== Element 1078 === +Category: UncategorizedText +Text: 66,8 +Metadata: + +=== Element 1079 === +Category: UncategorizedText +Text: 66,8 +Metadata: + +=== Element 1080 === +Category: UncategorizedText +Text: 6,0 +Metadata: + +=== Element 1081 === +Category: UncategorizedText +Text: 38,0 +Metadata: + +=== Element 1082 === +Category: UncategorizedText +Text: 100,4 +Metadata: + +=== Element 1083 === +Category: UncategorizedText +Text: | +Metadata: + +=== Element 1084 === +Category: UncategorizedText +Text: 106,4 +Metadata: + +=== Element 1085 === +Category: UncategorizedText +Text: 1-Q1 +Metadata: + +=== Element 1086 === +Category: UncategorizedText +Text: | +Metadata: + +=== Element 1087 === +Category: Title +Text: Koffer +Metadata: + +=== Element 1088 === +Category: Title +Text: F +Metadata: + +=== Element 1089 === +Category: UncategorizedText +Text: 26.04.2023 14:36:10,000 - +Metadata: + +=== Element 1090 === +Category: UncategorizedText +Text: 26.04.2023 14:36:15,000 +Metadata: + +=== Element 1091 === +Category: UncategorizedText +Text: 5,0 +Metadata: + +=== Element 1092 === +Category: UncategorizedText +Text: | +Metadata: + +=== Element 1093 === +Category: UncategorizedText +Text: 61,5 +Metadata: + +=== Element 1094 === +Category: UncategorizedText +Text: 66,2 +Metadata: + +=== Element 1095 === +Category: UncategorizedText +Text: 66,2 +Metadata: + +=== Element 1096 === +Category: UncategorizedText +Text: 4,7 +Metadata: + +=== Element 1097 === +Category: UncategorizedText +Text: 37,9 +Metadata: + +=== Element 1098 === +Category: UncategorizedText +Text: 101,0 +Metadata: + +=== Element 1099 === +Category: UncategorizedText +Text: | +Metadata: + +=== Element 1100 === +Category: UncategorizedText +Text: 105,7 +Metadata: + +=== Element 1101 === +Category: Header +Text: XXV +Metadata: + +=== Element 1102 === +Category: UncategorizedText +Text: 66,1 +Metadata: + +=== Element 1103 === +Category: UncategorizedText +Text: 64,9 +Metadata: + +=== Element 1104 === +Category: UncategorizedText +Text: 70,5 +Metadata: + +=== Element 1105 === +Category: UncategorizedText +Text: 71,8 +Metadata: + +=== Element 1106 === +Category: UncategorizedText +Text: 72,5 +Metadata: + +=== Element 1107 === +Category: Header +Text: Anhänge +Metadata: + +=== Element 1108 === +Category: Table +Text: Vorgang 1-Q1 1-Q1 1-Q1 1-Q1 2-Q1 2-Q1 2-Q1 2-Q1 2-Q1 2-Q1 2-Q1 2-Q1 2-Q1 2-Q1 2-Q1 2-Q1 2-Q1 2-Q1 2-Q1 2-Q1 2-Q1 2-Q1 Lkw- Typ Koffer Koffer Koffer Koffer WB Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Zone Datum Uhrzeit Start - Ende B 26.04.2023 14:37:51,000 - 26.04.2023 14:37:56,000 B 26.04.2023 14:41:18,000 - 26.04.2023 14:41:23,000 B 26.04.2023 14:52:56,000 - 26.04.2023 14:53:01,000 B 26.04.2023 14:55:18,000 - 26.04.2023 14:55:23,000 E 26.04.2023 13:56:53,000 - 26.04.2023 13:56:58,000 C 26.04.2023 14:15:07,000 - 26.04.2023 14:15:12,000 B 26.04.2023 14:20:51,000 - 26.04.2023 14:20:56,000 B 26.04.2023 14:25:14,000 - 26.04.2023 14:25:19,000 B 26.04.2023 14:28:20,000 - 26.04.2023 14:28:25,000 B 26.04.2023 14:28:48,000 - 26.04.2023 14:28:53,000 B 26.04.2023 14:29:15,000 - 26.04.2023 14:29:20,000 B 26.04.2023 14:31:53,000 - 26.04.2023 14:31:58,000 B 26.04.2023 14:32:18,000 - 26.04.2023 14:32:23,000 B 26.04.2023 14:33:40,000 - 26.04.2023 14:33:45,000 B 26.04.2023 14:34:46,000 - 26.04.2023 14:34:51,000 B 26.04.2023 14:35:34,000 - 26.04.2023 14:35:39,000 B 26.04.2023 14:37:33,000 - 26.04.2023 14:37:38,000 F 26.04.2023 14:38:01,000 - 26.04.2023 14:38:06,000 F 26.04.2023 14:38:39,000 - 26.04.2023 14:38:44,000 B 26.04.2023 14:39:48,000 - 26.04.2023 14:39:53,000 B 26.04.2023 14:40:59,000 - 26.04.2023 14:41:04,000 B 26.04.2023 14:41:30,000 - 26.04.2023 14:41:35,000 26.04.2023 14:48:05,000 - T [s] 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 Laeq [dB(A)] 62,1 56,2 54,8 57,6 65,9 63,1 54,7 62,9 61,9 62,8 62,8 62,5 63,8 60,4 61,6 59,5 67,1 62,8 58,0 64,2 58,8 59,4 LAFmax LAFTeq [dB(A)] [dB(A)] 67,2 67,2 60,1 60,1 64,7 64,7 61,2 61,2 74,6 74,6 69,2 69,2 64,1 64,1 72,8 72,8 70,7 70,7 69,6 69,6 72,1 72,1 72,9 72,9 74,0 74,0 70,0 70,0 67,8 67,8 62,5 62,5 69,7 69,7 69,4 69,4 64,0 64,0 69,7 69,7 66,3 66,3 67,3 67,3 KI [dB(A)] 5,1 3,9 9,9 3,6 8,7 6,1 9,4 9,9 8,8 6,8 9,3 10,4 10,2 9,6 6,2 3,0 2,6 6,6 6,0 5,5 7,5 7,9 r [m] 38,0 38,0 38,0 38,0 37,4 37,5 38,0 38,0 38,0 38,0 38,0 38,0 38,0 38,0 38,0 38,0 38,0 37,9 37,9 38,0 38,0 38,0 LWA,5s [dB(A)] 101,7 95,8 94,4 97,2 105,3 102,6 94,3 102,5 101,5 102,4 102,4 102,1 103,4 100,0 101,2 99,1 106,7 102,3 97,6 103,8 98,4 99,0 LWAmax [dB(A)] 106,8 99,7 104,3 100,8 114,0 108,7 103,7 112,4 110,3 109,2 111,7 112,5 113,6 109,6 107,4 102,1 109,3 108,9 103,6 109,3 105,9 106,9 LWA,1h [dB(A)] 73,1 67,2 65,8 68,6 76,8 74,0 65,7 73,9 72,9 73,8 73,8 73,5 74,8 71,4 72,6 70,5 78,1 73,8 69,0 75,2 69,8 70,4 +Metadata: + +=== Element 1109 === +Category: UncategorizedText +Text: 2-Q1 +Metadata: + +=== Element 1110 === +Category: Title +Text: Koffer +Metadata: + +=== Element 1111 === +Category: Title +Text: C +Metadata: + +=== Element 1112 === +Category: UncategorizedText +Text: 26.04.2023 14:48:10,000 +Metadata: + +=== Element 1113 === +Category: UncategorizedText +Text: 5,0 +Metadata: + +=== Element 1114 === +Category: UncategorizedText +Text: 56,7 +Metadata: + +=== Element 1115 === +Category: UncategorizedText +Text: 60,8 +Metadata: + +=== Element 1116 === +Category: UncategorizedText +Text: 60,8 +Metadata: + +=== Element 1117 === +Category: UncategorizedText +Text: 4,1 +Metadata: + +=== Element 1118 === +Category: UncategorizedText +Text: 37,5 +Metadata: + +=== Element 1119 === +Category: UncategorizedText +Text: 96,2 +Metadata: + +=== Element 1120 === +Category: UncategorizedText +Text: 100,3 +Metadata: + +=== Element 1121 === +Category: UncategorizedText +Text: 2-Q1 +Metadata: + +=== Element 1122 === +Category: Title +Text: WB +Metadata: + +=== Element 1123 === +Category: Title +Text: E +Metadata: + +=== Element 1124 === +Category: UncategorizedText +Text: 26.04.2023 14:49:12,000 - +Metadata: + +=== Element 1125 === +Category: UncategorizedText +Text: 7000 +Metadata: + +=== Element 1126 === +Category: UncategorizedText +Text: 26.04.2023 14:49:17,000 +Metadata: + +=== Element 1127 === +Category: UncategorizedText +Text: 5,0 +Metadata: + +=== Element 1128 === +Category: UncategorizedText +Text: 63,9 +Metadata: + +=== Element 1129 === +Category: UncategorizedText +Text: 74,8 +Metadata: + +=== Element 1130 === +Category: UncategorizedText +Text: 74,8 +Metadata: + +=== Element 1131 === +Category: UncategorizedText +Text: | +Metadata: + +=== Element 1132 === +Category: UncategorizedText +Text: 10,9 +Metadata: + +=== Element 1133 === +Category: UncategorizedText +Text: 37,4 +Metadata: + +=== Element 1134 === +Category: UncategorizedText +Text: 103,3 +Metadata: + +=== Element 1135 === +Category: UncategorizedText +Text: | +Metadata: + +=== Element 1136 === +Category: UncategorizedText +Text: 114,2 +Metadata: + +=== Element 1137 === +Category: UncategorizedText +Text: 2-Q1 +Metadata: + +=== Element 1138 === +Category: UncategorizedText +Text: 2-Q1 +Metadata: + +=== Element 1139 === +Category: UncategorizedText +Text: | +Metadata: + +=== Element 1140 === +Category: Title +Text: WB +Metadata: + +=== Element 1141 === +Category: Title +Text: Koffer +Metadata: + +=== Element 1142 === +Category: Title +Text: E +Metadata: + +=== Element 1143 === +Category: Title +Text: B +Metadata: + +=== Element 1144 === +Category: UncategorizedText +Text: 2023 14:52:43.000 2023 14:53:24.000 +Metadata: + +=== Element 1145 === +Category: UncategorizedText +Text: 26.04.2023 14:52:37,000 - +Metadata: + +=== Element 1146 === +Category: UncategorizedText +Text: 26.04.2023 14:52:42,000 +Metadata: + +=== Element 1147 === +Category: UncategorizedText +Text: 26.04.2023 14:53:19,000 - +Metadata: + +=== Element 1148 === +Category: UncategorizedText +Text: 26.04.2023 14:53:24,000 +Metadata: + +=== Element 1149 === +Category: UncategorizedText +Text: 5,0 +Metadata: + +=== Element 1150 === +Category: UncategorizedText +Text: 5,0 +Metadata: + +=== Element 1151 === +Category: UncategorizedText +Text: 54,2 +Metadata: + +=== Element 1152 === +Category: UncategorizedText +Text: 57,9 +Metadata: + +=== Element 1153 === +Category: UncategorizedText +Text: 62,0 +Metadata: + +=== Element 1154 === +Category: UncategorizedText +Text: 67,3 +Metadata: + +=== Element 1155 === +Category: UncategorizedText +Text: 62,0 +Metadata: + +=== Element 1156 === +Category: UncategorizedText +Text: 67,3 +Metadata: + +=== Element 1157 === +Category: UncategorizedText +Text: 7,8 +Metadata: + +=== Element 1158 === +Category: UncategorizedText +Text: 9,4 +Metadata: + +=== Element 1159 === +Category: UncategorizedText +Text: 37,4 +Metadata: + +=== Element 1160 === +Category: UncategorizedText +Text: 38,0 +Metadata: + +=== Element 1161 === +Category: UncategorizedText +Text: | +Metadata: + +=== Element 1162 === +Category: UncategorizedText +Text: 93,6 +Metadata: + +=== Element 1163 === +Category: UncategorizedText +Text: 97,5 +Metadata: + +=== Element 1164 === +Category: UncategorizedText +Text: 101,4 +Metadata: + +=== Element 1165 === +Category: UncategorizedText +Text: 106,9 +Metadata: + +=== Element 1166 === +Category: UncategorizedText +Text: 2-Q1 +Metadata: + +=== Element 1167 === +Category: UncategorizedText +Text: | +Metadata: + +=== Element 1168 === +Category: Title +Text: Koffer +Metadata: + +=== Element 1169 === +Category: Title +Text: B +Metadata: + +=== Element 1170 === +Category: UncategorizedText +Text: 26.04.2023 14:54:13,000 - +Metadata: + +=== Element 1171 === +Category: UncategorizedText +Text: 26.04.2023 14:54:18,000 +Metadata: + +=== Element 1172 === +Category: UncategorizedText +Text: 5,0 +Metadata: + +=== Element 1173 === +Category: UncategorizedText +Text: | +Metadata: + +=== Element 1174 === +Category: UncategorizedText +Text: 59,5 +Metadata: + +=== Element 1175 === +Category: UncategorizedText +Text: 67,4 +Metadata: + +=== Element 1176 === +Category: UncategorizedText +Text: 67,4 +Metadata: + +=== Element 1177 === +Category: UncategorizedText +Text: 7,9 +Metadata: + +=== Element 1178 === +Category: UncategorizedText +Text: 38,0 +Metadata: + +=== Element 1179 === +Category: UncategorizedText +Text: 99,1 +Metadata: + +=== Element 1180 === +Category: UncategorizedText +Text: 107,0 +Metadata: + +=== Element 1181 === +Category: Header +Text: XXVI +Metadata: + +=== Element 1182 === +Category: UncategorizedText +Text: 67,6 +Metadata: + +=== Element 1183 === +Category: UncategorizedText +Text: 74,8 +Metadata: + +=== Element 1184 === +Category: UncategorizedText +Text: 65,1 +Metadata: + +=== Element 1185 === +Category: UncategorizedText +Text: 68,9 +Metadata: + +=== Element 1186 === +Category: UncategorizedText +Text: 70,5 +Metadata: + +=== Element 1187 === +Category: Header +Text: Anhänge +Metadata: + +=== Element 1188 === +Category: Table +Text: Vorgang Lkw- Typ 2-Q1 Koffer 2-Q1 Koffer 2-Q1 Koffer Q1-innen WB Q1-innen Koffer Q1-innen Koffer Q1-innen Koffer Q1-innen Koffer Q1-innen Koffer Q1-innen Koffer Q1-innen Koffer Q1-innen Koffer Q1-innen Koffer Q1-innen Koffer Q1-innen Koffer Q1-innen Koffer Q1-innen Koffer Q1-innen Koffer Q1-innen Koffer Q1-innen Koffer 1-Q1 Koffer 1-Q1 Koffer Zone Datum Uhrzeit Start - Ende B 26.04.2023 14:54:51,000 - 26.04.2023 14:54:56,000 B 26.04.2023 14:55:45,000 - 26.04.2023 14:55:50,000 C 26.04.2023 15:03:10,000 - 26.04.2023 15:03:15,000 E 26.04.2023 13:56:43,000 - 26.04.2023 13:56:48,000 C 26.04.2023 14:15:02,000 - 26.04.2023 14:15:07,000 B 26.04.2023 14:15:57,000 - 26.04.2023 14:16:02,000 B 26.04.2023 14:20:46,000 - 26.04.2023 14:20:51,000 B 26.04.2023 14:25:04,000 - 26.04.2023 14:25:09,000 B 26.04.2023 14:28:15,000 - 26.04.2023 14:28:20,000 B 26.04.2023 14:28:42,000 - 26.04.2023 14:28:47,000 B 26.04.2023 14:29:10,000 - 26.04.2023 14:29:15,000 B 26.04.2023 14:31:40,000 - 26.04.2023 14:31:45,000 B 26.04.2023 14:32:12,000 - 26.04.2023 14:32:17,000 B 26.04.2023 14:35:23,000 - 26.04.2023 14:35:28,000 B 26.04.2023 14:37:56,000 - 26.04.2023 14:38:01,000 F 26.04.2023 14:41:25,000 - 26.04.2023 14:41:30,000 B 26.04.2023 14:53:01,000 - 26.04.2023 14:53:06,000 B 26.04.2023 14:53:06,000 - 26.04.2023 14:53:11,000 B 26.04.2023 14:54:45,000 - 26.04.2023 14:54:51,000 B 26.04.2023 14:55:23,000 - 26.04.2023 14:55:28,000 B 27.04.2023 14:08:34,000 - 27.04.2023 14:08:39,000 B 27.04.2023 14:10:07,000 - 27.04.2023 14:10:12,000 27.04.2023 14:12:10,000 - T [s] 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 Laeq [dB(A)] 58,3 61,4 52,2 60,4 66,8 61,4 50,9 54,5 53,4 55,3 56,7 51,9 52,5 64,3 60,7 56,1 57,6 53,8 56,1 57,5 52,1 53,1 LAFmax LAFTeq [dB(A)] [dB(A)] 64,2 64,2 71,0 71,0 55,5 55,5 67,1 67,1 74,5 74,5 66,8 66,8 54,7 54,7 57,8 57,8 62,9 62,9 60,2 60,2 59,2 59,2 55,3 55,3 56,9 56,9 77,4 77,4 63,8 63,8 60,1 60,1 67,2 67,2 64,0 64,0 57,8 57,8 59,8 59,8 55,1 55,1 57,7 57,7 KI [dB(A)] 5,9 9,6 3,3 6,7 7,7 5,4 3,8 3,3 9,5 4,9 2,5 3,4 4,4 13,1 3,1 4,0 9,6 10,2 1,7 2,3 3,0 4,6 r [m] 38,0 38,0 38,0 37,5 37,4 37,5 38,0 38,0 38,0 38,0 38,0 38,0 38,0 38,0 38,0 37,9 38,0 38,0 38,0 38,0 38,0 38,0 LWA,5s [dB(A)] 97,9 101,0 91,8 99,9 106,2 100,9 90,5 94,1 93,0 94,9 96,3 91,5 92,1 103,9 100,3 95,6 97,2 93,4 95,7 97,1 91,7 92,7 LWAmax [dB(A)] 103,8 110,6 95,1 106,6 113,9 106,3 94,3 97,4 102,5 99,8 98,8 94,9 96,5 117,0 103,4 99,6 106,8 103,6 97,4 99,4 94,7 97,3 LWA,1h [dB(A)] 69,3 72,4 63,2 71,3 77,7 72,3 61,9 65,5 64,4 66,3 67,7 62,9 63,5 75,3 71,7 67,1 68,6 64,8 67,1 68,5 63,1 64,1 +Metadata: + +=== Element 1189 === +Category: UncategorizedText +Text: 1-Q1 +Metadata: + +=== Element 1190 === +Category: Title +Text: Koffer +Metadata: + +=== Element 1191 === +Category: Title +Text: B +Metadata: + +=== Element 1192 === +Category: UncategorizedText +Text: 27.04.2023 14:12:15,000 +Metadata: + +=== Element 1193 === +Category: UncategorizedText +Text: 5,0 +Metadata: + +=== Element 1194 === +Category: UncategorizedText +Text: 56,2 +Metadata: + +=== Element 1195 === +Category: UncategorizedText +Text: 65,4 +Metadata: + +=== Element 1196 === +Category: UncategorizedText +Text: 65,4 +Metadata: + +=== Element 1197 === +Category: UncategorizedText +Text: 9,2 +Metadata: + +=== Element 1198 === +Category: UncategorizedText +Text: 38,0 +Metadata: + +=== Element 1199 === +Category: UncategorizedText +Text: 95,8 +Metadata: + +=== Element 1200 === +Category: UncategorizedText +Text: 105,0 +Metadata: + +=== Element 1201 === +Category: UncategorizedText +Text: 1-Q1 +Metadata: + +=== Element 1202 === +Category: UncategorizedText +Text: | +Metadata: + +=== Element 1203 === +Category: Title +Text: Koffer +Metadata: + +=== Element 1204 === +Category: Title +Text: C +Metadata: + +=== Element 1205 === +Category: UncategorizedText +Text: 27.04.2023 14:12:40,000 - +Metadata: + +=== Element 1206 === +Category: Title +Text: N a0. +Metadata: + +=== Element 1207 === +Category: UncategorizedText +Text: 27.04.2023 14:12:45,000 +Metadata: + +=== Element 1208 === +Category: UncategorizedText +Text: 5,0 +Metadata: + +=== Element 1209 === +Category: UncategorizedText +Text: 55,6 +Metadata: + +=== Element 1210 === +Category: UncategorizedText +Text: 60,1 +Metadata: + +=== Element 1211 === +Category: UncategorizedText +Text: 60,1 +Metadata: + +=== Element 1212 === +Category: UncategorizedText +Text: 4,5 +Metadata: + +=== Element 1213 === +Category: UncategorizedText +Text: 37,5 +Metadata: + +=== Element 1214 === +Category: UncategorizedText +Text: 95,1 +Metadata: + +=== Element 1215 === +Category: UncategorizedText +Text: 99,6 +Metadata: + +=== Element 1216 === +Category: UncategorizedText +Text: 1-Q1 +Metadata: + +=== Element 1217 === +Category: UncategorizedText +Text: 1-Q1 +Metadata: + +=== Element 1218 === +Category: UncategorizedText +Text: | +Metadata: + +=== Element 1219 === +Category: UncategorizedText +Text: | +Metadata: + +=== Element 1220 === +Category: Title +Text: Koffer +Metadata: + +=== Element 1221 === +Category: Title +Text: Koffer +Metadata: + +=== Element 1222 === +Category: Title +Text: B +Metadata: + +=== Element 1223 === +Category: Title +Text: B +Metadata: + +=== Element 1224 === +Category: UncategorizedText +Text: 2023 141612.000 2023 +Metadata: + +=== Element 1225 === +Category: UncategorizedText +Text: 27.04.2023 14:16:24,000 - +Metadata: + +=== Element 1226 === +Category: UncategorizedText +Text: 27.04.2023 14:16:29,000 +Metadata: + +=== Element 1227 === +Category: UncategorizedText +Text: 27.04.2023 14:17:11,000 - +Metadata: + +=== Element 1228 === +Category: UncategorizedText +Text: 000 +Metadata: + +=== Element 1229 === +Category: UncategorizedText +Text: 27.04.2023 14:17:16,000 +Metadata: + +=== Element 1230 === +Category: UncategorizedText +Text: 5,0 +Metadata: + +=== Element 1231 === +Category: UncategorizedText +Text: 5,0 +Metadata: + +=== Element 1232 === +Category: UncategorizedText +Text: 55,5 +Metadata: + +=== Element 1233 === +Category: UncategorizedText +Text: 59,6 +Metadata: + +=== Element 1234 === +Category: UncategorizedText +Text: 62,0 +Metadata: + +=== Element 1235 === +Category: UncategorizedText +Text: 70,6 +Metadata: + +=== Element 1236 === +Category: UncategorizedText +Text: 62,0 +Metadata: + +=== Element 1237 === +Category: UncategorizedText +Text: 70,6 +Metadata: + +=== Element 1238 === +Category: UncategorizedText +Text: | +Metadata: + +=== Element 1239 === +Category: UncategorizedText +Text: 6,5 +Metadata: + +=== Element 1240 === +Category: UncategorizedText +Text: 11,0 +Metadata: + +=== Element 1241 === +Category: UncategorizedText +Text: 38,0 +Metadata: + +=== Element 1242 === +Category: UncategorizedText +Text: 38,0 +Metadata: + +=== Element 1243 === +Category: UncategorizedText +Text: 95,1 +Metadata: + +=== Element 1244 === +Category: UncategorizedText +Text: 99,2 +Metadata: + +=== Element 1245 === +Category: UncategorizedText +Text: 101,6 +Metadata: + +=== Element 1246 === +Category: UncategorizedText +Text: 110,2 +Metadata: + +=== Element 1247 === +Category: UncategorizedText +Text: 1-Q1 +Metadata: + +=== Element 1248 === +Category: UncategorizedText +Text: | +Metadata: + +=== Element 1249 === +Category: Title +Text: Koffer +Metadata: + +=== Element 1250 === +Category: Title +Text: F +Metadata: + +=== Element 1251 === +Category: UncategorizedText +Text: 27.04.2023 14:26:21,000 - +Metadata: + +=== Element 1252 === +Category: UncategorizedText +Text: 27.04.2023 14:26:26,000 +Metadata: + +=== Element 1253 === +Category: UncategorizedText +Text: 5,0 +Metadata: + +=== Element 1254 === +Category: UncategorizedText +Text: | +Metadata: + +=== Element 1255 === +Category: UncategorizedText +Text: 58,6 +Metadata: + +=== Element 1256 === +Category: UncategorizedText +Text: 69,0 +Metadata: + +=== Element 1257 === +Category: UncategorizedText +Text: 69,0 +Metadata: + +=== Element 1258 === +Category: UncategorizedText +Text: 69,0 +Metadata: + +=== Element 1259 === +Category: UncategorizedText +Text: | +Metadata: + +=== Element 1260 === +Category: UncategorizedText +Text: 10,4 +Metadata: + +=== Element 1261 === +Category: UncategorizedText +Text: 37,9 +Metadata: + +=== Element 1262 === +Category: UncategorizedText +Text: 98,2 +Metadata: + +=== Element 1263 === +Category: UncategorizedText +Text: 108,6 +Metadata: + +=== Element 1264 === +Category: Header +Text: XXVII +Metadata: + +=== Element 1265 === +Category: UncategorizedText +Text: 67,2 +Metadata: + +=== Element 1266 === +Category: UncategorizedText +Text: 66,5 +Metadata: + +=== Element 1267 === +Category: UncategorizedText +Text: 66,5 +Metadata: + +=== Element 1268 === +Category: UncategorizedText +Text: 70,6 +Metadata: + +=== Element 1269 === +Category: UncategorizedText +Text: 69,6 +Metadata: + +=== Element 1270 === +Category: Header +Text: Anhänge +Metadata: + +=== Element 1271 === +Category: Table +Text: Vorgang 1-Q1 1-Q1 1-Q1 1-Q1 1-Q1 1-Q1 1-Q1 1-Q1 1-Q1 1-Q1 1-Q1 1-Q1 1-Q1 1-Q1 1-Q1 1-Q1 1-Q1 1-Q1 1-Q1 1-Q1 1-Q1 2-Q1 Lkw- Typ Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Zone Datum Uhrzeit Start - Ende F 27.04.2023 14:27:00,000 - 27.04.2023 14:27:05,000 F 27.04.2023 14:27:39,000 - 27.04.2023 14:27:44,000 C 27.04.2023 14:28:32,000 - 27.04.2023 14:28:37,000 B 27.04.2023 14:29:15,000 - 27.04.2023 14:29:20,000 B 27.04.2023 14:30:13,000 - 27.04.2023 14:30:18,000 F 27.04.2023 14:30:36,000 - 27.04.2023 14:30:41,000 F 27.04.2023 14:31:05,000 - 27.04.2023 14:31:10,000 B 27.04.2023 14:31:28,000 - 27.04.2023 14:31:33,000 F 27.04.2023 14:31:56,000 - 27.04.2023 14:32:01,000 B 27.04.2023 14:32:24,000 - 27.04.2023 14:32:29,000 B 27.04.2023 14:32:44,000 - 27.04.2023 14:32:49,000 F 27.04.2023 14:33:40,000 - 27.04.2023 14:33:45,000 B 27.04.2023 14:37:36,000 - 27.04.2023 14:37:41,000 B 27.04.2023 14:38:46,000 - 27.04.2023 14:38:51,000 F 27.04.2023 14:39:04,000 - 27.04.2023 14:39:09,000 F 27.04.2023 14:40:04,000 - 27.04.2023 14:40:09,000 F 27.04.2023 14:41:21,000 - 27.04.2023 14:41:26,000 F 27.04.2023 14:41:26,000 - 27.04.2023 14:41:32,000 B 27.04.2023 14:42:53,000 - 27.04.2023 14:42:58,000 F 27.04.2023 14:43:23,000 - 27.04.2023 14:43:28,000 F 27.04.2023 14:47:11,000 - 27.04.2023 14:47:16,000 B 27.04.2023 14:09:08,000 - 27.04.2023 14:09:13,000 27.04.2023 14:10:20,000 - T [s] 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 Laeq [dB(A)] 55,9 58,5 65,6 59,4 50,9 56,5 56,5 53,6 57,0 55,8 70,9 61,3 55,4 60,7 59,6 60,5 51,0 54,2 61,7 69,3 63,4 54,9 LAFmax LAFTeq [dB(A)] [dB(A)] 63,3 63,3 62,7 62,7 77,2 77,2 62,0 62,0 57,7 57,7 61,9 61,9 63,5 63,5 56,7 56,7 62,4 62,4 60,8 60,8 77,5 77,5 66,7 66,7 61,1 61,1 68,3 68,3 63,4 63,4 63,4 63,4 53,6 53,6 59,4 59,4 68,7 68,7 76,2 76,2 70,5 70,5 62,3 62,3 KI [dB(A)] 7,4 4,2 11,6 2,6 6,8 5,4 7,0 3,1 5,4 5,0 6,6 5,4 5,7 7,6 3,8 2,9 2,6 5,2 7,0 6,9 7,1 7,4 r [m] 37,9 37,9 37,5 38,0 38,0 37,9 37,9 38,0 37,9 38,0 38,0 37,9 38,0 38,0 37,9 37,9 37,9 37,9 38,0 37,9 37,9 38,0 LWA,5s [dB(A)] 95,5 98,1 105,1 99,0 90,5 96,1 96,1 93,2 96,6 95,4 110,5 100,9 95,0 100,3 99,2 100,1 90,6 93,8 101,3 108,9 103,0 94,5 LWAmax [dB(A)] 102,9 102,3 116,7 101,6 97,3 101,5 103,1 96,3 102,0 100,4 117,1 106,3 100,7 107,9 103,0 103,0 93,2 99,0 108,3 115,8 110,1 101,9 LWA,1h [dB(A)] 66,9 69,5 76,5 70,4 61,9 67,5 67,5 64,6 68,0 66,8 81,9 72,3 66,4 71,7 70,6 71,5 62,0 65,2 72,7 80,3 74,4 65,9 +Metadata: + +=== Element 1272 === +Category: UncategorizedText +Text: 2-Q1 +Metadata: + +=== Element 1273 === +Category: Title +Text: Koffer +Metadata: + +=== Element 1274 === +Category: Title +Text: B +Metadata: + +=== Element 1275 === +Category: UncategorizedText +Text: 27.04.2023 14:10:25,000 +Metadata: + +=== Element 1276 === +Category: UncategorizedText +Text: 5,0 +Metadata: + +=== Element 1277 === +Category: UncategorizedText +Text: 59,0 +Metadata: + +=== Element 1278 === +Category: UncategorizedText +Text: 65,7 +Metadata: + +=== Element 1279 === +Category: UncategorizedText +Text: 65,7 +Metadata: + +=== Element 1280 === +Category: UncategorizedText +Text: 6,7 +Metadata: + +=== Element 1281 === +Category: UncategorizedText +Text: 38,0 +Metadata: + +=== Element 1282 === +Category: UncategorizedText +Text: 98,6 +Metadata: + +=== Element 1283 === +Category: UncategorizedText +Text: 105,3 +Metadata: + +=== Element 1284 === +Category: UncategorizedText +Text: 2-Q1 +Metadata: + +=== Element 1285 === +Category: UncategorizedText +Text: | +Metadata: + +=== Element 1286 === +Category: Title +Text: Koffer +Metadata: + +=== Element 1287 === +Category: Title +Text: B +Metadata: + +=== Element 1288 === +Category: UncategorizedText +Text: 27.04.2023 14:12:31,000 - +Metadata: + +=== Element 1289 === +Category: Title +Text: N ao. +Metadata: + +=== Element 1290 === +Category: UncategorizedText +Text: 27.04.2023 14:12:36,000 +Metadata: + +=== Element 1291 === +Category: UncategorizedText +Text: 5,0 +Metadata: + +=== Element 1292 === +Category: UncategorizedText +Text: 56,3 +Metadata: + +=== Element 1293 === +Category: UncategorizedText +Text: 62,8 +Metadata: + +=== Element 1294 === +Category: UncategorizedText +Text: 62,8 +Metadata: + +=== Element 1295 === +Category: UncategorizedText +Text: 6,5 +Metadata: + +=== Element 1296 === +Category: UncategorizedText +Text: 38,0 +Metadata: + +=== Element 1297 === +Category: UncategorizedText +Text: 95,9 +Metadata: + +=== Element 1298 === +Category: UncategorizedText +Text: 102,4 +Metadata: + +=== Element 1299 === +Category: UncategorizedText +Text: 2-Q1 +Metadata: + +=== Element 1300 === +Category: UncategorizedText +Text: 2-Q1 +Metadata: + +=== Element 1301 === +Category: UncategorizedText +Text: | +Metadata: + +=== Element 1302 === +Category: UncategorizedText +Text: | +Metadata: + +=== Element 1303 === +Category: Title +Text: Koffer +Metadata: + +=== Element 1304 === +Category: Title +Text: Koffer +Metadata: + +=== Element 1305 === +Category: Title +Text: C +Metadata: + +=== Element 1306 === +Category: Title +Text: B +Metadata: + +=== Element 1307 === +Category: UncategorizedText +Text: 2023 1438.00 2023 +Metadata: + +=== Element 1308 === +Category: UncategorizedText +Text: 27.04.2023 14:13:13,000 - +Metadata: + +=== Element 1309 === +Category: UncategorizedText +Text: 27.04.2023 14:13:18,000 +Metadata: + +=== Element 1310 === +Category: UncategorizedText +Text: 27.04.2023 14:15:11,000 - +Metadata: + +=== Element 1311 === +Category: UncategorizedText +Text: 000 +Metadata: + +=== Element 1312 === +Category: UncategorizedText +Text: 27.04.2023 14:15:16,000 +Metadata: + +=== Element 1313 === +Category: UncategorizedText +Text: 5,0 +Metadata: + +=== Element 1314 === +Category: UncategorizedText +Text: 5,0 +Metadata: + +=== Element 1315 === +Category: UncategorizedText +Text: 64,0 +Metadata: + +=== Element 1316 === +Category: UncategorizedText +Text: 61,8 +Metadata: + +=== Element 1317 === +Category: UncategorizedText +Text: 74,4 +Metadata: + +=== Element 1318 === +Category: UncategorizedText +Text: 66,2 +Metadata: + +=== Element 1319 === +Category: UncategorizedText +Text: 74,4 +Metadata: + +=== Element 1320 === +Category: UncategorizedText +Text: 66,2 +Metadata: + +=== Element 1321 === +Category: UncategorizedText +Text: | +Metadata: + +=== Element 1322 === +Category: UncategorizedText +Text: 10,4 +Metadata: + +=== Element 1323 === +Category: UncategorizedText +Text: 4,4 +Metadata: + +=== Element 1324 === +Category: UncategorizedText +Text: 37,5 +Metadata: + +=== Element 1325 === +Category: UncategorizedText +Text: 38,0 +Metadata: + +=== Element 1326 === +Category: UncategorizedText +Text: | +Metadata: + +=== Element 1327 === +Category: UncategorizedText +Text: 103,5 +Metadata: + +=== Element 1328 === +Category: UncategorizedText +Text: 101,4 +Metadata: + +=== Element 1329 === +Category: UncategorizedText +Text: | +Metadata: + +=== Element 1330 === +Category: UncategorizedText +Text: | +Metadata: + +=== Element 1331 === +Category: UncategorizedText +Text: 113,9 +Metadata: + +=== Element 1332 === +Category: UncategorizedText +Text: 105,8 +Metadata: + +=== Element 1333 === +Category: UncategorizedText +Text: 2-Q1 +Metadata: + +=== Element 1334 === +Category: UncategorizedText +Text: | +Metadata: + +=== Element 1335 === +Category: Title +Text: Koffer +Metadata: + +=== Element 1336 === +Category: Title +Text: B +Metadata: + +=== Element 1337 === +Category: UncategorizedText +Text: 27.04.2023 14:16:58,000 - +Metadata: + +=== Element 1338 === +Category: UncategorizedText +Text: 27.04.2023 14:17:03,000 +Metadata: + +=== Element 1339 === +Category: UncategorizedText +Text: 5,0 +Metadata: + +=== Element 1340 === +Category: UncategorizedText +Text: | +Metadata: + +=== Element 1341 === +Category: UncategorizedText +Text: 55,1 +Metadata: + +=== Element 1342 === +Category: UncategorizedText +Text: 60,5 +Metadata: + +=== Element 1343 === +Category: UncategorizedText +Text: 60,5 +Metadata: + +=== Element 1344 === +Category: UncategorizedText +Text: 5,4 +Metadata: + +=== Element 1345 === +Category: UncategorizedText +Text: 38,0 +Metadata: + +=== Element 1346 === +Category: UncategorizedText +Text: 94,7 +Metadata: + +=== Element 1347 === +Category: UncategorizedText +Text: 100,1 +Metadata: + +=== Element 1348 === +Category: Header +Text: XXVIII +Metadata: + +=== Element 1349 === +Category: UncategorizedText +Text: 70,0 +Metadata: + +=== Element 1350 === +Category: UncategorizedText +Text: 67,3 +Metadata: + +=== Element 1351 === +Category: UncategorizedText +Text: 74,9 +Metadata: + +=== Element 1352 === +Category: UncategorizedText +Text: 72,8 +Metadata: + +=== Element 1353 === +Category: UncategorizedText +Text: 66,1 +Metadata: + +=== Element 1354 === +Category: Header +Text: Anhänge +Metadata: + +=== Element 1355 === +Category: Table +Text: Vorgang 2-Q1 2-Q1 2-Q1 2-Q1 2-Q1 2-Q1 2-Q1 2-Q1 2-Q1 2-Q1 2-Q1 2-Q1 2-Q1 2-Q1 2-Q1 2-Q1 2-Q1 2-Q1 2-Q1 2-Q1 2-Q1 2-Q1 Lkw- Typ Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Zone Datum Uhrzeit Start - Ende F 27.04.2023 14:17:49,000 - 27.04.2023 14:17:54,000 F 27.04.2023 14:26:36,000 - 27.04.2023 14:26:41,000 F 27.04.2023 14:27:15,000 - 27.04.2023 14:27:20,000 C 27.04.2023 14:27:58,000 - 27.04.2023 14:28:03,000 B 27.04.2023 14:28:42,000 - 27.04.2023 14:28:47,000 B 27.04.2023 14:29:27,000 - 27.04.2023 14:29:32,000 F 27.04.2023 14:29:32,000 - 27.04.2023 14:29:37,000 F 27.04.2023 14:30:31,000 - 27.04.2023 14:30:36,000 B 27.04.2023 14:30:50,000 - 27.04.2023 14:30:55,000 F 27.04.2023 14:31:16,000 - 27.04.2023 14:31:21,000 B 27.04.2023 14:31:48,000 - 27.04.2023 14:31:53,000 B 27.04.2023 14:32:02,000 - 27.04.2023 14:32:07,000 F 27.04.2023 14:33:07,000 - 27.04.2023 14:33:12,000 B 27.04.2023 14:33:53,000 - 27.04.2023 14:33:58,000 B 27.04.2023 14:38:00,000 - 27.04.2023 14:38:05,000 F 27.04.2023 14:38:57,000 - 27.04.2023 14:39:02,000 F 27.04.2023 14:39:18,000 - 27.04.2023 14:39:23,000 F 27.04.2023 14:40:19,000 - 27.04.2023 14:40:24,000 F 27.04.2023 14:41:03,000 - 27.04.2023 14:41:08,000 B 27.04.2023 14:41:08,000 - 27.04.2023 14:41:13,000 F 27.04.2023 14:41:37,000 - 27.04.2023 14:41:42,000 F 27.04.2023 14:47:22,000 - 27.04.2023 14:47:27,000 27.04.2023 14:08:39,000 - T [s] 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 Laeq [dB(A)] 62,8 58,5 63,0 69,3 64,2 57,8 65,9 54,2 62,8 58,4 65,2 64,5 63,6 63,9 60,5 59,6 60,1 59,8 56,5 62,0 53,8 70,1 LAFmax LAFTeq [dB(A)] [dB(A)] 65,7 65,7 65,7 65,7 68,5 68,5 70,6 70,6 70,8 70,8 64,0 64,0 71,5 71,5 60,6 60,6 73,8 73,8 65,0 65,0 77,0 77,0 72,9 72,9 71,5 71,5 74,7 74,7 64,7 64,7 65,8 65,8 61,2 61,2 62,2 62,2 62,4 62,4 72,8 72,8 57,5 57,5 82,5 82,5 KI [dB(A)] 2,9 7,2 5,5 1,3 6,6 6,2 5,6 6,4 11,0 6,6 11,8 8,4 7,9 10,8 4,2 6,2 1,1 2,4 5,9 10,8 3,7 12,4 r [m] 37,9 37,9 37,9 37,5 38,0 38,0 37,9 37,9 38,0 37,9 38,0 38,0 37,9 38,0 38,0 37,9 37,9 37,9 37,9 38,0 37,9 37,9 LWA,5s [dB(A)] 102,4 98,1 102,6 108,8 103,8 97,4 105,5 93,8 102,4 98,0 104,8 104,1 103,2 103,5 100,1 99,2 99,7 99,4 96,1 101,6 93,4 109,7 LWAmax [dB(A)] 105,3 105,3 108,1 110,1 110,4 103,6 111,1 100,2 113,4 104,6 116,6 112,5 111,1 114,3 104,3 105,4 100,8 101,8 102,0 112,4 97,1 122,1 LWA,1h [dB(A)] 73,8 69,5 74,0 80,2 75,2 68,8 76,9 65,2 73,8 69,4 76,2 75,5 74,6 74,9 71,5 70,6 71,1 70,8 67,5 73,0 64,8 81,1 +Metadata: + +=== Element 1356 === +Category: Title +Text: Q1-innen +Metadata: + +=== Element 1357 === +Category: Title +Text: Koffer +Metadata: + +=== Element 1358 === +Category: Title +Text: B +Metadata: + +=== Element 1359 === +Category: UncategorizedText +Text: 27.04.2023 14:08:44,000 +Metadata: + +=== Element 1360 === +Category: UncategorizedText +Text: 5,0 +Metadata: + +=== Element 1361 === +Category: UncategorizedText +Text: 55,1 +Metadata: + +=== Element 1362 === +Category: UncategorizedText +Text: 60,0 +Metadata: + +=== Element 1363 === +Category: UncategorizedText +Text: 60,0 +Metadata: + +=== Element 1364 === +Category: UncategorizedText +Text: 4,9 +Metadata: + +=== Element 1365 === +Category: UncategorizedText +Text: 38,0 +Metadata: + +=== Element 1366 === +Category: UncategorizedText +Text: 94,7 +Metadata: + +=== Element 1367 === +Category: UncategorizedText +Text: 99,6 +Metadata: + +=== Element 1368 === +Category: Title +Text: Q1-innen +Metadata: + +=== Element 1369 === +Category: UncategorizedText +Text: | +Metadata: + +=== Element 1370 === +Category: Title +Text: Koffer +Metadata: + +=== Element 1371 === +Category: Title +Text: B +Metadata: + +=== Element 1372 === +Category: UncategorizedText +Text: 27.04.2023 14:10:12,000 - +Metadata: + +=== Element 1373 === +Category: UncategorizedText +Text: N 000 +Metadata: + +=== Element 1374 === +Category: UncategorizedText +Text: 27.04.2023 14:10:17,000 +Metadata: + +=== Element 1375 === +Category: UncategorizedText +Text: 5,0 +Metadata: + +=== Element 1376 === +Category: UncategorizedText +Text: 53,3 +Metadata: + +=== Element 1377 === +Category: UncategorizedText +Text: 56,1 +Metadata: + +=== Element 1378 === +Category: UncategorizedText +Text: 56,1 +Metadata: + +=== Element 1379 === +Category: UncategorizedText +Text: 2,8 +Metadata: + +=== Element 1380 === +Category: UncategorizedText +Text: 38,0 +Metadata: + +=== Element 1381 === +Category: UncategorizedText +Text: 92,9 +Metadata: + +=== Element 1382 === +Category: UncategorizedText +Text: 95,7 +Metadata: + +=== Element 1383 === +Category: Title +Text: Q1-innen +Metadata: + +=== Element 1384 === +Category: Title +Text: Q1-innen +Metadata: + +=== Element 1385 === +Category: UncategorizedText +Text: | +Metadata: + +=== Element 1386 === +Category: UncategorizedText +Text: | +Metadata: + +=== Element 1387 === +Category: Title +Text: Koffer +Metadata: + +=== Element 1388 === +Category: Title +Text: Koffer +Metadata: + +=== Element 1389 === +Category: Title +Text: B +Metadata: + +=== Element 1390 === +Category: Title +Text: B +Metadata: + +=== Element 1391 === +Category: UncategorizedText +Text: 2023 141220000 2023 1412:20.000 +Metadata: + +=== Element 1392 === +Category: UncategorizedText +Text: 27.04.2023 14:12:15,000 - +Metadata: + +=== Element 1393 === +Category: UncategorizedText +Text: 27.04.2023 14:12:20,000 +Metadata: + +=== Element 1394 === +Category: UncategorizedText +Text: 27.04.2023 14:12:24,000 - +Metadata: + +=== Element 1395 === +Category: UncategorizedText +Text: 27.04.2023 14:12:29,000 +Metadata: + +=== Element 1396 === +Category: UncategorizedText +Text: 5,0 +Metadata: + +=== Element 1397 === +Category: UncategorizedText +Text: 5,0 +Metadata: + +=== Element 1398 === +Category: UncategorizedText +Text: 56,9 +Metadata: + +=== Element 1399 === +Category: UncategorizedText +Text: 53,1 +Metadata: + +=== Element 1400 === +Category: UncategorizedText +Text: 60,3 +Metadata: + +=== Element 1401 === +Category: UncategorizedText +Text: 54,9 +Metadata: + +=== Element 1402 === +Category: UncategorizedText +Text: 60,3 +Metadata: + +=== Element 1403 === +Category: UncategorizedText +Text: 54,9 +Metadata: + +=== Element 1404 === +Category: UncategorizedText +Text: 3,4 +Metadata: + +=== Element 1405 === +Category: UncategorizedText +Text: 1,8 +Metadata: + +=== Element 1406 === +Category: UncategorizedText +Text: 38,0 +Metadata: + +=== Element 1407 === +Category: UncategorizedText +Text: 38,0 +Metadata: + +=== Element 1408 === +Category: UncategorizedText +Text: | +Metadata: + +=== Element 1409 === +Category: UncategorizedText +Text: 96,5 +Metadata: + +=== Element 1410 === +Category: UncategorizedText +Text: 92,7 +Metadata: + +=== Element 1411 === +Category: UncategorizedText +Text: 99,9 +Metadata: + +=== Element 1412 === +Category: UncategorizedText +Text: 94,5 +Metadata: + +=== Element 1413 === +Category: Title +Text: Q1-innen +Metadata: + +=== Element 1414 === +Category: UncategorizedText +Text: | +Metadata: + +=== Element 1415 === +Category: Title +Text: Koffer +Metadata: + +=== Element 1416 === +Category: Title +Text: C +Metadata: + +=== Element 1417 === +Category: UncategorizedText +Text: 27.04.2023 14:13:01,000 - +Metadata: + +=== Element 1418 === +Category: UncategorizedText +Text: 27.04.2023 14:13:06,000 +Metadata: + +=== Element 1419 === +Category: UncategorizedText +Text: 5,0 +Metadata: + +=== Element 1420 === +Category: UncategorizedText +Text: | +Metadata: + +=== Element 1421 === +Category: UncategorizedText +Text: 58,3 +Metadata: + +=== Element 1422 === +Category: UncategorizedText +Text: 62,0 +Metadata: + +=== Element 1423 === +Category: UncategorizedText +Text: 62,0 +Metadata: + +=== Element 1424 === +Category: UncategorizedText +Text: 3,7 +Metadata: + +=== Element 1425 === +Category: UncategorizedText +Text: 37,5 +Metadata: + +=== Element 1426 === +Category: UncategorizedText +Text: | +Metadata: + +=== Element 1427 === +Category: UncategorizedText +Text: 97,8 +Metadata: + +=== Element 1428 === +Category: UncategorizedText +Text: 101,5 +Metadata: + +=== Element 1429 === +Category: Header +Text: XXIX +Metadata: + +=== Element 1430 === +Category: UncategorizedText +Text: 66,1 +Metadata: + +=== Element 1431 === +Category: UncategorizedText +Text: 64,3 +Metadata: + +=== Element 1432 === +Category: UncategorizedText +Text: 67,9 +Metadata: + +=== Element 1433 === +Category: UncategorizedText +Text: 64,1 +Metadata: + +=== Element 1434 === +Category: UncategorizedText +Text: 69,2 +Metadata: + +=== Element 1435 === +Category: Header +Text: Anhänge +Metadata: + +=== Element 1436 === +Category: Table +Text: Vorgang Q1-innen Q1-innen Q1-innen Q1-innen Q1-innen Q1-innen Q1-innen Q1-innen Q1-innen Q1-innen Q1-innen Q1-innen Q1-innen Q1-innen Q1-innen Q1-innen Q1-innen Q1-innen Q1-innen Q1-innen Q1-innen 1-Q1 Lkw- Typ Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Zone Datum Uhrzeit Start - Ende C 27.04.2023 14:13:08,000 - 27.04.2023 14:13:13,000 B 27.04.2023 14:16:39,000 - 27.04.2023 14:16:44,000 B 27.04.2023 14:16:44,000 - 27.04.2023 14:16:49,000 F 27.04.2023 14:26:26,000 - 27.04.2023 14:26:31,000 F 27.04.2023 14:26:31,000 - 27.04.2023 14:26:36,000 F 27.04.2023 14:27:05,000 - 27.04.2023 14:27:10,000 F 27.04.2023 14:27:10,000 - 27.04.2023 14:27:15,000 F 27.04.2023 14:27:48,000 - 27.04.2023 14:27:53,000 F 27.04.2023 14:28:37,000 - 27.04.2023 14:28:42,000 F 27.04.2023 14:29:20,000 - 27.04.2023 14:29:25,000 B 27.04.2023 14:31:10,000 - 27.04.2023 14:31:15,000 F 27.04.2023 14:32:50,000 - 27.04.2023 14:32:55,000 F 27.04.2023 14:37:41,000 - 27.04.2023 14:37:46,000 B 27.04.2023 14:37:46,000 - 27.04.2023 14:37:51,000 B 27.04.2023 14:38:51,000 - 27.04.2023 14:38:56,000 F 27.04.2023 14:39:09,000 - 27.04.2023 14:39:14,000 F 27.04.2023 14:40:10,000 - 27.04.2023 14:40:15,000 B 27.04.2023 14:41:32,000 - 27.04.2023 14:41:37,000 F 27.04.2023 14:42:58,000 - 27.04.2023 14:43:03,000 F 27.04.2023 14:43:28,000 - 27.04.2023 14:43:33,000 F 27.04.2023 14:47:16,000 - 27.04.2023 14:47:21,000 C 03.05.2023 13:55:47,000 - 03.05.2023 13:55:52,000 03.05.2023 13:55:58,000 - T [s] 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 Laeq [dB(A)] 59,5 54,5 54,9 54,6 54,4 65,3 54,5 62,4 55,6 54,4 56,1 57,0 67,0 55,2 60,3 61,3 59,2 52,8 61,8 65,6 63,6 50,2 LAFmax LAFTeq [dB(A)] [dB(A)] 64,0 64,0 58,2 58,2 58,6 58,6 61,7 61,7 59,2 59,2 77,7 77,7 61,8 61,8 71,1 71,1 69,4 69,4 57,8 57,8 65,1 65,1 63,4 63,4 77,6 77,6 59,1 59,1 65,9 65,9 69,1 69,1 59,9 59,9 57,0 57,0 67,6 67,6 67,4 67,4 73,2 73,2 53,0 53,0 KI [dB(A)] 4,5 3,7 3,7 7,1 4,8 12,4 7,3 8,7 13,8 3,4 9,0 6,4 10,6 3,9 5,6 7,8 0,7 4,2 5,8 1,8 9,6 2,8 r [m] 37,5 38,0 38,0 37,9 37,9 37,9 37,9 37,9 37,9 37,9 38,0 37,9 37,9 38,0 38,0 37,9 37,9 38,0 37,9 37,9 37,9 37,5 LWA,5s [dB(A)] 99,0 94,1 94,5 94,2 94,0 104,9 94,1 102,0 95,2 94,0 95,7 96,6 106,6 94,8 99,9 100,9 98,8 92,4 101,4 105,2 103,2 89,7 LWAmax [dB(A)] 103,5 97,8 98,2 101,3 98,8 117,3 101,4 110,7 109,0 97,4 104,7 103,0 117,2 98,7 105,5 108,7 99,5 96,6 107,2 107,0 112,8 92,5 LWA,1h [dB(A)] 70,4 65,5 65,9 65,6 65,4 76,3 65,5 73,4 66,6 65,4 67,1 68,0 78,0 66,2 71,3 72,3 70,2 63,8 72,8 76,6 74,6 61,1 +Metadata: + +=== Element 1437 === +Category: UncategorizedText +Text: 1-Q1 +Metadata: + +=== Element 1438 === +Category: Title +Text: Koffer +Metadata: + +=== Element 1439 === +Category: Title +Text: C +Metadata: + +=== Element 1440 === +Category: UncategorizedText +Text: 03.05.2023 13:56:03,000 +Metadata: + +=== Element 1441 === +Category: UncategorizedText +Text: 5,0 +Metadata: + +=== Element 1442 === +Category: UncategorizedText +Text: 48,4 +Metadata: + +=== Element 1443 === +Category: UncategorizedText +Text: 51,5 +Metadata: + +=== Element 1444 === +Category: UncategorizedText +Text: 51,5 +Metadata: + +=== Element 1445 === +Category: UncategorizedText +Text: 3,1 +Metadata: + +=== Element 1446 === +Category: UncategorizedText +Text: 37,5 +Metadata: + +=== Element 1447 === +Category: UncategorizedText +Text: 87,9 +Metadata: + +=== Element 1448 === +Category: UncategorizedText +Text: 91,0 +Metadata: + +=== Element 1449 === +Category: UncategorizedText +Text: 1-Q1 +Metadata: + +=== Element 1450 === +Category: UncategorizedText +Text: 1-Q1 +Metadata: + +=== Element 1451 === +Category: UncategorizedText +Text: 1-Q1 +Metadata: + +=== Element 1452 === +Category: UncategorizedText +Text: | +Metadata: + +=== Element 1453 === +Category: UncategorizedText +Text: | +Metadata: + +=== Element 1454 === +Category: UncategorizedText +Text: | +Metadata: + +=== Element 1455 === +Category: Title +Text: Koffer +Metadata: + +=== Element 1456 === +Category: Title +Text: Koffer +Metadata: + +=== Element 1457 === +Category: Title +Text: Koffer +Metadata: + +=== Element 1458 === +Category: Title +Text: C +Metadata: + +=== Element 1459 === +Category: Title +Text: D +Metadata: + +=== Element 1460 === +Category: Title +Text: D +Metadata: + +=== Element 1461 === +Category: UncategorizedText +Text: 2023 13:97:54.000 2023 14:30:12.000 2023 1:33:41.000 +Metadata: + +=== Element 1462 === +Category: UncategorizedText +Text: 03.05.2023 13:57:48,000 - +Metadata: + +=== Element 1463 === +Category: UncategorizedText +Text: 03.05.2023 13:57:53,000 +Metadata: + +=== Element 1464 === +Category: UncategorizedText +Text: 03.05.2023 14:30:12,000 - +Metadata: + +=== Element 1465 === +Category: UncategorizedText +Text: 03.05.2023 14:30:17,000 +Metadata: + +=== Element 1466 === +Category: UncategorizedText +Text: 03.05.2023 14:33:36,000 - +Metadata: + +=== Element 1467 === +Category: UncategorizedText +Text: 03.05.2023 14:33:41,000 +Metadata: + +=== Element 1468 === +Category: UncategorizedText +Text: 5,0 +Metadata: + +=== Element 1469 === +Category: UncategorizedText +Text: 5,0 +Metadata: + +=== Element 1470 === +Category: UncategorizedText +Text: 5,0 +Metadata: + +=== Element 1471 === +Category: UncategorizedText +Text: 63,6 +Metadata: + +=== Element 1472 === +Category: UncategorizedText +Text: 53,5 +Metadata: + +=== Element 1473 === +Category: UncategorizedText +Text: 50,5 +Metadata: + +=== Element 1474 === +Category: UncategorizedText +Text: 66,3 +Metadata: + +=== Element 1475 === +Category: UncategorizedText +Text: 56,4 +Metadata: + +=== Element 1476 === +Category: UncategorizedText +Text: 54,2 +Metadata: + +=== Element 1477 === +Category: UncategorizedText +Text: 66,3 +Metadata: + +=== Element 1478 === +Category: UncategorizedText +Text: 56,4 +Metadata: + +=== Element 1479 === +Category: UncategorizedText +Text: 54,2 +Metadata: + +=== Element 1480 === +Category: UncategorizedText +Text: 2,7 +Metadata: + +=== Element 1481 === +Category: UncategorizedText +Text: 2,9 +Metadata: + +=== Element 1482 === +Category: UncategorizedText +Text: 3,7 +Metadata: + +=== Element 1483 === +Category: UncategorizedText +Text: 37,5 +Metadata: + +=== Element 1484 === +Category: UncategorizedText +Text: 37,4 +Metadata: + +=== Element 1485 === +Category: UncategorizedText +Text: 37,4 +Metadata: + +=== Element 1486 === +Category: UncategorizedText +Text: 103,1 +Metadata: + +=== Element 1487 === +Category: UncategorizedText +Text: 92,9 +Metadata: + +=== Element 1488 === +Category: UncategorizedText +Text: 89,9 +Metadata: + +=== Element 1489 === +Category: UncategorizedText +Text: | +Metadata: + +=== Element 1490 === +Category: UncategorizedText +Text: 105,8 +Metadata: + +=== Element 1491 === +Category: UncategorizedText +Text: 95,8 +Metadata: + +=== Element 1492 === +Category: UncategorizedText +Text: 93,6 +Metadata: + +=== Element 1493 === +Category: UncategorizedText +Text: 1-Q1 +Metadata: + +=== Element 1494 === +Category: UncategorizedText +Text: | +Metadata: + +=== Element 1495 === +Category: Title +Text: Koffer +Metadata: + +=== Element 1496 === +Category: Title +Text: D +Metadata: + +=== Element 1497 === +Category: UncategorizedText +Text: 03.05.2023 14:36:11,000 - +Metadata: + +=== Element 1498 === +Category: UncategorizedText +Text: 03.05.2023 14:36:16,000 +Metadata: + +=== Element 1499 === +Category: UncategorizedText +Text: 5,0 +Metadata: + +=== Element 1500 === +Category: UncategorizedText +Text: | +Metadata: + +=== Element 1501 === +Category: UncategorizedText +Text: 52,2 +Metadata: + +=== Element 1502 === +Category: UncategorizedText +Text: 55,2 +Metadata: + +=== Element 1503 === +Category: UncategorizedText +Text: 55,2 +Metadata: + +=== Element 1504 === +Category: UncategorizedText +Text: 3,0 +Metadata: + +=== Element 1505 === +Category: UncategorizedText +Text: 37,4 +Metadata: + +=== Element 1506 === +Category: UncategorizedText +Text: 91,6 +Metadata: + +=== Element 1507 === +Category: UncategorizedText +Text: 94,6 +Metadata: + +=== Element 1508 === +Category: Header +Text: XXX +Metadata: + +=== Element 1509 === +Category: UncategorizedText +Text: 59,3 +Metadata: + +=== Element 1510 === +Category: UncategorizedText +Text: 74,5 +Metadata: + +=== Element 1511 === +Category: UncategorizedText +Text: 64,4 +Metadata: + +=== Element 1512 === +Category: UncategorizedText +Text: 61,4 +Metadata: + +=== Element 1513 === +Category: UncategorizedText +Text: 63,1 +Metadata: + +=== Element 1514 === +Category: Header +Text: Anhänge +Metadata: + +=== Element 1515 === +Category: Table +Text: Vorgang 1-Q1 1-Q1 1-Q1 1-Q1 1-Q1 1-Q1 1-Q1 1-Q1 1-Q1 1-Q1 1-Q1 1-Q1 1-Q1 1-Q1 1-Q1 1-Q1 1-Q1 1-Q1 1-Q1 1-Q1 1-Q1 1-Q1 Lkw- Typ Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Zone Datum Uhrzeit Start - Ende F 03.05.2023 14:47:17,000 - 03.05.2023 14:47:22,000 F 03.05.2023 14:49:40,000 - 03.05.2023 14:49:45,000 B 03.05.2023 15:07:07,000 - 03.05.2023 15:07:12,000 B 03.05.2023 15:08:42,000 - 03.05.2023 15:08:47,000 B 03.05.2023 15:09:52,000 - 03.05.2023 15:09:57,000 B 03.05.2023 15:12:55,000 - 03.05.2023 15:13:00,000 B 03.05.2023 15:16:57,000 - 03.05.2023 15:17:02,000 B 03.05.2023 15:17:48,000 - 03.05.2023 15:17:53,000 B 03.05.2023 15:19:08,000 - 03.05.2023 15:19:13,000 B 03.05.2023 15:23:57,000 - 03.05.2023 15:24:03,000 B 03.05.2023 15:26:12,000 - 03.05.2023 15:26:17,000 B 03.05.2023 15:29:17,000 - 03.05.2023 15:29:22,000 F 03.05.2023 15:29:28,000 - 03.05.2023 15:29:33,000 B 03.05.2023 15:32:16,000 - 03.05.2023 15:32:21,000 B 03.05.2023 15:33:05,000 - 03.05.2023 15:33:10,000 B 03.05.2023 15:36:15,000 - 03.05.2023 15:36:20,000 B 03.05.2023 15:38:06,000 - 03.05.2023 15:38:11,000 B 03.05.2023 15:41:24,000 - 03.05.2023 15:41:29,000 B 03.05.2023 15:43:22,000 - 03.05.2023 15:43:27,000 B 03.05.2023 15:44:52,000 - 03.05.2023 15:44:57,000 B 03.05.2023 15:47:38,000 - 03.05.2023 15:47:43,000 B 03.05.2023 15:51:10,000 - 03.05.2023 15:51:15,000 03.05.2023 13:55:53,000 - T [s] 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 Laeq [dB(A)] 60,2 51,7 55,3 66,9 56,2 56,8 56,9 58,1 53,5 55,4 62,0 53,1 52,9 52,7 59,3 58,2 70,0 56,1 52,8 50,4 53,6 53,8 LAFmax LAFTeq [dB(A)] [dB(A)] 66,3 66,3 58,3 58,3 62,8 62,8 70,5 70,5 60,2 60,2 59,7 59,7 60,3 60,3 62,8 62,8 57,1 57,1 60,9 60,9 64,8 64,8 55,7 55,7 57,1 57,1 60,1 60,1 64,7 64,7 62,3 62,3 79,3 79,3 59,6 59,6 61,5 61,5 54,2 54,2 57,1 57,1 62,5 62,5 KI [dB(A)] 6,1 6,6 7,5 3,6 4,0 2,9 3,4 4,7 3,6 5,5 2,8 2,6 4,2 7,4 5,4 4,1 9,3 3,5 8,7 3,8 3,5 8,7 r [m] 37,9 37,9 38,0 38,0 38,0 38,0 38,0 38,0 38,0 38,0 38,0 38,0 38,0 38,0 38,0 38,0 38,0 38,0 38,0 38,0 38,0 38,0 LWA,5s [dB(A)] 99,8 91,3 94,9 106,5 95,8 96,4 96,5 97,7 93,1 95,0 101,6 92,7 92,5 92,3 98,9 97,8 109,6 95,7 92,4 90,0 93,2 93,4 LWAmax [dB(A)] 105,9 97,9 102,4 110,1 99,8 99,3 99,9 102,4 96,7 100,5 104,4 95,3 96,7 99,7 104,3 101,9 118,9 99,2 101,1 93,8 96,7 102,1 LWA,1h [dB(A)] 71,2 62,7 66,3 77,9 67,2 67,8 67,9 69,1 64,5 66,4 73,0 64,1 63,9 63,7 70,3 69,2 81,0 67,1 63,8 61,4 64,6 64,8 +Metadata: + +=== Element 1516 === +Category: UncategorizedText +Text: 2-Q1 +Metadata: + +=== Element 1517 === +Category: Title +Text: Koffer +Metadata: + +=== Element 1518 === +Category: Title +Text: C +Metadata: + +=== Element 1519 === +Category: UncategorizedText +Text: 03.05.2023 13:55:58,000 +Metadata: + +=== Element 1520 === +Category: UncategorizedText +Text: 5,0 +Metadata: + +=== Element 1521 === +Category: UncategorizedText +Text: 53,7 +Metadata: + +=== Element 1522 === +Category: UncategorizedText +Text: 63,0 +Metadata: + +=== Element 1523 === +Category: UncategorizedText +Text: 63,0 +Metadata: + +=== Element 1524 === +Category: UncategorizedText +Text: 9,3 +Metadata: + +=== Element 1525 === +Category: UncategorizedText +Text: 37,5 +Metadata: + +=== Element 1526 === +Category: UncategorizedText +Text: 93,2 +Metadata: + +=== Element 1527 === +Category: UncategorizedText +Text: 102,5 +Metadata: + +=== Element 1528 === +Category: UncategorizedText +Text: 2-Q1 +Metadata: + +=== Element 1529 === +Category: UncategorizedText +Text: 2-Q1 +Metadata: + +=== Element 1530 === +Category: UncategorizedText +Text: | +Metadata: + +=== Element 1531 === +Category: UncategorizedText +Text: | +Metadata: + +=== Element 1532 === +Category: Title +Text: Koffer +Metadata: + +=== Element 1533 === +Category: Title +Text: Koffer +Metadata: + +=== Element 1534 === +Category: Title +Text: C +Metadata: + +=== Element 1535 === +Category: Title +Text: D +Metadata: + +=== Element 1536 === +Category: UncategorizedText +Text: 2023 13:8:03.000 2023 14:30:50 +Metadata: + +=== Element 1537 === +Category: UncategorizedText +Text: 03.05.2023 13:57:58,000 - +Metadata: + +=== Element 1538 === +Category: UncategorizedText +Text: 03.05.2023 13:58:03,000 +Metadata: + +=== Element 1539 === +Category: UncategorizedText +Text: 03.05.2023 14:30:50,000 - +Metadata: + +=== Element 1540 === +Category: UncategorizedText +Text: 03.05.2023 14:30:55,000 +Metadata: + +=== Element 1541 === +Category: UncategorizedText +Text: 5,0 +Metadata: + +=== Element 1542 === +Category: UncategorizedText +Text: 5,0 +Metadata: + +=== Element 1543 === +Category: UncategorizedText +Text: 63,2 +Metadata: + +=== Element 1544 === +Category: UncategorizedText +Text: 60,2 +Metadata: + +=== Element 1545 === +Category: UncategorizedText +Text: 65,8 +Metadata: + +=== Element 1546 === +Category: UncategorizedText +Text: 61,3 +Metadata: + +=== Element 1547 === +Category: UncategorizedText +Text: 65,8 +Metadata: + +=== Element 1548 === +Category: UncategorizedText +Text: 61,3 +Metadata: + +=== Element 1549 === +Category: UncategorizedText +Text: 2,6 +Metadata: + +=== Element 1550 === +Category: UncategorizedText +Text: 1,1 +Metadata: + +=== Element 1551 === +Category: UncategorizedText +Text: 37,5 +Metadata: + +=== Element 1552 === +Category: UncategorizedText +Text: 37,4 +Metadata: + +=== Element 1553 === +Category: UncategorizedText +Text: 102,7 +Metadata: + +=== Element 1554 === +Category: UncategorizedText +Text: 99,6 +Metadata: + +=== Element 1555 === +Category: UncategorizedText +Text: | +Metadata: + +=== Element 1556 === +Category: UncategorizedText +Text: 105,3 +Metadata: + +=== Element 1557 === +Category: UncategorizedText +Text: 100,7 +Metadata: + +=== Element 1558 === +Category: UncategorizedText +Text: 2-Q1 +Metadata: + +=== Element 1559 === +Category: UncategorizedText +Text: | +Metadata: + +=== Element 1560 === +Category: Title +Text: Koffer +Metadata: + +=== Element 1561 === +Category: Title +Text: D +Metadata: + +=== Element 1562 === +Category: UncategorizedText +Text: 03.05.2023 14:34:05,000 - +Metadata: + +=== Element 1563 === +Category: UncategorizedText +Text: 000 +Metadata: + +=== Element 1564 === +Category: UncategorizedText +Text: 03.05.2023 14:34:10,000 +Metadata: + +=== Element 1565 === +Category: UncategorizedText +Text: 5,0 +Metadata: + +=== Element 1566 === +Category: UncategorizedText +Text: 51,4 +Metadata: + +=== Element 1567 === +Category: UncategorizedText +Text: 58,0 +Metadata: + +=== Element 1568 === +Category: UncategorizedText +Text: 58,0 +Metadata: + +=== Element 1569 === +Category: UncategorizedText +Text: 58,0 +Metadata: + +=== Element 1570 === +Category: UncategorizedText +Text: 6,6 +Metadata: + +=== Element 1571 === +Category: UncategorizedText +Text: 37,4 +Metadata: + +=== Element 1572 === +Category: UncategorizedText +Text: 90,8 +Metadata: + +=== Element 1573 === +Category: UncategorizedText +Text: 97,4 +Metadata: + +=== Element 1574 === +Category: UncategorizedText +Text: 2-Q1 +Metadata: + +=== Element 1575 === +Category: UncategorizedText +Text: | +Metadata: + +=== Element 1576 === +Category: Title +Text: Koffer +Metadata: + +=== Element 1577 === +Category: Title +Text: D +Metadata: + +=== Element 1578 === +Category: UncategorizedText +Text: 03.05.2023 14:36:31,000 - +Metadata: + +=== Element 1579 === +Category: UncategorizedText +Text: 03.05.2023 14:36:36,000 +Metadata: + +=== Element 1580 === +Category: UncategorizedText +Text: 5,0 +Metadata: + +=== Element 1581 === +Category: UncategorizedText +Text: | +Metadata: + +=== Element 1582 === +Category: UncategorizedText +Text: 49,9 +Metadata: + +=== Element 1583 === +Category: UncategorizedText +Text: 52,4 +Metadata: + +=== Element 1584 === +Category: UncategorizedText +Text: 52,4 +Metadata: + +=== Element 1585 === +Category: UncategorizedText +Text: 2,5 +Metadata: + +=== Element 1586 === +Category: UncategorizedText +Text: 37,4 +Metadata: + +=== Element 1587 === +Category: UncategorizedText +Text: 89,3 +Metadata: + +=== Element 1588 === +Category: UncategorizedText +Text: 91,8 +Metadata: + +=== Element 1589 === +Category: Header +Text: XXXI +Metadata: + +=== Element 1590 === +Category: UncategorizedText +Text: 64,6 +Metadata: + +=== Element 1591 === +Category: UncategorizedText +Text: 74,1 +Metadata: + +=== Element 1592 === +Category: UncategorizedText +Text: 71,1 +Metadata: + +=== Element 1593 === +Category: UncategorizedText +Text: 62,3 +Metadata: + +=== Element 1594 === +Category: UncategorizedText +Text: 60,8 +Metadata: + +=== Element 1595 === +Category: Header +Text: Anhänge +Metadata: + +=== Element 1596 === +Category: Table +Text: Vorgang 2-Q1 2-Q1 2-Q1 2-Q1 2-Q1 2-Q1 2-Q1 2-Q1 2-Q1 2-Q1 2-Q1 2-Q1 2-Q1 2-Q1 2-Q1 2-Q1 2-Q1 2-Q1 2-Q1 2-Q1 2-Q1 2-Q1 Lkw- Typ Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Zone Datum Uhrzeit Start - Ende D 03.05.2023 14:38:17,000 - 03.05.2023 14:38:22,000 F 03.05.2023 14:47:33,000 - 03.05.2023 14:47:38,000 F 03.05.2023 14:49:45,000 - 03.05.2023 14:49:50,000 F 03.05.2023 14:52:02,000 - 03.05.2023 14:52:07,000 B 03.05.2023 15:07:23,000 - 03.05.2023 15:07:28,000 B 03.05.2023 15:09:15,000 - 03.05.2023 15:09:20,000 B 03.05.2023 15:10:17,000 - 03.05.2023 15:10:22,000 B 03.05.2023 15:13:18,000 - 03.05.2023 15:13:23,000 B 03.05.2023 15:16:10,000 - 03.05.2023 15:16:15,000 B 03.05.2023 15:18:36,000 - 03.05.2023 15:18:41,000 B 03.05.2023 15:19:24,000 - 03.05.2023 15:19:29,000 B 03.05.2023 15:24:22,000 - 03.05.2023 15:24:27,000 B 03.05.2023 15:25:48,000 - 03.05.2023 15:25:53,000 B 03.05.2023 15:27:06,000 - 03.05.2023 15:27:11,000 F 03.05.2023 15:29:38,000 - 03.05.2023 15:29:43,000 B 03.05.2023 15:30:30,000 - 03.05.2023 15:30:35,000 B 03.05.2023 15:32:37,000 - 03.05.2023 15:32:42,000 B 03.05.2023 15:34:44,000 - 03.05.2023 15:34:49,000 B 03.05.2023 15:36:28,000 - 03.05.2023 15:36:33,000 B 03.05.2023 15:38:22,000 - 03.05.2023 15:38:27,000 B 03.05.2023 15:40:46,000 - 03.05.2023 15:40:51,000 B 03.05.2023 15:41:44,000 - 03.05.2023 15:41:49,000 03.05.2023 15:45:07,000 - T [s] 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 Laeq [dB(A)] 60,5 52,3 55,3 59,4 51,4 49,9 53,4 56,3 57,7 54,2 54,8 55,8 58,3 57,1 54,4 57,7 58,8 60,6 53,4 63,8 71,9 62,8 LAFmax LAFTeq [dB(A)] [dB(A)] 64,6 64,6 59,5 59,5 61,4 61,4 65,6 65,6 55,1 55,1 53,2 53,2 59,6 59,6 60,7 60,7 60,9 60,9 57,8 57,8 59,6 59,6 61,5 61,5 61,6 61,6 64,0 64,0 62,4 62,4 60,0 60,0 65,1 65,1 64,2 64,2 57,4 57,4 66,3 66,3 75,6 75,6 64,7 64,7 KI [dB(A)] 4,1 7,2 6,1 6,2 3,7 3,3 6,2 4,4 3,2 3,6 4,8 5,7 3,3 6,9 8,0 2,3 6,3 3,6 4,0 2,5 3,7 1,9 r [m] 37,4 37,9 37,9 37,9 38,0 38,0 38,0 38,0 38,0 38,0 38,0 38,0 38,0 38,0 37,9 38,0 38,0 38,0 38,0 38,0 38,0 38,0 LWA,5s [dB(A)] 99,9 91,9 94,9 99,0 91,0 89,5 93,0 95,9 97,3 93,8 94,4 95,4 97,9 96,7 94,0 97,3 98,4 100,2 93,0 103,4 111,5 102,4 LWAmax [dB(A)] 104,0 99,1 101,0 105,2 94,7 92,8 99,2 100,3 100,5 97,4 99,2 101,1 101,2 103,6 102,0 99,6 104,7 103,8 97,0 105,9 115,2 104,3 LWA,1h [dB(A)] 71,4 63,3 66,3 70,4 62,4 60,9 64,4 67,3 68,7 65,2 65,8 66,8 69,3 68,1 65,4 68,7 69,8 71,6 64,4 74,8 82,9 73,8 +Metadata: + +=== Element 1597 === +Category: UncategorizedText +Text: 2-Q1 +Metadata: + +=== Element 1598 === +Category: Title +Text: Koffer +Metadata: + +=== Element 1599 === +Category: Title +Text: B +Metadata: + +=== Element 1600 === +Category: UncategorizedText +Text: 03.05.2023 15:45:12,000 +Metadata: + +=== Element 1601 === +Category: UncategorizedText +Text: 5,0 +Metadata: + +=== Element 1602 === +Category: UncategorizedText +Text: 51,4 +Metadata: + +=== Element 1603 === +Category: UncategorizedText +Text: 53,8 +Metadata: + +=== Element 1604 === +Category: UncategorizedText +Text: 53,8 +Metadata: + +=== Element 1605 === +Category: UncategorizedText +Text: 2,4 +Metadata: + +=== Element 1606 === +Category: UncategorizedText +Text: 38,0 +Metadata: + +=== Element 1607 === +Category: UncategorizedText +Text: 91,0 +Metadata: + +=== Element 1608 === +Category: UncategorizedText +Text: 93,4 +Metadata: + +=== Element 1609 === +Category: UncategorizedText +Text: 2-Q1 +Metadata: + +=== Element 1610 === +Category: UncategorizedText +Text: 2-Q1 +Metadata: + +=== Element 1611 === +Category: Title +Text: Q1-innen +Metadata: + +=== Element 1612 === +Category: UncategorizedText +Text: | +Metadata: + +=== Element 1613 === +Category: UncategorizedText +Text: | +Metadata: + +=== Element 1614 === +Category: UncategorizedText +Text: | +Metadata: + +=== Element 1615 === +Category: Title +Text: Koffer +Metadata: + +=== Element 1616 === +Category: Title +Text: Koffer +Metadata: + +=== Element 1617 === +Category: Title +Text: Koffer +Metadata: + +=== Element 1618 === +Category: Title +Text: B +Metadata: + +=== Element 1619 === +Category: Title +Text: B +Metadata: + +=== Element 1620 === +Category: Title +Text: C +Metadata: + +=== Element 1621 === +Category: UncategorizedText +Text: 2023 13:50:56.000 2023 13:91:33.000 2023 13:56:08.000 +Metadata: + +=== Element 1622 === +Category: UncategorizedText +Text: 03.05.2023 15:50:50,000 - +Metadata: + +=== Element 1623 === +Category: UncategorizedText +Text: 03.05.2023 15:50:56,000 +Metadata: + +=== Element 1624 === +Category: UncategorizedText +Text: 03.05.2023 15:51:27,000 - +Metadata: + +=== Element 1625 === +Category: UncategorizedText +Text: 03.05.2023 15:51:32,000 +Metadata: + +=== Element 1626 === +Category: UncategorizedText +Text: 03.05.2023 13:56:03,000 - +Metadata: + +=== Element 1627 === +Category: UncategorizedText +Text: 03.05.2023 13:56:08,000 +Metadata: + +=== Element 1628 === +Category: UncategorizedText +Text: 5,0 +Metadata: + +=== Element 1629 === +Category: UncategorizedText +Text: 5,0 +Metadata: + +=== Element 1630 === +Category: UncategorizedText +Text: 5,0 +Metadata: + +=== Element 1631 === +Category: UncategorizedText +Text: 56,8 +Metadata: + +=== Element 1632 === +Category: UncategorizedText +Text: 53,0 +Metadata: + +=== Element 1633 === +Category: UncategorizedText +Text: 47,4 +Metadata: + +=== Element 1634 === +Category: UncategorizedText +Text: 64,2 +Metadata: + +=== Element 1635 === +Category: UncategorizedText +Text: 55,9 +Metadata: + +=== Element 1636 === +Category: UncategorizedText +Text: 49,2 +Metadata: + +=== Element 1637 === +Category: UncategorizedText +Text: 64,2 +Metadata: + +=== Element 1638 === +Category: UncategorizedText +Text: 55,9 +Metadata: + +=== Element 1639 === +Category: UncategorizedText +Text: 49,2 +Metadata: + +=== Element 1640 === +Category: UncategorizedText +Text: 7,4 +Metadata: + +=== Element 1641 === +Category: UncategorizedText +Text: 2,9 +Metadata: + +=== Element 1642 === +Category: UncategorizedText +Text: 1,8 +Metadata: + +=== Element 1643 === +Category: UncategorizedText +Text: 38,0 +Metadata: + +=== Element 1644 === +Category: UncategorizedText +Text: 38,0 +Metadata: + +=== Element 1645 === +Category: UncategorizedText +Text: 37,5 +Metadata: + +=== Element 1646 === +Category: UncategorizedText +Text: | +Metadata: + +=== Element 1647 === +Category: UncategorizedText +Text: 96,4 +Metadata: + +=== Element 1648 === +Category: UncategorizedText +Text: 92,6 +Metadata: + +=== Element 1649 === +Category: UncategorizedText +Text: 86,9 +Metadata: + +=== Element 1650 === +Category: UncategorizedText +Text: 103,8 +Metadata: + +=== Element 1651 === +Category: UncategorizedText +Text: 95,5 +Metadata: + +=== Element 1652 === +Category: UncategorizedText +Text: 88,7 +Metadata: + +=== Element 1653 === +Category: Title +Text: Q1-innen +Metadata: + +=== Element 1654 === +Category: UncategorizedText +Text: | +Metadata: + +=== Element 1655 === +Category: Title +Text: Koffer +Metadata: + +=== Element 1656 === +Category: Title +Text: C +Metadata: + +=== Element 1657 === +Category: UncategorizedText +Text: 03.05.2023 13:57:53,000 - +Metadata: + +=== Element 1658 === +Category: UncategorizedText +Text: 03.05.2023 13:57:58,000 +Metadata: + +=== Element 1659 === +Category: UncategorizedText +Text: 5,0 +Metadata: + +=== Element 1660 === +Category: UncategorizedText +Text: 63,4 +Metadata: + +=== Element 1661 === +Category: UncategorizedText +Text: 65,8 +Metadata: + +=== Element 1662 === +Category: UncategorizedText +Text: 65,8 +Metadata: + +=== Element 1663 === +Category: UncategorizedText +Text: 2,4 +Metadata: + +=== Element 1664 === +Category: UncategorizedText +Text: 37,5 +Metadata: + +=== Element 1665 === +Category: UncategorizedText +Text: 102,9 +Metadata: + +=== Element 1666 === +Category: UncategorizedText +Text: | +Metadata: + +=== Element 1667 === +Category: UncategorizedText +Text: 105,3 +Metadata: + +=== Element 1668 === +Category: Header +Text: XXXII +Metadata: + +=== Element 1669 === +Category: UncategorizedText +Text: 62,4 +Metadata: + +=== Element 1670 === +Category: UncategorizedText +Text: 67,8 +Metadata: + +=== Element 1671 === +Category: UncategorizedText +Text: 64,0 +Metadata: + +=== Element 1672 === +Category: UncategorizedText +Text: 58,3 +Metadata: + +=== Element 1673 === +Category: UncategorizedText +Text: 74,3 +Metadata: + +=== Element 1674 === +Category: Header +Text: Anhänge +Metadata: + +=== Element 1675 === +Category: Table +Text: Vorgang Q1-innen Q1-innen Q1-innen Q1-innen Q1-innen Q1-innen Q1-innen Q1-innen Q1-innen Q1-innen Q1-innen Q1-innen Q1-innen Q1-innen Q1-innen Q1-innen Q1-innen Q1-innen Q1-innen Q1-innen Q1-innen Q1-innen Lkw- Typ Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Zone Datum Uhrzeit Start - Ende D 03.05.2023 14:30:18,000 - 03.05.2023 14:30:23,000 D 03.05.2023 14:30:24,000 - 03.05.2023 14:30:29,000 D 03.05.2023 14:30:29,000 - 03.05.2023 14:30:34,000 D 03.05.2023 14:30:34,000 - 03.05.2023 14:30:39,000 D 03.05.2023 14:30:43,000 - 03.05.2023 14:30:48,000 D 03.05.2023 14:33:41,000 - 03.05.2023 14:33:46,000 D 03.05.2023 14:33:46,000 - 03.05.2023 14:33:51,000 D 03.05.2023 14:33:51,000 - 03.05.2023 14:33:56,000 D 03.05.2023 14:33:58,000 - 03.05.2023 14:34:02,000 D 03.05.2023 14:36:16,000 - 03.05.2023 14:36:21,000 D 03.05.2023 14:36:21,000 - 03.05.2023 14:36:26,000 D 03.05.2023 14:36:26,000 - 03.05.2023 14:36:31,000 F 03.05.2023 14:38:11,000 - 03.05.2023 14:38:16,000 F 03.05.2023 14:47:22,000 - 03.05.2023 14:47:27,000 B 03.05.2023 14:47:28,000 - 03.05.2023 14:47:33,000 B 03.05.2023 15:07:12,000 - 03.05.2023 15:07:17,000 B 03.05.2023 15:07:17,000 - 03.05.2023 15:07:22,000 B 03.05.2023 15:08:48,000 - 03.05.2023 15:08:53,000 B 03.05.2023 15:08:53,000 - 03.05.2023 15:08:58,000 B 03.05.2023 15:09:57,000 - 03.05.2023 15:10:02,000 B 03.05.2023 15:10:02,000 - 03.05.2023 15:10:07,000 B 03.05.2023 15:10:07,000 - 03.05.2023 15:10:12,000 03.05.2023 15:10:12,000 - T [s] 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 Laeq [dB(A)] 54,8 60,0 59,7 55,4 58,6 51,7 52,0 50,0 48,5 50,5 53,2 50,8 60,7 53,4 51,1 51,9 56,9 58,7 55,1 55,0 53,1 52,9 LAFmax LAFTeq [dB(A)] [dB(A)] 58,2 58,2 61,8 61,8 64,5 64,5 56,2 56,2 60,7 60,7 61,9 61,9 60,0 60,0 54,3 54,3 52,4 52,4 52,5 52,5 61,8 61,8 55,7 55,7 62,9 62,9 55,0 55,0 52,9 52,9 54,5 54,5 66,9 66,9 61,7 61,7 63,3 63,3 61,7 61,7 56,9 56,9 57,1 57,1 KI [dB(A)] 3,4 1,8 4,8 0,8 2,1 10,2 8,0 4,3 3,9 2,0 8,6 4,9 2,2 1,6 1,8 2,6 10,0 3,0 8,2 6,7 3,8 4,2 r [m] 37,4 37,4 37,4 37,4 37,4 37,4 37,4 37,4 37,4 37,4 37,4 37,4 37,9 37,9 38,0 38,0 38,0 38,0 38,0 38,0 38,0 38,0 LWA,5s [dB(A)] 94,2 99,4 99,1 94,8 98,0 91,1 91,4 89,4 87,9 89,9 92,6 90,2 100,3 93,0 90,7 91,5 96,5 98,3 94,7 94,6 92,7 92,5 LWAmax [dB(A)] 97,6 101,2 103,9 95,6 100,1 101,3 99,4 93,7 91,8 91,9 101,2 95,1 102,5 94,6 92,5 94,1 106,5 101,3 102,9 101,3 96,5 96,7 LWA,1h [dB(A)] 65,7 70,9 70,6 66,3 69,5 62,6 62,9 60,9 59,4 61,4 64,1 61,7 71,7 64,4 62,1 62,9 67,9 69,7 66,1 66,0 64,1 63,9 +Metadata: + +=== Element 1676 === +Category: Title +Text: Q1-innen +Metadata: + +=== Element 1677 === +Category: Title +Text: Koffer +Metadata: + +=== Element 1678 === +Category: Title +Text: B +Metadata: + +=== Element 1679 === +Category: UncategorizedText +Text: 03.05.2023 15:10:17,000 +Metadata: + +=== Element 1680 === +Category: UncategorizedText +Text: 5,0 +Metadata: + +=== Element 1681 === +Category: UncategorizedText +Text: 54,5 +Metadata: + +=== Element 1682 === +Category: UncategorizedText +Text: 61,6 +Metadata: + +=== Element 1683 === +Category: UncategorizedText +Text: 61,6 +Metadata: + +=== Element 1684 === +Category: UncategorizedText +Text: 7,1 +Metadata: + +=== Element 1685 === +Category: UncategorizedText +Text: 38,0 +Metadata: + +=== Element 1686 === +Category: UncategorizedText +Text: 94,1 +Metadata: + +=== Element 1687 === +Category: UncategorizedText +Text: 101,2 +Metadata: + +=== Element 1688 === +Category: Title +Text: Q1-innen +Metadata: + +=== Element 1689 === +Category: UncategorizedText +Text: | +Metadata: + +=== Element 1690 === +Category: Title +Text: Koffer +Metadata: + +=== Element 1691 === +Category: Title +Text: B +Metadata: + +=== Element 1692 === +Category: UncategorizedText +Text: 03.05.2023 15:13:01,000 - +Metadata: + +=== Element 1693 === +Category: Title +Text: en sooo. +Metadata: + +=== Element 1694 === +Category: UncategorizedText +Text: 03.05.2023 15:13:06,000 +Metadata: + +=== Element 1695 === +Category: UncategorizedText +Text: 5,0 +Metadata: + +=== Element 1696 === +Category: UncategorizedText +Text: 60,8 +Metadata: + +=== Element 1697 === +Category: UncategorizedText +Text: 65,2 +Metadata: + +=== Element 1698 === +Category: UncategorizedText +Text: 65,2 +Metadata: + +=== Element 1699 === +Category: UncategorizedText +Text: 4,4 +Metadata: + +=== Element 1700 === +Category: UncategorizedText +Text: 38,0 +Metadata: + +=== Element 1701 === +Category: UncategorizedText +Text: | +Metadata: + +=== Element 1702 === +Category: UncategorizedText +Text: 100,4 +Metadata: + +=== Element 1703 === +Category: UncategorizedText +Text: | +Metadata: + +=== Element 1704 === +Category: UncategorizedText +Text: 104,8 +Metadata: + +=== Element 1705 === +Category: Title +Text: Q1-innen +Metadata: + +=== Element 1706 === +Category: Title +Text: Q1-innen +Metadata: + +=== Element 1707 === +Category: UncategorizedText +Text: | +Metadata: + +=== Element 1708 === +Category: UncategorizedText +Text: | +Metadata: + +=== Element 1709 === +Category: Title +Text: Koffer +Metadata: + +=== Element 1710 === +Category: Title +Text: Koffer +Metadata: + +=== Element 1711 === +Category: Title +Text: B +Metadata: + +=== Element 1712 === +Category: Title +Text: B +Metadata: + +=== Element 1713 === +Category: UncategorizedText +Text: 2023 19113:14.000 2023 1913117.000 +Metadata: + +=== Element 1714 === +Category: UncategorizedText +Text: 03.05.2023 15:13:06,000 - +Metadata: + +=== Element 1715 === +Category: UncategorizedText +Text: 03.05.2023 15:13:11,000 +Metadata: + +=== Element 1716 === +Category: UncategorizedText +Text: 03.05.2023 15:13:12,000 - +Metadata: + +=== Element 1717 === +Category: UncategorizedText +Text: 03.05.2023 15:13:17,000 +Metadata: + +=== Element 1718 === +Category: UncategorizedText +Text: 5,0 +Metadata: + +=== Element 1719 === +Category: UncategorizedText +Text: 5,0 +Metadata: + +=== Element 1720 === +Category: UncategorizedText +Text: 64,9 +Metadata: + +=== Element 1721 === +Category: UncategorizedText +Text: 57,2 +Metadata: + +=== Element 1722 === +Category: UncategorizedText +Text: 68,1 +Metadata: + +=== Element 1723 === +Category: UncategorizedText +Text: 59,8 +Metadata: + +=== Element 1724 === +Category: UncategorizedText +Text: 68,1 +Metadata: + +=== Element 1725 === +Category: UncategorizedText +Text: 59,8 +Metadata: + +=== Element 1726 === +Category: UncategorizedText +Text: 3,2 +Metadata: + +=== Element 1727 === +Category: UncategorizedText +Text: 2,6 +Metadata: + +=== Element 1728 === +Category: UncategorizedText +Text: 38,0 +Metadata: + +=== Element 1729 === +Category: UncategorizedText +Text: 38,0 +Metadata: + +=== Element 1730 === +Category: UncategorizedText +Text: | +Metadata: + +=== Element 1731 === +Category: UncategorizedText +Text: 104,5 +Metadata: + +=== Element 1732 === +Category: UncategorizedText +Text: 96,8 +Metadata: + +=== Element 1733 === +Category: UncategorizedText +Text: | +Metadata: + +=== Element 1734 === +Category: UncategorizedText +Text: 107,7 +Metadata: + +=== Element 1735 === +Category: UncategorizedText +Text: 99,4 +Metadata: + +=== Element 1736 === +Category: Title +Text: Q1-innen +Metadata: + +=== Element 1737 === +Category: UncategorizedText +Text: | +Metadata: + +=== Element 1738 === +Category: Title +Text: Koffer +Metadata: + +=== Element 1739 === +Category: Title +Text: B +Metadata: + +=== Element 1740 === +Category: UncategorizedText +Text: 03.05.2023 15:15:45,000 - +Metadata: + +=== Element 1741 === +Category: UncategorizedText +Text: 03.05.2023 15:15:50,000 +Metadata: + +=== Element 1742 === +Category: UncategorizedText +Text: 5,0 +Metadata: + +=== Element 1743 === +Category: UncategorizedText +Text: | +Metadata: + +=== Element 1744 === +Category: UncategorizedText +Text: 63,3 +Metadata: + +=== Element 1745 === +Category: UncategorizedText +Text: 65,3 +Metadata: + +=== Element 1746 === +Category: UncategorizedText +Text: 65,3 +Metadata: + +=== Element 1747 === +Category: UncategorizedText +Text: 2,0 +Metadata: + +=== Element 1748 === +Category: UncategorizedText +Text: 38,0 +Metadata: + +=== Element 1749 === +Category: UncategorizedText +Text: 102,9 +Metadata: + +=== Element 1750 === +Category: UncategorizedText +Text: | +Metadata: + +=== Element 1751 === +Category: UncategorizedText +Text: 104,9 +Metadata: + +=== Element 1752 === +Category: Header +Text: XXXIII +Metadata: + +=== Element 1753 === +Category: UncategorizedText +Text: 65,5 +Metadata: + +=== Element 1754 === +Category: UncategorizedText +Text: 71,8 +Metadata: + +=== Element 1755 === +Category: UncategorizedText +Text: 75,9 +Metadata: + +=== Element 1756 === +Category: UncategorizedText +Text: 68,2 +Metadata: + +=== Element 1757 === +Category: UncategorizedText +Text: 74,3 +Metadata: + +=== Element 1758 === +Category: Header +Text: Anhänge +Metadata: + +=== Element 1759 === +Category: Table +Text: Vorgang Q1-innen Q1-innen Q1-innen Q1-innen Q1-innen Q1-innen Q1-innen Q1-innen Q1-innen Q1-innen Q1-innen Q1-innen Q1-innen Q1-innen Q1-innen Q1-innen Q1-innen Q1-innen Q1-innen Q1-innen Q1-innen Q1-innen Lkw- Typ Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Zone Datum Uhrzeit Start - Ende B 03.05.2023 15:15:50,000 - 03.05.2023 15:15:55,000 B 03.05.2023 15:15:55,000 - 03.05.2023 15:16:00,000 B 03.05.2023 15:16:00,000 - 03.05.2023 15:16:05,000 B 03.05.2023 15:16:05,000 - 03.05.2023 15:16:10,000 B 03.05.2023 15:17:02,000 - 03.05.2023 15:17:07,000 B 03.05.2023 15:17:53,000 - 03.05.2023 15:17:58,000 B 03.05.2023 15:17:58,000 - 03.05.2023 15:18:03,000 B 03.05.2023 15:18:31,000 - 03.05.2023 15:18:36,000 B 03.05.2023 15:19:13,000 - 03.05.2023 15:19:18,000 B 03.05.2023 15:19:18,000 - 03.05.2023 15:19:23,000 B 03.05.2023 15:24:11,000 - 03.05.2023 15:24:16,000 B 03.05.2023 15:24:16,000 - 03.05.2023 15:24:21,000 F 03.05.2023 15:29:22,000 - 03.05.2023 15:29:27,000 B 03.05.2023 15:30:24,000 - 03.05.2023 15:30:29,000 B 03.05.2023 15:32:21,000 - 03.05.2023 15:32:26,000 B 03.05.2023 15:32:26,000 - 03.05.2023 15:32:31,000 B 03.05.2023 15:32:31,000 - 03.05.2023 15:32:36,000 B 03.05.2023 15:33:10,000 - 03.05.2023 15:33:15,000 B 03.05.2023 15:34:38,000 - 03.05.2023 15:34:43,000 B 03.05.2023 15:36:20,000 - 03.05.2023 15:36:25,000 B 03.05.2023 15:38:11,000 - 03.05.2023 15:38:16,000 B 03.05.2023 15:38:16,000 - 03.05.2023 15:38:21,000 03.05.2023 15:41:29,000 - T [s] 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 Laeq [dB(A)] 61,9 59,7 61,0 55,9 59,8 59,0 60,1 56,6 56,3 51,9 51,8 53,4 54,1 52,8 54,3 57,5 55,3 57,9 58,1 61,1 63,9 63,5 LAFmax LAFTeq [dB(A)] [dB(A)] 63,3 63,3 62,8 62,8 66,6 66,6 59,2 59,2 62,3 62,3 62,6 62,6 62,9 62,9 62,7 62,7 62,0 62,0 53,9 53,9 56,9 56,9 57,2 57,2 59,8 59,8 59,5 59,5 59,4 59,4 63,0 63,0 59,8 59,8 61,5 61,5 61,5 61,5 69,4 69,4 65,9 65,9 65,2 65,2 KI [dB(A)] 1,4 3,1 5,6 3,3 2,5 3,6 2,8 6,1 5,7 2,0 5,1 3,8 5,7 6,7 5,1 5,5 4,5 3,6 3,4 8,3 2,0 1,7 r [m] 38,0 38,0 38,0 38,0 38,0 38,0 38,0 38,0 38,0 38,0 38,0 38,0 37,9 38,0 38,0 38,0 38,0 38,0 38,0 38,0 38,0 38,0 LWA,5s [dB(A)] 101,5 99,3 100,6 95,5 99,4 98,6 99,7 96,2 95,9 91,5 91,4 93,0 93,7 92,4 93,9 97,1 94,9 97,5 97,7 100,7 103,5 103,1 LWAmax [dB(A)] 102,9 102,4 106,2 98,8 101,9 102,2 102,5 102,3 101,6 93,5 96,5 96,8 99,4 99,1 99,0 102,6 99,4 101,1 101,1 109,0 105,5 104,8 LWA,1h [dB(A)] 72,9 70,7 72,0 66,9 70,8 70,0 71,1 67,6 67,3 62,9 62,8 64,4 65,1 63,8 65,3 68,5 66,3 68,9 69,1 72,1 74,9 74,5 +Metadata: + +=== Element 1760 === +Category: Title +Text: Q1-innen +Metadata: + +=== Element 1761 === +Category: Title +Text: Koffer +Metadata: + +=== Element 1762 === +Category: Title +Text: B +Metadata: + +=== Element 1763 === +Category: UncategorizedText +Text: 03.05.2023 15:41:34,000 +Metadata: + +=== Element 1764 === +Category: UncategorizedText +Text: 5,0 +Metadata: + +=== Element 1765 === +Category: UncategorizedText +Text: 59,2 +Metadata: + +=== Element 1766 === +Category: UncategorizedText +Text: 61,4 +Metadata: + +=== Element 1767 === +Category: UncategorizedText +Text: 61,4 +Metadata: + +=== Element 1768 === +Category: UncategorizedText +Text: 2,2 +Metadata: + +=== Element 1769 === +Category: UncategorizedText +Text: 38,0 +Metadata: + +=== Element 1770 === +Category: UncategorizedText +Text: 98,8 +Metadata: + +=== Element 1771 === +Category: UncategorizedText +Text: 101,0 +Metadata: + +=== Element 1772 === +Category: Title +Text: Q1-innen +Metadata: + +=== Element 1773 === +Category: UncategorizedText +Text: | +Metadata: + +=== Element 1774 === +Category: Title +Text: Koffer +Metadata: + +=== Element 1775 === +Category: Title +Text: B +Metadata: + +=== Element 1776 === +Category: UncategorizedText +Text: 03.05.2023 15:41:34,000 - +Metadata: + +=== Element 1777 === +Category: UncategorizedText +Text: ne 000 +Metadata: + +=== Element 1778 === +Category: UncategorizedText +Text: 03.05.2023 15:41:39,000 +Metadata: + +=== Element 1779 === +Category: UncategorizedText +Text: 5,0 +Metadata: + +=== Element 1780 === +Category: UncategorizedText +Text: 61,0 +Metadata: + +=== Element 1781 === +Category: UncategorizedText +Text: 64,6 +Metadata: + +=== Element 1782 === +Category: UncategorizedText +Text: 64,6 +Metadata: + +=== Element 1783 === +Category: UncategorizedText +Text: 3,6 +Metadata: + +=== Element 1784 === +Category: UncategorizedText +Text: 38,0 +Metadata: + +=== Element 1785 === +Category: UncategorizedText +Text: | +Metadata: + +=== Element 1786 === +Category: UncategorizedText +Text: 100,6 +Metadata: + +=== Element 1787 === +Category: UncategorizedText +Text: | +Metadata: + +=== Element 1788 === +Category: UncategorizedText +Text: 104,2 +Metadata: + +=== Element 1789 === +Category: Title +Text: Q1-innen +Metadata: + +=== Element 1790 === +Category: Title +Text: Q1-innen +Metadata: + +=== Element 1791 === +Category: UncategorizedText +Text: | +Metadata: + +=== Element 1792 === +Category: UncategorizedText +Text: | +Metadata: + +=== Element 1793 === +Category: Title +Text: Koffer +Metadata: + +=== Element 1794 === +Category: Title +Text: Koffer +Metadata: + +=== Element 1795 === +Category: Title +Text: B +Metadata: + +=== Element 1796 === +Category: Title +Text: B +Metadata: + +=== Element 1797 === +Category: UncategorizedText +Text: 2023 19.41:44,000 ne 132.000 +Metadata: + +=== Element 1798 === +Category: UncategorizedText +Text: 03.05.2023 15:41:39,000 - +Metadata: + +=== Element 1799 === +Category: UncategorizedText +Text: 03.05.2023 15:43:27,000 - +Metadata: + +=== Element 1800 === +Category: UncategorizedText +Text: 5,0 +Metadata: + +=== Element 1801 === +Category: UncategorizedText +Text: 5,0 +Metadata: + +=== Element 1802 === +Category: UncategorizedText +Text: 61,7 +Metadata: + +=== Element 1803 === +Category: UncategorizedText +Text: 51,1 +Metadata: + +=== Element 1804 === +Category: UncategorizedText +Text: 63,3 +Metadata: + +=== Element 1805 === +Category: UncategorizedText +Text: 54,9 +Metadata: + +=== Element 1806 === +Category: UncategorizedText +Text: 63,3 +Metadata: + +=== Element 1807 === +Category: UncategorizedText +Text: 54,9 +Metadata: + +=== Element 1808 === +Category: UncategorizedText +Text: 1,6 +Metadata: + +=== Element 1809 === +Category: UncategorizedText +Text: 3,8 +Metadata: + +=== Element 1810 === +Category: UncategorizedText +Text: 38,0 +Metadata: + +=== Element 1811 === +Category: UncategorizedText +Text: 38,0 +Metadata: + +=== Element 1812 === +Category: UncategorizedText +Text: | +Metadata: + +=== Element 1813 === +Category: UncategorizedText +Text: 101,3 +Metadata: + +=== Element 1814 === +Category: UncategorizedText +Text: 90,7 +Metadata: + +=== Element 1815 === +Category: UncategorizedText +Text: | +Metadata: + +=== Element 1816 === +Category: UncategorizedText +Text: 102,9 +Metadata: + +=== Element 1817 === +Category: UncategorizedText +Text: 94,5 +Metadata: + +=== Element 1818 === +Category: Title +Text: Q1-innen +Metadata: + +=== Element 1819 === +Category: UncategorizedText +Text: | +Metadata: + +=== Element 1820 === +Category: Title +Text: Koffer +Metadata: + +=== Element 1821 === +Category: Title +Text: B +Metadata: + +=== Element 1822 === +Category: UncategorizedText +Text: 03.05.2023 15:44:57,000 - +Metadata: + +=== Element 1823 === +Category: UncategorizedText +Text: 03.05.2023 15:45:02,000 +Metadata: + +=== Element 1824 === +Category: UncategorizedText +Text: 5,0 +Metadata: + +=== Element 1825 === +Category: UncategorizedText +Text: | +Metadata: + +=== Element 1826 === +Category: UncategorizedText +Text: 48,8 +Metadata: + +=== Element 1827 === +Category: UncategorizedText +Text: 51,3 +Metadata: + +=== Element 1828 === +Category: UncategorizedText +Text: 51,3 +Metadata: + +=== Element 1829 === +Category: UncategorizedText +Text: 2,5 +Metadata: + +=== Element 1830 === +Category: UncategorizedText +Text: 38,0 +Metadata: + +=== Element 1831 === +Category: UncategorizedText +Text: 88,4 +Metadata: + +=== Element 1832 === +Category: UncategorizedText +Text: 90,9 +Metadata: + +=== Element 1833 === +Category: Header +Text: XXXIV +Metadata: + +=== Element 1834 === +Category: UncategorizedText +Text: 70,2 +Metadata: + +=== Element 1835 === +Category: UncategorizedText +Text: 72,0 +Metadata: + +=== Element 1836 === +Category: UncategorizedText +Text: 72,7 +Metadata: + +=== Element 1837 === +Category: UncategorizedText +Text: 62,1 +Metadata: + +=== Element 1838 === +Category: UncategorizedText +Text: 59,8 +Metadata: + +=== Element 1839 === +Category: Header +Text: Anhänge +Metadata: + +=== Element 1840 === +Category: Table +Text: Vorgang Lkw- Typ Zone Datum Uhrzeit Start - Ende Q1-innen Koffer B 03.05.2023 15:45:02,000 - 03.05.2023 15:45:07,000 Q1-innen Koffer B 03.05.2023 15:47:43,000 - 03.05.2023 15:47:48,000 Q1-innen Koffer B 03.05.2023 15:51:15,000 - 03.05.2023 15:51:20,000 Q1-innen Koffer B 03.05.2023 15:51:20,000 - 03.05.2023 15:51:25,000 T [s] 5,0 5,0 5,0 5,0 Laeq [dB(A)] 55,6 53,7 50,6 50,4 LAFmax LAFTeq [dB(A)] [dB(A)] 65,8 65,8 59,0 59,0 54,8 54,8 53,5 53,5 KI [dB(A)] 10,2 5,3 4,2 3,1 r [m] 38,0 38,0 38,0 38,0 LWA,5s [dB(A)] 95,2 93,3 90,2 90,0 LWAmax [dB(A)] 105,4 98,6 94,4 93,1 LWA,1h [dB(A)] 66,6 64,7 61,6 61,4 +Metadata: + +=== Element 1841 === +Category: FigureCaption +Text: Verladevorgang Gabelhubwagen: +Metadata: + +=== Element 1842 === +Category: Table +Text: Vorgang Lkw- Typ Zone Datum Uhrzeit Start - Ende 1-Q2 Koffer B 17.04.2023 13:24:17,000 - 17.04.2023 13:24:22,000 1-Q2 Koffer C 17.04.2023 13:28:22,000 - 17.04.2023 13:28:27,000 1-Q2 Koffer C 17.04.2023 14:15:24,000 - 17.04.2023 14:15:29,000 1-Q2 Koffer C 17.04.2023 14:22:14,000 - 17.04.2023 14:22:19,000 1-Q2 Koffer C 17.04.2023 14:26:58,000 - 17.04.2023 14:27:03,000 1-Q2 Koffer C 17.04.2023 14:27:34,000 - 17.04.2023 14:27:39,000 1-Q2 Koffer C 17.04.2023 14:33:18,000 - 17.04.2023 14:33:23,000 1-Q2 Koffer C 17.04.2023 14:34:59,000 - 17.04.2023 14:35:04,000 2-Q2 Koffer B 17.04.2023 13:24:27,000 - 17.04.2023 13:24:32,000 2-Q2 Koffer C 17.04.2023 13:28:33,000 - 17.04.2023 13:28:38,000 2-Q2 Koffer C 17.04.2023 14:15:36,000 - 17.04.2023 14:15:41,000 2-Q2 Koffer C 17.04.2023 14:27:12,000 - 17.04.2023 14:27:17,000 2-Q2 Koffer C 17.04.2023 14:27:48,000 - 17.04.2023 14:27:53,000 2-Q2 Koffer C 17.04.2023 14:33:31,000 - 17.04.2023 14:33:36,000 2-Q2 Koffer C 17.04.2023 14:35:06,000 - 17.04.2023 14:35:11,000 2-Q2 Koffer C 17.04.2023 14:35:18,000 - 17.04.2023 14:35:23,000 Q2-innen Koffer B 17.04.2023 13:24:22,000 - 17.04.2023 13:24:27,000 Q2-innen Koffer C 17.04.2023 13:28:27,000 - 17.04.2023 13:28:32,000 Q2-innen Koffer C 17.04.2023 14:15:29,000 - 17.04.2023 14:15:34,000 Q2-innen Koffer C 17.04.2023 14:27:07,000 - 17.04.2023 14:27:11,000 Q2-innen Koffer C 17.04.2023 14:27:39,000 - 17.04.2023 14:27:44,000 T [s] 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 Laeq [dB(A)] 63,1 72,5 64,9 60,3 63,2 65,6 63,9 61,7 63,8 60,4 64,9 60,1 69,8 63,9 62,6 65,3 58,5 65,1 63,4 52,5 62,3 LAFmax LAFTeq [dB(A)] [dB(A)] 71,9 71,9 74,6 74,6 69,2 69,2 63,5 63,5 72,2 72,2 73,2 73,2 69,7 69,7 66,7 66,7 72,7 72,7 64,0 64,0 71,4 71,4 66,7 66,7 74,4 74,4 69,2 69,2 70,9 70,9 72,7 72,7 68,7 68,7 69,4 69,4 68,4 68,4 55,4 55,4 68,1 68,1 KI [dB(A)] 8,8 2,1 4,3 3,2 9,0 7,6 5,8 5,0 8,9 3,6 6,5 6,6 4,6 5,3 8,3 7,4 10,2 4,3 5,0 2,9 5,8 r [m] 38,0 37,5 37,5 37,5 37,5 37,5 37,5 37,5 38,0 37,5 37,5 37,5 37,5 37,5 37,5 37,5 38,0 37,5 37,5 37,5 37,5 LWA,5s [dB(A)] 102,7 112,0 104,4 99,8 102,7 105,1 103,4 101,2 103,4 99,9 104,4 99,6 109,3 103,4 102,1 104,8 98,1 104,6 102,9 92,0 101,8 LWAmax [dB(A)] 111,5 114,1 108,7 103,0 111,7 112,7 109,2 106,2 112,3 103,5 110,9 106,2 113,9 108,7 110,4 112,2 108,3 108,9 107,9 94,9 107,6 LWA,1h [dB(A)] 74,1 83,4 75,8 71,2 74,1 76,5 74,8 72,6 74,8 71,3 75,8 71,0 80,7 74,8 73,5 76,2 69,5 76,0 74,3 63,4 73,2 +Metadata: + +=== Element 1843 === +Category: Header +Text: XXXV +Metadata: + +=== Element 1844 === +Category: Header +Text: Anhänge +Metadata: + +=== Element 1845 === +Category: Table +Text: Vorgang Q2-innen Q2-innen 1-Q2 1-Q2 1-Q2 1-Q2 1-Q2 1-Q2 1-Q2 1-Q2 1-Q2 1-Q2 1-Q2 1-Q2 2-Q2 2-Q2 2-Q2 2-Q2 2-Q2 2-Q2 2-Q2 2-Q2 Lkw- Typ Koffer Koffer Koffer WB WB WB WB WB WB WB WB WB Koffer Koffer Koffer WB WB WB WB WB WB WB Zone Datum Uhrzeit Start - Ende C 17.04.2023 14:33:23,000 - 17.04.2023 14:33:28,000 C 17.04.2023 14:35:12,000 - 17.04.2023 14:35:17,000 C 26.04.2023 13:57:42,000 - 26.04.2023 13:57:47,000 E 26.04.2023 13:58:30,000 - 26.04.2023 13:58:35,000 E 26.04.2023 13:59:44,000 - 26.04.2023 13:59:49,000 E 26.04.2023 14:01:53,000 - 26.04.2023 14:01:58,000 E 26.04.2023 14:02:48,000 - 26.04.2023 14:02:53,000 E 26.04.2023 14:03:50,000 - 26.04.2023 14:03:55,000 E 26.04.2023 14:04:40,000 - 26.04.2023 14:04:45,000 E 26.04.2023 14:06:00,000 - 26.04.2023 14:06:05,000 E 26.04.2023 14:06:45,000 - 26.04.2023 14:06:50,000 E 26.04.2023 14:07:39,000 - 26.04.2023 14:07:44,000 B 26.04.2023 14:12:53,000 - 26.04.2023 14:12:58,000 C 26.04.2023 14:48:38,000 - 26.04.2023 14:48:43,000 C 26.04.2023 13:57:52,000 - 26.04.2023 13:57:57,000 E 26.04.2023 13:58:51,000 - 26.04.2023 13:58:56,000 E 26.04.2023 13:59:58,000 - 26.04.2023 14:00:03,000 E 26.04.2023 14:01:36,000 - 26.04.2023 14:01:41,000 E 26.04.2023 14:02:03,000 - 26.04.2023 14:02:08,000 E 26.04.2023 14:02:58,000 - 26.04.2023 14:03:03,000 E 26.04.2023 14:06:10,000 - 26.04.2023 14:06:15,000 E 26.04.2023 14:06:55,000 - 26.04.2023 14:07:00,000 26.04.2023 14:07:49,000 - T [s] 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 Laeq [dB(A)] 61,4 59,8 63,0 54,9 52,3 54,2 56,3 61,2 60,8 49,3 52,8 52,5 55,6 54,8 63,4 63,5 53,9 54,8 53,5 53,0 52,5 52,4 LAFmax LAFTeq [dB(A)] [dB(A)] 67,0 67,0 62,2 62,2 72,9 72,9 60,7 60,7 57,7 57,7 60,1 60,1 62,0 62,0 71,6 71,6 67,4 67,4 51,2 51,2 54,5 54,5 56,9 56,9 60,1 60,1 61,0 61,0 73,0 73,0 72,5 72,5 60,4 60,4 59,0 59,0 58,1 58,1 59,1 59,1 58,6 58,6 59,3 59,3 KI [dB(A)] 5,6 2,4 9,9 5,8 5,4 5,9 5,7 10,4 6,6 1,9 1,7 4,4 4,5 6,2 9,6 9,0 6,5 4,2 4,6 6,1 6,1 6,9 r [m] 37,5 37,5 37,5 37,4 37,4 37,4 37,4 37,4 37,4 37,4 37,4 37,4 38,0 37,5 37,5 37,4 37,4 37,4 37,4 37,4 37,4 37,4 LWA,5s [dB(A)] 100,9 99,3 102,5 94,3 91,7 93,6 95,7 100,6 100,2 88,7 92,2 91,9 95,2 94,3 102,9 102,9 93,3 94,2 92,9 92,4 91,9 91,8 LWAmax [dB(A)] 106,5 101,7 112,4 100,1 97,1 99,5 101,4 111,0 106,8 90,6 93,9 96,3 99,7 100,5 112,5 111,9 99,8 98,4 97,5 98,5 98,0 98,7 LWA,1h [dB(A)] 72,3 70,7 73,9 65,8 63,2 65,1 67,2 72,1 71,7 60,2 63,7 63,4 66,6 65,7 74,3 74,4 64,8 65,7 64,4 63,9 63,4 63,3 +Metadata: + +=== Element 1846 === +Category: UncategorizedText +Text: 2-Q2 +Metadata: + +=== Element 1847 === +Category: Title +Text: WB +Metadata: + +=== Element 1848 === +Category: Title +Text: E +Metadata: + +=== Element 1849 === +Category: UncategorizedText +Text: 26.04.2023 14:07:54,000 +Metadata: + +=== Element 1850 === +Category: UncategorizedText +Text: 5,0 +Metadata: + +=== Element 1851 === +Category: UncategorizedText +Text: 66,4 +Metadata: + +=== Element 1852 === +Category: UncategorizedText +Text: 71,4 +Metadata: + +=== Element 1853 === +Category: UncategorizedText +Text: 71,4 +Metadata: + +=== Element 1854 === +Category: UncategorizedText +Text: 5,0 +Metadata: + +=== Element 1855 === +Category: UncategorizedText +Text: 37,4 +Metadata: + +=== Element 1856 === +Category: UncategorizedText +Text: 105,8 +Metadata: + +=== Element 1857 === +Category: UncategorizedText +Text: 110,8 +Metadata: + +=== Element 1858 === +Category: UncategorizedText +Text: 2-Q2 +Metadata: + +=== Element 1859 === +Category: UncategorizedText +Text: | +Metadata: + +=== Element 1860 === +Category: Title +Text: Koffer +Metadata: + +=== Element 1861 === +Category: Title +Text: B +Metadata: + +=== Element 1862 === +Category: UncategorizedText +Text: 26.04.2023 14:13:03,000 - +Metadata: + +=== Element 1863 === +Category: UncategorizedText +Text: EN 108.000. +Metadata: + +=== Element 1864 === +Category: UncategorizedText +Text: 26.04.2023 14:13:08,000 +Metadata: + +=== Element 1865 === +Category: UncategorizedText +Text: 5,0 +Metadata: + +=== Element 1866 === +Category: UncategorizedText +Text: 68,6 +Metadata: + +=== Element 1867 === +Category: UncategorizedText +Text: 81,0 +Metadata: + +=== Element 1868 === +Category: UncategorizedText +Text: 81,0 +Metadata: + +=== Element 1869 === +Category: UncategorizedText +Text: | +Metadata: + +=== Element 1870 === +Category: UncategorizedText +Text: 12,4 +Metadata: + +=== Element 1871 === +Category: UncategorizedText +Text: 38,0 +Metadata: + +=== Element 1872 === +Category: UncategorizedText +Text: 108,2 +Metadata: + +=== Element 1873 === +Category: UncategorizedText +Text: | +Metadata: + +=== Element 1874 === +Category: UncategorizedText +Text: 120,6 +Metadata: + +=== Element 1875 === +Category: UncategorizedText +Text: 2-Q2 +Metadata: + +=== Element 1876 === +Category: UncategorizedText +Text: 2-Q2 +Metadata: + +=== Element 1877 === +Category: UncategorizedText +Text: | +Metadata: + +=== Element 1878 === +Category: UncategorizedText +Text: | +Metadata: + +=== Element 1879 === +Category: Title +Text: Koffer +Metadata: + +=== Element 1880 === +Category: Title +Text: Koffer +Metadata: + +=== Element 1881 === +Category: Title +Text: C +Metadata: + +=== Element 1882 === +Category: Title +Text: C +Metadata: + +=== Element 1883 === +Category: UncategorizedText +Text: 2023 14.49:03.000 2023 1917:21.000 +Metadata: + +=== Element 1884 === +Category: UncategorizedText +Text: 26.04.2023 14:48:57,000 - +Metadata: + +=== Element 1885 === +Category: UncategorizedText +Text: 26.04.2023 14:49:02,000 +Metadata: + +=== Element 1886 === +Category: UncategorizedText +Text: 26.04.2023 15:17:16,000 - +Metadata: + +=== Element 1887 === +Category: UncategorizedText +Text: 26.04.2023 15:17:21,000 +Metadata: + +=== Element 1888 === +Category: UncategorizedText +Text: 5,0 +Metadata: + +=== Element 1889 === +Category: UncategorizedText +Text: 5,0 +Metadata: + +=== Element 1890 === +Category: UncategorizedText +Text: 58,1 +Metadata: + +=== Element 1891 === +Category: UncategorizedText +Text: 61,1 +Metadata: + +=== Element 1892 === +Category: UncategorizedText +Text: 66,7 +Metadata: + +=== Element 1893 === +Category: UncategorizedText +Text: 66,7 +Metadata: + +=== Element 1894 === +Category: UncategorizedText +Text: 69,2 +Metadata: + +=== Element 1895 === +Category: UncategorizedText +Text: 66,7 +Metadata: + +=== Element 1896 === +Category: UncategorizedText +Text: 69,2 +Metadata: + +=== Element 1897 === +Category: UncategorizedText +Text: 8,6 +Metadata: + +=== Element 1898 === +Category: UncategorizedText +Text: 8,1 +Metadata: + +=== Element 1899 === +Category: UncategorizedText +Text: 37,5 +Metadata: + +=== Element 1900 === +Category: UncategorizedText +Text: 37,5 +Metadata: + +=== Element 1901 === +Category: UncategorizedText +Text: | +Metadata: + +=== Element 1902 === +Category: UncategorizedText +Text: 97,6 +Metadata: + +=== Element 1903 === +Category: UncategorizedText +Text: 100,6 +Metadata: + +=== Element 1904 === +Category: UncategorizedText +Text: | +Metadata: + +=== Element 1905 === +Category: UncategorizedText +Text: 106,2 +Metadata: + +=== Element 1906 === +Category: UncategorizedText +Text: 108,7 +Metadata: + +=== Element 1907 === +Category: Title +Text: Q2-innen +Metadata: + +=== Element 1908 === +Category: UncategorizedText +Text: | +Metadata: + +=== Element 1909 === +Category: Title +Text: Koffer +Metadata: + +=== Element 1910 === +Category: Title +Text: C +Metadata: + +=== Element 1911 === +Category: UncategorizedText +Text: 26.04.2023 13:57:47,000 - +Metadata: + +=== Element 1912 === +Category: UncategorizedText +Text: 26.04.2023 13:57:52,000 +Metadata: + +=== Element 1913 === +Category: UncategorizedText +Text: 5,0 +Metadata: + +=== Element 1914 === +Category: UncategorizedText +Text: | +Metadata: + +=== Element 1915 === +Category: UncategorizedText +Text: 59,6 +Metadata: + +=== Element 1916 === +Category: UncategorizedText +Text: 69,2 +Metadata: + +=== Element 1917 === +Category: UncategorizedText +Text: 69,2 +Metadata: + +=== Element 1918 === +Category: UncategorizedText +Text: 9,6 +Metadata: + +=== Element 1919 === +Category: UncategorizedText +Text: 37,5 +Metadata: + +=== Element 1920 === +Category: UncategorizedText +Text: 99,1 +Metadata: + +=== Element 1921 === +Category: UncategorizedText +Text: 108,7 +Metadata: + +=== Element 1922 === +Category: Header +Text: XXXVI +Metadata: + +=== Element 1923 === +Category: UncategorizedText +Text: 77,3 +Metadata: + +=== Element 1924 === +Category: UncategorizedText +Text: 79,6 +Metadata: + +=== Element 1925 === +Category: UncategorizedText +Text: 69,0 +Metadata: + +=== Element 1926 === +Category: UncategorizedText +Text: 72,0 +Metadata: + +=== Element 1927 === +Category: UncategorizedText +Text: 70,5 +Metadata: + +=== Element 1928 === +Category: Header +Text: Anhänge +Metadata: + +=== Element 1929 === +Category: Table +Text: Vorgang Lkw- Typ Q2-innen WB Q2-innen WB Q2-innen WB Q2-innen WB Q2-innen WB Q2-innen WB Q2-innen WB Q2-innen WB Q2-innen WB Q2-innen Koffer Q2-innen Koffer Q2-innen Koffer Q2-innen Koffer 1-Q2 Koffer 1-Q2 Koffer 1-Q2 Koffer 1-Q2 Koffer 1-Q2 Koffer 1-Q2 Koffer 1-Q2 Koffer 1-Q2 Koffer 1-Q2 Koffer Zone Datum Uhrzeit Start - Ende E 26.04.2023 13:58:35,000 - 26.04.2023 13:58:40,000 E 26.04.2023 13:59:51,000 - 26.04.2023 13:59:56,000 E 26.04.2023 14:01:58,000 - 26.04.2023 14:02:03,000 E 26.04.2023 14:02:53,000 - 26.04.2023 14:02:58,000 E 26.04.2023 14:03:55,000 - 26.04.2023 14:04:00,000 E 26.04.2023 14:04:45,000 - 26.04.2023 14:04:50,000 E 26.04.2023 14:06:05,000 - 26.04.2023 14:06:10,000 E 26.04.2023 14:06:50,000 - 26.04.2023 14:06:55,000 E 26.04.2023 14:07:44,000 - 26.04.2023 14:07:49,000 B 26.04.2023 14:12:58,000 - 26.04.2023 14:13:03,000 C 26.04.2023 14:48:47,000 - 26.04.2023 14:48:52,000 C 26.04.2023 14:48:52,000 - 26.04.2023 14:48:57,000 C 26.04.2023 14:49:02,000 - 26.04.2023 14:49:07,000 C 27.04.2023 14:14:58,000 - 27.04.2023 14:15:03,000 C 27.04.2023 14:19:21,000 - 27.04.2023 14:19:26,000 C 27.04.2023 14:19:59,000 - 27.04.2023 14:20:04,000 C 27.04.2023 14:20:42,000 - 27.04.2023 14:20:47,000 C 27.04.2023 14:21:07,000 - 27.04.2023 14:21:12,000 C 27.04.2023 14:23:21,000 - 27.04.2023 14:23:26,000 C 27.04.2023 14:24:22,000 - 27.04.2023 14:24:27,000 C 27.04.2023 14:24:38,000 - 27.04.2023 14:24:43,000 C 27.04.2023 14:25:13,000 - 27.04.2023 14:25:18,000 27.04.2023 14:28:10,000 - T [s] 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 Laeq [dB(A)] 58,1 51,0 52,9 48,7 59,2 59,7 51,2 53,2 54,1 56,7 54,0 55,7 56,0 62,2 62,2 54,6 54,2 56,2 56,5 54,0 63,4 52,8 LAFmax LAFTeq [dB(A)] [dB(A)] 65,1 65,1 52,8 52,8 55,8 55,8 52,2 52,2 61,8 61,8 63,2 63,2 55,2 55,2 59,1 59,1 56,9 56,9 62,1 62,1 58,2 58,2 63,8 63,8 60,6 60,6 70,0 70,0 70,0 70,0 61,2 61,2 59,9 59,9 65,4 65,4 61,2 61,2 56,0 56,0 74,1 74,1 58,5 58,5 KI [dB(A)] 7,0 1,8 2,9 3,5 2,6 3,5 4,0 5,9 2,8 5,4 4,2 8,1 4,6 7,8 7,8 6,6 5,7 9,2 4,7 2,0 10,7 5,7 r [m] 37,4 37,4 37,4 37,4 37,4 37,4 37,4 37,4 37,4 38,0 37,5 37,5 37,5 37,5 37,5 37,5 37,5 37,5 37,5 37,5 37,5 37,5 LWA,5s [dB(A)] 97,5 90,4 92,3 88,1 98,6 99,1 90,6 92,6 93,5 96,3 93,5 95,2 95,5 101,7 101,7 94,1 93,7 95,7 96,0 93,5 102,9 92,3 LWAmax [dB(A)] 104,5 92,2 95,2 91,6 101,2 102,6 94,6 98,5 96,3 101,7 97,7 103,3 100,1 109,5 109,5 100,7 99,4 104,9 100,7 95,5 113,6 98,0 LWA,1h [dB(A)] 69,0 61,9 63,8 59,6 70,1 70,6 62,1 64,1 65,0 67,7 64,9 66,6 66,9 73,1 73,1 65,5 65,1 67,1 67,4 64,9 74,3 63,7 +Metadata: + +=== Element 1930 === +Category: UncategorizedText +Text: 1-Q2 +Metadata: + +=== Element 1931 === +Category: Title +Text: Koffer +Metadata: + +=== Element 1932 === +Category: Title +Text: C +Metadata: + +=== Element 1933 === +Category: UncategorizedText +Text: 27.04.2023 14:28:15,000 +Metadata: + +=== Element 1934 === +Category: UncategorizedText +Text: 5,0 +Metadata: + +=== Element 1935 === +Category: UncategorizedText +Text: 54,5 +Metadata: + +=== Element 1936 === +Category: UncategorizedText +Text: 59,7 +Metadata: + +=== Element 1937 === +Category: UncategorizedText +Text: 59,7 +Metadata: + +=== Element 1938 === +Category: UncategorizedText +Text: 5,2 +Metadata: + +=== Element 1939 === +Category: UncategorizedText +Text: 37,5 +Metadata: + +=== Element 1940 === +Category: UncategorizedText +Text: 94,0 +Metadata: + +=== Element 1941 === +Category: UncategorizedText +Text: 99,2 +Metadata: + +=== Element 1942 === +Category: UncategorizedText +Text: 1-Q2 +Metadata: + +=== Element 1943 === +Category: UncategorizedText +Text: | +Metadata: + +=== Element 1944 === +Category: Title +Text: Koffer +Metadata: + +=== Element 1945 === +Category: Title +Text: C +Metadata: + +=== Element 1946 === +Category: UncategorizedText +Text: 04.2023 14:30:24.000 +Metadata: + +=== Element 1947 === +Category: UncategorizedText +Text: 27.04.2023 14:30:19,000 - +Metadata: + +=== Element 1948 === +Category: UncategorizedText +Text: 5,0 +Metadata: + +=== Element 1949 === +Category: UncategorizedText +Text: 55,2 +Metadata: + +=== Element 1950 === +Category: UncategorizedText +Text: 61,9 +Metadata: + +=== Element 1951 === +Category: UncategorizedText +Text: 61,9 +Metadata: + +=== Element 1952 === +Category: UncategorizedText +Text: 6,7 +Metadata: + +=== Element 1953 === +Category: UncategorizedText +Text: 37,5 +Metadata: + +=== Element 1954 === +Category: UncategorizedText +Text: 94,7 +Metadata: + +=== Element 1955 === +Category: UncategorizedText +Text: 101,4 +Metadata: + +=== Element 1956 === +Category: UncategorizedText +Text: 1-Q2 +Metadata: + +=== Element 1957 === +Category: UncategorizedText +Text: | +Metadata: + +=== Element 1958 === +Category: Title +Text: Koffer +Metadata: + +=== Element 1959 === +Category: Title +Text: C +Metadata: + +=== Element 1960 === +Category: UncategorizedText +Text: 27.04.2023 14:31:33,000 - +Metadata: + +=== Element 1961 === +Category: UncategorizedText +Text: 3000 +Metadata: + +=== Element 1962 === +Category: UncategorizedText +Text: 27.04.2023 14:31:38,000 +Metadata: + +=== Element 1963 === +Category: UncategorizedText +Text: 5,0 +Metadata: + +=== Element 1964 === +Category: UncategorizedText +Text: 60,5 +Metadata: + +=== Element 1965 === +Category: UncategorizedText +Text: 64,2 +Metadata: + +=== Element 1966 === +Category: UncategorizedText +Text: 64,2 +Metadata: + +=== Element 1967 === +Category: UncategorizedText +Text: 3,7 +Metadata: + +=== Element 1968 === +Category: UncategorizedText +Text: 37,5 +Metadata: + +=== Element 1969 === +Category: UncategorizedText +Text: | +Metadata: + +=== Element 1970 === +Category: UncategorizedText +Text: 100,0 +Metadata: + +=== Element 1971 === +Category: UncategorizedText +Text: | +Metadata: + +=== Element 1972 === +Category: UncategorizedText +Text: 103,7 +Metadata: + +=== Element 1973 === +Category: UncategorizedText +Text: 1-Q2 +Metadata: + +=== Element 1974 === +Category: UncategorizedText +Text: | +Metadata: + +=== Element 1975 === +Category: Title +Text: Koffer +Metadata: + +=== Element 1976 === +Category: Title +Text: C +Metadata: + +=== Element 1977 === +Category: UncategorizedText +Text: 2023 14:33:51.000 +Metadata: + +=== Element 1978 === +Category: UncategorizedText +Text: 27.04.2023 14:33:46,000 - +Metadata: + +=== Element 1979 === +Category: UncategorizedText +Text: 27.04.2023 14:33:51,000 +Metadata: + +=== Element 1980 === +Category: UncategorizedText +Text: 5,0 +Metadata: + +=== Element 1981 === +Category: UncategorizedText +Text: 62,6 +Metadata: + +=== Element 1982 === +Category: UncategorizedText +Text: 74,8 +Metadata: + +=== Element 1983 === +Category: UncategorizedText +Text: 74,8 +Metadata: + +=== Element 1984 === +Category: UncategorizedText +Text: | +Metadata: + +=== Element 1985 === +Category: UncategorizedText +Text: 12,2 +Metadata: + +=== Element 1986 === +Category: UncategorizedText +Text: 37,5 +Metadata: + +=== Element 1987 === +Category: UncategorizedText +Text: 102,1 +Metadata: + +=== Element 1988 === +Category: UncategorizedText +Text: | +Metadata: + +=== Element 1989 === +Category: UncategorizedText +Text: 114,3 +Metadata: + +=== Element 1990 === +Category: UncategorizedText +Text: 2-Q2 +Metadata: + +=== Element 1991 === +Category: UncategorizedText +Text: | +Metadata: + +=== Element 1992 === +Category: Title +Text: Koffer +Metadata: + +=== Element 1993 === +Category: Title +Text: C +Metadata: + +=== Element 1994 === +Category: UncategorizedText +Text: 27.04.2023 14:19:31,000 - +Metadata: + +=== Element 1995 === +Category: UncategorizedText +Text: 27.04.2023 14:19:36,000 +Metadata: + +=== Element 1996 === +Category: UncategorizedText +Text: 5,0 +Metadata: + +=== Element 1997 === +Category: UncategorizedText +Text: | +Metadata: + +=== Element 1998 === +Category: UncategorizedText +Text: 57,9 +Metadata: + +=== Element 1999 === +Category: UncategorizedText +Text: 68,4 +Metadata: + +=== Element 2000 === +Category: UncategorizedText +Text: 68,4 +Metadata: + +=== Element 2001 === +Category: UncategorizedText +Text: 68,4 +Metadata: + +=== Element 2002 === +Category: UncategorizedText +Text: | +Metadata: + +=== Element 2003 === +Category: UncategorizedText +Text: 10,5 +Metadata: + +=== Element 2004 === +Category: UncategorizedText +Text: 37,5 +Metadata: + +=== Element 2005 === +Category: UncategorizedText +Text: | +Metadata: + +=== Element 2006 === +Category: UncategorizedText +Text: 97,4 +Metadata: + +=== Element 2007 === +Category: UncategorizedText +Text: 107,9 +Metadata: + +=== Element 2008 === +Category: Header +Text: XXXVII +Metadata: + +=== Element 2009 === +Category: UncategorizedText +Text: 65,4 +Metadata: + +=== Element 2010 === +Category: UncategorizedText +Text: 66,1 +Metadata: + +=== Element 2011 === +Category: UncategorizedText +Text: 71,4 +Metadata: + +=== Element 2012 === +Category: UncategorizedText +Text: 73,5 +Metadata: + +=== Element 2013 === +Category: UncategorizedText +Text: 68,8 +Metadata: + +=== Element 2014 === +Category: Header +Text: Anhänge +Metadata: + +=== Element 2015 === +Category: Table +Text: Vorgang 2-Q2 2-Q2 2-Q2 2-Q2 2-Q2 2-Q2 2-Q2 2-Q2 2-Q2 2-Q2 2-Q2 Q2-innen Q2-innen Q2-innen Q2-innen Q2-innen Q2-innen Q2-innen Q2-innen Q2-innen Q2-innen Q2-innen Lkw- Typ Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Koffer Zone Datum Uhrzeit Start - Ende C 27.04.2023 14:20:57,000 - 27.04.2023 14:21:02,000 C 27.04.2023 14:21:15,000 - 27.04.2023 14:21:20,000 C 27.04.2023 14:23:33,000 - 27.04.2023 14:23:38,000 C 27.04.2023 14:24:32,000 - 27.04.2023 14:24:37,000 C 27.04.2023 14:24:52,000 - 27.04.2023 14:24:57,000 C 27.04.2023 14:25:27,000 - 27.04.2023 14:25:32,000 C 27.04.2023 14:25:53,000 - 27.04.2023 14:25:58,000 C 27.04.2023 14:28:28,000 - 27.04.2023 14:28:33,000 C 27.04.2023 14:30:43,000 - 27.04.2023 14:30:48,000 C 27.04.2023 14:31:43,000 - 27.04.2023 14:31:48,000 C 27.04.2023 14:33:59,000 - 27.04.2023 14:34:04,000 C 27.04.2023 14:15:03,000 - 27.04.2023 14:15:08,000 C 27.04.2023 14:19:26,000 - 27.04.2023 14:19:31,000 C 27.04.2023 14:20:08,000 - 27.04.2023 14:20:13,000 C 27.04.2023 14:20:28,000 - 27.04.2023 14:20:33,000 C 27.04.2023 14:20:47,000 - 27.04.2023 14:20:52,000 C 27.04.2023 14:20:52,000 - 27.04.2023 14:20:57,000 C 27.04.2023 14:23:28,000 - 27.04.2023 14:23:33,000 C 27.04.2023 14:24:27,000 - 27.04.2023 14:24:32,000 C 27.04.2023 14:24:47,000 - 27.04.2023 14:24:52,000 C 27.04.2023 14:25:18,000 - 27.04.2023 14:25:23,000 C 27.04.2023 14:25:48,000 - 27.04.2023 14:25:53,000 27.04.2023 14:28:18,000 - T [s] 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 5,0 Laeq [dB(A)] 57,5 69,0 57,5 56,4 49,2 57,2 58,9 58,5 56,7 60,4 53,2 59,0 51,4 55,8 60,7 49,6 56,3 54,6 55,1 52,1 53,1 48,7 LAFmax LAFTeq [dB(A)] [dB(A)] 68,5 68,5 75,4 75,4 68,9 68,9 66,1 66,1 55,3 55,3 67,0 67,0 68,0 68,0 66,8 66,8 66,0 66,0 66,2 66,2 58,0 58,0 65,3 65,3 54,3 54,3 62,4 62,4 65,4 65,4 51,7 51,7 66,6 66,6 64,0 64,0 60,0 60,0 61,3 61,3 61,3 61,3 50,1 50,1 KI [dB(A)] 11,0 6,4 11,4 9,7 6,1 9,8 9,1 8,3 9,3 5,8 4,8 6,3 2,9 6,6 4,7 2,1 10,3 9,4 4,9 9,2 8,2 1,4 r [m] 37,5 37,5 37,5 37,5 37,5 37,5 37,5 37,5 37,5 37,5 37,5 37,5 37,5 37,5 37,5 37,5 37,5 37,5 37,5 37,5 37,5 37,5 LWA,5s [dB(A)] 97,0 108,5 97,0 95,9 88,7 96,7 98,4 98,0 96,2 99,9 92,7 98,5 90,9 95,3 100,2 89,1 95,8 94,1 94,6 91,6 92,6 88,2 LWAmax [dB(A)] 108,0 114,9 108,4 105,6 94,8 106,5 107,5 106,3 105,5 105,7 97,5 104,8 93,8 101,9 104,9 91,2 106,1 103,5 99,5 100,8 100,8 89,6 LWA,1h [dB(A)] 68,4 79,9 68,4 67,3 60,1 68,1 69,8 69,4 67,6 71,3 64,1 69,9 62,3 66,7 71,6 60,5 67,2 65,5 66,0 63,0 64,0 59,6 +Metadata: + +=== Element 2016 === +Category: Title +Text: Q2-innen +Metadata: + +=== Element 2017 === +Category: Title +Text: Koffer +Metadata: + +=== Element 2018 === +Category: Title +Text: C +Metadata: + +=== Element 2019 === +Category: UncategorizedText +Text: 27.04.2023 14:28:23,000 +Metadata: + +=== Element 2020 === +Category: UncategorizedText +Text: 5,0 +Metadata: + +=== Element 2021 === +Category: UncategorizedText +Text: 58,5 +Metadata: + +=== Element 2022 === +Category: UncategorizedText +Text: 60,6 +Metadata: + +=== Element 2023 === +Category: UncategorizedText +Text: 60,6 +Metadata: + +=== Element 2024 === +Category: UncategorizedText +Text: 2,1 +Metadata: + +=== Element 2025 === +Category: UncategorizedText +Text: 37,5 +Metadata: + +=== Element 2026 === +Category: UncategorizedText +Text: 98,0 +Metadata: + +=== Element 2027 === +Category: UncategorizedText +Text: 100,1 +Metadata: + +=== Element 2028 === +Category: Title +Text: Q2-innen +Metadata: + +=== Element 2029 === +Category: Title +Text: Koffer +Metadata: + +=== Element 2030 === +Category: Title +Text: C +Metadata: + +=== Element 2031 === +Category: UncategorizedText +Text: 27.04.2023 14:31:38,000 - +Metadata: + +=== Element 2032 === +Category: UncategorizedText +Text: 27.04.2023 14:31:43,000 +Metadata: + +=== Element 2033 === +Category: UncategorizedText +Text: 5,0 +Metadata: + +=== Element 2034 === +Category: UncategorizedText +Text: 60,1 +Metadata: + +=== Element 2035 === +Category: UncategorizedText +Text: 64,4 +Metadata: + +=== Element 2036 === +Category: UncategorizedText +Text: 64,4 +Metadata: + +=== Element 2037 === +Category: UncategorizedText +Text: 4,3 +Metadata: + +=== Element 2038 === +Category: UncategorizedText +Text: 37,5 +Metadata: + +=== Element 2039 === +Category: UncategorizedText +Text: 99,6 +Metadata: + +=== Element 2040 === +Category: UncategorizedText +Text: 103,9 +Metadata: + +=== Element 2041 === +Category: Header +Text: XXXVIII +Metadata: + +=== Element 2042 === +Category: UncategorizedText +Text: 69,4 +Metadata: + +=== Element 2043 === +Category: UncategorizedText +Text: 71,0 +Metadata: + +=== Element 2044 === +Category: Header +Text: Anhänge +Metadata: + +=== Element 2045 === +Category: Title +Text: Anhang 4: Richtcharakteristik +Metadata: + +=== Element 2046 === +Category: Title +Text: Gabelhubwagen 07.04.2023: +Metadata: + +=== Element 2047 === +Category: Table +Text: Mit Messpunkte vom 27.04.23 Vorgang Datum Start - Ende 1-Q2 27.04.2023 14:14:58,000 - 27.04.2023 14:15:03,000 1-Q2 27.04.2023 14:19:21,000 - 27.04.2023 14:19:26,000 1-Q2 27.04.2023 14:19:59,000 - 27.04.2023 14:20:04,000 1-Q2 27.04.2023 14:20:42,000 - 27.04.2023 14:20:47,000 1-Q2 27.04.2023 14:21:07,000 - 27.04.2023 14:21:12,000 1-Q2 27.04.2023 14:23:21,000 - 27.04.2023 14:23:26,000 1-Q2 27.04.2023 14:24:22,000 - 27.04.2023 14:24:27,000 1-Q2 27.04.2023 14:24:38,000 - 27.04.2023 14:24:43,000 1-Q2 27.04.2023 14:25:13,000 - 27.04.2023 14:25:18,000 1-Q2 27.04.2023 14:28:10,000 - 27.04.2023 14:28:15,000 1-Q2 27.04.2023 14:30:19,000 - 27.04.2023 14:30:24,000 1-Q2 27.04.2023 14:31:33,000 - 27.04.2023 14:31:38,000 1-Q2 27.04.2023 14:33:46,000 - 27.04.2023 14:33:51,000 2-Q2 27.04.2023 14:19:31,000 - 27.04.2023 14:19:36,000 2-Q2 27.04.2023 14:20:57,000 - 27.04.2023 14:21:02,000 2-Q2 27.04.2023 14:21:15,000 - 27.04.2023 14:21:20,000 2-Q2 27.04.2023 14:23:33,000 - 27.04.2023 14:23:38,000 2-Q2 27.04.2023 14:24:32,000 - 27.04.2023 14:24:37,000 2-Q2 27.04.2023 14:24:52,000 - 27.04.2023 14:24:57,000 2-Q2 27.04.2023 14:25:27,000 - 27.04.2023 14:25:32,000 2-Q2 27.04.2023 14:25:53,000 - 27.04.2023 14:25:58,000 2-Q2 27.04.2023 14:28:28,000 - 27.04.2023 14:28:33,000 2-Q2 27.04.2023 14:30:43,000 - 27.04.2023 14:30:48,000 2-Q2 27.04.2023 14:31:43,000 - 27.04.2023 14:31:48,000 1 LAeq [dB(A)] 62,2 62,2 54,6 54,2 56,2 56,5 54,0 63,4 52,8 54,5 55,2 60,5 62,6 57,9 57,5 69,0 57,5 56,4 49,2 57,2 58,9 58,5 56,7 60,4 x/y 3,3/4,8 Ortsfest LAmax [dB(A)] 70,0 70,0 61,2 59,9 65,4 61,2 56,0 74,1 58,5 59,7 61,9 64,2 74,8 68,4 68,5 75,4 68,9 66,1 55,3 67,0 68,0 66,8 66,0 66,2 2 r [m] 40,5 40,5 40,5 40,5 40,5 40,5 40,5 40,5 40,5 40,5 40,5 40,5 40,5 40,5 40,5 40,5 40,5 40,5 40,5 40,5 40,5 40,5 40,5 40,5 x/y 3,2/18,5 LAeq [dB(A)] 63,7 69,7 59,8 65,7 67,2 64,2 64,1 68,1 54,0 56,6 58,0 60,0 73,4 65,3 68,9 80,6 53,4 62,9 52,0 60,8 67,3 66,7 63,7 65,8 3 Variabel LAmax [dB(A)] 72,4 78,3 68,8 72,4 77,4 71,8 79,2 78,9 61,8 64,4 67,8 64,2 86,7 76,8 81,0 87,1 60,9 71,4 59,9 70,5 77,2 75,1 74,4 75,3 x/y -7,2/18,7 r [m] 22,9 22,9 8,4 8,4 8,4 8,4 22,9 22,9 22,9 20,6 20,6 20,6 20,6 20,6 20,6 20,6 20,6 20,6 20,6 20,6 20,6 20,6 20,6 20,6 4 φ [°] 158,9 158,9 55,2 55,2 55,2 55,2 158,9 158,9 158,9 70,0 70,0 70,0 70,0 70,0 70,0 70,0 70,0 70,0 70,0 70,0 70,0 70,0 70,0 70,0 x/y 6,7/18,4 DI [dB(A)] 1,5 7,5 5,2 11,5 11,0 7,7 10,1 4,7 1,2 2,1 2,8 -0,5 10,8 7,4 11,4 11,6 -4,1 6,5 2,8 3,6 8,4 8,2 7,0 5,4 +Metadata: + +=== Element 2048 === +Category: UncategorizedText +Text: 2-Q2 +Metadata: + +=== Element 2049 === +Category: Title +Text: Q2-innen +Metadata: + +=== Element 2050 === +Category: Title +Text: Q2-innen +Metadata: + +=== Element 2051 === +Category: Title +Text: Q2-innen +Metadata: + +=== Element 2052 === +Category: Title +Text: Q2-innen +Metadata: + +=== Element 2053 === +Category: UncategorizedText +Text: 2 06.2023 193404000 06.2023 19508.000 06.2023 102032.000 +Metadata: + +=== Element 2054 === +Category: UncategorizedText +Text: 27.04.2023 14:33:59,000 - +Metadata: + +=== Element 2055 === +Category: UncategorizedText +Text: 27.04.2023 14:15:03,000 - +Metadata: + +=== Element 2056 === +Category: UncategorizedText +Text: 27.04.2023 14:19:26,000 - +Metadata: + +=== Element 2057 === +Category: UncategorizedText +Text: 53,2 +Metadata: + +=== Element 2058 === +Category: UncategorizedText +Text: 59,0 +Metadata: + +=== Element 2059 === +Category: UncategorizedText +Text: 59,0 +Metadata: + +=== Element 2060 === +Category: UncategorizedText +Text: 51,4 +Metadata: + +=== Element 2061 === +Category: UncategorizedText +Text: 58,0 +Metadata: + +=== Element 2062 === +Category: UncategorizedText +Text: 65,3 +Metadata: + +=== Element 2063 === +Category: UncategorizedText +Text: 54,3 +Metadata: + +=== Element 2064 === +Category: UncategorizedText +Text: 40,5 +Metadata: + +=== Element 2065 === +Category: UncategorizedText +Text: 40,5 +Metadata: + +=== Element 2066 === +Category: UncategorizedText +Text: 40,5 +Metadata: + +=== Element 2067 === +Category: UncategorizedText +Text: 56,5 +Metadata: + +=== Element 2068 === +Category: UncategorizedText +Text: 63,0 +Metadata: + +=== Element 2069 === +Category: UncategorizedText +Text: 51,4 +Metadata: + +=== Element 2070 === +Category: UncategorizedText +Text: 62,9 +Metadata: + +=== Element 2071 === +Category: UncategorizedText +Text: 73,9 +Metadata: + +=== Element 2072 === +Category: UncategorizedText +Text: 53,7 +Metadata: + +=== Element 2073 === +Category: UncategorizedText +Text: 21,8 +Metadata: + +=== Element 2074 === +Category: UncategorizedText +Text: 22,9 +Metadata: + +=== Element 2075 === +Category: UncategorizedText +Text: 22,9 +Metadata: + +=== Element 2076 === +Category: UncategorizedText +Text: 9,8 +Metadata: + +=== Element 2077 === +Category: UncategorizedText +Text: 158,9 +Metadata: + +=== Element 2078 === +Category: UncategorizedText +Text: 158,9 +Metadata: + +=== Element 2079 === +Category: Title +Text: Q2-innen +Metadata: + +=== Element 2080 === +Category: UncategorizedText +Text: | +Metadata: + +=== Element 2081 === +Category: UncategorizedText +Text: 27.04.2023 14:20:08,000 - +Metadata: + +=== Element 2082 === +Category: UncategorizedText +Text: 27.04.2023 14:20:13,000 +Metadata: + +=== Element 2083 === +Category: UncategorizedText +Text: 55,8 +Metadata: + +=== Element 2084 === +Category: UncategorizedText +Text: 62,4 +Metadata: + +=== Element 2085 === +Category: UncategorizedText +Text: 40,5 +Metadata: + +=== Element 2086 === +Category: UncategorizedText +Text: 65,6 +Metadata: + +=== Element 2087 === +Category: UncategorizedText +Text: 76,2 +Metadata: + +=== Element 2088 === +Category: UncategorizedText +Text: 8,4 +Metadata: + +=== Element 2089 === +Category: UncategorizedText +Text: 55,2 +Metadata: + +=== Element 2090 === +Category: Header +Text: XXXIX +Metadata: + +=== Element 2091 === +Category: UncategorizedText +Text: 3,3 +Metadata: + +=== Element 2092 === +Category: UncategorizedText +Text: 4,0 +Metadata: + +=== Element 2093 === +Category: UncategorizedText +Text: 0,0 +Metadata: + +=== Element 2094 === +Category: UncategorizedText +Text: 9,8 +Metadata: + +=== Element 2095 === +Category: Header +Text: Anhänge +Metadata: + +=== Element 2096 === +Category: Table +Text: Q2-innen 27.04.2023 14:20:28,000 - 27.04.2023 14:20:33,000 Q2-innen 27.04.2023 14:20:47,000 - 27.04.2023 14:20:52,000 Q2-innen 27.04.2023 14:20:52,000 - 27.04.2023 14:20:57,000 Q2-innen 27.04.2023 14:23:28,000 - 27.04.2023 14:23:33,000 Q2-innen 27.04.2023 14:24:27,000 - 27.04.2023 14:24:32,000 Q2-innen 27.04.2023 14:24:47,000 - 27.04.2023 14:24:52,000 Q2-innen 27.04.2023 14:25:18,000 - 27.04.2023 14:25:23,000 Q2-innen 27.04.2023 14:25:48,000 - 27.04.2023 14:25:53,000 Q2-innen 27.04.2023 14:28:18,000 - 27.04.2023 14:28:23,000 Q2-innen 27.04.2023 14:31:38,000 - 27.04.2023 14:31:43,000 Mit Messpunkte vom 27.04.23 60,7 49,6 56,3 54,6 55,1 52,1 53,1 48,7 58,5 60,1 1 65,4 51,7 66,6 64,0 60,0 61,3 61,3 50,1 60,6 64,4 x/y 3,5/4,5 40,5 40,5 40,5 40,5 40,5 40,5 40,5 40,5 40,5 40,5 2 59,5 55,7 65,6 69,8 56,4 64,0 54,8 54,2 54,4 57,0 x/y 3,5/9,4 68,1 63,6 75,3 81,1 59,1 78,7 64,2 61,7 57,3 59,9 3 8,4 8,4 8,4 8,4 8,4 8,4 22,9 22,9 20,6 20,6 x/y 3,5/17,1 55,2 55,2 55,2 55,2 55,2 55,2 158,9 158,9 70,0 70,0 4 -1,2 6,1 9,3 15,2 1,3 11,9 1,7 5,5 -4,1 -3,1 x/y 0/17,2 +Metadata: + +=== Element 2097 === +Category: Title +Text: Gabelstapler 03.05.2023: +Metadata: + +=== Element 2098 === +Category: Title +Text: Ortsfest +Metadata: + +=== Element 2099 === +Category: Title +Text: Variabel +Metadata: + +=== Element 2100 === +Category: Table +Text: Vorgang Datum Start - Ende 1-Q1 03.05.2023 15:07:07,000 - 03.05.2023 15:07:12,000 1-Q1 03.05.2023 15:08:42,000 - 03.05.2023 15:08:47,000 1-Q1 03.05.2023 15:09:52,000 - 03.05.2023 15:09:57,000 1-Q1 03.05.2023 15:12:55,000 - 03.05.2023 15:13:00,000 1-Q1 03.05.2023 15:16:57,000 - 03.05.2023 15:17:02,000 1-Q1 03.05.2023 15:17:48,000 - 03.05.2023 15:17:53,000 1-Q1 03.05.2023 15:19:08,000 - 03.05.2023 15:19:13,000 1-Q1 03.05.2023 15:23:57,000 - 03.05.2023 15:24:03,000 1-Q1 03.05.2023 15:26:12,000 - 03.05.2023 15:26:17,000 1-Q1 03.05.2023 15:29:17,000 - 03.05.2023 15:29:22,000 1-Q1 03.05.2023 15:29:28,000 - 03.05.2023 15:29:33,000 1-Q1 03.05.2023 15:32:16,000 - 03.05.2023 15:32:21,000 1-Q1 03.05.2023 15:33:05,000 - 03.05.2023 15:33:10,000 1-Q1 03.05.2023 15:36:15,000 - 03.05.2023 15:36:20,000 1-Q1 03.05.2023 15:38:06,000 - 03.05.2023 15:38:11,000 1-Q1 03.05.2023 15:41:24,000 - 03.05.2023 15:41:29,000 1-Q1 03.05.2023 15:43:22,000 - 03.05.2023 15:43:27,000 1-Q1 03.05.2023 15:44:52,000 - 03.05.2023 15:44:57,000 1-Q1 03.05.2023 15:47:38,000 - 03.05.2023 15:47:43,000 LAeq [dB(A)] 55,3 66,9 56,2 56,8 56,9 58,1 53,5 55,4 62,0 53,1 52,9 52,7 59,3 58,2 70,0 56,1 52,8 50,4 53,6 LAmax [dB(A)] 62,8 70,5 60,2 59,7 60,3 62,8 57,1 60,9 64,8 55,7 57,1 60,1 64,7 62,3 79,3 59,6 61,5 54,2 57,1 r [m] 38,0 38,0 38,0 38,0 38,0 38,0 38,0 38,0 38,0 38,0 38,0 38,0 38,0 38,0 38,0 38,0 38,0 38,0 38,0 LAeq [dB(A)] 56,2 66,9 63,0 58,7 62,7 64,4 58,9 60,3 63,9 57,7 56,0 58,3 66,1 62,6 66,3 59,3 62,2 58,0 63,8 LAmax [dB(A)] 66,7 74,3 67,9 63,9 70,3 71,2 65,2 71,0 67,2 64,8 58,4 68,9 74,5 72,8 73,7 67,1 72,7 68,5 73,3 r [m] 5,7 5,7 5,7 10,1 10,1 10,1 17,5 17,2 17,2 17,2 17,2 17,2 17,2 17,2 17,2 17,2 17,2 17,2 17,2 φ [°] 52,5 52,5 52,5 69,9 69,9 69,9 78,6 90,0 90,0 90,0 90,0 90,0 90,0 90,0 90,0 90,0 90,0 90,0 90,0 DI [dB(A)] 0,9 0,0 6,8 1,9 5,8 6,3 5,4 4,9 1,9 4,6 3,1 5,6 6,8 4,4 -3,7 3,2 9,4 7,6 10,2 +Metadata: + +=== Element 2101 === +Category: Title +Text: XL +Metadata: + +=== Element 2102 === +Category: Header +Text: Anhänge +Metadata: + +=== Element 2103 === +Category: Table +Text: 1-Q1 2-Q1 2-Q1 2-Q1 2-Q1 2-Q1 2-Q1 2-Q1 2-Q1 2-Q1 2-Q1 2-Q1 2-Q1 2-Q1 2-Q1 2-Q1 2-Q1 2-Q1 2-Q1 2-Q1 2-Q1 2-Q1 Q1-innen Q1-innen Q1-innen Q1-innen Q1-innen 03.05.2023 15:51:10,000 - 03.05.2023 15:51:15,000 03.05.2023 15:07:23,000 - 03.05.2023 15:07:28,000 03.05.2023 15:09:15,000 - 03.05.2023 15:09:20,000 03.05.2023 15:10:17,000 - 03.05.2023 15:10:22,000 03.05.2023 15:13:18,000 - 03.05.2023 15:13:23,000 03.05.2023 15:16:10,000 - 03.05.2023 15:16:15,000 03.05.2023 15:18:36,000 - 03.05.2023 15:18:41,000 03.05.2023 15:19:24,000 - 03.05.2023 15:19:29,000 03.05.2023 15:24:22,000 - 03.05.2023 15:24:27,000 03.05.2023 15:25:48,000 - 03.05.2023 15:25:53,000 03.05.2023 15:27:06,000 - 03.05.2023 15:27:11,000 03.05.2023 15:29:38,000 - 03.05.2023 15:29:43,000 03.05.2023 15:30:30,000 - 03.05.2023 15:30:35,000 03.05.2023 15:32:37,000 - 03.05.2023 15:32:42,000 03.05.2023 15:34:44,000 - 03.05.2023 15:34:49,000 03.05.2023 15:36:28,000 - 03.05.2023 15:36:33,000 03.05.2023 15:38:22,000 - 03.05.2023 15:38:27,000 03.05.2023 15:40:46,000 - 03.05.2023 15:40:51,000 03.05.2023 15:41:44,000 - 03.05.2023 15:41:49,000 03.05.2023 15:45:07,000 - 03.05.2023 15:45:12,000 03.05.2023 15:50:50,000 - 03.05.2023 15:50:56,000 03.05.2023 15:51:27,000 - 03.05.2023 15:51:32,000 03.05.2023 15:07:17,000 - 03.05.2023 15:07:22,000 03.05.2023 15:08:48,000 - 03.05.2023 15:08:53,000 03.05.2023 15:08:53,000 - 03.05.2023 15:08:58,000 03.05.2023 15:09:57,000 - 03.05.2023 15:10:02,000 03.05.2023 15:10:02,000 - 03.05.2023 15:10:07,000 53,8 51,4 49,9 53,4 56,3 57,7 54,2 54,8 55,8 58,3 57,1 54,4 57,7 58,8 60,6 53,4 63,8 71,9 62,8 51,4 56,8 53,0 56,9 58,7 55,1 55,0 53,1 62,5 55,1 53,2 59,6 60,7 60,9 57,8 59,6 61,5 61,6 64,0 62,4 60,0 65,1 64,2 57,4 66,3 75,6 64,7 53,8 64,2 55,9 66,9 61,7 63,3 61,7 56,9 38,0 38,0 38,0 38,0 38,0 38,0 38,0 38,0 38,0 38,0 38,0 37,9 38,0 38,0 38,0 38,0 38,0 38,0 38,0 38,0 38,0 38,0 38,0 38,0 38,0 38,0 38,0 68,3 51,3 58,6 63,1 61,6 66,5 62,0 63,4 62,5 59,0 60,1 58,8 64,1 63,3 62,6 57,8 67,9 70,2 67,4 66,2 71,3 65,6 55,4 64,3 65,8 66,7 60,9 77,6 54,2 63,7 66,9 67,9 74,3 68,9 72,9 73,6 63,3 65,3 67,8 66,7 69,6 66,2 65,0 72,6 76,4 72,3 75,3 80,1 74,3 64,8 73,4 75,3 75,5 67,6 17,2 5,7 5,7 5,7 5,7 10,1 17,5 17,5 17,2 17,2 17,2 17,2 17,2 17,2 17,2 17,2 17,2 17,2 17,2 17,2 17,2 17,2 5,7 5,7 5,7 5,7 5,7 90,0 52,5 52,5 52,5 52,5 69,9 78,6 78,6 90,0 90,0 90,0 90,0 90,0 90,0 90,0 90,0 90,0 90,0 90,0 90,0 90,0 90,0 52,5 52,5 52,5 52,5 52,5 14,5 -0,1 8,7 9,7 5,3 8,8 7,8 8,6 6,7 0,7 3,0 4,4 6,4 4,5 2,0 4,4 4,1 -1,7 4,6 14,8 14,5 12,6 -1,5 5,6 10,7 11,7 7,8 +Metadata: + +=== Element 2104 === +Category: UncategorizedText +Text: Ql-innen 05.08 2003 13:10:12.000 Q1-innen 05.08 2023 13:10.12.000 Q1-innen 5.03 2023 13:13:06.000 Q1-innen 05.08 2003 18:13:11.000 Ql-innen 05.09 2003 15:13.12.000 | +Metadata: + +=== Element 2105 === +Category: UncategorizedText +Text: 03.05.2023 15:10:07,000 - +Metadata: + +=== Element 2106 === +Category: UncategorizedText +Text: 03.05.2023 15:10:12,000 - +Metadata: + +=== Element 2107 === +Category: UncategorizedText +Text: 03.05.2023 15:13:01,000 - +Metadata: + +=== Element 2108 === +Category: UncategorizedText +Text: 03.05.2023 15:13:06,000 - +Metadata: + +=== Element 2109 === +Category: UncategorizedText +Text: 03.05.2023 15:13:12,000 - +Metadata: + +=== Element 2110 === +Category: UncategorizedText +Text: 03.05.2023 15:15:45,000 - +Metadata: + +=== Element 2111 === +Category: UncategorizedText +Text: 03.05.2023 15:15:50,000 +Metadata: + +=== Element 2112 === +Category: UncategorizedText +Text: 52,9 +Metadata: + +=== Element 2113 === +Category: UncategorizedText +Text: 54,5 +Metadata: + +=== Element 2114 === +Category: UncategorizedText +Text: 60,8 +Metadata: + +=== Element 2115 === +Category: UncategorizedText +Text: 64,9 +Metadata: + +=== Element 2116 === +Category: UncategorizedText +Text: 57,2 +Metadata: + +=== Element 2117 === +Category: UncategorizedText +Text: 63,3 +Metadata: + +=== Element 2118 === +Category: UncategorizedText +Text: 57,1 +Metadata: + +=== Element 2119 === +Category: UncategorizedText +Text: 61,6 +Metadata: + +=== Element 2120 === +Category: UncategorizedText +Text: 65,2 +Metadata: + +=== Element 2121 === +Category: UncategorizedText +Text: 65,2 +Metadata: + +=== Element 2122 === +Category: UncategorizedText +Text: 68,1 +Metadata: + +=== Element 2123 === +Category: UncategorizedText +Text: 59,8 +Metadata: + +=== Element 2124 === +Category: UncategorizedText +Text: 65,3 +Metadata: + +=== Element 2125 === +Category: UncategorizedText +Text: 38,0 +Metadata: + +=== Element 2126 === +Category: UncategorizedText +Text: 38,0 +Metadata: + +=== Element 2127 === +Category: UncategorizedText +Text: 38,0 +Metadata: + +=== Element 2128 === +Category: UncategorizedText +Text: 38,0 +Metadata: + +=== Element 2129 === +Category: UncategorizedText +Text: 38,0 +Metadata: + +=== Element 2130 === +Category: UncategorizedText +Text: 38,0 +Metadata: + +=== Element 2131 === +Category: UncategorizedText +Text: 61,4 +Metadata: + +=== Element 2132 === +Category: UncategorizedText +Text: 62,6 +Metadata: + +=== Element 2133 === +Category: UncategorizedText +Text: 69,9 +Metadata: + +=== Element 2134 === +Category: UncategorizedText +Text: 66,5 +Metadata: + +=== Element 2135 === +Category: UncategorizedText +Text: 61,5 +Metadata: + +=== Element 2136 === +Category: UncategorizedText +Text: 68,3 +Metadata: + +=== Element 2137 === +Category: UncategorizedText +Text: 70,4 +Metadata: + +=== Element 2138 === +Category: UncategorizedText +Text: 71,1 +Metadata: + +=== Element 2139 === +Category: UncategorizedText +Text: 77,1 +Metadata: + +=== Element 2140 === +Category: UncategorizedText +Text: 72,5 +Metadata: + +=== Element 2141 === +Category: UncategorizedText +Text: 65,7 +Metadata: + +=== Element 2142 === +Category: UncategorizedText +Text: 74,2 +Metadata: + +=== Element 2143 === +Category: UncategorizedText +Text: 5,7 +Metadata: + +=== Element 2144 === +Category: UncategorizedText +Text: 5,7 +Metadata: + +=== Element 2145 === +Category: UncategorizedText +Text: 5,7 +Metadata: + +=== Element 2146 === +Category: UncategorizedText +Text: 5,7 +Metadata: + +=== Element 2147 === +Category: UncategorizedText +Text: 5,7 +Metadata: + +=== Element 2148 === +Category: UncategorizedText +Text: 5,7 +Metadata: + +=== Element 2149 === +Category: UncategorizedText +Text: 52,5 +Metadata: + +=== Element 2150 === +Category: UncategorizedText +Text: 52,5 +Metadata: + +=== Element 2151 === +Category: UncategorizedText +Text: 52,5 +Metadata: + +=== Element 2152 === +Category: UncategorizedText +Text: 52,5 +Metadata: + +=== Element 2153 === +Category: UncategorizedText +Text: 52,5 +Metadata: + +=== Element 2154 === +Category: UncategorizedText +Text: 52,5 +Metadata: + +=== Element 2155 === +Category: UncategorizedText +Text: 8,5 +Metadata: + +=== Element 2156 === +Category: UncategorizedText +Text: 8,1 +Metadata: + +=== Element 2157 === +Category: UncategorizedText +Text: 9,1 +Metadata: + +=== Element 2158 === +Category: UncategorizedText +Text: 1,6 +Metadata: + +=== Element 2159 === +Category: UncategorizedText +Text: 4,3 +Metadata: + +=== Element 2160 === +Category: UncategorizedText +Text: 5,0 +Metadata: + +=== Element 2161 === +Category: Header +Text: XLI +Metadata: + +=== Element 2162 === +Category: Header +Text: Anhänge +Metadata: + +=== Element 2163 === +Category: Table +Text: Q1-innen Q1-innen Q1-innen Q1-innen Q1-innen Q1-innen Q1-innen Q1-innen Q1-innen Q1-innen Q1-innen Q1-innen Q1-innen Q1-innen Q1-innen Q1-innen Q1-innen Q1-innen Q1-innen Q1-innen Q1-innen Q1-innen Q1-innen Q1-innen Q1-innen Q1-innen Q1-innen 03.05.2023 15:15:50,000 - 03.05.2023 15:15:55,000 03.05.2023 15:15:55,000 - 03.05.2023 15:16:00,000 03.05.2023 15:16:00,000 - 03.05.2023 15:16:05,000 03.05.2023 15:16:05,000 - 03.05.2023 15:16:10,000 03.05.2023 15:17:02,000 - 03.05.2023 15:17:07,000 03.05.2023 15:17:53,000 - 03.05.2023 15:17:58,000 03.05.2023 15:17:58,000 - 03.05.2023 15:18:03,000 03.05.2023 15:18:31,000 - 03.05.2023 15:18:36,000 03.05.2023 15:19:13,000 - 03.05.2023 15:19:18,000 03.05.2023 15:19:18,000 - 03.05.2023 15:19:23,000 03.05.2023 15:24:11,000 - 03.05.2023 15:24:16,000 03.05.2023 15:24:16,000 - 03.05.2023 15:24:21,000 03.05.2023 15:29:22,000 - 03.05.2023 15:29:27,000 03.05.2023 15:30:24,000 - 03.05.2023 15:30:29,000 03.05.2023 15:32:21,000 - 03.05.2023 15:32:26,000 03.05.2023 15:32:26,000 - 03.05.2023 15:32:31,000 03.05.2023 15:32:31,000 - 03.05.2023 15:32:36,000 03.05.2023 15:33:10,000 - 03.05.2023 15:33:15,000 03.05.2023 15:34:38,000 - 03.05.2023 15:34:43,000 03.05.2023 15:36:20,000 - 03.05.2023 15:36:25,000 03.05.2023 15:38:11,000 - 03.05.2023 15:38:16,000 03.05.2023 15:38:16,000 - 03.05.2023 15:38:21,000 03.05.2023 15:41:29,000 - 03.05.2023 15:41:34,000 03.05.2023 15:41:34,000 - 03.05.2023 15:41:39,000 03.05.2023 15:41:39,000 - 03.05.2023 15:41:44,000 03.05.2023 15:43:27,000 - 03.05.2023 15:43:32,000 03.05.2023 15:44:57,000 - 03.05.2023 15:45:02,000 61,9 59,7 61,0 55,9 59,8 59,0 60,1 56,6 56,3 51,9 51,8 53,4 54,1 52,8 54,3 57,5 55,3 57,9 58,1 61,1 63,9 63,5 59,2 61,0 61,7 51,1 48,8 63,3 62,8 66,6 59,2 62,3 62,6 62,9 62,7 62,0 53,9 56,9 57,2 59,8 59,5 59,4 63,0 59,8 61,5 61,5 69,4 65,9 65,2 61,4 64,6 63,3 54,9 51,3 38,0 38,0 38,0 38,0 38,0 38,0 38,0 38,0 38,0 38,0 38,0 38,0 37,9 38,0 38,0 38,0 38,0 38,0 38,0 38,0 38,0 38,0 38,0 38,0 38,0 38,0 38,0 63,5 59,4 60,5 60,0 66,3 68,0 65,5 60,6 64,9 57,5 57,3 57,8 56,7 60,5 59,2 63,0 59,5 66,2 63,5 60,9 65,7 64,8 62,1 62,2 61,7 55,6 61,8 67,6 65,6 62,9 66,8 71,9 74,1 72,2 68,2 72,5 63,3 68,3 67,6 63,7 69,8 64,8 70,8 65,7 77,9 68,4 67,3 69,7 67,1 70,7 69,7 65,3 62,1 75,7 5,7 10,1 10,1 10,1 10,1 10,1 17,5 17,5 17,5 17,5 17,2 17,2 17,2 17,2 17,2 17,2 17,2 17,2 17,2 17,2 17,2 17,2 17,2 17,2 17,2 17,2 17,2 52,5 69,9 69,9 69,9 69,9 69,9 78,6 78,6 78,6 78,6 90,0 90,0 90,0 90,0 90,0 90,0 90,0 90,0 90,0 90,0 90,0 90,0 90,0 90,0 90,0 90,0 90,0 1,6 -0,3 -0,5 4,1 6,5 9,0 5,4 4,0 8,6 5,6 5,5 4,4 2,6 7,7 4,9 5,5 4,2 8,3 5,4 -0,2 1,8 1,3 2,9 1,2 0,0 4,5 13,0 +Metadata: + +=== Element 2164 === +Category: UncategorizedText +Text: Q1-innen 5.03 2023 15:45.07.000 Q1-innen 5.08 2003 15:47.49.000 Q1-innen 5.0 2003 18:91.20.000 | +Metadata: + +=== Element 2165 === +Category: UncategorizedText +Text: 03.05.2023 15:45:02,000 - +Metadata: + +=== Element 2166 === +Category: UncategorizedText +Text: 03.05.2023 15:47:43,000 - +Metadata: + +=== Element 2167 === +Category: UncategorizedText +Text: 03.05.2023 15:51:15,000 - +Metadata: + +=== Element 2168 === +Category: UncategorizedText +Text: 03.05.2023 15:51:20,000 - +Metadata: + +=== Element 2169 === +Category: UncategorizedText +Text: 03.05.2023 15:51:25,000 +Metadata: + +=== Element 2170 === +Category: UncategorizedText +Text: 55,6 +Metadata: + +=== Element 2171 === +Category: UncategorizedText +Text: 53,7 +Metadata: + +=== Element 2172 === +Category: UncategorizedText +Text: 50,6 +Metadata: + +=== Element 2173 === +Category: UncategorizedText +Text: 50,4 +Metadata: + +=== Element 2174 === +Category: UncategorizedText +Text: 65,8 +Metadata: + +=== Element 2175 === +Category: UncategorizedText +Text: 59,0 +Metadata: + +=== Element 2176 === +Category: UncategorizedText +Text: 54,8 +Metadata: + +=== Element 2177 === +Category: UncategorizedText +Text: 53,5 +Metadata: + +=== Element 2178 === +Category: UncategorizedText +Text: 38,0 +Metadata: + +=== Element 2179 === +Category: UncategorizedText +Text: 38,0 +Metadata: + +=== Element 2180 === +Category: UncategorizedText +Text: 38,0 +Metadata: + +=== Element 2181 === +Category: UncategorizedText +Text: 38,0 +Metadata: + +=== Element 2182 === +Category: UncategorizedText +Text: 61,5 +Metadata: + +=== Element 2183 === +Category: UncategorizedText +Text: 60,0 +Metadata: + +=== Element 2184 === +Category: UncategorizedText +Text: 59,2 +Metadata: + +=== Element 2185 === +Category: UncategorizedText +Text: 54,9 +Metadata: + +=== Element 2186 === +Category: UncategorizedText +Text: 75,0 +Metadata: + +=== Element 2187 === +Category: UncategorizedText +Text: 68,3 +Metadata: + +=== Element 2188 === +Category: UncategorizedText +Text: 68,3 +Metadata: + +=== Element 2189 === +Category: UncategorizedText +Text: 69,1 +Metadata: + +=== Element 2190 === +Category: UncategorizedText +Text: 62,8 +Metadata: + +=== Element 2191 === +Category: UncategorizedText +Text: 17,2 +Metadata: + +=== Element 2192 === +Category: UncategorizedText +Text: 17,2 +Metadata: + +=== Element 2193 === +Category: UncategorizedText +Text: 17,2 +Metadata: + +=== Element 2194 === +Category: UncategorizedText +Text: 17,2 +Metadata: + +=== Element 2195 === +Category: UncategorizedText +Text: 90,0 +Metadata: + +=== Element 2196 === +Category: UncategorizedText +Text: 90,0 +Metadata: + +=== Element 2197 === +Category: UncategorizedText +Text: 90,0 +Metadata: + +=== Element 2198 === +Category: UncategorizedText +Text: 90,0 +Metadata: + +=== Element 2199 === +Category: UncategorizedText +Text: 5,9 +Metadata: + +=== Element 2200 === +Category: UncategorizedText +Text: 6,3 +Metadata: + +=== Element 2201 === +Category: UncategorizedText +Text: 8,6 +Metadata: + +=== Element 2202 === +Category: UncategorizedText +Text: 4,5 +Metadata: + +=== Element 2203 === +Category: Header +Text: XLII +Metadata: + +=== Element 2204 === +Category: Header +Text: Anhänge +Metadata: + +=== Element 2205 === +Category: Title +Text: Anhang 5: Rechenmodell SoundPlan 9.0 – Gabelhubwagen 27.04.23 +Metadata: + +=== Element 2206 === +Category: Image +Text: Schalltechnische Untersuchung Anlage A5 Bachelor Thesis: Verladegeräusche in Speditionen - Eingangsdaten- Projekt-Info Projekttitel: Bachelor Thesis: Verladegeräusche in Speditionen Projekt Nr.: Projektbearbeiter: Selin Karagöz Auftraggeber: Rechenlaufparameter Reflexionsordnung 3 Maximaler Reflexionsabstand zum Empfänger 200 m Maximaler Reflexionsabstand zur Quelle 50m Suchradius 5000 m Filter: dB(A) Zulässige Toleranz (für einzelne Quelle): 0,100 dB Bodeneffektgebiete aus Straßenoberflächen erzeugen: Nein Straßen als geländefolgend behandeln: Nein Richtlinien: Gewerbe: ISO 9613-2: 1996 Luftabsorption: ISO 9613-1 regulärer Bodeneffekt (Kapitel 7.3.1), für Quellen ohne Spektrum automatisch alternativer Bodeneffekt Begrenzung des Beugungsverlusts: einfach/mehrfach 20,0 dB /25,0 dB Seitenbeugung: ISO/TR 17534-3:2015 konform: keine Seitenbeugung, wenn das Gelände die Sichtverbindung unterbricht Verwende Glg (Abar=Dz-Max(Agr,O)) statt Glg (12) (Abar=Dz-Agr) für die Einfügedämpfung Umgebung: Luftdruck 1013,3 mbar relative Feuchte 70,0% Temperatur 10,0°C Meteo. Korr. C0(6-22h)[dB]=0,0; C0(22-6h)[dB]=0,0; Cmet für Lmax Gewerbe Berechnungen ignorieren: Nein Beugungsparameter: C2=20,0 Zerlegungsparameter: Faktor Abstand / Durchmesser 8 Minimale Distanz [m] 1m Max. Differenz Bodendämpfung + Beugung 1,0 dB Max. Iterationszahl 4 Minderung Bewuchs: ISO 9613-2 Bebauung: ISO 9613-2 Industriegelände: ISO 9613-2 Bewertung: TA-Lärm 1998/2017 - Werktag Reflexion der "eigenen" Fassade wird unterdrückt Geometriedaten Gabelhubwagen 27-04-23.sil 19.06.2023 13:41:12 - enthält: F001 Bodeneffekt.geo 01.06.2023 12:27:46 G001 Bebauung.geo 01.06.2023 11:59:38 MP003 Messpunkte.geo 19.06.2023 13:41:12 0003 Lkws.geo 01.06.2023 09:47:10 Q001 Schallquelle Gabelhubwagen 27.04.geo 19.06.2023 12:49:02 RG001 Rechengebiet.geo 01.06.2023 12:31:18 RDGM9999.dgm 18.04.2023 12:15:40 Ergebnisi Heine + Jud - Ingenieurbüro für Umweltakustik SoundPLAN 9.0 +Metadata: + +=== Element 2207 === +Category: Header +Text: XLIII +Metadata: + +=== Element 2208 === +Category: Header +Text: Anhänge +Metadata: + +=== Element 2209 === +Category: Image +Text: jyden leßsdsßunjeunsg (war N41 Be jeßedsßunjsuneg (war 141 Yu) Beiyosnzueyezeuny gap (LIDAZ USNIeZsqeLJEg INPIaLIOy sp {NITAIP uSNEZSgELER Inplauoy ap (map uUSUORXEJS4 Ypınp Bunyayusjeßed (var yarıp uondlosgeynT punßjne Bunydweg Sue ep uney Bunwunpsgy punsßyne Bunydweg BON 2193 JegV Pleysuepog punußjne Bunydweg auanıı gp bw Bunyaugsny JsyosisWwosd punsßyne Bunydweg Sala gp NPY Bunyeysgyw 32449UOB any Beiyosnz gr o4 yayönleyuoL an) Beiyosnz gp 44 ep IM (We MI (ver a ven-wwep| gp NY 1a6aduauuı (ver 7 Yosuoissiuu - ajenbjleyog Bunuenug auanıy) w Ss (ay9e|4 1opo SBUFT) SIIoENd J2p sYQ19 zwi $.40p0 | SWweujend Send Spushs] -b87 Bunysugsny Son - usuopsdg ul ayosne1sßspenen :sısey | Jofsyseg Ss obejuy Bunyonsigjun syasıuyosyjeyas +Metadata: + +=== Element 2210 === +Category: Header +Text: XLIV +Metadata: + +=== Element 2211 === +Category: Header +Text: Anhänge +Metadata: + +=== Element 2212 === +Category: Image +Text: gg ‘eg 0'0 erz_ | Erz gı v’0- 00 Sr sor € 00 29 E77 621 03 B3 (vIap 9’ xew'nT (wWIap grz xew'L1 (Waps'san.T (WIaprseg LIT 93 ZOrL wer | (war ap Ei ap (wap ap ap ap ap ap ap a | (wer | (War ap | (war wu zu N 11 | (umaz |inDarp|asmanp| year | wiew | Jeaw dv APY O4 a IM m mı mg a) s | s.epo ayend -b87 Bunysugsny SapuN - usuonpadg ul ayadsne4sßapenaN !sısay | Jofaydeg S obejuy Bunyansusjun sy9sıuyoayjeyas GUIEEIED) +Metadata: + +=== Element 2213 === +Category: Header +Text: XLV +Metadata: + +=== Element 2214 === +Category: Header +Text: Anhänge +Metadata: + +=== Element 2215 === +Category: Title +Text: Anhang 6: Rechenmodell SoundPlan 9.0 – Gabelstapler 03.05.2023 +Metadata: + +=== Element 2216 === +Category: Image +Text: Schalltechnische Untersuchung Anlage A6 Bachelor Thesis: Verladegeräusche in Speditionen - Eingangsdaten- Projekt-Info Projekttitel: Bachelor Thesis: Verladegeräusche in Speditionen Projekt Nr. Projektbearbeiter: Selin Karagöz Auftraggeber: Rechenlaufparameter Reflexionsordnung 3 Maximaler Reflexionsabstand zum Empfänger 200 m Maximaler Reflexionsabstand zur Quelle 50m Suchradius 5000 m Filter: dB(A) Zulässige Toleranz (für einzelne Quelle): 0,100 dB Bodeneffektgebiete aus Straßenoberflächen erzeugen: Nein Straßen als geländefolgend behandeln: Nein Richtlinien: Gewerbe: ISO 9613-2: 1996 Luftabsorption: ISO 9613-1 regulärer Bodeneffekt (Kapitel 7.3.1), für Quellen ohne Spektrum automatisch altemativer Bodeneffekt Begrenzung des Beugungsverlusts: einfach/mehrfach 20,0 dB /25,0 dB Seitenbeugung: ISO/TR 17534-3:2015 konform: keine Seitenbeugung, wenn das Gelände die Sichtverbindung unterbricht Verwende Glg (Abar=Dz-Max(Agr,0)) statt Glg (12) (Abar=Dz-Agr) für die Einfügedämpfung Umgebung: Luftdruck 1013,3 mbar relative Feuchte 70,0% Temperatur 10,0°C Meteo. Korr. C0(6-22h)[dB]=0,0; C0(22-6h)[dB]=0,0; Cmet für Lmax Gewerbe Berechnungen ignorieren: Beugungsparameter: c2=20,0 Zerlegungsparameter: Faktor Abstand / Durchmesser Minimale Distanz [m] Max. Differenz Bodendämpfung + Beugung Max. Iterationszahl 4 Minderung Bewuchs: ISO 9613-2 Bebauung: ISO 9613-2 Industriegelände: ISO 9613-2 Bewertung: TA-Lärm 1998/2017 - Werktag Reflexion der "eigenen" Fassade wird unterdrückt Geometriedaten Gabelstapler 03-05-23.sit 19.06.2023 13:55:18 - enthält: F001 Bodeneffekt.geo 01.06.2023 12:27:46 G001 Bebauung.geo 01.06.2023 11 MP004 Messpunkte.geo 19.06.2023 13:16:02 0004 Lkws.geo 19.06.2023 10:26:00 Q001 Schallquelle Gabelstapler 03.05.geo 19.06.2023 12:14:38 RG001 Rechengebiet.geo 01.06.2023 12:31:18 RDGM9999.dgm 18.04.2023 12:15:40 | Ergebnisnr.: 1 Heine + Jud - Ingenieurbüro für Umweltakustik SoundPLAN 9.0 +Metadata: + +=== Element 2217 === +Category: Header +Text: XLVI +Metadata: + +=== Element 2218 === +Category: Header +Text: Anhänge +Metadata: + +=== Element 2219 === +Category: Image +Text: yden leßsdsßunjeunsg (War NAT Be joßadsfunjounag {var 141 usjlezsqeueg ımyaLLoy Ep {NATANIP (neyuy) Beiyosnzusyiezayng gap (LVaZ ueyezsgeueg Inpauoy. ar (Tarp ueUONXE]JBY Yoınp Bunyayusjeßed (Warp SAP uondiosgqeynT punßjne Bunydweg Sala sp uney Bunuuyosqy punJßyne Bunydwea Samy ap Jegw Pleysuspog punußjne Bunydweg Sana sp by Bunyaugsny JsyosisWwosß punußjne Bunydweg Samy ep NIPYW Bunyensgy 3}3jyoueß un Beiyosnz 1:1 o4 NSyÖnIeyuoL Any Beiyasnz gp 4a oydıyeysindwi any Beiyosnz gp I zu (wer m shejuy od jeßsdshunisi: (WER Lie) yen-wwepjeuog gp ma jeßsdusuu] (WER u Yosuoıssiuu - ajanbjleysg Bunuenug aranıy w Ss (aypei4 Jspo sBueT) aan Jap agoıg zur S.opo| Sweujendg Sand Spusks] -b87 Bunysugsny S1oıN - usuopsdg ul syasne1sßapenag :sısoy] Jofsyseg \ gv obejuy Bunyansisjun Syosıuyosyjeyos NXaNr+3NI3H +Metadata: + +=== Element 2220 === +Category: Header +Text: XLVII +Metadata: + +=== Element 2221 === +Category: Header +Text: Anhänge +Metadata: + +=== Element 2222 === +Category: Image +Text: vzr 122 E4 00 EX Ey 2 00 go gor- € 00 vg 3'939 E73 [173 ce Jouoz Zr z'gr 4] 00 es ri 1r’0- 00 go vor € co vs g'95 E74 [13 R4 aeuoz 20r 2'0p go v0 go o v0 00 go Sor- € 00 vs s'95 E73 0€ we 9 auoZ gs gs su 00 Sul 2 1°0- 00 go Lor- © 00 vs S'95 SL 53 3 gauoz (vIgp g’ez xew'nT (WIgP gez xewL1 (WIAPEESNIT (VIAPEESLIT DI Zorn (wer | (war ap ap &p (Wa ap gap ap ap ap ap a | (Wer | (War ap | (war w u N 17 [ind] (1Ddaz |GsDamp| yarıp | wiew | Jegw dw NPY 4 1a m MT Mm MA a] s S4Jopo | Elle) -b87 Bunnsugsny S1oUN - usuoyıpadg ul ayadsne1sßapenan :sısay | Jofayseg gy abejuy Bunyansusjun Sy9sıuyoayjeyas +Metadata: + +=== Element 2223 === +Category: Table +Text: vzr 122 E4 00 EX Ey 2 00 go gor- € 00 vg 3'939 E73 [173 ce Zr z'gr 4] 00 es ri 1r’0- 00 go vor € co vs g'95 E74 [13 R4 20r 2'0p go v0 go o v0 00 go Sor- € 00 vs s'95 E73 0€ we gs gs su 00 Sul 2 1°0- 00 go Lor- © 00 vs S'95 SL 53 3 (vIgp g’ez xew'nT (WIgP gez xewL1 (WIAPEESNIT (wer | (war ap ap &p (Wa ap gap ap ap ap ap a | (Wer | (War ap | (war w u N 17 [ind] (1Ddaz |GsDamp| yarıp | wiew | Jegw dw NPY 4 1a m MT Mm MA a] s S4Jopo | -b87 Bunnsugsny S1oUN - usuoyıpadg ul ayadsne1sßapenan :sısay | Jofayseg gy abejuy Bunyansusjun Sy9sıuyoayjeyas +Metadata: + +=== Element 2224 === +Category: Header +Text: XLVIII +Metadata: diff --git a/ingest_rag_data.py b/ingest_rag_data.py new file mode 100644 index 0000000000000000000000000000000000000000..571f72b7005a2b8cbb0c870e7f4fefb226fc50a6 --- /dev/null +++ b/ingest_rag_data.py @@ -0,0 +1,47 @@ +import warnings +warnings.filterwarnings('ignore') +import logging +import json +from pathlib import Path +import sys + +logging.basicConfig(level=logging.INFO, format='%(asctime)s - %(name)s - %(levelname)s - %(message)s') + +sys.path.append(str(Path(__file__).parent.parent)) + +from agents.rag_agent import ResearchAssistantRAG +from config import Config + +import argparse + +parser = argparse.ArgumentParser(description="Process some command-line arguments.") + +parser.add_argument("--file", type=str, required=False, help="Enter file path to ingest") +parser.add_argument("--dir", type=str, required=False, help="Enter directory path of files to ingest") + +args = parser.parse_args() + +config = Config() + +rag = ResearchAssistantRAG(config) + +def data_ingestion(): + if args.file: + file_path = args.file + result = rag.ingest_file(file_path) + elif args.dir: + dir_path = args.dir + result = rag.ingest_directory(dir_path) + + print("Ingestion result:", json.dumps(result, indent=2)) + + return result["success"] + +if __name__ == "__main__": + + print("\nIngesting document(s)...") + + ingestion_success = data_ingestion() + + if ingestion_success: + print("\nSuccessfully ingested the documents.") \ No newline at end of file diff --git a/logging_config.yaml b/logging_config.yaml new file mode 100644 index 0000000000000000000000000000000000000000..b2834721ae7a45a23d41f735e4ce96d5abaa3346 --- /dev/null +++ b/logging_config.yaml @@ -0,0 +1,36 @@ +# logging_config.yaml +version: 1 +disable_existing_loggers: False + +formatters: + default: + format: '%(asctime)s | %(levelname)s | %(name)s | %(message)s' + +handlers: + file: + class: logging.FileHandler + filename: rag_server.log + formatter: default + level: INFO + console: + class: logging.NullHandler + +loggers: + uvicorn: + handlers: [file] + level: INFO + propagate: False + + uvicorn.error: + handlers: [file] + level: INFO + propagate: False + + uvicorn.access: + handlers: [file] + level: INFO + propagate: False + +root: + handlers: [file] + level: INFO diff --git a/qdrant_storage/aliases/data.json b/qdrant_storage/aliases/data.json new file mode 100644 index 0000000000000000000000000000000000000000..9e26dfeeb6e641a33dae4961196235bdb965b21b --- /dev/null +++ b/qdrant_storage/aliases/data.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/qdrant_storage/raft_state.json b/qdrant_storage/raft_state.json new file mode 100644 index 0000000000000000000000000000000000000000..5cd0c95b4ea75d249b25b997e15f18d63ba2fb00 --- /dev/null +++ b/qdrant_storage/raft_state.json @@ -0,0 +1 @@ +{"state":{"hard_state":{"term":0,"vote":0,"commit":0},"conf_state":{"voters":[2536841549145940],"learners":[],"voters_outgoing":[],"learners_next":[],"auto_leave":false}},"latest_snapshot_meta":{"term":0,"index":0},"apply_progress_queue":null,"first_voter":2536841549145940,"peer_address_by_id":{},"peer_metadata_by_id":{},"this_peer_id":2536841549145940} \ No newline at end of file diff --git a/rag_server.log b/rag_server.log new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000000000000000000000000000000000000..dacc9de43e32f8edd9fac94294cf14fd832ae1f7 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,28 @@ +fastapi +uvicorn==0.34.0 +dotenv +qdrant-client==1.13.3 +nltk==3.9.1 +pandas==2.2.3 +unstructured==0.17.0 +unstructured-client==0.31.1 +unstructured-inference==0.8.9 +unstructured.pytesseract==0.3.15 +PyPDF2==3.0.1 +langchain==0.3.20 +langchain-community==0.3.19 +langchain-core==0.3.44 +langchain-openai==0.3.8 +langchain-text-splitters==0.3.6 +langgraph +langgraph-checkpoint +langgraph-prebuilt +langgraph-sdk +pi_heif==0.22.0 +pikepdf==9.5.2 +pillow==11.1.0 +pipreqs==0.5.0 +pdf2image==1.17.0 +scikit-learn +streamlit +requests \ No newline at end of file diff --git a/test.json b/test.json new file mode 100644 index 0000000000000000000000000000000000000000..4f4d9ab3fcf3bcfd821f7b9fbe92bf2cddf4682b --- /dev/null +++ b/test.json @@ -0,0 +1,11 @@ +{ + "content": "Prof. Dr. Michael Krone Augmented/Virtual Reality Engineering Studienbereich Informatik Fakult¨at Vermessung, Informatik und Mathematik HFT Stuttgart\n\n[IMAGE: H O C h S C a U | eC flr Tecla mil Stuttga rt]\n\nInformationsvisualisualisierung und Visual Analytics WS 24/25 Übungsblatt 1 Abgabe: Dienstag, 15 Oktober 2024, 23:55\nÜbungsblatt 1\n\n## 1. Visualisierung des Auto-Datensatzes (10 Punkte)\n\nLaden Sie den Auto-Datensatz (CarPrice_deutsch.xlsx) von Moodle herunter. Sie können die Datei in MS Excel öffnen. Sie enthält 204 verschiedene Fahrzeugmodelle mit 26 verschiedenen Attributen (kategorisch, ordinal und quantitativ).\nSchauen Sie sich die Daten in Excel an und erstellen Sie zwei verschiedene Diagramme aus den Daten. Erstellen Sie ein kurzes Dokument (z.B. mit Word) mit Abbildungen der beiden Visualisierungen, einer kurzen Beschreibung was zu sehen ist. Welche Daten-Attribute und Diagramm-Typen haben Sie gewählt? Warum? Welche Fragen können mit Ihrer gewählten Visualisierung beantwortet werden? Laden Sie als Abgabe das Dokument in Moodle als PDF hoch.\n→ Sie können auch neue Daten aus dem Auto-Datensatz erstellen und diese Visualisieren (d.h. abgeleitete Daten) – Sie dürfen hier kreativ sein!\n→ Wenn Sie möchten können Sie auch ein anderes Tool als Excel verwenden (z.B. Tableau https://www.tableau.com/de-de/academic/students, kostenlose Version für Studierende bzw. Testversion). Geben Sie in diesem Fall an, welches Tool sie verwendet haben.\n\n## 2. Erste Website mit JavaScript (10 Punkte)\n\nErstellen Sie eine Website, um eine Zap-Hep-Zahlenfolge auszudrucken: Wenn eine Zahl durch 3 teilbar ist, drucken Sie ZAP, wenn eine 3 in der Zahl enthalten ist, drucken Sie HEP, wenn beides zutrifft, drucken Sie ZAP HEP, ansonsten drucken Sie die nächste Zahl. Beispiel für Zahlen von 1 bis 14:\n1\n2\nZAP HEP\n4\n5\n\n## ZAP\n\n7\n8\n\n## ZAP\n\n10\n11\n\n## ZAP\n\n\n## HEP\n\n14\nVerwenden Sie eine einzelne HTML-Datei, die Ihren HTML- und JavaScript-Code enthält (Tipp: siehe Folien “Tutorial 0 (Web-Dev-Intro)” in Moodle). Schreiben Sie die JavaScript-Funktion so, dass eine beliebige lange Zahlenreihe ausgegeben werden kann (d.h. die Länge der Zahlenreihe soll per Variable in ihrem JavaScript-Code gesetzt werden können). Laden Sie Ihre HTML-Datei in Moodle hoch.\nTipp: Es gibt mehrere Möglichkeiten, aus einem JavaScript-Programm Text auf eine Website zu setzen, die einfachste ist mittels document.write( ... \"Text\", Zahlen, etc. In diesem Tutorial werden noch weitere Möglichkeiten beschrieben: https://www.w3schools. com/js/js_output.asp ... );.\nTipp: Sie benötigen für diese Aufgaben noch nicht die D3-Library (dürfen diese aber verwenden, wenn Sie wollen).\n2", + "metadata": { + "source": "test.pdf", + "file_type": "pdf", + "has_tables": false, + "table_count": 0, + "has_images": true, + "image_count": 1, + "detection_class_prob": 0.8481391668319702, + "coordinates": \ No newline at end of file